.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-nav-area {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 15px;
}

.swiper-pagination {
  position: relative;
  padding: 0 30px;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #FFFDF2;
  opacity: 1;
  border: 1px solid #DE5460;
}
.swiper-pagination-bullet:not(:first-child) {
  margin-left: 10px;
}
.swiper-pagination-bullet-active {
  background: #DE5460;
}

.swiper-button-next, .swiper-button-prev {
  position: relative;
  width: 21px;
  height: 21px;
  background: #51331D;
  border-radius: 50%;
  z-index: 11;
}
.swiper-button-prev::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translateY(-50%) rotate(-45deg);
}
.swiper-button-next::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 40%;
  transform: translateY(-50%) rotate(45deg);
}
