﻿
/*menu*/
.emenu{
    height: 20px;
    position: absolute;
    position: fixed;
    right: 20px;
    top: 18px;
    width: 70px;
    z-index: 999;
}

.emenu__line{
    background: #ccc;
    display: block;
    height: 2px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
    cursor:pointer;
}

.emenu__line--center{
    top: 9px;
}
.emenu__line--bottom{
    bottom: 0;
}


.emenu__line--top.active{
    top: 10px;
    transform: rotate(45deg);
}
.emenu__line--center.active{
    transform:scaleX(0);
}
.emenu__line--bottom.active{
    bottom: 11px;
    transform: rotate(135deg);
}




/*gnav*/
.gnav{
    background: rgba(0,0,0,0.5);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 98;
}
.gnav__wrap{
    align-items:start;
    margin-top:70px;
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 100%;
}

ul{
   list-style:none;
}


.gnav__menu__item{
    margin: 30px 0;
}
.gnav__menu__item a{
	color: #fff;
    font-size: 1.2em;
    font-weight: 400;
    padding: 33px;
    text-decoration: none;
    transition: .5s;
}
.gnav__menu__item a:hover{
    color: #666;
}
