@charset "utf-8";
.inner_wrap {
	position: relative;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
}
.inner_content_wrap {
	position: absolute;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
}
section.main-content-head {
/*    position: relative;
    color: #014370;
    background: #ffffffe3;
    width: 300px;
    height: 65px;
    text-align: center;
    font-weight: bold;
    font-size: 26px;
    line-height: 17px;

    left: -350px;
    margin-left: 50%;
    padding: 5px 20px;
    margin-top: 200px;
    
	margin: 0 auto;
    left: unset;*/
}
header {
    position: fixed;
    width: 100%;
    height: 60px;
    /*background: #33333345;*/
    padding-top: 20px;
    z-index: 10;
    top: 0;
}
header .animation-text {
    position: relative;
    display: inline-block;
    height: 35px !important;
    line-height: 35px;
    width: 200px;
    font-weight: bold;
    font-size: 20px;
    color: #FFF;
    margin-top: 20px !important;
}

header .animation-scenes {
    display: inline-block;
}
header #titleBlock {
    position: relative;
    display: inline-block;
    height: 100%;
    width: 200px;
    left: 50px;
    z-index: 5;
}

header #titleBlock .animation-text img{
    width: 200px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 0.5s ease-out forwards;
    animation-delay:4.4s;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header .humburger {
    position: relative;
    width: 60px;
    height: 60px;
    /*background: #FFF;*/
    float: right;
    margin-right: 30px;
    /*margin-top: 15px;*/
    z-index: 2;
}



.humburger {}
/* humburger base */
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
    position: relative;
    width: 35px;
    height: 30px;
    z-index: 5;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #fff;
  border-radius: 0px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 13px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

/* humburger animation */
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(13px) rotate(-45deg);
  transform: translateY(13px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 .8s forwards;
  animation: active-menu-bar02 .8s forwards;
}
@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(45deg);
  transform: translateY(-12px) rotate(45deg);
}

.menu {
    position: fixed;
    width: 100%;
    height: 0px;
    background: rgba(15,17,43,1);
    top: 0px;
    left: 0;
    z-index: 1;
    overflow: hidden;
    color: #FFF;
    transition-duration: .5s;
    opacity: 0;
}

.menu ul {
    list-style: none;
    margin-left: 350px;
    margin-top: 50px;
    line-height: 40px;
    font-size: 16px;
    letter-spacing: 1px;
}

@keyframes open {
    0% {
        opacity: 0;
        height: 0px;
    }
    100% {
        opacity: 1;
        height: 430px;
    }
}
.menu.active {
    opacity: 1;
    height: 430px;
    transition-duration: .5s;
    animation-name: open;
}

#footerNavi {
    width: 100%;
    /* position: absolute; */
    height: 100%;
    display: inline-flex;
}


/* ************************* 
* FIRST MAIN LOGO ANIMATION
* 
************************* */
/*@keyframes slideFromBottom {
    0% {
        opacity: 0;
        transform : translate(0%,100%);
    }
    100% {
        opacity: 1;
        transform : translate(0%,0%);
    }
}
@keyframes slideToTop {
    0% {
        opacity: 1;
        transform : translate(0%,0%);
    }
    100% {
        opacity: 0;
        transform : translate(0%,-100%);
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.slideIn-bttom {
    overflow: hidden;
    animation-name: fadeIn;
    animation-duration: .5s;
}
.slideIn-bttom img {
    opacity: 0;
}
.slideIn-bttom.on img {
    opacity: 1;
    transform : translate(0%,0%);
    animation-name: slideFromBottom;
    animation-duration: .5s;
}
.slideIn-bttom.off img {
    opacity: 0;
    transform : translate(0%,-100%);
    animation-name: slideToTop;
    animation-duration: .5s;
}

*/