﻿

.menu-wrap a {
	color: #fff;
}

.menu-wrap a:hover,
.menu-wrap a:focus {
	color:rgba(255, 255, 255, 0.7);
}

.content-wrap {
	overflow:hidden;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.content {
	position: relative;
}

.content::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0s 0.3s;
	transition: opacity 0.3s, transform 0s 0.3s;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
}

/* Menu Button */
.menu-button {
	position: fixed;
	z-index: 9;
	margin: 0px 0 0 0 ;
	padding: 0;
	left:15px;
	top:10px;
	width: 40px;
	height:40px;
	border: none;
	text-indent: 2em;
	font-size:20px;
	color: transparent;
	background: transparent;
}

.menu-button::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background:url('../images/menu-ar.png') no-repeat scroll center center;
	content: '';
}

/* Close Button */
.close-button {
    width: 35px;
    height: 35px;
    position: absolute;
	right: 15px;
	top: 15px;
	overflow: hidden;
	text-indent: 16px;
	border: none;
	z-index: 1001;
	background: transparent;
	color: transparent;
}

.close-button::before,
.close-button::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 100%;
	top: 0;
	left: 50%;
	background: #fff;
}

.close-button::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.close-button::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* Menu */
.menu-wrap {
	position:fixed;
	z-index: 1001;
	width:100%;
	right:0;
	height: 100%;
	top:0;
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.menu {
	background:#eca338;
	width:100%;
    height:100%;
    padding:50px 20px 20px 20px;
}

.icon-list {
text-align:center;
line-height:35px;
}

.icon-list a {
	display: block;
	padding: 5px 0;
}

.icon-list a i {
	opacity: 1;
}

.icon-list a span {
	text-transform: capitalize;
	font-size: 16px;    
}

.icon-list-sub {
    margin-left: 30px;
}

.icon-list-sub a {
	display: block;
	padding: 1px 0;
}

.icon-list-sub a i {
	opacity: 1;
}

.icon-list-sub a span {
	margin-left: 10px;
	text-transform:   capitalize;
	letter-spacing: 0px;
	font-size: 16px;    

}



/* Morph Shape */
.morph-shape {
	fill:rgba(234, 32, 38, 0);    
}

/* Shown menu */
.show-menu .menu-wrap {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

