
/* # fonts  */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Carter+One&display=swap');
@import url('https://fonts.cdnfonts.com/css/ruthligos');
@import url('https://fonts.cdnfonts.com/css/champagne-limousines');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

                
/* # variables */
:root{

  /* # NUEVA PALETA */

  --color-1: #133759;
  --color-2: #f97068;
  --color-3: #F39200;
  --color-4: #edf2ef;
  --color-5: #57c4e5;


  --main-color: #C6426E;
  --main-color1: #f2be5b;
  --main-color2: #f2c995;

  /* text colors */
  --text-dark-gray: hsl(0, 0%, 25%);
  --text-x-dark-gray: hsl(0, 0%, 10%);
  --text-black: hsl(0, 0%, 0%);

  /* bg colors */
  --bg-light-yellow: hsl(42, 26%, 77%);
  --bg-x-light-yellow: hsl(42, 40%, 87%);
  --bg-green: hsl(167, 57%, 52%);
  --bg-purple: hsl(253, 79%, 77%);

  /* border colors */
  --border-dark: hsla(0, 0%, 0%, 0.1);
  --border-x-dark: hsla(0, 0%, 0%, 0.7);

  /* font family */
  --ff-carter-one: 'Carter One', cursive;
  --ff-ruthligos: 'Ruthligos', sans-serif;
  --ff-champagne: 'Champagne & Limousines', sans-serif;
  --ff-poppins: 'Poppins', sans-serif;

  /* font size */
  --fs-md: 16px;
  --fs-lg: 18px;
  --fs-xl: 22px;
  --fs-2xl: 28px;
  --fs-3xl: clamp(27px, 4vw, 50px);
  --fs-4xl: clamp(35px, 7vw, 80px);
  --fs-body: var(--fs-md);

  /* padding */
  --section-py: 80px;
}

@media(max-width: 991px){

:root{

  /* font size */
  --fs-2xl: 28px;
}
}


@media(max-width: 767px){

  :root{

    /* font size */
    --fs-lg: 16px;
    --fs-2xl: 20px;

    /* section-padding */
    --section-py: 50px;
  }
  }

/* # base */

html{
  scroll-behavior: smooth;
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::before,
::after{
  box-sizing: border-box;
}

body{
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: var(--ff-poppins);
  color: aliceblue;
  background-color: var(--color-1);
  


}

.back{
  background-image: url(../img/banenrlibro.png);
  width: 100%;
  height: 100vh;
  background-size: cover;
  z-index: -1;
}

.back .overlay{
  background: var(--color-1);
  width: 100%;
  height: 100%;
  opacity: 0.90;
}

.row{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

h1,h2,h3,h4,h5,h6{
  line-height: 1.2;
  color: var(--color-1);
}

a{
  text-decoration: none;
  color: var(--color-3);
}

img{
  max-width: 100%;
  vertical-align: middle;
}

video{
  max-width: 100%;
}

ul{
  list-style: none;
}

p + p{
  margin-top: 15px;
}

button{
  cursor: pointer;
}

::selection{
  color: var(--text-black);
  background-color: var(--main-color);
}

::-webkit-scrollbar{
  width: 5px;
}

::-webkit-scrollbar-track{
  background-color: var(--bg-x-light-yellow);
}

::-webkit-scrollbar-thumb{
  background-color: var(--bg-x-light-yellow);
}

/* # page wrapper */

.page-wrapper{
  overflow: hidden;
}
/* # container */
.container{
  max-width: 1170px;
  margin: auto;
  padding: 0 15px;
}

/* # section header */

.section-header{
  margin-bottom: 60px;
  text-align: center;
}

.section-header-title{
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: white;
  font-family: var(--ff-poppins);
  padding-top: 5rem;
}

.section-header-title span{
  color: var(--color-3);
  font-weight: 600;
}

@media(max-width: 767px){

  .section-header{
    margin-bottom: 45px;
  }
}
/* # aos */

[data-aos="fade-up"]{
  transform: translate3d(0, 50px, 0);
}

[data-aos="reveal-left"]{
  clip-path: inset(0 100% 0 0);
}

[data-aos="reveal-left"].aos-animate{
  clip-path: inset(0);
}

/* # text animation */

.word{
  overflow: hidden;
  vertical-align: bottom;
}

.word .char:nth-child(1){
  text-transform: capitalize;
}

[data-aos="text-animation"] .char{
  transform: translateY(100%);
  transition: transform 1.2s cubic-bezier(.455, .03, .515, .955);
}

[data-aos="text-animation"].aos-animate .char{
  transform: translateY(0);
  transition-delay: calc(0.05s * var(--char-index));
}

/* # btn */

.btn{
  display: inline-block;
  padding: 10px 28px;
  background-color: var(--color-3);
  color: var(--color-4);
  font-weight: 500;
  font-size: var(--fs--body);
  text-transform: uppercase;
  vertical-align: middle;
  line-height: 1.5;
  font-family: inherit;
  user-select: none;
  z-index: 1;
  position: relative;
  border: none;
}

.btn::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 1px solid var(--color-3);
  transform: translate(5px, 5px);
  z-index: -1;
  transition: transform 0.5s ease;
}

.btn:hover:after{
  transform: translate(0,0);
}
/* # preloader */
/* # header */

.header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 18px 0;
}

.header-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo{
  font-size: 20px;
  color: white;
  font-family: var(--ff-poppins);
}

.header-logo span{
  color: var(--color-3);
}

.header-toggler{
  display: none;
}

.header-menu li{
  display: inline-block;
  margin-left: 40px;
}

.header-menu a{
  display: block;
  color: var(--color-4);
  transition: color 0.3s ease;
  font-weight: 400;
  text-transform: uppercase;
  font-family: var(--ff-poppins);
}

.header-menu a:hover{
  color: var(--color-3);
}

@media(max-width:991px ){

  .header{
    padding: 12px 0;
  }

  .header-toggler{
    height: 34px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    z-index: 1;
    background-color: transparent;
  }

  .header-toggler span{
    height: 2px;
    width: 80%;
    background-color: var(--color-3);
    position: relative;
    transition: background-color 0.3s ease;
  }

  .header-toggler span::before,
  .header-toggler span::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--color-3);
    transition: transform 0.3s ease;
  }

  .header-toggler span::before{
    transform: translateY(-8px);
  }

  .header-toggler span::after{
    transform: translateY(8px);
  }

  .header-toggler.active span{
    background-color: transparent;
  }

  .header-toggler.active span::before{
    transform: rotate(45deg);
  }

  .header-toggler.active span::after{
    transform: rotate(-45deg);
  }

  .header-menu{
    position: fixed;
    width: 250px;
    background-color: var(--color-1);
    top: 0;
    right: 0;
    height: 100%;
    padding: 60px 0;
    transform: translateX(100%);
    transition: 0.5s ease;
  }

  .header-menu.open{
    transform: translateX(0);
  }

  .header-menu li{
    display: block;
    margin: 0;
  }

  .header-menu a{
    padding: 8px 15px;
  }

  .back{
    background-position: center;
}
}

/* # home */

.home{
  padding: 180px 0 120px;
}

.home-container{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
  padding-top: 2rem;
}

.home-title{
  font-size: var(--fs-4xl);
  margin: 0 0 20px;
  color: var(--color-4);
  font-family: var(--ff-poppins);
  font-weight: 200;
}

.home-title span{
  color: var(--color-3);
}

.home-subtitle{
  font-weight: 400;
  font-size: var(--fs-lg);
  display: grid;
  gap: 8px;
  color: var(--color-4);
}

.home-subtitle i{
  margin-right: 5px;
  color: var(--color-3);
}

.home-btn{
  margin-top: 40px;
}

.home-box{
  height: 400px;
  max-width: 400px;
  margin: auto;
  position: relative;
}

.home-decor{
  background-color: var(--color-3);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.home-img-box1,
.home-img-box2{
  position: absolute;
}

.home-img-box1{
  width: 250px;
  left: 0;
  top: 0;
  transform: translate(-20%, -20%);
}

.home-img-box2{
  width: 220px;
  right: 0;
  bottom: 0;
  transform: translate(20%, 20%);
}

@media(max-width: 991px){

  .home{
    padding: var(140px 0 80px);
  }

  .home-box{
    max-width: 280px;
  }
}

@media(max-width: 767px){
  .home{
    padding: 140px 0 60px;
  }

  .home-container{
    grid-template-columns: repeat(1, 1fr);
    gap: 80px;
  }

  .home-right{
    order: -1;
  }

  .home-box{
    height: 320px;
  }

  .home-img-box1{
    max-width: 200px;
  }

  .home-img-box2{
    max-width: 180px;
  }
}

@media(max-width: 575px){

  .home-box{
    height: 250px;
    max-width: 220px;
  }

  .home-img-box1{
    max-width: 150px;
  }

  .home-img-box1,
  .home-img-box2{
    max-width: 150px;
  }

  
  .home-container{
    padding-bottom: 5rem;
  }
}

/* # about */

.about{
  padding-top: 10rem;
  padding-bottom: 10rem;

}

.about-content{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
}

.about .section-header{
  grid-column: 2 / 3;
  margin-bottom: 20px;
  text-align: left;
}

.about-img-box{
  max-width: 400px;
  margin: auto;
  position: relative;
} 


.about-decor1,
.about-decor2{
  position: absolute;
  height: 100px;
  width: 200px;
  z-index: -1;
}

.about-decor1{
  background-color: var(--color-3);
  left: -40px;
  top: -40px;
}

.about-decor2{
  background-color: var(--color-3);
  right: -40px;
  bottom: -40px;
}

.about-btn{
  margin-top: 30px;
}

@media(max-width: 991px){

  .about-img-bpx{
    max-width: 280px;
  }

  .testi-item{
    width: calc(50% - 30px);
}
.team-item{
    width: 50%;
}
.team-item:not(:last-child){
    margin-bottom: 75px;
}

}


@media(max-width: 767px){

  .about-content{
    grid-template-columns: repeat(1, 1fr);
  }

  .about .section-header{
    grid-column: 1 / 2;
  }

  .about-img-box{
    margin: 50px auto 70px;
  }
  

}

/* # performers */

/* testimonios */

.testimonials-section{
  padding-bottom: 50px;
  background-repeat: no-repeat;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.testi-item{
  width: calc((100% / 2) - 30px);
  margin:0 15px 30px;
  border: 2px solid var(--color-3);
  padding: 30px;
  box-shadow: var(--box-shadow-);
}
.testi-author{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.testi-author h3{
  font-size: 16px;
  text-transform: capitalize;
  margin: 0 0 3px;
  color: var(--color-3);
}

.testi-author span{
  display: block;
  font-size: 15px;
  text-transform: capitalize;
  color: var(---cl--4);
}

.testi-author img{
  width: 60px;
  border-radius: 50%;
  border: 3px solid var(--color-3);
  box-shadow: var(---cl--2);
  transition: border-color 0.5s ease;
}

.testi-item:hover .testi-author img{
  border-color: var(---cl--3);

}
.testi-item p{
  margin: 15px 0;
  color: var(---cl--1);
}

.testi-item .ratings i{
  font-size: 20px;
  padding: 0.5rem;
  color: var(--color-3);
  transition: .3s;
}

.testi-item .ratings i:hover{
  color: aliceblue;
}
/* # contact */

.contact{
  padding: var(--section-py) 0;
}

.contact-items{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-item{
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
}
.contact-item i{  
  height: 50px;
  width: 50px;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-3);
}

.contact-item h3{
  margin-bottom: 10px;
  color: white;
  text-transform: capitalize;
  font-size: var(--fs-2xl);
  font-weight: 500;
}

.contact-form{
  margin-top: 50px;
}

.contact-form .col-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
}

.contact-form .input-box{
  margin-bottom: 30px;
}

.contact-form .input::placeholder{
  color: var(--color-3);
  text-transform: uppercase;
  opacity: 1;
}

.contact-form .input{
  width: 100%;
  height: 50px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--color-3);
  font-size: var(--fs--body);
  font-family: inherit;
  color: var(--main-color);
}

.contact-form .input::placeholder{
  outline: none;
}

.contact-form .input-message{
  display: block;
  height: 120px;
  resize: none;
}

#msg{
 padding-left: 1rem;
}


@media(max-width: 767px){

  .contact-items{
    grid-template-columns: repeat(1, 1fr);
  }

  
  .testi-item{
    width: calc(100% - 30px);
}

}

@media(max-width: 575px){

  
  .contact-for, .col-2{
    grid-template-columns: repeat(1, 1fr);
  }

  .team-item{
    width: 100%;
}

.testimonials-section{
  padding-top: 4rem;
}

.about{
  padding-top: 5rem;

}

.testimonials-section{
  padding-top: 8rem; 
}
     }



@media(max-width: 425px){
  
  #msg{
    font-size: 15px;
   }
 
  .team-item{
    width: 100%;
}
.contact-form{
  margin-top: 50px;
  padding-bottom: 5rem;
}

}


/* # footer */

.footer{
  border-top: 1px solid var(--color-3);
  padding: 15px 0;
}

.footer-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-social{
  margin: 15px 15px 15px 0;
}

.footer-social a{
  height: 40px;
  width: 40px;
  border: 1px solid var(--color-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  border-radius: 50%;
  transition: all 0.3s ease;
  color: var(--color-3);
}

.footer-social a:hover{
  background-color: var(--color-3);
  color: white;
}