
.benefits__inner {
    display: flex;
    align-items: flex-start;
    gap: 6rem;
}

.benefits__content {
    gap: 8rem;
}

.benefits__list {
    gap: 5rem;
}

.benefits-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.benefits-item + .benefits-item {
    padding-top: 5rem;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
}

.benefits-item__icon {
    flex: 0 0 auto;
    aspect-ratio: 1;
    width: 2.4rem;
}

.benefits-item__title {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: normal;
}

.benefits-item__text {
    flex: 0 0 auto;
    width: 50%;
    font-weight: 500;
    margin-left: auto;
}

.benefits__images-wrap {
    flex: 0 0 auto;
    width: 46.5%;
    position: sticky;
    top: 7rem;
}

.benefits__images {
    display: flex;
    justify-content: center;

    animation: unset;
    opacity: 1;
/*    position: sticky;
    top: 7rem;*/
}

.benefits__images-inner {
    width: 49rem;
    max-width: 100%;
    position: relative;
}

.benefits__image {
    transition: 0.6s ease-out;
}

.benefits__image_1 {
    width: 38%;
    position: absolute;
    right: 0;
    bottom: 0;
}

.benefits__images:not(.animated) .benefits__image {
    rotate: -45deg;
    scale: 0.7;
    translate: 0 100%;
    opacity: 0;
}

@media screen and (max-width: 1024.9px) {
    .benefits__inner {
        flex-direction: column-reverse;
    }

    .benefits__images-wrap {
        width: 100%;
        position: static;
    }
}

@media screen and (max-width: 575.9px) {
    .benefits__content {
        align-items: center;
        text-align: center;
    }

    .benefits-item {
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .benefits-item__text {
        width: 100%;
    }
}