/* Navigation */
nav {}
header nav {}
nav a,nav a:visited,nav a:hover {
  /* Nav link styles */
  line-height: 50px;
  color:#12294b;
  border-radius: 4px;
  margin: 0 4px;
}

nav a:hover,nav li:hover > a {
  /* Nav link hover state */
  background: rgba(255,255,255,.2);
}

nav .selected_nav > a
,nav .selected_nav > a:visited
,nav .selected_nav > a:hover {
  /* Nav link of current (selected) page */
  background: rgba(175,175,175,.2);
} 

/*Dropdown menu item styles*/
nav ul ul a
,nav ul ul a:visited {
  color:#000;
  background:#efefef;
}

nav ul ul a:hover {
  color:#000;
  background:#ccc;
}

/* Nav links in footer */
footer nav a,footer nav a:visited,footer nav a:hover
,footer nav .selected_nav a
,footer nav .selected_nav a:visited
,footer nav .selected_nav a:hover {
  color:#bbb;
  background: none;
  font-style: normal;
  font-weight: normal;
}

nav .at-toolbar2.at-minimal_toolbar.at-draggable {
  /* Adjust position of nav editing toolbar */
  top:-20px;
}

.mobile-top-nav-show,.mobile-top-nav-hide {
  /* Toggle buttons/links for showing/hiding mobile navigation menu */
  color:#000;
}

@media (max-width:800px),(max-device-width: 800px) {
  /* Mobile nav break point */
  nav {height:100%;display: flex;justify-content: center;align-items: stretch;flex-flow: column;}
  nav a,nav a:visited,nav a:hover {border-radius: 0;margin: 0;}

  .header-contact {
   font-size: 3rem;
  }

}


