.badge-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.badge-slider-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 80s linear infinite;
}
.badge-slider {
  display: flex;
}
.badge-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  white-space: nowrap;
}
.badge-slide img {
	min-height: 100px;
    width: 100%;
    max-width: 143px;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}