.logo-ticker-wrapper-4085229f {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.logo-ticker-track-4085229f {
    display: flex;
    align-items: center;
    animation: logoTickerScroll4085229f 20s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.logo-ticker-item-4085229f {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-ticker-item-4085229f img {
    max-width: none;
    object-fit: contain;
}

@keyframes logoTickerScroll4085229f {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}