:root {
    --gris: #A3A6A1;
    --naranja: #F38D2C;
    --rosa: #A45EB5;
    --whats: #00D954;
    --verde: #C1D44B;
    --azulc: #1E6FDF;
    --azulo: #343A99;
}

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

body {
    width: 100%;
    height: 100%;
    font-family: interface, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    color: var(--gris);
}

/* Style The Dropdown Button */
.dropbtn {
    background-color: transparent;
    color: var(--gris);
    padding: 25px 20px;
    font-size: 1em;
    font-family: inherit;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    width: 160px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.naranja-bg:hover, .dropdown-content.naranja-bg {
    background-color: var(--naranja);
    transition: all .35s ease;
}

.verde-bg:hover, .dropdown-content.verde-bg {
    background-color: var(--verde);
    transition: all .35s ease;
}

.azulc-bg:hover, .dropdown-content.azulc-bg {
    background-color: var(--azulc);
    transition: all .35s ease;
}

.azulo-bg:hover, .dropdown-content.azulo-bg {
    background-color: var(--azulo);
    transition: all .35s ease;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    /* background-color: var(--naranja); */
    width: 160px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 12px;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 20px;
    text-decoration: none;
    text-align: center;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    text-decoration: underline;
    transition: all .35s ease;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
    transition: all .35s ease;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    border-radius: 12px;
    transition: all .35s ease;
    color: white;
}

/* FIN DE DROPDOWN */

nav {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 40px;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 9000;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

nav .logo {
    height: 60px;
    position: absolute;
    top: 15px;
    left: 40px;
}

nav .botones {
    width: max-content;
}

.language-btn {
    border: 2px solid var(--gris);
    border-radius: 6px;
    padding: 6px 12px;
    text-decoration: none;
    font-weight: bold;
    color: var(--gris);
}

.language-btn:hover {
    background-color: #FB613F;
    color: white;
    border: 2px solid transparent;
    transition: all .35s ease;
}

.background-inicio {
    background: url(../img/inicio/inicio_fondo_estrellas.png) no-repeat top center;
    background-size: cover;
    z-index: -9999;
}

.background-acerca {
    background: url(../img/acerca/acerca_fondo_estrellas.png) no-repeat top center;
    background-size: cover;
    z-index: -9999;
    width: 100vw;
    overflow: hidden;
}

.background-proyectos {
    background: url(../img/proyectos/proyectos_fondo_estrellas.png) no-repeat top center;
    background-size: cover;
    z-index: -9999;
}

.background-integrantes {
    background: url(../img/integrantes/integrantes_fondo_ilustraciones.png) no-repeat top center;
    background-size: cover;
    z-index: -9999;
}

.banner {
    background: url(../img/inicio/inicio_foto_banner.png) no-repeat top center;
    background-size: cover;
    height: calc(100vh - 90px);
    position: sticky;
    top: 90px;
    z-index: -10;
}

.star1 {
    position: absolute;
    top: 5%;
    left: 3%;
    width: 10vw;
    display: block;
}

.star2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30vw;
    display: block;
}

.banner .ataraxia {
    width: 30vw;
    position: absolute;
    bottom: 15vh;
    left: calc(50% - 15vw);
}

.title-cont.right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.title-cont .monito {
    width: 15vw;
    height: auto;
    display: block;
}

.title-cont .titulo {
    width: auto;
    height: 15vw;
    display: block;
    margin-top: -100px;
}

p.card {
    background-color: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.2);
    font-size: 1.5vw;
    line-height: 1.5em;
    font-weight: bold;
    position: relative;
    z-index: 10;
    margin: 40px 0;
}

.el-cont {
    width: 70%;
    margin: auto;
    position: relative;
}

.left {
    margin: auto auto auto 0 !important;
}

.right {
    margin: auto 0 auto auto !important;
}

.width70 {
    width: 70%;
    display: block;
}

.width90 {
    width: 90%;
    display: block;
}

.el-cont img {
    display: block;
    position: relative;
    z-index: 0;
}

.top {
    margin-top: calc(-40px - 3em) !important;
}

.ilu-cont {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 120px auto;
    position: relative;
}

.rojo-btn {
    background-color: #FB613F;
    color: white;
    text-decoration: none;
    font-size: 1.3em;
    width: 50%;
    height: 120px;
    border-radius: 60px;
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

.naranja-btn {
    background-color: var(--naranja);
    color: white;
    text-decoration: none;
    font-size: 1.3em;
    width: 50%;
    height: 120px;
    border-radius: 60px;
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

footer {
    margin-top: 12.5%;
    background: url(../img/contacto/contacto_fondo.png) no-repeat top center;
    background-size: cover;
    position: relative;
    padding: 10% 15%;
    text-align: center;
    height: max-content;
}

.form-desc {
    font-size: 1.5em;
    width: 70%;
    margin-top: 40px;
    text-align: left;
}

form {
    width: 90%;
    margin-top: 40px;
}

form input {
    background-color: white;
    width: 100%;
    height: 55px;
    color: var(--naranja);
    border-radius: 12px;
    margin: 6px 0;
    border: none;
    padding: 12px 24px;
    font-size: 1.2em;
    font-family: inherit;
    font-weight: bold;
}

form input::placeholder, form textarea::placeholder {
    color: var(--gris);
}

form textarea {
    background-color: white;
    width: 100%;
    height: 120px;
    color: var(--naranja);
    border-radius: 12px;
    margin: 6px 0;
    border: none;
    padding: 24px;
    font-size: 1.2em;
    resize: none;
    font-family: inherit;
    font-weight: bold;
}

form button {
    margin: 24px auto;
    background-color: var(--naranja);
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    width: 180px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-family: inherit;
    font-weight: bold;
    text-shadow: 0;
    cursor: pointer;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

.contacto {
    position: absolute;
    right: 0;
    top: 12vw;
    width: 27.5vw;
    height: 55vw;
    background: url(../img/contacto/contacto_modulo.png) no-repeat center center;
    background-size: contain;
    padding: 14vw 0 0 8vw;
    text-align: left;
}

.contacto h4 {
    font-size: 2.5vw;
}

.contacto p {
    font-size: 1.5vw;
}

.contacto p i {
    font-weight: 400;
}

.btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 24px 0;
}

.btns .wa {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5vw;
    height: 5vw;
    border-radius: 2.5vw;
    background-color: var(--whats);
    color: white;
    font-size: 2.5vw;
    text-decoration: none;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

.btns .mail {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5vw;
    height: 5vw;
    border-radius: 2.5vw;
    background-color: var(--azulo);
    color: white;
    font-size: 2.5vw;
    text-decoration: none;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

.titulo-foot {
    width: auto;
    height: 15vw;
    position: absolute;
    top: -7.5vw;
    left: 0;
}

.redes {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    grid-template-rows: 1fr;
    gap: 48px;
    margin-top: 15vw;
    overflow: hidden;
}

.redes .logo {
    width: 100%;
    grid-column: 1;
    grid-row: 1;
    margin: auto;
}

.ig, .fb {
    width: 5vw;
    height: 5vw;
    border-radius: 2.5vw;
    background-color: transparent;
    padding: 0;
    border: none;
    margin: auto 0 auto auto;
    z-index: 999;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

.ig {
    grid-column: 2;
    grid-row: 1;
}

.fb {
    grid-column: 3;
    grid-row: 1;
}

.ig img, .fb img {
    width: 108%;
    height: 108%;
    transform: translate(-4%, -4%);
    object-fit: cover;
}

.redes span {
    margin: auto;
    color: var(--rosa);
    grid-column: 4;
    grid-row: 1;
    font-size: 2em;
}

.flechas {
    grid-column: 2/5;
    grid-row: 1;
    max-height: 80%;
    max-width: 80%;
    margin: auto auto 0 auto;
}

.atlantian {
    display: block;
    margin: 68px auto 48px auto;
    font-size: 1em;
    color: var(--gris);
    text-decoration: none;
}

.atlantian:hover {
    text-decoration: underline;
}

.titulo-suelto {
    width: auto;
    height: 15vw;
    margin-top: 48px;
}

.abs-left {
    position: absolute !important;
    top: 10%;
    left: 0;
    height: 550px;
}

.center-bottom {
    margin: auto !important;
    bottom: -17.5%;
}

.pinko {
    margin-top: 48px;
    height: 700px;
}

.grino {
    height: 130vh;
    margin-top: -5%;
}

.grino .card {
    width: 60%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.grino .foto2 {
    position: absolute;
    top: 0;
    right: 0;
    height: 70%;
}

.grino .illu2 {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 20%;
}

.yt-frame {
    margin: 48px auto auto auto;
    background: url(../img/acerca/acerca_ilustracion_2.png) no-repeat center center;
    background-size: contain;
    padding: 38px;
    width: 75vw;
    height: calc(75vw / 1.7);
    text-align: center;
}

.yt-frame iframe {
    margin: auto;
    width: 90%;
    height: 95%;
}

.dos {
    position: relative;
    margin-top: 150px;
}

.dos img {
    width: 60%;
    display: block;
    position: absolute;
    top: -92px;
}

.dos .card {
    width: 55%;
    margin: 72px 0 0 auto;
    display: block;
}

.tres {
    position: relative;
    margin: 100px 0 150px 75px;
}

.tres .card {
    width: 40%;
}

.tres .rojo-btn {
    width: 35%;
    top: 0;
}

.tres img {
    width: 70%;
    position: absolute;
    top: 72px;
    right: 0;
}

.space {
    height: 200px;
}

.mini-space {
    height: 100px;
}

.titulo-solo {
    width: auto;
    height: 15vw;
    z-index: 999 !important;
    position: relative;
}

.mision .card {
    top: -58px;
    z-index: 0;
}

.vision {
    margin-top: -35px;
}

.vision .card {
    top: -58px;
    z-index: 0;
}

.valores {
    width: 90%;
    margin: -55px auto auto auto !important;
    position: relative;
}

.valores .card {
    width: 60%;
    margin-top: 48px !important;
}

.illu-pop {
    position: relative;
}

.illu-pop img {
    width: 40%;
    position: absolute;
    top: -106%;
    right: 0;
}

.proyectos {
    width: 90vw;
    height: max-content;
    margin: 48px 0 100px 0;
}

.integrantes {
    width: 100vw;
    margin: 48px 0;
    padding: 0 10vw !important;
}

.integrantes .team-member {
    width: 100%;
}

.familia {
    width: 50vw;
    height: 50vw;
    margin: 48px 0;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2);
    border-radius: 24px;
}

.integrantes .swiper-slide {
    margin-bottom: 48px;
}

.swiper-slide-contenedor {
    text-align: center;
}

.vertical-card {
    background-color: white;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    margin: auto;
    width: 30vw;
    height: 47vw;
    padding: 24px;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2);
}


.vertical-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.vertical-card #info {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 60px;
    background-color: white;
    border: none;
    transform: translate(25%, 25%);
    color: #F4DB42;
    font-family: inherit;
    font-weight: bold;
    font-size: 1.2em;
    cursor: pointer;
}

.vertical-card #info span {
    position: absolute;
    top: 30px;
    left: 20px;
}

.vertical-card #info:hover {
    width: 130px;
    height: 130px;
    border-radius: 65px;
    transition: .3s all ease;
}

.proyectos .swiper-button-prev, .proyectos .swiper-button-next {
    background-color: var(--rosa);
    color: white;
    width: 60px !important;
    height: 60px !important;
    border-radius: 30px;
    align-items: center;
    justify-content: center;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2);
}

.integrantes .swiper-button-prev, .integrantes .swiper-button-next {
    background-color: var(--verde);
    color: white;
    width: 60px !important;
    height: 60px !important;
    border-radius: 30px;
    align-items: center;
    justify-content: center;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2);
}

.swiper-button-prev {
    left: 20px !important;
}

.swiper-button-next {
    right: 20px !important;
}

.swiper-button-prev:after, .swiper-button-next:after {
    font-size: 1.75em !important;
    color: white;
}

.grid-titulera {
    display: grid;
    grid-template-columns: 4fr 1fr 1fr;
    width: 80%;
    margin: auto auto -58px auto;
    position: relative;
    z-index: 999;
}

.grid-titulera img {
    width: 100% !important;
}

.grid-trilogia {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr 1fr;
    gap: 48px;
}

.grid-trilogia .uno {
    grid-column: 1;
    grid-row: 1/3;
}

.grid-trilogia .dos {
    grid-column: 2;
    grid-row: 1;
}

.grid-trilogia .siguenos {
    grid-column: 2;
    grid-row: 2;
}

.siguenos a {
    width: 60%;
    height: 120px;
    color: white;
    background-color: var(--rosa);
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    margin: auto;
    border-radius: 60px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

.siguenos img {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

.width50 {
    width: 50%;
    margin: auto;
}

.two-grid {
    margin: auto;
    width: max-content;
    display: grid;
    grid-template-columns: auto auto;
    gap: 5vw;
}

.team-member {
    background-color: white;
    border-radius: 12px;
    padding: 2vw;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2);
    width: 35vw;
}

.team-member img {
    width: 100%;
}

.team-member h2 {
    text-align: center;
    font-size: 2vw;
    margin: 12px auto;
}

.team-member span {
    text-align: center;
    font-size: 2vw;
    font-style: italic;
    width: 100% !important;
    font-weight: normal;
    margin: auto;
    display: block;
}

.single-teamber {
    margin: 48px auto;
    width: max-content;
}

.familia .swiper-slide {
    height: calc(100% - 24px);
    background-color: white;
    padding: 24px;
}

.familia .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.familia-cont {
    position: relative;
    width: 70vw;
    margin: auto;
}

.familia-cont .naranja-btn {
    z-index: 999;
    width: 30vw;
}

.familia-cont .naranja-btn img {
    position: absolute;
    top: -30px;
    right: -15px;
    height: 90px;
    width: auto;
    display: block;
}

.active-azulc {
    color: var(--azulc);
}

.active-verde {
    color: var(--verde);
}

.active-naranja {
    color: var(--naranja);
}

#pop-up {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100vw;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
}

.pop-card {
    width: 60vw;
    height: max-content;
    background-color: white;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 24px;
    gap: 24px;
    position: relative;
}

.pop-card img {
    width: 100%;
}

.pop-card .text {
    width: 100%;
    height: 100%;
    font-size: 1.3em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.pop-card .text h2 {
    font-style: italic;
    margin-bottom: 24px;
}

#cerrar {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    border: none;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2);
    background-color: white;
    color: var(--naranja);
    font-size: 2.3em;
    cursor: pointer;
}

#mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: calc(100vh - 90px);
    position: absolute;
    top: 90px;
    right: 0;
    z-index: 9999;
    background: url(../img/inicio/inicio_fondo_estrellas.png) no-repeat top center;
    background-size: cover;
}

#menu-btn {
    display: none;
}

.grax-cont {
    width: 100vw;
    height: 100vh;
    background: url(../img/gracias/grax-back.jpg) no-repeat top center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.grax-cont img {
    width: 20vw;
}

.grax-cont p {
    font-size: 2.5vw;
    width: 70%;
    text-align: center;
    margin: 48px auto;
}

.grax-cont a {
    background-color: var(--azulc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    height: 60px;
    width: max-content;
    padding: 0 30px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
    border: none;
}

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

    .dropbtn {
        padding: 25px 10px;
        width: 140px;
    }

    .dropdown-content {
        width: 140px;
    }

    .dropdown-content a {
        padding: 20px 10px;
    }
}

@media screen and (max-width: 890px) {
    .banner .ataraxia {
        width: 40vw;
        position: absolute;
        bottom: 20vh;
        left: calc(50% - 20vw);
    }

    .el-cont {
        width: 90%;
    }

    .botones {
        display: none;
    }

    #menu-btn {
        display: block;
    }

    .category {
        text-transform: uppercase;
        font-weight: 700;
        font-size: 1.25em;
        text-decoration: none;
        margin: 18px auto;
        color: var(--gris);
    }

    #mobile-menu .menu-el {
        font-weight: 700;
        font-size: 1.25em;
        text-decoration: none;
        color: var(--gris);
        margin: 3px auto;
    }

    .naranja-bg, .dropdown-content.naranja-bg {
        /* color: var(--naranja) !important; */
        background-color: transparent;
        transition: none;
    }

    .verde-bg, .dropdown-content.verde-bg {
        /* color: var(--verde) !important; */
        background-color: transparent;
        transition: none;
    }

    .azulc-bg, .dropdown-content.azulc-bg {
        /* color: var(--azulc) !important; */
        background-color: transparent;
        transition: none;
    }

    .azulo-bg, .dropdown-content.azulo-bg {
        /* color: var(--azulo); */
        background-color: transparent;
        transition: none;
    }

    .naranja-bg:hover, .dropdown-content.naranja-bg {
        /* color: var(--naranja); */
        background-color: transparent;
        transition: none;
    }

    .verde-bg:hover, .dropdown-content.verde-bg {
        /* color: var(--verde); */
        background-color: transparent;
        transition: none;
    }

    .azulc-bg:hover, .dropdown-content.azulc-bg {
        /* color: var(--azulc); */
        background-color: transparent;
        transition: none;
    }

    .azulo-bg:hover, .dropdown-content.azulo-bg {
        /* color: var(--azulo); */
        background-color: transparent;
        transition: none;
    }

    .language-btn {
        width: 45px;
        height: 45px;
        padding: 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 12px;
    }

    .language-btn i {
        font-size: 1.4em;
    }

    footer {
        margin-top: 12.5%;
        padding: 10% 5%;
    }

    .form-desc {
        width: 90%;
    }

    p.card {
        font-size: 1.25em;
        line-height: 1.25em;
    }

    .title-cont .titulo {
        height: 20vw;
        margin-top: -100px;
    }

    .titulo-foot {
        height: 20vw;
        top: -10vw;
    }

    .titulo-suelto {
        width: auto;
        height: 20vw;
        margin-top: 48px;
    }

    .titulo-solo {
        width: auto;
        height: 20vw;
        z-index: 999 !important;
        position: relative;
    }

    .form-desc {
        width: 100%;
        text-align: center;
    }

    form {
        width: 100%;
    }

    .contacto {
        position: relative;
        right: unset;
        top: unset;
        width: 100%;
        height: 90vw;
        padding: 24vw 0 0 0;
        margin-top: 48px;
        text-align: center;
        background: url(../img/contacto/contacto_modulo_mobile.png) no-repeat center center;
        background-size: contain;
    }

    .btns {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 30%;
        margin: 24px auto;
    }

    .contacto h4 {
        font-size: 5vw;
    }

    .contacto p {
        font-size: 3vw;
    }

    .ig, .fb {
        width: 60px;
        height: 60px;
        border-radius: 30px;
    }

    .btns .wa, .btns .mail {
        width: 60px;
        height: 60px;
        border-radius: 30px;
        font-size: 25px;
    }

    .familia-cont {
        width: 90vw;
    }

    .familia {
        width: 80vw;
        height: 80vw;
    }

    .familia-cont .naranja-btn {
        z-index: 999;
        width: max-content;
        padding: 0 60px;
    }

    .naranja-btn {
        font-size: 1em;
        width: 50%;
        height: 90px;
        border-radius: 45px;
        position: absolute;
        top: -45px;
    }

    form button {
        font-size: 1.2em;
        width: max-content;
        padding: 0 60px;
    }

    .pop-card {
        width: 90vw;
    }
}

@media screen and (max-width: 590px) {
    body {
        font-size: 14px;
    }

    nav {
        height: 70px;
        padding: 0 20px;
    }

    nav .logo {
        height: 40px;
        position: absolute;
        top: 15px;
        left: 20px;
    }

    .language-btn {
        width: 40px;
        height: 40px;
        margin-left: 12px;
    }

    .language-btn i {
        font-size: 1.2em;
    }

    #mobile-menu {
        height: calc(100vh - 70px);
        position: absolute;
        top: 70px;
    }

    .banner {
        height: calc(60vh - 70px);
        top: 70px;
    }

    .contacto {
        height: 95vw;
        padding: 23vw 0 0 0;
    }

    .btns {
        width: 160px;
        margin: 12px auto;
    }

    .ig, .fb {
        width: 12vw;
        height: 12vw;
        border-radius: 6vw;
    }

    .btns .wa, .btns .mail {
        width: 12vw;
        height: 12vw;
        border-radius: 6vw;
        font-size: 6vw;
    }

    .left, .right {
        margin: unset !important;
    }

    .width50, .width70, .width90 {
        width: 100%;
    }

    .top {
        margin-top: 48px !important;
    }

    .naranja-btn {
        font-size: 1em;
        width: 100%;
        height: 70px;
        border-radius: 35px;
        position: absolute;
        top: -35px;
    }

    .ilu-cont {
        margin: 80px auto 48px auto;
    }

    .title-cont .titulo {
        height: 25vw;
        margin-top: -100px;
    }

    .titulo-foot {
        height: 25vw;
        top: -10vw;
    }

    .titulo-suelto {
        width: auto;
        height: 25vw;
        margin-top: 48px;
    }

    .titulo-solo {
        width: auto;
        height: 25vw;
        z-index: 999 !important;
        position: relative;
    }

    .redes {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, auto);
        gap: 24px;
        margin-top: 15vw !important;
        text-align: center;
        width: 50%;
        margin: auto;
        overflow: visible;
    }

    .redes .logo {
        grid-column: 1/3;
        grid-row: 1;
        height: 90px;
        width: auto;
    }

    .redes span {
        grid-column: 1/3;
        grid-row: 2;
        font-size: 1.5em;
    }

    .ig {
        grid-column: 1;
        grid-row: 3;
        margin: auto;
    }

    .fb {
        grid-column: 2;
        grid-row: 3;
        margin: auto;
    }

    .flechas {
        display: none;
    }

    .abs-left {
        position: relative !important;
        top: unset;
        left: unset;
        height: auto;
        width: 100%;
        margin: 48px 0;
    }

    .pinko {
        margin-top: auto;
        height: max-content;
    }

    .grino {
        height: max-content;
        margin-top: auto;
    }

    .grino .card {
        width: 100%;
        position: relative;
        bottom: unset;
        left: unset;
    }

    .grino .foto2 {
        position: relative;
        top: unset;
        right: unset;
        height: auto;
        width: 100%;
        margin-top: 48px;
    }

    .grino .illu2 {
        position: relative;
        bottom: unset;
        right: unset;
        height: auto;
        width: 50%;
        margin: auto;
    }

    .yt-frame {
        background: none;
        padding: 0;
        width: 100vw;
        height: calc(90vw / 1.7);
    }

    .yt-frame iframe {
        margin: auto;
        width: 90%;
        height: 95%;
    }

    .dos {
        position: relative;
        margin-top: auto;
    }

    .dos img {
        width: 100%;
        display: block;
        position: relative;
        top: unset;
    }

    .dos .card {
        width: 100%;
        margin: 24px auto auto auto;
    }

    .tres {
        position: relative;
        margin: auto;
    }

    .tres .card {
        width: 100%;
    }

    .tres .rojo-btn {
        font-size: 1em;
        width: 50%;
        height: 70px;
        border-radius: 35px;
        position: absolute;
        top: 40%;
        z-index: 900;
    }

    .tres img {
        width: 100%;
        position: relative;
        top: unset;
        right: unset;
    }

    .space {
        height: 50px;
    }

    .vision .card {
        top: 0;
        z-index: 0;
    }

    .valores {
        width: 100%;
        margin: auto auto auto auto !important;
        position: relative;
    }

    .valores .card {
        width: 90%;
        margin: 48px 5% !important;
    }

    footer {
        margin-top: 25%;
    }
    .form-desc {
        font-size: 1.25em;
    }
    .mini-space {
        height: 10px;
    }
    .integrantes {
        margin: 24px 0;
    }
    .vertical-card {
        width: 80vw;
        height: 110vw;
        padding: 24px;
    }
    .pop-card {
        width: 90vw;
        display: grid;
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
        position: relative;
    }
    .grid-trilogia {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 0;
    }
    .grid-trilogia .uno {
        grid-column: 1;
        grid-row: 1;
    }
    
    .grid-trilogia .dos {
        grid-column: 1;
        grid-row: 2;
    }
    
    .grid-trilogia .siguenos {
        grid-column: 1;
        grid-row: 3;
    }
    .space.double {
        height: 200px;
    }

    .center-bottom {
        margin: auto !important;
        bottom: unset;
    }
}