#outer-container {
  width: 100%;
  overflow: hidden;
}

#inner-container {
  display: flex;
  white-space: nowrap;
  animation: scrollLeft2 50s linear infinite;
}

#outer-container:hover #inner-container {
  animation-play-state: paused;
}

.scrollItem2 {
  display: inline-block;
  width: auto;
  margin: 5px;
}

@keyframes scrollLeft2 {
  0% {
    transform: translateX(48%);
  }
  100% {
    transform: translateX(calc(-4%));
  }
}
