.warranty,
.discount {
    display: flex;
}

.advantages,
.warranty,
.discount,
.steps {
    margin: 60px 0;
}

.warranty .warranty__icon,
.discount .discount__icon {
    flex-shrink: 0;
}

.warranty .warranty__icon {
    margin-right: 31px;
}

.discount .discount__icon {
    margin-right: 25px;
}

.warranty .warranty__icon img,
.discount .discount__icon img {
    display: block;
    height: auto;
}

.warranty .warranty__icon img{
    width: 40px;
}

.discount .discount__icon img {
    width: 46px;
}

.warranty {
    align-items: center;
}

.warranty .warranty__text,
.discount .discount__text-title,
.steps .steps__item-title {
    font-size: 24px;
    line-height: 30px;
}

.discount .discount__text {
    margin-top: 8px;
}

.discount .discount__text-footnote p {
    font-size: 14px;
    line-height: 18px;
    color: #6E7C87;
    margin: 0;
}

.discount .discount__text-desc p {
    margin: 28px 0;
}

.discount .discount__text-desc ul {
    margin-bottom: 16px;
}

.discount .discount__text-desc li {
    margin-bottom: 0;
}

.advantages .advantages__title,
.steps .steps__title {
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
}

.advantages .advantages__text {
    margin-top: 21px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.advantages .advantages__text span {
    display: inline-block;
    background: #4BB933;
    color: #FFF;
    font-size: 24px;
    line-height: 30px;
    padding: 5px 20px;
}

.advantages .advantages__text span:not(:first-of-type) {
    margin-top: 11px;
}

.steps .steps__title {
    margin-bottom: 36px;
}

.steps .steps__items {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
}

.steps .steps__item {
    background: #F3F5F8;
    padding: 50px 26px 47px 20px;
}

.steps .steps__item-icon img {
    width: 70px;
    height: 70px;
}

.steps .steps__item-icon {
    margin-bottom: 33px;
}

.steps .steps__item-title {
    margin-bottom: 43px;
}

.steps .steps__item-text {
    font-size: 18px;
    line-height: 30px;
}

/* video-reviews */

.reviews-video {
    position: relative;
}

.reviews-video__controls {
    position: absolute;
    top: 50%;
    z-index: 1;
    left: 0;
    width: 100%;
}

.reviews-video__controls .reviews-video__control {
    position: absolute;
    display: block;
    font-size: 17px;
    color: #FFF;
    margin: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100%;
    background: #4bb933;
    top:0;
}

.reviews-video__controls .reviews-video__control.next {
    right: 0;
}

@media (max-width: 900px) {
    .steps .steps__items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .warranty .warranty__text,
    .discount .discount__text-title,
    .discount .discount__text-desc ul,
    .discount .discount__text-desc p {
        font-size: 14px;
        line-height: 16px;
    }

    .discount .discount__text-desc p {
        margin: 18px 0;
    }

    .advantages .advantages__title,
    .steps .steps__title {
        font-size: 20px;
        line-height: 23px;
    }

    .advantages .advantages__text {
        margin-top: 33px;
    }

    .advantages .advantages__text span {
        padding: 5px 10px;
        font-size: 14px;
        line-height: 16px;
    }

    .steps .steps__item {
        padding: 50px 20px 35px 20px;
    }

    .steps .steps__item-title {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .steps .steps__item-text {
        font-size: 14px;
        line-height: 16px;
    }

    .advantages,
    .warranty,
    .discount,
    .steps {
        margin: 40px 0;
    }
    
    .steps .steps__title {
        margin-bottom: 48px;
    }
}