.infinite-scroller {
  overflow: hidden;
  top: 85px;
  z-index: 1301;
  height: 30px;
  background-color: var(--bs-info);
  opacity: 1;
}

.infinite-scroller .scrollable {
  display: flex;
  width: fit-content;
  animation: slide-to-left 20s linear infinite;
  opacity: 1;
}

.infinite-scroller.pause-on-hover .scrollable:hover {
  animation-play-state: paused;
}

@keyframes slide-to-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.infinite-scroller .scrollable > div {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.infinite-scroller .scrollable > div > * {
  /*margin: 0 20px;*/
}

.ban-h6 {
  min-width: 400px;
  margin: 0;
  text-align: center;
}

