.htu__wrapper {
    background-color: var(--whiteSecond);
}
.htu__wrapper > .wrapper {
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
}

.htu__content {
    z-index: 2;
    flex: 0 1 50%;
}
.htu__content > p {
    opacity: 0.8;
}
.htu__features {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    align-items: stretch;
    gap: 20px;
}
.htu__features_item {
    flex: 1 1 48.5%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    background-color: var(--white);
    padding: 20px;
}
.htu__features_item > div {
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--greenPrimary);
    border-radius: 100%;
}
.htu__features_item > div p {
    font-weight: 600;
    transform: translateY(1px);
}

.htu__img {
    max-width: 46%;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    align-self: stretch;
    gap: 5px;
}
.htu__img_second {
    position: absolute;
    max-width: 810px;
    right: -150px;
    bottom: 0;
}
.htu__img img {
    vertical-align: bottom;
    object-position: 30%;
}

.ready__wrapper {
    background-color: var(--blackPrimary2);
}
.ready__wrapper .htu__img {
    /* max-height: 100%; */
    right: 60px;
    max-width: 680px;
}

@media (max-width: 1480px) {
    .ready__wrapper .htu__img {
        right: 60px;
        max-width: 680px;
        width: 50%;
        height: 100%;
    }
}
@media (max-width: 1024px) {
    .htu__wrapper > .wrapper {
        flex-direction: column-reverse;
    }
    .htu__img {
        position: relative;
        bottom: unset;
        right: unset;
        max-width: unset;
        margin-top: 24px;
    }
    .htu__content {
        padding-top: 12px !important;
    }
    .ready__wrapper .htu__img {
        max-width: 100%;
        right: 0px;
        width: 100%;
    }
}
