.marquee-section {
    background: #D4D7F4;
    padding: 22px 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    margin-bottom: 36px;
    position: relative;
}


.marquee-track-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.marquee-track-wrapper::after,
.marquee-track-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 160px;
    z-index: 2;
    pointer-events: none
}

.marquee-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #D4D7F4 0, transparent 100%)
}

.marquee-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #D4D7F4 0, transparent 100%)
}

.marquee-track-wrapper+.marquee-track-wrapper {
    margin-top: 14px
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: marqueeScroll 60s linear infinite
}

.marquee-track--reviews {
    animation: marqueeScrollReverse 60s linear infinite
}

.marquee-track:hover {
    animation-play-state: paused
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes marqueeScrollReverse {
    0% {
        transform: translateX(-50%)
    }

    100% {
        transform: translateX(0)
    }
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px
}

.marquee-item img {
    height: 32px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    opacity: .5
}

.marquee-item img:hover {
    opacity: .8
}

.marquee-item--square {
    height: 52px
}

@media screen and (max-width:575px) {
    .marquee-section::before {
        left: 0
    }

    .marquee-section::after {
        right: 0
    }
}