.top-slider{
  position:relative;
  z-index:20;
  width: calc(100% - 30px);
  margin: 2rem auto;
  height:180px;
  max-width:1320px;
}
.top-slider .swiper {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.top-slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: red;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.top-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width:768px) {
  .top-slider{
    height:unset;
  }
}
@media (min-width:992px) {
  .top-slider{
    width: calc(100% - 8rem);
  }
}