.hp-marquee {
  --tw-blue: #3E5EE2;
  --tw-text: #190750;
  --tw-text-muted: #6B6480;
  --tw-paper: #F5F6FE;
  --tw-border: rgba(25, 7, 80, 0.08);
  background: var(--tw-paper);
  padding: 48px 0 32px;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  color: var(--tw-text);
}
.hp-marquee *, .hp-marquee *::before, .hp-marquee *::after {
  box-sizing: border-box;
}
.hp-marquee .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.hp-marquee .marquee-label {
  text-align: center;
  color: var(--tw-text);
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0 0 28px;
}
.hp-marquee .marquee-label strong {
  color: var(--tw-text);
  font-weight: 700;
}
.hp-marquee .marquee-label strong .accent {
  color: var(--tw-blue);
}
.hp-marquee .marquee {
  display: flex;
  gap: 0;
  overflow: hidden;
  background: var(--tw-paper);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.hp-marquee .marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  animation: hp-marquee-scroll 60s linear infinite;
  flex-shrink: 0;
  padding-right: 56px;
}
.hp-marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes hp-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.hp-marquee .logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 83px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: opacity 0.2s, filter 0.2s;
}
.hp-marquee .logo-pill img {
  height: 83px;
  width: auto;
  max-width: 276px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .hp-marquee .marquee-track {
    animation: none;
  }
}
@media (max-width: 760px) {
  .hp-marquee {
    padding: 40px 0 28px;
  }
  .hp-marquee .marquee-label {
    font-size: 15px;
    padding: 0 24px;
  }
  .hp-marquee .logo-pill {
    height: 64px;
  }
  .hp-marquee .logo-pill img {
    height: 64px;
    max-width: 200px;
  }
  .hp-marquee .marquee-track {
    gap: 40px;
    padding-right: 40px;
  }
}
