.site-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 10rem;
  background-color: white;
  z-index: 10;
}
.site-header > .flex {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.branding .logo img {
  display: block;
  width: 150px;
  margin: 2rem 0;
}
.header-nav {
  display: block;
  position: fixed;
  top: 10rem;
  bottom: 0;
  right: 100%;
  width: 100%;
  overflow-x: visible;
  overflow-y: visible;
  background-color: white;
  transition: var(--base-transition);
}
.has-open-mobile-menu .header-nav {
  right: 0;
}
.header-btns {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.header-btns > .flex {
  gap: 2rem;
}
@media (min-width: 1025px) {
  .header-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: static;
    height: 100%;
    gap: 2rem;
  }
}

@media( min-width : 1200px ) {
  .logged-in .site-header {
    top: 32px;
  }
}