.section-recommendations {
    overflow: hidden;
}

.section-recommendations .section-heading {
    text-align: left;
    margin-bottom: 40px;
}

.section-recommendations .section-heading .title {
    font-size: 58px;
}

.section-recommendations__wrapper:before {
    content: "";
    width: 211px;
    height: 133px;
    background: url(../../images/waves/wave_010.svg);
    position: absolute;
    top: -150px;
    right: -165px;
}

.section-recommendations__wrapper {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 80px;
    position: relative;
}

.section-recommendations__content-actions {
    margin-top: 50px;
}

.section-recommendations__items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-recommendations__item-title {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.section-recommendations__item-title img {
    margin-right: 10px;
    margin-top: 8px;
}

.section-recommendations__item-title h2 {
    font-size: 28px;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.section-recommendations__item-title h2 strong {
    color: #AD3275;
    font-weight: 600;
}

.section-recommendations__item-content {
    padding-left: 25px;
}

.section-recommendations__item-content p {
    color: #4D4948;
    font-size: 20px;
    font-weight: 400;
    margin-top: 10px;
}

.section-recommendations__item-content .morecontent span {
    display: none;
}

.section-recommendations__item-content .morelink {
    display: inline-block;
    color: #AD3275;
    font-size: 16px;
    font-weight: 700;
}

.section-recommendations__image {
    flex: 1 1 0;
    text-align: center;
    margin-top: 20px;
    min-width: 441px;
    position: relative;
}

.section-recommendations__image img {
    width: 100%;
    position: relative;
    right: -25px;
}

.section-recommendations__image:after {
    content: "";
    width: 133px;
    height: 76px;
    background: url(../../images/waves/wave_011.svg);
    position: absolute;
    bottom: -90px;
    right: -180px;
}

@media (max-width: 1440px) {
    .section-recommendations__image img {
        right: 0;
    }

    .section-recommendations .section-heading .title {
        font-size: 52px;
    }
}

@media (max-width: 992px) {
    .section-recommendations__image {
        min-width: 300px;
    }

    .section-recommendations__wrapper {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-recommendations .section-heading .title {
        font-size: 38px;
    }

    .section-recommendations__wrapper {
        flex-direction: column;
    }

    .section-recommendations__content {
        order: 2;
    }

    .section-recommendations__image {
        margin: 0 auto;
    }
}

@media (max-width: 567px) {
    .section-recommendations .section-heading .title {
        font-size: 32px;
    }

    .section-recommendations__wrapper:before {
        top: -180px;
        right: -155px;
    }

    .section-recommendations__wrapper:after {
        display: none;
    }

    .section-recommendations__item-title p {
        font-size: 22px;
    }

    .section-recommendations__content-actions {
        flex-direction: column;
        gap: 10px;
    }

    .section-recommendations__content-actions a {
        width: 100%;
        justify-content: center;
    }
}