@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cabin&display=swap');

:root {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Alata', sans-serif;

}

/* Cargador */

.div-cargador {
    --line-width: 5px;
    --curtain-color: #e9e9e9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999999999999999999;
}

.cargador {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    margin: auto;
    margin-top: calc(50vh - 100px);
    z-index: 1001;
}

.cargador:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
}

.cargador:after {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
}

.div-cargador .cargador img {
    padding-top: 35px;
}

.div-cargador .seccion-carga {
    position: fixed;
    top: 0;
    background: var(--curtain-color);
    width: 51%;
    height: 100%;
    z-index: 1000;
}

.div-cargador .seccion-carga.cargador-izq {
    left: 0
}

.div-cargador .seccion-carga.cargador-der {
    right: 0;
}

.carga .div-cargador .seccion-carga.cargador-izq {
    transform: translateX(-100%);
    transition: all 1.3s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.carga .div-cargador .seccion-carga.cargador-der {
    transform: translateX(100%);
    transition: all 1.3s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.carga .cargador {
    opacity: 0;
    transition: all .7s ease-in;
}

.carga .div-cargador {
    visibility: hidden;
}

header>nav>div>p {
    background-image: url(../img/logo-footer.png);
    background-size: 250px;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0;
    overflow: hidden;
    height: 50px;
    width: 300px;
}

header>nav>div>p>a {
    padding: 25px 25px 25px 500px;
}

/* Fin Cargador */

/* Menu */

.navbar-toggler {
    border: 0px;
}
.position-nav{
    position: fixed;
}
.navbar {
    z-index: 99999;
    width: 100%;
    transition: all .5s ease;

}

.menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu>li {
    margin: 0 20px;
}

.navbar li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.nav-link:hover {
    color: rgb(230, 230, 230);
}

.menu a {
    position: relative;
    display: block;
}

.menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    margin-bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 0.3s ease-in-out;
}

.menu a:hover::before {
    transform: scaleX(1);
    transform-origin: center;
}

.logo-w {
    width: 300px;
}

@media (min-width: 1200px) {
    header nav {
        height: 90px;
    }

    .abajo .navbar li a {
        color: rgb(0, 0, 0);
        text-decoration: none;
        transition: all .2s ease;
    }

    .abajo .nav-link:hover {
        color: rgb(130, 130, 130);
        transition: all .2s ease;
    }

    .abajo p {
        background-image: url(../img/logo.png);
        background-size: 250px;
        background-repeat: no-repeat;
        background-position: center center;
        margin: 0;
        overflow: hidden;
        height: 50px;
        width: 300px;
    }

    header {
        background-color: rgba(255, 255, 255, 0) !important;
    }

    .abajo {
        background-color: white !important;
        height: 75px;
        transition: all .2s ease;
    }

}

@media (max-width: 1100px) {

    header {
        background-color: #ffffff;
    }
    .position-nav{
        position: inherit;
    }

    header>nav>div>p {
        background-image: url(../img/logo.png)!important;
        background-size: 200px;
        height: 50px;
        width: 200px;
    }

    header>nav>div>p>a {
        padding: 25px 0px 25px 500px;
    }
    .navbar {
        background-color: white;
    }

    .boton-hamburguesa {
        display: flex;
        height: 100%;
        width: 30px;
        cursor: pointer;
        justify-content: center;
        align-items: center;
    }

    .menu {
        position: absolute;
        top: 0;
        margin-top: 70px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .menu>li {
        width: 100%;
        display: flex;
        background-color: #ffffff;
        justify-content: center;
    }

    .navbar li a {
        color: rgb(0, 0, 0);
        text-decoration: none;
    }
    #menu-check~.menu li {
        height: 0;
        visibility: hidden;
        transition: height 700ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-check:checked~.menu li {
        visibility: visible;
        align-items: center;
        height: 25px;
        padding: 8px 0;
        margin: -1px 0;
        transition: height 700ms cubic-bezier(0.23, 1, 0.32, 1);

    }

    .linea-boton-H,
    .linea-boton-H::before,
    .linea-boton-H::after {
        content: '';
        display: block;
        background-color: rgb(0, 0, 0);
        position: absolute;
        height: 1px;
        width: 20px;
        transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .linea-boton-H::before {
        margin-top: -7px;
    }

    .linea-boton-H::after {
        margin-top: 7px;
    }

    #menu-check:checked+.boton-hamburguesa .linea-boton-H::before {
        margin-top: 0px;
        transform: rotate(45deg);
        visibility: visible;
    }

    #menu-check:checked+.boton-hamburguesa .linea-boton-H {
        visibility: hidden;
    }

    #menu-check:checked+.boton-hamburguesa .linea-boton-H::after {
        margin-top: 0px;
        transform: rotate(-45deg);
        visibility: visible;
    }

}


/* Fin Menu */

/* PORTADA */
.div-titulo-portada {
    position: absolute;
    z-index: 1;
}

.carousel-indicators {
    justify-content: left;
    margin-bottom: 80px;
    margin-left: 8%;
}

.carousel-indicators [data-bs-target] {
    width: 80px;
}

#portada {
    width: 100%;
}

#portada h1 {
    margin: 0;
    padding: 200px 0 130px 150px;
    color: rgb(255, 255, 255);
    font-size: 96px;
    opacity: 0;
    margin: 0;
}

#portada .carga-titulo {
    opacity: 1;
    transition: all 1.2s ease-out;
    padding: 330px 0 0 150px;
    color: rgb(255, 255, 255);
    font-size: 100px;
}

#portada a {
    height: 70px !important;
    width: 60px;
    padding: 30px 0 30px 150px;
    scroll-behavior: smooth;
}

#portada p {
    overflow: hidden;
    margin: 90px 0 0 190px;
    background-image: url(../img/flecha-portada.png);
    background-size: 70px;
    height: 70px;
    width: 70px;
    scroll-behavior: smooth;
    background-repeat: no-repeat;
    transition: all .7s ease;
}

#portada p:hover {
    transform: rotate(90deg);
    margin: 100px 0 0 190px;
    transition: all .7s ease;
}

main>div>p {
    margin: 0%;
    color: white;
}



@media (max-width: 1500px) {
    #portada .carga-titulo {
        font-size: 80px;
        padding: 220px 0 0 150px;
    }
}

@media (max-width: 1200px) {
    #portada .carga-titulo {
        font-size: 60px;
        padding: 200px 0 0 150px;
    }

    #portada p {
        margin: 50px 0 0 190px;
        background-size: 60px;
        height: 60px;
        width: 60px;
    }

    .carousel-indicators {
        justify-content: left;
        margin-bottom: 40px;
        margin-left: 8%;
    }
}

@media (max-width: 1100px) {
    #portada {
        background-position: right center;
        text-align: center;
    }

    .div-titulo-portada {
        width: 100%;
    }

    .carousel-indicators {
        justify-content: center;
        margin-bottom: 40px;
        margin-left: 15%;
    }

    #portada h1 {
        padding: 50px 0 50px 0px;
        font-size: 55px;
    }

    #portada .carga-titulo {
        font-size: 55px;
        padding: 215px 0 15px 0px;
    }

    #portada p {
        margin: 3px auto;
        background-position: center center;
        background-image: url(../img/flecha-portada.png);
        background-size: 55px;
        transform: rotate(90deg);
    }

    #portada p:hover {
        margin: 3px auto;

    }

}

@media (max-width: 770px) {
    #portada .carga-titulo {
        font-size: 55px;
        padding: 106px 0 15px 0px;
    }
}

@media (max-width: 600px) {
    /* #portada {
        height: 600px;
        background-image: url(../img/portada-celu.jpg);
        background-position: center center;
    } */

    #portada .carga-titulo {
        padding: 130px 0 0 0px;
    }

    #portada p {
        margin: 90px auto;
    }

    #portada p:hover {
        margin: 90px auto;
    }

}


/* FIN PORTADA */

/* NOSOTROS */
#nosotros {
    margin-top: -70px;
    padding-top: 70px;
    margin: auto;
}

#nosotros>div>h2 {
    font-size: 80px;
    font-weight: 600;
    color: black;
    margin-bottom: 5px;
    font-family: 'Cabin', sans-serif;
}

#nosotros>div>div h3 {
    font-size: 40px;
    margin-bottom: 15px;
    margin-top: 20px;
    font-family: 'Cabin', sans-serif;
    font-weight: 600;
    color: black;
}

#nosotros>div>p {
    font-size: 17px;
    margin-bottom: 45px;
}

#nosotros>div:nth-child(1) p {
    margin-top: 0;
    font-size: 18px;
    color: rgb(87, 87, 87);
}

#nosotros>div:nth-child(1) {
    text-align: center;
}

#nosotros>div:nth-child(2),
#nosotros>div:nth-child(3) {
    margin: 70px 0;
}

#nosotros>div:nth-child(2)>div {
    margin: 4px 40px 0 60px;
}

#nosotros>div:nth-child(3)>div {
    margin: 20px 60px 0 40px;
    text-align: right;
}

.foto-celu {
    display: none;
}

.foto-escritorio {
    display: block;
}

@media (max-width: 1100px) {
    .foto-escritorio {
        display: none;
    }

    .foto-celu {
        display: block;
        margin: auto;
    }

    #nosotros {
        padding-top: 30px;
        text-align: center;
    }

    #nosotros>div>h2 {
        font-size: 60px;
    }

    #nosotros>div>div h3 {
        font-size: 35px;
    }

    #nosotros>div p {
        font-size: 14px;
    }

    #nosotros>div:nth-child(1) p {
        margin: 0 5px 5px 5px;
        font-size: 14px;
    }


    #nosotros>div:nth-child(2),
    #nosotros>div:nth-child(3) {
        margin: 50px 0;
        display: block;
        text-align: center;

    }

    #nosotros>div:nth-child(2)>div {
        margin: 0;
        text-align: center;
    }

    #nosotros>div:nth-child(3)>div {
        margin: 0;
        text-align: center;
    }
}

.row>* {
    padding: 0 !important;
}

@media (max-width: 700px) {

    #nosotros {
        text-align: left;

    }

    #nosotros>div:nth-child(2)>div {
        text-align: left;
    }

    #nosotros>div:nth-child(3)>div {
        text-align: left;
    }
}

/* FIN NOSOTROS */

/* VIDEO */
#video {
    background-image: url(../img/portada-video.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    text-align: center;
    margin: -10% 0;

}

#video>video {
    margin: auto;
    padding: 30% 0;
}


@media (max-width: 1100px) {
    #video {
        background-image: url(../img/portada-video-celu.svg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        text-align: center;
        margin: -10% 0;
    }
}

/* FIN VIDEO */

/* ACTIVIDADES */
#actividades {
    padding-top: 30px;
    text-align: center;
}

#actividades>h2 {
    text-align: center;
    font-size: 80px;
    margin-bottom: 0;
    font-weight: 600;
    color: black;
}

#actividades>p {
    text-align: center;
    font-size: 18px;
    margin-top: 3px;
    margin-bottom: 50px;
}

#actividades>a {
    text-align: center;
    color: white;
    background-color: rgb(222, 20, 20);
    padding: 12px 50px;
    border-radius: 40px;
    font-size: 22px;
    text-decoration: none;
    transition: all .3s ease-out;
}

#actividades>a:hover {
    background-color: rgb(255, 84, 84);
    transition: all .3s ease-out;
    padding: 10px 46px;

}

.card {
    border: 0px;
}

.cards {
    text-align: left;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;

    flex-wrap: wrap;
    margin-bottom: 60px;
}

.card1 {
    width: 400px;
    height: 500px;
    margin: 40px;
    background-image: url(../img/musculacion.jpg);
    border-radius: 25px;
    transform-style: preserve-3d;
}

.musculacion {
    position: absolute;
    width: 400px;
    height: 500px;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 25px;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 10px);
    transition: all .2s ease-in;
}

.card1:hover .musculacion.musculacionadd {
    transition: all .2s ease-in;
    position: absolute;
    width: 400px;
    height: 500px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.2);
    background-color: rgba(44, 44, 44, 0.67);
    border-radius: 25px;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 16px);
}

.musculacion p,
.musculacion h4,
.musculacion h5,
.musculacion ul {
    transition: all .0s ease-in;
    opacity: 0;
    color: rgb(213, 213, 213);
    padding: 0;

}

.card1:hover .musculacion.musculacionadd p {
    transition: all .8s ease-in;
    opacity: 1;
    position: absolute;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 18px);
    text-align: center;
    width: 70%;
    top: 130px;
    left: 15%;
    margin: auto;
}

.card1:hover .musculacion.musculacionadd h4 {
    transition: all .5s ease-in;
    opacity: 1;
    font-size: 20px;
    position: absolute;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 19px);
    text-align: center;
    width: 70%;
    top: 90px;
    left: 15%;
    margin: auto;
}

.card1:hover .musculacion.musculacionadd h5 {
    transition: all .5s ease-in;
    opacity: 1;
    font-size: 20px;
    position: absolute;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 19px);
    text-align: center;
    width: 70%;
    top: 280px;
    left: 15%;
}

.musculacion li {
    list-style-type: none;
}

.card1:hover .musculacion.musculacionadd ul {
    transition: all .5s ease-in;
    opacity: 1;
    font-size: 20px;
    position: absolute;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 19px);
    text-align: center;
    width: 70%;
    top: 335px;
    left: 15%;
    padding: 0;
}

.botonMusculacion {
    display: none;
}

.ver_menos {
    display: none;
}

.botonMenosMusculacion {
    display: block;
}





.card2 {
    width: 400px;
    height: 500px;
    margin: 40px;
    background-image: url(../img/natacion.jpg);
    border-radius: 25px;
    transform-style: preserve-3d;
}

.natacion {
    position: absolute;
    width: 400px;
    height: 500px;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 25px;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 10px);
    transition: all .2s ease-in;
}

.card2:hover .natacion.natacionadd {
    transition: all .2s ease-in;
    position: absolute;
    width: 400px;
    height: 500px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.2);
    background-color: rgba(44, 44, 44, 0.67);
    border-radius: 25px;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 16px);
}

.natacion p,
.natacion h4,
.natacion h5,
.natacion ul {
    transition: all .0s ease-in;
    opacity: 0;
    color: rgb(213, 213, 213);
    padding: 0;
}

.card2:hover .natacion.natacionadd p {
    transition: all .8s ease-in;
    opacity: 1;
    position: absolute;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 18px);
    text-align: center;
    width: 70%;
    top: 160px;
    left: 15%;
    margin: auto;
}

.card2:hover .natacion.natacionadd h4 {
    transition: all .5s ease-in;
    opacity: 1;
    font-size: 20px;
    position: absolute;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 19px);
    text-align: center;
    width: 70%;
    top: 110px;
    left: 15%;
    margin: auto;
}

.card2:hover .natacion.natacionadd h5 {
    transition: all .5s ease-in;
    opacity: 1;
    font-size: 20px;
    position: absolute;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 19px);
    text-align: center;
    width: 70%;
    top: 280px;
    left: 15%;
}

.natacion li {
    list-style-type: none;
}

.card2:hover .natacion.natacionadd ul {
    transition: all .5s ease-in;
    opacity: 1;
    font-size: 20px;
    position: absolute;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 19px);
    text-align: center;
    width: 70%;
    top: 335px;
    left: 15%;
    padding: 0;
}

.botonNatacion {
    display: none;
}

.ver_menos_natacion {
    display: none;
}

.botonMenosNatacion {
    display: block;
}




.card3 {
    width: 400px;
    height: 500px;
    margin: 40px;
    background-image: url(../img/fitness.jpg);
    border-radius: 25px;
    transform-style: preserve-3d;
}

.fitness {
    position: absolute;
    width: 400px;
    height: 500px;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 25px;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 10px);
    transition: all .2s ease-in;
}

.card3:hover .fitness.fitnessadd {
    transition: all .2s ease-in;
    position: absolute;
    width: 400px;
    height: 500px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.2);
    background-color: rgba(44, 44, 44, 0.67);

    border-radius: 25px;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 21px);
}

.fitness p,
.fitness h4,
.fitness h5,
.fitness ul {
    transition: all .0s ease-in;
    opacity: 0;
    color: rgb(213, 213, 213);
    padding: 0;
}

.card3:hover .fitness.fitnessadd p {
    transition: all .8s ease-in;
    opacity: 1;
    position: absolute;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 22px);
    text-align: center;
    width: 70%;
    top: 130px;
    left: 15%;
    margin: auto;
}

.card3:hover .fitness.fitnessadd h4 {
    transition: all .5s ease-in;
    opacity: 1;
    font-size: 20px;
    position: absolute;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 23px);
    text-align: center;
    width: 70%;
    top: 90px;
    left: 15%;
    margin: auto;
}

.card3:hover .fitness.fitnessadd h5 {
    transition: all .5s ease-in;
    opacity: 1;
    font-size: 20px;
    position: absolute;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 23px);
    text-align: center;
    width: 70%;
    top: 280px;
    left: 15%;
}

.fitness li {
    list-style-type: none;
    font-size: 16px;
    margin: 5px 0;
}

.card3:hover .fitness.fitnessadd ul {
    transition: all .5s ease-in;
    opacity: 1;
    font-size: 20px;
    position: absolute;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 22px);
    text-align: center;
    width: 70%;
    top: 335px;
    left: 15%;
    padding: 0;
}

.botonFitness {
    display: none;
}

.ver_menos_fitness {
    display: none;
}

.botonMenosFitness {
    display: block;
}





.card1::before {
    content: 'MUSCULACIÓN';
    position: absolute;
    top: 90px;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0, 8px);
    left: 0px;
    font-weight: bolder;
    font-size: 55px;
    color: rgb(255, 255, 255);
    font-style: italic;
    opacity: 0;
    transition: all .5s ease-in-out;
}

.card2::before {
    content: 'NATACIÓN';
    position: absolute;
    top: 90px;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0, 8px);
    left: 20px;
    font-weight: bolder;
    font-size: 70px;
    color: rgb(255, 255, 255);
    font-style: italic;
    opacity: 0;
    transition: all .5s ease-in-out;
}

.card3::before {
    content: 'FITNESS';
    position: absolute;
    top: 90px;
    transform-style: preserve-3d;
    transform: translate3d(20%, 0%, 8px);
    left: 20px;
    font-weight: bolder;
    font-size: 70px;
    color: rgb(255, 255, 255);
    font-style: italic;
    opacity: 0;
    transition: all .5s ease-in-out;
}

.card::after {
    content: 'SPORTCLUB';
    position: absolute;
    bottom: 90px;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0, 8px);
    right: 20px;
    font-weight: bolder;
    font-size: 70px;
    color: rgb(255, 255, 255);
    font-style: italic;
    opacity: 0;
    transition: all .5s ease-in-out;
}

.card:hover::before,
.card:hover::after {
    opacity: 0.5;
}

.card h3 {
    color: white;
    position: absolute;
    top: 0px;
    font-size: 30px;
    width: 100%;
    margin: auto;
    text-align: center;
    transition: all .4s ease-in;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 35px);

    opacity: 0;
}

.card:hover h3 {
    top: 10px;
    opacity: 1;
}

.card button {
    cursor: pointer;
    position: absolute;
    bottom: 0px;
    font-family: 'Alata', sans-serif !important;
    left: 50%;
    transform-style: preserve-3d;
    transform: translate3d(-50%, 0, 35px);
    color: white;
    background-color: rgb(222, 20, 25);
    padding: 10px 30px;
    border-radius: 40px;
    border: 0px;
    font-size: 16px;
    text-decoration: none;
    transition: all .4s ease-in;
    opacity: 0;
}

.card button:hover {
    padding: 10px 35px;
    background-color: rgb(255, 84, 84);
    transition: all .2s ease-in;
}

.card:hover button {
    bottom: 20px;
    opacity: 1;
}

.card1 img {
    position: absolute;
    z-index: 11;
    transform-style: preserve-3d;
    transform: translate3d(0%, -2%, 15px);
}

.card2 img {
    position: absolute;
    z-index: 11;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 15px);
}

.card3 img {
    position: absolute;
    z-index: 11;
    transform-style: preserve-3d;
    transform: translate3d(0%, 0%, 20px);
}

.act-celu {
    display: none;
}

@media (max-width: 1100px) {
    #actividades {
        padding-top: 20px;
    }

    .modal-div {
        margin-top: 25% !important;
    }

    #actividades>h2 {
        font-size: 60px;
    }

    #actividades>p {
        font-size: 16px;
    }

    #actividades>button {
        text-align: center;
        color: white;
        background-color: rgb(222, 20, 20);
        padding: 10px 40px;
        border-radius: 40px;
        font-size: 18px;
        text-decoration: none;
        transition: all .3s ease-out;
    }

    #actividades>button:hover {
        background-color: rgb(255, 84, 84);
        transition: all .3s ease-out;
        padding: 10px 46px;

    }

    .cards {
        display: none;
    }

    .act-celu {
        display: block;
        text-align: center;
        margin-bottom: 50px;
    }

    .carta {
        width: 620px;
        height: 460px;
        margin: 35px auto;
        background-color: #eeeeee;
        box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.2);
    }

    .carta h3 {
        font-size: 28px;
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .carta p {
        font-size: 14px;
        margin: 0 auto 20px auto;
        width: 95%;
    }

    .carta ul {
        padding: 0;
        margin: 0;
    }

    .carta li {
        font-size: 16px;
        list-style-type: none;
    }

    .carta button {
        text-align: center;
        color: white;
        background-color: rgb(222, 20, 20);
        padding: 8px 30px;
        border-radius: 40px;
        font-size: 14px;
        text-decoration: none;
        transition: all .3s ease-out;
        border: 0px;
    }

}

@media (max-width: 700px) {
    .modal-div {
        margin-top: 35% !important;
    }

    .carta {
        width: 320px;
        height: 410px;
    }

    .carta3 {
        height: 430px;
    }
}

/* CONTACTO*/

#contacto {
    width: 950px;
    margin: auto;
}

#contacto>div>h2 {
    text-align: center;
    font-size: 80px;
    margin-top: 150px;
    font-weight: 600;
    color: black ;
    margin-bottom: 0;
}

#contacto>div>p {
    text-align: center;
    font-size: 18px;
    margin-top: 3px;
    margin-bottom: 50px;
}


form {
    margin: 60px 20px;
    font-family: 'Alata', sans-serif !important;


}

.nombre-apellido {
    display: flex;
    margin: 0px;
}

form>div {
    margin: 30px 35px 30px 0px;
}

.nombre-apellido>div {
    width: 50%;
    margin: 0px 40px 0 0;
}

form>div>input {
    width: 100%;
    display: block;
    padding: 18px 10px 18px 20px;
    background-color: #ececec;
    border-radius: 50px;
    font-size: 18px;
    border: 0px;
    font-family: 'Alata', sans-serif;

}

form>div>input:focus-visible {
    outline: 0px;
    transition: all .1s ease;
    box-shadow: 0px 0px 15px -5px rgb(158, 158, 158) inset;


}

.nombre-apellido>div>input {
    width: 100%;
    display: block;
    padding: 18px 10px 18px 18px;
    border: 0px;
    background-color: #ececec;
    font-size: 18px;
    border-radius: 25px;
    transition: all .1s ease-in;
    font-family: 'Alata', sans-serif;

}

.nombre-apellido>div>input:focus-visible {
    box-shadow: 0px 0px 15px -5px rgb(158, 158, 158) inset;

    outline: 0px;
    transition: all .1s ease;
}

form hr {
    border: #a01b1b 1px solid;
    width: 70px;
    opacity: 1;
    margin: 4px 0px 20px 5px;
}

div>label {
    margin: 0px 5px;
    display: block;

    font-size: 18px;
    color: #646464;
}

div>label>span {
    color: #bf2626;
}

::placeholder {
    color: #686868;
    font-size: 18px;
}

textarea {
    resize: none;
    width: 100%;
    padding: 14px 8px 14px 14px;
    border: 0px;
    background-color: #ececec;
    border-radius: 20px;
    font-size: 18px;
    font-family: 'Alata', sans-serif;
}

textarea:focus-visible {
    box-shadow: 0px 0px 15px -5px rgb(158, 158, 158) inset;

    outline: 0px;
    transition: all .1s ease;
}

form>div>p {
    margin: 0px 5px;
    display: block;

    font-size: 19px;
    color: #404040;
}

::-webkit-file-upload-button {
    display: none;
}


.select>div>input {
    opacity: 0;
    margin: -10px;
}

.select>div>label {
    display: inline-block;
    margin: 3px 0;
    padding: 5px 10px 5px 45px;
    cursor: pointer;
    border-radius: 20px;
    transition: all .3s ease;
}

.select>div>label:hover {
    background-color: #6713131c;
    padding: 12px 35px x;

    transition: all .3s ease;
    border-radius: 20px;

}

.select>div>label::before {
    content: "";
    width: 17px;
    height: 17px;
    display: inline-block;
    border: #971f1f 3px solid;
    position: absolute;
    margin-left: -34px;
    margin-top: 2px;
    border-radius: 10px;
    transition: all .2s ease;
}

.select>div>input:checked+label {
    padding: 6px 15px 6px 15px;
    border-radius: 20px;
    color: white;
    background-color: #bf2626;
    transition: all .3s ease;
}

.select>div>input:checked+label::before {
    display: none;
    transition: all .2s ease;
}

.select>div {
    margin: 10px 25px;
}

.submit {
    display: block;
    text-align: center;
}

.submit>input {
    text-align: center;
    color: white;
    background-color: rgb(222, 20, 20);
    padding: 12px 42px;
    width: auto;
    margin: auto;
    border-radius: 40px;
    font-size: 18px;
    text-decoration: none;
    transition: all .6s ease-out;


}

.modal-div {
    margin-top: 15%;
}

.modal-div img {
    width: 110px;
}

.modal-header {
    justify-content: center;
    border-bottom: 0px;
    display: block;
}

.modal-header h3 {
    margin-top: 10px;
    margin-bottom: 0px;
}

.modal-body {
    padding: 0px 10px;
}

.modal-footer {
    padding: 0 10px 15px 10px;
    border-top: 0px;
    justify-content: center;

}

.submit>input:hover {
    background-color: rgb(255, 84, 84);
    transition: all .3s ease-out;
    padding: 12px 37px;
}


#enviado:target {
    display: block;
    transition: all .2s ease-in;
}

#enviado {
    display: none;
    transition: all .2s ease-in;
}

#enviado p {
    font-size: 25px !important;
}

.mt-10 {
    margin-top: 150px;
}

@media (max-width: 1100px) {
    #contacto>div>h2 {
        font-size: 60px;
        margin-top: 120px;
    }

    #contacto>div>p {
        font-size: 16px;
    }

    form {
        margin: 60px auto;
    }

    #contacto {
        width: 100%;
        margin: 60px 0px;
    }

    .nombre-apellido {
        display: block;
        margin: 0 10px 0 0px;
    }

    form>div {
        margin: 30px auto;
        text-align: center;
    }

    .nombre-apellido>div {
        width: 100%;
        margin-bottom: 30px;
    }

    form>div>input {
        width: 97%;
        display: block;
        padding: 14px 0px 14px 10px;
        border: 0px;
        margin: auto;
        background-color: #cdcdcd;
        font-size: 12px;
    }

    form>div>input:focus-visible {
        outline: 0px;
        transition: all .1s ease;
    }

    .nombre-apellido>div>input {
        width: 100%;
        display: block;
        padding: 14px 0px 14px 10px;
        border: 0px;
        background-color: #cdcdcd;
        font-size: 12px;
    }

    .nombre-apellido>div>input:focus-visible {
        outline: 0px;
        transition: all .1s ease;
    }

    form hr {
        width: 60px;
        margin: 4px 0px 20px 5px;
    }

    div>label {
        margin: 0px 5px;
        display: block;
        font-size: 14px;
        color: #646464;
        text-align: left;
    }

    div>label>span {
        color: #bf2626;
    }

    ::placeholder {
        color: #686868;
        font-size: 12px;
    }

    textarea {
        resize: none;
        width: 95%;
        padding: 14px 8px;
        border: 0px;
        background-color: #cdcdcd;
        font-size: 12px;

    }

    textarea:focus-visible {
        outline: 0px;
        transition: all .1s ease;
    }

    form>div>p {
        margin: 0px 5px;
        display: block;
        font-size: 15px;
        color: #404040;
    }


    .file label {
        padding: 9px 15px 9px 15px;
    }

    .checkbox>div>label {
        padding: 5px 10px 5px 45px;
    }

    .checkbox>div>input:checked+label {
        padding: 5px 10px 5px 10px;
    }

    .select>div {
        text-align: left;

    }

    .select>div>label {
        padding: 5px 10px 5px 45px;
    }


    .select>div>input:checked+label {
        padding: 5px 10px 5px 10px;
    }

}

@media (max-width: 700px) {

    form {
        margin: 60px auto;
    }

    #contacto {
        width: 100%;
    }


    form>div>input {
        width: 90%;
    }



    textarea {
        width: 90%;

    }


}

/* FIN CONTACTO*/

/* FOOTER*/

footer {
    background-color: #000;
    margin-top: 150px;
}

footer>div>div>p {
    background-image: url(../img/logo-footer.png);
    background-size: 250px;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 45px 0 0 30px;
    overflow: hidden;
    height: 50px;
    width: 300px;
}

.contenedor-footer {
    width: 100%;
    justify-content: space-between;
}

.contenedor-footer div>ul {
    margin-right: 55px;
    margin-top: 25px;

}

.contenedor-footer ul {
    display: flex;
}

.contenedor-footer li {
    margin: 0 20px;
    list-style-type: none;
}

.contenedor-footer li p {
    overflow: hidden;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: 45px;
    background-position: center;
}

.WH p {
    transition: all .2s ease-in;
    background-image: url(../img/instagram.png);

}

.IN p {
    transition: all .2s ease-in;
    background-image: url(../img/facebook.png);

}

.LK p {
    transition: all .2s ease-in;
    background-image: url(../img/twitter.png);

}

.MAIL p {
    transition: all .2s ease-in;
    background-image: url(../img/whatsapp.png);

}

.WH p:hover {
    background-size: 48px;

}

.IN p:hover {
    background-size: 48px;

}

.LK p:hover {
    background-size: 48px;

}

.MAIL p:hover {
    background-size: 48px;
}

.contenedor-footer li a {
    width: 50px;
    height: 100px;
    text-decoration: none;
    padding: 25px 0 25px 100px;
}

footer>div>div>p>a {
    padding: 25px 25px 25px 500px;
}

.menu-footer {
    margin-left: 70px;
    text-align: center;
    width: 220px;
    margin-bottom: 40px;
}

.menu-footer p {
    color: #e6e6e6;
    font-weight: bolder;
    margin-bottom: 25px;
}

.menu-footer ul {
    padding: 0;
}

.menu-footer li {
    list-style-type: none;
    margin-top: 10px;
}

.menu-footer a {
    color: #bbbbbb;
    text-decoration: none;
    transition: all .2s ease;
}

.menu-footer a:hover {
    color: #ffffff;
    transition: all .2s ease;
}

.copy {
    background-color: #000;
    padding: 1px;
    bottom: 0;
}

.copy a {
    color: rgb(210, 210, 210);
    text-decoration: none;
    transition: all .3s ease-in;
}

.copy a:hover {
    color: white;
}

.copy p {
    color: white;
}

.copy2 {
    background-color: rgb(17, 17, 17);
    padding: 0px;
    bottom: 0;
}

.copy2 p {
    padding: 10px 0;
    margin: 0;
    color: rgb(160, 160, 160);
}

footer>hr {
    display: none;
}

@media (max-width: 1100px) {
    .copy2 {
        display: none;
    }

    .contenedor-footer {
        display: block;
        padding-top: 20px;
    }

    footer>div>div>p {
        margin: 45px auto 25px auto;
    }

    .menu-footer {
        margin: auto;
        margin-bottom: 30px;
    }

    .contenedor-footer div>ul {
        padding: 0;
        margin: 5px auto 25px auto;
        justify-content: center;
    }

}

/* FIN FOOTER*/