/* trusted by global clients */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100%;
  background: #fff;
  position: relative;
}

.marquee-content {
  display: inline-flex;
  animation: marquee 90s linear infinite;
  gap: 60px;
  align-items: center;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 60px;
  padding: 10px;
}

/* Awards version */
.logoList.award .marquee-content {
  display: inline-flex;
  animation: marquee 20s linear infinite;
  gap: 40px;
  align-items: center;
}

.logoList.award .marquee {
  background: none;
}

.logoList.award .logo-item {
  min-width: 80px;
  height: 50px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-90%);
  }
}

/* Responsive improvements for iPad and tablets */
@media screen and (max-width: 1024px) {
  .marquee-content {
    animation-duration: 35s;
    gap: 50px;
  }

  .logo-item {
    min-width: 100px;
    height: 50px;
  }
}

@media screen and (max-width: 768px) {
  .marquee-content {
    animation-duration: 25s;
    gap: 40px;
  }

  .logo-item {
    min-width: 80px;
    height: 40px;
    padding: 8px;
  }
}

/* iPad specific fixes */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .marquee {
    -webkit-overflow-scrolling: touch;
  }

  .marquee-content {
    animation-duration: 40s;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  .logo-item {
    min-width: 110px;
    height: 55px;
  }
}
.sectionEight {
  margin-top: 90px;
  margin-bottom: 80px;
}

.sectionEight .section-title {
  margin-bottom: 60px;
}
/* End trusted by global clients */
