/* trusted by global clients */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100%;
  background: #fff;
}
.marquee-content {
  display: inline-flex;
  animation: marquee 18s linear infinite;
  gap: 40px;
  align-items: center;
}
.logoList.award .marquee-content {
  display: inline-flex;
  animation: marquee 7s linear infinite;
  gap: 0px;
  align-items: center;
}

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

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.sectionEight {
  margin-top: 90px;
  margin-bottom: 80px;
}

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