@charset "utf-8";
/* CSS Document */

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: navy;
}

nav ul li {
  display: block;
  position: relative;
  float: left;
  background: navy;
  width: 12%;
  margin-left: 2%;
  text-align: center;
}

/* */

nav ul ul {
  display: none;
  position: absolute;
  width: 100%;
  background: navy;
  padding-top: 20px;
}

nav ul li:hover ul  {
  display: block;  
}

nav ul li ul li {
   display: block;
    border-bottom: 1px black solid;
  background: navy;
    text-align: left;
    padding-left: -50px;
    position: relative;
    width: 90%;
  }

  nav a {
      text-decoration: none;
  }

  nav a:visited, nav a, nav li {
      color: white;
  }
  
  nav a:hover {
    color: #bbb;
  }

  #mobile-header {
      display: none;
  }

@media only screen and (max-width: 1500px){
	#navigation {
		display: none;
    }

    #mobile-header {
      display: block;
      border-bottom: none;
  }
}