.stage {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.stage .layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slogan {
  position: absolute;
  opacity: 0;
}

.bannerArea {
  overflow: hidden;
}
.bannerArea .bannerBox {
  min-height: 100vh;
  justify-content: center;
  color: #fff;
  padding: 3% 0 5% 0;
}
@media (max-width: 991px) {
  .bannerArea .bannerBox {
    min-height: 0;
    padding: 25% 0 25% 0;
  }
}
.bannerArea .bannerBox h2 {
  font-size: 6rem;
  margin: 3rem 0 2rem 0;
}
@media (max-width: 1300px) {
  .bannerArea .bannerBox h2 {
    font-size: 4.5rem;
  }
}
@media (max-width: 991px) {
  .bannerArea .bannerBox h2 {
    font-size: 2.4rem;
    margin: 25% 0 31% 0;
  }
}
.bannerArea .bannerBox h2 span {
  text-align: right;
  display: block;
}
.bannerArea .bannerBox h2 span::after {
  content: "";
  width: 40%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%) rotate(129deg);
}
.bannerArea .bannerBox h3 {
  font-weight: 800;
  font-size: 6rem;
  text-align: center;
  letter-spacing: 1px;
  padding-left: 35px;
  margin-bottom: 5%;
  text-shadow: 0 0 20px rgba(240, 239, 239, 0.678);
}
@media (max-width: 1300px) {
  .bannerArea .bannerBox h3 {
    font-size: 4.5rem;
  }
}
@media (max-width: 991px) {
  .bannerArea .bannerBox h3 {
    font-size: 3rem;
  }
}
.bannerArea .bannerBox .subTxt {
  text-align: center;
}
.bannerArea .bannerBox .subTxt h4 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  display: inline-block;
  letter-spacing: 1px;
  margin-bottom: 3rem;
}
@media (max-width: 1300px) {
  .bannerArea .bannerBox .subTxt h4 {
    font-size: 1.5rem;
  }
}
@media (max-width: 991px) {
  .bannerArea .bannerBox .subTxt h4 {
    font-size: 1.2rem;
    letter-spacing: 0;
    margin-bottom: 1rem;
  }
}
.bannerArea .bannerBox .subTxt h4::after {
  content: "";
  width: 200%;
  height: 90%;
  background: #d0d521;
  position: absolute;
  left: 105%;
  top: 55%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .bannerArea .bannerBox .subTxt h4::after {
    left: 103%;
  }
}
.bannerArea .bannerBox .subTxt h4::before {
  content: "";
  width: 200%;
  height: 90%;
  background: #d0d521;
  position: absolute;
  right: 105%;
  top: 55%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .bannerArea .bannerBox .subTxt h4::before {
    right: 103%;
  }
}

.shine {
  animation-name: shine-animate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

@keyframes shine-animate {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0;
  }
}
.zoom-loop {
  display: inline-block;
  animation: zoom-in-out 8s ease-in-out infinite;
}
@media (max-width: 991px) {
  .zoom-loop {
    animation: zoom-in-out 6s ease-in-out infinite;
  }
}

@keyframes zoom-in-out {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}/*# sourceMappingURL=style.css.map */