@charset "UTF-8";

/*menu*/
.menu{
  height: 20px;
  position: absolute;
  width: 30px;
}

.box_menu {
    width: 50px;
    height: 50px;
    right: 20px;
    top: 15px;
    position: fixed;
    padding: 13px 8px;
    z-index: 102;
    border-radius: 50%;
}

.menu__line{
  background: #333;
  display: block;
  height: 2px;
  position: absolute;
  transition:transform .3s;
  width: 100%;
}
.menu__line--center{
  top: 9px;
}
.menu__line--bottom{
  bottom: 0;
}
.menu__line--top.active{
  top: 8px;
  transform: rotate(45deg);
}
.menu__line--center.active{
  transform:scaleX(0);
}
.menu__line--bottom.active{
  bottom: 10px;
  transform: rotate(135deg);
}

body .gnav {
  overflow-x: hidden;
}

/*gnav*/
.gnav{
  background: #fff;
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 100;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.gnav__wrap{
  /*align-items:center;*/
  display: flex;
  height: 100%;
  justify-content: center;
  position: absolute;
  width: 100%;
  overflow: scroll;
}
.gnav__menu__item{
  margin: 40px 0;
}
.gnav__menu__item a{
  color: #fff;
  font-size: 2em;
  font-weight: bold;
  padding: 40px;
  text-decoration: none;
  transition: .5s;
}
.gnav__menu__item a:hover{
  color: #666;
}

#container{
/*
  background:url(images/hero.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
*/
  height: 100%;
}
