/* Vorsicht. Verursacht returns nach allen Arten von Tags!
*:after {
	content: '';
	clear: both;
	display: table;
}
*/
#toggle-btn {display: none;}

nav {
	position: fixed;
	background: #fff;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, .2);
	width: 100%;
	height: 4rem;
	padding-left: 2vw;
	z-index:1;
}

nav ul {
	list-style-type: none;
	float: right;
	margin-right: 4vw;
}

nav ul li {
	float: left;
	margin-left: .8em;
	line-height: 2rem;
	font-size: 1rem;
}

nav ul li a {
	text-decoration: none;
	display: inline-block;
	color: #253081;
	text-transform: uppercase;
	font-weight: 600;
	transition: all .3s ease-in;
}

nav ul li a:hover {
	text-decoration: none;
	box-shadow: inset 0px -5px 0px #253081; 
}



