html body .top-bar {
  position: relative;
  z-index: 1000;
  height: 74px;
  background-color: #6CACE4;
  align-items: center;
}

html body .top-bar.grid {
  max-width: 100%;
  margin-bottom: 0;
}

html body .top-bar p,
html body .top-bar a {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  line-height: 1.2;
}

html body .top-bar p {
  display: inline-block;
  margin-left: auto;
  margin-right: 38px;
}

html body .top-bar a {
  padding: 8px 23px;
  border: 2px solid var(--white);
  margin-right: auto;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}

html body .top-bar a:hover {
  text-decoration: underline;
}

html body .top-bar.grid + .site-header {
  padding-top: calc(30px + 74px);
}

html body .top-bar .hide-on-desktop {
  display: none;
}

@media (max-width: 1024px) {
  html body .top-bar {
    height: 56px;
  }

  html body .top-bar.grid {
    flex-direction: row;
  }

  html body .top-bar.grid + .site-header {
    padding-top: calc(30px + 28px);
  }

  html body .top-bar p {
    margin-right: 16px;
    font-size: 14px;
  }

  html body .top-bar a {
    font-size: 12px;
  }

  html body .top-bar .hide-on-mobile {
    display: none;
  }

  html body .top-bar .hide-on-desktop {
    display: block;
  }
}
