.logo-wrapper{
  background: #171B25;
  padding: 80px 0;
}

.marquee {
  overflow: hidden;
  position: relative;
  /*   -webkit-mask-image: linear-gradient(var(--mask-direction, to right), rgba(0, 0, 0, 0), black 10%, black 90%, rgba(0, 0, 0, 0));
  mask-image: linear-gradient(var(--mask-direction, to right), rgba(0, 0, 0, 0), black 10%, black 90%, rgba(0, 0, 0, 0)); */
}

.marquee__ctn {
  display: flex;
  width: 100%;
}

.marquee__track {
  display: flex;
}

@supports (-webkit-touch-callout: none) {
  .marquee__ctn {
    transform: translate3d(0, 0, 0) scale(1);
    perspective: 1px;
  }
}
.marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 180px;
  -webkit-margin-end: 3rem;
  margin-inline-end: 3rem;
}
.marquee__item img {
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 0px;
}