/* Hamburger styling */
.hamburger-menu {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 30px;
	height: 20px;
	cursor: pointer;
	z-index: 100;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	display: none;
	z-index: 99991;
}
  
.hamburger-menu .bar {
	height: 4px;
	background: var(--main-color);
	border-radius: 2px;
	margin: 0;
	width: 100%;
	transition: 0.3s ease all;
}
  
.hamburger-menu.active .bar:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .bar:nth-child(2) {
	opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* Nav menu */
aside {
	position: fixed;
	width: 17%;
	min-width: 170px;
	padding-top: 30px;
	height: 100%;
	background-color: var(--secondary-color);
	background-image: url('/images/website/verbo_aside_tr.png');
	background-repeat: no-repeat;
	background-position: 50% 0;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;

	/* Animation for mobile */
	transition: transform 0.3s ease;
	z-index: 9999;
}

aside .logo {
	width: 100%;
	padding-left: 5%;
	padding-right: 5%;
	padding-bottom: 15px;
}

aside li img {
	float: left;
	width: 18px;
	padding-top: 4px;
	margin-left: 10px;
	margin-right: 10px;
}

/* Nav */
nav {
	float: left;
	width: 100%;
	margin: 20px 0;
	font-size: 25px;
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	text-align: left;
	text-transform: uppercase;
}

nav ul {
	z-index: 100;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

nav ul li {
	position: relative;
	display: inline;
}

nav ul li a {
	float: left;
	width: 100%;
	color: #f6f6f6;
	padding: 15px 0;
	text-decoration: none !important;
}

nav ul li a:link, nav ul li a:visited {
	color: #7B8181;
}

nav ul li a.selected { 
	color: #7B8181;
}

nav ul li a:hover {
	color: #00b51a;
}

nav ul li .active {
	color: #00b51a !important;
}

nav ul li .active:hover {
	color: #7B8181;
}

@media only screen and (max-width: 767px) {	
	aside {
		transform: translateX(-240px);
		box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
		min-width: 230px;
	}

	aside.active {
		transform: translateX(0);
	}

	.hamburger-menu{
		display: flex;
	}
	
	nav {
		font-size: 19px;
		margin: 10px 0;
	}
	
	nav ul li a {
		padding: 8px 0;
	}
}