.home_galleries {
  overflow: hidden;
  padding: 3rem 0;
  background-image: linear-gradient(to bottom, #fff, #eefcff);
}

.home_galleries .head {
  text-align: center;
}

.home_galleries .head p {
  width: 55%;
  margin: 1.875rem auto 0;
  padding-bottom: 0.3125rem;
  color: gray;
  font-size: 1.125rem;
}

.home_galleries .home_galleries_swiper {
  padding-top: 2.5rem;
  max-width: 33.125rem;
  margin: 0 auto;
}

.home_galleries .home_galleries_swiper .swiper-slide {
  text-align: center;
  transition: all 0.3s;
  transform: scale(0.732);
}

.home_galleries .home_galleries_swiper .swiper-slide.swiper-slide-active {
  transform: scale(1);
}

.home_galleries .home_galleries_swiper .swiper-slide .img {
  width: 100%;
  height: 26.3125rem;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  border-radius: 1.875rem;
}

.home_galleries .home_galleries_swiper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home_galleries .home_galleries_swiper .swiper-slide h3 {
  padding-top: 2.1875rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #1a2a45;
}

.swiper-container {
    overflow: visible;
}

@media screen and (max-width: 786px) {
  .home_galleries .head p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    width: 100%;
    margin: 1rem 0 0;
  }

  .home_galleries .home_galleries_swiper {
    padding-top: 1.875rem;
  }

  .home_galleries .home_galleries_swiper .swiper-slide .img {
    height: 16rem;
    border-radius: 1rem;
  }

  .home_galleries .home_galleries_swiper .swiper-slide h3 {
    font-size: 1rem;
    line-height: 1.5;
    padding-top: 1rem;
  }
}

@media screen and (min-width: 786px) and (max-width: 1200px) {
  .home_galleries .head p {
    width: 80%;
  }
}