/* Futuristic header/menu effects */
body.home7 header {
  background:
    linear-gradient(90deg, rgba(8, 18, 16, .82), rgba(10, 14, 22, .68)),
    radial-gradient(circle at 18% 20%, rgba(86, 216, 137, .16), transparent 28%);
  border-bottom: 1px solid rgba(100, 216, 137, .26);
}

body.home7 header.is-scrolled {
  background:
    linear-gradient(90deg, rgba(5, 11, 12, .94), rgba(12, 16, 26, .9)),
    radial-gradient(circle at 18% 20%, rgba(86, 216, 137, .12), transparent 28%);
  border-bottom-color: rgba(100, 216, 137, .24);
}

body.home7 header .container::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(100, 216, 137, .8), rgba(74, 163, 255, .55), transparent);
  opacity: .62;
}

body.home7 header .container {
  position: relative;
}

body.home7 header .menu > li > a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 38px;
  padding: 10px 13px;
  border: 1px solid rgba(100, 216, 137, .18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035)),
    rgba(8, 18, 16, .18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 0 0 rgba(100, 216, 137, 0);
  text-shadow: 0 0 12px rgba(100, 216, 137, .3);
}

body.home7 header .menu > li > a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, transparent 0%, rgba(100, 216, 137, .28) 44%, rgba(74, 163, 255, .2) 52%, transparent 64%);
  transform: translateX(-120%);
  transition: transform .32s ease;
}

body.home7 header .menu > li > a::after {
  left: 10px;
  right: 10px;
  bottom: 5px;
  height: 1px;
  background: linear-gradient(90deg, rgba(100, 216, 137, .2), rgba(100, 216, 137, .95), rgba(74, 163, 255, .55));
}

body.home7 header .menu > li > a:hover,
body.home7 header .menu > li > a:focus,
body.home7 header .menu > li.current-menu-item > a {
  border-color: rgba(100, 216, 137, .65);
  background:
    linear-gradient(180deg, rgba(100, 216, 137, .20), rgba(74, 163, 255, .08)),
    rgba(8, 18, 16, .22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 0 18px rgba(100, 216, 137, .22);
  transform: translateY(-1px);
}

body.home7 header .menu > li > a:hover::before,
body.home7 header .menu > li > a:focus::before,
body.home7 header .menu > li.current-menu-item > a::before {
  transform: translateX(120%);
}

body.home7 header .menu > li > a i {
  color: #64d889;
  text-shadow: 0 0 12px rgba(100, 216, 137, .7);
}

body.home7 header .menu > li > a.is-sounding {
  animation: hupi-menu-pulse .24s ease;
}

@keyframes hupi-menu-pulse {
  0% { transform: translateY(-1px) scale(1); }
  50% { transform: translateY(-1px) scale(1.035); }
  100% { transform: translateY(-1px) scale(1); }
}

@media (max-width: 767px) {
  body.home7 header .menu > li > a {
    border-radius: 7px;
    margin: 4px 8px;
    justify-content: flex-start;
  }
}
