#header {
    .top {
  display: flex;
  flex-direction: column;
  width: 1512px;
  align-items: flex-start;
  position: relative;
}

.top .container {
  flex-direction: column;
  height: 32px;
  align-self: stretch;
  width: 100%;
  background-color: var(--midnight);
  display: flex;
  align-items: center;
  position: relative;
}

.top .div {
  max-width: 1280px;
  width: 1280px;
  justify-content: space-between;
  flex: 1;
  flex-grow: 1;
  display: flex;
  align-items: center;
  position: relative;
}

.top .text-wrapper {
  position: relative;
  width: fit-content;
  font-family: var(--label-font-family);
  font-weight: var(--label-font-weight);
  color: var(--white-75);
  font-size: var(--label-font-size);
  letter-spacing: var(--label-letter-spacing);
  line-height: var(--label-line-height);
  white-space: nowrap;
  font-style: var(--label-font-style);
}

.top .text {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
}

.top .link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.top .icon {
  position: relative;
  width: 14px;
  height: 14px;
}

.top .text-wrapper-2 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--label-font-family);
  font-weight: var(--label-font-weight);
  color: var(--white-75);
  font-size: var(--label-font-size);
  letter-spacing: var(--label-letter-spacing);
  line-height: var(--label-line-height);
  white-space: nowrap;
  font-style: var(--label-font-style);
}

.top .navbar {
  display: flex;
  flex-direction: column;
  height: 88px;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: var(--white-95);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: var(--mist);
}

.top .logo {
  position: relative;
  flex: 0 0 auto;
}

.top .navbar-2 {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
}

.top .text-wrapper-3 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--button-font-family);
  font-weight: var(--button-font-weight);
  color: var(--midnight);
  font-size: var(--button-font-size);
  letter-spacing: var(--button-letter-spacing);
  line-height: var(--button-line-height);
  font-style: var(--button-font-style);
}

.top .button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  position: relative;
  flex: 0 0 auto;
  background-color: var(--mint);
  border-radius: 6px;
}

.top .button {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--button-font-family);
  font-weight: var(--button-font-weight);
  color: var(--white);
  font-size: var(--button-font-size);
  letter-spacing: var(--button-letter-spacing);
  line-height: var(--button-line-height);
  font-style: var(--button-font-style);
}
/* Original style.css rules are injected before the accessibility and responsive overrides below. */

.top {
  width: 100%;
  min-width: 0;
}

.top .div {
  width: min(1280px, calc(100% - 48px));
  min-width: 0;
}

.top .text {
  font-style: normal;
}

.top .link,
.top .text-wrapper-3,
.top .button-primary {
  color: inherit;
}

.top .link:focus-visible,
.top .text-wrapper-3:focus-visible,
.top .button-primary:focus-visible,
.top .logo:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}

/* .top .link:hover .text-wrapper-2,
.top .link:focus-visible .text-wrapper-2, */
.top .text-wrapper-3:hover,
.top .text-wrapper-3:focus-visible {
  color: var(--mint);
}

.top .button-primary:hover,
.top .button-primary:focus-visible {
  background-color: var(--midnight-light);
}

@media (max-width: 900px) {
  .top .navbar {
    height: auto;
    min-height: 88px;
    padding: 16px 0;
  }

  .top .navbar .div {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
  }

  .top .navbar-2 {
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }
}

@media (max-width: 640px) {
  .top .container {
    height: auto;
    min-height: 32px;
    padding: 8px 0;
  }

  .top .container .div {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }

  .top .text {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }

  .top .text-wrapper {
    text-align: center;
    white-space: normal;
  }

  .top .navbar-2 {
    gap: 12px 18px;
  }
}

}

#header {
  & .top .text-wrapper-2 {
    font-size: 14px;
  }
  & .top .text-wrapper-3 {
    font-size: 16px;
  }
}