.elementor .auto-scroll-wrapper{/* 1. The Window: Hides everything outside its boundaries */
.auto-scroll-wrapper {
overflow: hidden !important;
width: 100%;
}

/* 2. The Conveyor Belt: Stretches out and animates */
.auto-scroll-track {
display: flex !important;
flex-wrap: nowrap !important;
width: max-content !important; /* Forces it to be as wide as all images combined */
animation: scrollMarquee 20s linear infinite; /* 20s is the speed. Lower = faster */
}

/* Pro-tip: Pauses the auto-scroll if the user hovers over an image! */
.auto-scroll-wrapper:hover .auto-scroll-track {
animation-play-state: paused;
}

/* 3. The Infinite Loop Animation */
@keyframes scrollMarquee {
0% { 
  transform: translateX(0); 
}
100% { 
  transform: translateX(-50%); /* Shifts it exactly halfway, hiding the first set and showing the duplicate set perfectly */
}
}\n}.elementor .auto-scroll-track{padding:0px;gap:20px;flex-wrap:nowrap;}