header {
  background: linear-gradient(to left top, #222831, #393E46);
  height: 10vh;
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
}
header nav {
  justify-content: space-between;
  display: flex;
  height: 100%;
  align-items: center;
}
header nav .logo {
  display: flex;
  align-items: center;
}
header nav .logo img {
  max-height: 75px;
}
header nav .nav-toggle {
  width: 45px;
  margin-right: 25px;
}
header nav .nav-toggle span {
  margin-top: 9px;
  display: block;
  width: 100%;
  height: 3px;
  background: #EEEEEE;
  transition: all 900ms;
  transform-origin: 0px 100%;
}
header nav .nav-toggle .line1__bar {
  transform: rotate(45deg) translate(-5px, 1.5px);
}
header nav .nav-toggle .line2__bar {
  opacity: 0;
  margin-left: -45px;
}
header nav .nav-toggle .line3__bar {
  transform: rotate(-45deg) translate(-6px, 2.5px);
}
header .menu {
  margin: 0;
  padding: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  list-style: none;
  align-items: center;
  background-color: #00ADB5;
  width: 100%;
  transition: left 500ms;
  left: 100%;
}
header .menu a {
  color: #EEEEEE;
  text-decoration: none;
}
header .menu li {
  font-size: 20px;
  text-transform: uppercase;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  border-bottom: 2px solid #222831;
  width: 100%;
  text-align: center;
}
header .menu li img {
  max-width: 50px;
}
header .menu-contact {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .visible {
  left: 0;
  transition: left 500ms;
}

@media (min-width: 768px) {
  header {
    display: flex;
  }
  header nav {
    width: 50%;
  }
  header nav .nav-toggle {
    display: none;
  }
  header .menu {
    position: static;
    width: 50%;
    flex-direction: row;
    background-color: transparent;
    margin-right: 25px;
  }
  header .menu li {
    border-bottom: none;
  }
  header .menu li:hover {
    font-weight: bold;
    color: #EEEEEE;
    background-color: #00ADB5;
    box-shadow: 1px 1px 1px #222831;
    border-radius: 3px;
  }
  header .menu-contact {
    min-width: 200px;
  }
  header .menu-contact img {
    max-width: 50px !important;
    height: 35px !important;
    padding-right: 10px;
  }
}

/*# sourceMappingURL=header.css.map */
