/* Override Salient client ticker to be smooth */
.clients-section .clients-inner {
  animation: marquee-scroll 35s linear infinite !important;
  transition: none !important;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Control logo height */
.clients-section .clients-inner img {
  height: 45px !important;
  width: auto !important;
  max-width: none !important;
}