:root {
  --floral-white: #f3f2eb;
}

body {
  color: #333;
  background-color: #27282a;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 1em;
  line-height: 20px;
}

h1 {
  color: #eeebdd;
  margin-top: 20px;
  margin-bottom: 2.8em;
  font-family: Generalsans, sans-serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
}

p {
  color: var(--floral-white);
  margin-bottom: 10px;
  font-family: Generalsans, sans-serif;
}

a {
  color: #cc4768;
  font-family: Generalsans, sans-serif;
  font-weight: 400;
  text-decoration: none;
}

.section {
  padding-top: 5em;
  padding-bottom: 5em;
}

.section.is-padding-bottom-0 {
  max-width: 90em;
  padding-bottom: 0;
}

.container {
  width: 90%;
  max-width: 1400px;
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.header-grid {
  width: 100%;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: stretch;
  align-items: stretch;
  display: grid;
}

.header-grid_heading-wrapper {
  outline-offset: 0px;
  border: 1px #000;
  outline: 3px #333;
}

.heading1 {
  color: #d1ccb2;
  font-family: Generalsans, sans-serif;
  font-size: 3em;
  font-weight: 700;
}

.header-grid_content-wrapper {
  height: 100%;
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  border-top: 1px solid #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 2em;
  display: flex;
}

.button {
  min-width: 11em;
  text-align: center;
  letter-spacing: .05em;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #bd7676;
  border-radius: 100vw;
  padding: 1.1em 1.8em;
  font-weight: 400;
  transition: background-color .2s;
  display: block;
}

.button:hover {
  background-color: #bd7676;
}

.stats_grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.stats_grid-card {
  min-height: 12em;
  grid-column-gap: 1.75em;
  grid-row-gap: 1.75em;
  background-image: linear-gradient(#2f3033, #2f3033);
  border-radius: .63em;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.8em;
  transition: all .2s;
  display: flex;
}

.stats_grid-card:hover {
  background-image: linear-gradient(#393b3f, #393b3f);
  transform: scale(1.02);
}

.stats_grid-card:active {
  background-image: linear-gradient(#212224, #212224);
}

.stats_grid-card._1 {
  min-height: 10em;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: #232323;
  border: 1px solid #29292e;
  border-radius: .8em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 0;
}

.stats_grid-card._2 {
  background-image: linear-gradient(#6f847d, #6f847d);
}

.stats_grid-card._3 {
  background-image: linear-gradient(#6f7184, #6f7184);
}

.card-heading {
  color: var(--floral-white);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Generalsans, sans-serif;
  font-size: 2em;
  font-weight: 400;
}

.card-stats {
  color: var(--floral-white);
  letter-spacing: -.05em;
  font-family: Generalsans, sans-serif;
  font-size: 7em;
  font-weight: 400;
  line-height: 1;
}

.card-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-text {
  color: #bd7676;
  font-family: Generalsans, sans-serif;
  font-size: 2em;
  line-height: 1;
}

.image {
  max-height: 48px;
  max-width: 48%;
}

.link-container {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  display: flex;
}

.link {
  color: #555;
  text-decoration: underline;
  transition: color .2s;
}

.link:hover {
  color: #fff;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 10vw;
  }

  a {
    font-size: 2vw;
  }

  .stats_grid, .card-container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .header-grid {
    grid-column-gap: 1em;
  }
}

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

  h1 {
    font-size: 2.4rem;
  }

  p {
    font-size: 1rem;
  }

  a {
    font-size: 2rem;
    line-height: 1;
  }

  .section {
    padding-top: 8em;
  }

  .container {
    grid-column-gap: 2.5em;
    grid-row-gap: 2.5em;
    font-size: 1em;
  }

  .header-grid {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .heading1 {
    font-size: 2.6em;
  }

  .button {
    min-width: 1em;
    font-size: 1rem;
  }

  .stats_grid {
    width: 100%;
    grid-template-rows: auto;
    grid-auto-flow: row;
  }

  .stats_grid-card {
    min-height: 6em;
    padding: 1.1em 1em;
  }

  .stats_grid-card._1 {
    grid-column-gap: 1.75em;
    grid-row-gap: 1.75em;
  }

  .card-heading {
    font-size: 1em;
  }

  .card-stats {
    font-size: 5em;
  }

  .body {
    font-size: 1em;
  }

  .card-container {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
    flex-direction: column;
    display: flex;
  }

  .link-container {
    flex-direction: column;
  }

  #w-node-_8bacb278-e682-e139-ee78-e3ff80cb954f-bba7d262 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Generalsans';
  src: url('../fonts/GeneralSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Generalsans';
  src: url('../fonts/GeneralSans-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ekselldisplay large';
  src: url('../fonts/EksellDisplay-Large.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Saoldisplay';
  src: url('../fonts/SaolDisplay-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Saoldisplay';
  src: url('../fonts/SaolDisplay-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}