* {
    box-sizing: border-box;
}

html, body{
scroll-behavior: smooth;    
width: 100%;
height: 100%;
}

/* foundation */

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    margin: 0;
    background: #121212;
    color: rgba(242, 242, 242, 1);
    overflow-x: hidden;
    font-size: clamp(1em, 1.0416vw, 1.25em);
}

a{
    color: rgba(242, 242, 242, 1);
    transition: all 0.3s ease;
    
}

a:hover{
    color: rgba(242, 242, 242, 0.5);
    text-decoration: none;
}

.light-50 {
    color: rgba(242, 242, 242, 0.5);
}

.c-gray-1{
    color: #F2F2F2;
}

.fw-700{
    font-weight: 700;
}

.mb-3{
    margin-bottom: 3rem;
}

.fs-15px{
    font-size: 15px;
}

.text-align-start{
    text-align: start;
}



h1,
h2,
h3,
h4,
h5 {
    margin: 0px;
    padding: 0px 8px;
}


h1, h2{
    font-size: clamp(1em, 1.56vw, 2em);
    text-align: center;
    opacity: 1;
    font-weight: 600;
}

h3{
    font-size: clamp(1.5em, 1.56vw, 2em);
}

.panel h3{
    text-align: center;
}

h2{
    font-weight: 300;
}

h4 {
    font-size: clamp(1.25em, 1.25vw, 1.5em);
    text-align: center;
}

h5 {
    font-size: 18px;
    text-align: center;
    opacity: 1;
    font-weight: 600;
}

.text-semibold{
    font-weight: 600;
}

/* fin foundation */

/* zindex timeline */



.loader-wrapper{
    z-index: 999;
}

.topnav{
    z-index:2;
}

header{
    z-index:0;
}

.contents-offset{
    z-index: 1;
}

footer{
    z-index: 1;
}




/* Preloader*/
.loader-wrapper {
    background-color: #121212;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 2.5s ease;
    transition-delay: 0.5s;
    opacity: 1;
    position: absolute;
}

.loader-wrapper.loaded {  
    opacity: 0;
    transform: translateX(200%);
}

.loading-txt {
    display: block;
    width: 100%;
    font-size: 16px !important;
    text-align: center;
    letter-spacing: 1px;
    padding: 18px 0px;
}

.progress-bar {
    height: 2px;
    background-color: rgba(242, 242, 242, 0.3);
    width: 300px;
    overflow: hidden;
}

.progress-bar-value {
    width: 100%;
    height: 100%;
    background-color: rgba(242, 242, 242, 0.8);
    animation: indeterminateAnimation 1s infinite linear;
    transform-origin: 0% 50%;
}

@keyframes indeterminateAnimation {
    0% {
        transform: translateX(0) scaleX(0);
    }

    40% {
        transform: translateX(0) scaleX(0.4);
    }

    100% {
        transform: translateX(100%) scaleX(0.5);
    }
}


/* fin preloader */


.topnav{
    width: 100vw;
    max-width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    padding: 8px 8px;

}

@media (min-width: 1240px) {
    .topnav{
        padding: 16px 24px;
    }
} 



.logo-desktop{
    display: none;
}

.logo-mobile{
    display: block;
}

@media (min-width: 1240px) {
    .logo-desktop{
        display: block;
    }

    .logo-mobile{
        display: none;
    }
}



.title-separator {
    display: block;
    width: 180px;
    height: 1px;
    background: rgba(242, 242, 242, 0.5);
    background-size: 1px;
    margin: 24px auto;
}

.title-separator-full {
    display: block;
    width: 98%;
    height: 1px;
    background: rgba(242, 242, 242, 0.5);
    background-size: 1px;
    margin: 24px auto;
}

section {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 2.5vh 0;
}



@media (min-width: 1200px){
    section {
    margin: 5vh 0;
    }            
}


.section-content {
    background-color: #121212;
}

.header-footer{
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 300%;
}

@media (min-width: 1024px){
    .header-footer{        
        width: 100%;
    }          
}

.header-footer img{
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* frame-forest 2*/

.frame-forest2{
    width: 100vw;
    overflow:hidden;
}

.frame-forest2 img{
    width:100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.section-about{
    margin-top:0vh !important;
}



main {

    position: relative;
}





@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


.hover-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 32px 16px;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3 ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.circle-info {
    width: 160px;
    height: 160px;
    border: 3px solid #f2f2f2;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;

}


.panel .circle-info {
    transform: translate(-50%, 0%);
    opacity: 0;
}

.panel.active .circle-info {
    display: none;
}

@media (hover: hover) {
    .panel:hover .circle-info {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

@media (hover: none) {
    .panel:hover .circle-info {
        display: none;
        opacity: 0;
    }
}

/*fin acordion panels */




/*full video*/


header {
    position: relative;
}

#videowrapper {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

#fullScreenDiv {
    min-height: 100%;
    height: 100vh;
    width: 100vw;
    padding: 0;
    margin: 0;
    background-color: #121212;
    position: relative;
}

#video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}


#header-content{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 16px;
    gap: 16px;
    transform: translateY(-60px);
}




.fadeInOut{
    animation: fadeInOut 1s infinite alternate;
}


@keyframes fadeInOut { 
    to { opacity: 0.3;} 
}


/* animaciones scrollTrigger */

.animation {
    will-change: transform;
    transition: 500ms all ease-out;
}


.transition__delay-0s {
    transition-delay: 0s;
}

.transition__delay-03s {
    transition-delay: 0.3s;
}

.transition__delay-06s {
    transition-delay: 0.5s;
}

.transition__delay-1s {
    transition-delay: 1s;
}

.transition__delay-2s {
    transition-delay: 2s;
}


@media screen and (min-width: 1200px) {

.fade-left-desktop {
    opacity: 0;
    transform: translateX(-50%);
}

.fade-left-desktop.animate {
    transform: translateX(0);
    opacity: 1;
}

.fade-right-desktop {
    opacity: 0;
    transform: translateX(50%);
}

.fade-right-desktop.animate {
    transform: translateX(0);
    opacity: 1;
}


.image-fade-right-desktop {
    opacity: 0;
    right: -240px!important;
}

.image-fade-right-desktop.animate {
    right: -40px!important;
    opacity: 1;
}


.fade-down-desktop,
.fade-up-desktop {
    opacity: 0;
    transform: translateY(50%);
}

.fade-up-desktop {
    transform: translateY(50%);
}

.fade-down-desktop {
    transform: translateY(-50%);
}

.fade-down-desktop.animate,
.fade-up-desktop.animate {
    opacity: 1;
    transform: translateY(0);
}


}



/* section about */


.contents-offset{
    position: relative;
    padding-top: 3rem;
}

/*
.contents-offset {
    margin-top: -200px;
}

@media (min-width: 1200px){
    .contents-offset {
        margin-top: -480px;
    }            
}

@media (min-width: 1600px){
    .contents-offset {
        margin-top: -380px;
    }            
}
*/


.section-about-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}


.section-about-content .left,
.section-about-content .right {
    width: 100%;
    min-height: 378px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    padding: 18px 18px;
    text-align: center;
}

.left p,
.right p {
    width: 100%;
}

@media (min-width: 1200px) {

    .section-about-content {
        flex-direction: row;
    }

    /*
    .section-about-content .left,
    .section-about-content .right {
        width: 50%;
        justify-content: space-between;
        padding: 32px 64px;
    }
    */

    
    .section-about-content .right {
        width: 100%;
        justify-content: space-around;
        padding: 32px 64px;
    }

    .left p,
    .right p {
        width: 50%;
    }

}


/* section ps-talents */

.ps-talents-container {
    width: 100%;
    height: 550px;
    position: relative;
    margin: 0 auto;
    overflow-x: hidden;
}

@media (min-width: 1200px){
    .ps-talents-container{
    width: 700px;
    height: 550px;
    position: relative;
    margin: 0 auto;
    }
}

.ps-talents-container .icons-container{
    position: absolute;
    width: 560px;
    height: 525px;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
}
.ps-talents-container .text-container{
    position: absolute;
    width: 100%;
    height: 550px;
    top:-32px;
    left:0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.ps-talents-container .icons-container .cuadrado{
    position: absolute;
    top:0px;
    left:0px;
}

.ps-talents-container .icons-container .triangulo{
    position: absolute;
    top:80px;
    right:0px;
}
.ps-talents-container .icons-container .aspa{
    position: absolute;
    left:0px;
    bottom:80px;
}

.ps-talents-container .icons-container .circulo{
    position: absolute;
    right:80px;
    bottom:0px;
} 


/* section save the date */

.shark-container{
        position: relative;
        width: 100%;
        height: auto;
        min-height: 400px;
        margin: 0 auto;
}

@media (min-width: 1200px){
    .shark-container{
        position: relative;
        width: 50%;
        height: auto;
        min-height: 850px;
        margin: 0 auto;
    }
}



.shark-image{
    position: absolute;
    width:100%;
    height: 100%;
    left:0px;
    right: 0px;
    background-image: url(../img/tiburon-molon.png);
    background-color: rgba(18,18,18,.30);
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%; 
}

.shark-txt {
    position: absolute;
    position: absolute;
    width:100%;
    height: 100%;
    left:0px;
    right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}


.shark-info-date {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:24px;
    margin: 0px 16px;
    text-align: center;
}

/* opcion 2*/

.bg-shark{
    background-image: url(../img/tiburon-molon.png);
    background-color: rgba(18,18,18,.30);
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;              
    width: 100%;
    min-height: 754px;           
    margin: 0 auto;
    padding: 16px;            
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}

@media (min-width: 1200px){
    .bg-shark{
        width: 50%;
        background-size: cover;
        min-height: 768px;
        padding: 0px;
        background-size: cover; 
    }
}


.bg-shark .info-date{    
    width: 100%;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}


@media (min-width: 768px){
    .bg-shark .info-date{    
        width: 100%;
        display:flex;
        flex-direction: row;
        justify-content: space-between;
        text-align: center;
    }
}


/* opcion 3 */

.shark-image-container{
    margin: 0 auto;
    width: 80%;
}

.shark-image-container img{
    width: 100%;
    height: auto;
}



@media (min-width: 1280px){
    .shark-image-container{
        margin: 0 auto;
        width: 50%;
    }
}

@media (min-width: 1920px){
    .shark-image-container{
        margin: 0 auto;
        width: 33%;
    }
}

.info-shark-txt-op3{
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    gap: 32px;
    padding: 0px 16px;
}

.info-shark-txt-op3 div{
text-align: center;
padding: 0px 16px;
}




/* secion save the date*/

.save-the-date-contents{
    width: 100%;
    background-image: url(https://d3des6gui7vs6w.cloudfront.net/web/landings/camp-verano/bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    border-top: 1px solid rgba(242, 242, 242, 0.5);
    border-bottom: 1px solid rgba(242, 242, 242, 0.5);
    min-height: 500px;
}

.save-the-date-contents .box{
    flex: 1 0; 
    min-height: 500px;
    padding: 48px 18px;         
}

.save-the-date-contents .box:nth-child(even) { 
    border-left: 1px solid rgba(242, 242, 242, 0.5);
    border-right: 1px solid rgba(242, 242, 242, 0.5);
}

.save-the-date-contents .box li{
    margin-bottom: 1em;
}

.save-the-date-contents .box li ul{
    margin: 0.5rem;
}

.save-the-date-contents .box li ul li{
    margin-bottom: 0.5rem;
}


/* section-form*/

#formulario-inscripcion{
    background-image: url(../img/bg-formulario.webp);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 0px !important;

}

.container-form{
    width: 80%;
    padding: 16px;
    margin: 0 auto;
    
}

@media (max-width: 1670px){

    .container-form{
        width: 90%;
        padding: 16px;
        margin: 0 auto;
        
    }

}

@media (max-width: 1280px){

    .container-form{
        width: 100%;
        padding: 16px;
        margin: 0 auto;
        
    }

}





.container-form .form-row{
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}


@media (min-width: 1200px){

    .container-form .form-row{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }

}


.container-form .form-group{
    margin-bottom: 32px;
}

input[type=text], input[type=email], input[type=number], select, textarea {
    width: 100%;
    padding: 16px;
    background: rgba(18, 18, 18, 0.5);
    color: #f2f2f2;
    border: 1px solid #f2f2f2;
    outline: 0px solid #f2f2f2;
    resize: vertical;
    font-size: 16px !important;
}

input[type=email]:focus,
input[type=text]:focus,
input[type=number]:focus,
textarea:focus {
  border-color: #f2f2f2;
  outline: 0px solid #f2f2f2;
  background: rgba(18, 18, 18, 1);
}

label{
    display: inline-block;
    font-size: 18px !important;
    padding: 8px 0px;
}

.form-submit-button {
	background: rgba(18, 18, 18, 1);
	color: #f2f2f2;
	border:1px solid #f2f2f2;
	width: 100%;
    padding: 16px 24px;
	text-shadow: none;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 24px;
}

.form-submit-button span{
    transition: all 0.3s;
    letter-spacing: 1px;

}


.form-submit-button:hover span{
    letter-spacing: 4px;
}






.label-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .label-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    left: 0;
    height: 28px;
    width: 28px;
    background-color: rgba(18, 18, 18, 0.5);
    border: 1px solid #f2f2f2;
  }
  
 
  /* When the checkbox is checked, add a blue background */
  .label-container input:checked ~ .checkmark {
    background-color: rgba(18, 18, 18, 1);
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .label-container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .label-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #f2f2f2;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  select{
      appearance: none;
      background-image: url(../img/select-icon.png);
      background-repeat: no-repeat;
      background-position: calc(100% - 18px) center;

  }





/*section footer */

footer{
    position: relative;
    width: 100%;
    min-height: 10vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 16px;
    border-top:1px solid rgba(242, 242, 242, 0.5);
    font-size: 16px;
    gap: 32px;
}

footer .footer-logo-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width:100%;
    padding: 0px 16px;

}

footer .footer-logo-content a{
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;

}

footer .footer-logo-content a img{
    width: auto;
    height: 60px;
    margin: 0 auto;
}

.copyright-area ul{list-style: none; }

.copyright-area ul li {
display: inline-block;
position: relative;
margin: 0 12px;
}


@media (max-width: 1279px) {
    footer .footer-logo-content{
        flex-direction: column;
        gap: 32px;
    }
}
