@charset "UTF-8";
/**
 * Bootstrap 5.3 – Variabili SCSS di base
 * @see https://getbootstrap.com/docs/5.3/customize/sass/
 */
/* ----------------------------------------------------------
 * SPACING
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * COLOR SYSTEM
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * BODY
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * TYPOGRAPHY
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * LINK
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * BUTTONS
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * BORDER RADIUS
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * ACCORDION
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * TABS
 * ---------------------------------------------------------- */
.block_slider-brands .brand-card .brand-image {
  overflow: hidden;
  position: relative;
}
.block_slider-brands .brand-card .brand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  transition: 0.3s all ease-out;
}
.block_slider-brands .brand-card .brand-image:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #c6026c;
  opacity: 0;
  transition: 0.3s all ease-out;
}
.block_slider-brands .brand-card .brand-image:hover img {
  transform: scale(1.05);
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.block_slider-brands .brand-card .brand-image:hover:after {
  opacity: 0.5;
}