.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
}

.topbar {
  background: #000;
  color: #fff;
  padding: 10px 7%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar a {
  color: #fff;
  font-size: 13px;
}

.navbar {
  height: 92px;
  padding: 0 7%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

body.dark .navbar {
  background: #060606;
}

.brand img {
  height: 70px;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu a {
  color: #111;
  font-size: 13px;
  font-weight: 700;
}

body.dark .nav-menu a {
  color: #fff;
}

.nav-menu a:hover {
  color: var(--green);
}

.nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 13px 22px;
  border-radius: 40px;
}

.theme-switch {
  width: 58px;
  height: 30px;
  border-radius: 60px;
  border: 1px solid rgba(0,0,0,.15);
  background: #f4f4f4;
  padding: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.theme-switch span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: block;
  background: var(--green);
  transition: transform .25s ease;
}

body.dark .theme-switch {
  background: #111;
  border-color: rgba(255,255,255,.25);
}

body.dark .theme-switch span {
  transform: translateX(28px);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: #111;
  font-size: 30px;
  cursor: pointer;
}

body.dark .menu-toggle {
  color: #fff;
}

.topbar i {
  margin-right: 6px;
}

.topbar-right a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-switch {
  gap: 6px;
  justify-content: space-between;
  padding: 4px 7px;
}

.theme-switch i {
  font-size: 12px;
  color: #555;
  z-index: 2;
}

body.dark .theme-switch i {
  color: #fff;
}
