.manufacturers-gallery .image-row > div {
  padding: 5px;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.manufacturers-gallery .brand-link {
  border: 1px solid var(--gray-color-40);
  padding: 3px 12px;
  border-radius: 10px;
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.manufacturers-gallery .brand-link:hover {
  background: white;
  text-decoration: none;
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 3px 2px #fcc824;
}

.manufacturers-gallery .brand-link img {
  filter: grayscale(100%);
  max-width: 100%;
  max-height: 100%;
  opacity: 0.6;
  object-fit: cover;
}

.manufacturers-gallery .brand-link:hover img {
  filter: none;
  opacity: 1 !important;
}

/* xs and below */
@media (max-width: 576px) {
  .manufacturers-gallery .brand-link {
    max-width: 85%;
  }
}
