@charset "UTF-8";
.content {
  opacity: 0;
  pointer-events: none;
}
body.appear .content {
  animation-name: PageAnime-content;
  animation-duration: 0.55s;
  animation-delay: 0.55s;
  animation-fill-mode: forwards;
  opacity: 0;
  pointer-events: auto;
}
.animation .content {
  opacity: 1;
  pointer-events: auto;
}
@keyframes PageAnime-content {
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
}
}
.move .animation-bg {
  background: #1D2088;
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.bottom.ltr .animation-bg {
  animation-name: PageAnime-bottom-ltr;
  animation-duration: 1.5s;
}
@keyframes PageAnime-bottom-ltr {
  0% {
    transform-origin: center left;
    transform: scale(2,2) translateX(-300%) skewX(45deg);
  }
  50% {
    transform-origin: center left;
    transform: scale(2,2) translateX(-17%) skewX(45deg);
  }
  50.001% {
    transform-origin: center left;
    transform: scale(2,2) translateX(-17%) skewX(45deg);
  }
  100% {
    transform-origin: center left;
    transform: scale(2,2) translateX(500%) skewX(45deg);
  }
}
/*loading
---------------------*/
.loader{
	width: 100%;
	height: 100vh;
	background:#fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 1s;
}
.loader p{
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: bold;
	color:#1D2088;
	font-size:16px;
	letter-spacing:1px;
	text-align:center;
	margin-top: -5rem;
}
.loader span{
	width:16px;
	height:16px;
	border-radius:50%;
	display:inline-block;
	position:absolute;
	left:50%;
	margin-left:-10px;
	-webkit-animation:3s infinite linear;
	-moz-animation:3s infinite linear;
	-o-animation:3s infinite linear;
}
.loader span:nth-child(2){
	background:#E80000;
	-webkit-animation:kiri 1.2s infinite linear;
	-moz-animation:kiri 1.2s infinite linear;
	-o-animation:kiri 1.2s infinite linear;
}
.loader span:nth-child(3){
  background:#FFEE00;
  z-index:100;
}
.loader span:nth-child(4){
  background:#1D2088;
  -webkit-animation:kanan 1.2s infinite linear;
  -moz-animation:kanan 1.2s infinite linear;
  -o-animation:kanan 1.2s infinite linear;
}
.loaded {
  opacity: 0;
  visibility: hidden;
}
@-webkit-keyframes kanan {
    0% {-webkit-transform:translateX(20px);
    }
   
  50%{-webkit-transform:translateX(-20px);
  }
  
  100%{-webkit-transform:translateX(20px);
  z-index:200;
  }
}
@-moz-keyframes kanan {
    0% {-moz-transform:translateX(20px);
    }
   
  50%{-moz-transform:translateX(-20px);
  }
  
  100%{-moz-transform:translateX(20px);
  z-index:200;
  }
}
@-o-keyframes kanan {
    0% {-o-transform:translateX(20px);
    }
   
  50%{-o-transform:translateX(-20px);
  }
  
  100%{-o-transform:translateX(20px);
  z-index:200;
  }
}
@-webkit-keyframes kiri {
     0% {-webkit-transform:translateX(-20px);
  z-index:200;
    }
  50%{-webkit-transform:translateX(20px);
  }
  100%{-webkit-transform:translateX(-20px);
  }
}
@-moz-keyframes kiri {
     0% {-moz-transform:translateX(-20px);
  z-index:200;
    }
  50%{-moz-transform:translateX(20px);
  }
  100%{-moz-transform:translateX(-20px);
  }
}
@-o-keyframes kiri {
     0% {-o-transform:translateX(-20px);
  z-index:200;
    }
  50%{-o-transform:translateX(20px);
  }
  100%{-o-transform:translateX(-20px);
  }
}
/*animation
---------------------*/
.smooth {
  clip-path: inset(0 100% 0 0);
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.smooth.is-animated {
  clip-path: inset(0);
}
/*animation02
---------------------*/
.anim-box.slide-skew {
    opacity: 0;
}
.anim-box.slide-skew.is-animated {
	animation: slide-skew 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
	animation-delay:1s;
}
@keyframes slide-skew {
  0% {
    transform: translate(180px,30px);
    opacity: 0;
  }
  100% {
    transform: translate(0,0);
  }
  20%,100% {
    opacity: 1;
  }
}

/*text_animation
---------------------*/
.mask-bg {
  color: transparent;
  overflow: hidden;
  position: relative;
  transition: color 0ms 450ms;
}
.mask-bg::after {
  background: #1D2088;
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(101% , 0);
}
.mask-bg.is-animated {
  color: #1F1816;
}
.mask-bg.is-animated::after {
	animation: mask-bg 1.2s cubic-bezier(0.8, 0, 0.170, 1);
}
@keyframes mask-bg {
  0% {
    transform: translate(-101%, 0)
  }
  40%, 60% {
    transform: translate(0, 0%)
  }
  100% {
    transform: translate(101%, 0)
  }
}
/*text_animation
---------------------*/

.bg .bg-wrap .inn {
  position: relative;
  z-index: 1000;
}
.bg.is-animated .bg-wrap .inn::after {
	animation: bg-line 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-delay:.5s;
	background: #fff;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform-origin: left center;
	z-index: -1;
}

@keyframes bg-line {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}