.header {
  position: relative;
  padding: 1rem;
  width: 100%;
  background: #1c2023;
}
.header__wrapper {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 75rem;
}
.header__logo {
  max-width: 8rem;
  height: auto;
}

.header__navbar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  visibility: hidden;
  padding: 2rem 1rem;
  background: #1c2023;
  transition: transform 0.3s ease-in-out;
  transform: translateY(-100%);
}
.header__navlist {
  padding: 0;
  margin: auto;
  display: flex;
  padding: 0rem;
  align-items: center;
  justify-content: center;
  gap: 1.625rem;
  list-style: none;
  flex-direction: column;
}
.menu-item {
  width: 100%;
}
.menu-item a {
  display: block;
  color: var(--main-text-color);
  font-family: 'TT Autonomous', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  width: 100%;
}
.current-menu-item a {
  color: var(--hover-text-color);
}

.menu-burger {
  display: block;
}

@media (min-width: 1200px) {
  .header__navbar {
    position: relative;
    width: 100%;
  }
  .header__navlist {
    flex-direction: row;
  }
  .menu-item {
    width: max-content;
  }
  .menu-item a {
    width: max-content;
  }
  .menu-burger {
    display: none;
  }
}

.header__active {
  visibility: visible;
  z-index: 9990;
  transform: translateY(0%);
}
