body {
  padding-top: 69px;
}
.navigation {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: stretch;
  background: #fff;
  box-shadow: 0 1px rgba(0,0,0,0.2);
}
.navigation::before {
  content: "";
  position: absolute;
  display: block;
  height: 3px;
  width: 100%;
  background: #f38020;
}
.navigation > a {
  display: flex;
  align-items: center;
  padding: 1rem;
  padding-top: calc(1rem + 3px);
  font-size: 15px;
  text-decoration: none;
}
.navigation > a:not(:hover) {
  color: inherit;
}
.navigation > a:hover {
  background: rgba(243,128,32,0.1);
  color: #f38020;
}
@media (min-width: 48em) {
  .navigation > a:hover {
    box-shadow: 0 1px #fbc99e;
  }
}
.navigation > a.active {
  color: #f38020;
}
.navigation > a:first-child {
  padding-left: 2rem;
  padding-top: 1rem;
}
@media (max-width: 47.938em) {
  .navigation > a {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .navigation > a:first-child {
    padding-left: 1rem;
  }
  .navigation > a:not(:nth-child(1)):not(:nth-child(2)) {
    display: none;
  }
}
.navigation .navigation-subbrand {
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 700;
}
.navigation .logo {
  width: 140px;
  height: 37px;
}
.navigation .logo svg {
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
}
:target:before {
/* Fix scrolling to anchors */
  content: "";
  display: block;
  height: 70px /* Fixed header height */;
  margin: -70px 0 0;
}
