.swiper-slide-prev,
.swiper-slide-next + .swiper-slide + .swiper-slide {
  opacity: 0;
}

@media screen and (max-width: 1024px) {
  .swiper-slide-next + .swiper-slide {
    opacity: 0;
  }
}
@media screen and (max-width: 740px) {
  .swiper-slide-next {
    opacity: 0;
  }
}
.swiper-prev,
.swiper-next {
  background: rgb(255, 255, 255);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  z-index: 1;
  overflow: hidden;
}

.swiper-prev:hover,
.swiper-next:hover {
  background: rgba(255, 255, 255, 0.7);
  transition: none;
}

.swiper-prev:after,
.swiper-next:after {
  content: "";
  border-top: solid 7px transparent;
  border-right: solid 10px transparent;
  border-bottom: solid 7px transparent;
  border-left: solid 10px #0099d9;
  position: absolute;
  top: 7px;
  right: -2px;
}

.swiper-prev:after {
  border-top: solid 7px transparent;
  border-right: solid 10px #0099d9;
  border-bottom: solid 7px transparent;
  border-left: solid 10px transparent;
  right: auto;
  left: -2px;
}