.menu-button {
	display: block;
    opacity: 1;
    right: 4%;
    top: 110px;
    position: fixed;
    width: 43px;
    height: 26px;
    background: transparent;
    color: #000;
    speak: none;
    font-weight: bold;
    cursor: pointer;
    z-index: 300;
    text-indent: -9000px;
    font-family: Arial;
}
.menu-button::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 14px;
	background: transparent;
	color: #000 ;
	top: 0;
	left: 0%;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.menu-button::after {
	position: absolute;
	content: '';
	width: 80%;
	height: 14px;
	background: transparent;
	color: #000 ;
	bottom: 0;
	left: 0%;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.menu-button.selected::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	background: transparent;
	color: #000 ;
	top: 12px;
	left: 0%;
    border-top: 2px solid #000;
    border-bottom: none;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.menu-button.selected::after {
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	background: transparent;
	color: #fff ;
	bottom: 12px;
	left: 0%;
    border-top: none;
    border-bottom: 2px solid #000;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.navigation2 {
    position: fixed;
    display: block;
    top: 0px;
    left: 0px;
    width: auto;
    height: 100%;
    bottom: auto;
    padding: 110px 60px 60px 60px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    z-index: 5;
    transform: translate(-100%,0%);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.navigation2activ {
    left: 0px;
    transform: translate(0%,0%);
}
div.navigation2 div {
    display: block;
    position: relative;
    margin: 10px 0px 18px 0;
}
div.navigation2 div a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}
div.navigation2 div a:hover{
    color: #e3a346;
}
div.navigation2 div.current a{
    color: #e3a346;
}