.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  z-index: 999;
}

.header-top {
  position: absolute;
  height: 60px;
  width: 100%;
  background-color: #2f2f2f;
  border-bottom: 2px solid #646464;
}

.close-icon {
  position: fixed;
  top: 10px;
  right: 20px;
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #2f2f2f;
}

.close-icon span,
.close-icon span:before,
.close-icon span:after {
  content: "";
  display: block;
  height: 2px;
  width: 30px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}

.close-icon span:before {
  transition: all 0.4s;
  bottom: 8px;
}

.close-icon span:after {
  transition: all 0.4s;
  top: 8px;
}
div.close-icon.active span {
  background-color: #2f2f2f;
  transition: all 0.4s;
}

div.close-icon.active span:before {
  bottom: 0;
  transform: rotate(45deg);
  transition: all 0.4s;
}

div.close-icon.active span:after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 0.4s;
}

.header-body {
  margin: 0;
  height: 60px;
}

.header-logo {
  margin-left: 20px;
  width: 80px;
  height: 60px;
  position: absolute;
  z-index: 90;
}

.header-x-icon {
  position: absolute;
  top: 19px;
  right: 80px;
  width: 22px;
  height: 22px;
  z-index: 90;
}

.header-x-icon img {
  width: 100%;
  height: auto;
}

.menu-text {
  padding-top: 12px;
  margin: 0 20px;
  height: 36px;
  font-family: "Anton", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  display: flex;
  align-items: center;
  letter-spacing: 0.025em;

  color: #ffffff;
}

.menu-list {
  width: 100%;
  height: 360px;
  position: fixed;
  top: -100%;
  background-color: #2f2f2f;
  z-index: -10;
  transition: all 0.4s;
  border-top: 2px solid #646464;
}

.menu-list.active {
  top: 58px;
}

ul {
  margin: 0;
  padding-left: 0;
}

li {
  list-style: none;
  height: 58px;
  border-top: 2px solid #646464;
}

li:last-child {
  margin-top: -1px;
  border-bottom: 2px solid #646464;
}

.logo-under {
  display: block;
  width: fit-content;
  text-decoration: none;
}

.header-under {
  width: fit-content;
}

.under {
  display: block;
  height: 100%;
  text-decoration: none;
}

.chevron-right-icon {
  position: absolute;
  display: inline-block;
  right: 54px;
}

.chevron-right-icon::before {
  content: "";
  width: 15px;
  height: 15px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  position: absolute;
  transform: rotate(45deg);
  top: 20px;
}

@media all and (orientation: landscape) {
  @media all and (max-height: 359px) {
    .menu-list.active {
      overflow-x: scroll;
      height: 340px;
    }
  }
}
