/* Larger screens can tighten the width a bit */
@media (min-width: 992px){
  .tmon{ padding-left: 24px; padding-right: 24px; }
}
/* Logo Scroller Styles */
.logo-scroller {
  height: 150px;
  background: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}

.logo-track {
  display: flex;
  gap: 50px;              /* spacing between logos */
  animation: scroll 40s linear infinite;
}

.logo-track img {
  height: 85px;
  flex-shrink: 0;
}

/* Infinite scrolling animation */
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}