.__trusted {
  background: radial-gradient(circle, #ebf8ff 0%, var(--bs-white) 100%);
  padding: 68px 5rem;
  width: 100%;
}

.__trusted__header__title {
  line-height: var(--leading-large);
   
  text-align: center;
}
.__trusted__header__description {
  margin-top: 1rem;
  text-align: center;
  color: var(--text-light-gray);
}

.__trusted__logo {
  margin-top: 2rem;
  text-align: center;
}

.__trusted__logo__list {
  display: flex;
  gap: 4rem;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}
.__trusted__logo__item {
  flex-shrink: 0;
}

.__trusted__logo__item img {
  max-width: 224px;
  max-height: 82px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.marquee-container {
  position: relative;
  overflow: hidden;
  height: 100px;
  margin-bottom: 20px;
}

.marquee,
.marquee1 {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.marquee.clone {
  visibility: visible;
}

/* Pause on hover để test mượt */
.marquee-container:hover .__trusted__logo__list {
  animation-play-state: paused;
}
/* Responsive */
@media (max-width: 1439px) {
  .marquee-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
  }

  .__trusted__logo__list {
    gap: 1.5rem;
  }

  .__trusted__logo__item img {
    max-width: 150px;
    height: auto;
  }
}
@media (max-width: 769px) {
  .__trusted {
    padding: 48px 0 0 0;
  }
  .__trusted__header__title {
    line-height: var(--leading-lg);
  }
  .__trusted__logo {
    margin-top: 24px;
  }
  .__trusted__logo__list {
    gap: 24px;
  }
  .__trusted__logo__item img {
    max-width: 131px;
    max-height: 48px;
  }
  .marquee-container{
    margin: 0 18px 0 18px;
    height: 70px;
  } 
}
