.flower-spirit {
  position: relative;
  height: 1436px;
  /* top: 155px; */
}

.section5_title {
  width: 389px;
  height: 145px;
  background: url(../image/section5/section5_title.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  /* margin-left: -200px; */
}


.section5 .mySwiper5,
.section5 .swiper-wrapper,
.section5 .swiper-slide {
  width: 100%;
  height: 100%;
}

.section5 .swiper-slide {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.section5 .swiper-slide .world-text1 {
  width: 720px;
  height: 515px;
  background: url(../image/section5/world-text1.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 400px;
  z-index: 2;
}

.section5 .swiper-slide .world-text2 {
  width: 720px;
  height: 515px;
  background: url(../image/section5/world-text2.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 400px;
  z-index: 2;
}

.section5 .swiper-slide .world-text3 {
  width: 720px;
  height: 515px;
  background: url(../image/section5/world-text3.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 400px;
  z-index: 2;
}

.section5 .swiper-slide .world-text1,
.section5 .swiper-slide .world-text2,
.section5 .swiper-slide .world-text3 {
  opacity: 0;
  transform: translateY(60px);
  transition: none;
}


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

.section5 .btn-line {
  width: 559px;
  height: 2px;
  background: url(../image/section5/btn-line.png) no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: 390px;
  left: 80px;
  z-index: 2;
}

.section5 .swiper-pagination {
  position: relative;
  width: 100%;
  bottom: 300px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}



.section5 .swiper-pagination-bullet,
.section5 .swiper-pagination-bullet-active {
position: absolute;
border-radius: 0%;
opacity: 1;
}

.section5 .swiper-pagination-bullet:nth-of-type(1) {
  width: 62px;
  height: 52px;
  background: url(../image/section5/btn1.png) no-repeat;
  background-size: 100%;
  left: 140px;
  bottom: 50px;
}
.section5 .swiper-pagination-bullet:nth-of-type(2) {
  width: 62px;
  height: 52px;
  background: url(../image/section5/btn2.png) no-repeat;
  background-size: 100%;
  left: 330px;
  bottom: 50px;
}
.section5 .swiper-pagination-bullet:nth-of-type(3) {
  width: 30px;
  height: 52px;
  background: url(../image/section5/btn3.png) no-repeat;
  background-size: 100%;
  left: 520px;
  bottom: 50px;
}


.section5 .swiper-pagination-bullet-active:nth-of-type(1) {
  width: 73px;
  height: 66px;
  background: url(../image/section5/btn1-active.png) no-repeat;
  background-size: 100%;
  left: 135px;
  bottom: 45px;

}
.section5 .swiper-pagination-bullet-active:nth-of-type(2) {
  width: 72px;
  height: 66px;
  background: url(../image/section5/btn2-active.png) no-repeat;
  background-size: 100%;
  left: 325px;
  bottom: 45px;

}
.section5 .swiper-pagination-bullet-active:nth-of-type(3) {
  width: 40px;
  height: 66px;
  background: url(../image/section5/btn3-active.png) no-repeat;
  background-size: 100%;
  left: 515px;
  bottom: 45px;
}

 .pagesetion5-button-next,
 .pagesetion5-button-prev {
  z-index: 2;
}

 .pagesetion5-button-next {
  position: absolute;
  width: 74px;
  height: 77px;
  background: url(../image/section5/pagination_next.png) no-repeat;
  background-size: 100%;
  bottom: 352px;
  left: 645px;
  cursor: pointer;
}

.pagesetion5-button-prev {
  position: absolute;
  width: 74px;
  height: 77px;
  background: url(../image/section5/pagination_prev.png) no-repeat;
  background-size: 100%;
  bottom: 352px;
  cursor: pointer;
}

@keyframes scaleIn {
  0% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.section5 .swiper-slide img.scale-in-animate {
  animation: scaleIn 3s cubic-bezier(0.4,0,0.2,1);
  animation-fill-mode: backwards;
}

@keyframes textFadeUpIn {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textFadeUpOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(80px);
  }
}

.section5 .swiper-slide .world-text1.text-fade-in,
.section5 .swiper-slide .world-text2.text-fade-in,
.section5 .swiper-slide .world-text3.text-fade-in {
  animation: textFadeUpIn 1s cubic-bezier(0.4,0,0.2,1) forwards;
  opacity: 1;
}
.section5 .swiper-slide .world-text1.text-fade-out,
.section5 .swiper-slide .world-text2.text-fade-out,
.section5 .swiper-slide .world-text3.text-fade-out {
  animation: textFadeUpOut 1s cubic-bezier(0.4,0,0.2,1);
  opacity: 0;
}