/*  BEGIN NAVIGATION BAR */
#nav-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 165px;
	height: 165px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #474a4f;
	width: 100%;
	flex-flow: row-wrap;
	list-style: none;
	text-align: left;
}


@media all and (max-width: 599px) {
  #nav-bar {
    flex-flow: column wrap;
    padding: 0;
  }
}





#nav-bar figcaption {
	color: white;
	font-family: 'Lato', sans-serif;
	font-size: 15px;
}

@media all and (min-width: 935px) {
	nav ul {
		float: right;
		list-style-type: none;
	}
	 
	nav li {
		height: 25px;
		float: left;
		margin-right: 0px;
		padding: 0 20px;
	}
}

@media all and (min-width: 935px) {
.nav-logo {
	width: 215px;
	margin: -15px 0 0 0;
}

}
 
nav li:last-child {
	border-right: none;
}
 
nav li > a {
	text-decoration: none;
	color: white;
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	font-size: 15px;
 
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
 
nav li > a:hover {
	color: #666;
}
 
nav li.active > a {
	font-weight: bold;
	color: #000;
}

@media all and (max-width: 934px) {
.nav-logo{
		width: 130px;
		margin: 0 0;
}
}
/* END NAVIGATION BAR */