.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel {
  min-width: 4228px;
  display: flex;
  animation: scroll 45s linear infinite;
}

.carousel img {
  width: 100%;
  min-width: 4228px;
  object-fit: cover;
}

@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}

.controls {
  position: absolute;
  top: 86%;
  right: 14px;
  z-index: 10;
}

button {
  dxisplay: inline-block;
  padding: 10px 10px 5px;
  fxont-size: 16px;
  margin: 5px;
  cursor: pointer;
  background-color: #f2f2f2;
  z-index: 1100;
  border-radius: 4px;
  border: none;
}
button:hover {
  color: #007AC7;
}