/*! tailwindcss v4.1.12 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: "Open Sans", sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --color-white: #fff;
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
    --font-arvo: "Arvo", serif;
    --color-btbbdarklue-100: #006EB7;
    --color-btbblue-100: #16BAE7;
    --color-btbblue-30: #B9EAF8;
    --color-btb-magenta-100: #E1007E;
    --color-btb-cta-30: #8779B74D;
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .col-span-2 {
    grid-column: span 2 / span 2;
  }
  .col-span-4 {
    grid-column: span 4 / span 4;
  }
  .col-span-6 {
    grid-column: span 6 / span 6;
  }
  .col-span-8 {
    grid-column: span 8 / span 8;
  }
  .col-span-12 {
    grid-column: span 12 / span 12;
  }
  .container {
    width: 100%;
    @media (width >= 1280px) {
      max-width: 1280px;
    }
    @media (width >= 40rem) {
      max-width: 40rem;
    }
    @media (width >= 48rem) {
      max-width: 48rem;
    }
    @media (width >= 64rem) {
      max-width: 64rem;
    }
    @media (width >= 80rem) {
      max-width: 80rem;
    }
  }
  .m-auto {
    margin: auto;
  }
  .mt-2 {
    margin-top: calc(var(--spacing) * 2);
  }
  .mt-3 {
    margin-top: calc(var(--spacing) * 3);
  }
  .mt-4 {
    margin-top: calc(var(--spacing) * 4);
  }
  .mt-6 {
    margin-top: calc(var(--spacing) * 6);
  }
  .mt-7 {
    margin-top: calc(var(--spacing) * 7);
  }
  .mt-8 {
    margin-top: calc(var(--spacing) * 8);
  }
  .mt-10 {
    margin-top: calc(var(--spacing) * 10);
  }
  .mt-15 {
    margin-top: calc(var(--spacing) * 15);
  }
  .mt-16 {
    margin-top: calc(var(--spacing) * 16);
  }
  .mt-20 {
    margin-top: calc(var(--spacing) * 20);
  }
  .mb-1 {
    margin-bottom: calc(var(--spacing) * 1);
  }
  .mb-3 {
    margin-bottom: calc(var(--spacing) * 3);
  }
  .mb-4 {
    margin-bottom: calc(var(--spacing) * 4);
  }
  .mb-6 {
    margin-bottom: calc(var(--spacing) * 6);
  }
  .mb-8 {
    margin-bottom: calc(var(--spacing) * 8);
  }
  .mb-10 {
    margin-bottom: calc(var(--spacing) * 10);
  }
  .block {
    display: block;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .hidden {
    display: none;
  }
  .inline {
    display: inline;
  }
  .h-9 {
    height: calc(var(--spacing) * 9);
  }
  .w-9 {
    width: calc(var(--spacing) * 9);
  }
  .w-full {
    width: 100%;
  }
  .max-w-\[52px\] {
    max-width: 52px;
  }
  .max-w-\[66px\] {
    max-width: 66px;
  }
  .max-w-\[74px\] {
    max-width: 74px;
  }
  .max-w-\[140px\] {
    max-width: 140px;
  }
  .flex-1 {
    flex: 1;
  }
  .translate-y-\[-1px\] {
    --tw-translate-y: -1px;
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }
  .translate-y-\[1\.25rem\] {
    --tw-translate-y: 1.25rem;
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }
  .translate-y-\[2px\] {
    --tw-translate-y: 2px;
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }
  .translate-y-\[4px\] {
    --tw-translate-y: 4px;
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }
  .transform {
    transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
  }
  .grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .flex-col {
    flex-direction: column;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .items-center {
    align-items: center;
  }
  .justify-between {
    justify-content: space-between;
  }
  .justify-center {
    justify-content: center;
  }
  .justify-end {
    justify-content: flex-end;
  }
  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }
  .gap-6 {
    gap: calc(var(--spacing) * 6);
  }
  .self-end {
    align-self: flex-end;
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .rounded-\[5px\] {
    border-radius: 5px;
  }
  .rounded-\[100\%\] {
    border-radius: 100%;
  }
  .border-0 {
    border-style: var(--tw-border-style);
    border-width: 0px;
  }
  .border-\[3px\] {
    border-style: var(--tw-border-style);
    border-width: 3px;
  }
  .border-b-0 {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 0px;
  }
  .border-b-\[3px\] {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 3px;
  }
  .border-btbblue-30 {
    border-color: var(--color-btbblue-30);
  }
  .border-b-btbblue-30 {
    border-bottom-color: var(--color-btbblue-30);
  }
  .border-b-white {
    border-bottom-color: var(--color-white);
  }
  .bg-btb-cta-30 {
    background-color: var(--color-btb-cta-30);
  }
  .bg-btbblue-30 {
    background-color: var(--color-btbblue-30);
  }
  .bg-btbblue-100 {
    background-color: var(--color-btbblue-100);
  }
  .p-4 {
    padding: calc(var(--spacing) * 4);
  }
  .p-8 {
    padding: calc(var(--spacing) * 8);
  }
  .px-1 {
    padding-inline: calc(var(--spacing) * 1);
  }
  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }
  .px-6 {
    padding-inline: calc(var(--spacing) * 6);
  }
  .py-10 {
    padding-block: calc(var(--spacing) * 10);
  }
  .py-12 {
    padding-block: calc(var(--spacing) * 12);
  }
  .pt-4 {
    padding-top: calc(var(--spacing) * 4);
  }
  .pt-6 {
    padding-top: calc(var(--spacing) * 6);
  }
  .pb-4 {
    padding-bottom: calc(var(--spacing) * 4);
  }
  .pb-5 {
    padding-bottom: calc(var(--spacing) * 5);
  }
  .pb-6 {
    padding-bottom: calc(var(--spacing) * 6);
  }
  .pb-8 {
    padding-bottom: calc(var(--spacing) * 8);
  }
  .pb-10 {
    padding-bottom: calc(var(--spacing) * 10);
  }
  .text-center {
    text-align: center;
  }
  .align-middle {
    vertical-align: middle;
  }
  .font-\[Arvo\] {
    font-family: Arvo;
  }
  .text-\[1\.375rem\] {
    font-size: 1.375rem;
  }
  .lowercase {
    text-transform: lowercase;
  }
  .sm\:col-span-8 {
    @media (width >= 40rem) {
      grid-column: span 8 / span 8;
    }
  }
  .sm\:col-span-10 {
    @media (width >= 40rem) {
      grid-column: span 10 / span 10;
    }
  }
  .sm\:col-start-2 {
    @media (width >= 40rem) {
      grid-column-start: 2;
    }
  }
  .sm\:col-start-3 {
    @media (width >= 40rem) {
      grid-column-start: 3;
    }
  }
  .sm\:mt-16 {
    @media (width >= 40rem) {
      margin-top: calc(var(--spacing) * 16);
    }
  }
  .sm\:mt-20 {
    @media (width >= 40rem) {
      margin-top: calc(var(--spacing) * 20);
    }
  }
  .sm\:mb-\[0px\] {
    @media (width >= 40rem) {
      margin-bottom: 0px;
    }
  }
  .sm\:block {
    @media (width >= 40rem) {
      display: block;
    }
  }
  .sm\:flex {
    @media (width >= 40rem) {
      display: flex;
    }
  }
  .sm\:hidden {
    @media (width >= 40rem) {
      display: none;
    }
  }
  .sm\:translate-y-\[-1px\] {
    @media (width >= 40rem) {
      --tw-translate-y: -1px;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
  }
  .sm\:translate-y-\[3px\] {
    @media (width >= 40rem) {
      --tw-translate-y: 3px;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
  }
  .sm\:translate-y-\[4x\] {
    @media (width >= 40rem) {
      --tw-translate-y: 4x;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
  }
  .sm\:grid-cols-12 {
    @media (width >= 40rem) {
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
  }
  .sm\:flex-col {
    @media (width >= 40rem) {
      flex-direction: column;
    }
  }
  .sm\:justify-between {
    @media (width >= 40rem) {
      justify-content: space-between;
    }
  }
  .sm\:justify-center {
    @media (width >= 40rem) {
      justify-content: center;
    }
  }
  .md\:order-1 {
    @media (width >= 48rem) {
      order: 1;
    }
  }
  .md\:order-2 {
    @media (width >= 48rem) {
      order: 2;
    }
  }
  .md\:col-span-2 {
    @media (width >= 48rem) {
      grid-column: span 2 / span 2;
    }
  }
  .md\:col-span-5 {
    @media (width >= 48rem) {
      grid-column: span 5 / span 5;
    }
  }
  .md\:col-span-6 {
    @media (width >= 48rem) {
      grid-column: span 6 / span 6;
    }
  }
  .md\:col-span-8 {
    @media (width >= 48rem) {
      grid-column: span 8 / span 8;
    }
  }
  .md\:col-start-2 {
    @media (width >= 48rem) {
      grid-column-start: 2;
    }
  }
  .md\:col-start-3 {
    @media (width >= 48rem) {
      grid-column-start: 3;
    }
  }
  .md\:mt-\[20px\] {
    @media (width >= 48rem) {
      margin-top: 20px;
    }
  }
  .md\:mt-\[110px\] {
    @media (width >= 48rem) {
      margin-top: 110px;
    }
  }
  .md\:mr-4 {
    @media (width >= 48rem) {
      margin-right: calc(var(--spacing) * 4);
    }
  }
  .md\:mb-0 {
    @media (width >= 48rem) {
      margin-bottom: calc(var(--spacing) * 0);
    }
  }
  .md\:mb-8 {
    @media (width >= 48rem) {
      margin-bottom: calc(var(--spacing) * 8);
    }
  }
  .md\:mb-12 {
    @media (width >= 48rem) {
      margin-bottom: calc(var(--spacing) * 12);
    }
  }
  .md\:block {
    @media (width >= 48rem) {
      display: block;
    }
  }
  .md\:flex {
    @media (width >= 48rem) {
      display: flex;
    }
  }
  .md\:grid {
    @media (width >= 48rem) {
      display: grid;
    }
  }
  .md\:hidden {
    @media (width >= 48rem) {
      display: none;
    }
  }
  .md\:w-1\/3 {
    @media (width >= 48rem) {
      width: calc(1/3 * 100%);
    }
  }
  .md\:w-2\/3 {
    @media (width >= 48rem) {
      width: calc(2/3 * 100%);
    }
  }
  .md\:max-w-\[135\] {
    @media (width >= 48rem) {
      max-width: 135;
    }
  }
  .md\:translate-y-\[-1px\] {
    @media (width >= 48rem) {
      --tw-translate-y: -1px;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
  }
  .md\:translate-y-\[-4px\] {
    @media (width >= 48rem) {
      --tw-translate-y: -4px;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
  }
  .md\:translate-y-\[3x\] {
    @media (width >= 48rem) {
      --tw-translate-y: 3x;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
  }
  .md\:translate-y-\[4x\] {
    @media (width >= 48rem) {
      --tw-translate-y: 4x;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
  }
  .md\:grid-cols-7 {
    @media (width >= 48rem) {
      grid-template-columns: repeat(7, minmax(0, 1fr));
    }
  }
  .md\:grid-cols-12 {
    @media (width >= 48rem) {
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
  }
  .md\:items-center {
    @media (width >= 48rem) {
      align-items: center;
    }
  }
  .md\:justify-center {
    @media (width >= 48rem) {
      justify-content: center;
    }
  }
  .md\:justify-end {
    @media (width >= 48rem) {
      justify-content: flex-end;
    }
  }
  .md\:p-12 {
    @media (width >= 48rem) {
      padding: calc(var(--spacing) * 12);
    }
  }
  .md\:px-6 {
    @media (width >= 48rem) {
      padding-inline: calc(var(--spacing) * 6);
    }
  }
  .md\:py-16 {
    @media (width >= 48rem) {
      padding-block: calc(var(--spacing) * 16);
    }
  }
  .md\:pb-4 {
    @media (width >= 48rem) {
      padding-bottom: calc(var(--spacing) * 4);
    }
  }
  .md\:text-left {
    @media (width >= 48rem) {
      text-align: left;
    }
  }
  .md\:text-right {
    @media (width >= 48rem) {
      text-align: right;
    }
  }
  .md\:text-\[2\.25rem\] {
    @media (width >= 48rem) {
      font-size: 2.25rem;
    }
  }
  .lg\:col-span-4 {
    @media (width >= 64rem) {
      grid-column: span 4 / span 4;
    }
  }
  .lg\:col-span-5 {
    @media (width >= 64rem) {
      grid-column: span 5 / span 5;
    }
  }
  .lg\:col-span-6 {
    @media (width >= 64rem) {
      grid-column: span 6 / span 6;
    }
  }
  .lg\:col-span-8 {
    @media (width >= 64rem) {
      grid-column: span 8 / span 8;
    }
  }
  .lg\:col-start-3 {
    @media (width >= 64rem) {
      grid-column-start: 3;
    }
  }
  .lg\:mt-12 {
    @media (width >= 64rem) {
      margin-top: calc(var(--spacing) * 12);
    }
  }
  .lg\:mb-2 {
    @media (width >= 64rem) {
      margin-bottom: calc(var(--spacing) * 2);
    }
  }
  .lg\:block {
    @media (width >= 64rem) {
      display: block;
    }
  }
  .lg\:flex {
    @media (width >= 64rem) {
      display: flex;
    }
  }
  .lg\:hidden {
    @media (width >= 64rem) {
      display: none;
    }
  }
  .lg\:translate-y-\[-2px\] {
    @media (width >= 64rem) {
      --tw-translate-y: -2px;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
  }
  .lg\:translate-y-\[-4px\] {
    @media (width >= 64rem) {
      --tw-translate-y: -4px;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
  }
  .lg\:translate-y-\[0\] {
    @media (width >= 64rem) {
      --tw-translate-y: 0;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
  }
  .lg\:translate-y-\[1px\] {
    @media (width >= 64rem) {
      --tw-translate-y: 1px;
      translate: var(--tw-translate-x) var(--tw-translate-y);
    }
  }
  .lg\:flex-col {
    @media (width >= 64rem) {
      flex-direction: column;
    }
  }
  .lg\:border-0 {
    @media (width >= 64rem) {
      border-style: var(--tw-border-style);
      border-width: 0px;
    }
  }
  .lg\:border-t-\[3px\] {
    @media (width >= 64rem) {
      border-top-style: var(--tw-border-style);
      border-top-width: 3px;
    }
  }
  .lg\:border-r-\[3px\] {
    @media (width >= 64rem) {
      border-right-style: var(--tw-border-style);
      border-right-width: 3px;
    }
  }
  .lg\:border-b-\[3px\] {
    @media (width >= 64rem) {
      border-bottom-style: var(--tw-border-style);
      border-bottom-width: 3px;
    }
  }
  .lg\:border-t-btbblue-30 {
    @media (width >= 64rem) {
      border-top-color: var(--color-btbblue-30);
    }
  }
  .lg\:border-r-btbblue-30 {
    @media (width >= 64rem) {
      border-right-color: var(--color-btbblue-30);
    }
  }
  .lg\:border-b-btbblue-30 {
    @media (width >= 64rem) {
      border-bottom-color: var(--color-btbblue-30);
    }
  }
  .lg\:px-3 {
    @media (width >= 64rem) {
      padding-inline: calc(var(--spacing) * 3);
    }
  }
  .lg\:py-4 {
    @media (width >= 64rem) {
      padding-block: calc(var(--spacing) * 4);
    }
  }
  .xl\:col-span-5 {
    @media (width >= 80rem) {
      grid-column: span 5 / span 5;
    }
  }
  .xl\:col-start-2 {
    @media (width >= 80rem) {
      grid-column-start: 2;
    }
  }
  .xl\:px-3 {
    @media (width >= 80rem) {
      padding-inline: calc(var(--spacing) * 3);
    }
  }
}
@font-face {
  font-family: "Arvo";
  src: url("../fonts/Arvo-Bold.woff2") format("woff2"), url("../fonts/Arvo-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arvo";
  src: url("../fonts/Arvo.woff2") format("woff2"), url("../fonts/Arvo.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
h1 {
  font-family: 'Arvo', serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 160%;
  color: #000000;
}
h1.sans {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 160%;
  color: #000000;
}
.intro-copy {
  font-family: 'Arvo', serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 170%;
}
.highlight {
  background-color: rgba(22, 186, 231, 0.3);
}
.copy-standard {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 170%;
}
h2 {
  font-family: 'Arvo', serif;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 160%;
}
h3 {
  font-family: 'Arvo', serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 170%;
}
h4 {
  font-family: 'Arvo', serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 170%;
}
.button-text, button {
  font-family: 'Arvo', serif;
  font-weight: 700;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.375rem;
    line-height: 140%;
  }
  h1.sans {
    line-height: 140%;
  }
  .intro-copy {
    font-size: 1rem;
    line-height: 170%;
  }
  p, .copy-standard {
    font-size: 1rem;
    line-height: 170%;
  }
  h2 {
    font-size: 1.25rem;
    line-height: 160%;
  }
  h3 {
    font-size: 1rem;
    line-height: 170%;
  }
}
p a {
  font-family: var(--font-arvo);
  font-weight: bold;
  text-decoration: underline;
  transition: color .5s;
}
p a:hover {
  color: var(--color-btb-magenta-100);
}
.founder p {
  line-height: 170%;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.founder p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .founder p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }
  .founder p.intro-copy {
    margin-bottom: 0 !important;
  }
}
.hero p {
  margin-bottom: 2rem;
}
.hero p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .hero p {
    margin-bottom: 2.5rem;
  }
}
.benefits p {
  line-height: 170%;
  font-size: 1rem;
  line-height: 170%;
}
@media screen and (min-width: 768px) {
  .benefits p {
    font-size: 1.25rem;
  }
}
.steps p {
  line-height: 170%;
  font-size: 1rem;
  line-height: 170%;
}
@media screen and (min-width: 768px) {
  .steps p {
    font-size: 1.25rem;
  }
}
.cta h1 {
  line-height: 160%;
  font-size: 1.375rem;
  line-height: 160%;
  margin-bottom: 1.25rem;
}
.cta p {
  font-size: 1rem;
  line-height: 170%;
}
@media screen and (min-width: 768px) {
  .cta h1 {
    font-size: 2.25rem;
  }
  .cta p {
    font-size: 1.25rem;
    line-height: 170%;
  }
}
.standard-page h1 {
  font-family: var(--font-arvo);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 160%;
  color: #000000;
  margin-bottom: 80px;
}
.standard-page h2 {
  font-family: var(--font-arvo);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 160%;
  color: #000000;
  margin-bottom: 3rem;
}
.standard-page h3 {
  font-family: var(--font-arvo);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 170%;
  color: #000000;
  margin-bottom: 1.25rem;
}
.standard-page p, .standard-page li {
  font-family: var(--font-arvo);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 170%;
  color: #000000;
  margin-bottom: .75rem;
}
.standard-page p.sans {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 170%;
  color: #000000;
  margin-bottom: .75rem;
}
.standard-page a {
  font-family: var(--font-arvo);
  font-weight: bold;
  text-decoration: underline;
  transition: color .5s;
}
standard-page a:hover {
  color: var(--color-btb-magenta-100);
}
.standard-page ul {
  list-style: disc;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .standard-page h1 {
    font-family: var(--font-arvo);
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 160%;
    color: #000000;
  }
  .standard-page h2 {
    font-family: var(--font-arvo);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 160%;
    color: #000000;
  }
  .standard-page h3 {
    font-family: var(--font-arvo);
    font-weight: 700;
    font-size: 1rem;
    line-height: 170%;
    color: #000000;
  }
  .standard-page p, standard-page li {
    font-family: var(--font-arvo);
    font-weight: 400;
    font-size: 1rem;
    line-height: 170%;
    color: #000000;
    margin-bottom: .5rem;
  }
  .standard-page p.sans {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1rem;
    line-height: 170%;
    color: #000000;
    margin-bottom: .5rem;
  }
  .standard-page ul {
    margin-left: 16px;
  }
}
.service h3 {
  margin-top: .75rem;
}
strong {
  font-weight: bold;
}
.difference thead th:nth-child(1):not(.arrow-mobile), .difference tr td:nth-child(1):not(.arrow-mobile) {
  display: none;
}
@media (min-width: 1024px) {
  .difference thead th:nth-child(1):not(.arrow-mobile), .difference tr td:nth-child(1):not(.arrow-mobile) {
    display: table-cell;
  }
}
.difference table {
  width: 100%;
  border-radius: 12px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
.difference p {
  font-size: 1rem;
  @media (min-width: 1024px) {
    font-size: 1.25rem;
  }
}
.difference th {
  min-height: 143px;
}
.difference h2 {
  font-size: 1.25rem;
}
.difference th h2 {
  font-size: 1.825rem;
  text-align: left;
}
@media (min-width: 1024px) {
  .difference td {
    width: 33%;
  }
  .difference td:nth-child(3), .difference th:nth-child(3) {
    border-right: 3px solid var(--color-btbblue-30);
  }
  .difference th:nth-child(1) {
    align-content: flex-start;
  }
  .difference th:nth-child(2) {
    border-top-left-radius: 5px;
  }
  .difference th:nth-child(3) {
    border-top-right-radius: 5px;
  }
  .difference tr:last-child td:nth-child(2) {
    border-bottom-left-radius: 5px;
  }
  .difference tr:last-child td:nth-child(3) {
    border-bottom-right-radius: 5px;
  }
  .difference table {
    border-radius: 0;
    border: 0;
  }
}
.difference td.arrow-mobile {
  position: absolute;
  left: calc(50% - 100px);
  transform: translateY(-1rem);
  width: 240px;
  text-align: center;
  height: 36px;
  font-size: 1rem;
  font-family: var(--font-arvo);
  font-weight: bold;
  color: #fff;
  background-color: var(--color-btbbdarklue-100);
  padding-top: .325rem;
  border-radius: 5px;
}
.difference td.arrow-desktop span {
  text-align: right;
  padding-right: 50px;
  font-size: 1.25rem;
  font-family: var(--font-arvo);
  font-weight: bold;
  color: #fff;
  background-color: var(--color-btbbdarklue-100);
  padding-top: .75rem;
  width: 100%;
  display: block;
  height: 50px;
  clip-path: polygon(0 0,calc(100% - 26px) 0,100% 26px,100% calc(100% - 26px),calc(100% - 26px) 100%,0 100%);
  border-radius: 5px;
  @media (min-width: 1240px) {
    padding-right: 80px;
  }
}
.difference tbody tr {
  margin-bottom: -1px;
}
.intro-vis_md {
  width: 100vw;
}
.services hr {
  height: .5rem;
  background-color: #12B9E6;
  border-width: 0;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 1024px) {
  .services hr {
    margin-bottom: -1.3rem;
  }
}
.services h3 span {
  background-color: #fff;
}
@media screen and (min-width: 1024px) {
  .services h3 span {
    padding: 0 40px;
  }
}
.step span {
  font-family: "Arvo", serif;
  font-weight: bold;
  padding-top: 6px;
  border-radius: 2rem;
}
.step:nth-child(4) {
  grid-column-start: 1;
}
@media (min-width: 1024px) {
  .step:nth-child(4) {
    grid-column-start: 3;
  }
  .step {
    align-self: stretch;
  }
}
.btn-cta {
  background-color: var(--color-btb-magenta-100);
  padding: 10px 30px;
  font-family: var(--font-arvo);
  font-weight: bold;
  font-size: 1.25rem;
  margin: 1.5rem 0;
  color: #fff;
  border-radius: 5px;
  transition: background-color .3s;
  display: block;
  text-align: center;
}
.btn-cta:hover {
  background-color: #b40065;
}
@media (min-width: 768px) {
  .btn-cta {
    max-width: 340px;
    align-self: end;
  }
}
footer nav li {
  text-align: center;
}
footer a {
  font-family: var(--font-arvo);
  font-size: 1rem;
  font-weight: bold;
  text-decoration: underline;
  padding: 1rem;
  transition: color .5s;
}
footer a:hover {
  color: var(--color-btb-magenta-100);
}
.footer-nav-menu {
  display: flex;
}
.service:nth-child(1) img {
  transform: translatex(-6px);
  max-width: 72px;
}
.service:nth-child(2) img {
  transform: translatex(-3px);
}
.service:nth-child(3) img {
  transform: translatex(-3px);
}
.service:nth-child(4) img {
  transform: translatex(2px);
  max-width: 77px;
}
.service:nth-child(5) img {
  max-width: 72px;
}
.service:nth-child(6) img {
  max-width: 72px;
}
@media (min-width: 1024px) {
  .service:nth-child(1) img {
    transform: translatex(-12px);
    max-width: 122px;
  }
  .service:nth-child(2) img {
    transform: translate(-4px, 1px);
    max-width: 128px;
  }
  .service:nth-child(3) img {
    transform: translate(-4px, -1px);
    max-width: 130px;
  }
  .service:nth-child(4) img {
    transform: translate(3px, 10px);
    max-width: 132px;
  }
  .service:nth-child(5) img {
    transform: translate(1px, 6px);
    max-width: 124px;
  }
  .service:nth-child(6) img {
    transform: translatex(1px);
    max-width: 140px;
  }
}
@media (min-width: 1024px) {
  .step:nth-child(1) img {
    transform: translate(0, 30px);
  }
  .step:nth-child(2) img {
    transform: translate(0, 30px);
  }
  .step:nth-child(3) img {
    transform: translate(0, 20px);
  }
  .step:nth-child(4) img {
    transform: translate(-21px,26px);
    max-width: 100px;
  }
  .step:nth-child(5) img {
    transform: translate(-18px, 32px);
    max-width: 100px;
  }
  .step:nth-child(4) {
    transform: translateX(-1rem);
  }
  .step:nth-child(5) {
    transform: translateX(1rem);
  }
}
@media (min-width: 1240px) {
  .step:nth-child(1) img {
    transform: translate(0, 0);
    max-width: 96px;
  }
  .step:nth-child(2) img {
    transform: translate(0, -15px);
    max-width: 105px;
  }
  .step:nth-child(3) img {
    transform: translate(15px, -28px);
    max-width: 100px;
  }
  .step:nth-child(4) img {
    transform: translate(-55px, -27px);
    max-width: 160px;
  }
  .step:nth-child(5) img {
    transform: translate(-25px, -15px);
    max-width: 125px;
  }
  .step:nth-child(5) {
    transform: translateX(1rem);
  }
}
.clients .logos-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.clients .logo-item {
  width: 50%;
  padding: 2rem 1rem;
  align-content: center;
}
.clients .logo-item img {
  display: block;
  margin: auto;
}
@media (min-width: 1024px) {
  .clients .logos-grid {
    margin-bottom: 4rem;
    flex-wrap: nowrap;
  }
  .clients .logo-item {
    width: auto;
  }
}
@property --tw-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-z {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-translate-z: 0;
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
    }
  }
}
