.hi-icon-arrow:before {
	content: "\ea38";
}
div.wrapper {
	margin: 0px auto;
	margin-top: 25px;
	width: 200px;
}
nav.vertical {
	overflow: hidden;
	text-align: left;
}
nav.vertical > ul {
	list-style-type: none;
}
nav.vertical > ul > li {
  	display: block;
}
nav.vertical > ul > li > label,
nav.vertical > ul > li > a {
	border-bottom: 1px solid rgba(255,255,255,.1);
	color: #FFFFFF;
	display: block;
	font-weight: 600;
    font-family: 'Montserrat', sans-serif;  
    font-size: 14px;
    letter-spacing: 1px;
	height: 50px;
	padding-left: 10px;
	overflow: hidden;
	line-height: 50px;
	text-transform: uppercase;
	transition: all .1s ease;
}
nav.vertical > ul > li > label:hover,
nav.vertical > ul > li > a:hover {
	background: #c60011;
	cursor: pointer;
}
nav.vertical > ul > li > label + input {
	display: none;
	visability: hidden;
}
nav.vertical > ul > li > div {
	max-height: 0;
	overflow: hidden;
	transition: all .5s linear;
}
nav.vertical > ul > li > label + input:checked + div {
  	max-height: 500px;
}
nav.vertical > ul > li > div > ul {
	list-style-type: none;
}
nav.vertical > ul > li > div > ul > li > a {
	border-bottom: 1px solid rgba(0,0,0,.05);
	display: block;
	color: white;
	font-weight: 600;
    font-family: 'Montserrat', sans-serif;  
    font-size: 14px;
    letter-spacing: 1px;
	padding: 10px 20px;
	text-decoration: none;
	transition: all 0.15s linear;
}
nav.vertical > ul > li > div > ul > li:hover > a {
	background-color: #c60011;
	padding: 10px 0 10px 30px;
	color: white;
}




@media screen and (min-width:900px) {
	.menu-wrap{
		display: none !important;
	}
	.menu-button{
		display: none !important;
	}
}
@media screen and (max-width:899px) {

.content-wrap {
	overflow: hidden;
	width: 100%;
	height: 100%;
}


.menu-wrap a {
	color: #b8b7ad;
}

.menu-wrap a:hover,
.menu-wrap a:focus {
	color: #c94e50;
}

.content-wrap {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.content {
	position: relative;
	background: #b4bad2;
}

.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: absolute;
		z-index: 1000;
		margin-top: 5px;
		padding: 0;
		width: 50px;
		height: 50px;
		border: none;
		font-size: 14px;
		color: transparent;
		background: transparent;
	}

	.menu-button::before {
		position: absolute;
		top: 0.5em;
		right: 0.5em;
		bottom: 0.5em;
		left: 0.5em;
		background: linear-gradient(#FFFFFF 20%, transparent 20%, transparent 40%, #FFFFFF 40%, #FFFFFF 60%, transparent 60%, transparent 80%, #FFFFFF 80%);
		content: '';
	}

	.menu-button:hover {
		opacity: 0.6;
	}


/* Close Button */
.close-button {
	width: 40px;
	height: 40px;
	position: absolute;
	left: 14px;
	top: 5px;
	border: none;
	background-image: url(../images/content/left-arrow.png);
	overflow: hidden;
	background-color: #000000;
	z-index: 1001;
	-webkit-background-size: content;
    -moz-background-size: content;
    -o-background-size: content;
    background-size: content;
    background-position: center center;
    background-repeat: no-repeat;
}
.close-button:hover{
	cursor: pointer;
}

/* Menu */
.menu-wrap {
	position: absolute;
	z-index: 1001;
	width: 300px;
	height: 100%;
	top: -100;
	font-size: 13px;
	-webkit-transform: translate3d(-300px,0,0);
	transform: translate3d(-300px,0,0);
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.menu {
	background: black;
	width: calc(100% - 95px);
	height: 2000px;
	-webkit-box-shadow: 2px 0 2px -2px #dadada;
          box-shadow: 2px 0 2px -2px #dadada;
	padding: 25px 10px;
}

.icon-list {
	width: 150px;
}

.icon-list a {
	display: block;
	padding: 0.8em;
	color: white;
	text-decoration: none;
	font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.icon-list a i {
	opacity: 0.5;
}

.icon-list a span {
	margin-left: 10px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 0.75em;
}

/* Morph Shape */
.morph-shape {
	position: absolute;
	width: 120px;
	height: 100%;
	top: 0;
	right: 0;
	fill: #373a47;
	z-index: 1000;
}

/* Shown menu */
.show-menu .menu-wrap {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.show-menu .content-wrap {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
	-webkit-transform: translate3d(100px,0,0);
	transform: translate3d(100px,0,0);
}

.show-menu .content::before {
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
}
