.body {
    margin: 0;
    padding: 0;
}
.Landing_section {
    display: flex;
    flex-direction: column;
}
.Landing_section_content {
    display: flex;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to left, #FFF6EB 0%, #FFF6EB 65%, #FFFFFF 65%, #FFFFFF 100%);
}
.left_section {
    width: 50%;
}
.people {
    width: 65vw;
}
.right_section {
    display: flex;
    justify-content: flex-end;
}
.logo {
    position: absolute;
    top: 0;
    padding: 40px;
}
.white_box {
    background: #FFFFFF;
    border-radius: 13px 0 0 13px;
    box-shadow: 0 0 10px;
    padding: 50px 25px;
}
.scnd_prgh {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: justify;
}
.btn_schedules {
    border: transparent;
    background: #FA7922;
    border-radius: 6px;
    padding: 10px 25px;
    color: #FFFFFF;
    font-weight: bold;
    margin: 20px 0 0 0;
}

.Landing_section_points {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 30px;
    margin: 40px 0;
    justify-content: space-evenly;
}
.rows {
    display: flex;
    justify-content: space-around;
}
.row {
    width: 33.3%;
}
.orange_box {
    display: block;
}
.orange_box_mobile {
    display: none;
}
.row_text {
    color: #FFFFFF;
    background: #FA7922;
}
.points_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.points_title {
    font-weight: bold;
    margin: 20px 0;
    text-align: center;
}
.points {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.point {
    width: 25.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.Landing_section_modal {
    background: url('../assets/imgs/bg_purple.png');
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
    margin: -160px 0 0 0;
}
.orange_rectangule {
    display: grid;
    align-self: center;
    text-align: center;
    justify-items: center;
    background: #FA7922;
    color: #FFFFFF;
    border-radius: 15px;
    padding: 20px;
    z-index: 2;
}
.btn_dscn {
    border: none;
    padding: 7px 25px;
    border-radius: 13px;
    background: #FFFFFF;
    color: #FA7922;
    font-weight: bold;
}
.purple_content {
    margin: 140px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
    align-items: center;
}
.needs-validation {
    background: #FFFFFF;
    padding: 25px 45px;
    border-radius: 2px;
    color: black;
    text-align: start;
    display: grid;
    gap: 30px;
    align-self: center;
    margin: 15px;
}
.footer {
    width: 90vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}
.footer_social_section {
    display: flex;
    gap: 15px;
}
h1, h2 {
    font-size: clamp(1.7rem, 3vw, 4rem);
}
h3, h4 {
    font-size: clamp(2rem, 2vw, 4rem);
}
p, button, label, input, .btn {
    font-size: clamp(1rem, 1.3vw, 2rem) !important;
}
a {
    text-decoration: none;
}
.gilaSoftware {
    width: clamp(5rem, 10vw, 10rem);
}

/* Movil */
@media screen and (max-width: 1024px) {
    .Landing_section_content {
        flex-direction: column;
        height: unset;
        background: #FFF6EB;
    }
    .left_section {
        width: unset;
        height: 60vw;
    }
    .people {
        width: 100%;
        height: 65vw;
    }
    .right_section {
        width: 95vw;
    }
    .white_box {
        border-radius: 13px;
        box-shadow: none;
    }
    .scnd_prgh {
        text-align: unset;
    }

    .Landing_section_points {
        background: linear-gradient(to bottom,
         #FFF6EB 0%, #FFF6EB 19%, #FFFFFF 19%, #FFFFFF 100%);
        margin: unset;
    }
    .orange_box {
        display: none;
    }
    .orange_box_mobile {
        display: block !important;
        background: #fe9920;
        border-radius: 13px;
        padding: 50px;
        color: #FFFFFF;
        font-weight: bold;
    }
    #one {
        display: none;
    }
    .row {
        width: 50%;
    }
    .points_section {
        padding: 30px 0;
    }
    .points {
        flex-direction: column;
        align-items: center;
    }
    .point {
        width: 40.5%;
    }
    .orange_rectangule {
        border-radius: 26px;
        padding: 50px;
        gap: 40px;
    }
    .btn_dscn {
        border-radius: 6px;
        padding: 25px;
    }

    /* Fonts */
    p, button, label, input, .btn {
        font-size: clamp(1rem, 2.3vw, 2rem) !important;
    }
}