@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  animation: marquee 25s linear infinite;
}

.client-box {
  min-width: 180px;
  background-color: #f8fafc;
  padding: 1.5rem;
  border-radius: 0.5rem;
  height: 140px;
}
