.swiper {
  position: relative;
  width: 100%;
  height: 200px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  right: 50%;
  bottom: 5px !important;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
  display: flex;
  align-items: center;
}

.single-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-image img,
.swiper-slide img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 200px;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  color: rgb(255, 255, 255);
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  color: rgb(255, 255, 255);
}

#homeslider_photos .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}