html{
  box-sizing: border-box;
}
*,*::after,*::before{
  box-sizing: inherit;
}

img{
  max-width: 100%;
}

ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

a{
  text-decoration: none;
  color: black;
}

h2{
  font: italic bold 28px Aileron, sans-serif;
  text-align: center;
  text-transform: uppercase;
}

@media only screen and (min-width: 768px){
  h2{
    font: italic bold 50px Aileron, sans-serif;
  }
}

h2::after{
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 0px solid transparent;
  margin: 0 auto;
}



h3{
  font: italic 300 18px Aileron, sans-serif;
  text-transform: uppercase;
  text-align: center;
}

@media only screen and (min-width: 768px){
  h3{
    font: italic 300 22px Aileron, sans-serif;
  }
}

h3::before{
  content: url("../img/x.svg");
  display: inline-block;
  transform: scale(.7) translate(20px,7px);
}

@media only screen and (min-width: 768px){
  h3::before{
    transform: scale(.8) translate(10px, 5px);
  }
}

h4{
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  text-align: center;
  margin: 0;
  margin-top: 10px;
}


.button{
  color: white;
  background-color: #FF8C00;
  padding: 15px 25px;
  font-size: 14px;
  transition: background-color 0.2s ease;
  font-family: Montserrat, sans-serif;
  cursor: pointer;
}

.button:hover{
  background-color: #c16700;
}

.iziModal .iziModal-header-title{
  text-transform: none;
  font-style: normal;
  font-size: 16px;
}

body{
  font-family: "Open Sans", sans-serif;
}

.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

header{
  background-color: black;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  padding: 0 10px;
}

div.content-header{
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

a.logo-header{
  display: block;
  width: 150px;
}

div.mobile-menu{
  width: 30px;
  margin-right: 7px;
}

div.mobile-menu:hover{
  cursor: pointer;
}

div.mobile-menu span{
  display: block;
  height: 4px;
  border-radius: 10px;
  margin-bottom: 5px;
  background-color: white;
}

div.mobile-menu span:last-of-type{
  margin-bottom: 0;
}

nav.navigation-header{
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background-color: black;
  font-family: Montserrat, sans-serif;
}

nav.navigation-header a{
  display: block;
  color: rgba(255,255,255,0.8);
  padding: 10px 0;
  text-align: center;
  transition: color 0.1s ease;
}

nav.navigation-header a:hover{
  color: white;
}

nav.navigation-header a:last-of-type{
  border: 1px solid #FF8C00;
  transition: background-color 0.5s ease;
}

nav.navigation-header a:last-of-type:hover{
  background-color: #FF8C00;
}

@media only screen and (min-width: 768px){
  div.mobile-menu{
    display: none;
  }
  nav.navigation-header{
    position: static;
    top: 0;

    display: flex!important;
    justify-content: space-between;
    color: white;
    width: 500px;
    font-size: 16px;
    background-color: transparent;
  }
  nav.navigation-header a{
    display: inline-block;
    padding: 5px 10px;
  }
}

#modal-language{
  background-color: transparent;
  box-shadow: none;
  text-align: center;
}


#modal-language span{
  display: block;
  background-color: #FF8C00;
  height: 1px;
  width: 125px;
  margin: 10px auto 10px auto;
}

.language-button{
  display: block;
  color: rgba(255,255,255,0.8);
  transition: color ease 0.3s;
  font-size: 20px;
}

@media only screen and (min-width: 768px){
  .language-button{
    font-size: 24px;
  }
}

.language-button:hover{
  color: white;
}


/** BANNER **/
div.banner{
  position: relative;
  height: 100vh;
  background-color: black;
}

div.background-banner{
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/backgrounds/banner.png");
}

div.background-banner::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0.75);
}

div.content-banner{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

div.content-banner img{
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 500px;
  padding: 0 15px;
}

@media only screen and (min-width: 768px){
  div.content-banner img{
    width: 500px;
  }
}

div.content-banner a{
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: change-size ease 2s infinite;
}

@media only screen and (min-width: 768px){
  div.content-banner a{
    font-size: 18px;
  }
}

@keyframes change-size{
  0%{
    transform: translate(-50%,-50%) scale(1);
  }
  50%{
    transform: translate(-50%,-50%) scale(1.1);
  }
}


/** Flying experience **/
div.flying-experience{
  padding-top: 25px;
}

div.flying-experience h2::after{
  border-right: 280px solid #FF8C00;
}

@media only screen and (min-width: 768px){
  div.flying-experience h2::after{
    border-right: 500px solid #FF8C00;
  }
}

div.flying-experience > p{
  line-height: 1.5;
  margin-bottom: 50px;
  font-size: 16px;
  text-align: justify;
}

div.experiences{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

div.experience{
  flex-basis: calc(100% - 25px);
  text-align: center;
  margin-bottom: 50px;
}

@media only screen and (min-width: 560px){
  div.experience{
    flex-basis: calc(50% - 25px);
  }
}


@media only screen and (min-width: 1100px){
  div.experience{
    flex-basis: calc(25% - 25px);
  }
}

div.info-experience{
  padding: 5px 15px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  text-align: left;
  min-height: 125px;
  max-width: 400px;
  margin: 0 auto;
}

div.info-experience p{
  font-size: 13px;
  line-height: 1.5;
  text-align: justify;
}

div.formats{
  margin-bottom: 50px;
}

@media only screen and (min-width: 768px){
  div.formats{
    display: flex;
    justify-content: space-around;
  }
}

div.format{
  max-width: 350px;
  margin: 0 auto;
  margin-bottom: 50px;
}

div.format h3{
  font-family: 'Aileron',sans-serif;
  font-weight: 600;
}

div.format > p{
  font-size: 14px;
  margin-bottom: 30px;
}

div.info-format{
  display: flex;
  justify-content: space-around;
}

div.value-format{
  text-transform: uppercase;
  font-size: 14px;
  font-family: Montserrat, sans-serif;
  font-weight: normal;
  text-align: center;
}

div.number{
  width: 50px;
  height: 50px;
  background-image: url("../img/circle.png");
  background-size: contain;
  background-position: center center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/** GET INFO BUDGET **/
div.get-info-budget{
  height: 200px;
  background-image: url("../img/backgrounds/banner3.png");
  background-size: cover;
  background-position: center 40%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

div.get-info-budget::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0.5);
}

div.content-get-info-budget{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 125px;
}


div.get-info-budget h2{
  color: white;
  font-size: 22px;
  margin: 0;
}

@media only screen and (min-width: 768px){
  div.get-info-budget h2{
    font-size: 35px;
  }
}

div.get-info-budget h2::after{
  display: none;
}

div.get-info-budget a{
  display: inline-block;
  padding: 10px 20px;
  margin: 0 auto;
  color: white;
  background-color: #FF8C00;
  text-transform: uppercase;
  font-weight: bold;
}


/* Edicions Anteriors */
div.previous-editions{
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: url("../img/backgrounds/backgroundX1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

div.previous-editions h2::after{
  border-right: 300px solid #FF8C00;
}

@media only screen and (min-width: 768px){
  div.previous-editions h2::after{
    border-right: 540px solid #FF8C00;
  }
}


div.content-previous-editions{
  margin-bottom: 100px;
}

div.content-previous-editions > span{
  display: block;
  height: 3px;
  background-color: rgba(0,0,0,0.1);
  font-size: 16px;
}

div.image-edition{
  width: 100px;
  display: flex;
  align-items: center;
  margin: 0;
}

@media only screen and (min-width: 1000px){
  div.image-edition{
    width: 150px;
  }
}

div.edition{
  min-height: 125px;
  display: flex;
  justify-content: space-between;
}

div.date-edition{
  display: flex;
  align-items: center;
  justify-content: center;
}

div.date-edition p{
  font-weight: bold;
  font-style: italic;
  font-size: 10px;
}

@media only screen and (min-width: 1000px){
  div.date-edition p{
    font-size: 16px;
  }
}

div.info-edition{
  display: flex;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
  width: 300px;
}

@media only screen and (min-width: 1000px){
  div.info-edition{
    width: 500px;
  }
}


div.info-edition > div{
  flex-basis: 50%;
  text-align: center;
  padding: 20px 0px;
}

@media only screen and (min-width: 1000px){
  div.info-edition > div{
    flex-basis: 25%;
  }
}

div.info-edition p{
  text-transform: uppercase;
  font-weight: normal;
  font-size: 10px;
  margin-top: 10px;
  margin-bottom: 0;
}

@media only screen and (min-width: 1000px){
  div.info-edition p{
    font-size: 14px;
  }
}

div.info-edition div.number{
  width: 35px;
  height: 35px;
  font-size: 12px;
}

@media only screen and (min-width: 1000px){
  div.info-edition div.number{
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}

div.number span{
  position: relative;
  top: -5px;
  font-size: 10px;
}

div.gallery-edition{
  display: flex;
  align-items: center;
  justify-content: center;
}

a.content-gallery-edition{
  display: block;
}

div.gallery-edition img{
  display: block;
  margin: 0 auto;
  width: 60px;
}

@media only screen and (min-width: 1000px){
  div.gallery-edition img{
    width: 70px;
  }
}

div.gallery-edition p{
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  font-size: 12px;
}

@media only screen and (min-width: 1000px){
  div.gallery-edition p{
    font-size: 16px;
  }
}

.modal-gallery{
  background-color: black;
}

.content-modal-gallery a{
  display: block;
  float: left;
  width: calc(25%);
  padding: 5px;
}


/** Xarxes Socials **/
div.social-networks{
  min-height: 250px;
  background-image: url("../img/backgrounds/banner4.png");
  background-size: cover;
  background-position: center center;
  position: relative;
}

div.social-networks::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0.5);
}

div.social-networks{
  display: flex;
  justify-content: center;
  align-items: center;
}

div.content-social-networks{
  position: relative;
  z-index: 1;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 10px;
  width: 950px;
}

div.social-networks h2{
  color: white;
  font-size: 22px;
  margin: 0;
  margin-bottom: 10px;
}

div.social-networks h2::after{
  display: none;
}

@media only screen and (min-width: 768px){
  div.social-networks h2{
    font-size: 35px;
  }
}

div.content-social-networks > ul{
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  flex-wrap: wrap;
}

div.content-social-networks > ul li{
  flex-basis: 100%;
  text-align: center;
}

@media only screen and (min-width: 768px){
  div.content-social-networks > ul li{
    flex-basis: 50%;
  }
}

@media only screen and (min-width: 1000px){
  div.content-social-networks > ul li{
    flex-basis: 25%;
  }
}

div.content-social-networks > ul li img{
  max-width: 200px;
}


/** Col·laboradors **/
div.colaborators{
  min-height: 900px;
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: url("../img/backgrounds/backgroundX2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}


div.colaborators h2::after{
  border-right: 270px solid #FF8C00;
}

@media only screen and (min-width: 768px){
  div.colaborators h2::after{
    border-right: 480px solid #FF8C00;
  }
}

ul.list-colaborators{
  display: flex;
  justify-content: space-between;
  max-width: 320px;
  margin: 0 auto;
  margin-bottom: 30px;
}

a.logo-colaborator{
  display: block;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

div.triangle-colaborator{
  width: 0;
  height: 0;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 15px solid black;
  margin: 0 auto;
}

div.content-colaborator{
  max-width: 900px;
  margin: 0 auto;
}

div.colaborators h3{
  text-transform:none;
}

div.colaborators h3::before{
  display: none;
}

div.colaborators p{
  font-size: 14px;
  line-height: 1.5;
}

ul.list-services{
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

ul.list-services > li{
  width: 100%;
  padding: 10px;
}

@media only screen and (min-width: 768px){
  ul.list-services > li{
    width: 50%;
  }
}

@media only screen and (min-width: 1000px){
  ul.list-services > li{
    width: 25%;
  }
}

ul.list-services h5{
  margin-bottom: 0;
}

ul.list-services > li p{
  line-height: 1.5;
  text-align: left;
}

p.email-colaborator,
p.phone-colaborator{
  font-size: 14px;
  font-weight: bold;
  height: 20px;
  position: relative;
}

p.email-colaborator{
  padding-left: 50px;
}

p.phone-colaborator{
  padding-left: 40px;
}

p.email-colaborator::before,
p.phone-colaborator::before{
  position: absolute;
  left: 0;
  display: inline-block;
  height: 20px;
}

p.email-colaborator::before{
  content: url("../img/email-contact.png");
  transform: scale(0.7);
  top: -75%;
}

p.phone-colaborator::before{
  content: url("../img/phone-contact.png");
  transform: scale(0.7);
  top: -50%;
}

div.catalog{
  margin-bottom: 60px;
}

div.catalog h5{
  margin-bottom: 10px;
}

div.content-catalog{
  display: flex;
  max-width: 500px;
  justify-content: space-between;
}

div.content-catalog p{
  flex-basis: calc(50% - 10px);
  padding: 0;
  margin: 0;
  line-height: 1.5;
}

div.content-catalog a{
  flex-basis: calc(50% - 10px);
  text-transform: uppercase;
  text-align: center;
}

div.contacts-colaborator p{
  margin-bottom: 50px;
}

@media only screen and (min-width: 480px){
  div.contacts-colaborator{
    display: flex;
    justify-content: space-between;
    width: 400px;
  }
}


/** GET INFO ADVISE **/
div.get-info-advise{
  height: 200px;
  background-image: url("../img/backgrounds/banner5.png");
  background-size: cover;
  background-position: center center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

div.get-info-advise::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0.5);
}

div.content-get-info-advise{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 125px;
}


div.get-info-advise h2{
  color: white;
  font-size: 22px;
  margin: 0;
}

@media only screen and (min-width: 768px){
  div.get-info-advise h2{
    font-size: 35px;
  }
}

div.get-info-advise h2::after{
  display: none;
}

div.get-info-advise a{
  display: inline-block;
  padding: 10px 20px;
  margin: 0 auto;
  color: white;
  background-color: #FF8C00;
  text-transform: uppercase;
  font-weight: bold;
}

/** CONTACT **/
div.contact{
  padding-top: 30px;
  padding-bottom: 50px;
  background-image: url("../img/backgrounds/backgroundX1.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

div.contact h2::after{
  border-right: 180px solid #FF8C00;
}

@media only screen and (min-width: 768px){
  div.contact h2::after{
    border-right: 320px solid #FF8C00;
  }
}

ul.list-contacts{
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
}

ul.list-contacts li{
  text-align: center;
  flex-basis: 100%;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (min-width: 480px){
  ul.list-contacts li{
    flex-basis: 33.3%;
  }
}

ul.list-contacts li img{
  height: 40px;
}

form.contact-form{
  margin-bottom: 75px;
}

div.form-info{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

form.contact-form .form-info input{
  flex-basis: calc(100% - 10px);
  height: 40px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  margin-bottom: 10px;
  padding: 10px;
}

@media only screen and (min-width: 480px){
  form.contact-form .form-info input{
    flex-basis: calc(50% - 10px);
  }
}


@media only screen and (min-width: 768px){
  form.contact-form input{
    flex-basis: calc(33.3% - 10px);
  }
}

form.contact-form textarea{
  flex-basis: 100%;
  height: 100px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  margin-bottom: 10px;
  padding: 10px;
}

form.contact-form label{
  font-size: 14px;
}

form.contact-form input.submit-button{
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  padding: 10px 40px;
  display: block;
  margin: 0 auto;
  margin-top: 25px;
  text-transform: uppercase;
}


/** Footer **/
footer{
  background-color: black;
  padding: 10px;
}

footer a{
  color: white;
}

div.content-footer{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
}

div.content-footer-element {
  max-width: 250px;
  margin: 0 auto;
}

div.footer-element{
  width: 100%;
  margin-bottom: 25px;
}

@media only screen and (min-width: 768px){
  div.footer-element{
    width: 50%;
  }
}

@media only screen and (min-width: 1100px){
  div.footer-element{
    width: 25%;
  }
}

div.footer-element:nth-child(1),
div.footer-element:nth-child(3){
  text-align: center;
}

footer h5,
footer p,
footer li{
  color: white;
  text-align: left;
  line-height: 1.5;
}


div.footer-element:first-of-type h5,
div.footer-element:first-of-type p{
  text-align: center;
}


footer h5{
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
}

footer h5:first-of-type img{
  width: 200px;
}
