/* body {
	margin: 0;
	padding: 0;
	font-family: 'Roboto Condensed';
	background: #C1C1C1;
} */

/* Header */
header {
	/* position: absolute;
    top: 121px;
    left: 0;
    padding: 0 100px;
    background: #25c996;
    width: 100%;
    box-sizing: border-box; */
}

.header-nav {
    left: 0;
    background: #25c996;
    box-sizing: border-box;
	border-radius: 15px 15px 0 0 !important;
	z-index: 1000 !important;
}

/* LOGO */
/* header .logo {
	color: #FFF;
	height: 50px;
	line-height: 50px;
	font-size: 24px;
	float: left;
	font-weight: bold;
} */

/* Dropdown Nav */
header nav {
	/* float: right; */
}

/* UL */
header nav ul {
	margin: 0;
	padding: 0;
	display: flex;
z-index: 1080 !important;
}

/* Nav Items */
header nav ul li {
	list-style: none !important;
	position: relative;
}

/* Sub-menu */
header nav ul li.sub-menu:before {
	content: '\f0d7';
	font-family: fontAwesome;
	position: absolute;
	line-height: 50px;
	color: #FFF;
	right: 5px;
	cursor: pointer;
}

header nav ul li.active.sub-menu:before {
	content: '\f0d8';
}

header nav ul li ul {
	position: absolute;
	left: 0;
	background: #25c996;
	display: none;
}

header nav ul li.active ul {
	display: block;
}

header nav ul li ul li {
	display: block;
	width: 200px;
}

header nav ul li a {
	height: 50px;
	line-height: 50px;
	padding: 0 20px;
	color: #FFF;
	text-decoration: none;
	display: block;
}

header nav ul li a:hover, header nav ul li a.active {
	color: #FFF;
	background: #EFB000;
}

/* Toggle Button */
.menu-toggle {
	color: #FFF;
	float: right;
	line-height: 50px;
	font-size: 24px;
	cursor: pointer;
	display: none;
}

/* Media Queries */
@media (max-width: 991px) {
	header {
		padding: 0 20px;
	}

	.menu-toggle {
		display: block;
	}

	header nav {
		/* position: absolute; */
		width: 100%;
		/* height: calc(100vh - 50px); */
		background: #25C996;
		top: 50px;
		left: -100%;
		transition: 0.5s;
	}

	header nav.active {
		left: 0;
	}

	header nav ul {
		display: block;
		text-align: center;
	}

	header nav ul li a {
		border-bottom: 1px solid rgba(0,0,0,.2);
	}

	header nav ul li.active ul {
		position: relative;
		background: #EFB000;
	}

	header nav ul li ul li {
		width: 100%;
	}
}
