/* Nav */
.header-content nav{
width:75%;
padding:0 1rem 0 0;	
}
.header-content nav ul {
	display:flex;
	position:static;
	margin:0px;
	padding:0px;
	list-style:none;
	float:right;
}
.header-content nav ul li {
	text-align:center;
	padding:0.5rem 1rem;
	font-weight:700;
}

.header-content nav ul li a {
	display:block;
	font-size:1.2em;
	height:40px;
	line-height:40px;
	color:#0F75BC;
	text-decoration:none;
}
.header-content nav a:link, 
.header-content nav a:visited{
color:#0D0D0D;
text-decoration: none;
}
.header-content nav a:hover{
color:rgba(66,66,66,1.00);	
}


/* mobile nav button - only visible for mobile */
.nav-button{
	width:50px;
	height:50px;
	float:right;
	display:none; /* hidden for mobile only */
}


/* MOBILE STYLES ------------------------------- */
@media only screen and (max-width : 960px) {
.nav-button{
	float:right;
	display:block; /* hidden for mobile only */
}
	.nav-button button{
		width:50px;
		height:50px;
		border: none;
		cursor: pointer;
		text-decoration: none;
		background-image:url("https://flighttechworldwide.com/images/nav-button.png");
		background-repeat: no-repeat;
	}
	
	.nav-button button:hover{
background-color:#e4e2e2;
}
	
.header-content nav ul {
	display:none;
	float:none;
	position:absolute;
	z-index:100;
	top:120px;
	left:0; 
	right:0;
	margin:0 auto;
	background-color:#fff;
	padding:1rem 0;
	box-shadow: 0px 11px 12px rgba(0, 0, 0, 0.2);
}
.header-content nav ul li{
	border-bottom: 1px dotted #000;
}
.header-content nav ul li:last-child{
border-bottom:none;	
}	
.header-content nav ul li {
	text-align:center;
	padding:0;
}	
	
	
	
	
	
}
