
.feedback-tour-client__section {
    background: radial-gradient(198.13% 90.64% at 12.47% 29.59%, #c3daf9 0%, #e8eaff 100%);
}

.feedback-tour-client__wrapper {
    display: flex;
    gap: 30px;
}

.feedback-tour-client__content {
    flex-basis: 864px;
}

.feedback-tour-client__image {
    flex-basis: 346px;
    border-radius: 48px;
    overflow: hidden;
}

.feedback-tour-client__image img {
    height: 100%;
    object-fit: cover;
}

.feedback-tour-client__title {
    margin-bottom: 40px;
}

.feedback-tour-client__text-wrapper {
    display: flex;
    gap: 24px;
    border-radius: 32px;
    background: #FFF;
    padding: 24px;
}

.feedback-tour-client__first-text strong,
.feedback-tour-client__second-text strong {
    font-weight: 500;
}


.feedback-tour-client-title-mobile {
    display: none;
}
@media screen and (max-width: 991.98px) {
    .feedback-tour-client__wrapper {
        flex-direction: column;
        gap: 0;
    }

    .feedback-tour-client__title {
        display: none;
    }

    .feedback-tour-client-title-mobile {
        display: flex;
        margin-bottom: 32px;
    }

    .feedback-tour-client__image {
        order: 2;
        margin-bottom: 20px;
        max-height: 500px;
    }

    .feedback-tour-client__image img {
        aspect-ratio: 1 / 1;
    }

    .feedback-tour-client__content {
        order: 3;
    }

    .feedback-tour-client__content,
    .feedback-tour-client__image {
        flex-basis: 100%;
    }

}

@media screen and (max-width: 767.98px) {
    .feedback-tour-client__text-wrapper {
        flex-direction: column;
        gap: 15px;
    }
}