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

body {
  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;
}
/**
* Welcome Area
*/
.welcome {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url('../images/welcome-bg.jpg');
  background-size: 100% 100%;
}
.welcome a {
  display: block;
  transition: all .3s linear;
}
.welcome a .inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.welcome 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;
}
.welcome a:hover .inner .more {
  opacity: 1;
  visibility: visible;
}
.welcome img,
.welcome iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.info-link {
  position: absolute;
  left: 46%;
  top: 78%;
  width: 3%;
  height: 6%;
  background: transparent;
  border-radius: 100%;
}

/* Banners */
.welcome .banner {
  position: absolute;
  transition: all .3s linear;
}
.welcome .banner:hover {
  z-index: 5;
  box-shadow: 0px 0px 25px rgba(238, 238, 0, 0.5);
}
.welcome .banner:hover {
  transform: scale(1.35);
}
.welcome .banner-square {
  width: 10.3%;
  height: 11.5%;
  left: 30.5%;
  top: 29.5%;
}
.welcome .banner-square02 {
  width: 10.3%;
  height: 11.5%;
  right: 30%;
  top: 29.5%;
}
.welcome .banner-left {
  width: 16.5%;
  height: 21.7%;
  left: 17%;
  top: 69%;
  box-shadow: 0 0 0 transparent!important;
}
.welcome .banner-program .inner .more,
.welcome .banner-right .inner .more,
.welcome .banner-left .inner .more {
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  margin: -30px;
  border-radius: 100%;
}
.welcome .banner-right {
  width: 16.5%;
  height: 21.7%;
  right: 17%;
  top: 69%;
  box-shadow: 0 0 0 transparent!important;
}
.welcome .banner-program {
  width: 8.7%;
  height: 28.7%;
  right: 6%;
  top: 65%;
  box-shadow: 0 0 0 transparent!important;
}


/* Halls */
.welcome .hall {
  position: absolute;
  transition: all .3s 0s linear;
}
.welcome .hall.active {
  z-index: 6;
  transform: scale(3);
}
.welcome .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;  
}
.welcome .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;
}
@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%;
  }
}
.welcome .hall:hover {
  box-shadow: 0px 0px 25px rgba(238, 238, 0, 0.5);
}
.welcome .hall01 {
  width: 13%;
  height: 15%;
  left: 44%;
  top: 44%;
}
.welcome .hall02 {
  width: 10.5%;
  height: 13%;
  left: 31%;
  top: 45.7%;
}
.welcome .hall03 {
  width: 10.5%;
  height: 13%;
  left: 59.3%;
  top: 45.7%;
}

/* Video */
.welcome .video {
  position: absolute;
  width: 16.5%;
  height: 18.2%;
  left: 42%;
  top: 22.2%;
}


/* Flags */
.welcome .flag {
  position: absolute;
  transition: all .3s linear;
}
.welcome .flag01 {
  width: 7.35%;
  height: 31.2%;
  left: 8.8%;
  top: 1.8%;
}
.welcome .flag02 {
  width: 7.35%;
  height: 31.2%;
  left: 20%;
  top: 1.8%;
}
.welcome .flag03 {
  width: 7.35%;
  height: 31.2%;
  right: 8.8%;
  top: 1.8%;
}
.welcome .flag04 {
  width: 7.35%;
  height: 31.2%;
  right: 20%;
  top: 1.8%;
}
.video-container{
  width:100%;
  height:100%;
  overflow:hidden;
  position:relative;
  background: #000;
}
.video-container iframe{
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
}
.video-foreground{
  pointer-events:none;
}

/* 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;
  }
  .welcome {
    opacity: 0;
    visibility: hidden;
  }
  .menu-toggle {
    display: none;
  }
}

@media(max-width: 820px) {
  .welcome a .inner .more{
    background-size: 20px;
  }
  .video-foreground{
    pointer-events:unset;
  }  
}

@media screen and (orientation:portrait) and (max-width: 280px) {
  body.homepage {
    width: 100vw;
    height: 100vh;    
    background-image: url('../images/welcome-bg.jpg');
    background-size: cover;
    background-position: center;
  }   
  .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;
  }
}
