@keyframes LefttoRight {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.rotating-logos {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 10px 0px;
}

.logo_items {
  display: inline-block;
  white-space: nowrap;
  animation: LefttoRight 20s linear infinite;
  animation-play-state: running;
}

.logo_items img{
  width: 9rem;
  height: 9rem;
  object-fit: contain;
  margin: 0 50px;
  transition: transform 0.3s ease;
}

.divider-thin {
  width: 60px;
  height: 2px;
  margin: 0;
  display: inline-block;
  background: rgba(255, 255, 255, .15);
}