.brands-carousel .swiper {
  padding-bottom: 21px;
}
.brands-carousel .swiper .swiper-slide > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  height: 40px;
  border-radius: 8px;
  padding: 0 15px;
}
@media screen and (min-width: 1024px) {
  .brands-carousel .swiper .swiper-slide > a {
    height: 82px;
    padding: 0 24px;
    border-radius: 14px;
  }
}
.brands-carousel .swiper .swiper-slide > a span img {
  max-width: 100%;
  max-height: 30px;
  display: block;
  filter: grayscale(1);
  transition: var(--transition-all-fast);
}
.brands-carousel .swiper .swiper-slide > a:hover span img {
  filter: grayscale(0);
}