.compliance-logo {
  max-height: 100%;
  max-width: 124px;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  flex: 0 0 auto;
  width: 160px;
  margin: 0 5px;
  /* background-color: rgba(255, 255, 255, 0.1);
  color: white; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 10px;
}

.carousel-container::before,
.carousel-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.carousel-container-primary::before {
  left: 0;
  background: linear-gradient(to right, #3a9c56, rgba(231, 234, 240, 0));
}

.carousel-container-primary::after {
  right: 0;
  background: linear-gradient(to left, #3a9c56, rgba(231, 234, 240, 0));
}

.carousel-container-primary-dark::before {
  left: 0;
  background: linear-gradient(to right, #1d4e33, rgba(231, 234, 240, 0));
}

.carousel-container-primary-dark::after {
  right: 0;
  background: linear-gradient(to left, #1d4e33, rgba(231, 234, 240, 0));
}

.carousel-container-primary-light::before {
  left: 0;
  background: linear-gradient(to right, #ddf3de, rgba(231, 234, 240, 0));
}
.carousel-container-primary-light::after {
  right: 0;
  background: linear-gradient(to left, #ddf3de, rgba(231, 234, 240, 0));
}

.carousel-container-surface::before {
  left: 0;
  background: linear-gradient(to right, #f7fafc, rgba(231, 234, 240, 0));
}

.carousel-container-surface::after {
  right: 0;
  background: linear-gradient(to left, #f7fafc, rgba(231, 234, 240, 0));
}

.carousel-container-white::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, rgba(231, 234, 240, 0));
}

.carousel-container-white::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, rgba(231, 234, 240, 0));
}

@media (max-width: 768px) {
  .carousel-item {
    font-size: 16px;
  }

  .carousel-container::before,
  .carousel-container::after {
    width: 20px;
  }
}