#st-trigger-effects i {
	margin-top: 30px;
	color: #fff;
	font-size: 14px;
	width: 40px;
	height: 40px;
	display: inline-block;
	position: relative;
	float: right;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
	background-color: #121212;
}

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

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

.sliding-middle-out {
	display: inline-block;
	position: relative;
	padding-bottom: 3px;
}
.sliding-middle-out:after {
	content: '';
	display: block;
	margin: auto;
	height: 1px;
	width: 0px;
	background: transparent;
	transition: width .5s ease, background-color .5s ease;
}
.sliding-middle-out:hover:after {
	width: 120px;
	background: #121212;
}

.st-content {
	overflow-y: hidden;
	background: #fff;
	height: 100%;
}

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

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

.st-pusher {
	position: relative;
	right: 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.5);
	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: 300px;
	height: 100vh;
	background: #fff;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.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 p {
	padding: 15px 0px;
	text-align: center;
	width: 100%;
	position: absolute;
	bottom: 0;
	text-align: center;
	font-size: 11px;
	line-height: 24px;
	color: #565656;
	letter-spacing: 0.5px;
	background-color: #f7f7f7;
	margin-bottom: 0px;
}

.st-menu a {
	color: #121212;
}

.st-menu ul.social-icons {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	top: 0;
	text-align: center;
	background-color: #f7f7f7;
}

.st-menu ul.social-icons li {
	 display: inline-block;
}

.st-menu ul {
	position: absolute;
	top: 35%;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.st-menu ul li a {
	text-align: center;
	font-family: 'Noto Sans', sans-serif;
	display: block;
	font-size: 13px;
	padding: 1em 1em 1em 1.2em;
	outline: none;
	color: #343434;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
}

.st-menu ul li a:hover {
	color: #121212;
	-webkit-transition: all 0.5s;
}

/* Individual effects */

/* Effect Menu */
.st-effect-2.st-menu-open .st-pusher {
	-webkit-transform: translate3d(300px, 0, 0);
	transform: translate3d(300px, 0, 0);
}

.st-effect-2.st-menu {
	z-index: 1;
}

.st-effect-2.st-menu-open .st-effect-2.st-menu {
	visibility: visible;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.st-effect-2.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;
}