.header {
  height: 70px !important;
  background: var(--neutral-1) !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between;
  align-items: center;

  position: sticky;
  top: 0;
  z-index: 999;
}

.burger {
  display: none;
}

.container-aling, .nav-menu, .menu-list, .lang-container {
  justify-content: space-between;
  align-items: center;
}

.menu-list, .lang {
  margin: auto 0;
  font-size: 12px;
}

.menu-list {
  gap: var(--p-gap);
}

.lang-container {
  background: var(--color-1);
  gap: calc(var(--p-gap) / 2);
  border-radius: 8px;
  padding: 8px 12px;
}

.lang {
  font-size: 14px;
  font-weight: var(--fw-semibold);
}

.burger input[type="checkbox"] {
  opacity:  0;
  position: absolute;
}

@media screen and (max-width: 750px) {
  .header {
    height: 50px !important;
  }

  .nav-relative {
    position: relative;
  }

  .logo-container {
    width: 90%;
    height: 90%;
  }

  .burger {
    display: block;
  }

  .fa.fa-bars {
    color: var(--primary);
    font-size: 25px;
  }

  .menu-list {
    display: none;
    position: absolute;
    top: 50px;
    background: var(--neutral-1);
    width: 50vw;
    margin-inline: auto;
    padding-inline: 1rem;
    padding-bottom: 1rem;
    border: none;
    z-index: 999 !important;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-items: center;

    animation: fade-to-left 500ms forwards;
  }

  .overlay {
    display: none;
    position: fixed;
    top:  0;
    left:  0;
    width:  100%;
    height:  100%;
    background: rgba(0,  0,  0,  0.5);
    z-index:  9;
  }
}

/* Animations */
@keyframes fade-to-left {
  0% {
    opacity: 0;
    right: -8rem;
  }
  100% {
    opacity: 1;
    right: 0rem;
  }
}