.carousel-container {
  height: 300px;
  max-height: 300px;
  margin: 0 0 20px 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.carousel-container:hover .carousel, .carousel-container:hover .carousel-right {animation-play-state: paused;}
.carousel {
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
  animation: scroll-left 80s linear infinite;
}
.carousel img, .carousel-right img {
  margin: 0 0.5rem;
  max-height: 300px;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel-right {
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
  animation: scroll-right 80s linear infinite;
}


@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}