.logos {
  width: 100vw;
  background-color: white;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}
.logos::before,
.logos::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 2;
}
.logos::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.logos::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.logos-slide {
  display: flex;
  width: 100%;
  position: relative;
}

.logos-slide-inner {
  display: flex;
  position: relative;
  width: fit-content;
}

.logos-slide img {
  flex-shrink: 0;
  width: auto;
  height: 100%;
  margin-right: 1rem;
}


