.s-feedback {
    padding: 0 0 60px;
}

.feedback-grid {
    display: grid;
    gap: 16px;
}

.feedback-item {
    position: relative;
    padding: 16px;
    color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}

.feedback-item-1 {
    display: flex;
}

.feedback-item-1::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--Black-400, rgba(0, 0, 0, 0.4)), var(--Black-400, rgba(0, 0, 0, 0.4))),
    radial-gradient(40.05% 40.06% at 45.05% 38.13%, rgba(0, 0, 0, 0) 0%, #000000 100%);
    z-index: -1;
}

.feedback-item--bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.feedback-item--document img {
    border-radius: 8px;
}

.feedback-item--headline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.feedback-item--headline .feedback-item--title  {
    flex: auto;
    max-width: 200px;
    line-height: 1;
}

.feedback-item--headline .feedback-item--logo{
    margin-bottom: 0;
}

.feedback-item--logo {
    margin-bottom: 22px;
    border-radius: 8px;
}

.feedback-item--description.large-text {
    font-size: var(--fs-h5);
    line-height: 1.21;
    letter-spacing: -0.45px;
}


.feedback-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 24px;
}

.feedback-author__photo img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

.feedback-author__txt {
    flex: 1;
}

.feedback--author_name {
    letter-spacing: -0.4px;
}

.feedback--author_position {
    letter-spacing: -0.3px;
    color: rgba(255, 255, 255, 0.7);
}

.feedback-item-2,
.feedback-item-3,
.feedback-item-4 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feedback-item-2 {
    gap: 16px;
    padding: 0;
}

.feedback-item-2 .feedback-item--wrap {
    padding: 16px;
    border-radius: 8px;
    background: rgba(1, 25, 73, 1);
}

.feedback-item--logotype_bottom_url {
    font-size: 0;
}

.feedback-item-3 {
    background: var(--color-black);
}

.feedback-item-4 {
    align-items: center;
    background: linear-gradient(180deg, rgba(31, 113, 244, 0.05) 0%, rgba(139, 255, 252, 0.2) 100%);
}

.feedback-item-4 .feedback-item--logo {
    margin-bottom: 10px;
}

.feedback-item-4 .feedback-item--description {
    margin-bottom: auto;
    text-align: center;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.5);
}

.feedback--bottom {
    text-align: center;
}

.feedback--num {
    background-image: linear-gradient(80.76deg, #7235E8 0%, #3FF1C3 45%, #333 55%, #333 100%);
    background-size: 220% 100%;
    background-repeat: no-repeat;
    background-position: 0 center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    will-change: background-position;
}

.feedback--caption {
    margin-top: 14px;
    line-height: 1.2;
    letter-spacing: -0.1px;
    color: rgba(0, 0, 0, 0.8);
}

.feedback-item-5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    background: #518d5a;
}

.feedback-item-5 .feedback-author,
.feedback-item-5 .feedback-item--logo {
    margin: 0;
}

.s-testimonials {
    padding: 40px 0;
}

.s-testimonials .headline {
    text-align: center;
}

.s-testimonials .headline--subtitle {
    color: rgba(0, 0, 0, 0.4);
}

.testimonials-row {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

@media (min-width: 992px) {
    .s-feedback {
        padding: 0;
    }

    .feedback-grid {
        grid-template-columns: 1.2fr 1.2fr 0.58fr;
        grid-template-areas:
        "top top top"
        "left center right"
        "bottom bottom bottom";
    }

    .feedback-item,
    .feedback-item-4,
    .feedback-item-2 .feedback-item--wrap {
        padding: 40px 32px;
    }

    .feedback-item-1 {
        grid-area: top;
        align-items: center;
        justify-content: space-between;
        gap: 52px;
        padding: 40px;
    }

    .feedback-item-2 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        grid-area: left;
        padding: 0;
    }

    .feedback-item-3 {
        grid-area: center;
    }

    .feedback-item-4 {
        grid-area: right;
    }

    .feedback-item-5 {
        grid-area: bottom;
    }

    .feedback-item--txt {
        width: 59%;
        padding-left: 3.5%;
    }

    .feedback-item--document {
        width: 35%;
    }

    .feedback-author__photo img {
        width: 90px;
        height: 90px;
    }

    .s-testimonials {
        padding: 95px 0 0;
    }

    .testimonials-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        margin-top: 48px;
        padding: 32px;
        border-radius: 8px;
        background: #e6e6e6;
    }
}

@media (max-width: 991px) {
    .s-testimonials {
        margin-bottom: 60px;
        background: #e6e6e6;
    }

    .feedback-item--document {
        display: none;
    }

    .feedback-item-4 {
        gap: 10px;
    }
}