#header {
  width: 100%;
  max-width: 1400px;
  height: 60px;
  position: fixed;
  z-index: 999;
  background-color: #060622;
  border-bottom: #252B41;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header Nav .menu {
  display: flex;
  margin: 1px;
  padding: 1px;
  justify-content: center;
  align-items: center;
}
#header Nav .menu li a {
  padding: 0.2rem;
  margin: 0px 4px;
  min-width: 4.8rem;
  min-height: 1.6rem;
  text-align: center;
  justify-content: center;
  align-items: center;
  line-height: 1.6rem;
  border: 1px;
  border-style: solid;
  border-color: transparent;
  border-radius: 2px;
}
@media screen and (max-width: 1000px) {
  #header Nav .menu li a {
    font-size: 12px;
  }
}
@media screen and (max-width: 800px) {
  #header Nav .menu {
    display: none;
  }
}
#header Nav .menu li:last-child {
  margin-right: 20px;
}
#header Nav .menu a:hover {
  border: 1px;
  border-style: solid;
  border-color: white;
  border-radius: 2px;
}
#header Nav.is-active {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 92;
  display: inline-flex;
  flex-direction: column;
  width: 50%;
  background-color: rgba(122, 122, 122, 0.3);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  border-radius: 0px 0px 0px 22px;
  border-bottom: 1px;
  border-left: 1px;
  border-right: 0px;
  border-top: 0px;
  border-style: solid;
  border-color: white;
}
#header Nav.is-active ul {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
#header Nav.is-active ul a {
  display: block;
  font-size: 22px;
  padding: 1.5rem 0.5rem;
  min-width: 8.8rem;
}
#header Nav.is-active ul li:first-child {
  margin-top: 44px;
}
#header Nav.is-active ul li:last-child {
  margin-right: 0;
}
#header .menu_icon {
  display: none;
  position: fixed;
  z-index: 200;
  background-color: transparent;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  top: 22px;
  right: 22px;
  cursor: pointer;
}
#header .menu_icon span {
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 4.8px;
  background: #FFFFFF;
}
#header .menu_icon span:before, #header .menu_icon span:after {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 4.8px;
  background-color: #FFFFFF;
  content: "";
}
#header .menu_icon span:before {
  top: -12px;
  z-index: 99;
}
#header .menu_icon span:after {
  bottom: -12px;
  z-index: 99;
}
@media screen and (max-width: 800px) {
  #header .menu_icon {
    display: block;
    z-index: 99;
  }
}
#header .menu_icon_x span {
  transition: background 0s 0.2s;
}
#header .menu_icon_x span:before, #header .menu_icon_x span:after {
  transition-duration: 0.1s, 0.1s;
  transition-delay: 0.1s, 0.1s;
}
#header .menu_icon_x span:before {
  transition-property: top, transform;
}
#header .menu_icon_x span:after {
  transition-property: bottom, transform;
}
#header .menu_icon_x.is-active span {
  background: none;
}
#header .menu_icon_x.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}
#header .menu_icon_x.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
#header .menu_icon_x.menu_icon_x.is-active span:before, #header .menu_icon_x.menu_icon_x.is-active span:after {
  transition-delay: 0.3s, 0.3s;
}

#logo {
  float: left;
  width: 22rem;
  margin: 10px;
  padding: 0;
}
@media screen and (max-width: 800px) {
  #logo {
    width: 18rem;
  }
}
#logo img {
  width: 100%;
  height: auto;
}

.menu {
  float: right;
}