.marquee-container-cf2495c9 {
    width: 100%;
    overflow: hidden;
    padding: 12px 0;
    white-space: nowrap;
    display: flex;
}

.marquee-track-cf2495c9 {
    display: flex;
    width: max-content;
    animation: marquee-scroll-cf2495c9 20s linear infinite;
    gap: 16px; /* default gap */
}

.marquee-group-cf2495c9 {
    display: flex;
    flex-shrink: 0;
    gap: inherit;
    align-items: center;
}

.marquee-item-cf2495c9 {
    display: flex;
    align-items: center;
    gap: 8px; /* gap between icon and text */
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 600;
}

.marquee-item-cf2495c9 .elementor-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 
 * The animation moves the track to the left by (100 / track-count)%.
 * If track-count is 4, it moves by 25%. Since there are 4 identical groups,
 * moving by 25% perfectly shifts the track by exactly one group width, creating a seamless loop.
 */
@keyframes marquee-scroll-cf2495c9 {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% / var(--track-count)));
    }
}
