.carousel-container {
  background-color: transparent !important;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-container h1 {
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
  font-size: 35px;
}

.carousel {
  overflow: hidden;
  width: 100%; /* Adjust width as needed */
  max-height: 150px;
  background-color: transparent !important;
  position: relative;
}

.carousel-inner {
  display: flex;
  align-items: center;
  /* flex-wrap: nowrap; */
  /*transition: transform 3s ease;*/
  will-change: transform;
  transition: transform 1.5s linear;
}

/* .carousel-item {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
} */

/* .carousel-item img {
  max-height: 125px;
  width: calc(100% / 8 - 20px);
  margin: 5px;
  object-fit: contain;
} */

.carousel-logo {
  flex-shrink: 0;
  height: 100px;
  max-width: 120px;
  margin: 0 7% 0 7%;
  object-fit: contain;
}


@media (max-width: 768px) {
  .carousel-inner {
    transition: transform 2s ease;
  }
}