.header {
  /*position: sticky;*/
  /*top: 0;
  left: 0;
  right: 0;*/
  background-color: rgba(243, 243, 243, 0.9);
}
.header .header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  background-color: rgba(243, 243, 243, 0.9);
}
.header .header-inner .logo-ctn {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  height: auto;
  background-color: #f3f3f3;
  z-index: 101;
}
.header .header-inner .logo-ctn img {
  width: 10.2rem;
  height: 6rem;
  margin: 0.5rem 0;
}
.header .header-inner nav {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  margin: 8rem 3rem 0;
}
@media screen and (min-width: 768px) {
  .header .header-inner nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 720px;
  }
}
.header .header-inner nav a {
  padding: 5px 10px;
  font-size: 14px;
  color: black;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, text-shadow 0.2s;
}
.header .header-inner nav a:hover {
  color: #27aae2;
  text-shadow: 0 0 1px #27aae2;
}/*# sourceMappingURL=header.css.map */