#header{
	position: relative;
	width: 100%;
	height: 100vh;
}

#nav-bottom{
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	text-align: right;
	background-color: #0090ca;
	border-top: 10px solid #5a5b5f;
	border-bottom: 10px solid #9b999f;
	z-index: 1;
}

#logo-nav{
	height: 59px;
	float: left;
	display: none;
	transform: all .5s;
}

.nav-fix{
	position: fixed !important;
	border:0 !important;
	top: 0;
	bottom: initial !important;
	transform: all 300ms;
	box-shadow: 0 0 3px black;
}
.nav-fix #logo-nav{
	display: block !important;
}
.nav-fix ul{
	animation: down .5s ease;
}

#nav-bottom ul{
	float: right;
	margin-bottom: 0;
	list-style: none;

}

#nav-bottom li{
	float: left;
}

#nav-bottom a{
	display: block;
	color: white;
	text-decoration: none;
	padding: 20px 30px;
	letter-spacing: 1px;
}

#nav-bottom a:hover{
	background-color: #9b999f;
}
#nav-bottom a:active{
	background-color: #5a5b5f;
}