.home-client-logos-section {
  padding: 70px 0;
  overflow: hidden;
}

.home-client-logos-section .section-title {
  margin: 0 0 24px;
  font-family: Satoshi, sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 72px;
  color: var(--brand-white);
}

.home-client-logos-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  contain: layout style paint;
}

.home-client-logos-track {
  display: flex;
  width: max-content;
  animation: marquee-infinite 24s linear infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.home-client-logos-slider:hover .home-client-logos-track {
  animation-play-state: paused;
}

@keyframes marquee-infinite {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(calc(-100% / 3), 0, 0);
  }
}

.home-client-logos-list {
  display: flex;
  flex-shrink: 0;
  gap: 24px;
  align-items: center;
  padding: 0 24px 0 0;
  margin: 0;
  list-style: none;
  -webkit-font-smoothing: antialiased;
}

.home-client-logos-item {
  display: flex;
  flex: 0 0 228px;
  align-items: center;
  justify-content: center;
  width: 228px;
  height: 96px;
}

.home-client-logos-item-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.home-client-logos-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: all 0.3s ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

@media screen and (max-width: 1360px) {
  .home-client-logos-section .section-title {
    font-size: var(--fluid-40-64);
    line-height: 1.125;
  }
}

@media (max-width: 768px) {
  .home-client-logos-list {
    gap: 12px;
    padding-right: 12px;
  }

  .home-client-logos-track {
    animation-duration: 20s;
  }

  .home-client-logos-item {
    flex: 0 0 114px;
    width: 114px;
    height: 48px;
  }
}

@media screen and (max-width: 560px) {
  .home-client-logos-section {
    padding: 40px 0;
  }

  .home-client-logos-section .section-title {
    font-size: 40px;
    line-height: 1.2;
  }
}
