@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

body {
  height: 100vh; /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
  transition: all .6s ease-in;
  overflow-x: hidden;
}
body * {
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  overflow: hidden!important;
}
body.leave {
  transform: scale(4.5);
  overflow: hidden;
}
.menu-toggle {
  display: none;
  position: fixed;
  width: 100%;
  padding: 20px 60px 20px 20px;
  color: #fff;
  text-align: right;
  background: rgba(0,0,0,0.7);
}
.menu-toggle span {
  position: absolute;
  right: 20px;
  top: 19px;
  width: 27px;
  height: 3px;
  background: #fff;
}
.menu-toggle span:nth-child(2) {
  top: 26px;
}
.menu-toggle span:nth-child(3) {
  top: 33px;
}
video {
  pointer-events: none!important;
  width: 100vw;
  height: 100vh; /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
  object-fit: fill;
}
video::-webkit-media-controls-panel {
display: none !important;
opacity: 1 !important;}

/**
* Stage
*/
.stage a {
  position: absolute;
  display: block;
  transition: all .3s linear;
}
.stage a .inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.stage a .inner .more {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('../images/search.svg') rgba(0,0,0,0.3);
  background-size: 30px;
  background-position: center;
  background-repeat: no-repeat;
  transition: all .3s linear;
}
.stage a:hover .inner .more {
  opacity: 1;
  visibility: visible;
}
.stage a:hover {
  box-shadow: 0px 0px 25px rgba(238, 238, 0, 0.5);
}
.stage .banner.banner-one {
  left: 26.5%;
  top: 1%;
  width: 15%;
  height: 14%;
}
.stage .banner.banner-two {
  left: 42%;
  top: 1%;
  width: 15%;
  height: 14%;
}
.stage .banner.banner-three {
  left: 57.6%;
  top: 1%;
  width: 15%;
  height: 14%;
}
.stage .banner.banner-four {
  left: 42.6%;
  top: 20%;
  width: 18%;
  height: 17%;
}
.stage .banner.banner-five {
  left: .3%;
  top: 20%;
  width: 5%;
  height: 37%;
}
.stage .banner.banner-six {
  left: 77.9%;
  top: 1%;
  width: 5%;
  height: 23%;
}
.stage .banner.banner-seven {
  left: 77.9%;
  top: 26%;
  width: 5%;
  height: 34%;
}
.stage .banner.banner-eight {
  left: 38.7%;
  top: 44.5%;
  width: 7%;
  height: 3.5%;
}
.stage .banner.banner-nine {
  left: 49%;
  top: 44.5%;
  width: 7%;
  height: 3.5%;
}
.stage .banner.banner-nine img,
.stage .banner.banner-eight img,
.stage .banner.banner-ten img {
  object-fit: contain;
  object-position: center;
}
.stage .banner.banner-information {
  left: 70%;
  top: 78.5%;
  width: 10%;
  height: 5%;
  transform: rotate(-3deg);
}
.stage .banner.banner-nine,
.stage .banner.banner-nine .inner,
.stage .banner.banner-nine .more,
.stage .banner.banner-eight,
.stage .banner.banner-eight .inner,
.stage .banner.banner-eight .more,
.stage .banner.banner-ten,
.stage .banner.banner-ten .inner,
.stage .banner.banner-ten .more {
  cursor: default;
}
.stage .banner.banner-nine,
.stage .banner.banner-nine .inner,
.stage .banner.banner-nine .more,
.stage .banner.banner-eight,
.stage .banner.banner-eight .inner,
.stage .banner.banner-eight .more,
.stage .banner.banner-ten,
.stage .banner.banner-ten .inner,
.stage .banner.banner-ten .more,
.stage .banner.banner-information,
.stage .banner.banner-information .inner,
.stage .banner.banner-information .inner .more {
  box-shadow: unset!important;
  background: transparent!important;
}
.stage .banner.banner-information .inner .more {
  display: none!important;
}
.stage .banner.banner-ten {
  left: 59%;
  top: 44.5%;
  width: 7%;
  height: 3.5%;
}
.stage .banner.banner-eleven {
  left: 15.9%;
  top: 4%;
  width: 5%;
  height: 21%;
}
.stage .banner.banner-poster {
  right: 4%;
  bottom: 4%;
  width: 8%;
  height: 24%;
}
.stage .banner.banner-hall01 {
  left: 39%;
  top: 49%;
  width: 7%;
  height: 10%;
}
.stage .banner.banner-hall02 {
  left: 49%;
  top: 49%;
  width: 7%;
  height: 10%;
}
.stage .banner.banner-hall03 {
  left: 59%;
  top: 49%;
  width: 7%;
  height: 10%;
}
/* Halls */
.stage .hall.active {

}
.stage .hall.active .inner .more {
  background: url('../images/up-arrow.svg') transparent;
  background-size: 30px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  animation: upArrow .4s infinite alternate;
  -webkit-animation: upArrow .4s infinite alternate;
}
.stage .hall .inner .more {
  background: url('../images/up-arrow.svg') rgba(0,0,0,0.3);
  background-size: 30px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  animation: upArrow .4s infinite alternate;
  -webkit-animation: upArrow .4s infinite alternate;
}
.stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
@keyframes upArrow {
  0% {
    background-position: 50% 60%;
  }
  100% {
    background-position: 50% 40%;
  }
}
@-webkit-keyframes upArrow {
  0% {
    background-position: 50% 60%;
  }
  100% {
    background-position: 50% 40%;
  }
}

/* Navigation */
.backdrop {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  padding: 20px;
  background: #000;
  z-index: 3;
  opacity: .7;
}
.navigation {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: 0;
  top: 0;
  width: 270px;
  height: 100vh;
  padding: 20px;
  background: #fff;
  z-index: 4;
  transform: translateX(100%);
  transition: all .3s linear;
}
.navigation ul,
.navigation li {
  list-style-type: none;
}
.navigation a {
  display: block;
  padding: 15px 7px;
  color: #444;
  font-size: 18px;
  text-decoration: none;
}
.navigation li ul {
  display: none;
}
.navigation li:hover ul {
  display: block;
}
.navigation li ul li {
  font-size: 14px;
  padding-left: 15px;
}
.navigation li ul li a {
  font-size: 14px;
}
.navigation .close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 25px;
  height: 25px;
  background-image: url('../images/close.svg');
  background-size: 25px;
  opacity: .5;
  cursor: pointer;
}
body.menu-active .navigation {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}


@media screen and (orientation:portrait) {
  .rotate {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #fff url('../images/rotate.gif');
    background-size: 60px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
  }
  .stage {
    opacity: 0;
    visibility: hidden;
  }
  .menu-toggle {
    display: none;
  }
}


@media screen and (orientation:portrait) and (max-width: 280px) {
  .rotate {
    display: none!important;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #fff url('../images/rotate.gif');
    background-size: 60px;
    background-position: center;
    background-repeat: no-repeat;
  }
  .menu-toggle {
    display: block;
    z-index: 3;
  }
}
.modal {
  overflow: visible!important;
}
