#home-banner .swiper {width: 100%;}
#home-banner .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 285px;
  height: auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
@media(max-width:767px) {#home-banner .swiper-slide {width: 250px;}}
#home-banner .swiper-slide img {
  display: block;
  border-radius: 12px;
  object-fit: cover;
  transition: all .3s ease;
  width: 100%;
  height: 100%;
}
#home-banner .swiper-slide-active img:hover {transform: scale(1.1);}
#home-banner .swiper-slide h3 {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  margin: 0;
  display: none;
  overflow: hidden;
  background: linear-gradient( to top, #cbe3d6, rgba(249, 120, 146, 0));
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  text-transform: capitalize;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(100, 120, 110, 0.3);
  text-align: center;
  transition: all .3s ease;
  padding: 32px 16px 16px 16px;
}
#home-banner .swiper-slide-active h3 {display: initial}
#home-banner .swiper-button-next, #home-banner .swiper-button-prev {
  color: #cbe3d6;
  transition: all .3s ease;
}
#home-banner .swiper-button-next:hover, #home-banner .swiper-button-prev:hover {color: #7ba895;}