/* Header aligned with the current legacy site navigation. */
.v3-header {
  position: relative;
  background: #fff;
  border-bottom: 0;
}

.v3-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #d7dce3;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
}

.v3-header__row {
  min-height: 108px;
  align-items: flex-start;
  gap: 38px;
  padding-top: 24px;
}

@media (min-width: 981px) {
  .v3-header .v3-container {
    width: min(1688px, 100% - 112px);
  }
}

.v3-brand {
  flex: 0 0 180px;
  min-width: 180px;
}

.v3-brand__mark {
  width: 148px;
  height: auto;
}

.v3-header__nav-area {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 28px;
  padding-top: 12px;
}

.v3-nav {
  flex: 0 1 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0;
}

.v3-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 11px 14px 0;
  border: 0;
  color: #242833;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.v3-nav__link.is-active::before,
.v3-nav__link:hover::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 0;
  height: 1px;
  background: #2aa7df;
}

.v3-nav__link.is-active,
.v3-nav__link:hover {
  color: #2c6f9f;
}

.v3-search {
  flex: 0 0 196px;
  margin: 0;
}

.v3-search input {
  width: 100%;
  height: 38px;
  padding: 0 14px;
  border: 1px solid #2ab7ee;
  border-radius: 22px;
  outline: 0;
  background: #fff;
  color: #2b3039;
  font: inherit;
  font-size: 14px;
  box-shadow: 0 0 0 3px rgba(42, 183, 238, .16), inset 0 1px 3px rgba(0,0,0,.10);
}

.v3-search input::placeholder {
  color: #8c939d;
}

.v3-sys-card__brand {
  display: block;
  width: 112px;
  max-width: 100%;
  height: auto;
  margin-top: 16px;
}

@media (min-width: 761px) and (max-width: 980px) {
  .v3-header__row {
    min-height: 108px;
    gap: 28px;
  }
  .v3-brand {
    flex-basis: 144px;
    min-width: 144px;
  }
  .v3-brand__mark {
    width: 132px;
  }
  .v3-header__nav-area {
    gap: 16px;
  }
  .v3-nav__link {
    padding-inline: 8px;
    font-size: 11px;
  }
  .v3-search {
    flex-basis: 160px;
  }
  .v3-search input {
    height: 34px;
    font-size: 12px;
  }

  .v3-why { padding: 28px 0 30px; }
  .v3-why .v3-section__title { margin-bottom: 24px; }
  .v3-why__item { min-height: 94px; }
  .v3-why__icon { width: 34px; height: 34px; margin-bottom: 12px; }
  .v3-why__h { margin-bottom: 6px; font-size: 10px; }
  .v3-why__p { font-size: 9px; line-height: 1.45; }

  .v3-special { padding: 28px 0 20px; }
  .v3-special .v3-eyebrow { margin-bottom: 10px; }
  .v3-special h2 { font-size: 22px; }
  .v3-special p:not(.v3-eyebrow) {
    margin: 10px 0 0;
    max-width: 560px;
    line-height: 1.55;
  }
  .v3-special .v3-btn { min-height: 38px; }

  .v3-contact-card { padding-bottom: 18px; }
  .v3-contact-card__inner {
    min-height: 110px;
    padding: 20px 28px;
  }
  .v3-contact-card__icon {
    width: 42px;
    height: 34px;
    flex-basis: 42px;
  }
  .v3-contact-card__lead { gap: 18px; }
  .v3-contact-card h2 { font-size: 22px; }
  .v3-contact-card__items strong { margin-bottom: 4px; }

  .v3-footer { padding: 16px 0; }
  .v3-footer__wordmark { font-size: 26px; }
  .v3-footer__copy { font-size: 10px; }
  .v3-sys-card__brand { width: 92px; }
}

@media (max-width: 760px) {
  .v3-header::after {
    bottom: 0;
    height: 1px;
  }
  .v3-header__row {
    min-height: 76px;
    align-items: center;
    padding-top: 0;
  }
  .v3-brand {
    flex: 0 0 auto;
    min-width: 0;
  }
  .v3-brand__mark {
    width: 132px;
  }
  .v3-header__nav-area {
    order: 10;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 0 18px;
    border-top: 1px solid #ececee;
    display: none;
  }
  .v3-nav-toggle:checked + .v3-nav-burger + .v3-header__nav-area {
    display: flex;
  }
  .v3-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .v3-nav__link {
    min-height: 36px;
    padding: 10px 0;
    font-size: 14px;
  }
  .v3-nav__link.is-active::before,
  .v3-nav__link:hover::before {
    left: 0;
    right: auto;
    top: 8px;
    width: 28px;
  }
  .v3-search {
    flex: 0 0 auto;
  }
}
