#trust-items-section {
  --trust-item-coun: 3;
}

@keyframes trust-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-slider.marquee-active .trust-track {
  animation: trust-marquee var(--trust-dur, 30s) linear infinite;
}

.trust-slider.marquee-active:hover .trust-track {
  animation-play-state: paused;
}

.trust-slider .trust-clone {
  display: none;
}

.trust-slider.marquee-active .trust-clone {
  display: flex;
}

@media (max-width: 767px) {
  #trust-items-section {
    --trust-colu: 2;
  }
}

@media (max-width: 479px) {
  #trust-items-section {
    --trust-colu: 1;
  }
}