*,
*:after,
*::before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

$source-font: 'Source Sans Pro',Helvetica, Arial, Sans-Serif;
$montsorrat-font: 'Montsorrat', Arial, Sans-Serif;



html {
	font-size: 62.5%;
}


html,
body,
.st-container,
.st-pusher,
.st-content {
	height: 100%;
}

.st-content {
	overflow-y: scroll;
	background: #ffffff;
}

.st-content,
.st-content-inner {
	position: relative;
}

.st-container {
	position: relative;
	overflow: hidden;
}

.st-pusher {
	position: relative;
	left: 0;
	z-index: 99;
	height: 100%;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.st-pusher::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	background: rgba(0,0,0,0.2);
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
	transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

.st-menu-open .st-pusher::after {
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.st-menu {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	visibility: hidden;
	width: 250px;
	height: 100%;
	background: #000;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	overflow: scroll;
}

.st-menu::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
	content: '';
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.st-menu-open .st-menu::after {
	width: 0;
	height: 0;
	opacity: 0;
	-webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
	transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

/* content style */

.st-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.st-menu h2 {
	margin: 0;
	padding: 1em;
	color: rgba(0,0,0,0.4);
	font-weight: 300;
}

.st-menu ul li {
	margin:0;
}	

.st-menu ul li a {
	display: block;
	padding: 1rem 1rem 1rem 1.2rem;
	border-bottom: 1px solid #333;
	border-top: 1px solid #333;
	color: #f3efe0;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
	font-family: 'Montsorrat',Helvetica, Arial, Sans-Serif;
	font-size: 1.3rem;
}

.st-menu ul li:last-child a, .st-menu ul li:first-child a {
	border-top: 0;
}

.st-menu ul ul li a {
	display: block;
	padding: 1rem 1rem 0rem 2.2rem;
	color: #f3efe0;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 300;
	font-family: 'Montsorrat',Helvetica, Arial, Sans-Serif;
	font-size: 1.1rem;
	border-bottom: 0;
	border-top: 0;
}

.st-menu ul li ul li:last-child a {
	padding: 1rem 1rem 1rem 2.2rem;
}

.st-menu ul li a:hover {
	color: #fff;
}


/* Individual effects */



/* Effect 4: Slide along */
.st-effect-4.st-menu-open .st-pusher {
	-webkit-transform: translate3d(250px, 0, 0);
	transform: translate3d(250px, 0, 0);
}

.st-effect-4.st-menu {
	z-index: 1;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
}

.st-effect-4.st-menu-open .st-effect-4.st-menu {
	visibility: visible;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.st-effect-4.st-menu::after {
	display: none;
}


/* Fallback example for browsers that don't support 3D transforms (and no JS fallback) */
.no-csstransforms3d .st-pusher,
.no-js .st-pusher {
	padding-left: 300px;
}
