/*menu*/
.menu{
    height: 18px;
    position: absolute;
    right: 50px;
    top: 32px;
    width: 20px;
    z-index: 99;
}
@media (max-width: 575px) {
  .menu {
	right: 20px;
    top: 20px;
  }
}
.menu__line{
    background: #000;
    display: block;
    height: 2px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
}
.menu__line--center{
    top: 8px;
}
.menu__line--bottom{
    bottom: 0;
}
.menu__line--top.active{
    top: 10px;
    width: 28px;
    background: #fff;
    transform: rotate(45deg);
}
.menu__line--center.active{
    transform:scaleX(0);
}
.menu__line--bottom.active{
    bottom: 6px;
    width: 28px;
    background: #fff;
    transform: rotate(135deg);
}
/*gnav*/
.gnav{
	font-family: 'Unna', serif;
    background: rgba(0,0,0,0.8);
    display: none;
    height: 100vh;
    position: fixed;
    width: 100vw;
    z-index: 98;
    margin: 0;
}
.gnav ul {
	list-style: none;
	margin: 0;
}
.gnav__wrap {
    align-items:center;
    display: flex;
    height: 100vh;
    justify-content: center;
    position: absolute;
    width: 100vw;
}
.gnav__wrap .row {
	width: 100vw;
}
.gnav__menu__item {
	color: #fff;
    font-size: 1.8rem;
    margin: 0 0 10px 0;
}
.gnav__menu__item_active {
	color: #fff;
    font-size: 1.8rem;
    margin: 0 0 10px 0;
}

.nav_category {
	font-family: 'Quattrocento Sans', sans-serif;
	color: #d2d2d2;
	font-weight: bold;
	font-size: 0.85rem;
}
.gnav__menu__item a {
	color: #fff;
    text-decoration: none;
    transition: .5s;
}
.gnav__menu__item_active a {
	color: #8CD2C8;
    text-decoration: none;
    transition: .5s;
}
.gnav__menu__item a:hover {
    color: #666;
	}
@media (max-width: 575px) {
  .gnav__wrap {
	  text-align: center;
  }
  .gnav__menu__item {
    font-size: 1.4rem;
    margin: 0 0 5px 0;
	}
  .gnav__menu__item_active {
    font-size: 1.4rem;
    margin: 0 0 5px 0;
	}
  .nav_category {
	font-weight: bold;
	font-size: 0.7rem;
	margin: 7px 0 10px 0;
	}
}
