@charset "UTF-8";
.rswiper-container {
  max-width: 40rem;
  height: 32rem;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 48em) {
  .rswiper-container {
    max-width: 80rem;
  }
}
@media screen and (min-width: 75em) {
  .rswiper-container {
    max-width: 120rem;
  }
}
.rswiper-container .swiper-slide-content {
  height: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}
.rswiper-container .swiper-slide-content .related-img-container {
  height: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rswiper-container .swiper-slide-content p {
  text-align: center;
  color: #5c657a;
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  font-weight: 300;
}
.rswiper-container .swiper-button-prev::after {
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.4rem;
  background-image: url(../../images/icons/arrow-left.svg);
  font-family: unset;
  filter: invert(39%) sepia(5%) saturate(2089%) hue-rotate(184deg) brightness(93%) contrast(82%);
}
.rswiper-container .swiper-button-next::after {
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.4rem;
  background-image: url(../../images/icons/arrow-right.svg);
  font-family: unset;
  filter: invert(39%) sepia(5%) saturate(2089%) hue-rotate(184deg) brightness(93%) contrast(82%);
}
.rswiper-container .swiper-pagination-bullets {
  display: none;
}