@keyframes smoothScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-webkit-keyframes smoothScroll {
  0% {
    -webkit-transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
  }
}
.smooth-scroll-items {
  width: max-content;
  animation: smoothScroll 40s linear infinite;
  -webkit-animation: smoothScroll 40s linear infinite;
}

@media screen and (max-width: 1260px) {
  .smooth-scroll-items-responsive {
    width: fit-content;
    animation: smoothScroll 40s linear infinite;
    -webkit-animation: smoothScroll 40s linear infinite;
  }
}
