@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
:root {
  --font-family-sans: "FoundersGrotesk", sans-serif;
  --font-family-mono: "IBMPlexMono", sans-serif;
  --font-family-serif: "TiemposText", serif;
  --gutters: 50px;
  --spacer-xxs: 15px;
  --spacer-xs: 25px;
  --spacer-s: 50px;
  --spacer-m: 100px;
  --spacer-l: 150px;
  --spacer-xl: 200px;
  --spacer-xxl: 300px;
  --border-radius: 10px;
  --layer-5: 500;
  --layer-4: 400;
  --layer-3: 300;
  --layer-2: 200;
  --layer-1: 100;
  --layer-0: 0;
  --wrapper: calc(100vw - var(--gutters) * 2);
  --leftMargin: calc((100vw - var(--wrapper)) / 2);
}

@media only screen and (max-width: 500px) {
  :root {
    --gutters: 25px;
  }
}
@media only screen and (min-width: 501px) and (max-width: 899px) {
  :root {
    --gutters: 30px;
  }
}
@media only screen and (min-width: 900px) and (max-width: 1149px) {
  :root {
    --gutters: 35px;
  }
}
@media only screen and (min-width: 1150px) and (max-width: 1449px) {
  :root {
    --gutters: 50px;
  }
}
@media only screen and (min-width: 1450px) {
  :root {
    --gutters: 50px;
  }
}
:root {
  color-scheme: light;
  --color-bg: #ffffff;
  --color-dark: #222222;
  --color-medium: #4b4b4b;
  --color-light: #777777;
  --color-pop: #0063E2;
  --color-pop-secondary: #00874D;
}

[color-scheme=dark] {
  color-scheme: dark;
  --transparent: rgba(255, 255, 255, 0);
  --color-bg: #141414;
  --color-art-bg: rgba(255, 255, 255, 0.1);
  --color-text: #ffffff;
  --color-text-highlight: rgba(255, 255, 255, 0.5);
  --color-text-reverse: #000000;
  --color-text-reverse-highlight: rgba(0, 0, 0, 0.4);
  --color-pop: #ffbb00;
  --color-pop-reverse: #00754d;
}

@font-face {
  font-family: "FoundersGrotesk";
  src: url("../fonts/FoundersGrotesk/FoundersGrotesk-Variable.woff2") format("woff2-variations");
  font-display: swap;
  font-weight: 200 700;
}
@font-face {
  font-family: "IBMPlexMono";
  src: url("../fonts/IBMPlexMono/IBMPlexMono-Variable.woff2") format("woff2-variations");
  font-display: swap;
  font-weight: 200 700;
}
@font-face {
  font-family: "TiemposText";
  src: url("../fonts/TiemposText/TiemposText-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.debug {
  padding: 20px;
  font-family: "IBMPlexMono", sans-serif;
  font-family: var(--font-family-mono);
  position: fixed;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: 0;
  background-color: #333;
  z-index: 500;
  z-index: var(--layer-5);
}
.debug p {
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
  color: white;
}
@media only screen and (max-width: 500px) {
  .debug {
    background-color: rgba(10, 66, 52, 0.75);
  }
  .debug .breakpoint:after {
    content: "Mobile (0-500)";
  }
}
@media only screen and (min-width: 501px) and (max-width: 899px) {
  .debug {
    background-color: rgba(165, 42, 73, 0.75);
  }
  .debug .breakpoint:after {
    content: "Tablet (501-900)";
  }
}
@media only screen and (min-width: 900px) and (max-width: 1149px) {
  .debug {
    background-color: rgba(35, 66, 134, 0.75);
  }
  .debug .breakpoint:after {
    content: "Desktop Small (800-1150)";
  }
}
@media only screen and (min-width: 1150px) and (max-width: 1449px) {
  .debug {
    background-color: rgba(165, 94, 13, 0.75);
  }
  .debug .breakpoint:after {
    content: "Desktop Medium (1150-1449)";
  }
}
@media only screen and (min-width: 1450px) {
  .debug {
    background-color: rgba(25, 114, 65, 0.75);
  }
  .debug .breakpoint:after {
    content: "Desktop XLarge (1450 and up)";
  }
}

.sg-all, .sg-04, .sg-05, .sg-06 {
  cursor: pointer;
}

.show-grid {
  content: "text";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  padding-left: 50px;
  padding-left: var(--gutters);
  padding-right: 50px;
  padding-right: var(--gutters);
}

.grid-item {
  text-align: center;
  font-size: 16px;
  line-height: 35px;
  height: 35px;
  font-weight: 700;
  background: rgba(255, 0, 0, 0.1);
}
.grid-item:nth-child(2n+0) {
  background: rgba(0, 0, 0, 0.1);
}

.grid__six-column {
  display: grid;
  gap: 50px;
  grid-gap: 50px;
  grid-gap: var(--gutters);
  gap: var(--gutters);
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid__six-column.show {
  display: none;
}
.grid__six-column .grid-item {
  height: 100%;
  background: rgba(0, 100, 255, 0.1);
}
.grid__six-column .one {
  grid-column: 1/2;
}
.grid__six-column .two {
  grid-column: 2/3;
}
.grid__six-column .three {
  grid-column: 3/4;
}
.grid__six-column .four {
  grid-column: 4/5;
}
.grid__six-column .five {
  grid-column: 5/6;
}
.grid__six-column .six {
  grid-column: 6/7;
}

.grid__five-column {
  display: grid;
  gap: 50px;
  grid-gap: 50px;
  grid-gap: var(--gutters);
  gap: var(--gutters);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid__five-column.show {
  display: none;
}
.grid__five-column .grid-item {
  height: 100%;
  background: rgba(0, 100, 255, 0.1);
}
.grid__five-column .one {
  grid-column: 1/2;
}
.grid__five-column .two {
  grid-column: 2/3;
}
.grid__five-column .three {
  grid-column: 3/4;
}
.grid__five-column .four {
  grid-column: 4/5;
}
.grid__five-column .five {
  grid-column: 5/6;
}

.grid__four-column {
  display: grid;
  gap: 50px;
  grid-gap: 50px;
  grid-gap: var(--gutters);
  gap: var(--gutters);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid__four-column.show {
  display: none;
}
.grid__four-column .grid-item {
  height: 100%;
  background: rgba(0, 100, 255, 0.1);
}
.grid__four-column .one {
  grid-column: 1/2;
}
.grid__four-column .two {
  grid-column: 2/3;
}
.grid__four-column .three {
  grid-column: 3/4;
}
.grid__four-column .four {
  grid-column: 4/5;
}

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

body {
  font-family: "FoundersGrotesk", sans-serif;
  font-family: var(--font-family-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  background-color: #ffffff;
  background-color: var(--color-bg);
  color: #222222;
  color: var(--color-dark);
  font-size: 100%;
  line-height: 1;
  scroll-behavior: smooth;
}
body.navigation-open {
  overflow: hidden;
  height: auto;
}

body {
  font-size: calc(18px + 4 * ((100vw - 375px) / 425));
  -webkit-font-feature-settings: "dlig", "liga", "kern";
          font-feature-settings: "dlig", "liga", "kern";
  font-variation-settings: "wght" 435;
  line-height: 1.35;
}
@media screen and (max-width: 375px) {
  body {
    font-size: 18px;
  }
}
@media screen and (min-width: 800px) {
  body {
    font-size: calc(22px + 2 * ((100vw - 800px) / 650));
  }
}
@media screen and (min-width: 1450px) {
  body {
    font-size: 24px;
  }
}

::-moz-selection {
  background: #ffbb00;
  color: #222222;
  color: var(--color-dark);
  text-shadow: none;
}

::selection {
  background: #ffbb00;
  color: #222222;
  color: var(--color-dark);
  text-shadow: none;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

figure, picture {
  display: block;
  border: 0;
  height: auto;
  outline: 0 none;
  opacity: 1;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

h1, h2, h3, h4, h5, h6 {
  font-variation-settings: "wght" 350;
  line-height: 100%;
}

h1 {
  font-size: calc(36px + 26 * ((100vw - 375px) / 425));
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 375px) {
  h1 {
    font-size: 36px;
  }
}
@media screen and (min-width: 800px) {
  h1 {
    font-size: calc(62px + 23 * ((100vw - 800px) / 650));
  }
}
@media screen and (min-width: 1450px) {
  h1 {
    font-size: 85px;
  }
}
h1:last-child {
  margin-bottom: 0;
}

h2 {
  margin-bottom: 1.5rem;
}

h3 {
  font-variation-settings: "wght" 600;
}

a {
  color: #222222;
  color: var(--color-dark);
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
  text-decoration-line: underline;
  text-decoration-color: #0063E2;
  text-decoration-color: var(--color-pop);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
a:hover, a:active, a:focus {
  color: #777777;
  color: var(--color-light);
}

p {
  line-height: 125%;
  margin-bottom: 1.5rem;
}
p.deck {
  font-variation-settings: "wght" 300;
  line-height: 115%;
}
p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

ul {
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 1.5rem;
}
ul li::marker {
  content: normal;
  content: initial;
}

ul.marker {
  list-style-type: disc;
}
ul.marker li::marker {
  content: "● ";
  color: var(--color-text-highlight);
}

.button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

button, a.button, .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  background-color: black;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  font-size: 18px;
  line-height: 1;
  padding-top: 12px;
  padding-left: 16px;
  padding-bottom: 12px;
  padding-right: 16px;
  border-radius: 25px;
  -webkit-text-decoration: none;
  text-decoration: none;
  font-variation-settings: "wght" 450;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  cursor: pointer;
}
button:hover, a.button:hover, .button:hover {
  background-color: #777777;
  background-color: var(--color-light);
}
@media only screen and (max-width: 500px) {
  button, a.button, .button {
    padding-top: 10px;
    padding-left: 15px;
    padding-bottom: 10px;
    padding-right: 15px;
  }
}
button.secondary, a.button.secondary, .button.secondary {
  color: #222222;
  color: var(--color-dark);
  border: 1.5px solid #777777;
  border: 1.5px solid var(--color-light);
  background-color: white;
  margin-left: 25px;
}
button.secondary:hover, a.button.secondary:hover, .button.secondary:hover {
  color: #777777;
  color: var(--color-light);
  border: 1.5px solid #222222;
  border: 1.5px solid var(--color-dark);
}
@media only screen and (max-width: 500px) {
  button.secondary, a.button.secondary, .button.secondary {
    margin-left: 15px;
  }
}
button.main-cta, a.button.main-cta, .button.main-cta {
  padding: 15px 25px;
  border-radius: 70px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #0063E2;
  line-height: 1;
  padding-top: 18px;
  font-size: calc(20px + 1 * ((100vw - 375px) / 425));
  font-variation-settings: "wght" 550;
}
@media screen and (max-width: 375px) {
  button.main-cta, a.button.main-cta, .button.main-cta {
    font-size: 20px;
  }
}
@media screen and (min-width: 800px) {
  button.main-cta, a.button.main-cta, .button.main-cta {
    font-size: calc(21px + 1 * ((100vw - 800px) / 650));
  }
}
@media screen and (min-width: 1450px) {
  button.main-cta, a.button.main-cta, .button.main-cta {
    font-size: 22px;
  }
}
@media only screen and (min-width: 900px) {
  button.main-cta, a.button.main-cta, .button.main-cta {
    padding: 30px 50px;
    padding-top: 33px;
    border-radius: 70px;
  }
}
button.main-cta:hover, a.button.main-cta:hover, .button.main-cta:hover {
  background: #003989;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 50px;
  padding-left: var(--gutters);
  padding-right: 50px;
  padding-right: var(--gutters);
  padding-top: 15px;
  padding-bottom: 15px;
  z-index: 1;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

nav {
  display: none;
}
@media only screen and (min-width: 900px) {
  nav {
    display: block;
  }
  nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
  }
  nav li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 75px;
  }
  nav li:last-child {
    margin-right: 0;
  }
}
nav a {
  -webkit-text-decoration: none;
  text-decoration: none;
  line-height: 1;
  margin: 0;
  font-size: calc(18px + 2 * ((100vw - 375px) / 425));
  font-variation-settings: "wght" 400;
}
@media screen and (max-width: 375px) {
  nav a {
    font-size: 18px;
  }
}
@media screen and (min-width: 800px) {
  nav a {
    font-size: calc(20px + 2 * ((100vw - 800px) / 650));
  }
}
@media screen and (min-width: 1450px) {
  nav a {
    font-size: 22px;
  }
}

svg {
  width: 100px;
  height: auto;
}
@media (--mobile-to-desktop) {
  svg {
    width: 125px;
  }
}
svg path {
  fill: black;
}

.main-hero .main-cta {
  margin-bottom: calc(50px + 50 * ((100vw - 375px) / 1075));
}
@media screen and (max-width: 375px) {
  .main-hero .main-cta {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1450px) {
  .main-hero .main-cta {
    margin-bottom: 100px;
  }
}

h1 {
  line-height: 90%;
  font-variation-settings: "wght" 700;
  text-align: center;
  width: 100%;
}
@media only screen and (min-width: 900px) {
  h1 {
    width: 20ch;
  }
}

.how-it-works {
  width: 100vw;
  background-color: #EFECE6;
  padding-bottom: 75px;
  padding-top: 75px;
  margin-bottom: 0px;
}

.hiw-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  grid-gap: 50px;
  grid-gap: var(--gutters);
  gap: var(--gutters);
  margin-bottom: 100px;
}
@media only screen and (min-width: 900px) {
  .hiw-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hiw-card {
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 25px;
  border-radius: 15px;
}
.hiw-card p {
  font-size: calc(18px + 1 * ((100vw - 375px) / 425));
}
@media screen and (max-width: 375px) {
  .hiw-card p {
    font-size: 18px;
  }
}
@media screen and (min-width: 800px) {
  .hiw-card p {
    font-size: calc(19px + 3 * ((100vw - 800px) / 650));
  }
}
@media screen and (min-width: 1450px) {
  .hiw-card p {
    font-size: 22px;
  }
}
.hiw-card img {
  padding: 50px;
  padding: var(--gutters);
}

p.hiw-card-number {
  font-size: calc(24px + 4 * ((100vw - 375px) / 425));
  -ms-flex-item-align: start;
      align-self: start;
  margin: 0;
  font-family: "IBMPlexMono", sans-serif;
  font-family: var(--font-family-mono);
  color: #777777;
  color: var(--color-light);
  font-variation-settings: "wght" 400;
}
@media screen and (max-width: 375px) {
  p.hiw-card-number {
    font-size: 24px;
  }
}
@media screen and (min-width: 800px) {
  p.hiw-card-number {
    font-size: calc(28px + 8 * ((100vw - 800px) / 650));
  }
}
@media screen and (min-width: 1450px) {
  p.hiw-card-number {
    font-size: 36px;
  }
}

.hiw-card-title {
  margin: 0;
  font-variation-settings: "wght" 500;
}

.hiw-card-deck {
  color: #777777;
  color: var(--color-light);
}

.bona-fides .section-deck {
  margin-bottom: 50px;
  margin-bottom: var(--gutters);
}

.bf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  grid-gap: 50px;
  grid-gap: var(--gutters);
  gap: var(--gutters);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 900px) {
  .bf-grid {
    grid-template-columns: repeat(5, 1fr);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.bf-grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  grid-gap: 50px;
  grid-gap: var(--gutters);
  gap: var(--gutters);
}
@media only screen and (min-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.news-card {
  border-radius: 15px;
  border: 1px solid #777777;
  border: 1px solid var(--color-light);
  background-color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0px;
  gap: 0px;
}
@media only screen and (min-width: 900px) {
  .news-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news-card--text {
  padding: 25px;
}
.news-card--art {
  border-radius: 15px 0px 0px 15px;
}
@media only screen and (min-width: 900px) {
  .news-card--art {
    border-radius: 15px 15px 0px 0px;
  }
}
.news-card--title {
  font-size: calc(18px + 3 * ((100vw - 375px) / 425));
  font-variation-settings: "wght" 500;
  margin-bottom: 0;
}
@media screen and (max-width: 375px) {
  .news-card--title {
    font-size: 18px;
  }
}
@media screen and (min-width: 800px) {
  .news-card--title {
    font-size: calc(21px + 3 * ((100vw - 800px) / 650));
  }
}
@media screen and (min-width: 1450px) {
  .news-card--title {
    font-size: 24px;
  }
}
.news-card--deck {
  font-size: calc(16px + 1 * ((100vw - 375px) / 425));
  font-variation-settings: "wght" 400;
  margin-top: 0;
}
@media screen and (max-width: 375px) {
  .news-card--deck {
    font-size: 16px;
  }
}
@media screen and (min-width: 800px) {
  .news-card--deck {
    font-size: calc(17px + 1 * ((100vw - 800px) / 650));
  }
}
@media screen and (min-width: 1450px) {
  .news-card--deck {
    font-size: 18px;
  }
}

.call-to-action {
  width: 100vw;
  margin-bottom: 0;
  padding-bottom: 75px;
  padding-top: 75px;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0px;
  gap: 0px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-left: var(--gutters);
  padding-right: 50px;
  padding-right: var(--gutters);
}
@media only screen and (min-width: 900px) {
  .cta-inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

.cta-text {
  font-size: calc(32px + 16 * ((100vw - 375px) / 425));
  margin-bottom: calc(15px + 15 * ((100vw - 375px) / 1075));
}
@media screen and (max-width: 375px) {
  .cta-text {
    font-size: 32px;
  }
}
@media screen and (min-width: 800px) {
  .cta-text {
    font-size: calc(48px + 24 * ((100vw - 800px) / 650));
  }
}
@media screen and (min-width: 1450px) {
  .cta-text {
    font-size: 72px;
  }
}
@media screen and (max-width: 375px) {
  .cta-text {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1450px) {
  .cta-text {
    margin-bottom: 30px;
  }
}

img.cta-art {
  display: none;
}
@media only screen and (min-width: 900px) {
  img.cta-art {
    display: block;
    max-width: 500px;
  }
}

.left, .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer {
  background-color: black;
  color: white;
  width: 100vw;
  padding: 50px;
  padding-bottom: calc(50px - 1.5rem);
}

.footer-top, .footer-bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media only screen and (min-width: 900px) {
  .footer-top, .footer-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer-top {
  gap: 30px;
  margin-bottom: 100px;
}
@media only screen and (min-width: 900px) {
  .footer-top {
    margin-bottom: 0px;
    margin-bottom: 250px;
  }
}
.footer-top a {
  color: white;
}
.footer-top svg path {
  fill: white;
}

.drawer {
  position: fixed;
  top: 0px;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  background-color: white;
  padding: 50px;
  padding: var(--gutters);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.45s;
          transition-duration: 0.45s;
  -webkit-transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
          transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}
@media only screen and (min-width: 900px) {
  .drawer {
    right: -50vw;
    width: 50vw;
  }
}
.drawer .drawer-heading {
  text-align: left;
  font-size: calc(36px + 6 * ((100vw - 375px) / 425));
}
@media screen and (max-width: 375px) {
  .drawer .drawer-heading {
    font-size: 36px;
  }
}
@media screen and (min-width: 800px) {
  .drawer .drawer-heading {
    font-size: calc(42px + 20 * ((100vw - 800px) / 650));
  }
}
@media screen and (min-width: 1450px) {
  .drawer .drawer-heading {
    font-size: 62px;
  }
}
.drawer .deck {
  font-variation-settings: "wght" 350;
}
.drawer .close-button {
  position: absolute;
  top: 50px;
  top: var(--gutters);
  right: 50px;
  right: var(--gutters);
  cursor: pointer;
}

.drawer-shield {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: -100;
  opacity: 0;
  scale: 0.95;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
          transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}

body.navigation-open {
  overflow: hidden;
}
body.navigation-open .drawer {
  right: 0px;
}
body.navigation-open .drawer-shield {
  opacity: 1;
  scale: 1;
  z-index: 100;
}

body.navigation-closed .drawer {
  right: -100vw;
}
@media only screen and (min-width: 900px) {
  body.navigation-closed .drawer {
    right: -50vw;
    width: 50vw;
  }
}
body.navigation-closed .drawer-shield {
  z-index: -100;
  opacity: 0;
  scale: 0.95;
}

.mc-form .mc-email-form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mc-form input:not([type=checkbox]):not([type=search]):not([type=submit]):not([type=radio]) {
  font-size: 17px;
  line-height: 1;
  font-variation-settings: "wght" 400;
  font-weight: 400;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: white;
  border: 1px solid #777777;
  border: 1px solid var(--color-light);
  border-radius: 50px 0px 0px 50px;
  color: #4b4b4b;
  color: var(--color-medium);
  outline: 0;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 20px 30px 20px 30px;
  width: 100%;
  margin-bottom: 12px;
}

.mc-form input:not([type=checkbox]):not([type=search]):not([type=email]):not([type=radio]) {
  font-size: 17px;
  font-variation-settings: "wght" 700;
  font-weight: 700;
  line-height: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #00754d;
  color: white;
  border: 1px solid transparent;
  border-radius: 0px 50px 50px 0px;
  color: white;
  outline: 0;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 20px 30px 20px 25px;
  margin-bottom: 12px;
}

/* Layout Properties (position, float, clear, display)
Box Model Properties (width, height, margin, padding)
Visual Properties (color, background, border, box-shadow)
Typography Properties (font-size, font-family, text-align, text-transform)
Misc Properties (cursor, overflow, z-index) */
/* Positioning */
/* Layout */
/* Sizing */
/* Visual */
/* Animation */
/* Type */
/* Misc */
html, body {
  height: 100%;
}

main {
  padding-top: calc(150px + 125 * ((100vw - 375px) / 1075));
}
@media screen and (max-width: 375px) {
  main {
    padding-top: 150px;
  }
}
@media screen and (min-width: 1450px) {
  main {
    padding-top: 275px;
  }
}

section {
  padding: 0px;
  margin-bottom: calc(75px + 100 * ((100vw - 375px) / 1075));
}
@media screen and (max-width: 375px) {
  section {
    margin-bottom: 75px;
  }
}
@media screen and (min-width: 1450px) {
  section {
    margin-bottom: 175px;
  }
}

.content-wrap {
  max-width: 1450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-left: var(--gutters);
  padding-right: 50px;
  padding-right: var(--gutters);
}

h2 {
  font-size: calc(32px + 24 * ((100vw - 375px) / 425));
  line-height: 90%;
  font-variation-settings: "wght" 700;
  text-align: center;
  max-width: 950px;
}
@media screen and (max-width: 375px) {
  h2 {
    font-size: 32px;
  }
}
@media screen and (min-width: 800px) {
  h2 {
    font-size: calc(56px + 16 * ((100vw - 800px) / 650));
  }
}
@media screen and (min-width: 1450px) {
  h2 {
    font-size: 72px;
  }
}

.section-deck {
  font-family: "TiemposText", serif;
  font-family: var(--font-family-serif);
  margin-bottom: calc(50px + 50 * ((100vw - 375px) / 1075));
  max-width: 750px;
  text-align: center;
}
@media screen and (max-width: 375px) {
  .section-deck {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1450px) {
  .section-deck {
    margin-bottom: 100px;
  }
}

.section-slug {
  color: #00874D;
  font-family: "IBMPlexMono", sans-serif;
  font-family: var(--font-family-mono);
  font-variation-settings: "wght" 525;
  font-size: calc(14px + 1 * ((100vw - 375px) / 425));
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 375px) {
  .section-slug {
    font-size: 14px;
  }
}
@media screen and (min-width: 800px) {
  .section-slug {
    font-size: calc(15px + 1 * ((100vw - 800px) / 650));
  }
}
@media screen and (min-width: 1450px) {
  .section-slug {
    font-size: 16px;
  }
}

p.small {
  font-size: calc(16px + 1 * ((100vw - 375px) / 425));
  font-variation-settings: "wght" 350;
}
@media screen and (max-width: 375px) {
  p.small {
    font-size: 16px;
  }
}
@media screen and (min-width: 800px) {
  p.small {
    font-size: calc(17px + 1 * ((100vw - 800px) / 650));
  }
}
@media screen and (min-width: 1450px) {
  p.small {
    font-size: 18px;
  }
}

.alert {
  color: red;
}
/*# sourceMappingURL=style.css.map */
