@charset "UTF-8";
/* CSS Document */


/*menu*/
.menu{
    height: 30px;
    position: fixed;
    left: 20px;
    top: 20px;
    width: 35px;
    z-index: 99;
}
.menu__line{
    background: #003364;
    display: block;
    height: 5px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
}
.menu__line--center{
    top: 12px;
}
.menu__line--bottom{
    bottom: 0;
}
.menu__line--top.active{
  background: #fff;
    top: 8px;
    transform: rotate(45deg);
}
.menu__line--center.active{
    transform:scaleX(0);
}
.menu__line--bottom.active{
	  background: #fff;
    bottom: 16px;
    transform: rotate(135deg);
}
/*gnav*/
.gnav{
    background:rgba(0,38,75,0.86);

    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 98;
	top:0
}
.gnav ul{
	display: block;
	text-align: center;
}
.gnav__wrap{
    align-items:center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 100%;
}
.gnav__menu__item{
    margin: 40px 0;
}
.gnav__menu__item a{
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    padding: 20px;
    text-decoration: none;
    transition: .5s;
}
.gnav__menu__item a:hover{
    color: #666;
}
.nav_home{
	display: block
}