.section-brands-mosaic {
  background: var(--cf-color-white);
  --gradient-color: var(--cf-color-white);
}

.section-brands-mosaic__header {
  margin: 0 auto 2rem;
  text-align: center;
  max-width: var(--container-width);
}

@media screen and (min-width: 600px) {
  .section-brands-mosaic__header {
    margin-bottom: 3rem;
  }
}

.section-brands-mosaic__title {
  margin: 0;
  color: var(--cf-color-purple);
}

.section-brands-mosaic__wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 1600px;
}

.section-brands-mosaic__wrapper::before,
.section-brands-mosaic__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 20%;
}

.section-brands-mosaic__wrapper::before {
  left: 0;
  z-index: 1;
  background: linear-gradient(-90deg, rgba(255,255,255,0) 0%, var(--gradient-color) 100%);
}

.section-brands-mosaic__wrapper::after {
  right: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, var(--gradient-color) 100%);
}

.section-brands-mosaic__marquee {
  position: relative;
  overflow: hidden;
}

.section-brands-mosaic__stage {
  position: relative;
  display: flex;
}

.section-brands-mosaic__row {
  display: flex;
  animation: 25s linear 0s infinite normal none paused pxUvy6;
}

.section-brands-mosaic__brand {
  margin: 0 2rem;
}

.section-brands-mosaic__brand img {
  display: block;
  height: 3.5rem;
  width: auto;
  max-width: none;
}

@keyframes pxUvy6 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}