.swiper {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
  transition-timing-function: linear !important; /* takes away ease-in-out effect */
}

.swiper-slide {
  flex: 0 0 25%;
  max-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .swiper-slide {flex: 0 0 50%}
}

.swiper-slide img {
  max-height: 60px;
  max-width: 180px;
  width: auto;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .swiper-slide img {
    max-height: 60px;
    max-width: 130px;
    width: auto;
    height: auto;
    display: block;
  }
}

.swiper-row.swiper-row-top {
  margin-bottom: 80px;
}

