.changing-logos-container {
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  border: 1px solid rgba(245, 245, 245, 0.216);
  border-radius: 3px;
  overflow-x: hidden !important;
}

.changing-logos-section {
  align-items: center;
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden !important;
  height: auto;
}

.changing-logos {
  flex: 0 0 100%;
  display: flex;
  align-items: center !important;
  justify-content: flex-start;
  animation: moveLogos 80s linear infinite;
}

.changing-logos a {
  cursor: pointer;
  flex: 0 0 auto;
  margin-right: 42px;
}

.changing-logos a img {
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

@keyframes moveLogos {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
