.navigation {
    height: 50px;
    background: #333;
    border-bottom: 2px solid #444;
    z-index: 100;
    position: fixed;
    top: 0;
    bottom: 0;
    width:100%;
  }
  
  .brand {
    position: absolute;
    margin-left: 10px;
    margin-top: 15px;
    float: left;
    background-image: url("../images/logo.png");
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: left center;
    width:180px;
    height:25px;
  }

  .brand p {
    color: #ddd;
    text-decoration: none;
    padding-left: 35px;
    line-height: 25px;
    font-size: 16px;
    margin: 0 0;
  }

  .nav-container {
    max-width: 100%;
    margin: 0 auto;
  }

  .navigation svg {
    padding: 10px 10px;
    box-sizing: content-box !important;
  }
  
  .navigation nav {
    float: right;
  }
  .navigation nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .navigation nav ul li {
    float: left;
    position: relative;
  }
  .navigation nav ul li a,
  .navigation nav ul li a:visited {
    display: block;
    padding: 0 10px;
    line-height: 50px;
    background: #333;
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
  }
  .navigation nav ul li a:hover,
  .navigation nav ul li a:visited:hover {
    background: #444;
    color: #ddd;
  }
  .navigation nav ul li a:not(:only-child):after,
  .navigation nav ul li a:visited:not(:only-child):after {
    padding-left: 4px;
    content: ' ▾';
  }
  .navigation nav ul li ul li {
    min-width: 190px;
  }
  .navigation nav ul li ul li a {
    padding: 15px;
    line-height: 16px;
  }
  
  .nav-dropdown {
    position: absolute;
    display: none;
    z-index: 100;
    box-shadow: 0 3px 12px rgba(255, 255, 255, 0.15);
  }
  
  /* Mobile navigation */
  .nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: #333;
    height: 50px;
    width: 70px;
  }
  
  @media only screen and (max-width: 818px) {
    .nav-mobile {
      display: block;
    }

    .navigation svg {
      padding: 0px 0px;
    }
  
    .navigation nav {
      width: 100%;
      padding: 50px 0 0;
    }
    .navigation nav ul {
      display: none;
    }
    .navigation nav ul li {
      float: none;
    }
    .navigation nav ul li a {
      padding: 10px;
      line-height: 20px;
    }
    .navigation nav ul li ul li a {
      padding-left: 30px;
    }
  
    .nav-dropdown {
      position: static;
    }
  }
  @media screen and (min-width: 819px) {
    .nav-list {
      display: block !important;
    }
  }
  #nav-toggle {
    position: absolute;
    left: 18px;
    top: 14px;
    cursor: pointer;
    padding: 10px 35px 16px 0px;
  }
  #nav-toggle span,
  #nav-toggle span:before,
  #nav-toggle span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 4px;
    width: 25px;
    background: #ddd;
    position: absolute;
    display: block;
    content: '';
    transition: all 300ms 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);
  }
  
  .navigation article {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
  }