.swiper {
  width: 100%;
  padding-top: 3vh;
  padding-bottom: 3vh;
  gap: 1rem;
}

.swiper-slide {
  width: 35%;
  height: 20rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  filter: blur(0.1rem);
  border-radius: 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.swiper-slide-active {
  filter: blur(0);
}
.swiper-pagination{
  position: relative;
}
.swiper-pagination-bullet{
  width: 1rem;
  height: 1rem;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 0.4rem !important;
}
.swiper-pagination-bullet-active{
  background-color: rgba(255, 255, 255, 1);
}
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}
@media (max-width:991px){
  .swiper-slide {
    width: 80%;
  }
}