/* =========================
   HEADER
   ========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 50px;
background: linear-gradient(135deg,#7fdcb5, #1ea77f);
}

.header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header .logo img {
  height: 50px;
}

.header .logo span {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
}

.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 600;
  color: #ffffff;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: #00000027;
  transition: 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}
