body {
  background-color: transparent !important;
}
.header-wrap {
  .logo {
    height: 68px;
    display: flex;
    align-items: center;
    padding-left: 40px;
  }
  .navigation-section {
    ul {
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: end;
      gap: 46px;
      padding: 0;
      margin: 0;
      li {
        font-family: "Inter", sans-serif;
        font-weight: 600;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 5%;
        text-transform: uppercase;
        a {
          color: #141414;
        }
      }
    }
  }
  .signBtn {
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    border-radius: 8px;
    gap: 10px;
    padding: 10px;
    background-color: #141414;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 5%;
    text-transform: uppercase;
    color: #d4f549;
    cursor: pointer;
    margin-top: 14px;
  }
  .hamburger-menu {
    display: none;
  }
  @media (max-width: 767.98px) {
    .nav-card {
      display: none;
    }
    .btn-card {
      display: none;
    }
    .hamburger-menu {
      display: block;
      position: absolute;
      right: 0;
      top: 14px;
      z-index: 1024;
      width: 150px;
      text-align: center;
      .menu-icon {
        display: inline-block;
        cursor: pointer;
        .bar1,
        .bar2,
        .bar3 {
          width: 30px;
          height: 3px;
          background-color: #333;
          margin: 6px 0;
          transition: 0.4s;
        }
        &.change {
          .bar1 {
            transform: translateY(9px) rotate(-45deg);
          }
          .bar2 {
            opacity: 0;
          }
          .bar3 {
            transform: translateY(-9px) rotate(45deg);
          }
        }
      }
      .menuList {
        padding: 5px;
        border-radius: 4px;
        background: #fff;
        display: none;
        border: #c7f141 1px solid;
        ul {
          padding: 0;
          margin: 0;
          li {
            border-bottom: #1b985e 1px solid;
            padding-bottom: 3px;
            &:last-child {
              border: none;
              padding-bottom: 0;
            }
            .signBtn {
              float: inherit;
            }
          }
        }
      }
    }
  }
}
