@charset "UTF-8";
/* CSS Document */

.swiper {
        width: 100%;
        height: 720px;
      }

      .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        background-size: cover;
        background-position: center;
        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
      }

      .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
.swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}
.swiper-slide a h2 {
  display: block;
  height: 65px;
  line-height: 65px;
  color: #F2869B;
  background-color: #FFF;
  padding-right: 30px;
  padding-left: 30px;
  left: 0;
  top:380px;
  border-radius: 0px 30px 30px 0px;
  position: absolute;
}


.swiper2 {
      width: 100%;
      height: 100%;
    }

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

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

.swiper-button-next,
.swiper-button-prev {
  color: #000; 
  position: absolute;
  z-index: 9999;
  width: 56px;
  height: 80px;
  background-size: 100% auto;
  margin-top: -40px;
}
.swiper-button-next {
  background-image: url("../img/next.png");
  right: 30px;
}
.swiper-button-prev {
  background-image: url("../img/pre.png");
  left: 30px;
}

@media screen and (max-width: 767px) {
  .swiper {
        width: 100%;
        height: 400px;
    position: relative;
      }
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

}