.section-advantages__items {
    max-width: 1016px;
    margin: 0 auto;
}

.section-advantages__item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
}

.section-advantages__item:before,
.section-advantages__item:after {
    content: "";
    position: absolute;
}

.section-advantages__item.item-1:before {
    width: 175px;
    height: 156px;
    background: url(../../images/waves/wave_05.svg);
    top: -37px;
    left: -212px;
}

.section-advantages__item.item-1:after {
    width: 384px;
    height: 339px;
    background: url(../../images/waves/wave_06.svg);
    top: 165px;
    right: -195px;
}

.section-advantages__item.item-2:before {
    width: 57px;
    height: 272px;
    background: url(../../images/waves/wave_07.svg);
    top: 50%;
    left: -35%;
    transform: translateY(-50%);
}

.section-advantages__item.item-2:after {
    width: 582px;
    height: 91px;
    background: url(../../images/waves/wave_08.svg);
    left: 102px;
    bottom: -55px
}

.section-advantages__item.item-3:after {
    width: 374px;
    height: 146px;
    background: url(../../images/waves/wave_09.svg);
    bottom: -10px;
    right: -292px;
}

.section-advantages__item:last-of-type {
    margin-bottom: 0;
}

.section-advantages__item-thumbnail {
    min-width: 300px;
}

.section-advantages__item:nth-child(2n) .section-advantages__item-thumbnail {
    order: 1;
}

.section-advantages__item-thumbnail img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-advantages__item .section-heading {
    margin-bottom: 30px;
}

.section-advantages__item .section-heading .title {
    font-size: 38px;
    font-weight: 300;
    text-align: left;
}

.section-advantages__item .section-content p {
    font-size: 22px;
    font-weight: 300;
    color: #4D4948;
    margin: 0 !important;
    line-height: normal !important;
}

@media (max-width: 1440px)  {
    .section-advantages__item .section-heading .title {
        font-size: 35px;
    }
}

@media (max-width: 768px) {
    .section-advantages__item:before,
    .section-advantages__item:after {
        display: none;
    }

    .section-advantages__item {
        gap: 0;
        flex-direction: column;
    }

    .section-advantages__item-thumbnail {
        width: 100%;
        margin-bottom: 30px;
    }

    .section-advantages__item:nth-child(2n) .section-advantages__item-thumbnail {
        order: unset;
    }

    .section-advantages__item .section-heading {
        margin-bottom: 25px;
    }

    .section-advantages__item .section-heading .title {
        font-size: 30px;
    }
}