:root {
  --primary--deep-blue: #00060f;
  --primary--white: #fdfdfd;
  --text-color--neutral: #ccc;
  --text-color--neutral-dark: #666;
  --primary--charcoal: #1c2026;
  --primary--black: black;
  --primary--blue: #1172fa;
  --corners\<deleted\|variable-d2fcc787-0ef3-0089-c641-f60c3601888d\>: .5rem;
  --text-color--neutral-light: #eee;
}

.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;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--primary--deep-blue);
  color: var(--primary--white);
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Archivo, sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Archivo, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Archivo, sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Archivo, sans-serif;
  font-size: 1.5rem;
  line-height: 1.4;
}

h5 {
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Archivo, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

h6 {
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Archivo, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

a {
  color: var(--primary--white);
  font-weight: 400;
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: 3rem;
  padding-left: 20px;
}

ol {
  margin-top: 0;
  margin-bottom: 3rem;
  padding-left: 40px;
}

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

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

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: left;
  margin-top: 5px;
  margin-bottom: 3rem;
}

.info-page-content {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-flow: column;
  display: flex;
}

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

.medium-text.neutral {
  color: var(--text-color--neutral);
  flex: 1;
  order: 0;
}

.medium-text.neutral.medium-text-black {
  color: var(--primary--deep-blue);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
}

.medium-text.neutral.text-gray, .medium-text.neutral.medium-text-gray {
  color: var(--text-color--neutral-dark);
}

.medium-text.neutral.text-right {
  text-align: right;
}

.color-spacer {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

.style-guide-item-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-bottom: 1px solid #ffffff2b;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 3rem;
  display: flex;
  position: relative;
}

._12-column-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  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: stretch;
  place-items: start stretch;
  width: 100%;
  display: grid;
}

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

._12-column-grid._6-columns-grid {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

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

.form-message-success {
  background-color: #ddd0;
  padding: .75rem 1rem;
  font-size: 1rem;
}

.style-guide-heading-wrapper {
  margin-bottom: 6rem;
}

.form-message-error {
  color: var(--primary--charcoal);
  background-color: #fef3f2;
  margin-top: 2rem;
  padding: .75rem 1rem;
  font-size: 1rem;
}

.style-guide-background {
  border: 1px solid #fff3;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.style-guide-color-swatch.black {
  background-color: var(--primary--black);
}

.style-guide-color-swatch.white {
  background-color: var(--primary--white);
  border: 1px solid #00000012;
}

.style-guide-color-swatch.charcoal {
  background-color: var(--primary--charcoal);
}

.style-guide-color-swatch.blue {
  background-color: var(--primary--blue);
}

.style-guide-color-swatch.deep-blue {
  background-color: var(--primary--deep-blue);
}

.rich-text h1 {
  margin-bottom: 1rem;
}

.rich-text p {
  color: var(--text-color--neutral);
  margin-bottom: 3rem;
}

.rich-text h2 {
  margin-bottom: 1rem;
}

.rich-text figcaption {
  margin-bottom: 0;
}

.rich-text h3 {
  margin-bottom: 1rem;
}

.rich-text blockquote {
  color: var(--text-color--neutral);
}

.rich-text h4, .rich-text h5 {
  margin-bottom: 1rem;
}

.rich-text ul {
  margin-bottom: 3rem;
}

.rich-text li {
  color: var(--text-color--neutral);
}

.rich-text h6 {
  margin-bottom: 1rem;
}

.rich-text figure {
  margin-bottom: 3rem;
}

.form-block {
  width: 100%;
}

.style-guide-item {
  grid-column-gap: 0rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.form-submit-button {
  border-radius: var(--corners\<deleted\|variable-d2fcc787-0ef3-0089-c641-f60c3601888d\>);
  background-color: var(--primary--charcoal);
  border-top: 1px #ffffff1a;
  border-left: 1px #000;
  border-right: 1px #000;
  padding: 1rem;
  font-size: .9rem;
  line-height: 140%;
  transition: background-color .2s;
}

.form-submit-button:hover {
  background-color: var(--text-color--neutral-light);
  color: var(--primary--black);
  border-color: #ffffff4d #ffffff4d #fcfcfc;
}

.container {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding: 10rem 2rem;
}

.container.footer {
  padding-bottom: 1rem;
}

.container.caro {
  overflow: visible;
}

.container.caro.container-no-top-bottom {
  padding: 0;
}

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

.container.container-blue {
  background-color: var(--primary--deep-blue);
}

.container.container-blue.less-bottom {
  padding-bottom: 0;
}

.typography-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.large-text {
  text-transform: none;
  font-family: Inter Tight, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
}

.large-text.neutral {
  color: var(--text-color--neutral);
}

.small-text {
  font-size: .8rem;
  text-decoration: none;
}

.style-guide-label {
  background-color: var(--primary--charcoal);
  border-radius: .25rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem .3rem;
  font-family: Inter Tight, sans-serif;
  font-size: .9rem;
  font-weight: 400;
  display: flex;
}

.black {
  color: var(--primary--black);
}

.mono-text {
  color: var(--text-color--neutral);
  -webkit-text-stroke-color: var(--text-color--neutral-dark);
  text-transform: uppercase;
  font-family: PT Mono, sans-serif;
  font-size: .85rem;
  font-weight: 400;
  line-height: 1.2;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.small {
  margin-bottom: 1rem;
}

.margin-bottom.small.margim-bottom-corner {
  border-bottom-right-radius: .5rem;
  border-bottom-left-radius: .5rem;
  margin-bottom: .3rem;
}

.margin-bottom.medium {
  margin-bottom: 2rem;
}

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

.utility-page-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.utility-page-form {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: left;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

._404-lottie {
  filter: invert();
  height: 250px;
}

.large-button {
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: .25rem .5rem;
  font-size: .95rem;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.list {
  margin-bottom: 0;
}

.list-item {
  margin-bottom: .25rem;
}

.hero-content-wrapper {
  background-color: var(--primary--deep-blue);
  color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 90rem;
  height: 100svh;
  margin-left: auto;
  margin-right: auto;
  padding: 8rem 2rem 4rem;
  display: flex;
}

.hero-content-wrapper.content-relative {
  background-color: #0000;
  position: relative;
}

.image-overlay {
  z-index: 1;
  background-color: #0006;
  position: absolute;
  inset: 0%;
}

.image-overlay.zero {
  background-color: #0000;
}

.animation-left-0-1 {
  justify-content: space-between;
  align-items: flex-end;
}

.item-block {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.item-block.center {
  justify-content: flex-start;
  align-items: center;
}

.item-block.block-about-us {
  padding-right: 60px;
}

.item-block.item-services {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.item-block.item-block-bottom {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
}

.item-block.item-block-bottom.item-block-gap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.animation-left-0-2.animation-mobile.animation-partners {
  width: 100%;
}

.footer-link {
  color: var(--text-color--neutral);
  text-transform: uppercase;
  font-family: PT Mono, sans-serif;
  font-size: .9rem;
  text-decoration: none;
}

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

.footer-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex: 1;
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  display: flex;
}

.footer-logo {
  width: 100%;
  height: 100%;
}

.margin-top.large {
  margin-top: 4rem;
}

.form-input {
  background-color: #fff0;
  border: 1px #000;
  border-bottom: 1px solid #333;
  min-height: 4rem;
  margin-bottom: 2rem;
  padding: 1rem 0 1rem 0;
  font-size: 1rem;
}

.form-input:active, .form-input:focus {
  border-bottom-color: var(--primary--blue);
}

.form-input:focus-visible, .form-input[data-wf-focus-visible] {
  border-bottom-color: var(--primary--blue);
  color: #eaede0;
}

.form-input::placeholder {
  color: var(--text-color--neutral);
}

.form-input.email {
  min-height: 3rem;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
}

.form-input.email::placeholder {
  color: var(--text-color--neutral);
  font-size: .9rem;
}

.form-content-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  display: flex;
}

.divider {
  background-color: #3b3b3b;
  width: 100%;
  height: 1px;
}

.divider.dark {
  background-color: #333;
}

.section.scroll {
  margin-bottom: 100vh;
}

.section.scroll.section-black {
  background-color: var(--primary--black);
}

.section.scroll.section-white.section-vh {
  margin-bottom: auto;
}

.section.hero {
  justify-content: center;
  align-items: flex-start;
  width: 100vw;
  height: 200vh;
  display: flex;
  position: relative;
}

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

.section.section-deep-blue {
  background-color: var(--primary--deep-blue);
}

.hero-bottom {
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.hero-content {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.hero-top {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.icon-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contact-info-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 1rem;
  display: flex;
}

.logo-link {
  z-index: 999;
  text-decoration: none;
  position: relative;
}

.logo-link.w--current {
  flex: 0 auto;
  width: 160px;
}

.nav-link-wrapper {
  text-align: left;
}

.nav-link-item {
  overflow: hidden;
}

.container-nav {
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  display: flex;
}

.button-icon-arrow {
  width: 1.2rem;
  height: 1.2rem;
}

.button-icon-arrow.hover {
  position: absolute;
  top: 0;
  left: -100%;
}

.small-logo {
  height: 1.5rem;
}

.small-logo.medium-logo {
  height: 4rem;
}

.nav-content {
  z-index: 2;
  background-color: var(--primary--charcoal);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100dvh;
  padding: 1rem 2rem;
  display: none;
  position: absolute;
  inset: 0%;
}

.nav-link-list {
  text-align: center;
}

.progress-bar {
  z-index: 1;
  background-color: var(--primary--blue);
  width: 100vw;
  height: 3px;
  position: fixed;
  inset: 0% 0% auto;
}

.plus-icon {
  width: 22px;
  height: 22px;
}

.nav-link {
  color: #eee;
  font-family: Archivo, sans-serif;
  font-size: 3.5rem;
  line-height: 1.2;
  text-decoration: none;
}

.button-menu {
  z-index: 999;
  cursor: pointer;
  display: none;
  overflow: hidden;
}

.button-background {
  background-color: #5b96fe;
  border-radius: 100%;
  width: 120%;
  min-width: 5rem;
  height: 175%;
  display: block;
  position: absolute;
  inset: auto;
}

.button-background.cover {
  background-color: var(--primary--blue);
  border-radius: 50rem;
  width: 130%;
  min-width: auto;
  height: 120%;
  inset: auto;
}

.button-background.cover.graybutton {
  background-color: var(--text-color--neutral-dark);
}

.menu-wrapper {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #fdfdfd40;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: flex;
}

.nav-content-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  height: 100%;
  margin-bottom: .5rem;
  display: flex;
}

.nav-bar {
  z-index: 999;
  width: 100%;
  position: fixed;
  inset: 0% 0% auto;
}

.button {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #0446a16b;
  border-radius: 80rem;
  justify-content: center;
  align-items: center;
  padding: .5rem 1rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button.button-gradient {
  background-color: #6e11fa;
  background-image: linear-gradient(90deg, #6e11fa, #6e11fa), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  width: 200px;
}

.max-width {
  max-width: 32rem;
}

.max-width.large {
  max-width: 48rem;
}

.text-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 4rem;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.get-in-touch-text {
  justify-content: flex-start;
  align-items: center;
  font-family: Archivo, sans-serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
}

.text-align-center {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-bottom-bar {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
}

.minimal-button {
  justify-content: flex-start;
  align-items: center;
  padding: .5rem 0;
  font-size: .95rem;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.minimal-button.w--current {
  padding-left: 0;
  padding-right: 0;
}

.button-text-wrapper {
  text-align: center;
  background-color: #0000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 1.875rem;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.button-text {
  justify-content: center;
  align-items: center;
  min-height: 1.875rem;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.button-text.relative {
  position: relative;
}

.quick-links-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.email-link {
  text-decoration: none;
}

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

.service-card-item {
  border-radius: .5rem;
  width: 33.333%;
  margin-left: 0;
  margin-right: 0;
  padding: .0625rem;
}

.content-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  display: flex;
}

.content-wrapper._2rem {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.content-wrapper.contact {
  grid-column-gap: 12rem;
  grid-row-gap: 12rem;
}

.heading-wrapper {
  max-width: 48rem;
  margin-bottom: 0;
  position: static;
}

.heading-wrapper.heading-fill-width {
  width: 100%;
  max-width: none;
}

.heading-wrapper.heading-100 {
  text-align: left;
  max-width: none;
}

.display-text {
  font-family: Archivo, sans-serif;
  font-size: 6rem;
  font-weight: 400;
  line-height: .9;
}

.main-wrap {
  overflow: clip;
}

.label-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-transform: capitalize;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.label-square {
  background-color: var(--primary--blue);
  width: 7px;
  height: 7px;
}

.label-square.label-square-light {
  background-color: #1172fa;
}

.logo-wrapper {
  width: 100%;
  height: 100%;
  margin-bottom: 4rem;
  position: absolute;
  inset: 0%;
}

.logo-wrapper.logo-wrapper-partners {
  padding: 32px 8px;
}

.client-logo-image {
  width: 100%;
  height: 100%;
}

.client-logo-image.logo-image-cover {
  object-fit: contain;
}

.logos-grid-wrapper {
  grid-column-gap: 0rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto auto auto;
  grid-auto-columns: auto;
  place-items: center;
  width: 100%;
  max-width: 100%;
  display: grid;
}

.medium-large-text {
  font-size: 1.25rem;
}

.form-button {
  background-color: #fdfdfd30;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: .75rem 1rem;
}

.form-button:hover {
  background-color: #fdfdfd54;
}

.go-back-button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.testimonial-icon-wrapper {
  position: absolute;
  overflow: hidden;
}

.testimonial-icon-wrapper._2 {
  inset: 0% -1rem 0% auto;
  inset: 0% -1rem 0% auto;
  justify-content: center;
  align-items: center;
  display: flex;
  inset: 0% -1rem 0% auto;
}

.testimonial-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.testimonial-icon.light {
  filter: invert();
}

.button-link-text {
  color: #eee;
  font-size: 1rem;
}

.clip-2 {
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  z-index: -1;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.background-video {
  width: 100%;
  height: 100%;
}

.body {
  background-color: var(--primary--black);
}

.parallax-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.parallax-image.parallax-image-projects {
  min-height: auto;
}

.card-component-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
  position: relative;
}

.card-component {
  background-color: var(--primary--charcoal);
  border: 1px solid #1d1b1d;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 25rem;
  padding: 1.25rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -1px #0000;
}

.card-component:hover {
  opacity: 1;
}

.card-front-content {
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.card-image {
  width: 9rem;
}

.card-hover {
  z-index: 1;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--primary--blue);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 4rem 2rem;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: translate(0, 101%);
}

.world-map-wrapper {
  padding-left: 4rem;
  padding-right: 4rem;
}

.world-map {
  width: 100%;
  height: 100%;
}

.right-aligned-content {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.table-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.table-row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid var(--text-color--neutral-dark);
  color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  text-decoration: none;
  transition: border-color .35s;
  display: grid;
}

.table-row:hover {
  border-color: #818181;
}

.table-row.no-border {
  border-bottom-style: none;
}

.project-text {
  z-index: 2;
  position: relative;
}

.arrow-up-icon {
  z-index: 2;
  background-image: url('../images/Arrow-up-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: relative;
}

.table-row-bg {
  background-color: #fff;
  width: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.map-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.location-card-image {
  background-image: url('../images/pexels-skyriusmarketing-2129796_1pexels-skyriusmarketing-2129796.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 20%;
  height: 30rem;
  transition: all .8s cubic-bezier(.19, 1, .22, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.location-card-image:hover {
  flex-grow: 7;
}

.location-card-image.three {
  background-image: url('../images/pexels-lina-1841147_1pexels-lina-1841147.avif');
}

.location-card-image.two {
  background-image: url('../images/pexels-ryutaro-5745042_1pexels-ryutaro-5745042.avif');
}

.location-card-image.four {
  background-image: url('../images/pexels-lilli-waugh-1263917-2407196_1pexels-lilli-waugh-1263917-2407196.avif');
}

.location-cards-wrapper {
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.location-card-text {
  z-index: 2;
  flex: 0 auto;
  position: relative;
}

.location-cards-image-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.statistic-list {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.statistic-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 12rem;
  padding-bottom: 2rem;
  display: flex;
}

.statistic-number-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.statistic-number {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  color: #fff;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 4rem;
  line-height: 80%;
  display: flex;
}

.statistic-number.large {
  color: var(--primary--white);
  font-size: 6em;
}

.stats-row {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.stats-item-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  display: flex;
}

.caro-component {
  background-color: #0000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-bottom: 4rem;
}

.caro-mask {
  width: 100%;
  padding-bottom: 0;
  overflow: clip;
}

.caro-slide {
  background-color: var(--primary--charcoal);
  border-radius: .25rem;
  width: 49%;
  margin-right: 1rem;
  overflow: clip;
}

.slider-arrow-left {
  border: 1px solid var(--primary--white);
  border-radius: .2rem;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 3.5rem;
  display: flex;
  inset: auto 0% 0% auto;
}

.slider-arrow-right {
  border: 1px solid var(--primary--white);
  border-radius: .2rem;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  inset: auto 0% 0% auto;
}

.pagination {
  height: 1.75rem;
  font-size: .5rem;
  inset: auto auto 0% 0%;
}

.arrow-clip {
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.icon-1x1-wrapper {
  display: inline-block;
}

.icon-1x1 {
  width: 1.5rem;
  height: 1.5rem;
}

._2-column-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: column;
  grid-template-rows: auto;
  place-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

._2-column-grid.grid-item-projects {
  border-radius: 0;
}

.parallax-image-wrapper {
  z-index: 1;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 30vh;
  display: flex;
  overflow: hidden;
}

.parallax-image-wrapper._16-9 {
  aspect-ratio: 16 / 9;
}

.parallax-image-wrapper._16-9.parallax-project-wrapper {
  background-color: var(--primary--white);
  border-radius: .5rem .5rem 0 0;
  height: 25vh;
  min-height: auto;
  max-height: none;
}

.portfolio-content-wrapper {
  z-index: 1;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.right-column {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.portfolio-image-wrapper {
  aspect-ratio: 1;
  position: relative;
  overflow: clip;
}

.left-column {
  flex-flow: column;
  display: flex;
  position: sticky;
  top: 20%;
}

.sticky-grid {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  place-items: start stretch;
  display: grid;
}

.right-column-heading {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  margin-top: 4rem;
  display: flex;
}

.portfolio-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.overflow-hide {
  z-index: 1;
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-end;
  display: block;
  position: relative;
  overflow: hidden;
}

.portfolio-item {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.portfolio-items-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.track-child {
  width: 100%;
  margin-bottom: -100vh;
  padding-left: 4rem;
  padding-right: 4rem;
}

.scrolll-text {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
  font-size: 6em;
  line-height: 1;
  display: flex;
}

.interaction-trigger {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.scroll-distance {
  height: 300vh;
  margin-bottom: -100vh;
}

.sticky-element {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 90rem;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.gradient-wrapper {
  position: relative;
}

.track {
  z-index: 1;
  position: relative;
  transform: translate(0);
}

.gradient {
  z-index: 2;
  background-image: linear-gradient(180deg, var(--primary--deep-blue), #16161600 33%, #16161600);
  width: 100%;
  height: 30vh;
  position: absolute;
  inset: 0% 0% auto;
}

.gradient.two {
  inset: auto 0% 0%;
  transform: rotate(-180deg);
}

.top-bar {
  width: 100%;
  height: 6rem;
}

.top-bar.main {
  z-index: 3;
  position: absolute;
  inset: 0% 0% auto;
}

.team-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.team-title-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  margin-bottom: 1rem;
  display: flex;
}

.hover-link-block {
  cursor: pointer;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.hover-content-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.hover-image-wrapper {
  z-index: -1;
  aspect-ratio: 4 / 5;
  width: 100%;
  position: relative;
  inset: 0%;
  overflow: hidden;
}

.hover-image-wrapper._1-1 {
  aspect-ratio: 1;
}

.hover-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.social-wrapper {
  grid-column-gap: .875rem;
  grid-row-gap: .875rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-self: flex-start;
  display: flex;
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.team-heading {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

.background-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.background-image-wrapper {
  z-index: -1;
  object-fit: cover;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.image-wrapper-content {
  z-index: 2;
  color: #fafafa;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 140vh;
  min-height: 50rem;
  padding: 12rem 4rem;
  display: flex;
  position: relative;
}

.image-wrapper-content.about {
  height: 70vh;
}

.email-sign-up {
  max-width: 400px;
}

.email-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.nav-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.section-hero {
  background-color: #0000;
  justify-content: center;
  align-items: flex-start;
  width: 100vw;
  height: 200vh;
  display: flex;
  position: relative;
}

.hero-scroll-sticky {
  justify-content: center;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.about-image-wrapper {
  background-image: url('../images/HeroBLue-min_1.avif');
  background-position: 50%;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-width: 100vw;
  height: 100vh;
  min-height: 100vh;
  display: flex;
}

.logo-border {
  border: 1px solid #0000;
  width: 150px;
  height: 150px;
  text-decoration: none;
  transition: border-color 1s cubic-bezier(.25, .46, .45, .94);
  position: relative;
}

.logo-border:hover {
  border: 1px solid #0006;
}

.logo-border.logo-partners {
  padding: 0;
}

.logo-border-line {
  z-index: 99;
  background-color: var(--primary--blue);
  transform-origin: 0%;
  border-radius: 100px;
  width: 15px;
  height: 2px;
  margin-top: -2px;
  margin-left: -2px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.logo-border-line.bottom-left {
  margin-top: 0;
  margin-bottom: -2px;
  inset: auto auto 0% 0%;
}

.logo-border-line.top-right {
  transform-origin: 100%;
  margin-left: 0;
  margin-right: -2px;
  inset: 0% 0% auto auto;
}

.logo-border-line.bottom-right {
  transform-origin: 100%;
  margin: 0 -2px -2px 0;
  inset: auto 0% 0% auto;
}

.loger-border-line-2 {
  background-color: var(--primary--blue);
  transform-origin: 50% 0;
  border-radius: 100px;
  width: 2px;
  height: 15px;
  margin-top: -2px;
  margin-left: -2px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.loger-border-line-2.bottom-left {
  transform-origin: 50% 100%;
  margin-top: 0;
  margin-bottom: -2px;
  inset: auto auto 0% 0%;
}

.loger-border-line-2.top-right {
  transform-origin: 50% 0;
  margin-left: 0;
  margin-right: -2px;
  inset: 0% 0% auto auto;
}

.loger-border-line-2.bottom-right {
  transform-origin: 50% 100%;
  margin: 0 -2px -2px 0;
  inset: auto 0% 0% auto;
}

.card-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  margin-bottom: 0;
  display: flex;
}

.focus-card-background {
  background-color: #272727;
  border-radius: .75rem;
  margin: 1px;
  position: absolute;
  inset: 0%;
}

.focus-card-background.pointer-event-off {
  background-color: var(--primary--charcoal);
  border-radius: .25rem;
}

.glow-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.content-card-wrapper {
  position: relative;
}

.focus-card-item {
  background-image: linear-gradient(129deg, var(--text-color--neutral-dark), #676767);
  border-radius: .25rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.glow-item {
  background-image: linear-gradient(90deg, transparent, var(--primary--blue) 27%);
  filter: blur(6px);
  width: 100%;
  height: 20rem;
  position: absolute;
  inset: 50% 0% 0% 50%;
  transform: translate(0, -50%);
}

.minimal-button-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.website-icon {
  width: 14px;
  height: 14px;
}

.superscript {
  font-size: 2rem;
  font-weight: 400;
}

.footer-email-wrapper {
  max-width: 400px;
}

.accordion {
  border-bottom: 1px solid #3b3b3b;
  width: 100%;
}

.accordion-item {
  cursor: pointer;
  border-top: 1px solid #3b3b3b;
  position: relative;
  overflow: hidden;
}

.accordion-item-top-wrapper {
  grid-column-gap: 2vw;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr .5fr;
  grid-auto-columns: 1fr;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 2rem;
  display: grid;
}

.accordion-arrow {
  width: 1rem;
  max-width: none;
}

.accordion-item-bottom-wrapper {
  padding-left: 40.5%;
  font-size: 16px;
  overflow: hidden;
}

.accordion-answer {
  color: var(--text-color--neutral);
  max-width: 38vw;
  margin-bottom: 0;
  padding-top: 6px;
  padding-bottom: 36px;
  font-size: 1rem;
}

.accordion-trigger-top {
  z-index: 5;
  width: 100%;
  height: 60%;
  position: absolute;
  inset: 0% 0% auto;
}

.accordion-trigger-bottom {
  z-index: 5;
  width: 100%;
  height: 60%;
  position: absolute;
  inset: auto 0% 0%;
}

.accordion-highlight-top {
  z-index: -1;
  transform-origin: 50% 0;
  background-color: #222;
  width: 100%;
  height: 150%;
  position: absolute;
  inset: 0% 0% auto;
}

.accordion-highlight-bottom {
  z-index: -1;
  transform-origin: 50% 100%;
  background-color: #222;
  width: 100%;
  height: 150%;
  position: absolute;
  inset: auto 0% 0%;
}

.team-arrow-block {
  background-color: var(--primary--blue);
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.team-arrow-icon {
  width: 100%;
  height: 100%;
}

.team-arrow-icon-wrapper {
  width: 1.5rem;
  height: 1.5rem;
}

.block-quote {
  border-left-width: 3px;
  border-left-color: var(--primary--blue);
}

.hero-section-wrapper {
  margin-bottom: -100vh;
  position: relative;
}

.hero-section {
  position: sticky;
  top: 0;
}

.spacer {
  height: 100vh;
  position: relative;
}

.page-content-wrapper {
  z-index: 1;
  background-color: var(--primary--black);
  position: relative;
}

.sticky-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: sticky;
  top: 40%;
}

.table-row-image-wrapper {
  opacity: 0;
  width: 20vw;
  height: 15vw;
  display: flex;
  position: absolute;
  inset: -4vw 0 0% auto;
}

.row-image {
  width: 100%;
  height: 100%;
}

.collection-list-wrapper-2 {
  width: 100%;
}

.caro-content {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  min-height: 16rem;
  padding: .75rem 1rem 1rem;
  display: flex;
}

.caro-content.caro-content-gray {
  background-color: #f7f7f7;
  min-height: 12rem;
}

.caro-content.caro-content-gray.animation-left-0-2 {
  border-bottom-right-radius: .5rem;
  border-bottom-left-radius: .5rem;
  width: 100%;
  height: auto;
  min-height: 180px;
  padding: 32px 24px 24px;
}

.hero-headline.hero-width {
  max-width: 700px;
}

.background-video-2 {
  object-fit: cover;
  width: 70%;
  height: 100%;
  max-height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
  overflow: visible;
}

.home-video {
  background-color: #1172fa00;
  width: 70%;
  height: 70%;
  position: absolute;
  inset: 0% 0% auto auto;
}

.container-services {
  width: 100%;
  max-width: none;
}

.flex-service {
  background-color: var(--primary--black);
  border-radius: .5rem;
  width: auto;
  height: 185px;
}

.grid-service {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-columns: 1fr 1fr 1fr;
}

.flex-block {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--primary--charcoal);
  border-top-right-radius: .5rem;
  border-bottom-right-radius: .5rem;
  width: 55%;
  height: 100%;
  padding: 1.5rem 1rem 1rem;
}

.image-service {
  vertical-align: middle;
  align-self: center;
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
  display: inline-block;
}

.heading-service-title {
  font-family: Questrial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.text-service {
  font-family: DM Sans, sans-serif;
  font-size: 16px;
}

.div-image-service {
  align-self: center;
}

.div-image-service.animation-left-0-2 {
  padding-left: .25rem;
  padding-right: .25rem;
}

.div-image-service.animation-left-0-2.div-height-100 {
  object-fit: fill;
  border-top-left-radius: .5rem;
  border-bottom-left-radius: .5rem;
  flex: 0 auto;
  width: 100%;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  position: static;
}

.h-black {
  color: var(--primary--black);
  font-family: Questrial, sans-serif;
  font-size: 26px;
}

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

.grid.grid-projects {
  grid-column-gap: 1rem;
  grid-row-gap: 2rem;
  object-fit: fill;
  flex: 0 auto;
  grid-auto-flow: row;
  place-content: stretch;
  place-items: start center;
  width: 100%;
}

.div-block {
  width: 20%;
}

.div-block.div-bottom {
  width: 40%;
  margin-top: 20rem;
}

.grid-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  width: 100%;
}

.flex-block-2 {
  padding: 4rem 2rem 2rem;
  position: relative;
}

.flex-block-2.flex-padding {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.div-block-2 {
  background-image: url('../images/bae6d34cb3fcde04341f7e280149fe7184f3bb00_1.avif');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.div-block-2.smartphone-cover {
  background-image: url('../images/31b76c8e132d1af407e9b9a19fe61b08adc9f45c_1.avif');
  background-position: 50% 0;
  background-size: cover;
}

.background-video-3 {
  width: 165%;
  height: 165%;
  position: absolute;
  inset: auto -100% -65% auto;
  overflow: hidden;
}

.div-black {
  background-color: var(--primary--black);
  width: 100%;
  height: 100%;
  min-height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
  overflow: visible;
}

.background-video-4 {
  z-index: 999;
  overflow: hidden;
}

.heading-101 {
  color: var(--primary--black);
}

.div-bottom {
  padding-top: 0;
  padding-left: 1rem;
}

.image {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.image.footer {
  max-width: 60px;
}

.image-2 {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.flex-block-3 {
  align-self: center;
  width: 45%;
  padding-left: 8px;
  padding-right: 8px;
}

.link-block {
  text-decoration: none;
}

.hero-description {
  max-width: 280px;
}

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

@media screen and (max-width: 991px) {
  h4 {
    font-size: 1.5rem;
  }

  .medium-text.neutral.medium-text-black {
    color: var(--primary--deep-blue);
  }

  ._12-column-grid {
    grid-template-columns: minmax(16px, 1fr) 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-flow: row;
  }

  ._12-column-grid._3rem._12-columns-bottom {
    grid-template-rows: auto auto;
  }

  ._12-column-grid._1-column-grid {
    grid-template-columns: minmax(16px, 1fr);
  }

  ._12-column-grid._12-columns-about {
    grid-row-gap: 0rem;
    grid-template-rows: auto auto;
  }

  .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .hero-content-wrapper {
    background-color: var(--primary--deep-blue);
  }

  .footer-block {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .section.intro {
    margin-top: 4rem;
  }

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

  .contact-info-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .nav-link {
    font-size: 3.5rem;
  }

  .button-background.cover.graybutton {
    background-color: var(--text-color--neutral-dark);
  }

  .email-link:hover {
    color: #161616;
  }

  .content-wrapper.contact {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
  }

  .display-text {
    font-size: 5rem;
  }

  .logos-grid-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .card-component-wrapper {
    flex-direction: column;
  }

  .card-component:hover {
    opacity: 1;
  }

  .card-front-content {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .world-map-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

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

  .table-row.no-border {
    grid-template-columns: 1fr 3fr 1fr 1fr;
  }

  .map-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
    display: flex;
  }

  .location-cards-wrapper {
    flex-direction: column;
    flex: 0 auto;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-right: 0;
  }

  .location-card-text {
    font-size: 20px;
    line-height: 28px;
  }

  .stats-item-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .caro-mask {
    padding-bottom: 4rem;
  }

  .parallax-image-wrapper._16-9.parallax-project-wrapper {
    height: 20vh;
  }

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

  .sticky-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    color: #fcfcfc;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .right-column-heading {
    margin-top: 3rem;
  }

  .track-child {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .scrolll-text {
    font-size: 4em;
  }

  .gradient-wrapper {
    width: 100%;
    height: 0;
    position: relative;
  }

  .gradient {
    background-image: linear-gradient(180deg, var(--primary--deep-blue), #161616c4 57%, #16161600);
  }

  .top-bar.main {
    background-color: #161616;
  }

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

  .about-image-wrapper {
    text-align: center;
    padding-left: 9.4em;
    padding-right: 9.4em;
  }

  .table-row-image-wrapper {
    width: 40vw;
    display: none;
  }

  .background-video-2 {
    width: 100%;
  }

  .flex-service {
    width: 340px;
  }

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

  .flex-block {
    width: 220px;
  }

  .heading-service-title {
    font-size: 24px;
  }

  .text-service {
    font-size: 16px;
  }

  .grid.grid-projects {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .grid-2 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .flex-block-2.flex-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .div-block-2 {
    width: 100%;
    height: 65vh;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .75rem;
    line-height: 1;
  }

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

  ._12-column-grid {
    grid-template-columns: minmax(16px, 1fr) 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
  }

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

  ._12-column-grid._3rem._12-columns-bottom {
    grid-template-rows: auto auto auto auto;
  }

  .container {
    padding: 4rem 1rem;
  }

  .container.intro {
    padding-top: 8rem;
  }

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

  .mono-text {
    font-size: .85rem;
  }

  .utility-page-content {
    width: 90%;
  }

  ._404-lottie {
    height: 200px;
  }

  .hero-content-wrapper {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
    padding: 4rem 1rem 2rem;
  }

  .footer-block {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .form-input {
    font-size: 1.2rem;
  }

  .section.intro {
    margin-top: 4rem;
  }

  .hero-content {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    justify-content: flex-end;
    align-items: stretch;
  }

  .hero-top {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .contact-info-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    border-top: 1px solid #3b3b3b;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 2rem;
    display: flex;
  }

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

  .nav-link-item {
    overflow: hidden;
  }

  .container-nav {
    padding: 1rem;
  }

  .small-logo {
    height: 1.5rem;
  }

  .nav-content {
    z-index: 2;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    padding: 1rem;
    display: none;
    position: absolute;
    inset: 0%;
  }

  .nav-link-list {
    text-align: left;
  }

  .progress-bar {
    z-index: 1;
    height: 3px;
  }

  .nav-link {
    font-size: 3rem;
    text-decoration: none;
  }

  .button-menu {
    z-index: 999;
    color: #0f0f0f;
    cursor: pointer;
    display: none;
    position: relative;
    overflow: hidden;
  }

  .navigation {
    z-index: 888;
    position: fixed;
    inset: 0% 0% auto;
  }

  .nav-content-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    width: 100%;
  }

  .text-wrapper {
    height: 3rem;
  }

  .get-in-touch-text {
    font-size: 3rem;
  }

  .footer-bottom-bar {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .service-card-item {
    z-index: 1;
    width: 100%;
  }

  .content-wrapper, .content-wrapper.contact {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .display-text {
    font-size: 4rem;
  }

  .logos-grid-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    place-items: start;
  }

  .card-component {
    padding: 2rem;
  }

  .card-front-content {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: column;
    justify-content: flex-start;
  }

  .right-aligned-content {
    justify-content: flex-start;
    align-items: center;
  }

  .table-row {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .arrow-up-icon {
    width: 20px;
    height: 20px;
  }

  .location-card-image {
    width: 100%;
  }

  .location-cards-image-wrapper {
    flex-flow: column;
    height: 40rem;
  }

  .statistic-list {
    margin-top: 3rem;
  }

  .statistic-item {
    max-width: 12rem;
  }

  .stats-item-wrapper {
    max-width: none;
  }

  .caro-component {
    padding-top: 0;
    padding-bottom: 0;
  }

  .caro-mask {
    padding-bottom: 4rem;
  }

  .caro-slide {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .pagination {
    position: absolute;
    inset: auto auto 0% 0%;
  }

  ._2-column-grid {
    grid-template-rows: auto auto;
  }

  .parallax-image-wrapper._16-9.parallax-project-wrapper {
    height: 25vh;
  }

  .right-column {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .left-column {
    margin-bottom: 2rem;
    position: static;
  }

  .sticky-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .right-column-heading {
    margin-top: 0;
  }

  .scrolll-text {
    text-align: left;
    font-size: 2.5em;
  }

  .gradient {
    background-image: linear-gradient(180deg, var(--primary--deep-blue), #161616c4 66%, #16161600);
  }

  .team-grid {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .hover-image-wrapper._1-1 {
    aspect-ratio: 4 / 5;
  }

  .image-wrapper-content {
    height: 150vh;
    min-height: 32rem;
    padding: 8rem 2rem;
  }

  .email-sign-up {
    display: none;
  }

  .nav-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .about-image-wrapper {
    padding-left: 2em;
    padding-right: 2em;
  }

  .minimal-button-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .flex-service {
    width: 100%;
  }

  .grid-service {
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .flex-block {
    width: 55%;
  }

  .heading-service-title {
    font-size: 24px;
  }

  .text-service {
    font-size: 16px;
  }

  .grid.grid-projects {
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .flex-block-2.flex-padding {
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 479px) {
  h5 {
    font-weight: 400;
  }

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

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

  .container.intro {
    padding-top: 6rem;
  }

  ._404-lottie {
    height: 200px;
  }

  .hero-content-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    justify-content: flex-end;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 2rem;
    padding-right: 1rem;
  }

  .footer-block {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
  }

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

  .hero-content {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
  }

  .hero-top {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .contact-info-wrapper {
    border-top: 1px solid #3b3b3b;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 1rem;
  }

  .logo-link {
    z-index: 999;
    background-color: #0000;
    position: relative;
  }

  .nav-link-wrapper {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    text-decoration: none;
    display: flex;
  }

  .nav-link-item {
    overflow: hidden;
  }

  .container-nav {
    padding-bottom: 0;
  }

  .small-logo.medium-logo {
    background-color: #0000;
  }

  .nav-content {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: flex-end;
    align-items: stretch;
    width: 100%;
    padding: 2rem 1rem 1rem;
    display: none;
    position: absolute;
    inset: 0%;
  }

  .nav-link-list {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
    width: 100%;
    display: flex;
  }

  .progress-bar {
    z-index: 1;
    height: 3px;
  }

  .nav-link {
    font-size: 2.25rem;
    font-weight: 500;
    text-decoration: none;
  }

  .button-menu {
    z-index: 999;
    display: none;
    position: relative;
  }

  .navigation, .nav-bar {
    z-index: 999;
  }

  .footer-bottom-bar {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 3rem;
    display: flex;
  }

  .content-wrapper {
    width: 100%;
  }

  .content-wrapper.contact {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .logos-grid-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr 1fr;
    place-items: start center;
  }

  .card-component-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .card-front-content {
    flex-flow: column;
  }

  .table-row {
    z-index: 1;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 6fr;
    grid-auto-columns: 1fr;
    justify-content: flex-end;
    align-items: flex-start;
    display: flex;
    position: relative;
  }

  .project-text {
    max-width: 90%;
  }

  .arrow-up-icon {
    margin-top: auto;
    margin-bottom: auto;
    position: absolute;
    inset: 0% 0% 0% auto;
  }

  .statistic-item {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    max-width: none;
  }

  .stats-item-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .caro-component {
    width: 100%;
  }

  .caro-mask {
    width: 100%;
    padding-bottom: 2rem;
  }

  .caro-slide {
    width: 100%;
  }

  .slider-arrow-left {
    position: relative;
  }

  ._2-column-grid {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .parallax-image-wrapper._16-9.parallax-project-wrapper {
    height: 15vh;
  }

  .portfolio-items-wrapper {
    grid-row-gap: 2rem;
    flex-flow: wrap;
    grid-template-columns: 1fr;
  }

  .track-child {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .gradient {
    background-image: linear-gradient(180deg, var(--primary--deep-blue), #161616c4 66%, #16161600);
  }

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

  .email-sign-up {
    display: none;
  }

  .about-image-wrapper {
    justify-content: center;
    align-items: flex-start;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .logo-border {
    width: 125px;
    height: 125px;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .background-video-2 {
    width: 135%;
    height: 80%;
    margin-top: -20px;
    margin-left: 50px;
    inset: 15% 0% 0%;
  }

  .image-service {
    width: 120px;
  }

  .heading-service-title {
    font-size: 18px;
  }

  .text-service {
    font-size: 14px;
  }

  .div-block.div-bottom {
    width: 100%;
    margin-top: 25rem;
  }

  .div-block-2 {
    background-position: 50%;
    background-size: cover;
  }

  .div-block-2.smartphone-cover {
    height: 40vh;
  }

  .background-video-3 {
    width: 100%;
    height: 60%;
    inset: 20% auto auto 0%;
  }

  .hero-description {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-image: none;
    max-width: none;
    padding-top: 20px;
    padding-right: 60px;
  }
}

#w-node-_27eeead6-6a23-b86e-cf49-90e9540c741d-1dc7983f {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-_6eb722a1-5756-abde-22fb-c5b6b314f22c-1dc7983f {
  grid-area: 1 / 1 / 2 / 9;
}

#w-node-_2f05fd6e-1366-a42a-7b86-9da284610403-1dc7983f {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-_6eb722a1-5756-abde-22fb-c5b6b314f22b-1dc7983f {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_44300ca1-b45a-7f10-43ce-fa5bdf7edd0c-1dc7983f {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-_44300ca1-b45a-7f10-43ce-fa5bdf7edd12-1dc7983f {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_255b5d61-f48c-6887-10d5-209faae090c3-1dc7983f {
  grid-area: 1 / 1 / 2 / 9;
}

#w-node-_255b5d61-f48c-6887-10d5-209faae090c4-1dc7983f {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-_255b5d61-f48c-6887-10d5-209faae090ca-1dc7983f, #w-node-_56a68c67-8fbc-9538-cfbe-9be2947c1b2d-1dc7983f {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_56a68c67-8fbc-9538-cfbe-9be2947c1b2e-1dc7983f {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-_56a68c67-8fbc-9538-cfbe-9be2947c1b34-1dc7983f {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-b1b1128c-57ba-355d-d8b6-6626517d0b72-1dc7983f {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_851e86c3-5c14-5511-b18f-8011364809f0-1dc7983f {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-cc5f15b5-2798-63fe-0c7a-d3c5b8714be0-1dc7983f {
  grid-area: 2 / 1 / 3 / 5;
}

#w-node-_50829ac3-e8ae-96f8-9d31-cad547c6621d-1dc7983f {
  grid-area: 3 / 1 / 4 / 5;
}

#w-node-_0b57ab6f-af77-c6b9-cadd-160debe03db1-1dc7983f {
  grid-area: 1 / 1 / 2 / 9;
}

#w-node-_0b57ab6f-af77-c6b9-cadd-160debe03db2-1dc7983f {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-_0b57ab6f-af77-c6b9-cadd-160debe03db8-1dc7983f {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_558c0a33-620a-7ca3-b727-7c1c6d7be0d8-1dc7983f {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_7425cc5c-c4c2-37ee-1182-97eea7a169eb-a7a169e8 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_7425cc5c-c4c2-37ee-1182-97eea7a169f1-a7a169e8 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-_7425cc5c-c4c2-37ee-1182-97eea7a16a15-a7a169e8 {
  grid-area: 1 / 7 / 2 / 10;
}

#w-node-_2e3d4564-0c63-df8d-93e7-6c4e3971c08b-a7a169e8 {
  grid-area: 1 / 10 / 2 / 13;
}

#w-node-_7425cc5c-c4c2-37ee-1182-97eea7a16a1e-a7a169e8 {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-_7425cc5c-c4c2-37ee-1182-97eea7a16a1f-a7a169e8 {
  grid-area: 3 / 1 / 4 / 13;
}

#w-node-_1dcd6e7f-c3eb-3427-d242-1cb0028eaa91-028eaa7f {
  grid-area: 1 / 1 / 2 / 8;
  align-self: auto;
}

#w-node-_13ef76da-2b9a-0811-48c1-59d8c4dd54f9-028eaa7f {
  grid-area: 1 / 8 / 2 / 13;
  align-self: center;
}

#w-node-_7198584e-79fc-adf0-315e-c4b844e264af-1dc79885, #w-node-_18bfe42e-35ce-51ab-fc1b-46f2d4ef5cbe-1dc79885, #w-node-_8cef19ae-5629-5f75-3cdb-b573f9e9a2a9-1dc79885, #w-node-_7198584e-79fc-adf0-315e-c4b844e264b5-1dc79885, #w-node-_9fb1d525-f039-7a6a-f277-dde68b9ff81a-1dc79885, #w-node-_7198584e-79fc-adf0-315e-c4b844e264d0-1dc79885 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-b880d735-a6f1-f1e6-e757-0519262d4658-1dc798a3 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_1e82101a-1059-6b1f-5ccb-125a849eb1b7-1dc798a3 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-b880d735-a6f1-f1e6-e757-0519262d465b-1dc798a3 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-d0eb390a-2d43-5fb0-b1cc-a245d22d5af2-1dc798a3 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-d0eb390a-2d43-5fb0-b1cc-a245d22d5af3-1dc798a3 {
  grid-area: 2 / 1 / 3 / 4;
}

#w-node-d0eb390a-2d43-5fb0-b1cc-a245d22d5af4-1dc798a3 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-d0eb390a-2d43-5fb0-b1cc-a245d22d5af8-1dc798a3 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-d0eb390a-2d43-5fb0-b1cc-a245d22d5afb-1dc798a3 {
  grid-area: 2 / 8 / 3 / 11;
}

#w-node-_6de627aa-255f-c928-4a89-3f3480e9e26c-1dc798a7 {
  grid-area: 1 / 1 / 2 / 9;
}

#w-node-_6de627aa-255f-c928-4a89-3f3480e9e26d-1dc798a7 {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-_6de627aa-255f-c928-4a89-3f3480e9e273-1dc798a7 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_4adea895-949e-e37d-6cd5-6563533fa699-1dc798a7 {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-_4adea895-949e-e37d-6cd5-6563533fa69f-1dc798a7 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_4adea895-949e-e37d-6cd5-6563533fa6a4-1dc798a7 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-c3528b2a-4577-a9f0-5bff-472f1a4d258f-1dc798a7 {
  grid-area: 1 / 1 / 2 / 9;
}

#w-node-c3528b2a-4577-a9f0-5bff-472f1a4d2590-1dc798a7 {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-c3528b2a-4577-a9f0-5bff-472f1a4d2596-1dc798a7 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_882fe120-2674-628e-d91f-ae74ed9be3a5-1dc798a7 {
  grid-area: 1 / 1 / 2 / 9;
}

#w-node-_882fe120-2674-628e-d91f-ae74ed9be3a6-1dc798a7 {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-_882fe120-2674-628e-d91f-ae74ed9be3ac-1dc798a7 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_80d61a2a-61e7-0557-fb16-f1be7cc8ad49-1dc798a7 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-f6c49b9a-6c99-dda9-536d-d993751f19fa-1dc798a7 {
  grid-area: 1 / 1 / 2 / 13;
  justify-self: center;
}

#w-node-f6c49b9a-6c99-dda9-536d-d993751f19ff-1dc798a7 {
  grid-area: 2 / 3 / 3 / 11;
}

#w-node-f6c49b9a-6c99-dda9-536d-d993751f1a01-1dc798a7 {
  grid-area: 1 / 1 / 3 / 13;
}

#w-node-_6656ac29-fd32-d53e-de99-d359ff29abff-1dc798a7 {
  grid-area: 3 / 1 / 4 / 13;
  justify-self: center;
}

#w-node-_2629e38b-3c1d-fa60-3d99-da6bf61c4278-1dc798a7 {
  grid-area: 1 / 1 / 2 / 9;
}

#w-node-_2629e38b-3c1d-fa60-3d99-da6bf61c4279-1dc798a7 {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-_2629e38b-3c1d-fa60-3d99-da6bf61c427f-1dc798a7 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_3cae2a86-5acd-edca-cf82-1c031f3663d7-1dc798a7 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_3cae2a86-5acd-edca-cf82-1c031f3663db-1dc798a7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3cae2a86-5acd-edca-cf82-1c031f3663df-1dc798a7 {
  place-self: center end;
}

#w-node-_2b370baf-8390-1a4f-9fbb-2f7827564335-1dc798a7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2b370baf-8390-1a4f-9fbb-2f7827564339-1dc798a7 {
  place-self: center end;
}

#w-node-ccd24c0b-ba3f-aa8a-948e-73657bb88e1a-1dc798a7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ccd24c0b-ba3f-aa8a-948e-73657bb88e1e-1dc798a7 {
  place-self: center end;
}

#w-node-ba9697fb-5a9f-a883-75d0-09cbe4412865-1dc798a7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ba9697fb-5a9f-a883-75d0-09cbe4412869-1dc798a7 {
  place-self: center end;
}

#w-node-c7000fad-dbb5-814b-cd42-08c31ea84868-64d32180 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-_21a5757e-5190-e145-a81d-50f0388b5e7e-64d32180 {
  grid-area: 1 / 1 / 2 / 13;
  justify-self: center;
}

#w-node-_21a5757e-5190-e145-a81d-50f0388b5e84-64d32180 {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-_21a5757e-5190-e145-a81d-50f0388b5e85-64d32180 {
  grid-area: 1 / 1 / 3 / 13;
}

#w-node-_21a5757e-5190-e145-a81d-50f0388b5e86-64d32180 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_21a5757e-5190-e145-a81d-50f0388b5ee6-64d32180 {
  grid-area: 3 / 1 / 4 / 13;
  justify-self: center;
}

#w-node-ccf9f464-6ebe-8c00-dcbc-19b0c992a1c8-64d32180 {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-_92b2f65a-40c7-9f46-e038-82e0f6bd044c-64d32180 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_92b2f65a-40c7-9f46-e038-82e0f6bd044d-64d32180 {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-_92b2f65a-40c7-9f46-e038-82e0f6bd0453-64d32180 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-b7798f73-ed76-3533-24f8-2853fe255f88-64d32180 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-c7000fad-dbb5-814b-cd42-08c31ea8488b-64d32180 {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-c7000fad-dbb5-814b-cd42-08c31ea84891-64d32180 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-c7000fad-dbb5-814b-cd42-08c31ea848b9-64d32180 {
  grid-area: 1 / 1 / 2 / 13;
  align-self: auto;
}

#w-node-c7000fad-dbb5-814b-cd42-08c31ea848ba-64d32180 {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-c7000fad-dbb5-814b-cd42-08c31ea848c0-64d32180, #w-node-c7000fad-dbb5-814b-cd42-08c31ea848d1-64d32180 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-c7000fad-dbb5-814b-cd42-08c31ea848d2-64d32180 {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-c7000fad-dbb5-814b-cd42-08c31ea848d8-64d32180 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-c7000fad-dbb5-814b-cd42-08c31ea848e9-64d32180 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-c7000fad-dbb5-814b-cd42-08c31ea848ea-64d32180 {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-c7000fad-dbb5-814b-cd42-08c31ea848f5-64d32180 {
  grid-area: 2 / 1 / 3 / 5;
}

#w-node-c7000fad-dbb5-814b-cd42-08c31ea8490d-64d32180 {
  grid-area: 3 / 1 / 4 / 5;
}

#w-node-_6bb66bc3-4133-ad91-0e52-57f1dcd294d5-64d32180 {
  grid-area: 1 / 1 / 2 / 9;
}

#w-node-_6bb66bc3-4133-ad91-0e52-57f1dcd294d6-64d32180 {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-_6bb66bc3-4133-ad91-0e52-57f1dcd294dc-64d32180 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-c7000fad-dbb5-814b-cd42-08c31ea84941-64d32180 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-c7000fad-dbb5-814b-cd42-08c31ea84942-64d32180 {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-c7000fad-dbb5-814b-cd42-08c31ea84948-64d32180 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-c7000fad-dbb5-814b-cd42-08c31ea8494e-64d32180, #w-node-cbd6b7c8-58fa-f3fb-a529-a73b3b9d5ce9-64d32180 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-cbd6b7c8-58fa-f3fb-a529-a73b3b9d5cea-64d32180 {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-cbd6b7c8-58fa-f3fb-a529-a73b3b9d5cf0-64d32180 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-cbd6b7c8-58fa-f3fb-a529-a73b3b9d5cfc-64d32180 {
  grid-area: 1 / 1 / 2 / 13;
}

@media screen and (max-width: 991px) {
  #w-node-_6eb722a1-5756-abde-22fb-c5b6b314f22c-1dc7983f {
    grid-column: 1 / 7;
  }

  #w-node-_6eb722a1-5756-abde-22fb-c5b6b314f22b-1dc7983f, #w-node-_44300ca1-b45a-7f10-43ce-fa5bdf7edd12-1dc7983f {
    grid-column: 5 / 9;
  }

  #w-node-_255b5d61-f48c-6887-10d5-209faae090c3-1dc7983f {
    grid-column: 1 / 9;
  }

  #w-node-_255b5d61-f48c-6887-10d5-209faae090ca-1dc7983f {
    grid-column: 5 / 9;
  }

  #w-node-_56a68c67-8fbc-9538-cfbe-9be2947c1b2d-1dc7983f {
    grid-column: 1 / 9;
  }

  #w-node-_56a68c67-8fbc-9538-cfbe-9be2947c1b34-1dc7983f {
    grid-column: 5 / 9;
  }

  #w-node-b1b1128c-57ba-355d-d8b6-6626517d0b72-1dc7983f {
    grid-area: 2 / 1 / 3 / 9;
  }

  #w-node-_0b57ab6f-af77-c6b9-cadd-160debe03db1-1dc7983f {
    grid-column: 1 / 9;
  }

  #w-node-_0b57ab6f-af77-c6b9-cadd-160debe03db8-1dc7983f {
    grid-column: 5 / 9;
  }

  #w-node-_558c0a33-620a-7ca3-b727-7c1c6d7be0d8-1dc7983f {
    grid-column: 1 / 9;
  }

  #w-node-_7425cc5c-c4c2-37ee-1182-97eea7a169eb-a7a169e8 {
    grid-column-end: 5;
  }

  #w-node-_7425cc5c-c4c2-37ee-1182-97eea7a169f1-a7a169e8 {
    grid-column: 5 / 9;
    justify-self: start;
  }

  #w-node-_7425cc5c-c4c2-37ee-1182-97eea7a16a15-a7a169e8 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_2e3d4564-0c63-df8d-93e7-6c4e3971c08b-a7a169e8 {
    grid-area: 2 / 5 / 3 / 9;
  }

  #w-node-_7425cc5c-c4c2-37ee-1182-97eea7a16a1e-a7a169e8, #w-node-_7425cc5c-c4c2-37ee-1182-97eea7a16a1f-a7a169e8 {
    grid-row: 3 / 4;
    grid-column-end: 9;
  }

  #w-node-_1dcd6e7f-c3eb-3427-d242-1cb0028eaa91-028eaa7f {
    grid-column-end: 9;
  }

  #w-node-_13ef76da-2b9a-0811-48c1-59d8c4dd54f9-028eaa7f {
    grid-column: 6 / 9;
  }

  #w-node-_7198584e-79fc-adf0-315e-c4b844e264af-1dc79885, #w-node-_18bfe42e-35ce-51ab-fc1b-46f2d4ef5cbe-1dc79885, #w-node-_8cef19ae-5629-5f75-3cdb-b573f9e9a2a9-1dc79885, #w-node-_7198584e-79fc-adf0-315e-c4b844e264b5-1dc79885, #w-node-_9fb1d525-f039-7a6a-f277-dde68b9ff81a-1dc79885, #w-node-_7198584e-79fc-adf0-315e-c4b844e264d0-1dc79885 {
    grid-column: span 4 / span 4;
  }

  #w-node-b880d735-a6f1-f1e6-e757-0519262d4658-1dc798a3 {
    grid-column-end: 9;
  }

  #w-node-b880d735-a6f1-f1e6-e757-0519262d465b-1dc798a3 {
    grid-area: 2 / 1 / 3 / 9;
  }

  #w-node-d0eb390a-2d43-5fb0-b1cc-a245d22d5af2-1dc798a3 {
    grid-column-end: 9;
  }

  #w-node-d0eb390a-2d43-5fb0-b1cc-a245d22d5af8-1dc798a3 {
    grid-column: 1 / 4;
  }

  #w-node-d0eb390a-2d43-5fb0-b1cc-a245d22d5afb-1dc798a3 {
    grid-column: 4 / 7;
  }

  #w-node-_6de627aa-255f-c928-4a89-3f3480e9e26c-1dc798a7 {
    grid-column: 1 / 7;
  }

  #w-node-_6de627aa-255f-c928-4a89-3f3480e9e273-1dc798a7, #w-node-_4adea895-949e-e37d-6cd5-6563533fa69f-1dc798a7 {
    grid-column: 5 / 9;
  }

  #w-node-_16e61010-c3b6-ab71-f4d0-f7ea6a08acba-1dc798a7 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-c3528b2a-4577-a9f0-5bff-472f1a4d258f-1dc798a7 {
    grid-column: 1 / 9;
  }

  #w-node-c3528b2a-4577-a9f0-5bff-472f1a4d2596-1dc798a7 {
    grid-column: 5 / 9;
  }

  #w-node-_882fe120-2674-628e-d91f-ae74ed9be3a5-1dc798a7 {
    grid-column: 1 / 9;
  }

  #w-node-_882fe120-2674-628e-d91f-ae74ed9be3ac-1dc798a7 {
    grid-column: 5 / 9;
  }

  #w-node-f6c49b9a-6c99-dda9-536d-d993751f19fa-1dc798a7 {
    grid-column: 1 / 9;
  }

  #w-node-f6c49b9a-6c99-dda9-536d-d993751f19ff-1dc798a7 {
    grid-column: 2 / 8;
  }

  #w-node-f6c49b9a-6c99-dda9-536d-d993751f1a01-1dc798a7 {
    grid-column: 1 / 9;
  }

  #w-node-_6656ac29-fd32-d53e-de99-d359ff29abff-1dc798a7 {
    grid-column-end: 9;
  }

  #w-node-_2629e38b-3c1d-fa60-3d99-da6bf61c4278-1dc798a7 {
    grid-column: 1 / 9;
  }

  #w-node-_2629e38b-3c1d-fa60-3d99-da6bf61c427f-1dc798a7 {
    grid-column: 5 / 9;
  }

  #w-node-_3cae2a86-5acd-edca-cf82-1c031f3663d7-1dc798a7 {
    grid-column: 3 / 9;
  }

  #w-node-_21a5757e-5190-e145-a81d-50f0388b5e7e-64d32180, #w-node-_21a5757e-5190-e145-a81d-50f0388b5e84-64d32180, #w-node-_21a5757e-5190-e145-a81d-50f0388b5e85-64d32180 {
    grid-column: 1 / 9;
  }

  #w-node-_21a5757e-5190-e145-a81d-50f0388b5ee6-64d32180 {
    grid-column-end: 9;
  }

  #w-node-_92b2f65a-40c7-9f46-e038-82e0f6bd044c-64d32180 {
    grid-column: 1 / 9;
  }

  #w-node-_92b2f65a-40c7-9f46-e038-82e0f6bd0453-64d32180 {
    grid-column: 5 / 9;
  }

  #w-node-b7798f73-ed76-3533-24f8-2853fe255f88-64d32180 {
    grid-row: 2 / 3;
    grid-column-end: 9;
  }

  #w-node-c7000fad-dbb5-814b-cd42-08c31ea84891-64d32180 {
    grid-column: 5 / 9;
  }

  #w-node-c7000fad-dbb5-814b-cd42-08c31ea848b9-64d32180 {
    grid-column: 1 / 9;
  }

  #w-node-c7000fad-dbb5-814b-cd42-08c31ea848c0-64d32180 {
    grid-column: 5 / 9;
  }

  #w-node-c7000fad-dbb5-814b-cd42-08c31ea848d1-64d32180 {
    grid-column: 1 / 9;
  }

  #w-node-c7000fad-dbb5-814b-cd42-08c31ea848d8-64d32180 {
    grid-column: 5 / 9;
  }

  #w-node-c7000fad-dbb5-814b-cd42-08c31ea848e9-64d32180 {
    grid-area: 2 / 1 / 3 / 9;
  }

  #w-node-_6bb66bc3-4133-ad91-0e52-57f1dcd294d5-64d32180 {
    grid-column: 1 / 9;
  }

  #w-node-_6bb66bc3-4133-ad91-0e52-57f1dcd294dc-64d32180 {
    grid-column: 5 / 9;
  }

  #w-node-c7000fad-dbb5-814b-cd42-08c31ea84941-64d32180 {
    grid-column: 1 / 9;
  }

  #w-node-c7000fad-dbb5-814b-cd42-08c31ea84948-64d32180 {
    grid-column: 5 / 9;
  }

  #w-node-c7000fad-dbb5-814b-cd42-08c31ea8494e-64d32180, #w-node-cbd6b7c8-58fa-f3fb-a529-a73b3b9d5ce9-64d32180 {
    grid-column: 1 / 9;
  }

  #w-node-cbd6b7c8-58fa-f3fb-a529-a73b3b9d5cf0-64d32180 {
    grid-column: 5 / 9;
  }

  #w-node-cbd6b7c8-58fa-f3fb-a529-a73b3b9d5cfc-64d32180 {
    grid-column: 1 / 9;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_27eeead6-6a23-b86e-cf49-90e9540c741d-1dc7983f {
    grid-column: 1 / 5;
  }

  #w-node-_6eb722a1-5756-abde-22fb-c5b6b314f22c-1dc7983f {
    grid-column: 1 / 4;
  }

  #w-node-_6eb722a1-5756-abde-22fb-c5b6b314f22b-1dc7983f, #w-node-_44300ca1-b45a-7f10-43ce-fa5bdf7edd12-1dc7983f, #w-node-_255b5d61-f48c-6887-10d5-209faae090c3-1dc7983f, #w-node-_255b5d61-f48c-6887-10d5-209faae090ca-1dc7983f, #w-node-_56a68c67-8fbc-9538-cfbe-9be2947c1b2d-1dc7983f, #w-node-_56a68c67-8fbc-9538-cfbe-9be2947c1b34-1dc7983f {
    grid-column: 1 / 5;
  }

  #w-node-b1b1128c-57ba-355d-d8b6-6626517d0b72-1dc7983f {
    grid-column-end: 5;
  }

  #w-node-_0b57ab6f-af77-c6b9-cadd-160debe03db1-1dc7983f, #w-node-_0b57ab6f-af77-c6b9-cadd-160debe03db8-1dc7983f {
    grid-column: 1 / 5;
  }

  #w-node-_558c0a33-620a-7ca3-b727-7c1c6d7be0d8-1dc7983f, #w-node-e7297f26-067d-86b9-c6e8-5e3a6ef27893-1dc7983f {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_77f7f4c3-ac24-62d1-f7b8-a81fa15ff345-1dc7983f {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_185150a3-c183-ed0d-5312-4697f78f77fb-1dc7983f {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_185150a3-c183-ed0d-5312-4697f78f77fd-1dc7983f {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_3cd47bf3-fc8e-ade9-628c-5d946181940e-1dc7983f {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_3cd47bf3-fc8e-ade9-628c-5d9461819410-1dc7983f {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_612dee9a-33d8-56d9-c096-f19ccf4b1346-1dc7983f {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_612dee9a-33d8-56d9-c096-f19ccf4b1348-1dc7983f {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_7425cc5c-c4c2-37ee-1182-97eea7a169eb-a7a169e8 {
    grid-column-end: 5;
  }

  #w-node-_7425cc5c-c4c2-37ee-1182-97eea7a169f1-a7a169e8 {
    grid-area: 2 / 1 / 3 / 5;
    justify-self: start;
  }

  #w-node-_7425cc5c-c4c2-37ee-1182-97eea7a16a15-a7a169e8 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_2e3d4564-0c63-df8d-93e7-6c4e3971c08b-a7a169e8 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-_7425cc5c-c4c2-37ee-1182-97eea7a16a1e-a7a169e8, #w-node-_7425cc5c-c4c2-37ee-1182-97eea7a16a1f-a7a169e8 {
    grid-row: 5 / 6;
    grid-column-end: 5;
  }

  #w-node-_1dcd6e7f-c3eb-3427-d242-1cb0028eaa91-028eaa7f {
    grid-column-end: 5;
  }

  #w-node-_13ef76da-2b9a-0811-48c1-59d8c4dd54f9-028eaa7f {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-b880d735-a6f1-f1e6-e757-0519262d4658-1dc798a3 {
    grid-column: 1 / 5;
  }

  #w-node-b880d735-a6f1-f1e6-e757-0519262d465b-1dc798a3 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-d0eb390a-2d43-5fb0-b1cc-a245d22d5af2-1dc798a3, #w-node-d0eb390a-2d43-5fb0-b1cc-a245d22d5af3-1dc798a3 {
    grid-column-end: 5;
  }

  #w-node-d0eb390a-2d43-5fb0-b1cc-a245d22d5af8-1dc798a3 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-d0eb390a-2d43-5fb0-b1cc-a245d22d5afb-1dc798a3 {
    grid-area: 3 / 3 / 4 / 5;
  }

  #w-node-_6de627aa-255f-c928-4a89-3f3480e9e26c-1dc798a7, #w-node-_6de627aa-255f-c928-4a89-3f3480e9e273-1dc798a7, #w-node-_4adea895-949e-e37d-6cd5-6563533fa69f-1dc798a7, #w-node-c3528b2a-4577-a9f0-5bff-472f1a4d258f-1dc798a7, #w-node-c3528b2a-4577-a9f0-5bff-472f1a4d2596-1dc798a7, #w-node-_882fe120-2674-628e-d91f-ae74ed9be3a5-1dc798a7, #w-node-_882fe120-2674-628e-d91f-ae74ed9be3ac-1dc798a7, #w-node-f6c49b9a-6c99-dda9-536d-d993751f19fa-1dc798a7 {
    grid-column: 1 / 5;
  }

  #w-node-f6c49b9a-6c99-dda9-536d-d993751f19ff-1dc798a7 {
    grid-area: 2 / 1 / 3 / 5;
    justify-self: center;
  }

  #w-node-f6c49b9a-6c99-dda9-536d-d993751f1a01-1dc798a7 {
    grid-column: 1 / 5;
  }

  #w-node-_6656ac29-fd32-d53e-de99-d359ff29abff-1dc798a7 {
    grid-column-end: 5;
  }

  #w-node-_2629e38b-3c1d-fa60-3d99-da6bf61c4278-1dc798a7, #w-node-_2629e38b-3c1d-fa60-3d99-da6bf61c427f-1dc798a7 {
    grid-column: 1 / 5;
  }

  #w-node-_3cae2a86-5acd-edca-cf82-1c031f3663d7-1dc798a7 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-c7000fad-dbb5-814b-cd42-08c31ea84868-64d32180, #w-node-_21a5757e-5190-e145-a81d-50f0388b5e7e-64d32180 {
    grid-column: 1 / 5;
  }

  #w-node-_21a5757e-5190-e145-a81d-50f0388b5e84-64d32180 {
    grid-area: 2 / 1 / 3 / 5;
    justify-self: center;
  }

  #w-node-_21a5757e-5190-e145-a81d-50f0388b5e85-64d32180 {
    grid-column: 1 / 5;
  }

  #w-node-_21a5757e-5190-e145-a81d-50f0388b5ee6-64d32180 {
    grid-column-end: 5;
  }

  #w-node-_92b2f65a-40c7-9f46-e038-82e0f6bd044c-64d32180 {
    grid-column: 1 / 9;
  }

  #w-node-_92b2f65a-40c7-9f46-e038-82e0f6bd0453-64d32180, #w-node-c7000fad-dbb5-814b-cd42-08c31ea84891-64d32180, #w-node-c7000fad-dbb5-814b-cd42-08c31ea848b9-64d32180, #w-node-c7000fad-dbb5-814b-cd42-08c31ea848c0-64d32180, #w-node-c7000fad-dbb5-814b-cd42-08c31ea848d1-64d32180, #w-node-c7000fad-dbb5-814b-cd42-08c31ea848d8-64d32180 {
    grid-column: 1 / 5;
  }

  #w-node-c7000fad-dbb5-814b-cd42-08c31ea848e9-64d32180 {
    grid-column-end: 5;
  }

  #w-node-_6bb66bc3-4133-ad91-0e52-57f1dcd294d5-64d32180, #w-node-_6bb66bc3-4133-ad91-0e52-57f1dcd294dc-64d32180, #w-node-c7000fad-dbb5-814b-cd42-08c31ea84941-64d32180, #w-node-c7000fad-dbb5-814b-cd42-08c31ea84948-64d32180 {
    grid-column: 1 / 5;
  }

  #w-node-c7000fad-dbb5-814b-cd42-08c31ea8494e-64d32180, #w-node-c7000fad-dbb5-814b-cd42-08c31ea84953-64d32180 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-c7000fad-dbb5-814b-cd42-08c31ea84955-64d32180 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-c7000fad-dbb5-814b-cd42-08c31ea84961-64d32180 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-c7000fad-dbb5-814b-cd42-08c31ea84963-64d32180 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-c7000fad-dbb5-814b-cd42-08c31ea8496e-64d32180 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-c7000fad-dbb5-814b-cd42-08c31ea84970-64d32180 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-c7000fad-dbb5-814b-cd42-08c31ea8497b-64d32180 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-c7000fad-dbb5-814b-cd42-08c31ea8497d-64d32180 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-cbd6b7c8-58fa-f3fb-a529-a73b3b9d5ce9-64d32180, #w-node-cbd6b7c8-58fa-f3fb-a529-a73b3b9d5cf0-64d32180 {
    grid-column: 1 / 5;
  }

  #w-node-cbd6b7c8-58fa-f3fb-a529-a73b3b9d5cfc-64d32180, #w-node-cbd6b7c8-58fa-f3fb-a529-a73b3b9d5d01-64d32180 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-cbd6b7c8-58fa-f3fb-a529-a73b3b9d5d03-64d32180 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-cbd6b7c8-58fa-f3fb-a529-a73b3b9d5d0f-64d32180 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-cbd6b7c8-58fa-f3fb-a529-a73b3b9d5d11-64d32180 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-cbd6b7c8-58fa-f3fb-a529-a73b3b9d5d1c-64d32180 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-cbd6b7c8-58fa-f3fb-a529-a73b3b9d5d1e-64d32180 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-cbd6b7c8-58fa-f3fb-a529-a73b3b9d5d29-64d32180 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-cbd6b7c8-58fa-f3fb-a529-a73b3b9d5d2b-64d32180 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_85c296a9-87d2-f0e4-158b-a7fae786fa42-e786fa41 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_85c296a9-87d2-f0e4-158b-a7fae786fa44-e786fa41 {
    grid-area: 2 / 1 / 3 / 5;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_6eb722a1-5756-abde-22fb-c5b6b314f22c-1dc7983f, #w-node-_7425cc5c-c4c2-37ee-1182-97eea7a169eb-a7a169e8, #w-node-_7425cc5c-c4c2-37ee-1182-97eea7a16a1f-a7a169e8 {
    grid-column-end: 5;
  }

  #w-node-d0eb390a-2d43-5fb0-b1cc-a245d22d5af8-1dc798a3 {
    grid-column-end: 4;
  }

  #w-node-d0eb390a-2d43-5fb0-b1cc-a245d22d5afb-1dc798a3 {
    grid-row: 4 / 5;
    grid-column-start: 1;
  }
}


