.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--bg-dark);
  z-index: 100;
}

.nav {
  max-width: var(--max-width);
  margin: auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img{
  width: 150px;
}

.menu-toggle {
  border: none;
  background: none;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1101;
  width: 44px;
  height: 44px;
}
.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 22px;
}
.menu-icon .bar {
  display: block;
  width: 100%;
  height: 3.5px;
  background: #181818;
  border-radius: 2px;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(.4,2,.6,1);
}