.marquee-wrapper-ae5bac29 {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    display: flex;
    position: relative;
}

.marquee-track-ae5bac29 {
    display: flex;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    align-items: center;
}

.marquee-content-ae5bac29 {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-around;
    min-width: 100%;
    animation: scroll-left-ae5bac29 20s linear infinite;
    transform: translateZ(0); /* GPU acceleration */
    will-change: transform;
}

.marquee-pause-hover-yes .marquee-track-ae5bac29:hover .marquee-content-ae5bac29 {
    animation-play-state: paused;
}

@keyframes scroll-left-ae5bac29 {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.marquee-item-ae5bac29 {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.marquee-item-ae5bac29:hover {
    transform: scale(1.05);
}

.marquee-item-image-ae5bac29 {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.marquee-item-icon-ae5bac29 svg {
    height: 1em;
    width: 1em;
    fill: currentColor;
}

.marquee-separator-ae5bac29 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-separator-ae5bac29 svg {
    height: 1em;
    width: 1em;
    fill: currentColor;
}