/* --- Slider (swiper) --- */
.im-swiper {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
.im-swiper img {
  width: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
  margin-bottom: 0;
  max-height: 200px;
}
.swiper-pagination {
  position: relative;
  margin-top: 10px;
  text-align: center;
}
.swiper-pagination-bullet {
  background: #aaa;
  opacity: 0.6;
  transition: opacity .2s, background .2s;
}
.swiper-pagination-bullet-active {
  background: #333;
  opacity: 1;
}
