header {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid #e2e2e2;
  nav {
    ul {
      display: flex;
      gap: 32px;
      align-items: center;
      li {
        a {
          color: #003da5FF;
          font-family: "DM Sans", sans-serif;
          font-weight: 500;
          &.active {
            font-weight: 700;
          }
        }
      }
    }
  }
}