header {
  height: 4.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  background-color: rgb(24, 21, 19);
  overflow: auto;
  position: sticky;
  top: 0%;
  box-shadow: 0 1rem 1rem rgba(129, 129, 129, 0.124);
  z-index: 10;
  transition: all 1s ease-out;
  -webkit-transition: all 1s ease-out;
}

.nav-brand {
  padding-top: 4px;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  text-transform: uppercase;
}

.nav-link {
  transition: 0.7s ease;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
}

.active {
  color: white;
}

.nav-link:hover {
  color: white;
}

.nav-toggler {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
}
