.htu {
    display: flex;
    /* flex-direction: row-reverse; */
    flex-wrap: wrap;
    align-items: stretch;

    /* margin-bottom: 0 !important; */
    /* gap: 24px; */
}
.htu > div:first-child > p {
    /* max-width: 70%; */
}
/* .htu > div {
    flex: 1 1 46%;
} */

.htu_container {
    flex-direction: row;
}
.htu_container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 64px;
    @media (max-width: 768px) {
        gap: 24px;
        flex-direction: column;
    }

    & > div:first-child {
        border-radius: 24px;
        overflow: hidden;
        @media (min-width: 768px) {
            aspect-ratio: 3/1;
            max-width: 50%;
        }
        & img {
            object-position: top;
            object-fit: cover;
        }
    }
}

.htu_cards {
    flex: 1 1 46%;
    /* max-width: 660px; */
}

.htu_cards {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}
.htu_cards p {
    font-family: "poppins", sans-serif;
    margin-bottom: 0px;
}
.htu_cards > div {
    padding: 24px;
    background: linear-gradient(
        180deg,
        rgba(100, 174, 231, 0.04),
        rgba(100, 174, 231, 0.01)
    );
    border: 1px solid rgba(100, 174, 231, 0.1);
    border-radius: 12px;
    /* height: max-content; */
    flex: 1 1 31.5%;
    border-radius: var(--brad);
    overflow: hidden;

    display: flex;
    flex-direction: column;
    gap: 24px;
    /* max-height: 220px; */
}
.htu_cards > div {
    & p {
        text-align: center;
    }
    & p:first-child {
        font-weight: 900;
        font-size: 32px;
        text-transform: uppercase;
        &::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 40%;
            height: 2px;
            background-color: gray;
        }
        @media (max-width: 768px) {
            font-size: 20px;
        }
    }
}
.htu .fz24 {
    font-size: 24px !important;
}

.htu_cards {
    margin-bottom: 40px;
}
.htu_cards > div p:first-child {
    color: #64aee7;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px;
}
.htu_cards > div p:last-child {
    font-size: 14px;
    color: var(--gray);
}
.why__stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}
.stat {
    text-align: center;
}
.stat h3 {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 10px;
}
.stat p {
    font-size: 16px;
    color: var(--textMain);
}

@media (max-width: 1187px) {
    .htu_cards > div {
        min-width: 407px;
    }
}
@media (max-width: 768px) {
    .htu {
        padding: 0;
        margin-bottom: 40px;
    }
    .htu > div:first-child {
        padding: 0 14px;
    }
    .htu_cards {
        flex-direction: column;
        gap: 15px;
    }
    .htu_cards > div {
        padding: 20px;
    }
    .why__stats {
        flex-direction: column;
        gap: 20px;
    }
    .stat h3 {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .htu_container {
        flex-direction: column !important;
    }
    .htu_cards {
        flex-direction: column !important;
    }
    .htu_cards > div {
        flex: unset !important;
        min-width: 0;
    }
}
