.feature .swiper-slide {
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 300ms;
  transform: scale(1);
}
.feature .swiper-slide .img {
  position: relative;
}
.feature .swiper-slide .img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.feature .swiper-slide img {
  display: block;
  width: 100%;
}
.feature .swiper-slide-active, .feature .swiper-slide-duplicate-active {
  transform: scale(1.5);
  z-index: 2;
}
.feature .swiper-slide-active .img::before, .feature .swiper-slide-duplicate-active .img::before {
  content: none;
}
.feature .swiper-pagination {
  position: static;
}
.feature .swiper-button-next,
.feature .swiper-button-prev {
  width: 68px;
  height: 78px;
  background-position: center;
}
.feature .swiper-button-prev {
  background-image: url("../images/swiper-prev.png");
}
.feature .swiper-button-next {
  background-image: url("../images/swiper-next.png");
}

.swiper-pagination-bullet {
  opacity: 1;
  background-color: #e7d3c2;
  border-radius: 0;
  transform: rotate(45deg);
}

.swiper-pagination-bullet-active {
  background-color: #ffdf80;
}/*# sourceMappingURL=swiper.css.map */