.custom-carousel {
  display: flex;
  overflow: hidden;
  width: max-content;
  gap: 0;
  animation: slide-left-right 50s linear infinite alternate;
}

@keyframes slide-left-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      -50%
    ); /* Ajusta según el ancho total de las imágenes */
  }
}

.carousel-item img {
  width: 35vw;
  height: auto;
  aspect-ratio: 644/787;
  object-fit: cover;
}
