.PartnersItem {
  position: relative;
}

.PartnersItem::before {
  content: '';
  display: block;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(50% 50% at 50% 50%, #F8790A 0%, rgba(248, 121, 10, 0) 100%);
  width: 149%;
  height: 150%;
  transition: var(--animationBase);
  z-index: -1;
  overflow: visible;
}

.PartnersItem[href]:hover img {
  filter: none;
}

.PartnersItem[href]:hover::before {
  visibility: visible;
  opacity: 1;
}

.PartnersItem img {
  transition: var(--animationBase);
  filter: grayscale(100%) brightness(1) invert(1);
  z-index: var(--layerNegativeZIndex);
}

/*# sourceMappingURL=partners-item.min.css.map */
