.Header {
  position: fixed;
  width: 100%;
  z-index: 700;
  top: 0;
  display: flex;
  align-items: center;
  background-color: $purple-dark;
  height: 72px;

  .Container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .Header-menu {
    justify-content: flex-end;
    gap: 50px;

    ul {
      gap: 18px;

      > li a:not(.Button) {
        color: #fff;
        transition: all 0.4s ease;

        &:hover {
          color: $green-fresh;
        }
      }
    }

    div {
      gap: 16px;
    }

    .Button {
      height: 40px;
      i {
        font-size: 16px;
      }
    }
  }

  .Header-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;

    > span {
      background-color: #fff;
      border-radius: 3px;
      height: 2px;
      width: 24px;
    }

    @media screen and (min-width: $lg) {
      display: none;
    }
  }

  @media (max-width: $xl) {
    .Header-menu {
      gap: 14px;
    }
  }
  @media (max-width: $lg) {
    height: 58px;

    .logo {
      width: 111px;
    }
  }
}
