.smooth-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: flex-start;
  overflow: hidden;
  width: 100%;
}

.smooth-slider-track {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 50px;
  min-width: fit-content;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.smooth-slider-item {
  flex-shrink: 0.2;
}

.smooth-slider:hover .smooth-slider-track {
    animation-play-state: paused;
}

@keyframes animate-smooth-slider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 1279px) {
    .smooth-slider-track {
        animation: animate-smooth-slider 30s linear infinite;
    }
}