 
.navigation {
  
  background: #1A1A1A;
width:100%;
position: fixed;
z-index: 2000;
padding: 0 0 10px 0;
	display: block;
}
@media only screen and (max-width: 940px) {
	.navigation {
overflow-y: auto; 
padding: 0 0 0 0;
}
}

.brand {
  position: absolute;
  padding:11px 0 0 0;
  float: left;
  /*text-transform: uppercase;*/
  font-size: 1.4em;
}
.brand img{
  width:180px;
}
.brand h1{
  position: absolute;
	left:190px;
	top:10px;
	color: #FFF;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 14px;
	width: 160px;
}

@media only screen and (max-width: 1100px) {
    
  .brand {
  position: absolute;
  padding: 3px 0 0 5px;
  line-height: 15px;
  font-size: 1.4em;
}
.brand img{
  width:120px;
}  
.brand h1{
  position: absolute;
	left:5px;
	top:17px;
	color: #FFF;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 12px;
	width: 120px;
}	
	
}


.brand a,
.brand a:visited {
  color: #ffffff;
  text-decoration: none;
}

.nav-container {
	max-width: 1960px;
	width:96%;
	margin: 12px auto 0px auto;	/*height: 40px;*/
}

nav {
  float: right;
margin: 0px 0px 0 80px;
}


@media only screen and (max-width: 940px) {
.nav-container {
    margin: 10px auto 0 auto;
height: 50px;
    }
nav {
  float: right;
margin: 5px 0px 0 0;
}  
}


nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a,
nav ul li a:visited {
  display: block;
  padding: 0 15px;
  line-height: 50px;
  /*background: #262626;*/
  color: #fff;
  text-decoration: none;
border-bottom: 2px solid #1a1a1a;
}
nav ul li span.no-link{
  display: block;
  padding: 0 15px;
  line-height: 50px;
  /*background: #262626;*/
  color: #555;
  text-decoration: none;
border-bottom: 2px solid #1a1a1a;
}



nav ul li.location a,
nav ul li.location a:visited {
border-bottom: 2px solid #fff;
}

nav ul li.location li a,
nav ul li.location li a:visited {
border-bottom: 2px solid #FFF;
}
nav ul li.location li a:hover{
border-bottom: 2px solid #fff;
}

nav ul li a:hover,
nav ul li a:visited:hover {
  border-bottom: 2px solid #fff;
text-decoration: none;
/*color: #444;*/
  color: #fff;
transition: all 100ms ease-in;
}



nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: " ▾";
}
nav ul li ul li {
  min-width: 190px;
}
nav ul li ul li a {
  padding: 16px 10px 14px 10px;
  line-height: 15px;
 border-bottom: 1px solid #999;
}
nav ul li ul li a:hover {
 border-bottom: 1px solid #999;
	background: #666;
}

@media only screen and (max-width: 940px) {
	
	nav ul li ul li a {
 border-bottom: 1px solid #1A1A1A;
}
nav ul li ul li a:hover {
 border-bottom: 1px solid #FFF;
	background: #333;
}
}


.nav-dropdown {
  position: absolute;
  display: none;
  z-index: 1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
background: #333;
opacity: 1;
}

/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  /*background: #262626;*/
  height: 65px;
  width: 65px;
}

@media only screen and (max-width: 940px) {
  .nav-mobile {
    display: block;
  }

  nav {
    width: 100%;
    padding: 30px 0 0px 0;
    
  }
  nav ul {
    display: none;
      background: #333;
    margin:30px 0 0 0;
  }
	
	nav ul.nav-list {
    margin:20px 0 0 0;
		height: 80vh;
		overflow-y: auto;
  }
	
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 10px 15px 10px;
    line-height: 20px;
  }
   nav ul li ul{
    margin:0px 0 0 0;
  }   
  nav ul li ul li a {
    padding-left: 30px;
  }

  .nav-dropdown {
      display: block !important;
   position: relative;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0);
background: #333;
  }
}
@media screen and (min-width: 940px) {
  .nav-list {
    display: block !important;
	}
	  
}
/*
  nav ul.nav-list {
    display: none;
      background: #333;
    margin:20px 0 0 0;
		height: 80vh;
		overflow-y: auto;
  }
*/

#nav-toggle {
  position: absolute;
  left: 20px;
  top: 20px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 1px;
  width: 32px;
  background: #fff;
  position: absolute;
  display: block;
  content: "";
  transition: all 200ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

article {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;
}


