#catalogGallery {
  display: flex;
  flex-wrap: wrap;
}
#catalogGallery .galleryLink {
  display: block;
  flex-basis: calc(100% / 3 - 14px);
  margin: 7px;
  max-height: 160px;
}
#catalogGallery .galleryLink .galleryImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0;
  float: none;
}
@media screen and (max-width: 991px) {
  #catalogGallery .galleryLink {
    max-height: 120px;
  }
}
@media (max-width:600px) {
  #catalogGallery .galleryLink {
    flex-basis: calc(100% / 2 - 14px);
  }
}
