.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
  height: 100px;
  width: 100%;
}
.header__inner {
  height: 100%;
  padding-left: 30px;
}
.header__inner .lr {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__inner .lr .left .logo-gr {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: left;
}
.header__inner .lr .left .logo-gr .logo {
  max-width: 391px;
  width: 100%;
  height: auto;
}
.header__inner .lr .left .logo-gr .logo img {
  width: 100%;
  height: auto;
}
.header__inner .lr .left .logo-gr .txt {
  transform: translateY(4px);
  font-size: 1.6rem;
  color: #056AB8;
  white-space:nowrap;
}
.header__inner .lr .right {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: right;
}
.header__inner .lr .right nav {
  margin-right: 30px;
}
.header__inner .lr .right nav ul {
  display: flex;
  gap: 32px;
}
.header__inner .lr .right nav ul li {
  position: relative;
  transform: translateY(-8px);
}
.header__inner .lr .right nav ul li a {
  font-size: 1.6rem;
  color: #000000;
  letter-spacing: 0.1em;
}
.header__inner .lr .right nav ul li::after {
  position: absolute;
  bottom: -4px;
  transform: translateY(100%) translateX(-50%);
  text-align: center;
  left: 50%;
  color: #E44E98;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.2rem;
}
.header__inner .lr .right nav ul li.blog::after {
  content: "BLOG";
}
.header__inner .lr .right nav ul li.outline::after {
  content: "OUTLINE";
}
.header__inner .lr .right nav ul li.office::after {
  content: "OFFICE";
}
.header__inner .lr .right nav ul li.feature::after {
  content: "FEATURE";
}
.header__inner .lr .right nav ul li.message::after {
  content: "MESSAGE";
}
.header__inner .lr .right nav ul li.environment::after {
  content: "ENVIRONMENT";
}
.header__inner .lr .right nav ul li.person::after {
  content: "PERSON";
}
.header__inner .lr .right nav ul li.recruit::after {
  content: "RECRUIT";
}
.header__inner .lr .right nav ul li.faq::after {
  content: "FAQ";
}
.header__inner .lr .right .btn {
  width: 160px;
  height: 100%;
}
.header__inner .lr .right .btn a {
  display: block;
  height: 100%;
  font-size: 2rem;
  background-color: #00BFFF;
  color: #fff;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.header__inner .lr .right .btns {
  display: flex;
  justify-content: right;
  height: 100%;
}
.header__inner .lr .right .btns .btn a {
  font-weight: 600;
}
.header__inner .lr .right .btns .btn:nth-of-type(1) a {
  background-color: #00BFFF;
}
.header__inner .lr .right .btns .btn:nth-of-type(2) a {
  background-color: #056AB8;
}

@media screen and (max-width: 1620px) {
  .header__inner {
    padding-left: 16px;
  }
  .header__inner .lr .left .logo-gr {
    flex-direction: column;
    gap: 0px;
  }
  .header__inner .lr .left .logo-gr .logo {
    max-width: 220px;
  }
  .header__inner .lr .left .logo-gr .logo img {
    width: 100%;
    height: auto;
  }
  .header__inner .lr .left .logo-gr .txt {
    transform: translateY(2.4px);
    font-size: 1.3rem;
	white-space:wrap;
  }
  .header__inner .lr .right nav ul {
    gap: 24px;
  }
  .header__inner .lr .right nav ul li {
    position: relative;
    transform: translateY(-8px);
  }
  .header__inner .lr .right nav ul li a {
    font-size: 1.6rem;
    color: #000000;
    letter-spacing: 0.1em;
  }
  .header__inner .lr .right nav ul li::after {
    position: absolute;
    bottom: -4px;
    transform: translateY(100%) translateX(-50%);
    text-align: center;
    left: 50%;
    color: #E44E98;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.2rem;
  }
  .header__inner .lr .right nav ul li.blog::after {
    content: "BLOG";
  }
  .header__inner .lr .right nav ul li.outline::after {
    content: "OUTLINE";
  }
  .header__inner .lr .right nav ul li.office::after {
    content: "OFFICE";
  }
  .header__inner .lr .right nav ul li.feature::after {
    content: "FEATURE";
  }
  .header__inner .lr .right nav ul li.message::after {
    content: "MESSAGE";
  }
  .header__inner .lr .right nav ul li.environment::after {
    content: "ENVIRONMENT";
  }
  .header__inner .lr .right nav ul li.person::after {
    content: "PEOPLE";
  }
  .header__inner .lr .right nav ul li.recruit::after {
    content: "RECRUIT";
  }
  .header__inner .lr .right nav ul li.faq::after {
    content: "FAQ";
  }
  .header__inner .lr .right .btn {
    width: 160px;
    height: 100%;
  }
  .header__inner .lr .right .btn a {
    display: block;
    height: 100%;
    font-size: 2rem;
    background-color: #00BFFF;
    color: #fff;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
  }
  .header__inner .lr .right .btns {
    display: flex;
    justify-content: right;
    height: 100%;
  }
  .header__inner .lr .right .btns .btn a {
    font-weight: 600;
  }
  .header__inner .lr .right .btns .btn:nth-of-type(1) a {
    background-color: #00BFFF;
  }
  .header__inner .lr .right .btns .btn:nth-of-type(2) a {
    background-color: #056AB8;
  }
}
@media screen and (max-width: 768px) {
  .header {
    transition-duration: 0.3s;
    z-index: 1000;
    background-color: initial;
    height: 64px;
  }
  .header.active, .header.lower {
    background-color: #fff;
    transition-duration: 0.3s;
  }
  .header.active .header__inner .lr .left .logo-gr .txt, .header.lower .header__inner .lr .left .logo-gr .txt {
    color: #00BFFF;
    transition-duration: 0.3s;
  }
  .header.active .header__inner .lr .ham span, .header.lower .header__inner .lr .ham span {
    background-color: #00BFFF;
    transition-duration: 0.3s;
  }
  .header.menushow .header__inner .lr .left .logo-gr .txt {
    color: #00BFFF !important;
  }
  .header__inner {
    padding-left: 20px;
  }
  .header__inner .lr .left {
    position: relative;
    z-index: 1000;
    width: 80%;
  }
  .header__inner .lr .left .logo-gr {
    gap: 10px;
    align-items: center;
    justify-content: left;
    flex-direction: row;
  }
  .header__inner .lr .left .logo-gr .logo {
    max-width: 220px;
  }
  .header__inner .lr .left .logo-gr .txt {
    transform: translateY(2.2px);
    font-size: 1rem;
    color: #fff;
  }
  .header__inner .lr .ham {
    display: block;
    position: fixed;
    z-index: 1001;
    right: 16px;
    top: 20px;
    width: 30px;
    height: 24px;
  }
  .header__inner .lr .ham span {
    position: absolute;
    left: 50%;
    width: 100%;
    height: 3px;
    background-color: #fff;
    display: block;
    transform: translateX(-50%);
    transition-duration: 0.3s;
  }
  .header__inner .lr .ham span:nth-of-type(1) {
    top: 0;
  }
  .header__inner .lr .ham span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .header__inner .lr .ham span:nth-of-type(3) {
    bottom: 0;
  }
  .header__inner .lr .ham.cross span {
    background-color: #00BFFF !important;
  }
  .header__inner .lr .ham.cross span:nth-of-type(1) {
    top: 47%;
    left: 5%;
    transform: rotate(45deg) translateX(0%) translateY(0%);
    width: 90%;
  }
  .header__inner .lr .ham.cross span:nth-of-type(2) {
    opacity: 0;
  }
  .header__inner .lr .ham.cross span:nth-of-type(3) {
    top: 47%;
    left: 5%;
    transform: rotate(-45deg) translateX(0%) translateY(0%);
    width: 90%;
  }
  .header__inner .lr .right {
    display: block;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    z-index: 999;
    padding-top: 80px;
    padding-left: 16px;
    padding-right: 16px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    gap: 24px;
    align-items: center;
    justify-content: right;
    background-color: #fff;
    transition-duration: 0.3s;
  }
  .header__inner .lr .right.menushow {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .header__inner .lr .right nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .header__inner .lr .right nav ul li {
    padding: 16px 0;
    display: block;
    border-bottom: 1px solid #C2DAE6;
  }
  .header__inner .lr .right nav ul li a {
    display: block;
    font-size: 1.6rem;
    color: #000;
    letter-spacing: 0.1em;
  }
  .header__inner .lr .right nav ul li::after {
    margin-top: 4px;
    position: initial;
    bottom: 0;
    text-align: left;
    width: 100%;
    font-size: 1.2rem;
  }
  .header__inner .lr .right .btn {
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    height: 40px;
  }
  .header__inner .lr .right .btn a {
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=header.css.map */