/* Body Positive shared shell.
   Typography: self-hosted Outfit variable (wght 100-900). No Google Fonts
   browser requests. Outfit has no italic masters; do not treat italics as exact. */

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/outfit-wght-variable.ttf") format("truetype-variations"),
       url("/assets/fonts/outfit-wght-variable.ttf") format("truetype");
}

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-navy: #253551;
  --color-footer: #2a2829;
  --color-field: #e8e8e8;
  --font-heading: Outfit, sans-serif;
  --font-body: Outfit, sans-serif;
  --header-height: 84px;
  --nav-link-size: 16px;
  --nav-link-line: 28.8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  background: var(--color-white);
}

body {
  min-height: 100%;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 28.8px;
}

body.is-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  margin: 0;
}

h1 {
  font-size: 46.384px;
  line-height: 64.9376px;
}

h2 {
  font-size: 20.4px;
  line-height: 20.4px;
}

h3 {
  font-size: 22.08px;
  line-height: 30.17px;
  text-align: right;
}

h4 {
  font-size: 22.08px;
  line-height: 30.17px;
}

p {
  margin: 0 0 16px;
}

.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;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
}

.site-main {
  flex: 1 0 auto;
  outline: none;
}

.site-wrapper[data-header-variant="internal"] .site-main {
  padding-top: var(--header-height);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0);
}

.header-theme-overlay {
  color: var(--color-white);
}

.header-theme-overlay .site-title {
  color: var(--color-white);
}

.header-theme-overlay .header-nav-item a,
.header-theme-overlay .header-social .social-icon,
.header-theme-overlay .header-menu-toggle {
  color: var(--color-white);
}

.header-theme-overlay.is-scrolled,
.header-theme-overlay.shrink {
  background: var(--color-black);
}

.header-theme-overlay.is-scrolled .site-title,
.header-theme-overlay.shrink .site-title,
.header-theme-overlay.is-scrolled .header-nav-item a,
.header-theme-overlay.shrink .header-nav-item a,
.header-theme-overlay.is-scrolled .header-social .social-icon,
.header-theme-overlay.shrink .header-social .social-icon,
.header-theme-overlay.is-scrolled .header-menu-toggle,
.header-theme-overlay.shrink .header-menu-toggle {
  color: var(--color-white);
}

.header-theme-internal {
  color: var(--color-black);
  background: var(--color-white);
}

.header-theme-internal .site-title,
.header-theme-internal .header-nav-item a,
.header-theme-internal .header-social .social-icon,
.header-theme-internal .header-menu-toggle {
  color: var(--color-black);
}

.header-theme-internal .header-inner {
  padding-right: 6vw;
  padding-left: 6vw;
}

.header-theme-internal .header-title-nav {
  gap: 2.2vw;
}

.header-theme-internal .site-title {
  font-size: 16px;
  line-height: 22.4px;
}

.header-theme-internal .header-nav {
  margin-left: auto;
}

.header-theme-internal .header-nav-list {
  column-gap: 1.2vw;
}

.header-theme-internal .header-actions {
  gap: 2.2vw;
  margin-left: 2.2vw;
}

.header-theme-internal .header-social {
  gap: 1.2vw;
}

.header-theme-internal .header-social .social-icon,
.header-theme-internal .header-social .social-icon svg {
  width: 20px;
  height: 20px;
}

.header-theme-internal .btn-contact {
  color: var(--color-white);
  background: var(--color-navy);
  border: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 5.5vw;
  gap: 16px;
}

.header-title-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  flex: 1 1 auto;
  gap: 28px;
}

.site-title {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 26.128px;
  line-height: 36.58px;
  white-space: nowrap;
}

.header-nav {
  display: none;
  margin-left: auto;
}

.header-nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  column-gap: 22px;
  row-gap: 0;
}

.header-nav-item {
  white-space: nowrap;
}

.header-nav-item a {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--nav-link-size);
  line-height: var(--nav-link-line);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.header-social {
  display: none;
  align-items: center;
  gap: 24px;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  background: transparent;
  transition: opacity 0.1s linear;
}

.btn:hover {
  opacity: .8;
}

.btn-contact {
  display: none;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.272px;
  line-height: 1.2;
  letter-spacing: 0.28544px;
  text-transform: none;
  padding: 15.6992px 26.2177px;
}

.header-theme-internal .btn-contact:focus-visible {
  opacity: .8;
  outline: 2px solid var(--color-black);
}

.btn-cta {
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.272px;
  line-height: 1.2;
  letter-spacing: 0.28544px;
  padding: 15.6992px 26.2177px;
  border: 0;
}

.btn-label {
  background: transparent;
  color: var(--color-black);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 28.8px;
  text-decoration: underline;
  padding: 17px 0;
}

.cta-underline {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 28.8px;
  color: var(--color-black);
  text-decoration: underline;
  padding: 17px 0;
}

.header-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 1px 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.burger {
  position: relative;
  display: block;
  width: 22px;
  height: 14px;
}

.burger-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
}

.burger-line:nth-child(1) {
  top: 1px;
}

.burger-line:nth-child(2) {
  top: 7px;
}

.burger-line:nth-child(3) {
  top: 13px;
}

.header-menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.header-menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}

.header-menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.header-theme-internal .header-menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
}

.header-theme-internal .burger {
  width: 35px;
  height: 35px;
}

.header-theme-internal .burger-line:nth-child(1) {
  top: 0;
  bottom: 0;
  margin: auto;
  transform: translateY(-5.5px);
}

.header-theme-internal .burger-line:nth-child(2) {
  display: none;
}

.header-theme-internal .burger-line:nth-child(3) {
  top: 0;
  bottom: 0;
  margin: auto;
  transform: translateY(5.5px);
}

.header-theme-internal .header-menu-toggle[aria-expanded="true"] .burger-line:nth-child(1),
.header-theme-internal .header-menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
  top: 17px;
  bottom: auto;
  left: 3.5px;
  right: auto;
  width: 28px;
  margin: 0;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-white);
  color: var(--color-black);
  padding: 84px 24px 32px;
}

.site-menu[hidden] {
  display: none;
}

.site-menu-nav {
  margin-top: 184px;
}

.site-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.site-menu-list li {
  margin: 0 0 24px;
}

.site-menu-list a {
  display: inline-block;
  min-width: 136px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  line-height: 33px;
  color: var(--color-black);
}

.site-menu-social {
  margin-top: auto;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.site-menu-social .social-icon {
  color: var(--color-black);
}

.social-icon {
  display: inline-flex;
  width: 25px;
  height: 25px;
  color: inherit;
  align-items: center;
  justify-content: center;
}

.btn-contact-menu {
  display: inline-block;
  margin-top: 28px;
  margin-bottom: 24px;
  width: 210px;
  padding: 21.12px 35.2704px;
  font-size: 14.272px;
}

.site-footer {
  flex: 0 0 auto;
  background: transparent;
  color: var(--color-white);
}

.footer-border {
  background: var(--color-footer);
  color: var(--color-white);
  min-height: 33vh;
  padding: 3.3vmax 6vw;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  width: calc(100% + 34px);
  margin: -17px;
}

.footer-brand,
.footer-meta {
  padding: 17px;
}

.footer-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22.08px;
  line-height: 30.17px;
  color: var(--color-white);
  margin-bottom: 32px;
}

.footer-brand p {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-weight: 300;
}

.footer-brand p:last-of-type {
  margin-bottom: 0;
}

.footer-brand a,
.footer-nav a {
  color: var(--color-white);
  text-decoration: underline;
}

.footer-brand a {
  overflow-wrap: anywhere;
}

.footer-social {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 34px;
}

.footer-social .social-icon,
.footer-social .social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-social .social-icon svg {
  transform: scale(1.163636364);
  transform-origin: center;
}

.footer-social .social-icon {
  color: var(--color-white);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: .92em;
  row-gap: 0;
  margin-top: 44.8px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 28.8px;
  text-align: center;
  white-space: normal;
}

.footer-nav a {
  white-space: nowrap;
}

.bp-form {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 28.8px;
  color: var(--color-black);
}

.form-row-split {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  margin-bottom: 18px;
}

.form-group-label {
  display: block;
  margin: 0 0 6px;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
}

.form-required {
  opacity: 0.7;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: var(--color-field);
  padding: 10px 12px;
}

.form-field-check label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-field-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 0;
  accent-color: var(--color-navy);
}

.form-error {
  margin: 6px 0 0;
  color: var(--color-black);
  font-size: 14px;
  line-height: 1.4;
}

.form-status {
  margin-top: 12px;
  font-weight: 400;
}

.form-status:empty,
.form-status[hidden] {
  display: none;
}

.form-status[data-status-type] {
  padding: 12px 14px;
  border: 2px solid #5c6470;
  background: #f1f3f5;
  color: #20252b;
}

.form-status[data-status-type="success"] {
  border-color: #176b36;
  background: #e4f5e9;
  color: #0b4b25;
}

.form-status[data-status-type="error"] {
  border-color: #a12622;
  background: #fbe9e7;
  color: #7b1714;
}

.bp-form .form-actions button[type="submit"]:disabled,
.bp-form .form-actions button[type="submit"][aria-busy="true"],
.bp-form .form-actions button[type="submit"]:disabled:hover,
.bp-form .form-actions button[type="submit"]:disabled:focus {
  cursor: wait;
  opacity: .65;
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  outline: 2px solid var(--color-navy);
  outline-offset: 1px;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 43.648px;
    line-height: 53.73px;
  }

  h2 {
    font-size: 40.3px;
    line-height: 40.3px;
  }

  h3 {
    font-size: 36.16px;
    line-height: 48.2px;
  }

  h4 {
    font-size: 26.08px;
    line-height: 35.64px;
  }

  .footer-title {
    font-size: 26.08px;
    line-height: 35.64px;
  }

  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer-border {
    padding-right: 3vw;
    padding-left: 3vw;
  }

  .footer-brand {
    flex: 0 0 25%;
    min-width: 0;
  }

  .footer-meta {
    flex: 0 0 75%;
    min-width: 0;
    align-items: center;
  }

  .form-row-split {
    flex-direction: row;
  }

  .form-row-split .form-field {
    flex: 1 1 0;
  }
}

@media screen and (min-width: 800px) and (pointer: fine),
       screen and (min-width: 1025px) {
  :root {
    --header-height: 124px;
  }

  .site-title {
    font-size: 32.8px;
    line-height: 45.92px;
  }

  .header-theme-internal .header-inner {
    padding-right: 3vw;
    padding-left: 3vw;
    gap: 0;
  }

  .header-theme-internal .site-title {
    font-size: min(calc(16px + 1.2vw), 32.8px);
    line-height: 1.4;
  }

  .header-nav {
    display: block;
  }

  .header-nav-item a[aria-current="page"] {
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 calc(100% - .1em);
    background-repeat: repeat-x;
    background-size: 1px 1px;
  }

  .header-social {
    display: flex;
  }

  .header-menu-toggle {
    display: none;
  }

  .btn-contact {
    display: inline-block;
  }

  .site-menu {
    display: none !important;
  }

  h1 {
    font-size: 44.8px;
    line-height: 55.15px;
  }
}

@media screen and (min-width: 1440px) {
  h1 {
    font-size: 66.4px;
    line-height: 81.8px;
  }
}
