/* SCSS file content */
.home-marquee {
  height: 4.9375rem;
  pointer-events: none;
}
@media (min-width: 992px) {
  .home-marquee {
    height: 8.3125rem;
  }
}
.home-marquee .brand-wrapper {
  width: 4rem;
  height: 2.3125rem;
}
@media (min-width: 992px) {
  .home-marquee .brand-wrapper {
    width: 5.75rem;
    height: 3.3125rem;
  }
}
.home-marquee .brand-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.home-marquee .swiper-slide {
  display: -ms-grid;
  display: grid;
  place-items: center;
}
.home-marquee .marqueeSwiper {
  position: relative;
}
@media (max-width: 991.98px) {
  .home-marquee .marqueeSwiper {
    width: 100vw;
    -webkit-margin-start: 50%;
            margin-inline-start: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.home-marquee .marqueeSwiper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6.25rem;
  height: 100%;
  z-index: 2;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), color-stop(26%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 26%, rgba(255, 255, 255, 0) 100%);
}
.home-marquee .marqueeSwiper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6.25rem;
  height: 100%;
  z-index: 2;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(74%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 74%, rgb(255, 255, 255) 100%);
}