.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 18px;
  max-height: 69px;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: block;
  text-decoration: none;
  color: inherit;
}

.carousel-item.active {
  opacity: 1;
  position: relative;
}

.carousel-image {
  width: 100%;
  height: 100%;
  max-height: 69px;
  object-fit: cover;
  border-radius: 5px;
}


