* {
  margin: 0;
  padding: 0;
  font-family: 'dejavu_sans_monobook', sans-serif;
}

a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  padding: 18px;
  line-height: 1.5em;
  -webkit-transition: background-color 0.5s ease-out 0s;
  transition: background-color 0.5s ease-out 0s;
}

a:hover {
  background-color: #65c9ff;
}

.nav {
  background-color: #25557c;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 59px;
      grid-template-rows: 59px;
  width: 100%;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: height 0.5s ease-out 0s;
  transition: height 0.5s ease-out 0s;
  z-index: 1;
}

ul.navlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

ul li {
  display: inline-block;
  margin-right: 20px;
  padding: 8px;
}

ul.left-list li {
  display: block;
}

ul.right-list li {
  display: block;
  margin-left: 20px;
}

ul.tools {
  display: block;
}

.logo {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  left: 20px;
  top: 1em;
  color: white;
  text-transform: uppercase;
}

.logo a {
  padding: 0;
  text-decoration: none;
  color: white;
}

.logo a:hover {
  background-color: #25557c;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 670px) {
  .nav1 {
    height: 300px !important;
  }
  .nav {
    background-color: #25557c;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 174px;
    grid-template-rows: 174px;
    width: 100%;
    position: fixed;
    right: 0;
    top: 0;
    height: 59px;
    -webkit-transition: height 0.5s ease-out 0s;
    transition: height 0.5s ease-out 0s;
    z-index: 1;
  }
  ul.navlist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 60px;
  }
  ul li {
    display: inline-block;
    margin-right: 20px;
    padding: 8px;
    padding-bottom:50px;
  }
  #nav-toggle {
    display: inline-block;
    cursor: pointer;
    position: fixed;
    right: 15px;
    top: 5px;
  }
  .bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #fff;
    margin: 6px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
  }
  .change .bar2 {
    opacity: 0;
  }
  .change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
  }
  .navlist.mobile-toggle {
    display: none;
  }
}
/*# sourceMappingURL=nav.css.map */