.brand-slide {
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
  padding: 2.625rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
  background-color: #ffffff;
  position: relative;
}
.brand-slide::before {
  content: "";
  height: 100%;
  width: 25.75rem;
  background: linear-gradient(90deg, #fff 20%, transparent);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.brand-slide::after {
  content: "";
  height: 100%;
  width: 25.75rem;
  background: linear-gradient(-90deg, #fff 20%, transparent);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.brand-slide .slide {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 5.125rem;
  opacity: 0.5;
  mix-blend-mode: luminosity;
}
.brand-slide .slide img {
  width: 9.0625rem;
  height: 9.0625rem;
}
