.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;
}

.c-header__button {
  line-height: 1;
  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);
  transition: all 0.6s ease-out;
  margin: 0 -.5rem 0 12px;
  padding: 0;

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

  a {
    display: block;
    padding: var(--space-3xs);
    font-family: var(--sans);
    line-height: 2em;
    color: var(--btn-primary-text);
    text-decoration: none;
  }
}


@media (min-width: 768px) {

  .c-header__navcontainer{
    gap: 1rem;
  }

  .c-header__button {

      margin-right: 0;

    a {
      padding: var(--space-xs);
    }
  }

  .is-shrinked .c-header__button a {
    line-height: 1em;
    padding: var(--space-2xs);
  }
}