.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
}
.header__inner .lr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.header__inner .lr .left {
  width: 353px;
}
.header__inner .lr .left img {
  width: 100%;
}
.header__inner .lr .right {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 40px;
}
.header__inner .lr .right nav {
  transform: translateY(-6px);
}
.header__inner .lr .right nav ul {
  display: flex;
  justify-content: right;
  gap: 24px;
}
.header__inner .lr .right nav ul li {
  position: relative;
}
.header__inner .lr .right nav ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
.header__inner .lr .right nav ul li::after {
  position: absolute;
  left: 50%;
  bottom: -17px;
  transform: translateX(-50%);
  content: "";
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}
.header__inner .lr .right nav ul li.about::after {
  content: "ABOUT";
}
.header__inner .lr .right nav ul li.product::after {
  content: "PRODUCT";
}
.header__inner .lr .right nav ul li.news::after {
  content: "NEWS";
}
.header__inner .lr .right nav ul li.blog::after {
  content: "BLOG";
}
.header__inner .lr .right nav ul li.company::after {
  content: "COMPANY";
}
.header__inner .lr .right nav ul li.contact::after {
  content: "CONTACT";
}
.header__inner .lr .right .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 202px;
  height: 76px;
  background-color: rgba(0, 0, 0, 0.8);
}
.header__inner .lr .right .btn i {
  display: inline-block;
  margin-right: 8px;
  width: 28px;
}
.header__inner .lr .right .btn i img {
  width: 100%;
}
.header__inner .lr .right .btn span {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
.header.lowerpage, .header.white {
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.header.lowerpage .header__inner .lr .left img, .header.white .header__inner .lr .left img {
  width: 100%;
}
.header.lowerpage .header__inner .right nav ul li a, .header.white .header__inner .right nav ul li a {
  color: #000;
}
.header.lowerpage .header__inner .right nav ul li::after, .header.white .header__inner .right nav ul li::after {
  color: #000;
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .header {
    height: 42px;
    z-index: 10;
  }
  .header__inner .lr .left {
    width: auto;
  }
  .header__inner .lr .left .logo {
    width: 211px;
  }
  .header__inner .lr .right {
    width: auto;
    display: block;
    align-items: center;
    justify-content: right;
    gap: 40px;
  }
  .header__inner .lr .right nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: all 0.3s ease;
    background-color: #fff;
    pointer-events: none;
    visibility: hidden;
  }
  .header__inner .lr .right nav ul {
    padding-top: 100px;
    display: block;
  }
  .header__inner .lr .right nav ul li a {
    font-size: 1.3rem;
    color: #444;
    border-bottom: solid 1px #ddd;
    display: block;
    width: 80%;
    margin: 0 auto;
    padding: 20px 12px;
  }
  .header__inner .lr .right nav ul li::after {
    position: absolute;
    left: initial;
    right: 10%;
    bottom: initial;
    top: 50%;
    transform: translateX(0%) translateY(-50%);
    content: "";
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 2.2rem;
    color: #000;
    text-decoration: none;
    opacity: 0.3 !important;
  }
  .header__inner .lr .right .btn {
    display: none;
  }
  .header__inner .lr .right.is-active nav {
    transition: all 0.3s ease;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .header .ham {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 41px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
  }
  .header .ham span {
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: #fff;
    left: 25%;
    transition: all 0.3s ease;
  }
  .header .ham span:nth-of-type(1) {
    top: calc(35% - 1px);
  }
  .header .ham span:nth-of-type(2) {
    top: calc(50% - 1px);
  }
  .header .ham span:nth-of-type(3) {
    top: calc(65% - 1px);
  }
  .header .ham.is-active span {
    background-color: #777;
  }
  .header .ham.is-active span:nth-of-type(1) {
    top: calc(50% - 1px);
    transform: rotate(45deg);
    transition-duration: 0.3s;
  }
  .header .ham.is-active span:nth-of-type(2) {
    top: calc(50% - 1px);
    transform: rotate(-45deg);
    transition-duration: 0.3s;
  }
  .header .ham.is-active span:nth-of-type(3) {
    opacity: 0;
    transition-duration: 0.3s;
  }
  .header.lowerpage .ham span, .header.white .ham span {
    background-color: #777;
  }
  .header.lowerpage .ham.is-active span, .header.white .ham.is-active span {
    background-color: #777;
  }
}/*# sourceMappingURL=header.css.map */