.header-container {
    height: 70px;
    background: #ffffff;
    box-shadow: 0px 3px 10px 0px rgba(0,0,0,0.17);
    display: flex;
    justify-content: space-around;
  }
  .branding{
  align-self: center;
  height: 70px;
  display: flex;
  align-items: center;
  }
.brand a, .brand a:visited {
    color: #fff;
    text-decoration: none;
    height: 70px;
    display: flex;
  }
.brand img {
    align-self: center;
}
nav {
  align-self: center;
  max-width: 750px;
  flex-grow: .5;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
.menu-hide{
  display: block;
}
.menu-show{
  display: flex;
  transition: all;
  opacity: 1;
  height: auto;
  transition-duration: 1s;
}
 ul li {
    display: block;
    line-height: 70px;
    background: #ffffff;
    color: #656565;
    text-decoration: none;
    transition-duration: .3s;
    flex-grow: 1;
  }
  ul li a, .has-dropdown span {
    padding: 0px;
    height: 100%;
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none;
  }

  /* ------- pseudo classes ------- */
nav ul li a:hover, nav ul li a:visited:hover,
nav ul li a:focus {
    background: #085DAD;
    color: #fff;
  }
li.hover a,ul li.hover a, .has-dropdown span:hover {
  background: #085DAD;
  color: #fff;
  display: block;
}
nav ul li a:not(:only-child):after,
.has-dropdown span:after,
 nav ul li a:visited:not(:only-child):after {
    padding-left: 4px;
    content: '\e801';
    font-family: "fa5-micro-normal";
  }
nav ul li a:not(:only-child):hover > nav ul li a:not(:only-child)::after{
    transform: rotate(180deg);
    display: inline-block;
}

.nav-list{
      
      justify-content: space-around;
      align-items: center;
  }

.nav-list:hover > .nav-dropdown {
      display: block;
}
.nav-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  }
  /* Mobile navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: #262626;
    height: 70px;
    width: 70px;
    z-index: 1;
  }

  @media (max-width: 1024px) {
    .nav-mobile {
      
      border: none;
    }
    .header-container {
      flex-direction: column;
      height: auto;
    }
    .navigation {
        height: auto;
    }
    .nav-container {
        flex-direction: column;
        background-color: #ffffff;
    }
    .brand{
        align-self: center;
    }
    .brand img {
        max-width: 200px;
    }
    .nav-list {
      
        width: 100%;
    }
    ul li {
      width: 100%;
    }
    .menu-show{
      flex-direction: column;
    }
    .menu-hide{
      opacity: 0;
      height: 0;
      overflow: hidden;
      transition: opacity 1s ease-out;
    }
    nav {
      width: 100%;
      max-width: 100%;
      padding: 0px;
      border-top: solid thin rgba(128, 128, 128, 0.24);
    }
    nav ul {
      display: none;
    }
    .nav-dropdown {
      position: static;
    }


#toggle-menu {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
}
#toggle-menu span, #toggle-menu span:before, #toggle-menu span:after {
  cursor: pointer;
  height: 2px;
  width: 35px;
  background: #fff;
  position: absolute;
  display: block;
  content: '';
  transition: all 200ms ease-in-out;
}
#toggle-menu span:before {
  top: -10px;
}
#toggle-menu span:after {
  bottom: -10px;
}
#toggle-menu.active span {
  background-color: transparent;
}
#toggle-menu.active span:before, #toggle-menu.active span:after {
  top: 0;
}
#toggle-menu.active span:before {
  transform: rotate(45deg);
}
#toggle-menu.active span:after {
  transform: rotate(-45deg);
}
}
article {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
  }
  @media (min-width: 1025px) {
   .menu-hide{
     display: flex;
   }
  }
  @media (max-width:760px){
    .brand{
        align-self: flex-start;
    }
    img.logo {
      max-width: 175px;
  }
  }