.trust-indicators .marquee {
  animation: movingSlider 30s linear infinite;
  flex-shrink: 0;
}

.trust-indicators .marquee-wrapper {
  overflow: hidden;
  display: flex;
}

.trust-indicators .marquee-wrapper:hover .marquee {
  animation-play-state: paused;
}

.trust-indicators .marquee-wrapper .icon img{
  max-width: 23px;
  max-height: 23px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes movingSlider {
  to {
    transform: translate(-100%);
  }
}