:root {
  --black: #021629;
  --off-white: #dedcc8;
  --white: #eee4e1;
  --dark-red: #822500;
}

body {
  background-color: var(--black);
  color: var(--off-white);
  font-family: Satoshi, sans-serif;
  font-size: 1rem;
  line-height: 135%;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 5.56em;
  font-weight: 700;
  line-height: 110%;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 3.33em;
  font-weight: 700;
  line-height: 110%;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 2.22em;
  font-weight: 700;
  line-height: 100%;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.67em;
  font-weight: 700;
  line-height: 100%;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.46em;
  font-weight: 700;
  line-height: 100%;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 100%;
}

p {
  margin-bottom: 0;
  font-size: 1.25em;
  font-weight: 400;
  line-height: 150%;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

li {
  margin-left: 0;
  padding: .6em 0 .6em .5em;
}

img {
  width: 100%;
  max-width: 100%;
  display: inline-block;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.page-content {
  padding-top: 7.1em;
}

.styles {
  display: none;
}

.section {
  padding: 5.56em 0;
}

.section.is-nav {
  z-index: 50;
  background-color: var(--black);
  width: 100%;
  padding-top: 1.6em;
  padding-bottom: 1.6em;
  position: fixed;
  inset: 0% 0% auto;
}

.section.is-home-hero {
  background-image: url('../images/home-hero-bg.svg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: auto 88%;
}

.section.is-home-hero.hub {
  background-size: auto 110%;
}

.section.is-footer {
  padding-bottom: 3em;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2.78em;
}

.nav-layout {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-logo {
  width: 14.03em;
}

.nav-links {
  grid-column-gap: 4.51em;
  grid-row-gap: 4.51em;
  justify-content: flex-end;
  display: flex;
}

.nav-link {
  color: var(--white);
  font-size: 1.2em;
  line-height: 100%;
  text-decoration: none;
  transition: color .2s;
}

.nav-link:hover {
  color: var(--off-white);
}

.nav-link.w--current {
  border-bottom: 1px solid #822500;
  margin-bottom: -13px;
  padding-bottom: 12px;
}

.home-hero-1 {
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.hub-layout {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.hub-cards {
  grid-column-gap: 2.08em;
  grid-row-gap: 2.08em;
  flex-direction: column;
  display: flex;
}

.hub-card {
  grid-column-gap: 3.19em;
  grid-row-gap: 3.19em;
  background-color: #008d964d;
  border: 1px solid #008d96;
  border-radius: 1.74em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 18em;
  padding: 4.76em 3.47em;
  text-decoration: none;
  transition: border-radius .5s cubic-bezier(.77, 0, .175, 1);
  display: flex;
}

.hub-card:hover {
  border-radius: 100vw;
}

.hub-img {
  width: 22.22%;
}

.hub-card-text {
  font-size: 2.22em;
  font-weight: 400;
}

.hub-p {
  width: 39ch;
  max-width: 100%;
}

.nav-close, .nav-open {
  display: none;
}

.footer-layout {
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.footer-layout._3 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.footer-group {
  grid-column-gap: 1.94em;
  grid-row-gap: 1.94em;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-logo {
  width: 80%;
}

.footer-logo.smaller {
  width: 50%;
}

.footer-location {
  margin-top: auto;
  font-size: 1em;
}

.footer-location.no-top-auto {
  margin-top: 0;
}

.footer-link {
  font-size: 1em;
  text-decoration: none;
}

.footer-link.bold {
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid var(--off-white);
  width: 100%;
  margin-top: 3em;
  padding-top: 1em;
}

.bottom-footer-p {
  font-size: .83em;
}

@media screen and (max-width: 991px) {
  .nav-layout {
    flex-direction: column;
  }

  .hub-layout {
    grid-template-columns: 1fr;
  }

  .hub-cards {
    flex-direction: row;
  }

  .hub-p {
    width: auto;
  }

  .footer-layout {
    grid-row-gap: 4em;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .footer-layout._3 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .footer-logo.smaller {
    width: 15em;
  }

  .footer-location {
    font-size: 1.25em;
  }
}

@media screen and (max-width: 767px) {
  .container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .nav-layout {
    flex-direction: row;
  }

  .nav-links {
    z-index: 5;
    background-color: var(--black);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100dvh;
    padding: 3em;
    transition: transform .475s cubic-bezier(.23, 1, .32, 1);
    position: fixed;
    inset: 0%;
    transform: translate(100%);
  }

  .nav-link {
    font-size: 2em;
  }

  .hub-layout {
    grid-template-columns: 1fr;
  }

  .hub-cards {
    flex-direction: column;
  }

  .hub-card {
    min-height: 22em;
  }

  .hub-card:hover {
    border-radius: 1.74em;
  }

  .nav-close {
    background-color: #008d961a;
    border: 1px solid #008d96;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    width: 5em;
    height: 5em;
    margin-bottom: -9em;
    margin-left: auto;
    display: flex;
  }

  .close-icon {
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 100%;
    display: flex;
  }

  .nav-open {
    background-color: #008d961a;
    border: 1px solid #008d96;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    width: 5em;
    height: 5em;
    margin-bottom: 0;
    margin-left: 0;
    display: flex;
  }

  .open-icon {
    justify-content: center;
    align-items: center;
    width: 40%;
    height: 100%;
    display: flex;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 3.8em;
  }

  .hub-card {
    padding-left: 2.47em;
    padding-right: 2.47em;
  }

  .hub-img {
    width: 29%;
    max-width: 8.3em;
  }

  .hub-card-text {
    font-size: 1.7em;
  }

  .nav-close {
    margin-bottom: -3.5em;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

  .footer-logo, .footer-logo.w--current {
    width: 50%;
  }

  .footer-location, .footer-link {
    font-size: 1.2em;
  }
}

#w-node-_5fa85a3a-92c4-08b7-ae8d-a5cef3d77786-58a8b421, #w-node-d88d977d-7a37-60b4-a9ac-0f141ea802d3-58a8b421, #w-node-fbef8c5e-5e5f-cd0e-a8cb-651df18dc055-58a8b421, #w-node-_5228aa26-29eb-ac9b-5ffc-752d254bcbde-58a8b421, #w-node-_5a3f31c1-16e0-fdfc-abee-970a3a4d9232-58a8b421 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-d88d977d-7a37-60b4-a9ac-0f141ea802d3-58a8b421 {
    grid-area: 1 / 1 / 2 / 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-d88d977d-7a37-60b4-a9ac-0f141ea802d3-58a8b421 {
    grid-area: 1 / 1 / 2 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-d88d977d-7a37-60b4-a9ac-0f141ea802d3-58a8b421 {
    grid-area: 1 / 1 / 2 / 2;
  }
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}