/*Estilos base*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Elephant';
    font-style: normal;
    font-weight: 400;
    src: url('/font/Elephant.woff') format('woff'),
    url('/font/Elephant.woff2') format('woff2'),
    url('/font/Elephant.ttf') format('truetype'),
    url("/font/Elephant.otf") format("opentype");
}

@font-face {
    font-family: 'Quentin';
    font-style: normal;
    font-weight: 400;
    src: url('/font/Quentin.woff') format('woff'),
    url('/font/Quentin.woff2') format('woff2'),
    url('/font/Quentin.ttf') format('truetype'),
    url("/font/Quentin.otf") format("opentype");
}

*{
    margin: 0px;
    padding: 0px;
    font-family: "Montserrat", system-ui;
}

html{
    overflow-x: hidden;
}

body{
    overflow-x: hidden;
}

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

p{
    margin: 0px;
}

img{
    width: 100%;
    display: block;
}

a{
    text-decoration: none;
}

ul{
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.btn{
    width: 100%;
    max-width: 150px;
    color: #F9F6F3;
    background-color: #F7CCC7;
    font-size: 18px;
    font-weight: 300;
    display: block;
    border-radius: 36px;
    margin: 0px auto;
    padding: 15px 0px;
    border: none;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
}

.btn img{
    max-width: 22px;
    margin: 0px auto;
}

.content{
    width: 100%;
    max-width: 80.3%;
    margin: 0px auto;
    position: relative;
}

.input{
    margin-bottom: 20px;
    width: 100%;
}

.input label{
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #070707;
    margin-bottom: 9px;
}

.input input, .input select, .input textarea{
    width: 100%;
    height: 50px;
    border: 1px solid #F7CCC7;
    margin: 0px;
    box-sizing: border-box;
    padding-left: 15px;
    font-size: 20px;
    color: #C09C5E;
}

.input input::placeholder{
    color: #C09C5E;
    opacity: 0.5;
}

.input textarea{
    height: 207px;
    padding: 10px 15px;
    resize: none;
}

.checkbox{
    width: 100%;
    display: flex;
    align-items: center;
}

.checkbox input{
    height: 18px;
    width: 18px;
    margin: 0px 9px 0px 0px;
}

.checkbox label{
    margin: 0px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.validation.error{
    border: 1px solid red;
    outline: unset;
}

.errorDisplay {
    color: red;
    font-size: 15px;
    margin-bottom: 15px;
}

.successDisplay {
    color: green;
    font-size: 15px;
    margin-bottom: 15px;
}

.disable {
    pointer-events: none;
    cursor: default;
}

#fondo{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.flex{
    display: flex;
    align-items: center;
    flex-flow: wrap;
}

.flex-space{
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
}

.flex-space-invert{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}

.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: wrap;
}

/*Attraction*/
#attraction{
    width: 100%;
    position: relative;
}

#attraction .swiper-slide{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 812px;
    position: relative;
    padding-top: 150px;
    box-sizing: border-box;
}

#attraction .text{
    max-width: 64%;
    margin: 0px auto;
}

#attraction .title{
    max-width: 180px;
    font-size: 40px;
    font-family: 'Elephant';
    line-height: 43px;
    color: #C09C5E;
    margin-bottom: 180px;
    text-transform: uppercase;
}

#attraction .name{
    font-size: 18px;
    font-weight: 300;
    color: #C09C5E;
    text-align: center;
    text-transform: uppercase;
}

#attraction .name span{
    display: block;
    font-size: 76px;
    font-family: 'Quentin';
    line-height: 83px;
    margin-top: 20px;
    text-transform: none;
}

.icono{
    max-width: 154px;
    position: absolute;
    top: 45px;
    right: 22px;
}

/*Sobre nosotros*/
#sobreNosotros{
    padding: 95px 0px 15px;
    background-color: #F9F6F3;
}

#sobreNosotros .description{
    font-size: 18px;
    font-weight: 300;
    color: #C09C5E;
    text-align: center;
    margin-bottom: 45px;
}

#sobreNosotros .description p{
    margin-bottom: 40px;
}

.timer{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.timer .block{
    margin-right: 30px;
    text-align: center;
}

.timer .block:last-child{
    margin-right: 0px;
}

.timer span{
    display: block;
    font-size: 40px;
    font-family: 'Elephant';
    color: #F7CCC7;
    position: relative;
}

.timer .block:last-child span::after{
    content: none;
}

.timer p{
    font-size: 15px;
    font-family: 'Elephant';
    color: #F7CCC7;
    margin-top: 15px;
}

.separator{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 45px;
}

.separator::before, .separator::after{
    content: '';
    width: 31%;
    height: 1px;
    background-color: #F7CCC7;
}

.separator img{
    max-width: 16px;
    margin: 0px 10px;
}

#sobreNosotros .date{
    font-size: 40px;
    font-family: 'Elephant';
    color: #F7CCC7;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
}

#sobreNosotros .date span{
    display: block;
    font-family: 'Elephant';
}

#sobreNosotros .btn{
    margin-bottom: 75px;
}

.infoBlock{
    width: 100%;
    padding: 45px 17px 25px;
    background-color: #F7CCC7;
    box-sizing: border-box;
    margin-bottom: 65px;
}

.infoBlock .icon{
    max-width: 22px;
    margin: 0px auto 15px;
}

#sobreNosotros .infoBlock .description{
    max-width: 225px;
    color: #F9F6F3;
    margin: 0px auto 10px;
}

.infoBlock .strong{
    font-size: 25px;
    font-family: 'Elephant';
    color: #F9F6F3;
    text-align: center;
    margin-bottom: 25px;
}

#sobreNosotros .infoBlock .btn{
    max-width: 110px;
    background-color: #F9F6F3;
    color: #F7CCC7;
    font-size: 15px;
    font-weight: 400;
    padding: 10px 0px;
    margin-bottom: 100px;
}

.infoBlock .border{
    border: 1px solid #F9F6F3;
    padding: 0px 11px 13px;
    box-sizing: border-box;
}

.infoBlock .border .icon{
    padding: 0px 10px;
    background-color: #F7CCC7;
    margin-top: -9px;
}

.infoBlock .border .strong{
    font-size: 18px;
    margin-bottom: 15px;
}

#sobreNosotros .infoBlock .description span{
    display: block;
}

.account{
    text-align: center;
    background-color: #F9F6F3;
    padding: 8px 0px 3px;
    font-size: 18px;
}

.account p{
    color: #F7CCC7;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.account p.number{
    font-family: 'Elephant';
}

#sobreNosotros .description.final{
    margin-bottom: 55px;
}

#sobreNosotros form .btn{
    max-width: 185px;
    font-family: 'Elephant';
    font-weight: 400;
    padding: 28px 0px;
    margin-bottom: 85px;
}

#sobreNosotros .bottom{
    display: flex;
    align-items: center;
    justify-content: end;
}

#sobreNosotros .bottom p{
    font-size: 30px;
    font-family: 'Quentin';
    color: #C09C5E;
}

#sobreNosotros .bottom img{
    max-width: 16px;
    margin: 0px 10px;
}

#sobreNosotros .bottom::after{
    content: '';
    width: 30%;
    height: 1px;
    background-color: #C09C5E;
}

/*Footer*/
footer{
    width: 100%;
    padding: 8px 0px;
    background-color: #FFFFFF;
}

.developed, .developed a{
    font-size: 8px;
    color: #F7CCC7;
    text-align: center;
}

.audioControl{
    width: 37px;
    height: 28px;
    background-color: #C09C5E;
    border-radius: 15px 0px 0px 15px;
    position: fixed;
    top: 0px;
    bottom: 0px;
    right: 0px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("/img/pause.png");
    background-position: center;
    background-size: 14px 19.5px;
    background-repeat: no-repeat;
    z-index: 10;
}

.audioControl.play{
    background-image: url("/img/play.png");
    background-size: 13.5px 19.5px;
}

/*Modal*/
.modal{
    display: none;
    width: 100%;
    max-width: 800px;
    max-height: 500px;
    padding: 48px 39px 20px;
    background-color: #FFFFFF;
    border-radius: 48px;
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    height: -moz-fit-content;
    height: fit-content;
    z-index: 10;
    box-sizing: border-box;
    overflow-y: scroll;
}

.modal .title{
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.modal .description{
    font-size: 16px;
    line-height: 18px;
    color: #000000;
    margin: 0px auto 20px;
}

.closeModal{
    position: absolute;
    right: 34px;
    top: 25px;
    width: 21px;
}
