.sticky {
  background-color: var(--brand);
  height: var(--space-medbig);
  position: sticky;
  top: var(--header-height);
  z-index: 2;
}

.sticky ul {
  align-items: center;
  display: flex;
  gap: var(--space-medsmall);
  height: 100%;
  padding: 0;
}

.sticky ul li {
  list-style-type: none;
  margin: 0;
}

.sticky ul li:before {
  display: none;
}

.sticky ul li a:not(.button-secondary) {
  color: white !important;
  opacity: 0.8;
  transition: var(--trans);
  white-space: nowrap;
}

.sticky ul li a:not(.button-secondary):hover {
  opacity: 1;
}

.sticky ul li.cta {
  margin-left: auto;
}

@media (width <= 560px) {
  .sticky {
    display: none;
  }
}
