﻿/*tmenu*/

.tmenu{
    height: 20px;
    position: absolute;
    position: fixed;
    right: 20px;
    top: 70px;
    width: 70px;
    z-index: 99;
    cursor:pointer;
}
.tmenu__line{
    background: #888;
    display: block;
    height: 2px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
}
.tmenu__line--center{
    top: 8px;
}
.tmenu__line--bottom{
    bottom: 0;
}

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







/*Opens*/

.gnav{
    background: rgba(0,0,0,0.8);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 98;
}
.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: 1em;
    font-weight: 300;
    padding: 40px;
	text-decoration: none;
    transition: .5s;
}
.gnav__menu__item a:hover{
    color: #666;
}



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