.trusted {
    position: relative;
    margin-top: 0;
    padding: 0;
    --marquee-gap: 8px
}

.trusted__head {
    text-align: center;
    margin-bottom: 16px
}

.trusted__title {
    color: var(--black)
}

.trusted__title b, .trusted__title span, .trusted__title strong {
    color: var(--primary)
}

.trusted__sliders {
    position: relative
}

.trusted__sliders::after, .trusted__sliders::before {
    content: none
}

.trusted__sliders::before {
    left: 0;
    background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), to(#fff));
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0, #fff 100%)
}

.trusted__sliders::after {
    right: 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#fff));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, #fff 100%)
}

.trusted__slider-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    will-change: transform;
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important
}

.trusted__slider-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    width: 105px;
    height: 56px;
    margin-right: var(--marquee-gap)
}

@media (min-width: 760px) {
    .trusted {
        --header-height: 80px;
        --marquee-gap: 16px;
        padding: 32px 0
    }

    .trusted__head {
        margin-bottom: 24px
    }

    .trusted__sliders::after, .trusted__sliders::before {
        content: "";
        position: absolute;
        z-index: 1;
        top: 0;
        bottom: 0;
        width: 150px
    }

    .trusted__slider-image {
        width: 132px;
        height: 70px
    }
}

@media (min-width: 1200px) {
    .trusted {
        --marquee-gap: 24px;
        padding: 40px 0
    }

    .trusted__head {
        margin-bottom: 32px
    }

    .trusted__sliders::after, .trusted__sliders::before {
        width: 300px
    }

    .trusted__slider-image {
        width: 150px;
        height: 80px
    }
}
