:root {
  --white: #faf8f2;
  --primary-blue: #1b2d73;
  --black: #000;
  --dim-grey: #646670;
  --lightest-grey: #eceae5;
  --secondary-blue: #9dc4ff;
  --light-blue: #dfe4e7;
  --orange: #ff6400;
  --epiphany-bg: #fff5d3;
}

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

body {
  background-color: var(--white);
  color: var(--primary-blue);
  font-family: Inter Display, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 150%;
}

h1 {
  color: var(--white);
  text-align: left;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4.5vw;
  font-weight: 600;
  line-height: 110%;
  display: block;
}

h2 {
  color: var(--primary-blue);
  -webkit-text-stroke-color: var(--primary-blue);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4.75vw;
  font-weight: 600;
  line-height: 100%;
}

h3 {
  letter-spacing: -.05rem;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 100%;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 110%;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2rem;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 130%;
}

p {
  margin-bottom: 0;
  font-size: 1.125rem;
  line-height: 150%;
}

a {
  color: var(--primary-blue);
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s;
}

a:hover {
  opacity: .6;
}

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

img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  display: inline-block;
  overflow: hidden;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin-bottom: 10px;
}

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

.section {
  min-height: 32px;
  background-color: rgba(0, 0, 0, 0);
  padding: 4rem 1rem 7.5rem;
  position: relative;
}

.section.hero-section {
  align-items: flex-start;
  padding: 1rem;
  display: flex;
  overflow: hidden;
}

.section.padding-top-large {
  padding-top: 7.5rem;
}

.section.no-padding-x {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.section.no-padding-bottom {
  padding-bottom: 0;
}

.container {
  width: 100%;
  grid-row-gap: 6rem;
  flex-direction: column;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
  display: flex;
  position: relative;
}

.container.row-gap-2 {
  align-items: stretch;
}

.container.row-gap-1 {
  grid-row-gap: 1rem;
}

.container.row-gap-1-5 {
  grid-row-gap: 1.5rem;
  color: var(--black);
}

.container.row-gap-1-5.padding-y-l {
  padding-left: 4rem;
  padding-right: 4rem;
}

.container.margin-bottom-15 {
  margin-bottom: 15rem;
}

.dark-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(250, 248, 242, .15);
  position: relative;
}

.dark-divider.styleguide-bottom-divider {
  background-color: rgba(27, 45, 115, .15);
  margin-top: 80px;
}

.text-large {
  font-size: 2rem;
  font-weight: 500;
  line-height: 130%;
}

.text-large.nav-text {
  max-width: 80ch;
  font-size: 2.85vw;
  line-height: 110%;
}

.text-large.light-text.subheading {
  max-width: 770px;
  color: var(--dim-grey);
  font-family: Petrona Variablefont Wght, sans-serif;
  position: static;
}

.footer {
  width: 100%;
  max-width: 100%;
  padding: 0 1rem 3rem;
  position: relative;
}

.rich-text-block {
  max-width: 780px;
  padding-right: 0;
  font-family: Inter, sans-serif;
  font-weight: 400;
}

.rich-text-block h2 {
  color: var(--black);
  letter-spacing: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: Inter Display, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 110%;
}

.rich-text-block h3 {
  letter-spacing: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: Inter Display, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 110%;
}

.rich-text-block p {
  color: var(--black);
  margin-bottom: 3rem;
  font-size: 1.125rem;
}

.rich-text-block h4 {
  letter-spacing: 0;
  text-transform: none;
  margin-top: 1rem;
  margin-bottom: 16px;
  font-family: Inter Display, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 125%;
}

.rich-text-block blockquote {
  border-left-color: var(--white);
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.rich-text-block h1 {
  color: var(--black);
  text-align: left;
  letter-spacing: 0;
  margin-bottom: 1rem;
  font-family: Inter Display, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 116%;
}

.rich-text-block h5 {
  letter-spacing: 0;
  text-transform: none;
  margin-top: 1rem;
  margin-bottom: .75rem;
  font-family: Inter Display, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.rich-text-block h6 {
  letter-spacing: 0;
  text-transform: none;
  margin-top: 1rem;
  margin-bottom: .75rem;
  font-family: Inter Display, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.rich-text-block figcaption {
  color: var(--dim-grey);
  text-align: left;
  font-size: 16px;
}

.rich-text-block figure {
  margin-top: 40px;
  margin-bottom: 64px;
}

.rich-text-block ul {
  margin-bottom: 40px;
  font-size: 18px;
}

.text-field {
  height: auto;
  background-color: var(--lightest-grey);
  color: var(--primary-blue);
  border: 0 solid #000;
  border-bottom: 1px solid rgba(250, 249, 245, .15);
  border-radius: 0;
  margin-bottom: 48px;
  padding: 1rem 0 1rem 12px;
  font-size: 1rem;
  line-height: 150%;
  display: block;
  position: relative;
}

.text-field:active {
  color: var(--white);
  border-bottom-color: #e6e6e6;
  font-size: 1rem;
  line-height: 150%;
}

.text-field:focus {
  border-bottom-color: var(--white);
  color: var(--primary-blue);
  font-size: 1rem;
  line-height: 150%;
}

.text-field::-ms-input-placeholder {
  color: var(--dim-grey);
  font-size: 1rem;
  line-height: 150%;
}

.text-field::placeholder {
  color: var(--dim-grey);
  font-size: 1rem;
  line-height: 150%;
}

.submit-button {
  background-color: var(--primary-blue);
  color: var(--white);
  border: 0 solid #000;
  padding: 1rem 3rem;
  font-size: 1.25rem;
  transition: all .2s;
}

.submit-button:hover {
  background-color: var(--dim-grey);
  border-bottom-width: 0;
  border-bottom-color: #898989;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  width: 800px;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.utility-page-form {
  text-align: left;
  flex-direction: column;
  align-items: stretch;
  display: block;
}

.utility-form-text {
  margin-bottom: 64px;
  font-size: 1.25rem;
}

.styleguide-heading-wrapper {
  margin-bottom: 48px;
}

.swatch {
  width: 100%;
  height: 200px;
  background-color: #f7f7f7;
  border: 1px solid #e6e6e6;
}

.swatch.primary-blue {
  background-color: var(--primary-blue);
  border-color: rgba(250, 249, 245, .15);
}

.swatch.white {
  background-color: var(--white);
}

.swatch.secondary-blue {
  background-color: var(--secondary-blue);
  border-color: rgba(250, 249, 245, .15);
}

.swatch.light-blue {
  background-color: var(--light-blue);
  border-color: rgba(250, 249, 245, .15);
}

.swatch.lightest-grey {
  background-color: var(--lightest-grey);
  border-color: rgba(250, 249, 245, .15);
}

.swatch.dim-grey {
  background-color: var(--dim-grey);
  border-color: rgba(250, 249, 245, .15);
}

.styleguide-heading {
  color: var(--primary-blue);
  letter-spacing: -2px;
  margin-top: 32px;
  margin-bottom: 32px;
  font-size: 10vw;
}

.margin-bottom-80 {
  margin-bottom: 80px;
}

.margin-bottom-8 {
  margin-bottom: 8px;
}

._4-column-grid {
  grid-column-gap: 40px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 80px;
  display: grid;
}

.navbar {
  z-index: 1;
  width: 100%;
  border-top: 0px solid var(--white);
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  justify-content: space-between;
  align-items: center;
  margin-top: 3.75rem;
  margin-bottom: 0;
  padding-left: .75rem;
  padding-right: .75rem;
  display: flex;
  position: absolute;
}

._12-column-grid {
  width: 100%;
  grid-column-gap: 2.5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-content: end;
  align-items: start;
  justify-items: stretch;
  display: grid;
  position: relative;
}

._12-column-grid.hero-grid {
  grid-row-gap: 3.5rem;
}

._12-column-grid.intro-grid {
  grid-row-gap: 6rem;
}

._12-column-grid.usp-grid {
  grid-row-gap: 8rem;
}

._12-column-grid.services-grid {
  grid-row-gap: 10rem;
}

._12-column-grid.numbers-grid {
  margin-top: 6rem;
}

._12-column-grid.faq-grid {
  grid-row-gap: 10rem;
}

._12-column-grid.contact-links-grid {
  grid-row-gap: 6rem;
  margin-top: 12rem;
}

._12-column-grid.footer-grid {
  grid-row-gap: 3rem;
}

.typography-container {
  margin-bottom: 48px;
}

.text-small {
  font-size: 1rem;
  line-height: 150%;
}

.text-medium {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 120%;
}

.text-medium.column-heading {
  color: var(--orange);
  text-transform: uppercase;
  font-family: Josefinsans Variablefont Wght, sans-serif;
  font-size: 5rem;
  font-weight: 700;
}

.nav-link-block {
  color: var(--white);
  padding: 0 1.75rem 0 0;
  line-height: 1;
  transition-property: all;
  position: relative;
  overflow: visible;
}

.nav-link-block:hover {
  opacity: .68;
  color: var(--white);
}

.nav-link-block.w--current {
  opacity: .6;
}

.form {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.row-gap-2 {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.nav-menu {
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: static;
  left: auto;
}

.navbar-wrapper {
  width: 100%;
  grid-row-gap: 5rem;
  border-top: 0 solid #000;
  flex-direction: column;
  display: flex;
}

.horizontal-footer-links-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.brand-footer {
  z-index: 2;
  width: 100%;
}

.brand-footer.w--current {
  width: 100%;
  position: relative;
}

.brand-footer.w--current:hover {
  opacity: 1;
}

.navbar-text-container {
  z-index: 999999;
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.button {
  grid-column-gap: 1rem;
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 0 solid rgba(255, 255, 255, .2);
  align-items: center;
  padding: 0 0 1.125rem;
  font-size: 1.125rem;
  line-height: 1;
  transition-property: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button:hover {
  opacity: 1;
}

.button.huge-button {
  grid-column-gap: 1.5rem;
  color: var(--black);
  font-size: 4.75vw;
  font-weight: 600;
}

.hero-image-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.hero-content-wrapper {
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
  padding-bottom: 3rem;
  display: flex;
  position: relative;
}

.logo {
  z-index: 999;
  position: relative;
}

.arrow-down {
  width: 1.75rem;
  max-width: 40px;
}

.hero-text {
  max-width: 25ch;
  font-size: 2.25vw;
  line-height: 110%;
}

.hero-image-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(8, 14, 36, .2);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.contact-link {
  font-size: .9375rem;
  line-height: 140%;
}

.hero-inner-section {
  width: 100%;
  height: 100%;
  background-color: rgba(231, 235, 239, 0);
  border-radius: .375rem;
  position: relative;
  overflow: hidden;
}

.hero-image {
  height: 100%;
}

.button-hover-line {
  width: 100%;
  height: 1.5px;
  background-color: var(--white);
  position: absolute;
  bottom: 0;
}

.arrow-right {
  width: auto;
}

.hover-arrow-right {
  width: auto;
  position: absolute;
  bottom: 0;
}

.arrow-right-container {
  position: relative;
  overflow: hidden;
}

.button-bottom-line {
  width: 100%;
  height: 1.5px;
  background-color: rgba(255, 255, 255, .2);
  position: absolute;
  bottom: 0;
}

.section-label-container {
  grid-column-gap: .75rem;
  color: var(--primary-blue);
  align-items: center;
  font-size: 1.125rem;
  display: flex;
}

.dot {
  width: .5rem;
  height: .5rem;
  background-color: var(--primary-blue);
  border-radius: 50vw;
}

.dot.secondary-blue-dot {
  background-color: var(--orange);
  color: var(--orange);
}

.section-heading-container {
  width: 100%;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

._3-column-text-container {
  width: 100%;
  max-width: 340px;
  grid-row-gap: 0rem;
  flex-direction: column;
  display: flex;
}

.text-light {
  max-width: 500px;
  color: var(--dim-grey);
  margin-left: auto;
  margin-right: auto;
  font-family: Petrona Variablefont Wght, sans-serif;
}

.text-light.service-text {
  max-width: 515px;
}

.text-light.accordion-intro-text {
  max-width: 310px;
}

.text-light.tagline {
  max-width: 800px;
  color: var(--black);
  text-align: center;
  font-size: 1.3rem;
  font-weight: 400;
}

.logo-grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  margin-top: 6rem;
}

.logo-wrapper {
  width: 100%;
  justify-content: center;
  align-items: center;
  padding-left: 7%;
  padding-right: 7%;
  display: flex;
}

.text-reveal-wrapper {
  width: 100%;
  grid-row-gap: .75vw;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.text-reveal-line {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.text-reveal-line-wrapper {
  text-align: center;
  font-weight: 600;
  position: relative;
}

.text-huge {
  color: var(--black);
  text-transform: uppercase;
  white-space: nowrap;
  font-family: Josefinsans Variablefont Wght, sans-serif;
  font-size: 5vw;
  font-weight: 700;
  line-height: 78%;
}

.text-huge.text-lighter {
  color: var(--lightest-grey);
  font-size: 5vw;
}

.text-huge.text-lightest-grey {
  color: var(--lightest-grey);
  display: block;
  overflow: visible;
}

.text-huge.text-primary-light-blue {
  color: #273a86;
}

.text-reveal-hover-wrapper {
  text-align: center;
  font-weight: 600;
  position: absolute;
  top: auto;
  bottom: auto;
  left: 0;
  right: auto;
  overflow: hidden;
}

.text-white {
  color: var(--lightest-grey);
  font-family: Petrona Variablefont Wght, sans-serif;
}

.usp-wrapper {
  grid-row-gap: 4rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.huge-number {
  font-size: 12vw;
  font-weight: 600;
  line-height: 80%;
}

.huge-number.text-secondary-blue {
  color: var(--secondary-blue);
}

.usp-text-wrapper {
  width: 100%;
  max-width: 330px;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  display: flex;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: rgba(27, 45, 115, .15);
  position: relative;
}

.slide-nav {
  display: none;
}

.slide {
  width: 100%;
  height: 100%;
  margin-right: 4rem;
}

.slider-image {
  height: 100%;
  max-width: none;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.mask {
  width: 70vw;
  height: auto;
  overflow: visible;
}

.slider {
  width: 100%;
  height: auto;
  cursor: auto;
  background-color: rgba(0, 0, 0, 0);
  margin-right: 1rem;
}

.slider-container {
  width: 100%;
  margin-top: 6rem;
  padding-left: 4rem;
}

.slider-image-mask {
  width: 100%;
  height: 100%;
  border-radius: .375rem;
  justify-content: center;
  align-items: center;
  padding-top: 60%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.right-arrow {
  right: 4rem;
}

.services-container {
  grid-row-gap: 10rem;
  border-top: 0 solid rgba(0, 0, 0, 0);
  border-radius: 0;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.service-list-item {
  width: 100%;
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  border-top: 1px solid rgba(27, 45, 115, .15);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 1.5rem;
  display: grid;
}

.numbers-wrapper {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.accordionn-title-wrapper {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.accordion-container {
  width: 100%;
  border-top: 1px solid rgba(27, 45, 115, .15);
}

.accordion-heading-container {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.accordion-item {
  width: 100%;
  cursor: pointer;
  border-bottom: 1px solid rgba(27, 45, 115, .15);
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

.accordion-plus {
  width: auto;
  margin-left: 2rem;
}

.accordion-content-container {
  max-width: 480px;
  align-items: flex-start;
  display: flex;
}

.accordion-text {
  color: #646670;
  margin-top: 2rem;
}

.primary-blue-inner-section {
  color: #1b2d73;
  background-color: rgba(27, 45, 115, 0);
  border-radius: .375rem;
  padding-top: 5rem;
  padding-bottom: 10rem;
}

.testimonials-container {
  width: 100%;
  grid-column-gap: 2.5rem;
  grid-row-gap: 5rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  display: block;
}

.testimonial-container {
  width: 100%;
  grid-row-gap: 2rem;
  border-top: 1px solid rgba(27, 45, 115, .15);
  flex-flow: column;
  padding-top: 1.5rem;
  display: flex;
}

.light-blue-inner-section {
  background-color: rgba(255, 255, 255, 0);
  border-radius: .375rem;
  padding-top: 5rem;
  padding-bottom: 10rem;
}

.testimonial-text {
  max-width: 80%;
  margin-bottom: 20px;
  padding-right: 100px;
  font-family: Petrona Variablefont Wght, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 120%;
}

.client-container {
  grid-column-gap: 1rem;
  align-items: center;
  display: flex;
}

.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: .1875rem;
}

.client-info-container {
  grid-column-gap: .5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text-semibold {
  font-weight: 600;
}

.team-grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  margin-top: 6rem;
  padding-left: 220px;
  padding-right: 220px;
}

.team-member-wrapper {
  width: 100%;
  grid-row-gap: 3rem;
  flex-direction: column;
  display: flex;
}

.team-member-image-wrapper {
  background-color: var(--lightest-grey);
}

.team-member-info-container {
  grid-row-gap: 2rem;
  flex-direction: column;
  display: flex;
}

.text-xl {
  font-size: 2.5rem;
  line-height: 130%;
}

.text-xl.text-semibold {
  text-transform: uppercase;
  font-family: Josefinsans Variablefont Wght, sans-serif;
}

.name-container {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.team-member-contact-info-container {
  width: 100%;
  border-top: 1px solid rgba(27, 45, 115, .15);
  flex-direction: column;
  display: flex;
}

.contact-link {
  color: var(--primary-blue);
  border-bottom: 1px solid rgba(27, 45, 115, .15);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-family: Petrona Variablefont Wght, sans-serif;
  font-size: 1.125rem;
}

.huge-arrow-right {
  width: 2vw;
  height: 2vw;
  display: block;
}

.huge-button-hover-line {
  width: 100%;
  height: 1.5px;
  background-color: var(--black);
  position: absolute;
  bottom: 0;
}

.huge-hover-arrow-right {
  width: 2vw;
  height: 2vw;
  position: absolute;
  top: 0;
  left: 0;
}

.footer-link {
  color: var(--primary-blue);
}

.preloader {
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-blue);
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.text-primary-blue {
  color: var(--primary-blue);
}

.body {
  background-color: var(--epiphany-bg);
}

.heading {
  color: var(--black);
  text-align: left;
  text-transform: uppercase;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Josefinsans Variablefont Wght, sans-serif;
  font-size: 3.5vw;
  font-weight: 700;
}

.heading.centered {
  text-align: center;
  margin-top: 100px;
  margin-left: 100px;
  margin-right: 100px;
}

.heading-2 {
  color: var(--black);
  text-transform: uppercase;
  font-family: Josefinsans Variablefont Wght, sans-serif;
  font-weight: 700;
}

.text-block {
  color: var(--black);
  text-transform: uppercase;
  font-family: Josefinsans Variablefont Wght, sans-serif;
}

.text-block-2 {
  font-family: Petrona Variablefont Wght, sans-serif;
}

.text-block-3, .text-block-4 {
  text-transform: uppercase;
  font-family: Josefinsans Variablefont Wght, sans-serif;
}

.button-2 {
  max-width: 300px;
  background-color: var(--orange);
  text-align: center;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 40px;
  font-family: Josefinsans Variablefont Wght, sans-serif;
}

.text-span, .text-span-2, .text-span-3 {
  color: var(--orange);
}

@media screen and (max-width: 991px) {
  h1 {
    letter-spacing: -.05vw;
    font-size: 4.5vw;
    line-height: 110%;
  }

  h2 {
    font-size: 4.5rem;
  }

  h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
    line-height: 100%;
  }

  .section.padding-top-large {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .container.row-gap-1-5 {
    padding-left: 0;
    padding-right: 0;
  }

  .container.row-gap-1-5.padding-y-l {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .text-large {
    font-size: 2.5rem;
    line-height: 100%;
  }

  .text-large.nav-text {
    max-width: 25ch;
  }

  .footer {
    padding-bottom: 48px;
  }

  .utility-page-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  ._4-column-grid {
    grid-template-columns: 1fr;
  }

  .navbar {
    margin-top: 3.5rem;
    padding-top: 0;
    position: absolute;
    top: auto;
  }

  ._12-column-grid {
    grid-column-gap: 1.5rem;
    grid-row-gap: 4rem;
    grid-template-columns: minmax(16px, 1fr) 1fr;
  }

  ._12-column-grid.intro-grid, ._12-column-grid.services-grid, ._12-column-grid.faq-grid, ._12-column-grid.contact-links-grid {
    grid-row-gap: 4rem;
  }

  .text-medium {
    font-size: 1.75rem;
  }

  .nav-link-block {
    color: var(--white);
    flex: none;
    padding-left: 0;
    padding-right: 1.5rem;
    font-size: 1.25rem;
    display: flex;
  }

  .nav-link-block:hover {
    color: #a6a6a6;
  }

  .row-gap-2 {
    margin-bottom: 1.5rem;
  }

  .nav-menu {
    width: 100%;
    color: var(--primary-blue);
    flex-direction: row;
    justify-content: flex-start;
    display: flex;
    position: static;
    top: 0;
    left: 0;
    right: 0;
  }

  .brand-footer {
    margin-left: 0;
    padding-left: 0;
  }

  .brand-footer.w--current {
    margin-left: 0;
  }

  .button, .button.navbar-button {
    padding-bottom: 0;
  }

  .button.huge-button {
    font-size: 4.5rem;
  }

  .hero-image-wrapper {
    background-position: 50%;
    background-repeat: no-repeat;
  }

  .button-hover-line, .button-bottom-line {
    display: none;
  }

  .logo-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .slide {
    margin-right: 1rem;
  }

  .mask {
    width: 82vw;
  }

  .slider-container {
    padding-left: 2.5rem;
  }

  .right-arrow, .left-arrow {
    display: none;
  }

  .testimonial-text {
    font-size: 1.25rem;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .huge-arrow-right {
    width: 2rem;
    height: 2rem;
  }

  .huge-button-hover-line {
    display: none;
  }

  .huge-hover-arrow-right {
    width: 2rem;
    height: 2rem;
  }

  .heading {
    font-size: 6vw;
  }

  .heading.centered {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    letter-spacing: 0;
    font-size: 2rem;
  }

  h2 {
    font-size: 3.5rem;
  }

  h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
    line-height: 100%;
  }

  .section.hero-section {
    height: auto;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .container.row-gap-1-5.padding-y-l {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .text-large {
    font-size: 2rem;
    line-height: 100%;
  }

  .text-large.nav-text {
    font-size: 2rem;
  }

  .styleguide-heading {
    letter-spacing: -1px;
  }

  .navbar {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  ._12-column-grid {
    grid-row-gap: 3rem;
  }

  ._12-column-grid.hero-grid {
    grid-template-columns: .5fr 1fr;
  }

  .text-medium {
    font-size: 1.5rem;
  }

  .nav-link-block {
    flex: none;
    padding-left: 0;
    padding-right: 1.5rem;
    font-size: 1.25rem;
  }

  .nav-menu {
    justify-content: flex-start;
  }

  .button.navbar-button {
    justify-content: flex-end;
  }

  .button.huge-button {
    font-size: 3.5rem;
  }

  .hero-image-wrapper {
    background-position: 50%;
  }

  .hero-content-wrapper {
    height: auto;
    padding-top: 25rem;
  }

  .hero-text {
    max-width: none;
    font-size: 1.25rem;
  }

  .section-heading-container {
    max-width: none;
  }

  .logo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .logo-wrapper {
    padding-left: 12%;
    padding-right: 12%;
  }

  .huge-number {
    font-size: 18vw;
  }

  .slider-container {
    padding-left: 2rem;
  }

  .service-list-item {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .accordionn-title-wrapper {
    width: 100%;
    margin-top: 1rem;
  }

  .accordion-heading-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .accordion-content-container {
    width: 100%;
    margin-left: 0%;
  }

  .testimonials-container, .team-grid {
    grid-template-columns: 1fr;
  }
}

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

  h1 {
    letter-spacing: 0;
    font-size: 1.75rem;
  }

  h2 {
    letter-spacing: 0;
    font-size: 2rem;
  }

  h3 {
    letter-spacing: -.05rem;
    font-size: 1.5rem;
    line-height: 120%;
  }

  .section {
    padding: 5rem .4rem;
  }

  .section.hero-section {
    height: auto;
    padding-top: .4rem;
    padding-left: .4rem;
    padding-right: .4rem;
  }

  .section.padding-top-large {
    padding-top: 5rem;
    padding-left: .4rem;
    padding-right: .4rem;
  }

  .container {
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .container.row-gap-1-5.padding-y-l {
    padding-left: 1.65rem;
    padding-right: 1.65rem;
  }

  .container.margin-bottom-15 {
    margin-bottom: 5rem;
  }

  .text-large {
    letter-spacing: 0;
    font-size: 1.6rem;
  }

  .text-large.nav-text {
    max-width: none;
    font-size: 1.25rem;
  }

  .footer {
    margin-top: 0;
    padding-bottom: 1.5rem;
  }

  .text-field {
    margin-bottom: 32px;
    font-size: 20px;
  }

  .text-field::-ms-input-placeholder {
    font-size: 20px;
  }

  .text-field::placeholder {
    font-size: 20px;
  }

  .submit-button {
    margin-top: 48px;
    padding-top: 0;
    font-size: 20px;
  }

  .styleguide-heading {
    letter-spacing: 0;
  }

  .navbar {
    margin-top: 1.25rem;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    position: absolute;
    top: 0;
  }

  ._12-column-grid {
    grid-row-gap: 3rem;
  }

  ._12-column-grid.hero-grid {
    grid-row-gap: 1rem;
  }

  ._12-column-grid.intro-grid, ._12-column-grid.usp-grid, ._12-column-grid.services-grid {
    grid-row-gap: 3rem;
  }

  ._12-column-grid.numbers-grid {
    margin-top: 3rem;
  }

  ._12-column-grid.faq-grid, ._12-column-grid.contact-links-grid {
    grid-row-gap: 3rem;
  }

  .text-small {
    text-align: left;
  }

  .text-medium {
    font-size: 1.5rem;
  }

  .nav-link-block {
    align-items: center;
    padding-left: 0;
    padding-right: 1rem;
    font-size: 1rem;
  }

  .horizontal-footer-links-container {
    flex-flow: wrap;
  }

  .button {
    font-size: 1rem;
  }

  .button.navbar-button {
    margin-top: 2rem;
  }

  .button.huge-button {
    margin-top: 2rem;
    font-size: 2rem;
  }

  .hero-image-wrapper {
    background-position: 68%;
    justify-content: flex-start;
    display: flex;
  }

  .hero-content-wrapper {
    padding-top: 23rem;
  }

  .arrow-down {
    display: none;
  }

  .hero-text {
    font-size: 1rem;
  }

  .logo-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr 1fr;
    margin-top: 3rem;
  }

  .logo-wrapper {
    padding-left: 2%;
    padding-right: 2%;
  }

  .mask {
    width: 80vw;
  }

  .slider-container {
    margin-top: 3rem;
    padding-left: 1.65rem;
  }

  .service-list-item {
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .numbers-wrapper {
    grid-row-gap: 1rem;
  }

  .accordionn-title-wrapper {
    width: 100%;
    margin-top: 1rem;
  }

  .accordion-heading-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .accordion-plus {
    margin-left: 1rem;
  }

  .accordion-content-container {
    width: 100%;
  }

  .testimonials-container {
    grid-template-columns: 1fr;
  }

  .team-grid {
    margin-top: 3rem;
  }

  .text-xl.text-semibold {
    font-size: 2rem;
  }

  .huge-arrow-right, .huge-hover-arrow-right {
    width: 1.5rem;
    height: 1.5rem;
  }

  .heading {
    font-size: 8vw;
  }
}

#w-node-_93c2ee34-d46c-5590-b2a4-e65b3a5b167e-14c4f772 {
  grid-area: 2 / 1 / 3 / 13;
  align-self: stretch;
}

#w-node-e83f437e-487d-b9f0-57bc-ec8c5d9cc0d7-14c4f772 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-e83f437e-487d-b9f0-57bc-ec8c5d9cc0dc-14c4f772 {
  grid-area: 2 / 1 / 3 / 5;
}

#w-node-e83f437e-487d-b9f0-57bc-ec8c5d9cc0e1-14c4f772 {
  grid-area: 2 / 5 / 3 / 9;
}

#w-node-e83f437e-487d-b9f0-57bc-ec8c5d9cc0e6-14c4f772 {
  grid-area: 2 / 9 / 3 / 13;
}

#w-node-_89b80b31-eb5e-0c97-0842-38ad95196206-14c4f772 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  justify-self: start;
}

#w-node-_89b80b31-eb5e-0c97-0842-38ad9519620a-14c4f772 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-b367b71c-7410-3c7f-e5f0-d619647af2b1-14c4f772 {
  grid-area: 2 / 5 / 3 / 13;
}

#w-node-_2ac7bd06-28f1-ec72-113c-79b436fb0bea-14c4f772, #w-node-e5906342-ab1d-01a2-6c3e-c89552c814e5-14c4f772 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_68b6edba-6efe-26e4-438f-f82af6d81741-14c4f772 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  justify-self: start;
}

#w-node-_68b6edba-6efe-26e4-438f-f82af6d81745-14c4f772 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-ea6c783c-f924-851e-867a-8550592f24c5-14c4f772 {
  grid-area: 2 / 5 / 3 / 13;
  align-self: start;
  justify-self: start;
}

#w-node-fa9fda17-cad7-026b-ad83-333f15bea3d0-14c4f772 {
  grid-area: 2 / 9 / 3 / 13;
  align-self: end;
  justify-self: end;
}

#w-node-_53c98cab-8eca-3383-f175-81ff551b5c83-56925219 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_53c98cab-8eca-3383-f175-81ff551b5c8c-56925219 {
  grid-area: 2 / 1 / 3 / 7;
  align-self: end;
  justify-self: start;
}

#w-node-_53c98cab-8eca-3383-f175-81ff551b5c86-56925219 {
  grid-area: 1 / 9 / 2 / 13;
  align-self: start;
  justify-self: end;
}

#w-node-_93c2ee34-d46c-5590-b2a4-e65b3a5b167f-56925219 {
  grid-area: 1 / 5 / 2 / 6;
  align-self: end;
  justify-self: start;
}

#w-node-_93c2ee34-d46c-5590-b2a4-e65b3a5b1681-56925219 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_93c2ee34-d46c-5590-b2a4-e65b3a5b167e-56925219 {
  grid-area: 2 / 1 / 3 / 13;
  align-self: stretch;
}

#w-node-_30ff9879-d317-3f9d-1958-cfa734588842-56925219 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  justify-self: start;
}

#w-node-_2be8925e-1d1b-312e-8feb-df122a58b354-56925219 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-_28dfdbba-b0ae-28bc-d0f7-f28d1af0ce4f-56925219 {
  grid-area: 2 / 1 / 3 / 5;
}

#w-node-_0fcd6787-540a-7198-47fe-1d189eb89787-56925219 {
  grid-area: 2 / 5 / 3 / 9;
}

#w-node-_92acd2c4-6305-e538-01cd-021ad9cec36b-56925219 {
  grid-area: 2 / 9 / 3 / 13;
}

#w-node-_17891845-7e12-c68c-38e2-d8a3883ef506-56925219 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  justify-self: start;
}

#w-node-_17891845-7e12-c68c-38e2-d8a3883ef50a-56925219 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-_04372d78-bd96-e1c9-2050-2ae6c17c4f7d-56925219, #w-node-fa1edcb9-029a-49b1-dab8-414d7f2f5d57-56925219, #w-node-_5930e16e-0ff1-2c41-781f-d8b36d8ee6fa-56925219, #w-node-d09d5f76-732e-cb9f-7365-197fe8f09954-56925219, #w-node-_5c52980f-20f4-7a7a-83a4-871cd54b5fb1-56925219, #w-node-_04795086-4516-9272-45a5-39250a7cc650-56925219, #w-node-_8edd6251-273c-6c54-89a8-514fc9dd0556-56925219, #w-node-_954268a3-5dfa-4064-0455-39ae2645bd94-56925219, #w-node-_6518a814-cb2c-82c8-86e0-2461caf8a435-56925219, #w-node-ea930b46-ebb7-70e5-1c2e-ab8e2e18955c-56925219, #w-node-_7de3893e-e09f-d1ac-ef62-46bfb2f25530-56925219, #w-node-_3466291f-ca5e-6dff-cddc-ffc173a830d7-56925219, #w-node-e7e5e89d-5208-ddd5-4942-04cf12adadb0-56925219, #w-node-_50454732-0d8d-4721-761f-20f1c2aa5dae-56925219, #w-node-_1c75d8b5-1b35-8976-acda-e869e5d00fee-56925219, #w-node-_6752b715-0217-11db-9918-a8d4422bcf65-56925219, #w-node-_83a10884-1b92-c4a6-6413-54417588b8dd-56925219, #w-node-db54216c-7577-0692-859c-c2fd6f41bc6c-56925219 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_50dff92d-a053-0ce5-2629-86e8f1749688-56925219, #w-node-_4b251614-1984-815b-edee-7953aac4f303-56925219, #w-node-_29445601-b1b3-eb24-98a5-b3d4da7e7898-56925219, #w-node-_5742374c-b6ef-ce63-d3be-ceaed205a352-56925219, #w-node-_6f37951b-dbc7-4449-7ea7-b5e6e9e3d02b-56925219, #w-node-_5b9b3bed-c9ae-34c3-8ab5-e4f639a999af-56925219 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-d09172c2-e34d-6541-3a03-ff4b708a8299-56925219 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  justify-self: start;
}

#w-node-_68143e47-ea2e-4100-08c6-407c78368c6a-56925219 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8de9-56925219 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  justify-self: start;
}

#w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8ded-56925219 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8def-56925219 {
  grid-area: 2 / 3 / 3 / 13;
}

#w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8df1-56925219 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8df3-56925219 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8df5-56925219 {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8df8-56925219 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8dfa-56925219 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8dfc-56925219 {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8dff-56925219 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8e01-56925219 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8e03-56925219 {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8e06-56925219 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8e08-56925219 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8e0a-56925219 {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_583dca8c-4c8c-2581-7a1e-9f9ee4a22c65-56925219 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  justify-self: start;
}

#w-node-_583dca8c-4c8c-2581-7a1e-9f9ee4a22c69-56925219 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-_442ea339-c02f-9d3f-27b2-dd4c980649e4-56925219 {
  grid-area: 1 / 5 / 2 / 9;
  justify-self: start;
}

#w-node-a5578c41-edef-1f4b-bf94-02c442580b69-56925219 {
  grid-area: 2 / 5 / 3 / 9;
  justify-self: start;
}

#w-node-_27580992-3abb-15bc-3e34-35627cd79aa8-56925219 {
  grid-area: 1 / 9 / 2 / 13;
  justify-self: start;
}

#w-node-_51f9741d-017b-ba35-abcc-ec880b09d1a5-56925219 {
  grid-area: 2 / 9 / 3 / 13;
  justify-self: start;
}

#w-node-eaecbeb3-33ee-16e2-00e2-19391c9642bd-56925219 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  justify-self: start;
}

#w-node-eaecbeb3-33ee-16e2-00e2-19391c9642c1-56925219 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-_39beade4-ccd1-e7bd-1608-27a0d27f2979-56925219 {
  grid-area: 2 / 1 / 3 / 5;
}

#w-node-bb8e4d62-013e-c839-3907-44320d64452d-56925219 {
  grid-area: 2 / 5 / 3 / 13;
  align-self: auto;
}

#w-node-_89b80b31-eb5e-0c97-0842-38ad95196206-56925219 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  justify-self: start;
}

#w-node-_89b80b31-eb5e-0c97-0842-38ad9519620a-56925219 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-b367b71c-7410-3c7f-e5f0-d619647af2b1-56925219 {
  grid-area: 2 / 5 / 3 / 13;
}

#w-node-_1b72bdbd-4126-147a-e829-47ceb48f275c-56925219 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  justify-self: start;
}

#w-node-_1b72bdbd-4126-147a-e829-47ceb48f2760-56925219 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-e5906342-ab1d-01a2-6c3e-c89552c814e5-56925219, #w-node-_2ac7bd06-28f1-ec72-113c-79b436fb0bea-56925219, #w-node-_212af9f4-257f-5519-e061-0b183c85f2db-56925219, #w-node-_06e07a11-3ad3-badc-b306-91731757c108-56925219, #w-node-_982bc710-f3e5-8249-4061-e32e05c62b67-56925219, #w-node-_2ab86638-a53e-6c00-cd3b-86bdec7e06c5-56925219 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_68b6edba-6efe-26e4-438f-f82af6d81741-56925219 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  justify-self: start;
}

#w-node-_68b6edba-6efe-26e4-438f-f82af6d81745-56925219 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-ea6c783c-f924-851e-867a-8550592f24c5-56925219 {
  grid-area: 2 / 5 / 3 / 13;
  align-self: start;
  justify-self: start;
}

#w-node-cf621fb6-4dd5-559f-a0ba-4715f9610c0e-56925219 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-cf621fb6-4dd5-559f-a0ba-4715f9610c19-56925219 {
  grid-area: 1 / 5 / 2 / 8;
  align-self: auto;
}

#w-node-cf621fb6-4dd5-559f-a0ba-4715f9610c1f-56925219 {
  grid-area: 1 / 8 / 2 / 11;
  align-self: auto;
}

#w-node-_842e8592-c37c-3f08-6ea6-6d08a3e2a205-56925219 {
  grid-area: span 1 / span 12 / span 1 / span 12;
  align-self: end;
  justify-self: start;
}

#w-node-fa9fda17-cad7-026b-ad83-333f15bea3d0-56925219 {
  grid-area: 2 / 9 / 3 / 13;
  align-self: end;
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-_93c2ee34-d46c-5590-b2a4-e65b3a5b167e-14c4f772, #w-node-e83f437e-487d-b9f0-57bc-ec8c5d9cc0d7-14c4f772, #w-node-e83f437e-487d-b9f0-57bc-ec8c5d9cc0dc-14c4f772, #w-node-e83f437e-487d-b9f0-57bc-ec8c5d9cc0e1-14c4f772, #w-node-e83f437e-487d-b9f0-57bc-ec8c5d9cc0e6-14c4f772 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_89b80b31-eb5e-0c97-0842-38ad95196206-14c4f772 {
    grid-column: span 4 / span 4;
  }

  #w-node-_89b80b31-eb5e-0c97-0842-38ad9519620a-14c4f772, #w-node-b367b71c-7410-3c7f-e5f0-d619647af2b1-14c4f772 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_68b6edba-6efe-26e4-438f-f82af6d81741-14c4f772 {
    grid-column: span 2 / span 2;
  }

  #w-node-_68b6edba-6efe-26e4-438f-f82af6d81745-14c4f772, #w-node-ea6c783c-f924-851e-867a-8550592f24c5-14c4f772, #w-node-_842e8592-c37c-3f08-6ea6-6d08a3e2a20a-14c4f772, #w-node-fa9fda17-cad7-026b-ad83-333f15bea3d0-14c4f772, #w-node-_53c98cab-8eca-3383-f175-81ff551b5c83-56925219 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_53c98cab-8eca-3383-f175-81ff551b5c8c-56925219, #w-node-_53c98cab-8eca-3383-f175-81ff551b5c86-56925219, #w-node-_93c2ee34-d46c-5590-b2a4-e65b3a5b167f-56925219 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_93c2ee34-d46c-5590-b2a4-e65b3a5b1681-56925219 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: end;
    justify-self: start;
  }

  #w-node-_93c2ee34-d46c-5590-b2a4-e65b3a5b167e-56925219 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_30ff9879-d317-3f9d-1958-cfa734588842-56925219 {
    grid-column: span 2 / span 2;
  }

  #w-node-_2be8925e-1d1b-312e-8feb-df122a58b354-56925219, #w-node-_28dfdbba-b0ae-28bc-d0f7-f28d1af0ce4f-56925219, #w-node-_0fcd6787-540a-7198-47fe-1d189eb89787-56925219, #w-node-_92acd2c4-6305-e538-01cd-021ad9cec36b-56925219 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_17891845-7e12-c68c-38e2-d8a3883ef506-56925219 {
    grid-column: span 2 / span 2;
  }

  #w-node-_17891845-7e12-c68c-38e2-d8a3883ef50a-56925219 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_50dff92d-a053-0ce5-2629-86e8f1749688-56925219 {
    grid-column: span 2 / span 2;
  }

  #w-node-_4b251614-1984-815b-edee-7953aac4f303-56925219 {
    grid-column: span 2 / span 2;
    justify-self: end;
  }

  #w-node-_29445601-b1b3-eb24-98a5-b3d4da7e7898-56925219 {
    grid-column: span 2 / span 2;
  }

  #w-node-_5742374c-b6ef-ce63-d3be-ceaed205a352-56925219 {
    grid-column: span 2 / span 2;
    justify-self: end;
  }

  #w-node-_6f37951b-dbc7-4449-7ea7-b5e6e9e3d02b-56925219 {
    grid-column: span 2 / span 2;
  }

  #w-node-_5b9b3bed-c9ae-34c3-8ab5-e4f639a999af-56925219 {
    grid-column: span 2 / span 2;
    justify-self: end;
  }

  #w-node-d09172c2-e34d-6541-3a03-ff4b708a8299-56925219 {
    grid-column: span 2 / span 2;
  }

  #w-node-_68143e47-ea2e-4100-08c6-407c78368c6a-56925219 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8de9-56925219 {
    grid-column: span 4 / span 4;
  }

  #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8ded-56925219, #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8def-56925219 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_583dca8c-4c8c-2581-7a1e-9f9ee4a22c65-56925219 {
    grid-column: span 2 / span 2;
  }

  #w-node-_583dca8c-4c8c-2581-7a1e-9f9ee4a22c69-56925219 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_442ea339-c02f-9d3f-27b2-dd4c980649e4-56925219, #w-node-a5578c41-edef-1f4b-bf94-02c442580b69-56925219 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_27580992-3abb-15bc-3e34-35627cd79aa8-56925219 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: auto;
  }

  #w-node-_51f9741d-017b-ba35-abcc-ec880b09d1a5-56925219 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-eaecbeb3-33ee-16e2-00e2-19391c9642bd-56925219 {
    grid-column: span 4 / span 4;
  }

  #w-node-eaecbeb3-33ee-16e2-00e2-19391c9642c1-56925219, #w-node-_39beade4-ccd1-e7bd-1608-27a0d27f2979-56925219, #w-node-bb8e4d62-013e-c839-3907-44320d64452d-56925219 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_89b80b31-eb5e-0c97-0842-38ad95196206-56925219 {
    grid-column: span 4 / span 4;
  }

  #w-node-_89b80b31-eb5e-0c97-0842-38ad9519620a-56925219, #w-node-b367b71c-7410-3c7f-e5f0-d619647af2b1-56925219 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_1b72bdbd-4126-147a-e829-47ceb48f275c-56925219 {
    grid-column: span 4 / span 4;
  }

  #w-node-_1b72bdbd-4126-147a-e829-47ceb48f2760-56925219 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_68b6edba-6efe-26e4-438f-f82af6d81741-56925219 {
    grid-column: span 2 / span 2;
  }

  #w-node-_68b6edba-6efe-26e4-438f-f82af6d81745-56925219, #w-node-ea6c783c-f924-851e-867a-8550592f24c5-56925219, #w-node-cf621fb6-4dd5-559f-a0ba-4715f9610c0e-56925219 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-cf621fb6-4dd5-559f-a0ba-4715f9610c19-56925219, #w-node-cf621fb6-4dd5-559f-a0ba-4715f9610c1f-56925219 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_842e8592-c37c-3f08-6ea6-6d08a3e2a205-56925219 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_842e8592-c37c-3f08-6ea6-6d08a3e2a20a-56925219, #w-node-fa9fda17-cad7-026b-ad83-333f15bea3d0-56925219 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-ea6c783c-f924-851e-867a-8550592f24c5-14c4f772 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: end;
    justify-self: start;
  }

  #w-node-_842e8592-c37c-3f08-6ea6-6d08a3e2a20a-14c4f772 {
    grid-column: span 4 / span 4;
  }

  #w-node-fa9fda17-cad7-026b-ad83-333f15bea3d0-14c4f772 {
    grid-column: span 4 / span 4;
    justify-self: start;
  }

  #w-node-_53c98cab-8eca-3383-f175-81ff551b5c83-56925219, #w-node-_53c98cab-8eca-3383-f175-81ff551b5c8c-56925219 {
    grid-column: span 2 / span 2;
  }

  #w-node-_53c98cab-8eca-3383-f175-81ff551b5c86-56925219 {
    grid-area: 3 / 2 / 4 / 3;
    align-self: end;
    justify-self: end;
  }

  #w-node-_93c2ee34-d46c-5590-b2a4-e65b3a5b1681-56925219, #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8df1-56925219 {
    grid-column: span 1 / span 1;
  }

  #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8df3-56925219 {
    grid-column: span 4 / span 4;
  }

  #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8df8-56925219 {
    grid-column: span 1 / span 1;
  }

  #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8dfa-56925219 {
    grid-column: span 4 / span 4;
  }

  #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8dff-56925219 {
    grid-column: span 1 / span 1;
  }

  #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8e01-56925219 {
    grid-column: span 4 / span 4;
  }

  #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8e06-56925219 {
    grid-column: span 1 / span 1;
  }

  #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8e08-56925219 {
    grid-column: span 4 / span 4;
  }

  #w-node-ea6c783c-f924-851e-867a-8550592f24c5-56925219 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: end;
    justify-self: start;
  }

  #w-node-_842e8592-c37c-3f08-6ea6-6d08a3e2a20a-56925219 {
    grid-column: span 4 / span 4;
  }

  #w-node-fa9fda17-cad7-026b-ad83-333f15bea3d0-56925219 {
    grid-column: span 4 / span 4;
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_89b80b31-eb5e-0c97-0842-38ad95196206-14c4f772 {
    grid-column: span 4 / span 4;
  }

  #w-node-_89b80b31-eb5e-0c97-0842-38ad9519620a-14c4f772, #w-node-b367b71c-7410-3c7f-e5f0-d619647af2b1-14c4f772 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_68b6edba-6efe-26e4-438f-f82af6d81745-14c4f772 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ea6c783c-f924-851e-867a-8550592f24c5-14c4f772 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_53c98cab-8eca-3383-f175-81ff551b5c83-56925219 {
    grid-column: span 2 / span 2;
  }

  #w-node-_53c98cab-8eca-3383-f175-81ff551b5c86-56925219 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_93c2ee34-d46c-5590-b2a4-e65b3a5b1681-56925219 {
    grid-column: span 2 / span 2;
  }

  #w-node-_17891845-7e12-c68c-38e2-d8a3883ef50a-56925219 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4b251614-1984-815b-edee-7953aac4f303-56925219, #w-node-_29445601-b1b3-eb24-98a5-b3d4da7e7898-56925219, #w-node-_5742374c-b6ef-ce63-d3be-ceaed205a352-56925219, #w-node-_5b9b3bed-c9ae-34c3-8ab5-e4f639a999af-56925219 {
    justify-self: start;
  }

  #w-node-d09172c2-e34d-6541-3a03-ff4b708a8299-56925219, #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8de9-56925219 {
    grid-column: span 4 / span 4;
  }

  #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8df3-56925219, #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8df5-56925219, #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8dfa-56925219, #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8dfc-56925219, #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8e01-56925219, #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8e03-56925219, #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8e08-56925219, #w-node-_8a1367ae-ede2-5e6b-2a97-137c452a8e0a-56925219 {
    grid-column: span 1 / span 1;
  }

  #w-node-_583dca8c-4c8c-2581-7a1e-9f9ee4a22c69-56925219 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_442ea339-c02f-9d3f-27b2-dd4c980649e4-56925219, #w-node-a5578c41-edef-1f4b-bf94-02c442580b69-56925219 {
    grid-column: span 2 / span 2;
    justify-self: start;
  }

  #w-node-_27580992-3abb-15bc-3e34-35627cd79aa8-56925219 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_51f9741d-017b-ba35-abcc-ec880b09d1a5-56925219 {
    grid-column: span 2 / span 2;
    justify-self: start;
  }

  #w-node-eaecbeb3-33ee-16e2-00e2-19391c9642bd-56925219 {
    grid-column: span 4 / span 4;
  }

  #w-node-eaecbeb3-33ee-16e2-00e2-19391c9642c1-56925219 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_39beade4-ccd1-e7bd-1608-27a0d27f2979-56925219, #w-node-_89b80b31-eb5e-0c97-0842-38ad95196206-56925219 {
    grid-column: span 4 / span 4;
  }

  #w-node-_89b80b31-eb5e-0c97-0842-38ad9519620a-56925219, #w-node-b367b71c-7410-3c7f-e5f0-d619647af2b1-56925219 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_1b72bdbd-4126-147a-e829-47ceb48f275c-56925219 {
    grid-column: span 4 / span 4;
  }

  #w-node-_1b72bdbd-4126-147a-e829-47ceb48f2760-56925219 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_68b6edba-6efe-26e4-438f-f82af6d81745-56925219 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ea6c783c-f924-851e-867a-8550592f24c5-56925219 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-cf621fb6-4dd5-559f-a0ba-4715f9610c0e-56925219 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-cf621fb6-4dd5-559f-a0ba-4715f9610c19-56925219, #w-node-cf621fb6-4dd5-559f-a0ba-4715f9610c1f-56925219 {
    grid-column: span 2 / span 2;
  }

  #w-node-_842e8592-c37c-3f08-6ea6-6d08a3e2a205-56925219 {
    grid-column: span 4 / span 4;
    justify-self: start;
  }
}


@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/InterDisplay-Regular.woff2') format('woff2'), url('../fonts/InterDisplay-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/InterDisplay-Medium.woff2') format('woff2'), url('../fonts/InterDisplay-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/Inter-DisplaySemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/Inter-DisplaySemiBoldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Interdisplay';
  src: url('../fonts/InterDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Josefinsans Variablefont Wght';
  src: url('../fonts/JosefinSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Josefinsans Variablefont Wght';
  src: url('../fonts/JosefinSans-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Petrona Variablefont Wght';
  src: url('../fonts/Petrona-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Petrona Variablefont Wght';
  src: url('../fonts/Petrona-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}