.mpx-manufacturers {
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
.mpx-manufacturers .mpx-manufacturers__item {
  background-color: var(--bs-white);
  border-radius: 10px;
}
.mpx-manufacturers .mpx-manufacturers__item img {
  max-height: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 70px;
}

@media (min-width: 768px) {
  .mpx-manufacturers {
    grid-template-columns: repeat(3, 1fr);
  }
  .mpx-manufacturers .mpx-manufacturers__item img {
    max-height: 70px;
    max-width: 130px;
  }
}
@media (min-width: 1300px) {
  .mpx-manufacturers {
    grid-template-columns: repeat(4, 1fr);
  }
}