.header {
  position: sticky;
  display: flex;
  align-items: center;
  top: 0;
  right: 0;
  left: 0;
  flex-flow: row nowrap;
  background-color: var(--primary);
  padding: 0 2rem;
  height: 5rem;
  box-shadow: 0 0 0.25rem var(--black);
  z-index: 1000;
}

.header .logo {
  height: auto;
  width: auto;
}

.header .logo img {
  width: 3rem;
  height: auto;
}

.nav-bar {
  display: flex;
  flex: 1;
  margin-left: 1.5rem;
  justify-content: space-between;
}

.nav-bar.active {
  transform: translateX(0);
}

.nav-link {
  height: auto;
}

.nav-link a {
  display: block;
  padding: 1rem;
}

.nav-link a span {
  font-size: 1.025rem;
  font-weight: 200;
}

.nav-link a span:hover {
  color: var(--text-color-secondary);
}

.nav-link a.active span {
  color: var(--text-color-secondary);
}

.nav-burger {
  display: none;
}

.nav-burger button {
  padding: 0.5rem;
}

.nav-burger button i {
  font-size: 1.425rem;
  color: var(--text-color-1);
}

.nav-burger:hover button i {
  color: var(--text-color-secondary);
}

@media only screen and (min-width: 1400px) {
}
@media only screen and (max-width: 1200px) {
  
}
@media only screen and (max-width: 992px) {
  .header {
    justify-content: space-between;
  }
  .nav-burger {
    display: block;
  }
  .nav-bar {
    position: fixed;
    top: 5rem;
    bottom: 0;
    right: 0;
    width: 25rem;
    height: 100%;
    background-color: var(--primary);
    flex-flow: column nowrap;
    margin-left: 0;
    justify-content: start;
    transform: translateX(100%);
  }
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 576px) {
}
@media only screen and (max-width: 576px) {
  .nav-bar {
    width: 100%;
  }
}
