.elementor .e-4336b59-c30a449{width:50%;border-start-start-radius:5px;border-end-start-radius:5px;}.elementor .e-349cca3-2cf6681{width:50%;border-start-start-radius:5px;border-end-start-radius:5px;}.elementor .e-84d72f0-d2b279c{flex-direction:row;gap:20px;flex-wrap:nowrap;flex:1 0 auto;justify-content:center;align-items:center;}.elementor .e-41c7359-ef318e4{/* Outer Container */
.marquee-slider {
  display: flex;
  overflow: hidden;
  position: relative;
}

/* Marquee Track */
.marquee-track {
  display: flex;
gap: 20px; /* Space between images */
animation: scroll 50s linear infinite;
width: max-content; /* Allows infinite loop */
}

/* Individual Container Slide */
.marquee-item {
  width: 420px; /* Same size as previous images */
  height: 300px; /* Adjust as needed */
  flex-shrink: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Stop on Hover */
.marquee-slider:hover .marquee-track {
  animation-play-state: paused;
}

/* Continuous Marquee Animation */
@keyframes scroll {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-50%);
  }
}
/* Mobile */
@media (max-width: 767px) {
  .marquee-item {
      width: 250px;
      height: 200px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .marquee-item {
      width: 340px;
      height: 250px;
  }
}

.slider {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-50%);
  }
}\n}