/*SLIDINGMENU.CSS*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*This CSS file contains style rules for Sliding Menu*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*Template Name: SECRET.*/
/* Author: Unbranded.*/
/* Website: http://www.unbranded.co */
/* Copyright: (C) 2013 */
/*-------------------------------------------------------------------------------------------------------------------------------*/

.mobile-nav {
	position: fixed;
	right: -1000px;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 10;
	text-align: center;
	-webkit-transition: all .6s ease;
	   -moz-transition: all .6s ease;
		-ms-transition: all .6s ease;
		 -o-transition: all .6s ease;
			transition: all .6s ease;
}	

#mobile-nav-trigger {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 11;
	display: block;
	text-align: center;
	cursor: pointer;
	font-size: 14px;
	color: #ffffff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	background: rgba(0,0,0,0.5) url('../images/menu.png') center center;
	-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;					
}

.mobile-nav.mobile-nav-open {
	right: 0px;
}

.mobile-nav-wrap {
	position: absolute;
	top: 75px;
	left: 0;
	background: #000;
	width: 100%;
	height: 100%;
}
.mobile-nav-wrap ul{
	padding-left: 0px;
}
.mobile-nav-wrap ul li{
	list-style: none;
}
.mobile-nav-wrap ul li i{
	float: right;
	color: #fff;
}
.mobile-sub-menu{
	display: none;
}
.mobile-sub-menu .has-sub-menu a{
	display: block;
}
.menu a {

	margin:0px;
	margin-bottom: 2px;
	color: #777;
	display: block;
	font-size: 11px;
	letter-spacing: 2px;
	font-weight: 200;
	line-height: 23px;
	text-transform: uppercase;
	font-family:"Montserrat";
	font-weight: 400;
	background:rgba(0,0,0,0.1);
	padding: 10px;
	-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: #baab8b;
	-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;
}
