body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #99baea;
}

/* Navigation */
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-toggle {
  display: none;
}

.nav-list {
  font-size: 0.9375rem;
  display: flex;
  gap: 1.5rem;
  text-transform: uppercase;
  list-style-type: none;
  margin-inline: 1rem;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: #0707d4;
}

.nav-list a:hover,
.nav-list a:focus {
  color: #02026d;
}

.primary-header-logo {
  padding: 0;
  max-height: 74px;
  max-width: 100%;
}

.icon {
  width: 1.5rem;
}

@media (max-width: 62.5em) {
  .primary-navigation {
    display: none;

    position: absolute;
    padding: 3rem;
    inset: 6rem 1rem auto;
    max-width: 20rem;
    margin-left: auto;
    background: #99baea;
    border-radius: 0.25rem;
    box-shadow: 0 0 0.75em rgb(0, 0, 0, 0.5);
  }

  .primary-header[data-overlay]::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgb(0 0 0 / 0), rgb(0 0 0 / 0.8));
  }

  .nav-list {
    display: grid;
    gap: 1rem;
    text-align: center;
    font-weight: 600;
  }

  .primary-navigation[data-visible] {
    display: block;
  }

  .mobile-nav-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    right: 0.875rem;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 0.5em;
  }

  .mobile-nav-toggle .icon-close {
    display: none;
  }

  .primary-header-logo {
    max-height: 60px;
  }
}

/* Embedded form */
.embedded-form-container {
  margin: 0;
  padding: 0;
}

.embedded-form-container .landing-header {
  text-align: center;
  background-color: white;
  display: inline-block;
  width: 100%;
  margin: 0;
}

.embedded-form-container h2 {
  font-size: 2rem;
  font-weight: 400;
}

@media (max-width: 62.5rem) {
  .embedded-form-container .landing-header {
    background-color: rgb(89, 49, 231);
  }

  .embedded-form-container h2 {
    margin-block: 1rem 0.5rem;
    font-size: 1.75rem;
    color: white;
  }
}

/* Utility classes */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
