.header-nav--mobile {
  background-color: var(--color-background);
  z-index: 9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.header-list--mobile {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.header-link--mobile {
  text-decoration: none;
  color: var(--color-white);
  border-bottom: 2px solid transparent;
  padding-bottom: 1rem;
  transition: var(--animation-transtion);
  font-size: 1.2rem;
}

.header-link--special {
  font-size: 1.2rem;
}

.mobile-nav__close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  padding: 0.5rem;
  border: none;
  background-color: var(--color-accent);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--color-background);
  font-weight: 600;
}
