
:root {
    --off-white: #fafaf0;
    --light-gray: #9ca6a2;
}

@keyframes infiniteLoop {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(calc(-100px * 10), 0, 0);
    }
}

section {
    background: var(--off-white);
}

.brandsCarousel {
    /* max-width: 960px; */
    /* max-height: 100px; */
    margin: auto;
    overflow: hidden;
    position: relative;
}

.brandsCarousel::before,
.brandsCarousel::after {
    content: "";
    width: 100px;
    height: 150px;
    background: linear-gradient(to right, rgb(228, 228, 228) 0%, rgba(250, 250, 240, 0) 100%);
    position: absolute;
    z-index: 2;
}

.brandsCarousel::before {
    top: 0;
    left: 0;
}

.brandsCarousel::after {
    top: 0;
    right: 0;
    transform: rotateZ(180deg);
}

.carouselTrack {
    width: calc(100px * 20);
    animation: infiniteLoop 10s linear infinite;
    animation-fill-mode: forwards;
    will-change: transform;
}

.brandLogo {
    /* width: 100px;
    height: 50px;
    align-items: center;
    margin: auto;
    overflow: hidden; */
}

.brandLogo svg {
    width: 100px;
    height: 50px;
}
