header {
  background-color: #6a90fd;
  color: white;
  text-align: left;
  height: 50px;
  position: fixed;
  width: 100%;
  z-index: 100;
}

header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header-content .header-logo-01 {
  height: 30px;
  width: auto;
  margin: 10px;
}

header .header-content .header-logo-02 {
  height: 25px;
  width: auto;
  margin: 12.5px;
}

@media (max-width: 500px) {
  header nav {
    display: none;
  }
}

header nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
}

header nav ul li {
  margin: 0;
  padding: 0 10px;
}

header nav ul li a {
  color: #6a90fd;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  text-align: center;
}

header nav ul li a img {
  height: 30px;
  width: auto;
  margin-bottom: 5px;
}

@media (min-width: 500px) {
  header nav ul li a:hover {
    color: #f11697;
    background-color: rgba(241, 22, 151, 0.1);
  }
}

header nav ul li .closed {
  color: #969696;
}

@media (min-width: 500px) {
  header nav ul li .closed:hover {
    color: black;
    background-color: rgba(0, 0, 0, 0.1);
  }
}
/*# sourceMappingURL=header.css.map */