.custom-carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  white-space: nowrap;
  box-sizing: border-box;
}

.custom-carousel-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation-name: custom-carousel-scroll;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.custom-carousel-item{
  display: inline-flex;
  align-items: center;
  margin-right: 30px;
}

.custom-carousel-text{
  display: inline-block;
  padding: 0 40px;
  font-size: 1rem;
}

.custom-carousel-logo{
  height: 40px;
  max-height: 60px;
  object-fit: contain;
  display: block;
}

@keyframes custom-carousel-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.carousel-logo-row{ margin-bottom:8px; }