body {
    overflow-x: hidden;
 }

/* Toggle Styles */

#wrapper {
    padding-right: 0;
}

#sidebar-wrapper {
    position: fixed;
    right: 0;
    width: 250px;
    height: 100%;
    overflow-y: auto;
	background-color: #353639;
	-webkit-transform: translateX(250px);
			transform: translateX(250px);
    -webkit-transition: transform 300ms linear;
    -moz-transition: transform 300ms linear;
    -o-transition: transform 300ms linear;
    transition: transform 300ms linear;
}

#wrapper.toggled #sidebar-wrapper {
	-webkit-transform: none;
			transform: none;
    -webkit-transition: transform 300ms linear;
    -moz-transition: transform 300ms linear;
    -o-transition: transform 300ms linear;
    transition: transform 300ms linear;
	z-index: 100;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
    margin-left: 0;
    padding: 0;
	-webkit-transform: none;
			transform: none;
    -webkit-transition: transform 300ms linear;
    -moz-transition: transform 300ms linear;
    -o-transition: transform 300ms linear;
    transition: transform 300ms linear;
}

#wrapper.toggled #page-content-wrapper {
	-webkit-transform: translateX(-250px);
			transform: translateX(-250px);
    -webkit-transition: transform 300ms linear;
    -moz-transition: transform 300ms linear;
    -o-transition: transform 300ms linear;
    transition: transform 300ms linear;
}

/* Sidebar Styles */

.absolution {
    position: absolute;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
	text-align: center;
}

.sidebar-nav {
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
	text-align: center;
	padding-top: 100px;
}

.sidebar-nav li {
	text-transform: uppercase;
	padding: 10px;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #D4DCE1;
}

.nav-parent {
	position: relative;
	height: 50vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
  	height: calc(var(--vh, 1vh) * 50);
}

.nav-parent-links {
	min-height: 500px;
}
	
.nav-child {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

/* -------- HAMBURGER STYLES  -------- */
	
.hamburger {
	position: fixed;
	z-index: 1000;
	top: 30px;
	right: 95px;
	padding: 3px 0 0 0;
	margin: 0;
	width: 60px;
	height: 45px;
	border-radius: 7px;
	background-color: rgba(2, 10, 21, 0.5);
	-webkit-transition: background-color 0.5s;
	-moz-transition: background-color 0.5s;
	-o-transition: background-color 0.5s;
	transition: background-color 0.5s;
	cursor: pointer !important;
}

.hamburger:hover, .hamburger:focus {
	background-color: rgba(2, 10, 21, 1);
	-webkit-transition: background-color 0.5s;
	-moz-transition: background-color 0.5s;
	-o-transition: background-color 0.5s;
	transition: background-color 0.5s;
}

.hamburger.is-active:hover, .hamburger:hover {
	opacity:1;
}

.hamburger-box {
	width: 36px;
	height: 24px;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
	width: 36px;
	height: 2px;
	background-color: #ffffff;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
	background-color: #ffffff;
}

/* -------- FONT STYLES  -------- */

a.nav-list, a.nav-list-active {
	font-size: .9em;
	line-height: 1.1em;
    position: relative;
    text-align: center;
    text-transform: capitalize;
    z-index: 1; 
	margin: 0;
	padding: 0;
	cursor: pointer;
}

a.nav-list:before, a.nav-list-active:before {
    content:"";
    margin: 0 auto;
    position: absolute;
    top: 9px; 
	left: 0; 
	right: 0; 
	bottom: 0;
    width: 95%;
    z-index: -1;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

a.nav-list:before {
	transform: scaleX(0);
    border-top: solid 1px #353639;
}

a.nav-list-active:before {
	transform: scaleX(1);
    border-top: solid 1px #ffffff;
}

a.nav-list-active:hover, a.nav-list-active:focus {
    color: #ffffff !important;
	cursor: default !important;
}

a.nav-list span, a.nav-list-active span { 
	background-color: #353639;
	padding: 0 10px; 
}

a.nav-list-active span {
    color: #ffffff !important;
}

.nav-logo {
	width: 90px;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 10px;
}
	
p.legal, p.legal a {
	line-height: 1.25em;
	color: #D4DCE1;
	text-align: center;
}

p.legal {
	font-size: .6em;
	line-height: 1.4em;
}

p.legal a {
	font-size: 1em;
	line-height: 2em;
}

.footer-legal {
	padding-top: 25px;
}

/* -------- SMALL SCREEN ADJUSTMENTS  -------- */

@media only screen and (max-width : 767px) {
	
	#sidebar-wrapper {
    	width: 300px;
		-webkit-transform: translateX(300px);
				transform: translateX(300px);
	}

	#wrapper.toggled #page-content-wrapper {
		-webkit-transform: translateX(-300px);
				transform: translateX(-300px);
	}
	
	.absolution, .sidebar-nav {
		width: 300px;
	}
	
	.hamburger {
		right: 35px;
	}
	
	a.nav-list, a.nav-list-active {
		/* font-size: 21px;
		line-height: 21px; */
		font-size: 1.1em;
		line-height: 1.1em;
	}
	
	a.nav-list:before, a.nav-list-active:before {
    	top: 10px; 
	}

	p.legal {
		/* font-size: 14px;
		line-height: 16px; */
		font-size: .75em;
		line-height: 1.5em;
	}

	p.legal a {
		/* font-size: 12px;
		line-height: 24px; */
		font-size: 1em;
		line-height: 3em;
	}
}