.logo_gallery {
  background-color: var(--gray-200);
}
.logo_gallery__swiper {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding-bottom: 2.5rem;
}
.logo_gallery__item {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.logo_gallery__item img {
	width:auto;
  max-height: 8.75rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1000px) {
  .logo_gallery__item img {
    max-height: 7.5rem;
  }
}
@media screen and (max-width: 800px) {
  .logo_gallery__item img {
    max-height: 6.875rem;
  }
}
@media screen and (max-width: 600px) {
  .logo_gallery__item img {
    max-height: 6.25rem;
  }
}
@media screen and (max-width: 400px) {
  .logo_gallery__item img {
    max-height: 5rem;
  }
}