*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth!important;
}

@font-face {
    font-family: 'RoutedGothicWide';
    src: url('./fonts/routed-gothic-wide.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.cls-1 {
    fill: #ff5aff;
    font-family: 'RoutedGothicWide';
    font-size: 124.29px;
}

body{
    font-family: 'RoutedGothicWide';
    scroll-behavior: smooth!important;
    cursor: none;
    margin-bottom: 300px;
}

.cursor-dot{
    width: 5px;
    height: 5px;
    background-color: white;
    z-index: 101;
}

.cursor-outline{
    width: 30px;
    height: 30px;
    border: 2px solid white;
    background-color: #FF5AFF;
    z-index: 101;
}



.cursor-dot,
.cursor-outline{
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

@media screen and (max-width: 600px){
    .cursor-dot,
    .cursor-outline{
        display: none;
    }
}

nav{
    display: flex;
    padding: 40px 40px;   
    width: 100vw;
    position: fixed;
    z-index: 3;
    top: 0;
    background-color: transparent;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s;
}

.activeNav{
    background-color: white!important;
    padding: 15px 40px;
}

nav img{
    object-fit: contain;
    width: 200px;
    transition: all 0.5s;
}

.activeNav img{
    width: 150px;
}

footer img{
    object-fit: contain;
    width: 100px;
}

nav h2 a{
    color: white;
    transition: all 0.5s;
    cursor: none;
}

.activeNav h2 a{
    color: white!important;
}

nav ul{
    display: flex;
    align-items: center;
    gap: 15px;
}

nav ul li a{
    color: white;
    background-color: #FF5AFF;
    padding: 10px 30px;
    border-radius: 18px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.5s;
    border: 0px solid #1d1d1b;
    cursor: none;
}

nav ul li a:hover{
    padding: 10px 35px;
}

.activeNav ul li a{
    background-color: #FF5AFF;
    color: white;
    border: 0px solid #1d1d1b;
}


nav .containerMenu{
    display: none!important;
    height: 60px; 
    width: 60px;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;/* 
    -webkit-box-shadow: 0px 0px 25px -10px #000000; 
box-shadow: 0px 0px 25px -10px #000000; */
}

.activeNav .containerMenu{
    -webkit-box-shadow: 0px 0px 0px 0px #000000; 
box-shadow: 0px 0px 0px 0px #000000;
}


ul{
    list-style: none;
}

a{
    text-decoration: none;
}

.container{
    padding: 6% 40px;
}

header{
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100vh;
    z-index: 1;
    background-color: white;
}

.banner-bg{
    /* position: absolute;
    top: -20px;
    object-fit: cover;
    left: -50px;
    width: 100%;
    right: 0;
    height: 100%; */
    position: absolute;
    top: -20px;
    object-fit: cover;
    left: -150px;
    width: 120%;
    right: 0;
    height: 120%;
}

.container-text-banner{
    position: relative;
    width: 100%;
    height: 100vh;
    transform: scale(1.7);
    /* padding-top: 40px; */
}

.container-text-banner img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner-text{
    margin-top: -20px;
}

.bird{
    position: absolute;
    bottom: 0;
    object-fit: contain;
    left: 0;
    margin-left: 10%;
    height: 850px;
    z-index: 1;
    transition: all 0.5s;
}



.titleContainer{
    display: flex;
    flex-direction: column;
    gap:10px;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0px 4%;
}


.titleContainer h1{
    color: white;
    font-size: 18rem;
    font-weight:400;
    margin-bottom: -90px;
    width: 100%;
    text-align: start;
}

.titleContainer h2{
    color: #100b4c;
    font-size: 13rem;
    font-weight:400;
    width: 100%;
    text-align: end;

}

@media screen and (max-width: 1289px){
    header .titleContainer h1{
        font-size: 10rem;
    }

    header .titleContainer h2{
        font-size: 8rem;
        padding-top: 30px;
    }
    .bird{
        height: 650px;
    }
}


@media screen and (max-width: 975px){
    header strong{
        font-size: 1.5rem;
    }

    header h3{
        font-size: 2rem;
    }
}

.sectionOne{
    width: 100%;
    background-color: #FF5AFF;
    display: flex;
    flex-direction: column;
    gap:40px;
}

.sectionOne h2{
    font-size: 5rem;
    transition: all 0.5s;
    color: white;
    text-transform: uppercase;
    letter-spacing: -0.5rem;
}


.sectionOne p{
    font-size: 30px;
    color: white;
    letter-spacing: -3px;
    line-height: 2rem;
}

.sectionOne a{
    color: white;
}

.sectionOne h3{
    font-size: 30px;
    color: white;
    letter-spacing: -3px;
}

.cajaInfo{
    background-color: #E7FF97;
    color: #FF5AFF;
    padding: 20px;
    font-size: 18px;
    text-transform: uppercase;
    width: max-content;
    transition: all 0.5s;
    border-radius: 30px;
}

.cajaInfo a{
    color: #FF5AFF;
    cursor: none;
}

a{
    cursor: none;
}






footer{
    width: 100%;
    height: 300px;
    background-color: #FF5AFF;
    bottom: 0;
    position: fixed;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0% 40px;
}

footer img{
    filter: invert(100%) brightness(200%) contrast(100%);
}

.footerOne{
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: white;
}

.footerOne h2{
    font-size: 30px;
}

.footerOne p{
    font-size: 20px;
}

.socialmedia{
    display: flex;
    gap:10px;
    align-items: center;
}

.socialmedia i{
    color: white;
    font-size: 25px;
    transition: all 0.5s;
}

.socialmedia i:hover{
    color: #ff0075;
}

.footerTwo ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footerTwo ul li a{
    color: white;
    font-size: 20px;
    cursor: none;
}

.sectionTwo{
    background-color: white;
    color: #FF5AFF;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    padding: 7% 0%;
    overflow: hidden;
}

.sectionTwo h2{
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 0px;
    color: white;
    transition: all 1s ease-in-out;
    text-align: center;
    -webkit-text-stroke: 2px #FF5AFF;
    text-stroke: 2px #FF5AFF;
    line-height: 4rem;
}

.sectionTwo h2:hover{
    transition: all 1s ease-in-out;
    color: white;
}

.sectionTwo p{
    font-size: 25px;
    width: 70%;
    text-align: center;
    line-height: 2rem;
}

.info{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    flex-wrap: wrap;
}

.info:hover{
    gap: 25px;
}

.boxInfo{
    padding: 10px 25px;
    border: 2px solid #FF5AFF;
    background-color: transparent;
    border-radius: 25px;
    text-transform: uppercase;
    color: #FF5AFF;
    transition: all 0.5s;
}

.boxActive{
    background-color: #100b4c;
    border: 2px solid white;
}



@media screen and (max-width: 993px){
    .sectionTwo h2{
        font-size: 3rem;
    }
    .sectionTwo p{
        font-size: 22px;
        width: 80%;
    }
}

.sectionThree{
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: white;
}

.sectionThree h2{
    font-size: 5rem;
    letter-spacing: 0px;
    transition: all 0.5s;
    color: black;
    text-transform: uppercase;            
}


.containerPartner{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.containerPartner img{
    object-fit: contain;
    height: 150px;
    filter: grayscale(0%);
    transition: all 0.5s;
}

.containerPartner img:hover{
    filter: grayscale(100%);
}

.containerPartner strong{
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.containerPartnerImg{
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

@media screen and (max-width: 993px){
    .sectionThree h2{
        font-size: 3rem;
    }
}

.containerCardsGeneral{
    width: 100%;
    height: 600px;
    position: relative;
}

.containerTab{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border: 1px solid white;
    
}

.swiper-info img{
    height: 25px;
    object-fit: contain;
    transition: all 0.5s;
    opacity:0;
  }

  .swiper-info img:hover{
    filter: brightness(0) invert(1);
  }

  @media screen and (min-width: 752px) {
    .swiper-slide{
        /* width: 600px!important; */
    }
  }


  .swiper-info{
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(2, 0, 36);
    background: linear-gradient(0deg, rgba(2, 0, 36, 1) 0%, rgba(0, 0, 0, 0) 90%);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }

  .swiper-slide:hover .swiper-info{
    background: linear-gradient(0deg, rgba(2,0,36,1) 0%, rgba(0, 0, 0, 0.413) 90%);
  }

  .swiper-info .infoOne{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }


  .swiper-info strong{
    font-size: 25px;
    text-transform: uppercase;
    color: white;
    text-align: start;
    line-height: 1.5rem!important;
  }

  .author{
    font-size: 18px!important;
  }

  .swiper-info p {
    font-size: 18px;
    text-align: start;
    width: 100%;
    line-height: 23px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    color: white;
  }

  @media screen and (max-width: 1400px) {
    .swiper-info p{
        font-size: 15px;
    }
  }

  .swiper-slide:hover .swiper-info p {
    opacity: 1;
  }

  .swiper-slide:hover .swiper-info img{
    opacity: 1;
  }

  .swiper-slide:hover .swiper-info i {
    opacity: 1;
  }

  .swiper-slide:hover .swiper-info .infoOne{
    transform: translateY(0px);
  }

  .swiper-info i{
    color: #ff0075;
    font-size: 30px;
    transition: all 0.5s;
    opacity:0;
  }

  .swiper-info i:hover{
    color: white;
    cursor: none;
  }

  .swiper-wrapper{
    height: 90%!important;
    position: relative;
  }

  .swiper{
    position: relative;
  }

  .fade1{
    position: absolute;
    height: 100%;
    width: 10%;
    top: 0;
    background: rgb(255,0,117);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.633) 0%, rgba(255,0,117,0) 90%);
    left: 0;
    z-index: 100;
    transition: all 0.5s;
  }

  .fade2{
    position: absolute;
    height: 100%;
    width: 10%;
    background: rgb(255,0,117);
    background: linear-gradient(90deg, rgba(255,0,117,0) 0%, rgba(255, 255, 255, 0.633) 90%);
    right: 0;
    z-index: 100;
    top: 0;
    transition: all 0.5s;
  }


  .containerTab:hover .fade1{
    opacity: 0;
    z-index: -1;
  }

  .containerTab:hover .fade2{
    opacity: 0;
    z-index: -1;
  }

  .swiper-pagination-horizontal{
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .swiper-pagination-bullet-active {
    background-color: white!important;
    }

.containerCards{
    width: max-content;
    display: flex;
    gap: 20px;
    height: 100%;
    
}

.tabActive{
    z-index: 1;
    opacity: 1;
}

.card{
    height: 100%;
    width: 400px;
    border-radius: 20px;
    background-color: black;
}

nav i{
    display: none!important;
}

.menuMobile{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    width: 40%;
    height: 100vh;
    background-color: white;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    align-items: end;
    transform: translateX(300vw);
    transition: all 0.5s;
    -webkit-box-shadow: 0px 0px 21px -8px #000000; 
box-shadow: 0px 0px 21px -8px #000000;
}



.menuMobile ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    width: 100%;
    align-items: start;
}

.menuMobile i{
    font-size: 40px;
}


.menuMobile ul li a{
    color: #1d1d1b;
    font-size: 30px;
    text-transform: uppercase;
}

.menuActive{
    transform: translateX(0vw);
}

.sectionFour{
    position: relative;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: hidden;
}

.bg-sectionfour{
    position: absolute;
    top: 0;
    width: 100%;
    object-fit: contain;
    overflow: hidden;
    left: 0;
    z-index: 1;
    transform: scale(1.2);
}

.sectionFour h2{
    font-size: 3rem;
    letter-spacing: 0px;
    transition: all 0.5s;
    color: black;       
    text-transform: uppercase;      
    position: relative; 
    z-index: 2;
}

.sectionFour h3{
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 30px;
}


.sectionFour p{
    letter-spacing: 1px;
    font-size: 25px;
    color: black;
    position: relative; 
    z-index: 2;
}




.containerHorarios{
    display: flex;
    flex-direction: column;
    position: relative; 
    z-index: 2;
}

.horario{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid black;
    padding: 30px 0px;
    color: black;
    font-size: 1.5rem;
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.1s;
    flex-wrap: wrap;
}


.horario strong{
    width: 30%;
    text-align: start;
}

.horario h4{
    width: 70%;
    text-align: end;
}
.containerComingSoon{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;

}

.containerComingSoon h3{
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: 0px;
    transition: all 0.5s;
    color: rgba(255, 255, 255, 0);              
    -webkit-text-stroke: 2px black; 
    text-stroke: 2px black;
}

h4 {
font-weight: regular!important;
}

.tw-footer{
    object-fit: contain;
    height:20px;
    width: 20px;
    transition: all 0.5s;
    opacity:1!important;
    filter: brightness(0) invert(1);
    }

.tw-footer:hover{
    filter: none;
    opacity:1;
}

.containerButtonAndVideo{
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.botonVideo{
    color: white;
    display: flex;
    align-items: center;
    padding: 18px;
    font-size: 25px;
    border: 2px solid white;
    background-color: transparent;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all 0.5s;
    justify-content: space-between;
    width: max-content;
    gap: 15px;
}

.containerButtonAndVideo i{
    color: white;
    font-size: 40px;
    margin-left: 15px;
}

.boxSocial{
    display: flex;
    align-items: center;
    gap: 10px;
}

.mySwiper3 .swiper-wrapper{
    justify-content: center;
}

@media screen and (max-width: 1024px){
    .mySwiper3 .swiper-wrapper{
        justify-content: normal;
    }
}

@media screen and (max-width: 1238px){
    .sectionOne h2 {
        font-size: 4rem;
    }
}

@media screen and (max-width: 995px){
    .sectionOne h2 {
        font-size: 3rem;
    }
    .sectionFour h2{
        font-size: 3rem;
    }
    .sectionFour p{
        font-size: 22px;
    }
    .horario{
        font-size: 1rem;
    }
}

@media screen and (max-width: 993px){
    .cajaInfo{
        text-transform: uppercase;
        width: max-content;
    }
    .botonVideo{
        padding: 20px;
        font-size: 12px;
    }
    .sectionOne h2{
        font-size: 4rem;
    }
    .sectionOne p{
        font-size: 24px;
        line-height: 1.6rem;
    }
}

@media screen and (max-width: 615px){
    .menuMobile{
        width: 70%;
    }
    .menuMobile ul li a{
        font-size: 24px;
    }
    .sectionOne h2 {
        -webkit-text-stroke: 1px white;
        text-stroke: 1px white;
    }
    .sectionTwo h2 {
        -webkit-text-stroke: 1px #FF5AFF;
        text-stroke: 1px white;
    }
}

@media screen and (max-width: 361px){
    .menuMobile{
        width: 75%;
    }
    .menuMobile ul li a{
        font-size: 22px;
    }

}

@media screen and (max-width: 3112px){
    nav ul{
        display: none;
    }
    nav .containerMenu{
        display: flex!important;
        font-size: 40px;
        color: white;
    }
    nav .containerMenu i {
        display: unset!important;
    }
}

.sectionOne br{
    display: none;
}

@media screen and (max-width: 850px){
    .banner-bg {
        left: 0px;
    }
    .bg-sectionfour {
        width: auto;
        height: 100%;
    }
    .container-text-banner {
        transform: scale(1.8);
    }
    header h3 {
        margin-left: 20px;
    }
    header .titleContainer h1{
        font-size: 5.5rem;
        text-align: center;
        padding-right: 50px;
    }
    header .titleContainer h2{
        font-size: 5rem;
        padding-top: 50px;
        text-align: center;
        padding-left: 50px;
    }
    
    .sectionOne h2 {
        font-size: 3rem;
        letter-spacing: -0.2rem;
    }
    .sectionOne h3 {
        font-size: 20px;
        letter-spacing: -3px;
    }
    .sectionOne p {
        font-size: 20px;

    }
    .cajaInfo {
        width: max-content;
    }    
    .cajaInfo h3{
        width: auto;
        font-size: 15px;
    }
    header h3{
        left: 0;
        margin-bottom: 50px;
        margin-left: 20px;
        margin-right: 0px;
    }
    header strong{
        left: 0;
        margin-left: 20px;
    }
    .containerPartnerImg {
        flex-direction: column;
        width: max-content;
    }
    footer{
        height: 500px;
        padding: 0% 20px;
    }
    body{
        margin-bottom: 500px;
    }
    .container{
        padding: 6% 20px;
    }
    .activeNav {
        padding: 15px 20px;
    }
    footer {
        padding: 0% 20px;
    }
    .sectionOne br{
        display: unset;
    }
    .containerComingSoon h3 {
        font-size: 4rem;
        text-align: center;
    }
}



@media screen and (max-width: 535px){
    .bird {
        height: 550px;
    }
    header .titleContainer h1 {
        font-size: 3.5rem;
        text-align: center;
        padding-right: 0px;
    }
    header .titleContainer h2 {
        font-size: 3rem;
        padding-top: 70px;
        text-align: center;
        padding-left: 0px;
    }
    .sectionOne h2{
        font-size: 1.7rem;
        line-height: 35px;
    }
    .sectionOne p {
        font-size: 20px;
        line-height: 20px;
    }
    .sectionTwo h2 {
        font-size: 1.7rem;
        line-height: 35px;
    }
    .sectionTwo p {
        font-size: 20px;
        line-height: 20px;
    }
    .sectionThree h2 {
        font-size: 1.7rem;
        line-height: 35px;
    }
    .sectionFour h2 {
        font-size: 1.7rem;
        line-height: 35px;
    }
    .footerOne p {
        line-height: 20px;
    }
    .containerComingSoon h3 {
        font-size: 1.9rem;
        text-align: center;
    }
}