body {
  
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size:16px;
  background-color: rgba(15, 15, 15,1);
	line-height: 1rem;
	font-family: 'Maven Pro', sans-serif;
	color: #B2B2B2;
	font-weight: 200;
}
/*//////////HEADER.PHP///////////////////////////*/
header {
  display:flex;
  flex-wrap: wrap; 
  background-color: rgba(21,21,21,0.9);
  width:100%;
  position:fixed;
  top:0;
 
}

.logo {
  max-height:50px;
}
.menu {
  margin-left:auto;
  display: flex;
justify-content: center; /* align horizontal */
align-items: center; /* align vertical */
	position:relative;
}

.navItem, .subnavItem {
  color: #0270B0;
 padding:2rem 4rem;
 text-decoration:none;
}

.navItem {
	position:relative;
}

.subnav {
	display:none;
}

.navItem:hover, .subnavItem:hover {
  background-color:rgba(2,112,176,0.2);	
	color:grey;
  
}

.navItem:hover .subnav {
	display:flex;
	flex-direction:column;
	position:absolute;
	
	
}



#mobile_menu {
	display:none;
}
.mobile_submenu {
	display:none;
}


/*/////////////////////////////SECTION CONTENT//////////////////////////////////*/

.slideshow {
  z-index:1;
}


/*///////////////////////FOOTER.PHP/////////////////////////*/
footer {
  margin: auto auto 4px auto;
}








