.nav-bar {
  height: 85px;
  background-color: transparent;
  position: absolute;
  width: 100vw;
  max-width: 100%;
}

@media all and (max-width: 800px) {
  .nav-bar {
    display: none;
  }
}

.nav-bar-container {
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  flex-direction: row;
}

.nav-logo-container {
  margin-left: 100px;
  margin-right: auto;
  display: flex;
}

.nav-logo {
  width: 160px;
}

@media all and (max-width: 800px) {
  .nav-logo {
    width: 100px;
    margin-left: 16px;
    margin-right: 8px;
  }
}

.nav-items {
  display: flex;
  align-items: center;
  flex-direction: row;
  height: 100%;
  margin-left: auto;
  margin-right: 20px;
  justify-content: right;
}

.nav-item {
  display: flex;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  text-decoration: none;
}

.nav-item-download-link:hover {
  text-decoration: none;
}

@media all and (max-width: 800px) {
  .nav-item {
    width: 100%;
    height: 44px;
    justify-content: right;
    margin-left: 5px;
    margin-right: 5px;
  }

  .nav-item:hover {
    background-color: white;
    color: black;
  }
}

.nav-bar-vertical-separator {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  height: 50%;
  margin-left: 10px;
  margin-right: 10px;
}

.nav-item-bold {
  display: flex;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  text-decoration: none;
}

.nav-item-download {
  margin-right: 80px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 34px;
  background-color: #7900C9;
  /* background: linear-gradient(120.23deg, rgba(74, 49, 194, 0) 38.05%, #07A8E6 88.23%), linear-gradient(180deg, #1726C3 0%, #8035CA 100%); */
}

.nav-item-download:active {
  opacity: 70%;
  transform: scale(90%);
}

.nav-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.nav-bar-hamburger {
  display: none;
  align-items: center;
  flex-direction: row;
  height: 56px;
  min-height: 56px;
  width: 100%;
  background-color: black;
}

@media all and (max-width: 800px) {
  .nav-bar-hamburger-container {
    position: relative;
  }

  .nav-bar-hamburger {
    display: flex;
  }
}

.nav-bar-hamburger-links {
  display: none;
  background-color: black;
  z-index: 2;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.nav-hamburger {
  width: fit-content;
  margin-left: auto;
  margin-right: 20px;
}

.nav-hamburger-active {
  display: none;
  width: fit-content;
  margin-left: auto;
  margin-right: 20px;
}

.nav-item-hamburger {
  margin-right: 20px;
}

.nav-item-line {
  background-color: rgba(255, 255, 255, 0.15);
  height: 1px;
  margin-left: 40px;
}

.nav-item-employers {
  font-weight: 700;
}