.trustbar-section {
  width: 100%;
  height: auto;
  padding: 96px 0px;
}
@media(max-width: 768px) {
  .trustbar-section {
    padding: 64px 0px;
  }
}
.trustbar-wrapper {
  width: 100%;
  height: auto;
  padding: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trustbar-wrapper h5 {
  margin-bottom: 32px;
}
.trustbar-slider {
  position: relative;
  width: 100%;
  height: auto;
  margin: auto;
  overflow: hidden;
}
.trustbar-slide-track {
  display: flex;
  width: calc(200px * 18);
  animation: scroll 40s linear infinite;
}
.trustbar-slide-track:hover {
  animation-play-state: paused;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 9));
  }
}
.slide {
  width: 200px;
  height: 40px;
  display: flex;
  align-items: center;
  perspective: 100px;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}