@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

body {
    width: 100%;
    height: auto;
    margin: 0;
    color: rgb(41, 41, 41);

    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;

}

.content-home {
    width: 100%;
    height: 200vh;
    /* max-width: 1920px;
    min-width: 320px; */

    background-image: url(../images/22.png);
    background-size: cover;
    background-position: center;

    .countdown-container {
        text-align: center;
        position: absolute;
        top: 106%;
        right: 20%;
        color: rgb(87, 87, 87);
        font-family: sans-serif;
        z-index: 1000;

        div span {
            font-size: 70px;
            font-weight: 100;
        }
    }

    #countdown {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
}

.info-lifehuni {
    width: 100%;
    height: 180vh;
    background-image: url(../images/2.png);
    background-size: cover;
    background-position: center;
}

.all-items {
    width: 100%;
    height: 800px;
    background-image: url(../images/3.png);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    h1,
    span {
        color: rgb(41, 41, 41);
        font-size: 40px;
        width: 65%;
        text-align: center
    }

    span {
        font-weight: 400;
        font-size: 35px;
    }

    .items {
        display: flex;
        width: 50%;
        height: 500px;
        justify-content: space-around;

        div {
            width: 25%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        h1 {
            font-size: 30px;
            color: rgb(41, 41, 41);
            text-align: center;
        }
    }

    button {
        padding: 20px 50px;
        border-radius: 14px;
        border: 2px solid rgb(0, 53, 28);
        color: white;
        font-size: 20px;
        font-family: "Lato", sans-serif;
        font-weight: 600;
        font-style: normal;
        background-color: rgba(1, 68, 37, 0.63);
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        margin-bottom: 10px;
    }

    button:hover {
        background-color: rgba(8, 80, 46, 0.993);
        box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3);
    }
}

.slider-all {
    width: 100vw;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    width: 300vw;
    animation: slide 30s infinite;
    transition: transform 1s ease-in-out;
}

.slide {
    width: 100vw;
    flex-shrink: 0;
    background-image: url(../images/4.jpg);
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;

    .text-slide {
        width: 45%;
        font-size: 20px;
        display: flex;
        flex-direction: column;
        color: white;
    }

}

@keyframes slide {

    0%,
    20% {
        transform: translateX(0);
    }

    33.33%,
    53.33% {
        transform: translateX(-100vw);
    }

    66.66%,
    86.66% {
        transform: translateX(-200vw);
    }

    100% {
        transform: translateX(0);
    }
}

.content-inscripcion {
    width: 100%;
    height: 450px;
    background-image: url(../images/5.png);
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;

    .content-text1 {
        width: 70%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        line-height: 1px;
        color: white;

        h1 {
            font-size: 50px;
            color: white;
        }

        h2 {
            font-size: 30px;
            color: white;
        }

        .webinar {
            font-size: 50px;
            color: #9CFF99;
        }

        p {
            font-size: 25px;
            font-weight: 500;
            color: white;
            margin-bottom: 70px;
        }

        .nombre-gerente {
            color: #9CFF99;
            font-size: 25px;
            font-weight: 500;
        }

        button {
            padding: 15px 60px;
            border-radius: 15px;
            border: 5px solid white;
            color: rgb(80, 79, 79);
            font-weight: 600;
            cursor: pointer;
        }

        button:hover {
            background-color: #578f55;
            color: white;
        }
    }
}

.form-all {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(../images/6.png);
    background-size: cover;

    .form {
        height: 70%;
        width: 35%;
        background-image: url(../images/7.png);
        background-size: cover;
        border-radius: 20px;
        color: white;
        font-weight: 500;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .all-inputs {
        height: 40%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
    }

    .form-group {
        width: 90%;
        height: 35px;
        color: white;
        font-size: 20px;
        display: flex;
        justify-content: space-between;

        input {
            width: 65%;
            border-radius: 10px;
            border: none;
        }
    }

    #check-options {
        width: 100%;
        height: 40%;
        gap: 30px;
        font-size: 22px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    button {
        padding: 15px 60px;
        border-radius: 15px;
        border: 5px solid white;
        color: rgb(80, 79, 79);
        font-weight: 600;
        cursor: pointer;
    }

    button:hover {
        background-color: #578f55;
        color: white;
    }
}

footer {
    width: 100%;
    height: 450px;
    background-image: url(../images/8.png);
    background-size: cover;
    background-position: center;
}




/*------- Responsive -----*/

@media (max-width: 1024px) {
    .content-home {
        width: 100%;
        height: 120vh;
        background-image: url(../images/9.png);
        background-size: cover;
        background-position: center;

        .countdown-container {
            text-align: center;
            position: absolute;
            width: clamp(350px, 30vw, 600px);
            height: clamp(30px, 8vw, 60px);
            height: 30px;
            display: flex;
            top: 62%;
            left: 45%;
            color: rgb(87, 87, 87);
            font-family: sans-serif;
            z-index: 1000;
            padding: 0;
            letter-spacing: 0px;

            div span {
                font-size: 10%;
                font-size: clamp(12px, 3vw, 28px);
                font-weight: 100;
                letter-spacing: 0px;
            }
        }

        #countdown {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 350px;
            height: 60px;
            padding: 0;
            letter-spacing: 0px;

            span {
                width: 20%;

            }
        }
    }

    .info-lifehuni {
        width: 100%;
        height: 100vh;
        background-image: url(../images/10.png);
        background-size: cover;
        background-position: center;
    }

    .text-slide {
        width: 40%;
        min-width: 100px;
        color: white;
        padding-left: 25px;
    }

    .text-slide p {
        font-size: 16px;
        font-weight: 500;
    }

    .content-inscripcion {
        width: 100%;
        height: 240px;
        background-image: url(../images/11.png);
        background-size: cover;
        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content: center;

        .content-text1 {
            width: 70%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            line-height: 1px;

            h1 {
                font-size: 25px;
                color: white;
            }

            h2 {
                font-size: 20px;
                color: white;
            }

            .webinar {
                font-size: 30px;
                color: #9CFF99;
            }

            p {
                font-size: 20px;
                font-weight: 500;
                color: white;
                margin-bottom: 70px;
            }

            .nombre-gerente {
                color: #9CFF99;
                font-size: 20px;
                font-weight: 500;
            }

            button {
                padding: 10px 30px;
                border-radius: 15px;
                border: 5px solid white;
                color: rgb(80, 79, 79);
                font-weight: 600;
                cursor: pointer;
                margin-bottom: 15px;
            }

            button:hover {
                background-color: #578f55;
                color: white;
            }
        }
    }

    .form-all {
        width: 100%;
        height: 100vh;

        .form {
            width: 60%;
        }

    }

    footer {
        background-image: url(../images/12.png);
        background-size: cover;
        width: 100%;
        height: 250px;
    }
}

@media (min-width: 768px) and (max-width: 824px) {

    .content-home {
        height: 100vh;

        .countdown-container {
            text-align: center;
            position: absolute;
            width: clamp(280px, 30vw, 600px);
            height: clamp(30px, 8vw, 60px);
            height: 30px;
            display: flex;
            top: 50%;
            left: 45%;
            color: rgb(87, 87, 87);
            font-family: sans-serif;
            z-index: 1000;
            padding: 0;
            letter-spacing: 0px;

            div span {
                font-size: 10%;
                font-size: clamp(12px, 3vw, 28px);
                font-weight: 100;
                letter-spacing: 0px;
            }
        }

        #countdown {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 280px;
            height: 60px;
            padding: 0;
            letter-spacing: 0px;

            span {
                width: 20%;

            }
        }
    }

    .info-lifehuni {
        height: 90vh;
    }

    .all-items {
        .items {
            display: flex;
            width: 80%;
            height: 300px;
            justify-content: space-around;

            .contenedores {
                width: 25%;
                display: flex;

                img {
                    width: 80px;
                }
            }

            h1 {
                font-size: 25px;
                color: rgb(41, 41, 41);
                text-align: center;
            }
        }
    }

    .slider-all {
        height: 550px;
    }

    .slide {
        width: 100vw;
        flex-shrink: 0;
        background-image: url(../images/4.jpg);
        background-size: cover;
        background-position: center;
        height: 550px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        img {
            width: 500px;
        }

        .text-slide {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .text-slide p,
        h1 {
            width: 80%;
            text-align: center;

        }
    }

    .content-inscripcion {
        width: 100%;
        height: 190px;

        .content-text1 {
            width: 70%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            .content-texts {
                width: 100%;
                height: 50%;
                line-height: 1px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
                padding-top: 30px;
            }

            h1 {
                width: 100%;
                font-size: 18px;
                color: white;
            }

            h2 {
                font-size: 18px;
                color: white;
            }

            .webinar {
                font-size: 20px;
                color: #9CFF99;
            }

            p {
                font-size: 15px;
                font-weight: 500;
                color: white;
            }

            .nombre-gerente {
                color: #9CFF99;
                font-size: 15px;
                font-weight: 500;
            }

            button {
                padding: 10px 30px;
                border-radius: 15px;
                border: 5px solid white;
                color: rgb(80, 79, 79);
                font-weight: 600;
                cursor: pointer;
            }

            button:hover {
                background-color: #578f55;
                color: white;
            }
        }
    }

    .all-inputs {
        height: 50%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;

        .form-group {
            width: 90%;
            height: 80px;
            color: white;
            font-size: 20px;
            display: flex;
            justify-content: space-between;

            input {
                width: 100%;
                height: 20px;
                border-radius: 10px;
                border: none;
            }
        }
    }

    .form-all {
        height: 110vh;
    }

    .form {
        height: 90%;

    }

    .form-group {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 5px;
    }

    .form-group input {
        width: 100%;
    }

    .all-items h1,
    .all-items span {
        font-size: 20px;
    }

    .content-text1 h1,
    .content-text1 h2 {
        text-align: center;
    }
}

@media (min-width:425px) and (max-width:767.98px) {

    .content-home {
        width: 100%;
        height: 55vh;
        background-image: url(../images/15.png);
        background-size: cover;
        background-position: center;

        .countdown-container {
            text-align: center;
            position: absolute;
            width: clamp(180px, 30vw, 600px);
            height: clamp(30px, 8vw, 60px);
            height: 30px;
            display: flex;
            top: 26%;
            left: 45%;
            color: rgb(87, 87, 87);
            font-family: sans-serif;
            z-index: 1000;
            padding: 0;
            letter-spacing: 0px;

            div span {
                font-size: 10%;
                font-size: clamp(12px, 3vw, 28px);
                font-weight: 100;
                letter-spacing: 0px;
            }
        }

        #countdown {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 160px;
            height: 60px;
            padding: 0;
            letter-spacing: 0px;

            span {
                width: 20%;

            }
        }
    }

    .info-lifehuni {
        width: 100%;
        height: 44vh;
        background-image: url(../images/16.png);
        background-size: cover;
        background-position: center;
    }

    .all-items {
        width: 100%;
        height: 160vh;
        background-image: url(../images/3.png);
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        h1,
        span {
            color: rgb(41, 41, 41);
            font-size: 22px;
            width: 65%;
            text-align: center
        }

        span {
            font-weight: 400;
            font-size: 25px;
        }

        .items {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 50%;
            height: 900px;
            justify-content: space-around;

            div {
                width: 90%;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                justify-content: center;
            }
        }

        button {
            padding: 15px 30px;
            font-size: 15px;
        }
    }

    .slider-all {
        width: 100vw;
        height: 700px;
    }

    .slide {
        height: 700px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        img {
            width: 400px;
        }

        .text-slide {
            width: 80%;
            font-size: 12px;
            text-align: center;
            min-width: 100px;
            color: white;
            padding-left: 40px;
        }
    }

    .text-slide p {
        font-size: 18px;
        font-weight: 500;
    }

    .content-inscripcion {
        width: 100%;
        height: 700px;
        background-image: url(../images/5.png);
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;


        .content-text1 {
            width: 80%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            align-items: center;
            line-height: 40px;

            h1 {
                font-size: 50px;
                text-align: center;
                color: white;
            }

            h2 {
                font-size: 30px;
                color: white;
                text-align: center;
            }

            .webinar {
                font-size: 50px;
                color: #9CFF99;
                text-align: center;
            }

            p {
                font-size: 25px;
                font-weight: 500;
                color: white;
                margin-bottom: 70px;
                text-align: center;
            }

            .nombre-gerente {
                color: #9CFF99;
                font-size: 25px;
                font-weight: 500;
            }

            button {
                padding: 15px 60px;
                border-radius: 15px;
                border: 5px solid white;
                color: rgb(80, 79, 79);
                font-weight: 600;
                cursor: pointer;
            }

            button:hover {
                background-color: #578f55;
                color: white;
            }
        }
    }

    .form-all {
        .form {
            width: 80%;
        }
    }

    footer {
        width: 100%;
        height: 100px;
        background-image: url(../images/17.png);
        background-size: cover;
        background-position: center;
    }

}

@media (min-width:375px) and (max-width: 424px) {

    .content-home {
        width: 100%;
        height: 55vh;
        background-image: url(../images/15.png);
        background-size: cover;
        background-position: center;
    }

    .info-lifehuni {
        width: 100%;
        height: 44vh;
        background-image: url(../images/16.png);
        background-size: cover;
        background-position: center;
    }

    .all-items {
        width: 100%;
        height: 160vh;
        background-image: url(../images/3.png);
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        h1,
        span {
            color: rgb(41, 41, 41);
            font-size: 22px;
            width: 65%;
            text-align: center
        }

        span {
            font-weight: 400;
            font-size: 25px;
        }

        .items {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 50%;
            height: 900px;
            justify-content: space-around;

            div {
                width: 90%;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                justify-content: center;
            }
        }

        button {
            padding: 15px 30px;
            font-size: 15px;
        }
    }

    .slider-all {
        width: 100vw;
        height: 700px;
    }

    .slide {
        height: 700px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        img {
            width: 400px;
        }

        .text-slide {
            width: 80%;
            font-size: 12px;
            text-align: center;
            min-width: 100px;
            color: white;
            padding-left: 40px;
        }
    }

    .text-slide p {
        font-size: 18px;
        font-weight: 500;
    }

    .content-inscripcion {
        width: 100%;
        height: 700px;
        background-image: url(../images/5.png);
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;


        .content-text1 {
            width: 80%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            align-items: center;
            line-height: 40px;

            h1 {
                font-size: 50px;
                text-align: center;
                color: white;
            }

            h2 {
                font-size: 30px;
                color: white;
                text-align: center;
            }

            .webinar {
                font-size: 50px;
                color: #9CFF99;
                text-align: center;
            }

            p {
                font-size: 25px;
                font-weight: 500;
                color: white;
                margin-bottom: 70px;
                text-align: center;
            }

            .nombre-gerente {
                color: #9CFF99;
                font-size: 25px;
                font-weight: 500;
            }

            button {
                padding: 15px 60px;
                border-radius: 15px;
                border: 5px solid white;
                color: rgb(80, 79, 79);
                font-weight: 600;
                cursor: pointer;
            }

            button:hover {
                background-color: #578f55;
                color: white;
            }
        }
    }

    .form-all {
        .form {
            width: 80%;
        }
    }

    footer {
        width: 100%;
        height: 100px;
        background-image: url(../images/17.png);
        background-size: cover;
        background-position: center;
    }

}

@media (min-width:320px) and (max-width: 424px) {

    .content-home {
        width: 100%;
        height: 45vh;
        background-image: url(../images/15.png);
        background-size: cover;
        background-position: center;

        .countdown-container {
            text-align: center;
            position: absolute;
            width: 140px;
            height: 60px;
            height: 30px;
            display: flex;
            top: 21%;
            left: 44%;
            color: rgb(87, 87, 87);
            font-family: sans-serif;
            z-index: 1000;
            padding: 0;
            letter-spacing: 0px;

            div span {
                font-size: 10px;
                font-weight: 100;
                letter-spacing: 0px;
            }
        }

        #countdown {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 140px;
            height: 60px;
            padding: 0;
            letter-spacing: 0px;

            span {
                width: 20%;

            }
        }

    }

    .info-lifehuni {
        width: 100%;
        height: 44vh;
        background-image: url(../images/16.png);
        background-size: cover;
        background-position: center;
    }

    .all-items {
        width: 100%;
        height: 160vh;
        background-image: url(../images/3.png);
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        h1,
        span {
            color: rgb(41, 41, 41);
            font-size: 22px;
            width: 65%;
            text-align: center
        }

        span {
            font-weight: 400;
            font-size: 25px;
        }

        .items {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 50%;
            height: 900px;
            justify-content: space-around;

            div {
                width: 90%;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                justify-content: center;
            }
        }

        button {
            padding: 15px 30px;
            font-size: 15px;
        }
    }

    .slider-all {
        width: 100vw;
        height: 700px;
    }

    .slide {
        height: 700px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        img {
            width: 300px;
        }

        .text-slide {
            width: 80%;
            font-size: 12px;
            text-align: center;
            min-width: 100px;
            color: white;
        }
    }

    .text-slide p {
        font-size: 18px;
        font-weight: 500;
    }

    .content-inscripcion {
        width: 100%;
        height: 700px;
        background-image: url(../images/5.png);
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;


        .content-text1 {
            width: 80%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            align-items: center;
            line-height: 40px;

            h1 {
                font-size: 50px;
                text-align: center;
                color: white;
            }

            h2 {
                font-size: 30px;
                color: white;
                text-align: center;
            }

            .webinar {
                font-size: 50px;
                color: #9CFF99;
                text-align: center;
            }

            p {
                font-size: 25px;
                font-weight: 500;
                color: white;
                margin-bottom: 70px;
                text-align: center;
            }

            .nombre-gerente {
                color: #9CFF99;
                font-size: 25px;
                font-weight: 500;
            }

            button {
                padding: 15px 60px;
                border-radius: 15px;
                border: 5px solid white;
                color: rgb(80, 79, 79);
                font-weight: 600;
                cursor: pointer;
            }

            button:hover {
                background-color: #578f55;
                color: white;
            }
        }
    }

    .form-all {
        height: 750px;
        display: flex;
        flex-direction: column;

        h1 {
            width: 60%;
            text-align: center;
        }

        .form {
            width: 85%;
            height: 630px;
        }

        #check-options {
            width: 60%;
            display: flex;
            flex-direction: column;
            text-align: center;
        }
    }

    footer {
        width: 100%;
        height: 100px;
        background-image: url(../images/17.png);
        background-size: cover;
        background-position: center;
    }

}

@media (min-width: 825px) and (max-width: 1023px) {

    .content-home {
        height: 100vh;
        width: 100%;
        height: 120vh;
        background-image: url(../images/18.png);
        background-size: cover;
        background-position: center;
    }

    .info-lifehuni {
        height: 90vh;
    }

    .all-items {
        .items {
            display: flex;
            width: 80%;
            height: 300px;
            justify-content: space-around;

            .contenedores {
                width: 25%;
                display: flex;

                img {
                    width: 80px;
                }
            }

            h1 {
                font-size: 25px;
                color: rgb(41, 41, 41);
                text-align: center;
            }
        }
    }

    .slider-all {
        height: 550px;
    }

    .slide {
        width: 100vw;
        flex-shrink: 0;
        background-image: url(../images/4.jpg);
        background-size: cover;
        background-position: center;
        height: 550px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        img {
            width: 500px;
        }

        .text-slide {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .text-slide p,
        h1 {
            width: 80%;
            text-align: center;

        }
    }

    .content-inscripcion {
        width: 100%;
        height: 190px;

        .content-text1 {
            width: 70%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            .content-texts {
                width: 100%;
                height: 50%;
                line-height: 1px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
                padding-top: 30px;
            }

            h1 {
                width: 100%;
                font-size: 18px;
                color: white;
            }

            h2 {
                font-size: 18px;
                color: white;
            }

            .webinar {
                font-size: 20px;
                color: #9CFF99;
            }

            p {
                font-size: 15px;
                font-weight: 500;
                color: white;
            }

            .nombre-gerente {
                color: #9CFF99;
                font-size: 15px;
                font-weight: 500;
            }

            button {
                padding: 10px 30px;
                border-radius: 15px;
                border: 5px solid white;
                color: rgb(80, 79, 79);
                font-weight: 600;
                cursor: pointer;
            }

            button:hover {
                background-color: #578f55;
                color: white;
            }
        }
    }

    .all-inputs {
        height: 50%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;

        .form-group {
            width: 90%;
            height: 80px;
            color: white;
            font-size: 20px;
            display: flex;
            justify-content: space-between;

            input {
                width: 100%;
                height: 20px;
                border-radius: 10px;
                border: none;
            }
        }
    }

    .form-all {
        height: 110vh;
    }

    .form {
        height: 90%;

    }

    .form-group {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 5px;
    }

    .form-group input {
        width: 100%;
    }

    .all-items h1,
    .all-items span {
        font-size: 20px;
    }

    .content-text1 h1,
    .content-text1 h2 {
        text-align: center;
    }
}

@media (min-width: 1025px) and (max-width: 1075px) {
    .content-home {
        height: 120vh;
        width: 100%;
        background-image: url(../images/20.png);
        background-size: cover;
        background-position: center;
    }
}



@media (min-width: 1025px) and (max-width: 1156px) {

    .content-home {
        height: 1000px;
        width: 100%;
        background-image: url(../images/19.png);
        background-size: cover;
        background-position: center;


        .countdown-container {
            text-align: center;
            position: absolute;
            width: clamp(350px, 30vw, 600px);
            height: clamp(30px, 8vw, 60px);
            height: 30px;
            display: flex;
            top: 62%;
            left: 45%;
            color: rgb(87, 87, 87);
            font-family: sans-serif;
            z-index: 1000;
            padding: 0;
            letter-spacing: 0px;

            div span {
                font-size: 10%;
                font-size: clamp(12px, 3vw, 28px);
                font-weight: 100;
                letter-spacing: 0px;
            }
        }

        #countdown {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 350px;
            height: 60px;
            padding: 0;
            letter-spacing: 0px;

            span {
                width: 20%;

            }
        }
    }

    .info-lifehuni {
        height: 1000px;
    }

    .all-items {
        .items {
            display: flex;
            width: 80%;
            height: 300px;
            justify-content: space-around;

            .contenedores {
                width: 25%;
                display: flex;

                img {
                    width: 80px;
                }
            }

            h1 {
                font-size: 25px;
                color: rgb(41, 41, 41);
                text-align: center;
            }
        }
    }

    .slider-all {
        height: 550px;
    }

    .slide {
        width: 100vw;
        flex-shrink: 0;
        background-image: url(../images/4.jpg);
        background-size: cover;
        background-position: center;
        height: 550px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        img {
            width: 500px;
        }

        .text-slide {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .text-slide p,
        h1 {
            width: 80%;
            text-align: center;

        }
    }

    .content-inscripcion {
        width: 100%;
        height: 250px;

        .content-text1 {
            width: 70%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            .content-texts {
                width: 100%;
                height: 50%;
                line-height: 1px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
                padding-top: 30px;
            }

            h1 {
                width: 100%;
                font-size: 18px;
                color: white;
            }

            h2 {
                font-size: 18px;
                color: white;
            }

            .webinar {
                font-size: 20px;
                color: #9CFF99;
            }

            p {
                font-size: 15px;
                font-weight: 500;
                color: white;
            }

            .nombre-gerente {
                color: #9CFF99;
                font-size: 15px;
                font-weight: 500;
            }

            button {
                padding: 10px 30px;
                border-radius: 15px;
                border: 5px solid white;
                color: rgb(80, 79, 79);
                font-weight: 600;
                cursor: pointer;
            }

            button:hover {
                background-color: #578f55;
                color: white;
            }
        }
    }

    .all-inputs {
        height: 50%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;

        .form-group {
            width: 90%;
            height: 80px;
            color: white;
            font-size: 20px;
            display: flex;
            justify-content: space-between;

            input {
                width: 100%;
                height: 20px;
                border-radius: 10px;
                border: none;
            }
        }
    }

    .form-all {
        height: 110vh;
        width: 100%;
        display: flex;
        justify-content: center;

        .form {
            width: 700px;
        }

    }

    .form-group {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 5px;
    }

    .form-group input {
        width: 100%;
    }

    .all-items h1,
    .all-items span {
        font-size: 20px;
    }

    .content-text1 h1,
    .content-text1 h2 {
        text-align: center;
    }
}

@media (min-width: 1157px) and (max-width: 1180px) {

    .content-home {
        height: 1100px;
        width: 100%;
        background-image: url(../images/19.png);
        background-size: cover;
        background-position: center;


        .countdown-container {
            text-align: center;
            position: absolute;
            width: clamp(400px, 30vw, 600px);
            height: clamp(30px, 8vw, 60px);
            height: 30px;
            display: flex;
            top: 70%;
            left: 45%;
            color: rgb(87, 87, 87);
            font-family: sans-serif;
            z-index: 1000;
            padding: 0;
            letter-spacing: 0px;

            div span {
                font-size: 10%;
                font-size: clamp(12px, 3vw, 28px);
                font-weight: 100;
                letter-spacing: 0px;
            }
        }

        #countdown {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 400px;
            height: 60px;
            padding: 0;
            letter-spacing: 0px;

            span {
                width: 20%;

            }
        }
    }

    .info-lifehuni {
        height: 1000px;
    }

    .all-items {
        .items {
            display: flex;
            width: 80%;
            height: 300px;
            justify-content: space-around;

            .contenedores {
                width: 25%;
                display: flex;

                img {
                    width: 80px;
                }
            }

            h1 {
                font-size: 25px;
                color: rgb(41, 41, 41);
                text-align: center;
            }
        }
    }

    .slider-all {
        height: 550px;
    }

    .slide {
        width: 100vw;
        flex-shrink: 0;
        background-image: url(../images/4.jpg);
        background-size: cover;
        background-position: center;
        height: 550px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        img {
            width: 500px;
        }

        .text-slide {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .text-slide p,
        h1 {
            width: 80%;
            text-align: center;

        }
    }

    .content-inscripcion {
        width: 100%;
        height: 250px;

        .content-text1 {
            width: 70%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            .content-texts {
                width: 100%;
                height: 50%;
                line-height: 1px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
                padding-top: 30px;
            }

            h1 {
                width: 100%;
                font-size: 18px;
                color: white;
            }

            h2 {
                font-size: 18px;
                color: white;
            }

            .webinar {
                font-size: 20px;
                color: #9CFF99;
            }

            p {
                font-size: 15px;
                font-weight: 500;
                color: white;
            }

            .nombre-gerente {
                color: #9CFF99;
                font-size: 15px;
                font-weight: 500;
            }

            button {
                padding: 10px 30px;
                border-radius: 15px;
                border: 5px solid white;
                color: rgb(80, 79, 79);
                font-weight: 600;
                cursor: pointer;
            }

            button:hover {
                background-color: #578f55;
                color: white;
            }
        }
    }

    .all-inputs {
        height: 50%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;

        .form-group {
            width: 90%;
            height: 80px;
            color: white;
            font-size: 20px;
            display: flex;
            justify-content: space-between;

            input {
                width: 100%;
                height: 20px;
                border-radius: 10px;
                border: none;
            }
        }
    }

    .form-all {
        height: 110vh;
        width: 100%;
        display: flex;
        justify-content: center;

        .form {
            width: 700px;
        }

    }

    .form-group {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 5px;
    }

    .form-group input {
        width: 100%;
    }

    .all-items h1,
    .all-items span {
        font-size: 20px;
    }

    .content-text1 h1,
    .content-text1 h2 {
        text-align: center;
    }
}

@media (min-width: 1181px) and (max-width: 1280px) {
    .content-home {
        height: 1200px;
        width: 100%;
        background-image: url(../images/19.png);
        background-size: cover;
        background-position: center;

        .countdown-container {
            text-align: center;
            position: absolute;
            width: clamp(420px, 30vw, 600px);
            height: clamp(30px, 8vw, 60px);
            height: 30px;
            display: flex;
            top: 75%;
            left: 45%;
            color: rgb(87, 87, 87);
            font-family: sans-serif;
            z-index: 1000;
            padding: 0;
            letter-spacing: 0px;

            div span {
                font-size: 10%;
                font-size: clamp(12px, 3vw, 28px);
                font-weight: 100;
                letter-spacing: 0px;
            }
        }

        #countdown {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 420px;
            height: 60px;
            padding: 0;
            letter-spacing: 0px;

            span {
                width: 20%;
                font-size: 35px;
            }
        }
    }
}

@media (min-width: 1281px) and (max-width: 1439px) {
    .content-home {
        height: 1300px;
        width: 100%;
        background-image: url(../images/19.png);
        background-size: cover;
        background-position: center;

        .countdown-container {
            text-align: center;
            position: absolute;
            width: clamp(470px, 30vw, 600px);
            height: clamp(30px, 8vw, 60px);
            height: 30px;
            display: flex;
            top: 87%;
            left: 45%;
            color: rgb(87, 87, 87);
            font-family: sans-serif;
            z-index: 1000;
            padding: 0;
            letter-spacing: 0px;

            div span {
                font-size: 10%;
                font-size: clamp(12px, 3vw, 28px);
                font-weight: 100;
                letter-spacing: 0px;
            }
        }

        #countdown {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 470px;
            height: 60px;
            padding: 0;
            letter-spacing: 0px;

            span {
                width: 20%;
                font-size: 35px;
            }
        }
    }
}





@media (min-width: 1440px) and (max-width: 1480px) {

    .content-home {
        width: 100%;
        height: 170vh;
        background-image: url(../images/14.png);
        background-size: cover;
        background-position: center;


        .countdown-container {
            text-align: center;
            position: absolute;
            width: clamp(500px, 30vw, 600px);
            height: clamp(30px, 8vw, 60px);
            height: 30px;
            display: flex;
            top: 88%;
            left: 45%;
            color: rgb(87, 87, 87);
            font-family: sans-serif;
            z-index: 1000;
            padding: 0;
            letter-spacing: 0px;

            div span {
                font-size: 10%;
                font-size: clamp(12px, 3vw, 28px);
                font-weight: 100;
                letter-spacing: 0px;
            }
        }

        #countdown {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 500px;
            height: 60px;
            padding: 0;
            letter-spacing: 0px;

            span {
                width: 20%;
                font-size: 40px;
            }
        }
    }

    .content-inscripcion {
        width: 100%;
        height: 340px;
        background-image: url(../images/5.png);
        background-size: cover;
        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content: center;

        .content-texts {
            line-height: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    }

    .slide {
        color: white;
    }


    .form-all {
        .form {
            height: 70%;
            width: 45%;
            background-image: url(../images/7.png);
            background-size: cover;
            border-radius: 20px;
            color: white;
            font-weight: 500;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
    }

    footer {
        height: 300px;
    }
}

@media (min-width: 1481px) and (max-width: 1800px) {

    .content-home {
        width: 100%;
        height: 240vh;
        max-height: 200vh;
        background-image: url(../images/23.png);
        background-size: cover;
        background-position: center;
    }

    .content-inscripcion {
        width: 100%;
        height: 340px;
        background-image: url(../images/5.png);
        background-size: cover;
        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content: center;

        .content-texts {
            line-height: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    }

    .slide {
        color: white;
    }

    .form-all {
        .form {
            height: 70%;
            width: 45%;
            background-image: url(../images/7.png);
            background-size: cover;
            border-radius: 20px;
            color: white;
            font-weight: 500;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
    }

    footer {
        height: 300px;
    }
}