/* Navigation Styles */

/* Header */

.header {
	position: relative;
	width: 100%;
	background: #ffffff;
	height: 85px;
	line-height: 50px;
	box-shadow: 0 -3px 0 darken(#00c6fe, 10%) inset;
	margin: 20px 0px;
}

.header .wrap {
	max-width: 1280px;
	margin: 0 auto;
}

.logo {
	font-family: inherit;
	font-size: 1.5em;
	margin-left: 1em;
}

.logo a{
	color: #ff0000;
	text-decoration: none;
	opacity: 1;
	transition: all 0.2s ease;
}
	
.logo a:hover {
	opacity: 0.85;
}

/* Mobile menu */
#menu-icon {
	display: block;
	position: absolute;
	margin-top: -80px;
	right: 20px;
	color: #7a7a7a;
	text-decoration: none;
	font-weight: bold;
	cursor: pointer;
	opacity: 1;
	padding: 0 0.4em;
}

#menu-icon:hover {
	opacity: 0.85;
	text-decoration: none;
	border: none;
}
	
.navbar {
	float: none;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s;
	background: #ffffff;
	text-transform: uppercase;
}

.navbar .menu {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.navbar .menu li {
	list-style-type: none;
	display: block;
}

.navbar .menu li a {
	display: block;
	text-decoration: none;
	color: #7a7a7a;
	margin: 0px 8px;
	padding: 0px 5px;
	transition: all 0.2s ease;
	border-bottom: 1px solid lighten(#00c6fe, 12%);
}

.navbar .menu li a:hover {
	color: #000000;
}

.navbar .menu li a:active {
	color: #000000;
}

.expand {
	max-height: 50em;
}

@media only screen and (min-width : 868px) {

	.wrap {
		padding-left: 1em;
		padding-right: 1em;
	}
	
	.logo {
		margin-left: 0;
	}

	.logo, .navbar {
		display: inline-block;
	}

	/* Mobile menu icon */
	#menu-icon {
		display: none;
	}

	.navbar {
		float: right;
		max-height: none;
		line-height: 35px;
		margin-top: 30px;
	}
	
	.navbar .menu {
		box-shadow: 0 -3px 0 darken(#00c6fe, 10%) inset;
	}	
	
	.navbar .menu li {
		list-style-type: none;
		display: inline-block;
		text-align: center;
	}	
	
	.navbar .menu li a {
		display: block;
		border-bottom: 0;
	}	
	
	.navbar .menu li a:hover {
		box-shadow: 0 -3px 0 #00c6fe inset;
	}	

	.navbar .menu li a:active {
		box-shadow: 0 -3px 0 #00c6fe inset;
	}
}


