body {
  font-family: "Montserrat", sans-serif;
  overflow   : hidden;
}

@keyframes textAnm {

  0%,
  50%,
  100% {
    transform: scale(1);
    opacity  : 1;
  }

  25%,
  75% {
    transform: scale(0.85);
    opacity  : 0.3;
  }
}

video {
  height       : 100vh;
  width        : auto;
  margin       : 0 auto;
  max-width    : 100vw;
  -o-object-fit: contain;
  object-fit   : contain;
}

video.mobi {
  display: none;
}

@media (max-width: 769px) {
  video {
    display: none;
  }

  video.mobi {
    display: block !important;
  }
}

.video {
  background: #fff7e1;
  overflow  : hidden;
}

.videoPlay {
  position: relative;
  width   : -moz-max-content;
  width   : max-content;
  margin  : 0 auto;
}

.textAnm {
  animation: textAnm 3s infinite;
}

.txt {
  position      : absolute;
  left          : calc(50% + 2vw);
  top           : calc(50% - 15vh);
  transform     : translate(-50%, -50%);
  pointer-events: none;
  opacity       : 0;
  transition    : all 0.3s ease-in-out;
}

.txt .time {
  font-size  : 3.6vw;
  font-weight: 700;
  text-align : center;
  line-height: 1;
  color      : #e43e30;
}

.txt .title {
  text-align    : center;
  color         : #e43e30;
  font-size     : 3vw;
  text-transform: uppercase;
  font-weight   : 700;
}

.txt .des {
  text-align    : center;
  color         : #e43e30;
  text-transform: uppercase;
  font-size     : 1.9vw;
}

.txt.active {
  pointer-events: auto;
  opacity       : 1;
}

@media (max-width: 769px) {
  .txt {
    top: calc(50% - 10vh);
  }

  .txt .time {
    font-size: 8vw;
  }

  .txt .des {
    font-size: 3vw;
  }

  .txt .title {
    width    : -moz-max-content;
    width    : max-content;
    max-width: 100%;
    margin   : 0 auto;
    font-size: 4.5vw;
  }
}

@keyframes rotateAndZoom {
  0% {
    transform: scale(0.6) rotate(0deg);
  }

  50% {
    transform: scale(1) rotate(180deg);
  }

  100% {
    transform: scale(0.6) rotate(360deg);
  }
}

body {
  margin  : 0 !important;
  overflow: hidden;
}

button {
  position  : absolute;
  background: transparent;
  border    : none;
  cursor    : pointer;
  transform : translate(-50%, -50%);
}

button .--icon {
  position       : relative;
  display        : flex;
  justify-content: center;
  width          : 70px;
  height         : 70px;
  align-items    : center;
}

button .--icon img {
  width : 50px;
  height: 50px;
}

button .--icon .img1 {
  transition: all 0.3s ease-in-out;
}

button .--icon .img2 {
  position          : absolute;
  top               : 50%;
  left              : 50%;
  transform         : translate(-50%, -50%);
  opacity           : 0;
  -o-object-position: top;
  object-position   : top;
  transition        : all 0.3s ease-in-out;
  z-index           : 1;
}

button:hover .--icon .img1 {
  opacity: 0;
}

button:hover .--icon .img2 {
  transform: translate(-50%, -50%) scale(1.4);
  opacity  : 1;
  width    : 70px;
  height   : 70px;
}

button.btn-1 {
  top           : calc(50% - 23vh);
  left          : calc(50% + 0vw);
  display       : flex;
  flex-flow     : column;
  text-align    : center;
  font-size     : 30px;
  color         : #fdd300;
  text-transform: uppercase;
  align-items   : center;
  transition    : all 0.3s ease-in-out;
}

button.btn-1.hide {
  opacity       : 0;
  pointer-events: none;
}

button.btn-2 {
  top           : calc(50% + 5vh);
  left          : 75%;
  opacity       : 0;
  pointer-events: none;
  display       : flex;
  flex-flow     : column;
  text-align    : center;
  font-size     : 30px;
  color         : #3796fa;
  text-transform: uppercase;
  align-items   : center;
  transition    : all 0.3s ease-in-out;
}

button.btn-2.active {
  opacity       : 1;
  pointer-events: auto;
}

button.btn-2:hover .--icon .img2 {
  transform: translate(-50%, -50%);
}

button.btn-3 {
  top           : calc(50% - 9vh);
  left          : calc(50% + 1.5vw);
  opacity       : 0;
  pointer-events: none;
  display       : flex;
  flex-flow     : column;
  text-align    : center;
  font-size     : 30px;
  color         : #fdd300;
  text-transform: uppercase;
  transition    : all 0.3s ease-in-out;
  align-items   : center;
}

button.btn-3.active {
  opacity       : 1;
  pointer-events: auto;
}

@media (max-width: 769px) {
  button.btn-1 {
    font-size: 20px;
    top      : calc(50% - 10vh);
  }

  button .--img img {
    width : 40px;
    height: 40px;
  }

  button.btn-2 {
    width    : -moz-max-content;
    width    : max-content;
    font-size: 20px;
    top      : calc(50% - 3vh);
    left     : 52%;
  }

  button.btn-3 {
    top      : calc(50% - 3vh);
    font-size: 20px;
  }
}

.btn-4,
.btn-5 {
  position       : relative;
  width          : 125px;
  display        : flex;
  align-items    : center;
  justify-content: center;
  transform      : none;
  flex           : 0 0 auto;
  cursor         : pointer;
  transition     : all 0.3s ease-in-out;
}

.btn-4 img,
.btn-5 img {
  width: 125px;
  flex : 0 0 auto;
}

.btn-4 .img1,
.btn-5 .img1 {
  width: 100px;
}

.btn-4 .img2,
.btn-5 .img2 {
  position  : absolute;
  left      : 50%;
  transform : translate(-50%, -15px) scale(0);
  top       : 0;
  opacity   : 0;
  transition: all 0.5s ease-in-out;
}

.btn-4 .img1,
.btn-5 .img1 {
  transition: all 0.5s ease-in-out;
}

.btn-4:hover .img2,
.btn-5:hover .img2 {
  opacity  : 1;
  transform: translate(-50%, -15px) scale(1);
}

.btn-4:hover .img1,
.btn-5:hover .img1 {
  opacity  : 0;
  transform: scale(0);
}

@media (max-width: 769px) {

  .btn-4,
  .btn-5 {
    padding: 0;
    width  : -moz-max-content;
    width  : max-content;
  }

  .btn-4 img,
  .btn-5 img {
    width: 100px;
  }
}

.fireflycontainer {
  opacity       : 0;
  position      : absolute;
  width         : 100px;
  height        : 100px;
  transform     : translate(-50%, -50%);
  pointer-events: none;
  transition    : all 0.3s ease-in-out;
}

.fireflycontainer.option1 {
  top : calc(50% + 0vh);
  left: calc(50% - 15vw);
}

.fireflycontainer.option2 {
  top : calc(50% + 0vh);
  left: calc(50% + 15vw);
}

.fireflycontainer.active {
  opacity: 1;
}

@media (max-width: 769px) {
  .fireflycontainer.option1 {
    left: calc(50% - 40vw);
  }

  .fireflycontainer.option2 {
    left: calc(50% + 40vw);
  }
}

.btn-4.active {
  transform: translate(-7vw, 6vh);
}

@media (max-width: 769px) {
  .btn-4.active {
    transform: translate(10vw, 15vh);
  }
}

.btn-5.active {
  transform: translate(5.5vw, 8vh);
}

@media (max-width: 769px) {
  .btn-5.active {
    transform: translate(-12.5vw, 15vh);
  }
}

@keyframes bodong {
  0% {
    height    : 5px;
    background: bule;
  }

  30% {
    height    : 15px;
    background: bule;
  }

  60% {
    height    : 20px;
    background: bule;
  }

  80% {
    height    : 15px;
    background: bule;
  }

  100% {
    height    : 5px;
    background: bule;
  }
}

.soundWave span {
  width     : 3px;
  height    : 5px;
  bottom    : 0px;
  position  : absolute;
  background: #e16d30;
}

.soundWave {
  position: absolute;
  top     : 60px;
  right   : 0;
  z-index : 9;
  width   : 45px;
  height  : 25px;
  cursor  : pointer;
  opacity : 0;
}

.soundWave.hideAnm span {
  animation: unset !important;
}

.soundWave.active {
  opacity: 1;
}

.soundWave.active span {
  animation: bodong 1.5s infinite ease;
}

.soundWave span:first-child {
  left           : 0px;
  animation-delay: 0.3s;
}

.soundWave span:nth-child(2) {
  left           : 7px;
  animation-delay: 0.4s;
  height         : 7px;
}

.soundWave span:nth-child(3) {
  left           : 14px;
  animation-delay: 0.6s;
  height         : 9px;
}

.soundWave span:nth-child(4) {
  left           : 21px;
  animation-delay: 0.8s;
  height         : 11px;
}

.soundWave span:nth-child(5) {
  left           : 28px;
  animation-delay: 1s;
  height         : 13px;
}

audio {
  position      : absolute;
  top           : 60px;
  z-index       : 99;
  left          : 0;
  opacity       : 0;
  pointer-events: none;
}

.btn {
  display        : flex;
  align-items    : center;
  justify-content: center;
  margin-top     : -12px;
}

.text {
  position      : absolute;
  display       : flex;
  color         : #fff;
  background    : #e43e30;
  font-size     : 12px;
  text-align    : left;
  opacity       : 0;
  pointer-events: none;
  cursor        : initial;
  transition    : all 0.3s ease-in-out;
}

.text.active {
  opacity       : 1;
  pointer-events: auto;
}

.text .--subTitle {
  font-size     : 15px;
  margin-top    : 4px;
  text-transform: uppercase;
}

.text .--title {
  font-size     : 28px;
  text-transform: uppercase;
}

.text img {
  display: flex;
  width  : auto;
  height : 50px;
  filter : brightness(100) invert(0);
}

.text .--top {
  display: flex;
  gap    : 24px;
}

.text.text1 {
  right     : calc(50% + 62px);
  width     : 25vw;
  flex-flow : column;
  padding   : 32px;
  max-height: 40vh;
  top       : 50%;
  height    : -moz-max-content;
  height    : max-content;
}

.text.text1 article {
  overflow-y: auto;
  margin-top: 20px;
}

.text.text1::after {
  content          : "";
  position         : absolute;
  top              : -0.5px;
  left             : calc(100% - 2px);
  -webkit-clip-path: polygon(0 1%, 0 67%, 100% 0);
  clip-path        : polygon(0 1%, 0 67%, 100% 0);
  background       : #e43e30;
  width            : 66px;
  height           : 70px;
}

.text.text1 img {
  filter: brightness(100) invert(0);
}

.text.text2 {
  left          : calc(50% + 56px);
  top           : calc(50% - 28px);
  flex-flow     : column;
  padding       : 32px;
  width         : 25vw;
  opacity       : 0;
  pointer-events: none;
}

.text.text2.active {
  opacity       : 1;
  pointer-events: auto;
}

.text.text2 article {
  margin-top: 24px;
}

.text.text2::after {
  content          : "";
  -webkit-clip-path: polygon(0 1%, 100% 61%, 100% 0);
  clip-path        : polygon(0 1%, 100% 61%, 100% 0);
  position         : absolute;
  right            : calc(100% - 2px);
  top              : 28px;
  background       : #e43e30;
  width            : 60px;
  height           : 60px;
}

@media (max-width: 769px) {
  .text .--title {
    font-size: 16px;
  }

  .text .--subTitle {
    font-size: 13px;
  }

  .text.text1 {
    right    : unset;
    left     : 50%;
    position : fixed;
    transform: translate(-50%, 0);
    width    : 75vw;
    bottom   : 32px;
    top      : unset;
    padding  : 24px 16px;
  }

  .text.text1::after {
    display: none;
  }

  .text.text2 {
    right    : unset;
    left     : 50%;
    position : fixed;
    transform: translate(-50%, 0);
    width    : 75vw;
    bottom   : 32px;
    top      : unset;
    padding  : 24px 16px;
  }

  .text.text2 img {
    height: 40px;
  }

  .text.text2::after {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */