.header-mobile {
  overflow: hidden;
}
@media (max-width: 767px) {
  .header-mobile {
    display: block;
  }
}
@media (min-width: 768px) {
  .header-mobile {
    display: none;
  }
}
.header-mobile__container {
  z-index: 9999;
  width: 100%;
  position: fixed;
  background-color: var(--color-secondary);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 4px;
}
.header-mobile__nav {
  z-index: 9998;
  position: fixed;
  width: 100%;
  background-color: var(--color-secondary);
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 1rem;
  padding: 1rem;
  transition: all 0.1s linear;
  transform: translateX(100%);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  padding-top: 4rem;
}
.header-mobile__nav.active {
  transform: translateX(0);
}
.header-mobile__menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.header-mobile__menu li {
  padding: 0.5rem 0;
}
.header-mobile__menu li a:not(.active),
.header-mobile__nav .language-switcher a:not(.active) {
  color: var(--color-white);
  transition: color 0.3s ease-in-out;
  text-transform: uppercase;
}
.header-mobile__menu li a:hover,
.header-mobile__nav .language-switcher a:hover {
  color: var(--color-quaternary);
}
.header-mobile__menu-button {
  all: unset;
  cursor: pointer;
}
.header-mobile__menu-button i {
  color: var(--color-white);
  font-size: 1.5rem;
  transition: color 0.3s ease-in-out;
}
.header-mobile__logo img {
  width: 32px;
}
.header-mobile__menu .active a {
  color: var(--color-quinary) !important;
}
