@font-face {
    font-family: "Champagne";
    src: url(../fonts/champagne.ttf),
}

@font-face {
    font-family: "Champagne";
    font-weight: bold;
    src: url(../fonts/champagne-bold.ttf),
}

@font-face {
    font-family: "Champagne";
    font-style: italic;
    src: url(../fonts/champagne-italic.ttf),
}


h1,h2,h3,h4,h5,h6{
    font-family: 'Champagne', sans-serif;
}

p,span,label,a,ul{
    font-family: 'Times New Roman', sans-serif;
}

.btn{
    background-color: #6B0D0E;
    color: white;
    border: 1px solid #6B0D0E;
    transition: .4s color;
    font-size: 1.8rem;
}

.btn:hover, .btn:focus{
    background-color: white;
    border: 1px solid #6B0D0E;
    color: #6B0D0E;
    outline: none;
}

.btn-alt{
    background-color: #5D5D5D;
    color: white;
    border: 1px solid #5D5D5D;
    transition: .4s color;
    font-size: 1.8rem;
}

.btn-alt:hover{
    background-color: white;
    border: 1px solid #5D5D5D;
    color: #5D5D5D;
}



nav{
    background-color: #6B0D0E;
    position: relative;
    text-align: center;
    padding: 0px 20px;
    height: 60px;
}

    nav > div{
        text-align: center;
    }

    nav img{
        height: 40px;
        position: absolute;
        left: 20px;
        top: 10px;
    }

    nav h2{
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 3px;
        font-size: 1.6rem;
        text-align: right;
        margin-top: 23px;
    }

    nav h2, nav a{
        color: white;
    }

    nav a{
        font-size: 1.5rem;     
    }
    
    nav i{
        margin-right: 10px;
        font-size: 1.5em;
        vertical-align: middle;
    }

        nav > div > div{
            position: absolute;
            right: 20px;
            top: 18px;
        }
    
    #header-video{
        background: black;
        text-align: center;
    }

    #header-video video{
        width: 100%;
        max-width: 1100px;
    }

@media (min-width: 768px) { 

    nav{
        height: 60px;
        
    }

    nav h2{
        font-size: 3rem;
        text-align: center;
        margin-top: 14px;        
    }
}

@media (min-width: 1200px) { 
    nav h2{
        font-size: 3rem;
    }
}

.divider{
    background-color: #6B0D0E;
    height: 40px;
    width: 100%;
}

.divider-info{
    height: auto;
    padding-top: 20px;
    padding-bottom: 30px;
}

.divider-info .row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.divider-info p{
    color: white;
    font-size: 2.8rem;
    margin-bottom: 0px;
    font-family: 'Champagne';
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.divider-info .btn{
    font-size: 1.7rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    margin-left: 10px;
    margin-top: 5px;
}

.divider-info i, .divider-alt i{
    margin-right: 10px;
    font-size: 1.5em;
    vertical-align: middle;
}

.divider-alt{
    background-color: #282525;
    padding-top: 25px;
    padding-bottom: 15px;
}

.divider-alt i{
    vertical-align: bottom;
}

.divider-alt #redes{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.red{
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.divider-alt a{
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0px;
    font-family: 'Champagne';
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

@media (min-width: 768px) { 

    .divider-info .row{
        justify-content: space-between;
    }

    .red{
        margin-bottom: 15px;
        width: auto;
        display: flex;
        justify-content: space-between;
    }
}

#contacto{
    background-image: url(../img/1.jpg);
    background-size: cover;
    background-position: center;
    padding: 80px 10px;
    min-height: min(80vh, 400px);
}

#contacto > .container > div{
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px 20px;
    border-radius: 20px;
}

#contacto p, #contacto h3{
    text-align: center;
}

#contacto h3{
    color: #6B0D0E;
    font-weight: bold;
    font-family: 'Times new roman';
    text-transform: uppercase;
    font-size: 3rem;
    margin-top: 0;
}

#contacto p{
    font-size: 2rem;
    padding-left: 20px;
    padding-right: 20px;
}

#contacto form{
    width: 90%;
    margin-left: 5%;
    margin-top: 10px;
}

.form-control{
    background-color: #6B0D0E;
    color: white;
    color: rgba(255, 255, 255, 0.8);

}

    .form-control::placeholder {
        color: white;
        color: rgba(255, 255, 255, 0.8);
        opacity: 1; /* Firefox */
    }
  
    .form-control::-ms-input-placeholder { /* Edge 12 -18 */
        color: white;
        color: rgba(255, 255, 255, 0.8);
        
    }

    .form-control:focus{
        border-color: white;
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(107,13,14,.6);
    }


form .g-recaptcha{
    margin-bottom: 25px;
}

#contacto label{
    font-size: 1.8rem;
}

@media (min-width: 768px) { 

    #contacto .container > div{
        width: 80%;
        margin-left: 10%;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (min-width: 1200px) { 

    #contacto{
        padding: 80px 40px;
    }
    

    #contacto .container > div{
        width: 80%;
        margin-left: 10%;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    #contacto form{
        width: 80%;
        margin-left: 10%;
    }
}

#oportunidad{
    background-image: url(../img/2.jpg);
    background-size: cover;
    background-position: bottom;
    padding: 40px 10px;
    min-height: min(80vh, 500px);
    text-align: center;
    position: relative;
}

    #oportunidad .overlay{
        background-color: #000;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: .25;
    }

    #oportunidad p{
        font-family: 'Champagne';
        font-size: 2.5rem;
        font-weight: bold;
    }

    #oportunidad img{
        height: 80px;
        margin-bottom: 30px;
        z-index: 3;
        position: relative;
    }

        #oportunidad .primero p{
            font-family: 'Times New Roman';
            font-weight: bold;
            font-size: 4.5rem;
            color: #6B0D0E;
            text-indent: 30%;
        }

        #oportunidad .primero span{
            font-family: 'Champagne';
            color: #333;
            text-indent: 0rem;
        }

        
        #oportunidad .segundo span{
            color: #6B0D0E;
        }
        
        #oportunidad .tercero p{
            color: black;
            text-shadow: 2px 3px 2px rgba(255,255,255,0.6);
            text-shadow: 2px 3px 2px rgba(255,255,255,0.8);
        }


@media (min-width: 1200px) { 

    #oportunidad .container > div{
        width: 80%;
        margin-left: 10%;
    }

}


#fondo-decoracion{
    height: 180px;
    background-image: url(../img/3.jpg);
    background-size: cover;
    background-position: center;
}

#detalles{
    background-color: #282525;
    padding-top: 40px;
    padding-bottom: 60px;

}

    #detalles span{
        padding-left: 80px;
    }

    #detalles h2{
        font-family: 'Times New Roman';
        font-size: 4.2rem;
        margin-bottom: 20px;
        
    }

    #detalles p{
        font-size: 2rem;
    }

    #detalles p, #detalles h2{
        color: white;
    }

    #contenedor-beneficios{
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-bottom: 2px solid white;
    }

    #beneficios{
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 15px;
        justify-content: center;
    }

    #beneficios img{
        width: calc(33% - 20px);
        margin-right: 10px;
    }

    #contenedor-amenidades{
        padding-bottom: 140px;
    }

    #contenedor-amenidades p{
        margin-bottom: 20px;
    }

    #amenidades{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 20px;

    }

    #amenidades img{
        width: calc(33% - 20px);
        margin-right: 10px;
    }

    #amenidades-extra{
        position: unset;
        text-align: center;

    }

    #amenidades-extra > div{
        background-color: #BEBDBD;
        display: block;
        margin-right: auto;
        margin-left: auto;
        width: 140px;
        height: 140px;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 30px;
    }

    #amenidades-extra h6{
        font-size: 2rem;
        text-align: center;
        font-weight: bold;
    }

    #amenidades-extra .logo{
        position: absolute;
        bottom: 0px;
        right: 0;
        left: 0;
        margin: auto;
    }

@media (min-width: 768px) { 

    #detalles p{
        font-size: 2.4rem;
    }

    #amenidades img{
        width: calc(25% - 20px);
        margin-right: 10px;
    }

}

@media (min-width: 1200px) { 

    #contenedor-beneficios{
        border-bottom: none;
        border-right: 2px solid white;
    }

    #contenedor-amenidades{
        padding-bottom: 0;
    }

    #contenedor-amenidades > p{
        padding-left: 20px;
    }

    
    #detalles h2{
        padding-top: 40px;
    }

    #amenidades-extra .logo{
        position: relative;
        width: 180px;
        max-width: 100%;
        height: auto;
        margin-top: 70px;
    }

}
    

.logo{
    height: 100px;
}

#ubicacion{
    background-color: #282525;
}

    #ubicacion .row{
        display: flex;
    }

    #ubicacion .izq{
        background-image: url(../img/decoracion-ubicacion.jpg);
        background-position: center;
        background-size: cover;
        width: 20%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #ubicacion .izq img{
        width: 50%;
    }

    #ubicacion .der{
        background-image: url(../img/fondo-ubicacion.jpg);
        background-position: center;
        background-size: cover;
        width: 100%;
        text-align: center;
        padding-top: 30px;
        padding-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }

    #ubicacion .der img{
        width: 140px;
        display: block;
        margin-right: auto;
        margin-left: auto;
    }

    #ubicacion h2{
        color: white;
        font-size: 3rem;
        margin-bottom: 30px;
        font-family: 'Times New Roman';
        text-transform: uppercase;
        font-weight: bold;
    }

    #ubicacion iframe{
        max-width: 100%;
    }

    #ubicacion img{
        width: 80%;
    }

@media (min-width: 1200px) { 

    #ubicacion .der{
        width: 80%;
    }

}


#final{
    background-color: #6B0D0E;
}

    #final .row{
        display: flex;
    }

    #final .izq{
        background-image: url(../img/5.jpg);
        background-position: top;
        background-size: cover;
        width: 20%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #final .izq img{
        width: 50%;
    }

    #final .der{
        background-color: #6B0D0E;
        width: 100%;
        text-align: center;
        padding-top: 60px;
        padding-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }

    #final .der img{
        width: 300px;
    }

    #final h1{
        color: white;
        font-size: 4.5rem;
        margin-bottom: 30px;
        font-family: 'Times New Roman';
        text-transform: uppercase;
        font-weight: bold;
        letter-spacing: 3px;
        text-align: center;
    }

    #final iframe{
        max-width: 100%;
    }

    #final img{
        width: 100%;
    }

@media (min-width: 1200px) { 

    #final .der{
        width: 80%;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
    }

    #final h1{
        font-size: 5rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    #final img{
        display: block;
        margin-right: auto;
        margin-left: auto;
    }

}

footer{
    background-color: #282525;
    padding-top: 15px;
    padding-bottom: 10px;
    text-align: center;
}

footer i{
    font-size: 3rem;
    margin-right: 10px;
    margin-bottom: 10px;
}

footer a, footer p{
    font-size: 1.8rem;
    color: white;
}

footer i{
    vertical-align: bottom;
}

#aviso .modal-content{
    background-color: #282525;
}

#aviso h4, #aviso p, #aviso h6, #aviso li{
    color: white;
}

#aviso p, #aviso li{
    font-family: 'Times New Roman';
    font-size: 1.5rem;
}

#aviso h4{
    font-size: 3rem;
}

#aviso h6{
    font-size: 1.8rem;
    margin-top: 30px;
}

#aviso span{
    font-weight: bold;
}

footer a{
    cursor: pointer;
}


.whats{
    position: fixed;
    right: 20px;
    bottom: 10px;
}

header a:hover{
    color: white;
}

a:hover{
    color: #6B0D0E;
}

#feedback{
    font-size: 1.8rem !important;
    text-align: left !important;
    color: #6B0D0E;
    font-style: italic;
    display: none;
}

.loader {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: radial-gradient(farthest-side,#6b0d0e 94%,#0000) top/4px 4px no-repeat,
           conic-gradient(#0000 30%,#6b0d0e);
    -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 4px),#000 0);
    animation: spinner-c7wet2 1s infinite linear;
 }
 
 @keyframes spinner-c7wet2 {
    100% {
       transform: rotate(1turn);
    }
 }