:root {
    --fondo: #EBE5E2;
    --verde: #3F4131;
    /* --verde: #596861; */
    --gaela: 'gaela', Arial, Helvetica, sans-serif;
    --konnectBold: 'konnectBold', Arial, Helvetica, sans-serif;
    --konnectRegular: 'konnectRegular', Arial, Helvetica, sans-serif;
    --konnectLight: 'konnectLight', Arial, Helvetica, sans-serif;



    --time-slot-length: 0.1s;
    --t1x: var(--time-slot-length);
    --t2x: calc(var(--time-slot-length) * 2);
    --t3x: calc(var(--time-slot-length) * 3);
    --t4x: calc(var(--time-slot-length) * 4);
    --color: dodgerblue;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    background-color: var(--fondo);
    scroll-behavior: smooth;
    overflow-x: hidden;
}


@font-face {
    font-family: 'gaela';
    src: url(../font/gaela/GAELA.otf);
}

@font-face {
    font-family: 'konnectBold';
    src: url(../font/konnect/KonnectBold.otf);
}

@font-face {
    font-family: 'konnectRegular';
    src: url(../font/konnect/KonnectRegular.otf);
}

@font-face {
    font-family: 'konnectLight';
    src: url(../font/konnect/KonnectLight.otf);
}



/* SECTION - BANNER */
.navbar {
    position: fixed;
    top: 50px;
    z-index: 1000;
    border-bottom: 1px solid white;
    background-color: transparent;
}

@media (max-width: 1059px) {
    .navbar {
        top: 87px;
    }

}

@media (max-width: 549px) {
    .navbar {
        top: 107px;
        position: absolute;
    }

}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-brand img {
    width: 100px;
    object-fit: cover;
}

.navbar-menu .nav-link {
    color: white;
    font-family: var(--konnectLight);
}



.navbar-redes .nav-link img {
    width: 25px;
    height: 25px;

    transition: 1.5s ease;
    -moz-transition: 1.5s ease;
    -webkit-transition: 1.5s ease;
    -o-transition: 1.5s ease;
}

.navbar-redes .nav-link img:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}


.navbar-redes .nav-link img:not(:hover) {
    transform: scale(1);
}

/* !SECTION - BANNER */



/* SECTION - BANNER MAIN */
.banner__main {
    height: 185vh;

}

.fondo__banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1600px) {
    .banner__main {
        height: 200vh;
    }
}

.contenedor__circulo {
    right: 25%;
    top: 35%;
}

@media (max-width: 1600px) {
    .contenedor__circulo {
        top: 30%;
        right: 20%;
    }
}


.circulo__verde {
    border: 10px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 350px;
    background-color: #596861;
    margin-bottom: 10rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.logo__circulo--verde {
    width: 150px;
}

@media (max-width: 1600px) {
    .circulo__verde {
        width: 300px;
        height: 300px;
    }

    .logo__circulo--verde {
        width: 100px;
    }
}

@media (max-width: 991px) {
    .contenedor__circulo {
        top: 35%;
        right: 20%;
    }

    .circulo__verde {
        width: 250px;
        height: 250px;
        margin-bottom: 4rem;
    }
}

@media (max-width: 800px) {
    .contenedor__circulo {
        top: 12%;
        right: inherit;
        left: 4%;
    }

    .circulo__verde {
        width: 240px;
        height: 240px;
        margin-bottom: 4rem;
    }


}

/* @media (max-width: 600px) {
    .contenedor__circulo {
        top: 45%;
        right: 10%;
    }
} */


.logo__circulo--verde img {
    width: 100%;
    object-fit: cover;
}

.titulo__banner--main h1 {
    font-family: var(--konnectBold);
    text-transform: uppercase;
    font-size: 6rem;
}

@media (max-width: 1600px) {
    .titulo__banner--main h1 {
        font-size: 5rem;
    }
}

@media (max-width: 991px) {
    .titulo__banner--main h1 {
        font-size: 2.5rem;
    }
}


@media (max-width: 900px) {
    .titulo__banner--main h1 {
        font-size: 2rem;
        color: white;
        text-shadow: black 0.1em 0.1em 0.2em
    }
}

.titulo__banner--main span {
    font-family: var(--gaela);
}


.text__armonia {
    position: absolute;
    right: 5px;
    top: 45%;
}


.text__armonia h2 {
    color: #F5F4F2;
    font-size: 8rem;
    text-transform: uppercase;
    font-family: var(--konnectBold);
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    /* Prefijo para Internet Explorer */
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg)
}

.animation__text {
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
    animation: blink 3s infinite alternate;
    -webkit-animation: blink 3s infinite alternate;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.8;
        transform: rotate(180deg) scale(1);
    }

    50% {
        opacity: 1;
        transform: rotate(180deg) scale(1.02);
        -webkit-transform: rotate(180deg) scale(1.02);
        -moz-transform: rotate(180deg) scale(1.02);
        -ms-transform: rotate(180deg) scale(1.02);
        -o-transform: rotate(180deg) scale(1.02);
    }
}

@-webkit-keyframes blink {

    0%,
    100% {
        opacity: 0.8;
        transform: rotate(180deg) scale(1);
        -webkit-transform: rotate(180deg) scale(1);
        -moz-transform: rotate(180deg) scale(1);
        -ms-transform: rotate(180deg) scale(1);
        -o-transform: rotate(180deg) scale(1);
    }

    50% {
        opacity: 1;
        transform: rotate(180deg) scale(1.02);
        -webkit-transform: rotate(180deg) scale(1.02);
        -moz-transform: rotate(180deg) scale(1.02);
        -ms-transform: rotate(180deg) scale(1.02);
        -o-transform: rotate(180deg) scale(1.02);
    }
}


@media (max-width: 1600px) {
    .text__armonia {
        /* right: 5%; */
        top: 40%;
    }

    .text__armonia h2 {
        font-size: 6rem;
    }
}

@media (max-width: 991px) {
    .text__armonia {
        /* right: 3%; */
        top: 50%;
    }

    .text__armonia h2 {
        font-size: 5.5rem;
    }
}

@media (max-width: 700px) {
    .text__armonia {
        display: none;
    }
}



.text__banner--main {
    bottom: 0;
    width: 40%;
    left: 0;
}


@media (max-width: 991px) {
    .text__banner--main {
        width: 70%;
    }
}




.titulo__textbanner--main {
    margin-bottom: 2rem;
}

.titulo__textbanner--main h2 {
    font-family: var(--konnectBold);
    text-transform: uppercase;
    font-size: 28px;
    line-height: revert;
    margin-bottom: 0;
    color: var(--verde);
}

.titulo__textbanner--main span {
    font-family: var(--gaela);
}

.text__banner--main p {
    margin-left: auto;
    width: 70%;
    font-family: var(--konnectRegular);
    font-size: 14px;
    letter-spacing: 1px;
}

@media (max-width: 1600px) {
    .titulo__textbanner--main {
        margin-bottom: 1rem;
    }

    .titulo__textbanner--main h2 {
        font-size: 24px;

    }

    .text__banner--main p {
        width: 95%;
    }
}

@media (max-width: 991px) {
    .text__banner--main p {
        width: 85%;
    }
}

@media (max-width: 600px) {
    .text__banner--main {
        width: 95%;
    }

    .titulo__textbanner--main {
        margin-bottom: 5px;
    }

    .text__banner--main p {
        width: 95%;
    }

    .titulo__textbanner--main h2 {
        font-size: 20px;

    }
}

.linea {
    width: 25%;
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 5px;
}

@media (max-width: 1600px) {
    .linea {
        width: 15%;
    }

}

.linea-1 {
    width: 70%;
    height: 1px;
    background-color: var(--verde);
}

.linea-2 {
    width: 30%;
    height: 5px;
    background-color: var(--verde);
}

/* !SECTION - BANNER MAIN */


/* SECTION - HABITACIONES */
.titulo__habitaciones {
    font-family: var(--gaela);
    font-size: 3.5rem;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .titulo__habitaciones {
        font-size: 3rem;
    }
}


@media (max-width: 600px) {
    .titulo__habitaciones {
        font-size: 20px;
    }
}

.titulo__confort {
    position: absolute;
    right: 5px;
    top: 40%;
}

.titulo__confort h2 {
    color: #F5F4F2;
    font-size: 8rem;
    text-transform: uppercase;
    font-family: var(--konnectBold);
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    /* Prefijo para Internet Explorer */
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg)
}


@media (max-width: 1600px) {
    .titulo__confort h2 {
        font-size: 6rem;
    }
}



@media (max-width: 991px) {
    .titulo__confort {
        display: none;

    }
}

.habitaciones {
    width: 80%;
    margin: auto;
}

@media (max-width: 992px) {
    .habitaciones {
        width: 90%;
    }
}

.tarjetahab {
    height: 85vh;
}

@media (max-width: 1600px){
    .tarjetahab {
        height: 100vh;
    }
}
@media (max-width: 991px){
    .tarjetahab {
        height: 85vh;
    }
}

.tarjetahab img {
    height: 65%;
    width: 100%;
    object-fit: cover;
}

.tarjetahab__info {
    height: 35%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1700px){
    .tarjetahab img {
        height: 60%;
    }
    
    .tarjetahab__info {
        height: 40%;
    }
    
    
}
.tarjetahab__titulo {
    font-size: 1.5rem;
    font-family: var(--konnectBold);
    text-align: center;
}

@media (max-width: 1260px){
    .tarjetahab__titulo {
        font-size: 1.3rem;
    }
}

.tarjetahab__detalles__footer p {
    font-size: 14px;
    letter-spacing: 1px;
    text-align: center;
    /* text-wrap: pretty; */
    font-family: var(--konnectLight);
}
@media (max-width: 1260px){
    .tarjetahab__detalles__footer p {
        font-size: 12px;
    }
}


.buttons-habitaciones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 10px;
    grid-auto-flow: row;
    text-align: center;



}

.btn-verificar {
    background-color: var(--verde);
    padding: 10px 0;
    color: white;
    font-size: 14px;
    font-family: var(--konnectLight);
    text-decoration: none;
}


.btn-detalles {
    /* border: 1px solid black;
    text-align: center;
    padding: 10px 0;
    color: black;
    font-size: 14px;
    font-family: var(--konnectLight);
    text-decoration: none; */

    font-family: var(--konnectLight);
    text-transform: uppercase;
    font-size: 16px;
    text-decoration: none;
    color: black;
    border: 1px solid #00000060;
    list-style-type: none;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    transition: var(--t4x);
    padding: 10px 0;
}

.btn-detalles:hover {
    color: var(--verde);
    animation: pulse ease-out 1s var(--t4x);
    -webkit-animation: pulse ease-out 1s var(--t4x);
}
.btn-detalles::before,
.btn-detalles::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-radius: inherit;
    visibility: hidden;
}

.btn-detalles::before {
    top: 0;
    left: 0;
    border: 1px solid;
    border-color: var(--verde) var(--verde) transparent transparent;
    transition:
        height linear var(--t1x) var(--t2x),
        width linear var(--t1x) var(--t3x),
        visibility 0s var(--t4x);
}

.btn-detalles::after {
    bottom: 0;
    right: 0;
    border: 1px solid;
    border-color: transparent transparent var(--verde) var(--verde);
    transition:
        height linear var(--t1x),
        width linear var(--t1x) var(--t1x),
        visibility 0s var(--t2x);
}


.btn-detalles:hover::before,
.btn-detalles:hover::after {
    width: 100%;
    height: 100%;
    visibility: visible;
}


.btn-detalles:hover::before {
    transition:
        visibility 0s,
        width linear var(--t1x),
        height linear var(--t1x) var(--t1x);
}

.btn-detalles:hover::after {
    transition:
        visibility 0s var(--t2x),
        width linear var(--t1x) var(--t2x),
        height linear var(--t1x) var(--t3x);
}

/* Empezamos con el modal */
.controller__prev__hab,
.controller__next__hab {
    width: 40px;
    height: 40px;
    background-color: #161616;
    color: white;
    border: none;
}

.controller__next__hab.swiper-button-disabled,
.controller__prev__hab.swiper-button-disabled {
    background-color: #9c9c9c;
}


.swiperhab__info h3 {
    font-family: var(--gaela);
}

.swiperhab__info img {
    height: 30px;
}

@media (max-width: 600px) {
    .swiperhab__info img {
        height: 20px;
    }

}

.swiperhab__info h4 {
    font-family: var(--konnectBold);
}

.swiperhab__info p {
    font-family: var(--konnectLight);
    letter-spacing: 1px;
}

/* !SECTION - HABITACIONES */


/* SECTION - DESCANSO  */
.descanso {
    height: auto;
    background-color: white;
}

.contenedor__descanso {
    width: 80%;
    padding: 4rem 0;
}

@media (max-width: 600px) {
    .contenedor__descanso {
        width: 100%;
    }
}

.descanso__contenedor--uno {
    width: 79%;
}

@media (max-width: 1600px) {
    .descanso__contenedor--uno {
        width: 85%;
    }
}

@media (max-width: 768px) {
    .descanso__contenedor--uno {
        width: 90%;
    }
}


.descanso__cuadro {
    opacity: .4;
    margin-top: 2rem;
    border-left: 1px solid black;
    border-top: 1px solid black;
    width: 50px;
}

@media (max-width: 400px) {
    .descanso__cuadro {
        display: none;
    }
}

.descanso__img--uno {
    margin-bottom: 1rem;
}

.descanso__img--uno img {
    height: 100%;
    object-fit: cover;
}


.descanso__contenedor--dos {
    width: 87%;
    z-index: 100;
}


.descanso__img--dos img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

@media (max-width: 1750px) {
    .descanso__contenedor--dos {
        width: 85%;
    }

    .descanso__img--dos img {
        width: 90%;
    }
}

@media (max-width: 1600px) {
    .descanso__contenedor--dos {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .descanso__contenedor--dos {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .descanso__img--dos img {
        width: 100%;
    }
}

.descanso__cuadrodos {
    z-index: -10;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    width: 60px;
    height: 250px;
    opacity: .4;
    right: 0;
    position: absolute;
}

@media (max-width: 1180px) {
    .descanso__cuadrodos {
        bottom: 5rem;
    }
}

@media (max-width: 991px) {
    .descanso__cuadrodos {
        display: none;
    }
}


.descanso__icono {
    background-color: var(--verde);
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 42%;
    top: 35%;
    z-index: 100;
}

@media (max-width: 1600px) {
    .descanso__icono {
        left: 45%;
    }
}

@media (max-width: 1530px) {
    .descanso__icono {
        top: 30%;
    }
}




.descanso__icono--img {
    width: 70%;
}

.descanso__icono--img img {
    width: 100%;
    object-fit: cover;

}

@media (max-width: 1180px) {
    .descanso__icono {
        width: 150px;
        height: 150px;
        top: 30%;
    }

    .descanso__icono--img {
        width: 60%;
    }
}

@media (max-width: 1175px) {
    .descanso__icono {
        top: 27%;
    }
}

@media (max-width: 1035px) {
    .descanso__icono {
        top: 24%;
    }
}

@media (max-width: 768px) {
    .descanso__icono {
        top: 10%;
        left: 10%;
    }
}

@media (max-width: 730px) {
    .descanso__icono {
        top: 13%;
        left: 0;
    }
}

@media (max-width: 730px) {
    .descanso__icono {
        top: 27%;
        left: inherit;
        right: 0;
    }
}

.text__descanso {
    width: 80%;
}

@media (max-width: 1280px) {
    .text__descanso {
        width: 90%;
    }
}

.text__descanso h2 {
    font-family: var(--konnectBold);
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 17rem;
}

@media (max-width: 1545px) {
    .text__descanso h2 {
        font-size: 3rem;
    }
}


.text__descanso span {
    font-family: var(--gaela);
}

.text__descanso p {
    font-family: var(--konnectLight);
    margin-bottom: 3rem;
    font-size: 14px;
    letter-spacing: 1px;
}

@media (max-width: 1180px) {
    .text__descanso h2 {
        margin-bottom: 10rem;
    }

}

@media (max-width: 1035px) {
    .text__descanso h2 {
        font-size: 2rem;
    }

}

@media (max-width: 768px) {
    .text__descanso h2 {
        margin-bottom: 10px;
    }

    .text__descanso p {
        margin-bottom: 1rem;
    }

}

@media (max-width: 600px) {
    .text__descanso {
        width: 100%;
        text-align: center;
    }

    .text__descanso h2 {
        font-size: 20px;
    }

    /* .text__descanso p {
        font-size: 14px;
    } */

}


.btn-reservar {
    /* font-family: var(--konnectLight);
    text-transform: uppercase;
    font-size: 16px;
    text-decoration: none;
    color: black;
    border: 1px solid #00000060;
    padding: 10px 3rem;

    transition: var(--t4x);
    position: relative; */

    font-family: var(--konnectLight);
    text-transform: uppercase;
    font-size: 16px;
    text-decoration: none;
    color: black;
    border: 1px solid #00000060;
    list-style-type: none;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    transition: var(--t4x);
    padding: 10px 3rem;

}


/* NOTE - ANIMACION BOTON */
.btn-reservar:hover {
    color: var(--verde);
    animation: pulse ease-out 1s var(--t4x);
    -webkit-animation: pulse ease-out 1s var(--t4x);
}

.btn-reservar::before,
.btn-reservar::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-radius: inherit;
    visibility: hidden;
}

.btn-reservar::before {
    top: 0;
    left: 0;
    border: 1px solid;
    border-color: var(--verde) var(--verde) transparent transparent;
    transition:
        height linear var(--t1x) var(--t2x),
        width linear var(--t1x) var(--t3x),
        visibility 0s var(--t4x);
}

.btn-reservar::after {
    bottom: 0;
    right: 0;
    border: 1px solid;
    border-color: transparent transparent var(--verde) var(--verde);
    transition:
        height linear var(--t1x),
        width linear var(--t1x) var(--t1x),
        visibility 0s var(--t2x);
}


.btn-reservar:hover::before,
.btn-reservar:hover::after {
    width: 100%;
    height: 100%;
    visibility: visible;
}


.btn-reservar:hover::before {
    transition:
        visibility 0s,
        width linear var(--t1x),
        height linear var(--t1x) var(--t1x);
}

.btn-reservar:hover::after {
    transition:
        visibility 0s var(--t2x),
        width linear var(--t1x) var(--t2x),
        height linear var(--t1x) var(--t3x);
}

@keyframes pulse {
    from {

        /* box-shadow: 0 0 hsla(210, 100%, 56%, 0.5); */
        box-shadow: 0 0 hsla(67, 14%, 22%, 0.5);
    }

    to {


        box-shadow: 0 0 0 1em hsla(210, 100%, 56%, 0);
    }
}





.titulo__descanso {
    position: absolute;
    right: 5px;
    bottom: 5%;
}

.titulo__descanso h2 {
    color: #F5F4F2;
    font-size: 8rem;
    text-transform: uppercase;
    font-family: var(--konnectBold);
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

@media (max-width: 1600px) {
    .titulo__descanso h2 {
        font-size: 6rem;
    }
}

@media (max-width: 991px) {
    .titulo__descanso h2 {
        font-size: 5.5rem;
    }
}

@media (max-width: 700px) {
    .titulo__descanso {
        display: none;
    }
}



/* !SECTION - DESCANSO  */


/* SECTION - LUJO */
.lujo {
    height: 45vh;
}

@media (max-width: 991px) {
    .lujo {
        height: auto;
    }
}

.container__lujo {
    width: 75%;
}

.container__lujo img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.container__lujo h3 {
    text-transform: uppercase;
    font-size: 24px;
    font-family: var(--gaela);
    color: var(--verde);
}

.container__lujo p {
    font-family: var(--konnectLight);
    font-size: 14px;
    letter-spacing: 1px;
}


.border-derecho {
    border-right: 1px solid var(--verde);
}

@media (max-width: 768px) {
    .border-derecho {
        border-right: none;
    }
}

.titulo__lujo {
    position: absolute;
    right: 5px;
}

.titulo__lujo h2 {
    color: #F5F4F2;
    font-size: 8rem;
    text-transform: uppercase;
    font-family: var(--konnectBold);
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

@media (max-width: 1600px) {
    .titulo__lujo h2 {
        font-size: 6rem;
    }
}

@media (max-width: 991px) {

    .titulo__lujo h2 {
        font-size: 5.5rem;
    }
}

@media (max-width: 700px) {
    .titulo__lujo {
        display: none;
    }
}



/* !SECTION - LUJO */


/* SECTION - MINI BANNER MAIN */
.minibanner__main {
    margin-bottom: 5rem;
}

.minibanner__main img {
    width: 100%;
    height: 42vh;
    object-fit: cover;
}

.minibanner__main--info h2 {
    font-family: var(--konnectBold);
    color: white;
    font-size: 3rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0;
}

.minibanner__main--info span {
    font-family: var(--gaela);
}

.minibanner__main--info p {
    font-family: var(--konnectLight);
    font-size: 20px;
    color: white;
    text-align: center;
    letter-spacing: 1px;
}

@media(max-width: 1600px) {
    .minibanner__main--info h2 {
        font-size: 2.5rem;
    }

    .minibanner__main--info p {
        font-size: 18px;
    }
}

@media(max-width: 991px) {
    .minibanner__main--info h2 {
        font-size: 2rem;
    }

    .minibanner__main--info p {
        font-size: 16px;
    }
}

@media(max-width:600px) {
    .minibanner__main--info h2 {
        font-size: 20px;
    }

    .minibanner__main--info p {
        font-size: 14px;
    }
}

.linea__doble {
    width: 40%;
    height: 1px;
    background-color: white;
}

.linea__doble-dos {
    width: 30%;
    height: 5px;
    background-color: white;
    margin: 0 auto;
}

/* !SECTION - MINI BANNER MAIN */



/* SECTION - PLANIFICA  */
.planifica {
    margin-bottom: 5rem;
}

.container__planifica {
    border: 1px solid #00000060;
    padding: 1.5rem 0;
}

.container__planifica h2 {
    color: var(--verde);
    font-size: 2rem;
    font-family: var(--konnectBold);
    text-transform: uppercase;
    margin-bottom: 0;
    text-align: center;
}

.container__planifica span {
    font-family: var(--gaela);
}

.container__planifica p {
    font-family: var(--konnectLight);
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .container__planifica p {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .container__planifica h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .container__planifica p {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* !SECTION - PLANIFICA  */


/* SECTION - CONTACTO */
.contacto {
    margin-bottom: 4rem;
}

.contacto h2 {
    font-family: var(--gaela);
    font-size: 4rem;
    color: var(--verde);
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 5px;
}

@media (max-width: 991.98px) {
    .contacto h2 {
        font-size: 3rem;
    }
}

.linea__doble--verde {
    width: 15%;
    height: 1px;
    background-color: var(--verde);
    margin-bottom: 4rem;
}

.linea__doble--verdedos {
    width: 30%;
    height: 5px;
    background-color: var(--verde);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contacto h2 {
        font-size: 2rem;
    }

    .linea__doble--verde {
        margin-bottom: 2rem;
    }

}

.contacto__ubicacion img {
    width: 45px;
    height: 45px;
    margin-right: 1rem;
}



.contacto__ubicacion a {
    text-decoration: none;
    font-family: var(--konnectLight);
    font-size: 14px;
    letter-spacing: 1px;
    color: black;
}



.contacto__whats img {
    width: 45px;
    height: 45px;
    margin-right: 1rem;
}

@media (max-width: 768px) {

    .contacto__ubicacion img,
    .contacto__whats img {
        width: 30px;
        height: 30px;
    }
}

.contacto__whats h3 {
    color: var(--verde);
    font-family: var(--konnectBold);
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 0;
}

.contacto__whats p {
    font-size: 12px;
    font-family: var(--konnectBold);
    margin-bottom: 0;
    letter-spacing: 1px;
}

.contacto__whats a {
    text-decoration: none;
    color: black;
    font-family: var(--konnectLight);
    font-size: 24px;
}

@media (max-width: 991.98px) {
    .contacto__ubicacion a {
        font-size: 14px;
    }

    .contacto__whats h3 {
        font-size: 20px;
    }

    .contacto__whats a {
        font-size: 16px;
    }
}

.contacto__redes a {
    text-decoration: none;
}

.contacto__redes img {
    width: 25px;
    height: 25px;
}


.contacto__formulario form {
    width: 75%;
}

@media (max-width: 1600px) {
    .contacto__formulario form {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .contacto__formulario form {
        width: 100%;
    }
}

.contacto__formulario .form-control::placeholder {
    font-family: var(--konnectLight);
    font-size: 14px;
    color: rgba(0, 0, 0, 0.60);
}

.contacto__formulario .form-control {
    font-family: var(--konnectLight);
    font-size: 14px;
    color: rgba(0, 0, 0, 0.60);
}

.btn-enviar {
    font-family: var(--konnectLight);
    color: white;
    background-color: var(--verde);
    border: 0;
    padding: 10px 3rem 5px 3rem;
}

/* !SECTION - CONTACTO */


/* SECTION  - FOOTER */
footer {
    background-color: var(--verde);
}

.logo__footer {
    width: 120px;
}

.linea-footer {
    width: 100%;
    height: 1px;
    background-color: white;
    opacity: .5;
}

.footer__redes p {
    font-family: var(--konnectBold);
    color: white;
    font-size: 16px;
    letter-spacing: 1px;
}

.footer__redes img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.footer__redes a {
    text-decoration: none;
    color: white;
    font-family: var(--konnectLight);
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1;
}


.copyright {
    background-color: #272727;
}

.copyright p {
    font-family: var(--konnectLight);
    font-size: 14px;
    color: white;
    letter-spacing: 1px;
}

@media (max-width: 991.98px) {
    .footer__redes img {
        width: 25px;
        height: 25px;
    }

    .footer__redes p {
        font-size: 14px;
    }

    .footer__redes a {
        font-size: 12px;
    }

    .copyright p {
        font-size: 14px;
    }
}

/* !SECTION  - FOOTER */





/* -------------------------------------------------------------------------- */
/*                               VISTA - GALERIA                              */
/* -------------------------------------------------------------------------- */



/* SECTION - BANNER  */
.fondo__banner--galeria {
    width: 100%;
    height: 130vh;
    object-fit: cover;
}

@media (max-width: 600px) {
    .fondo__banner--galeria {
        height: 100vh;
    }
}

.titulo__galeria {
    position: absolute;
    right: 5px;
    bottom: 0;
}

.titulo__galeria h2 {
    color: #F5F4F2;
    font-size: 8rem;
    text-transform: uppercase;
    font-family: var(--konnectBold);
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

@media (max-width: 1600px) {
    .titulo__galeria {
        right: 5%;
    }

    .titulo__galeria h2 {
        font-size: 6rem;
    }
}

@media (max-width: 991px) {
    .titulo__galeria {
        right: 3%;
    }

    .titulo__galeria h2 {
        font-size: 5.5rem;
    }
}

@media (max-width: 700px) {
    .titulo__galeria {
        display: none;
    }
}





.contenedor__circulo--galeria {
    right: 30%;
    bottom: 15%;
}

.circulo__verde--galeria {
    border: 10px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
    background-color: #596861;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.logo__circulo--galeria img {
    width: 150px;
    object-fit: cover;
}

@media (max-width: 1600px) {
    .logo__circulo--galeria img {
        width: 100px;
    }

    .contenedor__circulo--galeria {
        bottom: 10%;
    }
}

@media (max-width: 991px) {
    .logo__circulo--galeria img {
        width: 80px;
    }
}

@media (max-width: 991px) {
    .circulo__verde--galeria {
        width: 250px;
        height: 250px;
    }
}

/* !SECTION - BANNER  */



.galeria {
    width: 80%;
    margin-bottom: 5rem;
}

@media(max-width: 1600px) {
    .galeria {
        width: 90%;
    }
}

@media(max-width: 991px) {
    .galeria {
        width: 95%;
    }
}

@media(max-width: 600px) {
    .galeria {
        width: 100%;
    }
}

.galeria__info {
    margin-bottom: 3rem;
}

.galeria__info h2 {
    font-family: var(--konnectBold);
    font-size: 4rem;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
}

.galeria__info span {
    font-family: var(--gaela);
}

.galeria__info p {
    text-align: center;
    font-family: var(--konnectLight);
    font-size: 14px;
    letter-spacing: 1px;
    width: 60%;
    margin: auto;
}

@media (max-width: 991.98px) {
    .galeria__info h2 {
        font-size: 3rem;
    }

    .galeria__info p {
        width: 80%;
    }
}

@media (max-width: 600px) {
    .galeria__info h2 {
        font-size: 2rem;
    }

    .galeria__info p {
        font-size: 14px;
        width: 95%;
    }

}

.img__galeria {
    margin: auto;
}


.img__galeria img {
    width: 100%;
    height: 45vh;
    object-fit: cover;

}

div.card__galeria {
    cursor: zoom-in;
    position: relative;
    overflow: hidden;
    text-align: center;
}

div.card__galeria * {
    -webkit-box-sizing: padding-box;
    box-sizing: padding-box;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
}

/* div.card__galeria img {
    max-width: 100%;
    vertical-align: top;
} */

div.card__galeria .img-overlay {
    top: 50%;
    left: 20px;
    right: 20px;
    position: absolute;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}


div.card__galeria i {
    font-size: 40px;
    color: white;
    /* pointer-events: none; */
}

div.card__galeria:after {
    width: 100%;
    pointer-events: none;
    background-color: #ffffff;
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 10px;
    right: 10px;
    bottom: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    opacity: 0;
}

div.card__galeria:hover .img-overlay,
div.card__galeria.hover .img-overlay {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

div.card__galeria:hover:after,
div.card__galeria.hover:after {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 0.3;
}


@media (max-width: 600px) {
    .img__galeria img {
        height: 25vh;
    }
}

/* SECTION - CONTACTO GALERIA */
.contacto__galeria--contenedor {
    margin-bottom: 5rem;
}

.contacto__galeria {
    width: 90%;
}

@media (max-width: 1210px) {
    .contacto__galeria {
        width: 100%;
    }
}

.contacto__galeria h2 {
    font-family: var(--konnectBold);
    text-transform: uppercase;
    font-size: 4rem;
}

@media (max-width: 1600px) {
    .contacto__galeria h2 {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .contacto__galeria h2 {
        font-size: 2rem;
    }
}

.contacto__galeria h2 span {
    font-family: var(--gaela);
}

.linea__contacto-galeria {
    width: 23%;
    height: 1px;
    background-color: var(--verde);
    margin-bottom: 4rem;
}

.linea__doble--galeria {
    width: 30%;
    height: 5px;
    background-color: var(--verde);
    margin-left: auto;
}

.lista__contacto--galeria {
    width: 75%;
    margin-left: auto;
}


@media (max-width: 1080px) {
    .linea__contacto-galeria {
        width: 15%;
    }

    .lista__contacto--galeria {
        width: 95%;
    }
}

.formulario__galeria form {
    width: 60%;
}

@media (max-width: 1600px) {
    .formulario__galeria form {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .formulario__galeria form {
        width: 95%;
    }
}


.formulario__galeria .form-control::placeholder {
    font-family: var(--konnectLight);
    font-size: 14px;
    color: rgba(0, 0, 0, 0.60);
}

.formulario__galeria .form-control {
    font-family: var(--konnectLight);
    font-size: 14px;
    color: rgba(0, 0, 0, 0.60);
}

.btn-enviar-galeria {
    font-family: var(--konnectLight);
    color: white;
    background-color: var(--verde);
    border: 0;
    padding: 10px 3rem 5px 3rem;
}

/* SECTION - CONTACTO GALERIA   */