﻿[class^="icon-"], [class*=" icon-"] {
    display: block;
}

[class^="icon-"]:before, [class*=" icon-"]:before {
    display: none !important;
}


.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:5px;
	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.png') no-repeat scroll center center;
	content: '';
}

/* Close Button */
.close-button {
    width: 30px;
    height: 30px;
    position: absolute;
	left: 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;
	background-color:rgba(35, 31, 32, 0.89);
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.menu {
	width:70%;
	background-color:#96d143;
	float: right;
	height:100%;
	padding:70px 20px 20px 20px;
}

.menu img
{
	margin:auto auto 30px auto;
}


.icon-list {
    position:relative;
    text-align:right;
}

.icon-list a {
	display: block;
	padding: 5px 0;    
	line-height: 45px;
	border-bottom:1px rgba(255, 255, 255, 0.45) solid;
}
.icon-list a img{
	margin:auto auto auto 15px;
       width:20px;
       height:20px;
}

.icon-list a i {
	opacity: 1;
}

.icon-list a span {
	text-transform: capitalize;
	font-size: 16px;        
    font-family: 'Poppins', sans-serif;
}

.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);
}



.copyright
{
	position:fixed;
	bottom:10px;
	width:100%;
	text-transform:capitalize;
	color:#FFFFFF;
	font-weight:300;
    font-size: 13px;
    text-align: center;
    line-height: 20px;
}

