.marquee-wrapper-6db374fd {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    width: 100%;
}
/* Ensure the wrapper pauses animations on hover */
.marquee-wrapper-6db374fd:hover .marquee-track-6db374fd {
    animation-play-state: paused;
}
.marquee-track-6db374fd {
    display: flex;
    flex-shrink: 0;
    /* Default animation duration is overridden via Elementor custom CSS variable if set */
    animation: marquee-scroll-6db374fd var(--marquee-speed-6db374fd, 15s) linear infinite;
    align-items: center;
    /* Fix for overlap when repeating: ensure content doesn't collapse */
    min-width: 100%;
}
.marquee-item-6db374fd {
    padding: 0 20px;
    display: flex;
    align-items: center;
}
.marquee-item-6db374fd a {
    text-decoration: none;
    color: inherit;
    font-weight: inherit;
    transition: color 0.3s ease;
}
@keyframes marquee-scroll-6db374fd {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}