.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  background: var(--header-bg);
  border-bottom: 1px solid var(--cool);
}

.l-header.is-shrinked {
  box-shadow: 0 0 0.5rem 0 var(--cool);
}

.c-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.c-header__navcontainer {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
}

.c-header__button {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  font-size: var(--fs--1);
  font-weight: 700;
  border: 0;
  border-radius: var(--border-radius);
  padding: var(--space-3xs);
  transition: all 0.6s ease-out;
  margin-bottom: 0;

  &:hover, &:active{
    background: var(--btn-primary-hover-bg);
  }

  a {
    font-family: var(--sans);
    color: var(--btn-primary-text);
    text-decoration: none;
  }
}


@media (min-width:768px) {
  .c-header__navcontainer{
    gap: 1rem;
  }

  .c-header__button {
    padding: var(--space-xs);
  }

  .is-shrinked .c-header__button {
    padding: var(--space-3xs)
  }
}