
/*toggle*/

.menu{
    height: 30px;
    position: absolute;
    position: fixed;
    right: 20px;
    top: 20px;
    width: 55px;
    z-index: 99;
   cursor:pointer;
}


.menu__line{
    background: #111;
    display: block;
    height: 2px;
    position: absolute;
    transition:transform .5s;
    width: 100%;
}
.menu__line--center{
    top: 13px;
}
.menu__line--bottom{
    bottom: 0;
}

.menu__line--top.active{
    top: 13px;
    transform: rotate(45deg);
    background:#fff;
}
.menu__line--center.active{
    transform:scaleX(0);
}
.menu__line--bottom.active{
    bottom: 14px;
    transform: rotate(135deg);
    background:#fff;
}





/*gnav*/
.gnav{
    background: rgba(0,0,0,0.7);
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9;
}
.gnav__wrap{
    align-items:center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 100%;
}
.gnav__menu__item{
    margin: 20px 0;
}
.gnav__menu__item a{
	color: #fff;
    font-size: 1.1em;
    font-weight: 400;
    padding: 16px;
    text-decoration: none;
    transition: .5s;
}
.gnav__menu__item a:hover{
    color: #666;
}



