/* [project]/src/styles/ClientsSection.css [client] (css) */
.clients-section {
  text-align: center;
  padding: 35px;
}

.clients-section h2 {
  color: #fff;
  margin: 0 0 35px;
  font-size: 42px;
  font-weight: 700;
  line-height: 42px;
}

.clients-logos-marquee {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.clients-logos-track {
  gap: 30px;
  width: max-content;
  animation: 20s linear infinite scrollMarquee;
  display: flex;
}

.clients-logos-track:hover {
  animation-play-state: paused;
}

.client-logo {
  flex: none;
  justify-content: center;
  align-items: center;
  transition: transform .3s;
  display: flex;
}

.client-logo img {
  object-fit: contain;
  border-radius: 4px;
  width: auto;
  height: 65px;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

@media (max-width: 768px) {
  .client-logo {
    min-width: 140px;
  }

  .clients-section h2 {
    font-size: 28px;
    line-height: 1.3;
  }
}

/*# sourceMappingURL=src_styles_ClientsSection_css_65f1660e._.single.css.map*/