/*SLIDINGMENU.CSS*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*This CSS file contains style rules for Sliding Menu*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* Author: Unbranded.*/
/* Website: http://www.unbranded.co */
/* Copyright: (C) 2014 */
/*-------------------------------------------------------------------------------------------------------------------------------*/


.sm-wrap .site-name {
	font-size: 24px;
	line-height: 31px;
	font-family: "RalewayHeavy";
	text-transform: uppercase;
	color: #fff;
	text-align: center;
	padding: 14px 0px 12px 32px;
}

.menu {
	position: fixed;
	right: -190px;
	width: 190px;
	height: 100%;
	top: 0;
	z-index: 10;
	text-align: right;
	background: transparent;
    /*-moz-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.2);*/


}

.menu.menu-open {
	right: 0px;
}

.sm-wrap {
	position: absolute;
	top: 0;
	left: 0px;
	background: #202529;
	background-image: url(../img/mobile_menu_ng.png);
	width: 190px;
	height: 100%;
}

.menu h1.sm-logo{
	font-family:"Khand";
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0.15em;
	line-height: 40px;
	text-transform: uppercase;
	color: #fff;
	margin: 20px 10px;
}


.menu img.sm-logo {
	margin: 20px 0;
	max-width: 160px;
}

.menu a {
	margin:0px;
	margin-bottom: 2px;
	color: #fff;
	display: block;
	font-size: 24px;
	line-height: 30px;
	font-family:"Khand";
	
    padding: 6px 30px 6px 20px;
	text-transform: uppercase;
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}

.menu a:hover {
	color: #ffffff;
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.1);
	-webkit-transition: all .4s ease-in-out;
	   -moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		 -o-transition: all .4s ease-in-out;
			transition: all .4s ease-in-out;
}

.menu a:active {
	color: #ffffff;
}

.menu-close {
	cursor: pointer;
	display: block;
	position: absolute;
	font-size: 14px;
	color: #808080;
	width: 40px;
	height: 40px;
	line-height: 40px;
	top: 20px;
	right: 5px;
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}

.menu-close:hover {
	color: #ffffff;
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}

/* Push the body after clicking the menu button */
.sliding {
	overflow-x: hidden;
	position: relative;
	left: 0;
}

.sliding-toright {
	left: 160px;
}

.sliding-toleft {
	left: -160px;
}

.menu,
.sliding {
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
		-ms-transition: all .3s ease;
		 -o-transition: all .3s ease;
			transition: all .3s ease;
}

#sm-trigger {
	position: absolute;
	top: 48px;
	left: -50px;
	z-index: 11;
	display: block;
	text-align: center;
	font-size: 14px;
	color: #ffffff;
	width: 50px;
	height: 50px;
	line-height: 40px;
	cursor: pointer;
	background: #df0052 url('../img/menu.png') center center no-repeat;
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}

#sm-trigger:hover {
	color: #ffffff;
	background: #df0052 url('../img/menu.png')  center center no-repeat;
	-webkit-transition: all .1s ease-in-out;
	   -moz-transition: all .1s ease-in-out;
		-ms-transition: all .1s ease-in-out;
		 -o-transition: all .1s ease-in-out;
			transition: all .1s ease-in-out;
}

