section.trusted-by {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
}
section.trusted-by h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #a5121a;
}
.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 100px;
}
.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  padding-left: 20px;
}
.carousel-item {
  flex: 0 0 auto;
  width: 160px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: grayscale(1);
  opacity: .6;
  transition: filter .3s, opacity .3s;
}
.carousel-item:hover {
  filter: grayscale(0);
  opacity: 1;
}
.carousel-item figure {
  margin: 0;
  width: 100%;
  height: 100%;
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  section.trusted-by h2 {
    font-size: 1.5rem;
    text-align: left;
  }
  .carousel-container {
    height: 80px;
  }
  .carousel-item {
    width: 100px;
    height: 80px;
  }
  .carousel-track {
    gap: 15px;
    padding-left: 15px;
  }
}
@media (max-width: 480px) {
  .carousel-container {
    height: 70px;
  }
  .carousel-item {
    width: 80px;
    height: 70px;
  }
  .carousel-track {
    gap: 10px;
    padding-left: 10px;
  }

  section.trusted-by h2 {
    font-size: 1.2rem;
    text-align: left;
  }
  .carousel-item img {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
  touch-action: manipulation;
}

}
