.djd-nav {
  position: sticky;
  z-index: 10000;
  top: 0;
  width: 100%;
  background: rgba(3, 4, 4, .985);
  color: #f3f4f1;
  font-family: Arial, Helvetica, sans-serif;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .42);
  backdrop-filter: blur(10px);
}

.djd-nav *,
.djd-nav *::before,
.djd-nav *::after {
  box-sizing: border-box;
}

.djd-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
}

.djd-nav-links {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.djd-nav-links li {
  display: flex;
  align-items: center;
}

.djd-nav-links li + li::before {
  width: 1px;
  height: 25px;
  background: rgba(43, 196, 217, .48);
  content: "";
}

.djd-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 25px;
  color: #2bc4d9;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .45px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 150ms ease;
}

.djd-nav-link:hover,
.djd-nav-link:focus-visible,
.djd-nav-link.active {
  color: #fff;
  outline: none;
}

.djd-nav-toggle {
  display: none;
  padding: 12px 15px;
  border: 1px solid #343a3a;
  background: #080a0a;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .5px;
  cursor: pointer;
}

.djd-nav-home {
  margin-top: 24px;
  margin-bottom: 42px;
}

@media (max-width: 1050px) and (min-width: 821px) {
  .djd-nav-link {
    padding: 0 16px;
    font-size: 13px;
  }

  .djd-nav-links li + li::before {
    height: 22px;
  }
}

@media (max-width: 820px) {
  .djd-nav-inner {
    position: relative;
    justify-content: flex-end;
    min-height: 62px;
  }

  .djd-nav-toggle {
    display: block;
  }

  .djd-nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    border: 1px solid #292e2e;
    background: #050606;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .72);
  }

  .djd-nav.open .djd-nav-links {
    display: grid;
  }

  .djd-nav-links li {
    display: block;
  }

  .djd-nav-links li + li::before {
    display: none;
  }

  .djd-nav-link {
    justify-content: flex-start;
    min-height: 56px;
    padding: 0 22px;
    border-bottom: 1px solid #202525;
    font-size: 16px;
  }

  .djd-nav-home {
    margin-top: 22px;
    margin-bottom: 34px;
  }
}
