.swiper {
  width: 90%;
  height: auto;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  height: 390px;
  border-radius: 10px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.swiper-slide:nth-child(2n) {
  width: 60%;
}

.swiper-slide:nth-child(3n) {
  width: 40%;
}
@media (max-width: 500px) {
  .swiper {
    max-width: 300px;
    height: auto;
  }
}
@media (min-width: 501px) and (max-width: 883px) {
  .swiper {
    max-width: 600px;
  }
}
@media (min-width: 884px) and (max-width: 1099px) {
  .swiper {
    max-width: 900px
  }
}
@media (min-width: 1100px){
  .swiper {
    max-width: 1300px
  }
}