@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: Thunder;
  src: url('../fonts/Thunder-SemiBoldLC.woff2') format("woff2"), url('../fonts/Thunder-SemiBoldLC.woff') format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Redhatdisplay Variablefont Wght;
  src: url('../fonts/RedHatDisplay-VariableFont_wght.ttf') format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Univers;
  src: url('../fonts/UniversRegular.ttf') format("truetype"), url('../fonts/UniversCnRg.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Univers;
  src: url('../fonts/UniversCnBold.ttf') format("truetype"), url('../fonts/UniversBold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Univers;
  src: url('../fonts/UniversLight.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark: #192a27;
  --white: #f5f5eb;
  --extra-dark: #111827;
  --primary: #01bb4d;
  --cornsilk: #f5f5eb;
  --medium-dark: #19312d;
  --primary-dark: #ade784;
}

.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-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

body {
  background-color: var(--dark);
  color: var(--white);
  font-family: Inter Display, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
}

h1 {
  color: var(--extra-dark);
  text-align: left;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: -3.6vw;
  font-family: Thunder, sans-serif;
  font-size: 20vw;
  font-weight: 600;
  line-height: 91%;
  display: block;
}

h2 {
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 110%;
}

h3 {
  color: var(--white);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 400;
  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: 500;
  line-height: 130%;
}

p {
  margin-top: 4px;
  margin-bottom: 0;
  line-height: 150%;
}

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

a:hover {
  opacity: .6;
}

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

img {
  object-fit: cover;
  width: 100%;
  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;
}

.nav-container {
  grid-column-gap: 1.5rem;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr);
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-top: 0;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: flex;
  position: relative;
}

.section {
  grid-row-gap: 1rem;
  background-color: #0000;
  flex-direction: column;
  min-height: 32px;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  position: relative;
}

.section.home-hero-section {
  color: var(--white);
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100vh;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
}

.section.last-section {
  z-index: 1;
}

.section.intro-section {
  margin-bottom: 10rem;
  padding-top: 0;
  padding-bottom: 0;
}

.section.video-section {
  margin-bottom: 5rem;
  padding-top: 0;
}

.section.home-services-section {
  margin-bottom: 20rem;
}

.section.cases-section {
  grid-row-gap: 0rem;
  margin-bottom: 5rem;
}

.section.client-testimonials-section {
  margin-bottom: 15rem;
}

.section.journal-hero-section {
  grid-row-gap: 10rem;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
}

.section.journal-posts-section {
  margin-bottom: 15rem;
}

.section.contact-hero-section {
  grid-row-gap: 10rem;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 1rem;
  display: flex;
}

.section.services-section {
  margin-bottom: 5rem;
}

.section.contact-intro-section {
  margin-bottom: 15rem;
  padding-top: 0;
  padding-bottom: 0;
}

.section.work-section, .section.team-member-info-section {
  margin-bottom: 15rem;
}

.section.case-info-section {
  margin-bottom: 10rem;
}

.section.case-images-section {
  margin-bottom: 15rem;
}

.section.blogpost-hero-section {
  grid-row-gap: 10rem;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 5rem;
  padding-top: 2.5rem;
  padding-bottom: 0;
  display: flex;
}

.section.blogpost-content-section {
  margin-top: 10rem;
  margin-bottom: 15rem;
}

.section.about-hero-section {
  grid-row-gap: 10rem;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 10rem;
  display: flex;
}

.section.about-image-section {
  margin-bottom: 5rem;
}

.section.about-intro-section {
  margin-bottom: 15rem;
}

.section.about-intro-section.ai-battle-royale {
  margin-bottom: 0;
}

.section.team-section {
  margin-bottom: 5rem;
}

.section.numbers-section {
  margin-bottom: 15rem;
}

.section.numbers-section.ai-battle-royale {
  margin-bottom: 2rem;
}

.section.stylegudie-section {
  padding-top: 2rem;
}

.section.hide {
  display: none;
}

.section.home-hero-section {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: auto;
  min-height: 100vh;
  margin-bottom: 250px;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
}

.container {
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  max-width: 1600px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
  display: flex;
  position: relative;
}

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

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

.container.footer-container {
  max-width: none;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.container.no-max-width {
  background-color: #3330;
  max-width: none;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

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

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

.divider {
  background-color: var(--extra-dark);
  width: 100%;
  height: 1px;
  position: relative;
}

.divider.styleguide-bottom-divider {
  margin-top: 80px;
}

.divider.hero-divider {
  background-color: var(--extra-dark);
  height: 1px;
  margin-top: 3rem;
}

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

.text-xl-fluid {
  color: var(--extra-dark);
  letter-spacing: -.25px;
  margin-left: 0;
  font-family: Inter, sans-serif;
  font-size: 2vw;
  font-weight: 300;
  line-height: 120%;
}

.text-xl-fluid.nav-text {
  color: var(--extra-dark);
  letter-spacing: -.05vw;
  -webkit-text-stroke-color: var(--extra-dark);
  font-family: Inter, sans-serif;
  font-weight: 300;
  line-height: 115%;
}

.text-xl-fluid.nav-text.text-primary, .text-xl-fluid.text-primary {
  color: var(--primary);
}

.footer {
  width: 100%;
  max-width: 100%;
  margin-top: 10rem;
  padding: 0 0 2.5rem;
  position: relative;
}

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

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

.rich-text-block h2 {
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: Thunder, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 110%;
}

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

.rich-text-block p {
  margin-bottom: 3rem;
  font-size: 1rem;
}

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

.rich-text-block blockquote {
  border-left-color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 3rem;
  font-size: 1.125rem;
  line-height: 130%;
}

.rich-text-block h1 {
  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: uppercase;
  margin-top: 1rem;
  margin-bottom: .75rem;
  font-family: Thunder, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.rich-text-block h6 {
  letter-spacing: .05rem;
  text-transform: uppercase;
  margin-top: 1rem;
  margin-bottom: .75rem;
  font-family: Thunder, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.rich-text-block figcaption {
  color: #898989;
  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 {
  color: var(--dark);
  background-color: #0000;
  border: 0 solid #000;
  border-bottom: 1px solid #192a2780;
  border-radius: 0;
  margin-bottom: 3rem;
  padding-top: 12px;
  padding-bottom: 32px;
  padding-left: 0;
  font-size: 1rem;
  line-height: 150%;
}

.text-field:active, .text-field:focus {
  border-bottom-color: var(--dark);
  color: var(--dark);
  font-size: 1rem;
  line-height: 150%;
}

.text-field::placeholder {
  color: #192a2799;
  text-transform: none;
  font-family: Inter Display, sans-serif;
  font-size: 1rem;
  line-height: 150%;
}

.text-field.white {
  color: var(--white);
  border-bottom-color: #edece821;
}

.text-field.white:active, .text-field.white:focus {
  border-bottom-color: var(--white);
  color: var(--white);
}

.text-field.white:focus-visible, .text-field.white[data-wf-focus-visible] {
  color: var(--white);
}

.text-field.white::placeholder {
  color: #edece84d;
}

.submit-button {
  color: var(--dark);
  text-transform: uppercase;
  background-color: #0000;
  border: 0 solid #000;
  margin-top: 2rem;
  padding: 0;
  font-family: Thunder, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 94%;
  transition: all .5s cubic-bezier(.645, .045, .355, 1);
}

.submit-button:hover {
  color: #192a27cc;
  border-bottom-width: 0;
  border-bottom-color: #898989;
  transform: translate(0, -.5rem);
}

.submit-button.light {
  color: var(--primary);
  text-transform: none;
  font-family: Univers, sans-serif;
  font-weight: 400;
  line-height: 125%;
}

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

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

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

.utility-form-text {
  margin-bottom: 0;
}

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

.light-grey-text {
  color: #edece880;
}

.light-grey-text.text-small {
  color: var(--dark);
}

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

.swatch.medium-dark {
  background-color: var(--medium-dark);
  border-color: #edece81a;
}

.swatch.extra-dark {
  background-color: var(--extra-dark);
  border-color: #edece81a;
}

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

.swatch.dark {
  background-color: var(--dark);
  border-color: #edece81a;
}

.swatch.primary {
  background-color: var(--primary);
  border-width: 0;
  border-color: #edece81a;
}

.swatch.primary-dark {
  background-color: var(--primary-dark);
  border-width: 0;
  border-color: #edece81a;
}

.styleguide-heading {
  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;
}

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

.text-xl {
  color: var(--extra-dark);
  font-family: Inter, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 115%;
}

.navbar {
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-top: 2.5rem;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: absolute;
}

._12-column-grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 5rem;
  color: var(--extra-dark);
  grid-template-rows: auto;
  grid-template-columns: minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-content: end stretch;
  place-items: start stretch;
  width: 100%;
  display: grid;
  position: relative;
}

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

._12-column-grid.subpage-hero-grid {
  grid-row-gap: 10rem;
  margin-bottom: 3rem;
}

._12-column-grid.row-gap-7-5 {
  grid-row-gap: 7.5rem;
}

._12-column-grid.hero-grid {
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr);
  align-content: end;
  align-items: start;
  display: grid;
}

._12-column-grid.featured-case-content-grid {
  grid-column-gap: 2.5rem;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  place-items: start;
}

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

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

._12-column-grid.services-hero-grid {
  grid-row-gap: 10rem;
  margin-bottom: 3rem;
}

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

._12-column-grid.hero {
  margin-top: 30px;
}

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

.body {
  clear: none;
  background-color: var(--cornsilk);
}

.footer-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr);
  grid-auto-columns: 1fr;
  place-items: start stretch;
  width: 100%;
  display: grid;
}

.parallax-image {
  position: absolute;
  inset: 0%;
}

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

.text-small.max-width-32ch {
  color: var(--extra-dark);
  max-width: 32ch;
  font-family: Inter, sans-serif;
  font-weight: 300;
}

.text-2xl {
  color: var(--extra-dark);
  letter-spacing: -.05vw;
  padding-top: 10px;
  font-family: Inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 125%;
}

.text-medium {
  color: var(--medium-dark);
  font-family: Inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 125%;
}

.text-medium.case-subtitle {
  color: var(--white);
  max-width: none;
  margin-top: 0;
  font-family: Inter, sans-serif;
  font-size: 2vw;
  font-weight: 300;
}

.nav-link-block {
  color: var(--white);
  padding: 1rem 0 0;
  font-size: 1.375rem;
  position: relative;
  overflow: hidden;
}

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

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

.nav-link-text {
  letter-spacing: -.2rem;
  text-transform: none;
  font-family: Univers, sans-serif;
  font-weight: 300;
}

.second-nav-link-text {
  position: absolute;
}

.nav-link-text-container {
  margin-bottom: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  position: relative;
  overflow: hidden;
}

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

.form-block {
  width: 100%;
}

.parallax-image-container {
  border-radius: .25rem;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}

.parallax-image-container.ai-battle-royale.mobile {
  display: none;
}

.dark-nav-link-block {
  padding: 1rem 0 0;
  font-size: 1.25rem;
  position: relative;
  overflow: hidden;
}

.dark-nav-link-block:hover {
  color: #15191f;
}

.dark-nav-link-block.w--current {
  color: #0009;
}

.success-message {
  color: var(--dark);
  background-color: #192a271a;
}

.error-message {
  color: var(--white);
  background-color: #aa3939;
}

.brand {
  z-index: 2;
  width: 160px;
  margin-left: auto;
  margin-right: auto;
}

.brand.w--current {
  margin-right: auto;
  position: relative;
}

.menu-button-wrapper {
  display: none;
}

.nav-menu {
  background-color: var(--extra-dark);
  background-image: linear-gradient(#2b2b2b80, #2b2b2b80);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100vw;
  height: 100vh;
  margin-left: auto;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

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

.featured-case-wrapper {
  grid-row-gap: 1rem;
  color: var(--white);
  cursor: pointer;
  border-radius: .25rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48% 0 1.5rem;
  transition-property: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.featured-case-wrapper:hover {
  opacity: 1;
}

.small-list-container {
  border-top: 0 solid #333;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.small-list-container.hero-list-container {
  box-sizing: border-box;
  aspect-ratio: auto;
  border-top-width: 0;
  border-top-color: #2d2d30;
  flex-flow: column;
  align-items: stretch;
  margin-top: 0;
  padding-right: .1rem;
  display: flex;
  position: relative;
}

.small-list-item-container {
  grid-column-gap: 1px;
  grid-row-gap: 1rem;
  letter-spacing: .025rem;
  text-transform: uppercase;
  border: 0 solid #929295;
  border-bottom-color: #2d2d30;
  flex-flow: column wrap;
  width: 100%;
  padding-top: 1rem;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1;
  transition-property: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.small-list-item-container:hover {
  opacity: 1;
  color: var(--extra-dark);
}

.preloader {
  z-index: 99999;
  grid-column-gap: .35rem;
  border: 1px solid var(--extra-dark);
  background-color: var(--extra-dark);
  background-image: linear-gradient(#2b2b2b80, #2b2b2b80);
  justify-content: center;
  align-items: center;
  width: 100dvw;
  height: 100dvh;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: visible;
}

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

.team-grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-member-container {
  display: block;
}

.team-member-image-wrapper {
  background-color: var(--primary);
  border-radius: .25rem;
  width: 100%;
  min-height: 200px;
  margin-bottom: 2rem;
  padding-bottom: 0;
  padding-left: 20%;
  padding-right: 20%;
  position: relative;
  overflow: hidden;
}

.team-member-image-wrapper.light {
  background-color: #dbdad7;
  overflow: hidden;
}

.link {
  color: var(--primary);
  cursor: pointer;
  display: block;
}

.contact-info-container {
  align-self: flex-start;
  margin-top: 0;
}

.team-member-image {
  margin-bottom: -2px;
  position: static;
  inset: 0%;
}

.numbers-container {
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  text-align: left;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 27ch;
  display: flex;
}

.numbers-text-container {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

._2-column-grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._2-column-grid.post-title-grid {
  grid-template-columns: .75fr 1fr;
}

._2-column-grid.case-title-grid {
  grid-template-columns: .5fr 1fr;
}

.accordion-item-container {
  grid-row-gap: .5rem;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-top: 2.5rem;
  display: flex;
}

.awards-item-container {
  color: var(--extra-dark);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.proejct-images-list {
  grid-row-gap: 2.5rem;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.team-member-hero-info-container {
  grid-column-gap: 3rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.menu-button {
  z-index: 999;
  grid-row-gap: .375rem;
  letter-spacing: -3px;
  text-transform: uppercase;
  cursor: pointer;
  mix-blend-mode: normal;
  flex-direction: column;
  justify-content: center;
  width: 116px;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Thunder, sans-serif;
  font-size: 2.5rem;
  line-height: 179%;
  display: flex;
  position: fixed;
  top: 2.5rem;
  left: 2.4rem;
  right: auto;
  overflow: hidden;
}

.menu-button.r {
  left: auto;
  right: 2.4rem;
}

.link-list-item {
  grid-row-gap: 1rem;
  color: #efefef99;
  cursor: pointer;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: .1rem;
  padding-bottom: .1rem;
  padding-right: 0;
  font-weight: 600;
  display: flex;
  position: relative;
  overflow: hidden;
}

.link-list-item:hover {
  color: var(--extra-dark);
}

.link-list-item.btn {
  box-sizing: border-box;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  object-fit: fill;
  flex-flow: row;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  width: auto;
  margin-top: 19px;
  display: flex;
  overflow: visible;
}

.link-list-item.btn.hero {
  justify-content: center;
  align-items: center;
}

.arrow {
  border-radius: 50vw;
  width: 48px;
}

.arrow.hover-arrow {
  -webkit-text-stroke-color: var(--extra-dark);
  vertical-align: baseline;
  -webkit-text-stroke-color: #333;
  height: 100%;
  position: absolute;
  top: -1px;
  left: 0;
}

.arrow-icon-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #efefef;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 13px;
  margin-top: 0;
  padding-top: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-block {
  color: var(--dark);
  flex: 0 auto;
}

.arrow-button {
  border: 1px solid var(--extra-dark);
  cursor: pointer;
  border-radius: 50vw;
  flex: none;
  padding: .25rem .7rem;
  position: relative;
  overflow: hidden;
}

.arrow-button.nav-link-arrow-button._2 {
  -webkit-text-stroke-color: #ebe9e233;
  border-color: #ebe9e233;
}

.arrow-button.dark {
  border-color: #192a2726;
}

.arrow-button.hero {
  border-width: 1px;
  border-color: var(--primary);
  background-color: var(--primary);
}

.linkblock-background-color {
  color: #1c1c1e;
  background-color: #0000;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0% -20%;
}

.menu-container {
  grid-column-gap: 4rem;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  width: 70%;
  margin-bottom: 2.5rem;
  margin-right: 2.5rem;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: grid;
}

.nav-link {
  grid-row-gap: .25rem;
  color: var(--white);
  text-transform: uppercase;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 0;
  font-family: Thunder, sans-serif;
  font-size: 4.25rem;
  display: flex;
  position: relative;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link-container {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-weight: 600;
  line-height: 94%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.main-wrapper {
  background-color: #0000;
  overflow: hidden;
}

.navlink-divider-hover {
  background-color: var(--primary);
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  bottom: 0;
}

.navlink-divider {
  background-color: #ebe9e221;
  width: 100%;
  height: 1px;
  position: relative;
}

.hero-subtitle {
  color: var(--extra-dark);
  text-transform: none;
  max-width: 292px;
  margin-bottom: 0;
  font-family: Inter Display, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 130%;
}

.logo-image-wrapper {
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

.star {
  object-fit: contain;
  flex: 0 auto;
  align-self: flex-end;
  width: 65%;
  height: 100%;
  margin-left: 1rem;
}

.star.gcc {
  width: 100%;
  min-width: 100%;
  height: auto;
}

.star.gcc.tag {
  padding-top: 20px;
}

.inner-section {
  background-color: var(--medium-dark);
  border-radius: .25rem;
  min-height: 200px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 2rem;
  padding-bottom: 7.5rem;
}

.inner-section.white {
  background-color: var(--white);
  color: var(--dark);
  padding-top: 2rem;
}

.inner-section.white.ai-battle-royale {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

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

.button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--white);
  letter-spacing: .025rem;
  text-transform: uppercase;
  cursor: pointer;
  flex-wrap: wrap;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  padding-right: 0;
  font-size: .75rem;
  font-weight: 600;
  display: flex;
  position: static;
  overflow: hidden;
}

.button:hover {
  opacity: 1;
}

.footer-text-container {
  grid-row-gap: 3rem;
  flex-direction: column;
  display: block;
}

.text-link {
  color: #eae7dd99;
  letter-spacing: .025rem;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 600;
  transition-property: all;
}

.text-link:hover {
  opacity: 1;
  color: var(--white);
}

.arrow-top-button-wrapper {
  transition: all .5s cubic-bezier(.645, .045, .355, 1);
  position: relative;
  overflow: visible;
}

.arrow-top-button-wrapper:hover {
  opacity: 1;
  transform: translate(0, -2rem);
}

.hero-video-container {
  background-color: var(--extra-dark);
  cursor: auto;
  border-radius: .25rem;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 52% 1.5rem 1.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-video {
  opacity: 1;
  object-fit: cover;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: auto 0% 0%;
}

.section-heading-container {
  grid-row-gap: 1rem;
  flex-direction: column;
  width: 100%;
  margin-bottom: 5rem;
  display: flex;
}

.section-heading-container.testimoniala-heading-container {
  margin-bottom: 10rem;
}

.section-heading-container.margin-bottom-3 {
  margin-bottom: 3rem;
}

.section-heading-container.form-heading-container {
  margin-bottom: 15rem;
}

.section-heading-container.contact-heading-container, .section-heading-container.services-heading-section {
  margin-bottom: 10rem;
}

.section-heading-container.services-heading-section.ai-battle-royale {
  margin-bottom: 2rem;
}

.case-image {
  height: 100%;
  position: absolute;
  inset: 0%;
}

.case-image.kscouter {
  object-fit: cover;
}

.case-image.mftl-2025 {
  object-position: 50% 50%;
}

.case-image-overlay {
  background-image: linear-gradient(#192a2700, #192a2700 49%, #000);
  position: absolute;
  inset: 0%;
}

.view-featured-case-button {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--dark);
  text-transform: uppercase;
  cursor: pointer;
  background-color: #bebebe57;
  border-radius: 50vw;
  justify-content: center;
  align-items: center;
  width: 10rem;
  min-width: 0;
  height: 10rem;
  font-family: Thunder, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  display: flex;
  position: relative;
}

.featured-case-button-wrapper {
  justify-content: center;
  align-self: auto;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.view-case-text-wrapper {
  margin-top: .5rem;
  font-weight: 600;
  line-height: 100%;
  position: relative;
  overflow: hidden;
}

.featured-case-button-text {
  color: var(--white);
  letter-spacing: -1px;
  -webkit-text-stroke-color: var(--extra-dark);
  font-family: Univers, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.featured-case-button-text.hover {
  color: var(--white);
  letter-spacing: -1px;
  font-family: Univers, sans-serif;
  position: absolute;
  top: 0;
}

.margin-bottom-1-5 {
  margin-bottom: 1.5rem;
}

.year {
  color: var(--white);
}

.play-button-wrapper {
  grid-column-gap: .5rem;
  color: var(--white);
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  font-family: Thunder, sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 95%;
  display: flex;
  position: static;
  inset: 0%;
  overflow: visible;
}

.play-button-text-wrapper {
  position: relative;
  overflow: hidden;
}

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

.lightbox-link:hover {
  opacity: 1;
}

.play-button-text-hover {
  position: absolute;
  top: 0;
}

.menu-button-hover-text {
  color: var(--white);
  letter-spacing: -1px;
  font-size: 1.9rem;
  position: absolute;
  top: 0;
}

.menu-button-hover-text.dark {
  color: var(--extra-dark);
  letter-spacing: -1px;
  font-size: 1.9rem;
  font-weight: 400;
}

.open-menu-button {
  color: var(--extra-dark);
  font-family: Univers, sans-serif;
  font-size: 2.3rem;
  display: block;
  position: relative;
  overflow: hidden;
}

.close-menu-button {
  color: var(--white);
  font-family: Univers, sans-serif;
  font-size: 2.3rem;
  display: none;
  position: absolute;
  top: 0;
  overflow: hidden;
}

.menu-button-container {
  padding-top: 0;
  line-height: 104%;
  position: relative;
  overflow: hidden;
}

.nav-link-hover-text {
  letter-spacing: -.2rem;
  text-transform: none;
  font-family: Univers, sans-serif;
  font-weight: 300;
  position: absolute;
  top: 0;
}

.footer-text-wrapper {
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 6rem;
  padding-top: 0;
  font-family: Thunder, sans-serif;
  font-size: 24.1dvw;
  font-weight: 600;
  line-height: 55%;
  display: none;
  position: relative;
  overflow: visible;
}

.arrow-top-button {
  margin-top: -212px;
  margin-left: -71px;
  transform: rotate(-90deg);
}

.flex-vertical {
  flex-direction: column;
  display: flex;
}

.flex-vertical.row-gap-5 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.flex-vertical.row-gap-3 {
  display: block;
}

.flex-vertical.row-gap-5 {
  grid-row-gap: 5rem;
}

.flex-vertical.row-gap-5.hero {
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.service-home-container {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.services-list-home-container {
  grid-row-gap: 5rem;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.service-home-title {
  color: var(--extra-dark);
  letter-spacing: -.4vw;
  margin-top: 1rem;
  margin-bottom: .5rem;
  padding-top: 2.2rem;
  font-family: Univers, sans-serif;
  font-size: 8.5vw;
  font-weight: 300;
  line-height: 100%;
  display: block;
}

.service-home-title-wrapper {
  text-transform: capitalize;
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-size: 5.9rem;
  font-weight: 300;
  transition-property: none;
  position: relative;
  overflow: hidden;
}

.service-home-title-wrapper:hover {
  opacity: 1;
}

.service-home-title-hover {
  color: var(--primary);
  margin-top: 1rem;
  padding-top: 2.2rem;
  font-size: 7.5vw;
  line-height: 0%;
  display: block;
  position: absolute;
  top: 0;
}

.case-home-title {
  color: var(--white);
  text-transform: uppercase;
  font-family: Thunder, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 100%;
}

.case-home-title.m {
  letter-spacing: -.1rem;
  text-transform: capitalize;
  font-family: Univers, sans-serif;
  font-size: 4vw;
  font-weight: 300;
}

.testimonial-slider-wrapper {
  width: 100%;
  position: relative;
}

.testimonial-slider {
  background-color: #0000;
  width: 100%;
  height: 100%;
  display: flex;
}

.slide-nav {
  display: none;
}

.slider-mask {
  max-width: 60%;
  overflow: visible;
}

.slide {
  background-color: var(--extra-dark);
  border-radius: .25rem;
  width: 100%;
  height: 100%;
  margin-right: 1rem;
  padding: 2rem 13rem 2rem 2rem;
}

.slide._1, .slide._2, .slide._3 {
  background-color: var(--extra-dark);
  background-image: none;
}

.testimonail-client-info {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  margin-bottom: 15rem;
  display: flex;
}

.avatar {
  border-radius: 100%;
  width: 3.5rem;
  height: 3.5rem;
}

.text-large-2 {
  letter-spacing: -.01rem;
  font-family: Univers, sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 130%;
}

.text-neutral-700 {
  color: #666;
}

.text-neutral-700.text-sm {
  color: #f5f5eb99;
  letter-spacing: 0;
  margin-top: 0;
  font-family: Univers, sans-serif;
  font-weight: 300;
}

.text-neutral-700.text-sm._2 {
  color: #f5f5ebcc;
}

.quote-mark {
  width: auto;
  max-width: 100%;
  margin-bottom: 3rem;
}

.quote {
  letter-spacing: -.1rem;
  text-transform: none;
  font-family: Univers, sans-serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 100%;
}

.left-arrow {
  border: 1px solid var(--extra-dark);
  -webkit-text-stroke-color: var(--extra-dark);
  cursor: pointer;
  border-radius: 50vw;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-left: 20px;
  font-size: 1rem;
  line-height: 1;
  transition: all .2s;
  display: flex;
  inset: -88px auto auto 50%;
}

.left-arrow:hover {
  border-color: var(--primary);
}

.slider-nav-icon {
  color: var(--extra-dark);
}

.right-arrow {
  border: 1px solid var(--extra-dark);
  cursor: pointer;
  border-radius: 50vw;
  width: 3.5rem;
  height: 3.5rem;
  margin-left: 92px;
  font-size: 1rem;
  line-height: 1;
  transition: all .2s;
  position: absolute;
  inset: -88px auto auto 50%;
}

.right-arrow:hover {
  border-color: var(--primary);
}

.dark-divider {
  background-color: #192a2721;
  width: 100%;
  height: 1px;
  position: relative;
}

.dark-divider.margin-bottom-1 {
  margin-bottom: 1rem;
}

.text-dark {
  color: var(--dark);
}

.text-dark.text-3xl {
  letter-spacing: -2px;
  text-transform: none;
  font-family: Univers, sans-serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 115%;
}

.post-image {
  object-position: 50% 50%;
  display: inline-block;
  position: absolute;
  inset: 0%;
}

.post-image-wrapper {
  border-radius: .25rem;
  flex: 0 auto;
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}

.jornal-post-container {
  grid-row-gap: 2rem;
  cursor: pointer;
  flex-direction: column;
  width: 100%;
  transition-property: none;
  display: flex;
}

.jornal-post-container:hover {
  opacity: 1;
}

.jornal-post-container.hidden {
  display: none;
}

.flex-horizontal {
  grid-column-gap: 2rem;
  color: var(--extra-dark);
  align-items: flex-start;
  padding-top: 8px;
  display: flex;
}

.dark-date {
  color: #192a2780;
}

.dark-button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--dark);
  letter-spacing: .025rem;
  text-transform: uppercase;
  cursor: pointer;
  flex-wrap: wrap;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  padding-right: 0;
  font-size: .75rem;
  font-weight: 600;
  display: flex;
  position: static;
  overflow: hidden;
}

.dark-button:hover {
  opacity: 1;
}

.post-title-container.dark {
  color: var(--dark);
}

.menu-button-text {
  color: var(--white);
  letter-spacing: -1px;
  font-size: 1.9rem;
}

.menu-button-text.dark {
  color: var(--extra-dark);
  letter-spacing: -1px;
  font-size: 1.9rem;
  font-weight: 400;
}

.date {
  color: #edece880;
}

.h1-wrapper {
  margin-bottom: 0;
  overflow: visible;
}

.text-large {
  color: var(--extra-dark);
  letter-spacing: -.05vw;
  -webkit-text-stroke-color: var(--extra-dark);
  text-transform: none;
  font-family: Inter, sans-serif;
  font-size: 2vw;
  font-weight: 300;
  line-height: 115%;
}

.button-text {
  color: var(--extra-dark);
  text-align: left;
  letter-spacing: 0;
  font-family: Univers, sans-serif;
  font-weight: 400;
}

.label {
  color: #edece899;
  letter-spacing: .025rem;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 600;
  line-height: 130%;
}

.label.maring-bottom-5 {
  color: var(--extra-dark);
  margin-bottom: .5rem;
}

.team-member-name {
  color: var(--extra-dark);
  letter-spacing: -1px;
  text-transform: none;
  font-family: Univers, sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 100%;
}

.team-member-info-container {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 1rem;
  display: flex;
}

.div-block-4 {
  align-self: flex-start;
}

.socials-link-container {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.social-links-list-home-container {
  grid-row-gap: 4rem;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.socials-home-title {
  text-transform: uppercase;
  margin-top: 0;
  padding-top: 2.2rem;
  font-family: Thunder, sans-serif;
  font-size: 10vw;
  font-weight: 600;
  line-height: 60%;
}

.socials-home-title-hover {
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 0;
  padding-top: 2.2rem;
  font-family: Thunder, sans-serif;
  font-size: 10vw;
  font-weight: 600;
  line-height: 60%;
  position: absolute;
  top: 0;
}

.case-thumbnail-wrapper {
  grid-row-gap: 1rem;
  color: var(--white);
  cursor: pointer;
  border-radius: .25rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56.25% 0 1.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.case-container {
  grid-row-gap: 2rem;
  flex-direction: column;
  width: 100%;
  transition-property: none;
  display: flex;
}

.case-container:hover {
  opacity: 1;
}

.case-subtitle {
  margin-top: -.25rem;
}

.case-title-wrapper.dark {
  color: var(--dark);
}

.cta-team-member-image-wrapper {
  background-color: var(--primary-dark);
  border-radius: .25rem;
  width: 100%;
  min-height: 200px;
  margin-bottom: 2rem;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.cta-team-member-image {
  margin-bottom: -2px;
  position: relative;
  inset: 0%;
}

.cta-team-member-info-container {
  grid-row-gap: 2rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 1rem;
  display: flex;
}

.dark-link {
  color: var(--dark);
  cursor: pointer;
  display: block;
}

.max-width-26ch {
  max-width: 26ch;
}

.text-3xl {
  letter-spacing: -.1rem;
  text-transform: none;
  font-family: Univers, sans-serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 150%;
}

.text-3xl.principle-heading {
  color: var(--primary);
  letter-spacing: -2px;
  text-transform: none;
  padding-top: .75rem;
  font-family: Univers, sans-serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 100%;
}

.cta-team-grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.case-button-wrapper {
  justify-content: center;
  align-self: auto;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.featured-cases-container {
  grid-row-gap: 2.5rem;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.view-case-button {
  background-color: var(--primary);
  color: var(--dark);
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 50vw;
  justify-content: center;
  align-items: center;
  width: 8rem;
  min-width: 0;
  height: 8rem;
  font-family: Thunder, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  display: flex;
  position: relative;
}

.intro-heading {
  color: var(--extra-dark);
  text-transform: uppercase;
  padding-top: 2.5vw;
  font-family: Thunder, sans-serif;
  font-size: 15vw;
  font-weight: 600;
  line-height: 60%;
}

.intro-heading._2 {
  letter-spacing: -.6vw;
  text-transform: capitalize;
  margin-left: -9px;
  padding-top: 0;
  font-family: Univers, sans-serif;
  font-size: 8.5vw;
  font-weight: 300;
  line-height: 100%;
}

.intro-heading._2.hero {
  width: 100%;
  max-width: none;
  margin-left: 0;
  font-size: 8.5vw;
}

.h2-heading-wrapper {
  overflow: visible;
}

.hero-video-revealer {
  background-color: var(--extra-dark);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-video-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.looping-text-wrapper {
  flex-direction: row;
  align-items: center;
  width: 100%;
  margin-bottom: 5rem;
  display: flex;
  overflow: hidden;
}

.looping-content-inner-container {
  justify-content: flex-start;
  align-items: center;
  display: block;
}

.looping-heading {
  box-sizing: border-box;
  aspect-ratio: auto;
  color: #111827;
  letter-spacing: -.95vw;
  text-transform: none;
  white-space: nowrap;
  object-fit: fill;
  font-family: Univers, sans-serif;
  font-size: 22vw;
  font-weight: 300;
  line-height: 100%;
  display: inline;
}

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

.looping-heading._3 {
  margin-right: 140px;
  line-height: 110%;
}

.team-member-large-name {
  margin-bottom: 0;
  padding-top: 20px;
  font-size: 13vw;
  line-height: 70%;
}

.light-cta-team-member-image-wrapper {
  background-color: #ceccc7;
  border-radius: .25rem;
  width: 100%;
  min-height: 200px;
  margin-bottom: 2rem;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.margin-top-1 {
  margin-top: 1rem;
}

.large-list-item-container {
  grid-column-gap: 1px;
  grid-row-gap: 1rem;
  text-transform: none;
  border: 0 solid #929295;
  border-bottom-color: #2d2d30;
  flex-flow: column wrap;
  width: 100%;
  padding-top: 2rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 130%;
  transition-property: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.large-list-item-container:hover {
  opacity: 1;
}

.large-list-item-container.no-padding-top {
  padding-top: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 130%;
}

.large-list-item-container.global-ai-challenge {
  padding-top: 1rem;
}

.project-description {
  max-width: 40ch;
  margin-bottom: 0;
}

.project-description-wrapper {
  grid-row-gap: 3rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.blog-post-title {
  margin-bottom: 0;
  padding-top: 1rem;
  font-size: 8rem;
  line-height: 81%;
}

.h1-blog-post-title-wrapper {
  max-width: 90ch;
  margin-bottom: 0;
  overflow: hidden;
}

.blog-post-info-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.blogpost-label {
  color: #eae7dd99;
}

.approach-content-container {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 280px;
  display: flex;
}

.services-list-container {
  border: 0 solid #edece821;
  border-top-width: 1px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.services-list-container.dark {
  border-top-color: #192a2721;
}

.services-description {
  max-width: 31ch;
}

.looping-content-inner-container-about {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.about-looping-text-wrapper {
  flex-direction: row;
  align-items: center;
  width: 100%;
  margin-bottom: 2.5rem;
  display: flex;
  overflow: hidden;
}

.large-number {
  color: var(--primary);
  align-self: flex-start;
  font-family: Univers, sans-serif;
  font-size: 7rem;
  font-weight: 300;
  line-height: 1;
}

.xl-list-itemcontainer {
  grid-column-gap: 1px;
  grid-row-gap: 2rem;
  text-transform: none;
  border: 0 solid #929295;
  border-bottom-color: #2d2d30;
  flex-flow: column wrap;
  width: 100%;
  padding-top: 2rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 130%;
  transition-property: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.xl-list-itemcontainer:hover {
  opacity: 1;
}

.principles-list-container {
  border-top: 1px solid #edece821;
}

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

.hero-image-revealer {
  background-color: var(--extra-dark);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.logo-wrapper {
  width: 7%;
}

.link-list-text {
  color: var(--extra-dark);
  letter-spacing: 0;
  font-family: Univers, sans-serif;
  font-size: .75rem;
  font-weight: 400;
}

.link-list-text.hero {
  line-height: 125%;
}

.dark-text {
  color: var(--dark);
}

.text-field-white {
  color: var(--white);
  background-color: #0000;
  border: 0 solid #000;
  border-bottom: 1px solid #edece833;
  border-radius: 0;
  margin-bottom: 3rem;
  padding-top: 12px;
  padding-bottom: 32px;
  padding-left: 0;
  font-size: 1rem;
  line-height: 150%;
}

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

.text-field-white::placeholder {
  color: #edece866;
  text-transform: none;
  font-family: Inter Display, sans-serif;
  font-size: 1rem;
  line-height: 150%;
}

.body-2 {
  background-color: var(--cornsilk);
}

.div-block-5 {
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
}

.text-block-2 {
  color: var(--extra-dark);
  align-self: center;
  align-items: center;
  height: 100%;
  font-family: Redhatdisplay Variablefont Wght, sans-serif;
  font-size: 11rem;
  font-weight: 700;
  display: flex;
}

.text-block-3 {
  color: var(--extra-dark);
  font-family: Redhatdisplay Variablefont Wght, sans-serif;
  font-size: 6rem;
  font-weight: 700;
}

.div-block-6 {
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 80vw;
  max-width: 900px;
  height: 50vh;
  display: flex;
}

.div-block-7 {
  height: 100%;
}

.heading {
  color: var(--extra-dark);
  font-family: Univers, sans-serif;
  font-weight: 300;
}

.text-block-4, .text-block-5, .text-block-6 {
  color: var(--extra-dark);
  font-family: Univers, sans-serif;
}

.text-block-7, .heading-2, .heading-3 {
  color: var(--extra-dark);
}

.body-3 {
  background-color: var(--cornsilk);
}

.heading-4 {
  color: var(--extra-dark);
}

.heading-4.portfolio {
  max-width: 700px;
  font-family: Univers, sans-serif;
  font-size: 12vw;
  font-weight: 300;
  line-height: 140%;
}

.body-4 {
  background-color: var(--cornsilk);
}

.heading-5 {
  font-size: 18vw;
}

.text-block-8 {
  color: var(--extra-dark);
  font-family: Inter, sans-serif;
  font-weight: 300;
  line-height: 125%;
}

.heading-6 {
  letter-spacing: -.2vw;
  text-transform: none;
  font-family: Univers, sans-serif;
  font-size: 16vw;
  font-weight: 300;
  line-height: 140%;
}

.text-block-9, .text-block-10 {
  color: var(--extra-dark);
}

.body-5 {
  background-color: var(--cornsilk);
}

.link-block {
  width: 100%;
}

.body-6, .body-7 {
  background-color: var(--cornsilk);
}

.text-block-11, .paragraph {
  color: var(--extra-dark);
}

.paragraph.ai-challenge {
  text-align: center;
}

.image {
  object-fit: cover;
}

.icon {
  color: var(--extra-dark);
}

.bold {
  font-family: Inter, sans-serif;
  font-weight: 400;
  line-height: 125%;
}

.body-8 {
  background-color: var(--cornsilk);
}

.div-block-8 {
  width: 100%;
}

.container-2 {
  flex-direction: column;
  width: 100%;
  max-width: 1600px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
  display: flex;
  position: relative;
}

.text-xl-fluid-2 {
  letter-spacing: -.25px;
  margin-left: 0;
  font-size: 2vw;
  font-weight: 400;
  line-height: 120%;
}

.text-xl-fluid-2.margin-bottom-8 {
  color: var(--extra-dark);
}

.submit-button-2 {
  color: #192a27;
  letter-spacing: -2px;
  text-transform: none;
  background-color: #0000;
  border: 0 solid #000;
  margin-top: 2rem;
  padding: 0;
  font-family: Univers, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 170%;
  transition: all .5s cubic-bezier(.645, .045, .355, 1);
}

.submit-button-2:hover {
  color: #192a27cc;
  border-bottom-width: 0;
  border-bottom-color: #898989;
  transform: translate(0, -.5rem);
}

.text-field-2 {
  color: #192a27;
  background-color: #0000;
  border: 0 solid #000;
  border-bottom: 1px solid #192a2780;
  border-radius: 0;
  margin-bottom: 3rem;
  padding-top: 12px;
  padding-bottom: 32px;
  padding-left: 0;
  font-size: 1rem;
  line-height: 150%;
}

.text-field-2:active, .text-field-2:focus {
  color: #192a27;
  border-bottom-color: #192a27;
  font-size: 1rem;
  line-height: 150%;
}

.text-field-2::placeholder {
  color: #192a2799;
  text-transform: none;
  font-family: Inter Display, sans-serif;
  font-size: 1rem;
  line-height: 150%;
}

.slider {
  background-color: #0000;
  width: 100%;
  height: 100%;
}

.icon-2 {
  color: var(--extra-dark);
  margin-bottom: 10px;
  inset: auto auto 0% 0%;
}

.icon-3 {
  color: var(--extra-dark);
  margin-bottom: 10px;
  inset: auto 0% 0% auto;
}

.grid {
  justify-content: space-between;
  width: 100%;
}

.about-story-left {
  flex-direction: column;
  align-items: flex-start;
  width: 40%;
  max-width: 500px;
  display: flex;
}

.about-story-left.blog {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.about-story-left.pc {
  width: 100%;
}

.text-block-13 {
  color: #333;
  margin-top: 20px;
  margin-bottom: 20px;
}

.button-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: #edece8;
  letter-spacing: .025rem;
  text-transform: uppercase;
  cursor: pointer;
  flex-wrap: wrap;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  padding-right: 0;
  font-size: .75rem;
  font-weight: 600;
  display: flex;
  position: static;
  overflow: hidden;
}

.button-2:hover {
  opacity: 1;
}

.arrow-button-2 {
  cursor: pointer;
  border: 2px solid #333;
  border-radius: 50vw;
  flex: none;
  padding: .25rem .5rem .25rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.image-6 {
  max-width: 600px;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.image-6.blog {
  aspect-ratio: auto;
  object-fit: cover;
  max-width: 100%;
  overflow: hidden;
}

.bold-text-17 {
  color: #333;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Univers, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 120%;
  display: block;
}

.bold-text-17.blog {
  color: #333;
  font-size: 32px;
  line-height: 120%;
}

.bold-text-17.beitrag {
  font-size: 1rem;
}

.bold-text-17.pc {
  margin-bottom: 25px;
}

.text-block-14 {
  color: #333;
}

.visual-features-subheading {
  color: #02bb4e;
  margin-bottom: 12px;
}

.wrapper-4 {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 85%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.wrapper-4.contact-hero-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  max-width: 840px;
  padding-top: 100px;
  padding-bottom: 240px;
}

.wrapper-4.contact-hero-wrapper.blog {
  align-items: center;
}

.wrapper-4.contact-hero-wrapper.blog.cookies {
  padding-bottom: 100px;
}

.wrapper-4.contact-form-wrapper {
  background-color: #fff;
  border-radius: 12px;
  flex-direction: column;
  align-items: stretch;
  max-width: 920px;
  margin-top: -145px;
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible;
}

.wrapper-4.contact-form-wrapper.pc {
  width: 100%;
  max-width: none;
  margin-top: 0;
  display: block;
}

.wrapper-4.contact-form-wrapper.pc2 {
  margin-top: 0;
  margin-bottom: 150px;
}

.wrapper-4.contact-form-wrapper.pc2._2nd {
  margin-top: -117px;
}

.wrapper-4.contact-form-wrapper.pc2.low {
  margin-bottom: 25px;
}

.wrapper-4.contact-form-wrapper.pc3 {
  margin-top: 151px;
}

.wrapper-4.about-story-up-wrapper {
  align-items: flex-start;
}

.wrapper-4.about-story-up-wrapper.pc {
  display: block;
}

.text-block-15 {
  color: #333;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Univers, sans-serif;
  font-weight: 300;
}

.text-block-15.pc {
  max-width: 660px;
}

.subheading {
  color: #02bb4e;
  text-align: center;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
}

.subheading.pc {
  color: #333;
}

.contact-hero-heading {
  text-align: left;
  margin-bottom: 16px;
}

.contact-hero-heading.blog {
  direction: ltr;
  text-align: center;
  letter-spacing: -1px;
  text-transform: none;
  width: auto;
  max-width: 100%;
  font-family: Univers, sans-serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 120%;
  position: static;
}

.contact-hero-section {
  background-color: #edece8;
}

.contact-hero-section.pc {
  background-color: var(--cornsilk);
}

.contact-hero-section.pc.off {
  display: none;
}

.about-story-section.white {
  background-color: #edece8;
}

.about-story-section.white.pc {
  background-color: var(--cornsilk);
  padding-bottom: 150px;
}

.about-story-right {
  width: 50%;
  max-width: 620px;
}

.text-block-16 {
  color: #333;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Univers, sans-serif;
  font-weight: 300;
}

.quick-stack {
  padding: 0;
}

.mftl-al-nuaimi {
  object-position: 60% 50%;
  height: 100%;
}

.mftl-jemma-panel {
  object-position: 50% 55%;
  max-height: 300px;
}

.link-block-2 {
  align-self: flex-start;
  transition-property: none;
}

.link-2, .link-3 {
  color: var(--primary);
}

.paragraph-2, .heading-7 {
  font-family: Inter, sans-serif;
  font-weight: 300;
}

.bold-text-18 {
  font-weight: 300;
  line-height: 125%;
}

.text-2xl-2 {
  color: #1e1e1f;
  letter-spacing: -.02vw;
  flex: 1;
  align-self: flex-start;
  font-family: Univers, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 115%;
}

.h2-heading-wrapper-2 {
  overflow: hidden;
}

.h2-heading-wrapper-2.hero {
  width: 50%;
  padding-top: 0;
  overflow: visible;
}

.intro-heading-2 {
  color: #1e1e1f;
  text-transform: none;
  padding-top: 2.5vw;
  font-family: Univers, sans-serif;
  font-size: 9vw;
  font-weight: 400;
  line-height: 96%;
}

.intro-heading-2._2 {
  text-transform: none;
  font-family: Univers, sans-serif;
  font-size: 8.5vw;
  font-weight: 400;
  line-height: 100%;
}

.hero-subtitle-2 {
  color: #1e1e1f;
  text-align: right;
  text-transform: none;
  max-width: none;
  margin-bottom: 7px;
  font-family: Inter Display, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 130%;
}

.link-list-text-2 {
  color: #1e1e1f;
}

._12-column-grid-2 {
  grid-column-gap: 2.5rem;
  grid-row-gap: 5rem;
  color: #1e1e1f;
  grid-template-rows: auto;
  grid-template-columns: minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr) minmax(16px, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-content: end;
  place-items: start stretch;
  width: 100%;
  display: grid;
  position: relative;
}

._12-column-grid-2.hero-grid {
  grid-row-gap: 1rem;
  align-content: end;
  align-items: start;
  margin-top: 80px;
  display: block;
}

.logo-image-wrapper-2 {
  align-items: flex-start;
  padding-top: 11px;
  display: flex;
  overflow: hidden;
}

.intro-heading-3 {
  color: #1e1e1f;
  text-transform: none;
  padding-top: 2.5vw;
  font-family: Univers, sans-serif;
  font-size: 9vw;
  font-weight: 400;
  line-height: 96%;
}

.intro-heading-3._2 {
  text-transform: none;
  font-family: Univers, sans-serif;
  font-size: 8.5vw;
  font-weight: 400;
  line-height: 100%;
}

.divider-2 {
  background-color: #1e1e1f;
  width: 100%;
  height: 2px;
  position: relative;
}

.divider-2.hero-divider {
  background-color: #1e1e1f;
  height: 1px;
  margin-top: 0;
}

.linkblock-background-color-2 {
  color: #1c1c1e;
  background-color: #1e1e1f;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0% -20%;
}

.arrow-2 {
  border-radius: 50vw;
}

.arrow-2.hover-arrow {
  -webkit-text-stroke-color: #1e1e1f;
  height: 100%;
  position: absolute;
  top: -1px;
  left: 0;
}

.div-block-9 {
  justify-content: flex-end;
  align-items: center;
  width: 35%;
  height: 100%;
  margin-top: -40px;
  padding-bottom: 0;
  position: relative;
  top: auto;
}

.arrow-icon-wrapper-2 {
  color: #efefef;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.arrow-button-3 {
  cursor: pointer;
  border: 2px solid #1e1e1f;
  border-radius: 50vw;
  flex: none;
  padding: .25rem .5rem .25rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.p-large {
  color: var(--extra-dark);
  letter-spacing: -.02vw;
  margin-top: 1px;
  font-family: Univers, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 125%;
}

.p-large.white {
  color: #fff;
}

.p-large.green {
  color: var(--primary);
}

.p-large.bold {
  margin-bottom: 18px;
  font-weight: 400;
}

.p-large.hero {
  color: var(--extra-dark);
  width: 100%;
}

.p-large.ai-battle-royale {
  margin-bottom: 2rem;
}

.star-2 {
  object-fit: contain;
  flex: 0 auto;
  align-self: flex-end;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
}

.button-text-2 {
  color: #1e1e1f;
  text-transform: uppercase;
  font-family: Univers, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.small-list-item-container-2 {
  grid-column-gap: 1px;
  grid-row-gap: 1rem;
  letter-spacing: .025rem;
  text-transform: uppercase;
  border: 0 solid #929295;
  border-bottom-color: #2d2d30;
  flex-flow: column wrap;
  width: 100%;
  padding-top: 1rem;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1;
  transition-property: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.small-list-item-container-2:hover {
  opacity: 1;
  color: #1e1e1f;
}

.link-list-item-2 {
  grid-row-gap: 1rem;
  color: #efefef99;
  cursor: pointer;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-right: 0;
  font-weight: 600;
  display: flex;
  position: relative;
  overflow: hidden;
}

.link-list-item-2:hover {
  color: #1e1e1f;
}

.p-small {
  color: var(--white);
  font-size: 1rem;
  line-height: 125%;
}

.p-small.white {
  font-family: Univers, sans-serif;
  font-weight: 300;
}

.p-small.black {
  color: var(--extra-dark);
}

.p-small.black.ai-challenge {
  text-align: left;
}

.div-block-10 {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: auto;
  margin-top: 10px;
  display: flex;
}

.div-block-11 {
  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;
  display: grid;
}

.div-block-12 {
  display: none;
}

.image-9 {
  opacity: 0;
  position: absolute;
  inset: 3px 0% 0%;
}

.heading-8 {
  font-family: Univers, sans-serif;
  font-weight: 300;
}

.div-block-13 {
  z-index: 999;
  background-color: #0000;
  max-width: 5vw;
  display: block;
  position: relative;
}

.div-block-14 {
  background-color: var(--primary);
  border-radius: 3rem;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.text-block-17 {
  color: var(--white);
}

.div-block-15 {
  z-index: 99;
  background-color: var(--primary);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 302px;
  height: 82px;
  display: flex;
  position: fixed;
  inset: auto 24px 24px auto;
}

.text-block-18 {
  color: var(--white);
  letter-spacing: .5px;
  margin-right: 19px;
  font-family: Univers, sans-serif;
  font-size: 20px;
}

.image-11 {
  width: 58px;
}

.link-block-3 {
  z-index: 99;
  background-color: var(--primary);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 302px;
  height: 81px;
  transition: background-color .4s;
  display: flex;
  position: fixed;
  inset: auto 24px 24px auto;
}

.link-block-3:hover {
  opacity: 1;
  background-color: #009e41;
}

.link-block-3.k-scouter-dubai {
  width: 400px;
}

.div-block-16 {
  position: relative;
}

.div-block-17 {
  z-index: 999;
  background-color: #610000;
  width: 302px;
  height: 82px;
  position: fixed;
  inset: auto 24px 24px auto;
}

.div-block-18 {
  width: 100%;
  min-height: 500px;
  margin-right: 0;
  display: block;
}

.div-block-19 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row-reverse wrap-reverse;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  height: auto;
  display: grid;
}

.div-block-20 {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.div-block-21 {
  min-height: 500px;
  max-height: none;
}

.ai-battle-royale.mobile {
  display: none;
}

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

.image-13 {
  object-position: 0% 50%;
  height: 100%;
}

.image-14 {
  height: 100%;
}

.fs-cc-prefs_overlay {
  z-index: -1;
  background-color: #03052499;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-cc-banner_text {
  color: var(--extra-dark);
  margin-right: 1.5rem;
  font-size: 13px;
  line-height: 20px;
}

.fs-cc-prefs_button {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  border-radius: 999rem;
  margin-right: .5rem;
  padding: .625rem 1.5rem;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

.fs-cc-prefs_button.fs-cc-button-alt {
  border-color: var(--primary);
  color: var(--primary);
  -webkit-text-stroke-color: var(--primary);
  background-color: #fff;
  font-size: 13px;
  line-height: 20px;
}

.fs-cc-manager_button {
  color: #333;
  cursor: pointer;
  background-color: #fff;
  border-radius: 999rem;
  flex-direction: column;
  padding: .625rem;
  transition: color .2s;
  display: flex;
}

.fs-cc-manager_button:hover {
  color: #4353ff;
}

.fs-cc-manager_component {
  z-index: 999;
  margin-bottom: 60px;
  display: block;
  position: fixed;
  inset: auto auto 1.25rem 1.25rem;
}

.fs-cc-banner_component {
  z-index: 998;
  border-top: 1px solid var(--extra-dark);
  background-color: var(--cornsilk);
  margin-bottom: 0;
  padding: 1.5rem;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.fs-cc-manager_trigger {
  display: none;
}

.fs-cc-prefs_form {
  background-color: #fff;
  border-radius: 0;
  width: 100%;
  max-width: 36rem;
  height: 100%;
  max-height: 70vh;
  margin-bottom: 0;
  position: relative;
}

.fs-cc-prefs_close-icon {
  color: var(--extra-dark);
  width: 1rem;
  height: 1rem;
}

.bold-text-3 {
  color: var(--primary);
  -webkit-text-stroke-color: #f86f22;
  font-size: 13px;
  font-weight: 400;
}

.fs-cc-banner_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.fs-cc-prefs_component {
  z-index: 997;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 2rem;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs-cc-banner_trigger {
  display: none;
}

.fs-cc-prefs_title {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2em;
}

.fs-cc-prefs_close {
  z-index: 1;
  background-color: var(--white);
  color: #333;
  cursor: pointer;
  border-radius: 100%;
  padding: .625rem;
  font-size: 1.25rem;
  text-decoration: none;
  position: absolute;
  inset: -.75rem -.75rem auto auto;
  box-shadow: -1px 1px 12px #3333331a;
}

.fs-cc-prefs_checkbox-field {
  background-color: #ccc;
  border-radius: 999rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 2.75rem;
  height: 1.5rem;
  margin-bottom: 0;
  padding: .125rem;
  display: flex;
  position: relative;
}

.fs-cc-prefs_checkbox-label {
  display: none;
}

.fs-cc-prefs_space-small {
  margin-bottom: .75rem;
}

.fs-cc-prefs_toggle {
  background-color: #fff;
  border-radius: 999px;
  width: 1.25rem;
  height: 1.25rem;
}

.fs-cc-prefs_trigger {
  display: none;
}

.fs-cc-prefs_text {
  color: var(--extra-dark);
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

.fs-cc-banner_buttons-wrapper {
  flex-direction: row;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.fs-cc-prefs_submit-hide {
  display: none;
}

.fs-cc-prefs_content {
  height: 100%;
  padding: 2.5rem 2rem;
  overflow: scroll;
}

.fs-cc-banner_close {
  opacity: 1;
  cursor: pointer;
  background-color: #fff;
  border-radius: 999rem;
  margin-left: .75rem;
  padding: .625rem;
  box-shadow: 1px 1px 12px #0000001a;
}

.fs-cc-prefs_buttons-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-top: 2rem;
  margin-right: -.5rem;
  display: flex;
}

.set-all-components-to-display-none-and-use-this-div-to-create-a-symbol {
  padding-left: 1rem;
  padding-right: 1rem;
}

.fs-cc-manager_icon {
  width: 2rem;
  height: 2rem;
}

.fs-cc-prefs_label {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 2rem;
  font-size: 13px;
  font-weight: 400;
}

.fs-cc-prefs_option {
  border-bottom: 1px solid var(--extra-dark);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.fs-cc-banner_button {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  border-radius: 999rem;
  min-width: 8.75rem;
  margin-left: 1rem;
  padding: .625rem 1.25rem;
  font-size: 13px;
  line-height: 14px;
}

.fs-cc-banner_button.fs-cc-button-alt {
  border-color: var(--primary);
  color: var(--primary);
  background-color: #f5f5f500;
  font-size: 13px;
}

.fs-cc-prefs_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.fs-cc-prefs_checkbox {
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.link-12 {
  color: #f86f22;
}

.fs-cc-banner_text-link {
  color: var(--primary);
  border: 1px #3c7cbb;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
}

.fs-cc-banner_close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.fs-cc-prefs_space-medium {
  margin-bottom: 2.5rem;
}

.bold-text-19 {
  color: var(--extra-dark);
}

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

.image-15 {
  width: 2rem;
  height: 2rem;
}

.bold-text-20, .bold-text-21 {
  font-weight: 400;
}

.link-14, .link-15 {
  color: var(--primary);
}

.div-block-22 {
  display: flex;
}

.image-17 {
  width: 200px;
  max-width: 200px;
  height: 200px;
  max-height: 200px;
}

.image-17.chiara {
  width: 200px;
  height: 200px;
}

.div-block-23 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 2em;
  display: flex;
}

.image-18 {
  object-fit: cover;
}

.code-embed, .code-embed-2, .div-block-24 {
  width: 100%;
  height: 100%;
}

.text-block-19 {
  display: inline-block;
}

.ai-demo {
  background-color: var(--extra-dark);
  justify-content: center;
  align-items: center;
  display: flex;
}

.paragraph-3 {
  color: var(--dark);
  font-weight: 600;
}

.image-19 {
  max-width: 400px;
}

.mftl-2025-group {
  object-fit: cover;
  object-position: 45% 50%;
  height: 100%;
}

.salman {
  object-position: 25% 50%;
  height: 100%;
}

.morphing, .hudson, .te-audience, .ai-dinner-table {
  height: 100%;
}

.leap-chiara {
  object-position: 100% 50%;
  height: 100%;
}

.paragraph-4 {
  font-family: Inter, sans-serif;
  font-weight: 300;
}

.team-member-image-wrapper-2 {
  background-color: #01bb4d;
  border-radius: .25rem;
  width: 100%;
  min-height: 200px;
  margin-bottom: 2rem;
  padding-bottom: 0;
  padding-left: 20%;
  padding-right: 20%;
  position: relative;
  overflow: hidden;
}

.team-member-image-wrapper-2.light {
  background-color: #dbdad7;
  overflow: hidden;
}

.div-block-25 {
  align-self: flex-start;
}

.link-block-4 {
  width: 100%;
}

.team-member-name-2 {
  color: #111827;
  letter-spacing: -1px;
  text-transform: none;
  font-family: Univers, sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 100%;
}

.text-block-20 {
  color: #111827;
  font-family: Inter, sans-serif;
  font-weight: 300;
  line-height: 125%;
}

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

.flex-horizontal-2 {
  grid-column-gap: 2rem;
  color: #111827;
  align-items: flex-start;
  padding-top: 8px;
  display: flex;
}

@media screen and (min-width: 1440px) {
  .small-list-container.judges {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .large-list-item-container.global-ai-challenge._2 {
    display: none;
  }

  .jemma {
    object-position: 50% 50%;
  }

  .te-everything {
    height: 100%;
  }
}

@media screen and (min-width: 1920px) {
  h1 {
    margin-bottom: -4rem;
    font-size: 22rem;
  }

  .section.home-hero-section {
    padding-bottom: 2.5rem;
  }

  .inner-section.white.ai-battle-royale {
    padding-top: 4rem;
  }

  .service-home-title {
    font-size: 8vw;
    font-weight: 300;
  }

  .slide, .slide._1, .slide._2, .slide._3 {
    background-color: var(--extra-dark);
    background-image: none;
  }

  .h1-wrapper {
    overflow: visible;
  }

  .intro-heading {
    font-size: 16rem;
  }

  .intro-heading._2 {
    font-size: 7vw;
  }

  .team-member-large-name {
    font-size: 15rem;
  }

  .large-list-item-container.ai-battle-royale {
    padding-bottom: 1rem;
  }

  .div-block-6 {
    width: 80vw;
    max-width: 800px;
  }

  .text-block-13 {
    line-height: 155%;
  }

  .wrapper-4.about-story-up-wrapper {
    line-height: 100%;
  }

  .text-block-15 {
    line-height: 155%;
  }

  .subheading {
    text-align: center;
  }

  .contact-hero-heading {
    color: #0f1f3d;
  }

  .about-story-right {
    line-height: 100%;
  }

  .text-block-16 {
    line-height: 155%;
  }

  .intro-heading-2 {
    font-size: 15rem;
  }

  .intro-heading-2._2 {
    border-radius: 2px;
    font-size: 7vw;
  }

  .intro-heading-3 {
    font-size: 15rem;
  }

  .intro-heading-3._2 {
    border-radius: 2px;
    font-size: 7vw;
  }

  .image-10 {
    width: 100px;
  }

  .div-block-14 {
    background-color: var(--primary);
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    margin-top: 2rem;
    display: flex;
  }

  .text-block-17 {
    color: var(--white);
  }
}

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

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

  .nav-container {
    flex-direction: row;
    grid-template-columns: minmax(16px, 1fr) minmax(16px, 1fr);
    align-items: flex-start;
    margin-top: 0;
    padding: 0 3rem 0;
    display: flex;
    position: relative;
    top: 0;
  }

  .section.home-hero-section, .section.journal-hero-section, .section.contact-hero-section {
    height: auto;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .section.blogpost-hero-section {
    height: auto;
    padding-top: 6rem;
    padding-bottom: 0;
  }

  .section.about-hero-section, .section.home-hero-section {
    height: auto;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

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

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

  .text-xl-fluid.nav-text {
    letter-spacing: 0;
    font-size: 1.5rem;
    line-height: 130%;
  }

  .footer {
    padding-bottom: 48px;
  }

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

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

  ._4-column-grid.logo-grid {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr 1fr;
  }

  .navbar {
    margin-top: 0;
    padding-top: 2.5rem;
    position: relative;
    top: auto;
  }

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

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

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

  ._12-column-grid.row-gap-7-5 {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto;
    grid-template-columns: minmax(16px, 1fr) 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

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

  ._12-column-grid.featured-case-content-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: .5fr 1.25fr;
  }

  ._12-column-grid.service-home-grid {
    grid-template-columns: .25fr 1fr;
  }

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

  .footer-grid {
    grid-column-gap: 40px;
    grid-row-gap: 2.5rem;
    grid-template-columns: minmax(16px, 1fr) 1fr;
  }

  .text-2xl {
    font-size: 2rem;
    line-height: 125%;
  }

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

  .nav-link-block {
    color: #15191f;
    display: block;
  }

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

  .second-nav-link-text {
    display: none;
  }

  .nav-link-text-container {
    color: var(--white);
    margin-left: 0;
    margin-right: 0;
    font-size: 4rem;
    line-height: 160%;
  }

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

  .parallax-image-container {
    width: 100%;
  }

  .parallax-image-container.ai-battle-royale.desktop {
    display: none;
  }

  .dark-nav-link-block {
    z-index: 2;
    color: #15191f;
    display: block;
  }

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

  .menu-button-wrapper {
    z-index: 1;
    grid-column-gap: .25rem;
    align-items: center;
    display: flex;
    position: static;
    right: 2.5rem;
  }

  .nav-menu {
    z-index: 1;
    background-color: var(--extra-dark);
    color: var(--white);
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    width: 100%;
    height: 100vh;
    display: none;
    position: fixed;
    inset: 0 0 0%;
  }

  .menu-button-action-container {
    background-color: #0000;
    justify-content: flex-end;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 1rem;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  .menu-action-open {
    overflow: hidden;
  }

  .menu-action-close {
    position: absolute;
    top: -100%;
    overflow: hidden;
  }

  .footer-links-container {
    grid-column-gap: .25rem;
    justify-content: space-between;
  }

  .featured-case-wrapper {
    padding: 45% 0 1rem;
  }

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

  .numbers-container {
    margin-bottom: 62px;
  }

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

  .team-member-hero-info-container {
    width: 100%;
    max-width: none;
  }

  .menu-button {
    z-index: 99999999;
    grid-row-gap: .375rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 93px;
    display: flex;
    top: 2.5rem;
  }

  .link-list-item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .link-list-item.btn.hero {
    margin-bottom: 8rem;
  }

  .linkblock-background-color {
    display: none;
  }

  .menu-container {
    align-items: stretch;
    width: auto;
    margin-bottom: 2.5rem;
    margin-left: 2.5rem;
  }

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

  .navlink-divider-hover {
    display: none;
  }

  .hero-subtitle {
    letter-spacing: 0;
    line-height: 130%;
  }

  .star {
    width: 100%;
  }

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

  .arrow-top-button-wrapper {
    width: 50%;
  }

  .featured-case-button-wrapper, .year, .menu-button-hover-text {
    display: none;
  }

  .menu-button-container {
    width: 100%;
  }

  .nav-link-hover-text {
    display: none;
  }

  .footer-text-wrapper {
    display: block;
  }

  .arrow-top-button {
    display: none;
  }

  .service-home-title {
    font-size: 4.5rem;
  }

  .service-home-title-hover {
    font-size: 7.5rem;
    display: none;
  }

  .case-home-title.m {
    font-size: 2rem;
  }

  .slide {
    padding-right: 2rem;
  }

  .testimonail-client-info {
    margin-bottom: 10rem;
  }

  .quote {
    letter-spacing: -.01rem;
    font-size: 2rem;
    line-height: 125%;
  }

  .left-arrow {
    margin-left: auto;
    margin-right: 72px;
    left: auto;
    right: 0;
  }

  .right-arrow {
    left: auto;
    right: 0;
  }

  .text-dark.text-3xl {
    margin-bottom: 20px;
  }

  .flex-horizontal {
    padding-top: 8px;
  }

  .flex-horizontal.blogpost-info {
    grid-column-gap: 4rem;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .dark-button {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .small-star {
    max-width: 3rem;
  }

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

  .socials-home-title {
    font-size: 7.5rem;
  }

  .socials-home-title-hover {
    font-size: 7.5rem;
    display: none;
  }

  .case-thumbnail-wrapper {
    padding: 45% 0 1rem;
  }

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

  .case-button-wrapper {
    display: none;
  }

  .intro-heading {
    font-size: 7.5rem;
  }

  .intro-heading._2 {
    margin-bottom: 29px;
    margin-left: 0;
  }

  .intro-heading._2.hero {
    line-height: 105%;
  }

  .looping-text-wrapper {
    display: none;
  }

  .looping-heading {
    font-size: 21vw;
  }

  .looping-heading._3 {
    line-height: 120%;
  }

  .blog-post-title {
    font-size: 6rem;
  }

  .about-looping-text-wrapper {
    display: flex;
  }

  .div-block-5 {
    width: 60%;
  }

  .div-block-6 {
    justify-content: flex-start;
    align-items: center;
    width: 100vw;
    height: 100%;
  }

  .heading {
    margin-bottom: 14px;
  }

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

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

  .text-field-2.bottom {
    margin-bottom: 4rem;
  }

  .icon-2, .icon-3 {
    margin-bottom: 0;
  }

  .about-story-left {
    width: 100%;
  }

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

  .image-6 {
    padding-top: 40px;
  }

  .wrapper-4 {
    flex-direction: column;
  }

  .wrapper-4.contact-form-wrapper {
    overflow: visible;
  }

  .subheading {
    font-family: Inter, sans-serif;
    font-weight: 300;
  }

  .contact-hero-heading.blog {
    box-sizing: border-box;
    clear: none;
    text-align: center;
    object-fit: fill;
    order: 0;
    align-self: auto;
    width: 100%;
    overflow: visible;
  }

  .about-story-right {
    width: 100%;
  }

  .image-7 {
    display: none;
  }

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

  .h2-heading-wrapper-2.hero {
    padding-top: 0;
  }

  .intro-heading-2 {
    font-size: 7.5rem;
  }

  .hero-subtitle-2 {
    letter-spacing: 0;
    line-height: 130%;
    display: none;
  }

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

  ._12-column-grid-2.hero-grid {
    grid-row-gap: 5rem;
    grid-template-columns: minmax(16px, 1fr) 1fr;
    margin-top: 60px;
  }

  .intro-heading-3 {
    font-size: 7.5rem;
  }

  .divider-2.hero-divider {
    margin-top: 1.4rem;
    display: block;
  }

  .linkblock-background-color-2 {
    display: none;
  }

  .div-block-9 {
    justify-content: flex-end;
    align-items: center;
    display: flex;
  }

  .p-large {
    font-size: 1.5rem;
  }

  .p-large.hero {
    margin-top: 17px;
    margin-bottom: 25px;
  }

  .star-2 {
    width: 100%;
  }

  .link-list-item-2 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .p-small.black.ai-challenge, .image-8 {
    margin-top: 40px;
  }

  .div-block-12 {
    display: block;
  }

  .ai-battle-royale.mobile {
    display: block;
    overflow: hidden;
  }

  .fs-cc-banner_text {
    margin-right: 0;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-banner_buttons-wrapper {
    margin-top: 1rem;
  }

  .flex-horizontal-2 {
    padding-top: 8px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    letter-spacing: 0;
    margin-bottom: -3.8vw;
    font-size: 8rem;
  }

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

  .nav-container {
    align-items: center;
    margin-top: 0;
    padding-top: 0;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

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

  .text-xl-fluid {
    font-size: 1.5rem;
  }

  .text-xl-fluid.nav-text {
    letter-spacing: 0;
    font-size: 1.25rem;
    line-height: 130%;
  }

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

  .navbar {
    padding-left: 0;
    padding-right: 0;
  }

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

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

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

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

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

  ._12-column-grid.featured-case-content-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column wrap-reverse;
    grid-template-columns: 1fr;
    display: flex;
  }

  ._12-column-grid.service-home-grid {
    grid-template-columns: .25fr 1fr;
  }

  ._12-column-grid.services-hero-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 4rem;
  }

  ._12-column-grid.hero {
    margin-top: 35px;
  }

  .footer-grid {
    grid-row-gap: 48px;
  }

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

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

  .nav-menu {
    display: none;
  }

  .footer-links-container {
    grid-column-gap: 2.5rem;
  }

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

  .numbers-container {
    grid-row-gap: 2rem;
  }

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

  ._2-column-grid.post-title-grid, ._2-column-grid.case-title-grid {
    grid-row-gap: .5rem;
    grid-template-columns: 1fr;
  }

  .menu-container {
    display: flex;
  }

  .star {
    object-fit: contain;
    width: 80%;
  }

  .case-image.kscouter {
    object-position: 15% 50%;
  }

  .case-image-overlay {
    background-image: linear-gradient(#192a2700, #192a2700 38%, #000);
  }

  .play-button-wrapper {
    font-size: 2.5rem;
  }

  .service-home-title {
    font-size: 2.7rem;
    line-height: 134%;
  }

  .service-home-title-wrapper {
    cursor: auto;
  }

  .service-home-title-hover {
    font-size: 6rem;
  }

  .slide {
    padding: 1rem;
  }

  .testimonail-client-info {
    margin-bottom: 7.5rem;
  }

  .quote {
    font-size: 1.5rem;
  }

  .flex-horizontal.blogpost-info {
    grid-template-rows: auto;
  }

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

  .socials-home-title, .socials-home-title-hover {
    font-size: 6rem;
  }

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

  .intro-heading {
    padding-top: 1.25rem;
  }

  .intro-heading._2.hero {
    line-height: 120%;
  }

  .blog-post-title {
    font-size: 5rem;
  }

  .large-number {
    font-size: 5.2rem;
  }

  .div-block-5 {
    width: 70%;
  }

  .div-block-6 {
    width: 90vw;
  }

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

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

  .wrapper-4 {
    width: 90%;
  }

  .contact-hero-heading.blog {
    direction: ltr;
    white-space: normal;
    word-break: normal;
  }

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

  .h2-heading-wrapper-2.hero {
    width: 100%;
    overflow: visible;
  }

  .intro-heading-2 {
    padding-top: 1.25rem;
  }

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

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

  .intro-heading-3 {
    padding-top: 1.25rem;
  }

  .divider-2.hero-divider {
    margin-top: 2.4rem;
  }

  .div-block-9 {
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .p-large {
    font-size: 1.5rem;
  }

  .star-2 {
    object-fit: contain;
    width: 50%;
    margin-bottom: 33px;
  }

  .div-block-10 {
    flex-flow: column-reverse wrap;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .div-block-13 {
    max-width: 10vw;
  }

  .div-block-19 {
    display: flex;
  }

  .div-block-20 {
    min-height: auto;
  }

  .div-block-21 {
    width: 100%;
  }

  .ai-battle-royale.mobile {
    display: block;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-prefs_title {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    margin-bottom: 0;
    font-size: 4.75rem;
  }

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

  h3 {
    font-size: 1.5rem;
  }

  .nav-container {
    z-index: 1;
    margin-top: 4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: static;
  }

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

  .section.home-hero-section {
    padding-top: 5rem;
  }

  .section.last-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section.last-section.global-ai-challenge {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

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

  .section.home-services-section {
    margin-bottom: 5rem;
  }

  .section.cases-section.ai-battle-royale {
    margin-bottom: 0;
  }

  .section.client-testimonials-section {
    margin-bottom: 5rem;
  }

  .section.client-testimonials-section.white {
    z-index: 10;
    background-color: var(--white);
  }

  .section.journal-hero-section {
    padding-top: 5rem;
    padding-bottom: 0;
  }

  .section.journal-posts-section {
    margin-bottom: 5rem;
  }

  .section.contact-hero-section {
    padding-top: 5rem;
  }

  .section.services-section, .section.contact-intro-section {
    margin-bottom: 5rem;
  }

  .section.work-section {
    margin-bottom: 5rem;
    padding-bottom: 0;
  }

  .section.case-images-section {
    margin-bottom: 5rem;
  }

  .section.blogpost-hero-section {
    margin-bottom: 0;
    padding-top: 5rem;
  }

  .section.blogpost-content-section {
    margin-top: 0;
    margin-bottom: 5rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.about-hero-section {
    padding-top: 5rem;
  }

  .section.about-image-section {
    padding-top: 0;
  }

  .section.about-image-section.ai-battle-royale {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }

  .section.about-intro-section {
    margin-bottom: 5rem;
    padding-bottom: 0;
  }

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

  .section.numbers-section {
    margin-bottom: 5rem;
    padding-bottom: 0;
  }

  .section.home-hero-section {
    grid-row-gap: 1rem;
    width: auto;
    margin-bottom: 60px;
    padding-top: 0;
  }

  .container {
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .container.footer-container {
    margin-top: 52px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .divider.hero-divider {
    margin-top: 0;
  }

  .text-xl-fluid {
    letter-spacing: 0;
    font-size: 18px;
  }

  .text-xl-fluid.nav-text {
    font-size: 18px;
  }

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

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

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

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

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

  .submit-button.light {
    font-size: 2rem;
  }

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

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

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

  .navbar {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    top: 0;
  }

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

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

  ._12-column-grid.row-gap-7-5 {
    grid-column-gap: 4rem;
    grid-row-gap: 3rem;
    grid-template-rows: auto;
    grid-template-columns: minmax(16px, 1fr) 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  ._12-column-grid.row-gap-7-5.ai-battle-royale {
    grid-template-columns: minmax(16px, 1fr);
  }

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

  ._12-column-grid.featured-case-content-grid {
    grid-row-gap: .5rem;
    grid-template-columns: 1.25fr;
  }

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

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

  .body {
    font-size: 1.25rem;
  }

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

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

  .text-2xl {
    letter-spacing: 0;
    margin-bottom: 40px;
    font-size: 18px;
  }

  .text-medium.case-subtitle {
    font-size: 18px;
  }

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

  .form {
    width: 100%;
  }

  .parallax-image-container.ai-battle-royale.mobile {
    height: 100%;
    min-height: 100%;
    display: block;
  }

  .parallax-image-container.ai-battle-royale.desktop {
    display: none;
  }

  .nav-menu {
    display: none;
    overflow: hidden;
  }

  .footer-links-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .featured-case-wrapper {
    padding-top: 100%;
    padding-bottom: .5rem;
  }

  .preloader {
    display: none;
  }

  .team-grid {
    grid-row-gap: 6rem;
  }

  .menu-button {
    align-items: center;
    width: 107px;
    padding: .5rem;
    top: 1.5rem;
    left: 1.5rem;
    right: auto;
  }

  .link-list-item.btn.hero {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .menu-container {
    grid-row-gap: .25rem;
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

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

  .main-wrapper {
    overflow: hidden;
  }

  .hero-subtitle {
    color: var(--white);
  }

  .star {
    width: 70%;
    height: 80%;
  }

  .star.gcc.tag {
    padding-top: 10px;
  }

  .inner-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .inner-section.white.ai-battle-royale {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .section-heading-container.margin-bottom-3 {
    display: none;
  }

  .section-heading-container.form-heading-container, .section-heading-container.contact-heading-container {
    margin-bottom: 10rem;
  }

  .case-image.kscouter {
    object-position: 15% 50%;
  }

  .case-image.mftl-2025.mobile {
    object-position: 55% 50%;
  }

  .case-image._10x-2025 {
    object-position: 10% 50%;
  }

  .case-image.tryeverything-2025 {
    object-position: 41% 50%;
  }

  .case-image-overlay {
    background-image: linear-gradient(#0000000d 46%, #000);
  }

  .play-button-wrapper {
    font-size: 1.5rem;
  }

  .menu-button-hover-text {
    text-align: right;
    font-size: 1rem;
  }

  .close-menu-button {
    overflow: hidden;
  }

  .footer-text-wrapper {
    margin-bottom: 0;
  }

  .service-home-title {
    margin-top: 0;
    padding-top: 1rem;
    font-size: 2.8rem;
    line-height: 130%;
  }

  .service-home-title-hover {
    margin-top: 0;
    padding-top: 1rem;
  }

  .case-home-title.m {
    font-size: 2rem;
  }

  .slider-mask {
    max-width: 90%;
  }

  .testimonail-client-info {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4rem;
  }

  .quote {
    font-size: 1.5rem;
  }

  .left-arrow {
    border-color: var(--extra-dark);
  }

  .slider-nav-icon {
    color: var(--extra-dark);
  }

  .right-arrow {
    border-color: var(--extra-dark);
  }

  .text-dark.text-3xl {
    font-size: 3rem;
  }

  .flex-horizontal.blogpost-info {
    grid-column-gap: 4rem;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    width: 100%;
    display: flex;
  }

  .menu-button-text, .menu-button-text.dark {
    text-align: right;
    font-size: 1rem;
  }

  .h1-wrapper {
    font-size: 2rem;
  }

  .text-large {
    font-size: 18px;
  }

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

  .socials-home-title, .socials-home-title-hover {
    margin-top: 0;
    padding-top: 1rem;
    font-size: 4.5rem;
  }

  .case-thumbnail-wrapper {
    padding-bottom: .5rem;
  }

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

  .text-3xl, .text-3xl.principle-heading {
    font-size: 3.5rem;
  }

  .cta-team-grid {
    grid-row-gap: 6rem;
  }

  .intro-heading {
    padding-top: 1.4rem;
  }

  .intro-heading._2 {
    margin-left: 0;
    font-size: 2.5rem;
  }

  .intro-heading._2.hero {
    max-width: 100%;
    font-size: 3rem;
    line-height: 125%;
    overflow: visible;
  }

  .h2-heading-wrapper {
    padding-top: 14px;
  }

  .looping-heading {
    font-size: 35vw;
    line-height: 94%;
  }

  .blog-post-title {
    font-size: 3rem;
  }

  .h1-blog-post-title-wrapper {
    font-size: 2rem;
  }

  .about-looping-text-wrapper {
    margin-bottom: 0;
  }

  .large-number {
    font-size: 4.3rem;
  }

  .logo-wrapper {
    width: 30%;
  }

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

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

  .div-block-5 {
    width: 80%;
  }

  .div-block-6 {
    width: 100vw;
  }

  .heading {
    font-size: 18px;
  }

  .icon {
    color: var(--extra-dark);
  }

  .container-2 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .text-xl-fluid-2 {
    letter-spacing: 0;
    font-size: 1rem;
  }

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

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

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

  .about {
    margin-bottom: 20px;
  }

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

  .text-block-13 {
    padding-top: 20px;
    font-family: Inter, sans-serif;
    line-height: 150%;
  }

  .bold-text-17 {
    font-size: 26px;
  }

  .bold-text-17.blog {
    font-family: Inter, sans-serif;
    font-weight: 400;
    line-height: 115%;
  }

  .bold-text-17.beitrag {
    font-family: Inter, sans-serif;
    font-size: 1rem;
    line-height: 100%;
  }

  .visual-features-subheading {
    font-family: Inter, sans-serif;
    line-height: 130%;
  }

  .text-block-15 {
    padding-top: 20px;
    line-height: 150%;
  }

  .subheading {
    text-align: left;
    font-size: 1rem;
  }

  .contact-hero-heading.blog {
    font-size: 2rem;
  }

  .about-story-right {
    line-height: 100%;
  }

  .text-block-16 {
    padding-top: 20px;
    line-height: 150%;
  }

  .heading-7 {
    margin-bottom: 20px;
  }

  .text-2xl-2 {
    letter-spacing: 0;
    font-size: 1.5rem;
  }

  .intro-heading-2 {
    padding-top: 1.4rem;
  }

  .hero-subtitle-2 {
    color: #edece8;
  }

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

  ._12-column-grid-2.hero-grid {
    grid-template-columns: 1fr;
    align-self: center;
    max-width: 100%;
    margin-top: 0;
  }

  .intro-heading-3 {
    padding-top: 1.4rem;
  }

  .divider-2.hero-divider {
    margin-top: 1.7rem;
  }

  .div-block-9 {
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
  }

  .div-block-9.hero {
    width: 40%;
    margin-top: 0;
    top: 100px;
  }

  .p-large {
    letter-spacing: 0;
    font-size: 1.5rem;
  }

  .p-large.white.featured {
    font-size: 1rem;
  }

  .star-2 {
    width: auto;
    max-width: 170px;
    height: auto;
  }

  .p-small.black.ai-challenge {
    margin-top: 40px;
  }

  .div-block-10 {
    flex-flow: wrap-reverse;
    justify-content: flex-start;
    align-items: center;
  }

  .div-block-10.hero {
    justify-content: flex-end;
    align-items: center;
  }

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

  .link-block-3 {
    width: 100%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    inset: auto 0% 24px;
  }

  .div-block-20 {
    min-height: auto;
  }

  .ai-battle-royale.mobile {
    display: block;
  }

  .fs-cc-prefs_button {
    margin-bottom: .5rem;
  }

  .fs-cc-prefs_component {
    padding: 1.5rem;
  }

  .fs-cc-banner_buttons-wrapper {
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
  }

  .fs-cc-prefs_content {
    padding: 1.5rem;
  }

  .fs-cc-banner_close {
    position: absolute;
    inset: -1.5rem .75rem auto auto;
  }

  .fs-cc-banner_button {
    width: 100%;
    margin-bottom: .5rem;
    margin-left: 0;
  }

  .image-17 {
    width: 100px;
    max-width: 100px;
    height: 100px;
    max-height: 100px;
  }

  .div-block-23 {
    margin-left: 1em;
  }

  .felix {
    width: auto;
    height: 100%;
  }
}

#w-node-de73c2ec-1b77-84f8-7241-4eddecd3c79d-2dfd4f46 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_24b5f8af-6ec9-333e-1d70-b3216139ed55-2dfd4f46 {
  grid-area: span 1 / span 7 / span 1 / span 7;
  align-self: start;
}

#w-node-_24b5f8af-6ec9-333e-1d70-b3216139ed58-2dfd4f46 {
  grid-area: span 1 / span 5 / span 1 / span 5;
  justify-self: end;
}

#w-node-_24b5f8af-6ec9-333e-1d70-b3216139ed20-2dfd4f46 {
  grid-area: 2 / 12 / 3 / 13;
  place-self: end;
}

#w-node-_24b5f8af-6ec9-333e-1d70-b3216139ed14-2dfd4f46 {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-_55567e8a-a20f-e3da-5e17-1dabbb2cb744-2dfd4f46 {
  grid-area: 1 / 7 / 2 / 11;
  justify-self: start;
}

#w-node-_55567e8a-a20f-e3da-5e17-1dabbb2cb745-2dfd4f46 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-_24078395-eca7-911e-dc8f-204f1b0ab025-2dfd4f46 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_1385e3ee-f631-4938-e5b2-444c0a85930b-2dfd4f46 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: start;
}

#w-node-_52f56b81-916f-adeb-1b91-e35d7f428649-2dfd4f46 {
  grid-area: 1 / 7 / 2 / 11;
  justify-self: start;
}

#w-node-d7aea7e2-46d3-b275-1846-afd08a6ef49b-2dfd4f46 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-_13cad7f7-c62f-1075-7c32-a9cd278b0193-2dfd4f46 {
  grid-area: 1 / 1 / 2 / 5;
  justify-self: center;
}

#w-node-_13cad7f7-c62f-1075-7c32-a9cd278b019b-2dfd4f46 {
  grid-area: 1 / 5 / 2 / 9;
  justify-self: center;
}

#w-node-_13cad7f7-c62f-1075-7c32-a9cd278b01a3-2dfd4f46 {
  grid-area: 1 / 9 / 2 / 13;
  justify-self: center;
}

#w-node-_13cad7f7-c62f-1075-7c32-a9cd278b01ab-2dfd4f46 {
  grid-area: 2 / 1 / 3 / 5;
  justify-self: center;
}

#w-node-_13cad7f7-c62f-1075-7c32-a9cd278b01b3-2dfd4f46 {
  grid-area: 2 / 5 / 3 / 9;
  justify-self: center;
}

#w-node-_13cad7f7-c62f-1075-7c32-a9cd278b01bb-2dfd4f46 {
  grid-area: 2 / 9 / 3 / 13;
  justify-self: center;
}

#w-node-_2b94833e-b2a0-8e98-de6b-0d716bec85a4-2dfd4f46 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3cfd1859-7a1d-c06e-2240-ba273cf2b46f-2dfd4f46 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_3cfd1859-7a1d-c06e-2240-ba273cf2b473-2dfd4f46 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: end;
}

#w-node-_57f65d5c-b910-fc68-8814-06fe4332a7f3-2dfd4f46 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_57f65d5c-b910-fc68-8814-06fe4332a7f7-2dfd4f46 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: end;
}

#w-node-aa26c50f-2316-22ce-0ce7-f3bc35c7fee9-2dfd4f46 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-aa26c50f-2316-22ce-0ce7-f3bc35c7feed-2dfd4f46 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: end;
}

#w-node-c4da1215-1553-20bc-cf89-de8d345d1227-2dfd4f46 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c4da1215-1553-20bc-cf89-de8d345d1229-2dfd4f46 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: end;
}

#w-node-ac27ddac-05be-0baa-27a7-36743a210dce-2dfd4f46 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_9651bba3-d555-ca02-f874-63f5fde62a93-2dfd4f46 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: end;
}

#w-node-_400b9e3d-2dd9-8515-200b-199b55a26861-2dfd4f46 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_400b9e3d-2dd9-8515-200b-199b55a26865-2dfd4f46 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: end;
}

#w-node-b5918466-da68-9b61-b331-fd8407b517da-2dfd4f46 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_9b49f02c-821e-0da1-83d9-4ca362744eae-2dfd4f46, #w-node-b5918466-da68-9b61-b331-fd8407b517dc-2dfd4f46 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e0135e94-4481-f300-7dd9-d9ac89e2de10-2dfd4f46 {
  grid-area: 1 / 4 / 2 / 5;
  place-self: end start;
}

#w-node-_429c0794-60d3-2355-2090-5683552fddca-2dfd4f46 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-_04d5cdbd-323c-144a-70a4-6a9c4a310368-2dfd4f46 {
  grid-area: 2 / 4 / 3 / 13;
}

#w-node-e91c8520-5aab-8cde-3e66-cd1010bbafdf-2dfd4f46 {
  grid-area: 1 / 4 / 2 / 5;
  place-self: end start;
}

#w-node-e91c8520-5aab-8cde-3e66-cd1010bbafe1-2dfd4f46 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-e91c8520-5aab-8cde-3e66-cd1010bbafe6-2dfd4f46 {
  grid-area: 2 / 4 / 3 / 13;
}

#w-node-fb5ac767-c8f7-c658-9a35-44c54ee0b7b4-2dfd4f46 {
  grid-area: 1 / 4 / 2 / 5;
  place-self: end start;
}

#w-node-fb5ac767-c8f7-c658-9a35-44c54ee0b7b6-2dfd4f46 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-fb5ac767-c8f7-c658-9a35-44c54ee0b7bb-2dfd4f46 {
  grid-area: 2 / 4 / 3 / 13;
}

#w-node-_912a80a4-7288-ff41-a5c5-72625e8d73a6-2dfd4f46 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_912a80a4-7288-ff41-a5c5-72625e8d73a8-2dfd4f46, #w-node-_912a80a4-7288-ff41-a5c5-72625e8d73a9-2dfd4f46 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-_4b51b98f-1c01-81e7-0734-1235f34d0dd4-ae2af369 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e3beb526-72bc-1fac-74a3-96f3e6bcdbad-ae2af369 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_1c22fde5-0ad5-ec3f-423e-7fe47a21251b-ae2af369 {
  grid-area: 2 / 7 / 3 / 12;
  justify-self: start;
}

#w-node-a0150939-ffe1-0f53-cd04-c4e2257b2f6b-ae2af369 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_4df02dfa-eb42-a8f2-a0a9-8f63158ff7da-ae2af369 {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-e6d0b8bc-6631-32f1-c3a3-3e1dcf629117-2dfd4fa0 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_42f2b25b-ecb1-066b-a7f6-5a16a30bc230-2dfd4fa0 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_42f2b25b-ecb1-066b-a7f6-5a16a30bc232-2dfd4fa0 {
  grid-area: 1 / 5 / 2 / 12;
}

#w-node-_42f2b25b-ecb1-066b-a7f6-5a16a30bc233-2dfd4fa0 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-_8651b063-b03d-a8ee-37b2-90547e52a4b0-2dfd4fa0 {
  place-self: start;
}

#w-node-_28fb9e4a-2856-3dad-2f49-0c1fed34fda6-2dfd4fa0 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-f01ca369-cdc6-b1ca-71a9-1399970a3cf7-2dfd4fa0 {
  grid-area: 2 / 7 / 3 / 10;
}

#w-node-_6abcea50-4883-a596-3ccd-93bc3c1fa711-2dfd4fa0 {
  place-self: start;
}

#w-node-_6abcea50-4883-a596-3ccd-93bc3c1fa713-2dfd4fa0 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_6abcea50-4883-a596-3ccd-93bc3c1fa715-2dfd4fa0 {
  grid-area: 2 / 7 / 3 / 10;
}

#w-node-_5daffcbf-1389-ce26-454e-026e39e731aa-2dfd4fa0 {
  place-self: start;
}

#w-node-_5daffcbf-1389-ce26-454e-026e39e731ac-2dfd4fa0 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_5daffcbf-1389-ce26-454e-026e39e731ae-2dfd4fa0 {
  grid-area: 2 / 7 / 3 / 10;
}

#w-node-_4a4b2559-f806-bf77-3531-942ec17bf613-2dfd4fa0 {
  align-self: start;
}

#w-node-_4a4b2559-f806-bf77-3531-942ec17bf615-2dfd4fa0 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_4a4b2559-f806-bf77-3531-942ec17bf617-2dfd4fa0 {
  grid-area: 2 / 7 / 3 / 10;
}

#w-node-_1de2af9c-4e15-9001-9eb1-3bc898a6f51b-2dfd4fa0 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_1de2af9c-4e15-9001-9eb1-3bc898a6f51d-2dfd4fa0 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-fb647887-c1df-8290-bbac-092941bdeffb-2dfd4fa0 {
  grid-area: 1 / 1 / 2 / 13;
  place-self: auto;
}

#w-node-_46b7cabb-fa5b-f8a5-7fbb-9487a21089ad-2dfd4fa0 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_46b7cabb-fa5b-f8a5-7fbb-9487a21089b3-2dfd4fa0 {
  grid-area: 1 / 1 / 2 / 13;
  place-self: auto;
}

#w-node-_2b9e841d-65e3-1157-7c18-2000c1228452-2dfd4fa0 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_2b9e841d-65e3-1157-7c18-2000c1228454-2dfd4fa0, #w-node-_2b9e841d-65e3-1157-7c18-2000c1228455-2dfd4fa0 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-_2b9e841d-65e3-1157-7c18-2000c1228457-2dfd4fa0 {
  grid-area: 2 / 7 / 3 / 13;
  align-self: auto;
}

#w-node-_2b9e841d-65e3-1157-7c18-2000c1228468-2dfd4fa0 {
  grid-area: 2 / 1 / 3 / 4;
  place-self: end start;
}

#w-node-_8d6a5652-1898-4495-d53a-fbd04cb1cec4-2dfd4fa0 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_8d6a5652-1898-4495-d53a-fbd04cb1cec6-2dfd4fa0 {
  grid-area: 1 / 5 / 2 / 12;
}

#w-node-_8d6a5652-1898-4495-d53a-fbd04cb1cec7-2dfd4fa0 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-_3fa88a62-18ca-5c9a-a6bf-f72e11c61822-2dfd4fa0, #w-node-_3fa88a62-18ca-5c9a-a6bf-f72e11c61828-2dfd4fa0, #w-node-_3fa88a62-18ca-5c9a-a6bf-f72e11c6182d-2dfd4fa0, #w-node-_3fa88a62-18ca-5c9a-a6bf-f72e11c61830-2dfd4fa0, #w-node-_3fa88a62-18ca-5c9a-a6bf-f72e11c61836-2dfd4fa0, #w-node-_3fa88a62-18ca-5c9a-a6bf-f72e11c6183b-2dfd4fa0, #w-node-_3fa88a62-18ca-5c9a-a6bf-f72e11c6183e-2dfd4fa0, #w-node-_3fa88a62-18ca-5c9a-a6bf-f72e11c61844-2dfd4fa0, #w-node-_3fa88a62-18ca-5c9a-a6bf-f72e11c61849-2dfd4fa0, #w-node-_3fa88a62-18ca-5c9a-a6bf-f72e11c6184c-2dfd4fa0, #w-node-_3fa88a62-18ca-5c9a-a6bf-f72e11c61852-2dfd4fa0, #w-node-_3fa88a62-18ca-5c9a-a6bf-f72e11c61857-2dfd4fa0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b914d534-0c41-bd98-47d7-16f2398be3d4-2dfd4fa0 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-b914d534-0c41-bd98-47d7-16f2398be3d6-2dfd4fa0 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-_31971741-9dbe-3fc1-d501-33b484c3a1d7-2dfd4fa1 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_4252ecdf-5698-bd87-cf4e-037707bf5c1a-2dfd4fa1 {
  grid-area: 1 / 2 / 2 / 10;
}

#w-node-ba058522-5e2c-d91e-5374-75f84e77e946-2dfd4fa1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fa2 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fa2 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fa2 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_31971741-9dbe-3fc1-d501-33b484c3a1d7-2dfd4fa3 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_6bf7836c-9522-446a-4f29-daf4a0493a2c-2dfd4fa3 {
  grid-area: 1 / 10 / 2 / 11;
  place-self: end start;
}

#w-node-_4252ecdf-5698-bd87-cf4e-037707bf5c1a-2dfd4fa3 {
  grid-area: 1 / 2 / 2 / 10;
}

#w-node-_76665c4b-a640-5816-cdd7-6ea97283707e-2dfd4fa5 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_76665c4b-a640-5816-cdd7-6ea972837088-2dfd4fa5 {
  grid-area: 1 / 2 / 2 / 10;
}

#w-node-_0bf5471f-4ad2-2e77-9a4c-e0ed13ff6546-2dfd4fa5 {
  grid-area: 2 / 2 / 3 / 5;
  align-self: auto;
}

#w-node-_03229fc7-c127-5904-bb54-433820bbd35c-2dfd4fa5 {
  grid-area: 2 / 8 / 3 / 11;
  align-self: auto;
}

#w-node-df151c49-c23b-af8c-1c42-f18808f5ab90-2dfd4fa5 {
  grid-area: 2 / 5 / 3 / 8;
  align-self: auto;
}

#w-node-_4032d3cf-b56f-ba80-3746-f4b44073a4b6-2dfd4fa5 {
  grid-area: 1 / 4 / 2 / 12;
}

#w-node-_9028c278-f73e-542e-5fc6-019349db465e-2dfd4fa5 {
  grid-area: 2 / 4 / 3 / 10;
}

#w-node-_0ee1240a-35e3-a6c6-8053-81cd81f4c82e-2dfd4fa5 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_0ee1240a-35e3-a6c6-8053-81cd81f4c830-2dfd4fa5 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-_0ee1240a-35e3-a6c6-8053-81cd81f4c843-2dfd4fa5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0ee1240a-35e3-a6c6-8053-81cd81f4c844-2dfd4fa5 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_5eb985a5-d614-ce9b-c81a-d28d68a8d171-2dfd4fa6 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_5eb985a5-d614-ce9b-c81a-d28d68a8d17b-2dfd4fa6 {
  grid-area: 1 / 2 / 2 / 13;
}

#w-node-_0d84cb93-d709-332d-5b98-fd7fb30cf6b7-2dfd4fa6 {
  grid-area: 1 / 1 / 2 / 5;
  place-self: end start;
}

#w-node-_9a50f700-7b97-c0d6-fe7f-bc0237305b7f-2dfd4fa6 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_872be35a-7e14-8bc0-dbbb-6c1ce573ca4a-2dfd4fa7 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_872be35a-7e14-8bc0-dbbb-6c1ce573ca54-2dfd4fa7 {
  grid-area: 1 / 2 / 2 / 13;
}

#w-node-_0fee49f4-5744-fa3f-ef09-72171167f149-2dfd4fa7 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-d601dd0c-dd34-ab67-5b5b-842fcd7291a8-2dfd4fa7 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-_2009b46f-474e-27f2-7eab-ec833139ce83-2dfd4fa7 {
  grid-area: 2 / 7 / 3 / 12;
}

#w-node-b0db1ba4-f646-6e39-f0df-63f263027e4c-2dfd4fa7 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-b0db1ba4-f646-6e39-f0df-63f263027e4e-2dfd4fa7 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-b0db1ba4-f646-6e39-f0df-63f263027e52-2dfd4fa7 {
  grid-area: 1 / 1 / 2 / 4;
  place-self: end start;
}

#w-node-b0db1ba4-f646-6e39-f0df-63f263027e54-2dfd4fa7 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fa8 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fa8 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fa8 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_31971741-9dbe-3fc1-d501-33b484c3a1d7-2dfd4faa {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_4252ecdf-5698-bd87-cf4e-037707bf5c1a-2dfd4faa {
  grid-area: 1 / 2 / 2 / 10;
}

#w-node-_2e999351-c054-a0db-4e17-27b9abb8d943-2dfd4faa, #w-node-f54949aa-a824-53d6-1904-3e581d3fe07b-2dfd4faa, #w-node-_78888725-2662-fbf1-1ee9-d3db7cfd5503-2dfd4faa, #w-node-ebc9ed76-7de2-5dcd-8f5e-33693dbe1e4e-2dfd4faa, #w-node-_3899a5cb-c4a1-62d0-49fd-a697c1de5f28-2dfd4faa, #w-node-b4bf4be2-6115-3e44-ca63-2d6dc103b609-2dfd4faa, #w-node-_71dd2b4d-a5fe-0b79-3733-c1c19d6f7a8f-2dfd4faa, #w-node-d9579b44-5ea3-677e-c4ad-3b86d37403c9-2dfd4faa, #w-node-_08b86297-5453-8a3f-d90c-2a21407271c3-2dfd4faa, #w-node-_9bca9169-51e0-8021-07ec-fede7d1912b0-2dfd4faa, #w-node-_5a804ecd-4371-5d6c-87ec-cdda4054cdd5-2dfd4faa, #w-node-d27dd0a7-5961-bf44-1247-5112e2453da5-2dfd4faa, #w-node-_61242594-2d1c-615a-bbbf-906a3a8cebec-2dfd4faa, #w-node-d5f343d7-127b-bb71-3c60-93e60c10fa79-2dfd4faa, #w-node-_53073890-d658-feca-618d-a93710efa15d-2dfd4faa, #w-node-dc57c7ce-7665-efa2-e32a-8b0cc1ef2a9c-2dfd4faa, #w-node-_5893f3d8-8380-8f87-a2df-49642fd75f2b-2dfd4faa, #w-node-_8775b760-a006-52d6-e182-304eb5f38871-2dfd4faa, #w-node-_793e3933-b7f9-719d-410a-26a577d226f0-2dfd4faa, #w-node-_2e999351-c054-a0db-4e17-27b9abb8d957-2dfd4faa {
  justify-self: center;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4faa {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4faa {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4faa {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_31971741-9dbe-3fc1-d501-33b484c3a1d7-2dfd4fab {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_4252ecdf-5698-bd87-cf4e-037707bf5c1a-2dfd4fab {
  grid-area: 1 / 2 / 2 / 10;
}

#w-node-_17e8e9b2-12e6-e741-a1dd-d953d89914ce-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89914d4-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89914d9-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89914dc-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89914e2-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89914e7-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89914ea-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89914f0-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89914f5-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89914f8-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89914fe-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991503-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991506-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899150c-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991511-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991514-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899151a-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899151f-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991522-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991528-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899152d-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991530-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991536-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899153b-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899153e-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991544-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991549-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899154c-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991552-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991557-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899155a-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991560-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991565-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991568-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899156e-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991573-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991576-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899157c-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991581-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991584-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899158a-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899158f-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991592-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991598-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899159d-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915a0-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915a6-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915ab-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915ae-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915b4-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915b9-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915bc-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915c2-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915c7-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915ca-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915d0-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915d5-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915d8-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915de-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915e3-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915e6-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915ec-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915f1-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915f4-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915fa-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89915ff-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991602-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991608-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899160d-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991610-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991616-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899161b-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899161e-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991624-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991629-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899162c-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991632-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991637-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899163a-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991640-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991645-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991648-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899164e-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991653-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991656-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899165c-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991661-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991664-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899166a-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899166f-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991672-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991678-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899167d-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991680-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991686-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899168b-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899168e-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991694-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991699-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899169c-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916a2-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916a7-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916aa-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916b0-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916b5-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916b8-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916be-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916c3-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916c6-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916cc-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916d1-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916d4-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916da-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916df-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916e2-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916e8-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916ed-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916f0-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916f6-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916fb-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d89916fe-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991704-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991709-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899170c-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991712-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991717-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899171a-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991720-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991725-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991728-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899172e-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991733-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991736-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d899173c-2dfd4fab, #w-node-_17e8e9b2-12e6-e741-a1dd-d953d8991741-2dfd4fab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fab {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fab {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fab {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_4252ecdf-5698-bd87-cf4e-037707bf5c1a-2dfd4fac {
  grid-area: 1 / 2 / 2 / 10;
}

#w-node-_3aa30cf6-7b5d-0469-8b9b-503b6889dea3-2dfd4fac, #w-node-_3aa30cf6-7b5d-0469-8b9b-503b6889dea4-2dfd4fac {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fad {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fad {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fad {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-ddef330a-2f1b-e43b-57f7-0d92c17a25c8-2dfd4fae {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_55902074-f531-460a-1f5a-7ca2fa045fb5-2dfd4fae {
  grid-row: span 2 / span 2;
}

#w-node-_10d1a689-cca0-b7a7-320b-219689a24e44-2dfd4fae {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_10d1a689-cca0-b7a7-320b-219689a24e45-2dfd4fae {
  grid-row: span 2 / span 2;
}

#w-node-_10d1a689-cca0-b7a7-320b-219689a24e4b-2dfd4fae {
  grid-column: span 2 / span 2;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fae {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fae {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fae {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4faf {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4faf {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4faf {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fb0 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fb0 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fb0 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-e6d0b8bc-6631-32f1-c3a3-3e1dcf629117-2dfd4fb1 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_42f2b25b-ecb1-066b-a7f6-5a16a30bc232-2dfd4fb1 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_42f2b25b-ecb1-066b-a7f6-5a16a30bc233-2dfd4fb1 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-_9b0bfffc-60d9-1d38-55d7-7fde5a7d2753-2dfd4fb1 {
  grid-area: span 1 / span 7 / span 1 / span 7;
}

#w-node-_8651b063-b03d-a8ee-37b2-90547e52a4b0-2dfd4fb1 {
  place-self: start;
}

#w-node-_28fb9e4a-2856-3dad-2f49-0c1fed34fda6-2dfd4fb1 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-f01ca369-cdc6-b1ca-71a9-1399970a3cf7-2dfd4fb1 {
  grid-area: 2 / 7 / 3 / 10;
}

#w-node-_6abcea50-4883-a596-3ccd-93bc3c1fa711-2dfd4fb1 {
  place-self: start;
}

#w-node-_6abcea50-4883-a596-3ccd-93bc3c1fa713-2dfd4fb1 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_6abcea50-4883-a596-3ccd-93bc3c1fa715-2dfd4fb1 {
  grid-area: 2 / 7 / 3 / 10;
}

#w-node-_5daffcbf-1389-ce26-454e-026e39e731aa-2dfd4fb1 {
  place-self: start;
}

#w-node-_5daffcbf-1389-ce26-454e-026e39e731ac-2dfd4fb1 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_5daffcbf-1389-ce26-454e-026e39e731ae-2dfd4fb1 {
  grid-area: 2 / 7 / 3 / 10;
}

#w-node-d849e1ad-ea90-bf72-c703-f25277f00f0f-2dfd4fb1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b914d534-0c41-bd98-47d7-16f2398be3d4-2dfd4fb1 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-b914d534-0c41-bd98-47d7-16f2398be3d6-2dfd4fb1 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-d8aacd49-f7cd-82d5-e22a-b869218ce1d0-2dfd4fb1 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-d5749ab3-154f-843f-c2ea-5442b44464f1-2dfd4fb1 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-d5749ab3-154f-843f-c2ea-5442b44464f3-2dfd4fb1 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-d5749ab3-154f-843f-c2ea-5442b44464f4-2dfd4fb1 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_53d7ac61-04e4-cb41-b1d6-8bb5c046d3ce-2dfd4fb1 {
  grid-area: 1 / 1 / 2 / 5;
  justify-self: center;
}

#w-node-_53d7ac61-04e4-cb41-b1d6-8bb5c046d3d4-2dfd4fb1 {
  grid-area: 1 / 5 / 2 / 9;
  justify-self: center;
}

#w-node-_53d7ac61-04e4-cb41-b1d6-8bb5c046d3da-2dfd4fb1 {
  grid-area: 1 / 9 / 2 / 13;
  justify-self: center;
}

#w-node-_1743d41e-a8b9-3d27-b721-2a07abff6501-2dfd4fb1 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_1743d41e-a8b9-3d27-b721-2a07abff6503-2dfd4fb1 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-_1743d41e-a8b9-3d27-b721-2a07abff6504-2dfd4fb1 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_82727c2a-87c7-86d1-12dd-78965861806c-2dfd4fb1 {
  grid-area: span 1 / span 7 / span 1 / span 7;
}

#w-node-_82727c2a-87c7-86d1-12dd-789658618072-2dfd4fb1 {
  grid-area: 1 / 1 / 2 / 13;
  place-self: auto;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fb3 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fb3 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fb3 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fb4 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fb4 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fb4 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-ddef330a-2f1b-e43b-57f7-0d92c17a25c8-2dfd4fb5 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_55902074-f531-460a-1f5a-7ca2fa045fb5-2dfd4fb5 {
  grid-row: span 2 / span 2;
}

#w-node-_10d1a689-cca0-b7a7-320b-219689a24e44-2dfd4fb5 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_10d1a689-cca0-b7a7-320b-219689a24e45-2dfd4fb5 {
  grid-row: span 2 / span 2;
}

#w-node-_10d1a689-cca0-b7a7-320b-219689a24e4b-2dfd4fb5 {
  grid-column: span 2 / span 2;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fb5 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fb5 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fb5 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-ddef330a-2f1b-e43b-57f7-0d92c17a25c8-2dfd4fc9 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_55902074-f531-460a-1f5a-7ca2fa045fb5-2dfd4fc9 {
  grid-row: span 2 / span 2;
}

#w-node-_10d1a689-cca0-b7a7-320b-219689a24e44-2dfd4fc9 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_10d1a689-cca0-b7a7-320b-219689a24e45-2dfd4fc9 {
  grid-row: span 2 / span 2;
}

#w-node-_10d1a689-cca0-b7a7-320b-219689a24e4b-2dfd4fc9 {
  grid-column: span 2 / span 2;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fc9 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fc9 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fc9 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-ddef330a-2f1b-e43b-57f7-0d92c17a25c8-2dfd4fde {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_55902074-f531-460a-1f5a-7ca2fa045fb5-2dfd4fde {
  grid-row: span 2 / span 2;
}

#w-node-_10d1a689-cca0-b7a7-320b-219689a24e44-2dfd4fde {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_10d1a689-cca0-b7a7-320b-219689a24e45-2dfd4fde {
  grid-row: span 2 / span 2;
}

#w-node-_10d1a689-cca0-b7a7-320b-219689a24e4b-2dfd4fde {
  grid-column: span 2 / span 2;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fde {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fde {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fde {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-ddef330a-2f1b-e43b-57f7-0d92c17a25c8-2dfd4fdf {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_55902074-f531-460a-1f5a-7ca2fa045fb5-2dfd4fdf {
  grid-row: span 2 / span 2;
}

#w-node-_10d1a689-cca0-b7a7-320b-219689a24e44-2dfd4fdf {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_10d1a689-cca0-b7a7-320b-219689a24e45-2dfd4fdf {
  grid-row: span 2 / span 2;
}

#w-node-_10d1a689-cca0-b7a7-320b-219689a24e4b-2dfd4fdf {
  grid-column: span 2 / span 2;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fdf {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fdf {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fdf {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-ddef330a-2f1b-e43b-57f7-0d92c17a25c8-2dfd4fe0 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_55902074-f531-460a-1f5a-7ca2fa045fb5-2dfd4fe0 {
  grid-row: span 2 / span 2;
}

#w-node-_10d1a689-cca0-b7a7-320b-219689a24e44-2dfd4fe0 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_10d1a689-cca0-b7a7-320b-219689a24e45-2dfd4fe0 {
  grid-row: span 2 / span 2;
}

#w-node-_10d1a689-cca0-b7a7-320b-219689a24e4b-2dfd4fe0 {
  grid-column: span 2 / span 2;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fe0 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fe0 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fe0 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fe1 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fe1 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fe1 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_480551d7-2205-75aa-5804-2c67167c2768-2dfd4fe2 {
  grid-area: 1 / 2 / 2 / 10;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fe2 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fe2 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fe2 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-e6d0b8bc-6631-32f1-c3a3-3e1dcf629117-2dfd4fe4 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_42f2b25b-ecb1-066b-a7f6-5a16a30bc232-2dfd4fe4 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_42f2b25b-ecb1-066b-a7f6-5a16a30bc233-2dfd4fe4 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-_9b0bfffc-60d9-1d38-55d7-7fde5a7d2753-2dfd4fe4 {
  grid-area: span 1 / span 7 / span 1 / span 7;
}

#w-node-_8651b063-b03d-a8ee-37b2-90547e52a4b0-2dfd4fe4 {
  place-self: start;
}

#w-node-_28fb9e4a-2856-3dad-2f49-0c1fed34fda6-2dfd4fe4 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-f01ca369-cdc6-b1ca-71a9-1399970a3cf7-2dfd4fe4 {
  grid-area: 2 / 7 / 3 / 10;
}

#w-node-_6abcea50-4883-a596-3ccd-93bc3c1fa711-2dfd4fe4 {
  place-self: start;
}

#w-node-_6abcea50-4883-a596-3ccd-93bc3c1fa713-2dfd4fe4 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_6abcea50-4883-a596-3ccd-93bc3c1fa715-2dfd4fe4 {
  grid-area: 2 / 7 / 3 / 10;
}

#w-node-_5daffcbf-1389-ce26-454e-026e39e731aa-2dfd4fe4 {
  place-self: start;
}

#w-node-_5daffcbf-1389-ce26-454e-026e39e731ac-2dfd4fe4 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_5daffcbf-1389-ce26-454e-026e39e731ae-2dfd4fe4 {
  grid-area: 2 / 7 / 3 / 10;
}

#w-node-_1743d41e-a8b9-3d27-b721-2a07abff6501-2dfd4fe4 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_1743d41e-a8b9-3d27-b721-2a07abff6503-2dfd4fe4 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-_1743d41e-a8b9-3d27-b721-2a07abff6504-2dfd4fe4 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-d849e1ad-ea90-bf72-c703-f25277f00f0f-2dfd4fe4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b914d534-0c41-bd98-47d7-16f2398be3d4-2dfd4fe4 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-b914d534-0c41-bd98-47d7-16f2398be3d6-2dfd4fe4 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-d8aacd49-f7cd-82d5-e22a-b869218ce1d0-2dfd4fe4 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-d5749ab3-154f-843f-c2ea-5442b44464f1-2dfd4fe4 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-d5749ab3-154f-843f-c2ea-5442b44464f3-2dfd4fe4 {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-d5749ab3-154f-843f-c2ea-5442b44464f4-2dfd4fe4 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17b5-2dfd4fe5 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17b6-2dfd4fe5 {
  grid-row: span 2 / span 2;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17bc-2dfd4fe5 {
  grid-column: span 2 / span 2;
}

#w-node-a83615ab-4221-600e-bcf6-2ea5d49d08f8-2dfd4fe5 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-a83615ab-4221-600e-bcf6-2ea5d49d08f9-2dfd4fe5 {
  grid-row: span 2 / span 2;
}

#w-node-a83615ab-4221-600e-bcf6-2ea5d49d08ff-2dfd4fe5 {
  grid-column: span 2 / span 2;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fe5 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fe5 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fe5 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17b5-2dfd4fe6 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17b6-2dfd4fe6 {
  grid-row: span 2 / span 2;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17bc-2dfd4fe6 {
  grid-column: span 2 / span 2;
}

#w-node-_22300342-4b64-2393-4e47-1780eb1a5b3a-2dfd4fe6 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_22300342-4b64-2393-4e47-1780eb1a5b41-2dfd4fe6 {
  grid-column: span 2 / span 2;
}

#w-node-a83615ab-4221-600e-bcf6-2ea5d49d08f8-2dfd4fe6 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-a83615ab-4221-600e-bcf6-2ea5d49d08f9-2dfd4fe6 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-a83615ab-4221-600e-bcf6-2ea5d49d08ff-2dfd4fe6 {
  grid-column: span 2 / span 2;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fe6 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fe6 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fe6 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17b5-2dfd4fe7 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17b6-2dfd4fe7 {
  grid-row: span 3 / span 3;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17ba-2dfd4fe7 {
  grid-row: span 2 / span 2;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17bc-2dfd4fe7 {
  grid-column: span 2 / span 2;
}

#w-node-_22300342-4b64-2393-4e47-1780eb1a5b3a-2dfd4fe7 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_22300342-4b64-2393-4e47-1780eb1a5b41-2dfd4fe7 {
  grid-column: span 2 / span 2;
}

#w-node-a83615ab-4221-600e-bcf6-2ea5d49d08f8-2dfd4fe7 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-a83615ab-4221-600e-bcf6-2ea5d49d08f9-2dfd4fe7 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fe7 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fe7 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fe7 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17b5-2dfd4fe8 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17b6-2dfd4fe8 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17bc-2dfd4fe8 {
  grid-column: span 2 / span 2;
}

#w-node-_22300342-4b64-2393-4e47-1780eb1a5b3a-2dfd4fe8 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_22300342-4b64-2393-4e47-1780eb1a5b41-2dfd4fe8 {
  grid-column: span 2 / span 2;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fe8 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fe8 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fe8 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17b5-2dfd4fe9 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17b6-2dfd4fe9 {
  grid-row: span 2 / span 2;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17bc-2dfd4fe9 {
  grid-column: span 2 / span 2;
}

#w-node-_9256fb16-59c5-e807-a12a-bf2bf7d2a2b3-2dfd4fe9 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_9256fb16-59c5-e807-a12a-bf2bf7d2a2b4-2dfd4fe9 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_9256fb16-59c5-e807-a12a-bf2bf7d2a2ba-2dfd4fe9 {
  grid-column: span 2 / span 2;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fe9 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fe9 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fe9 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17b5-2dfd4fea {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17b6-2dfd4fea {
  grid-row: span 3 / span 3;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17b8-2dfd4fea {
  grid-row: span 2 / span 2;
}

#w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17bc-2dfd4fea {
  grid-column: span 2 / span 2;
}

#w-node-_22300342-4b64-2393-4e47-1780eb1a5b3a-2dfd4fea {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_22300342-4b64-2393-4e47-1780eb1a5b41-2dfd4fea {
  grid-column: span 2 / span 2;
}

#w-node-a83615ab-4221-600e-bcf6-2ea5d49d08f8-2dfd4fea {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-a83615ab-4221-600e-bcf6-2ea5d49d08f9-2dfd4fea {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-a83615ab-4221-600e-bcf6-2ea5d49d08ff-2dfd4fea {
  grid-column: span 2 / span 2;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fea {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fea {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fea {
  grid-area: 1 / 7 / 2 / 12;
}

@media screen and (min-width: 1920px) {
  #w-node-_24b5f8af-6ec9-333e-1d70-b3216139ed55-2dfd4f46, #w-node-_1385e3ee-f631-4938-e5b2-444c0a85930b-2dfd4f46 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-fb647887-c1df-8290-bbac-092941bdeffb-2dfd4fa0, #w-node-_46b7cabb-fa5b-f8a5-7fbb-9487a21089b3-2dfd4fa0, #w-node-_82727c2a-87c7-86d1-12dd-789658618072-2dfd4fb1 {
    grid-area: 1 / 1 / 2 / 13;
  }
}

@media screen and (min-width: 1440px) {
  #w-node-_82727c2a-87c7-86d1-12dd-78965861806c-2dfd4fb1 {
    grid-area: span 1 / span 5 / span 1 / span 5;
  }

  #w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17bc-2dfd4fe5, #w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17bc-2dfd4fe6, #w-node-_22300342-4b64-2393-4e47-1780eb1a5b41-2dfd4fe6 {
    grid-row: span 2 / span 2;
  }

  #w-node-a83615ab-4221-600e-bcf6-2ea5d49d08f9-2dfd4fe6 {
    grid-column: span 2 / span 2;
  }

  #w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17bc-2dfd4fe7, #w-node-_22300342-4b64-2393-4e47-1780eb1a5b41-2dfd4fe7 {
    grid-row: span 2 / span 2;
  }

  #w-node-a83615ab-4221-600e-bcf6-2ea5d49d08f9-2dfd4fe7 {
    grid-column: span 2 / span 2;
  }

  #w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17bc-2dfd4fe8, #w-node-_22300342-4b64-2393-4e47-1780eb1a5b41-2dfd4fe8, #w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17bc-2dfd4fe9, #w-node-_5280bdeb-97c6-872c-bc92-a8e0cbae17bc-2dfd4fea, #w-node-_22300342-4b64-2393-4e47-1780eb1a5b41-2dfd4fea {
    grid-row: span 2 / span 2;
  }

  #w-node-a83615ab-4221-600e-bcf6-2ea5d49d08f9-2dfd4fea {
    grid-column: span 2 / span 2;
  }
}

@media screen and (max-width: 991px) {
  #w-node-de73c2ec-1b77-84f8-7241-4eddecd3c79d-2dfd4f46 {
    place-self: center;
  }

  #w-node-_24b5f8af-6ec9-333e-1d70-b3216139ed55-2dfd4f46 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    align-self: start;
  }

  #w-node-_24b5f8af-6ec9-333e-1d70-b3216139ed58-2dfd4f46 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-_24b5f8af-6ec9-333e-1d70-b3216139ed20-2dfd4f46 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: end;
  }

  #w-node-_24b5f8af-6ec9-333e-1d70-b3216139ed14-2dfd4f46 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_55567e8a-a20f-e3da-5e17-1dabbb2cb744-2dfd4f46, #w-node-_55567e8a-a20f-e3da-5e17-1dabbb2cb745-2dfd4f46 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_24078395-eca7-911e-dc8f-204f1b0ab025-2dfd4f46 {
    grid-area: span 1 / span 5 / span 1 / span 5;
  }

  #w-node-_1385e3ee-f631-4938-e5b2-444c0a85930b-2dfd4f46 {
    grid-column: span 1 / span 1;
  }

  #w-node-_52f56b81-916f-adeb-1b91-e35d7f428649-2dfd4f46, #w-node-d7aea7e2-46d3-b275-1846-afd08a6ef49b-2dfd4f46 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_13cad7f7-c62f-1075-7c32-a9cd278b0193-2dfd4f46, #w-node-_13cad7f7-c62f-1075-7c32-a9cd278b019b-2dfd4f46, #w-node-_13cad7f7-c62f-1075-7c32-a9cd278b01a3-2dfd4f46, #w-node-_13cad7f7-c62f-1075-7c32-a9cd278b01ab-2dfd4f46, #w-node-_13cad7f7-c62f-1075-7c32-a9cd278b01b3-2dfd4f46, #w-node-_13cad7f7-c62f-1075-7c32-a9cd278b01bb-2dfd4f46 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_2b94833e-b2a0-8e98-de6b-0d716bec85a4-2dfd4f46, #w-node-b5918466-da68-9b61-b331-fd8407b517da-2dfd4f46 {
    grid-column: span 1 / span 1;
  }

  #w-node-_9b49f02c-821e-0da1-83d9-4ca362744eae-2dfd4f46, #w-node-b5918466-da68-9b61-b331-fd8407b517dc-2dfd4f46 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e0135e94-4481-f300-7dd9-d9ac89e2de10-2dfd4f46 {
    grid-column: 1 / 2;
  }

  #w-node-_429c0794-60d3-2355-2090-5683552fddca-2dfd4f46 {
    grid-column: 2 / 3;
  }

  #w-node-_04d5cdbd-323c-144a-70a4-6a9c4a310368-2dfd4f46 {
    grid-column: 1 / 3;
  }

  #w-node-e91c8520-5aab-8cde-3e66-cd1010bbafdf-2dfd4f46 {
    grid-column: 1 / 2;
  }

  #w-node-e91c8520-5aab-8cde-3e66-cd1010bbafe1-2dfd4f46 {
    grid-column: 2 / 3;
  }

  #w-node-e91c8520-5aab-8cde-3e66-cd1010bbafe6-2dfd4f46 {
    grid-column: 1 / 3;
  }

  #w-node-fb5ac767-c8f7-c658-9a35-44c54ee0b7b4-2dfd4f46 {
    grid-column: 1 / 2;
  }

  #w-node-fb5ac767-c8f7-c658-9a35-44c54ee0b7b6-2dfd4f46 {
    grid-column: 2 / 3;
  }

  #w-node-fb5ac767-c8f7-c658-9a35-44c54ee0b7bb-2dfd4f46 {
    grid-column: 1 / 3;
  }

  #w-node-_912a80a4-7288-ff41-a5c5-72625e8d73a6-2dfd4f46 {
    grid-column: span 1 / span 1;
  }

  #w-node-_912a80a4-7288-ff41-a5c5-72625e8d73a8-2dfd4f46, #w-node-_912a80a4-7288-ff41-a5c5-72625e8d73a9-2dfd4f46 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e3beb526-72bc-1fac-74a3-96f3e6bcdbad-ae2af369, #w-node-_1c22fde5-0ad5-ec3f-423e-7fe47a21251b-ae2af369, #w-node-_4df02dfa-eb42-a8f2-a0a9-8f63158ff7da-ae2af369 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e6d0b8bc-6631-32f1-c3a3-3e1dcf629117-2dfd4fa0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_42f2b25b-ecb1-066b-a7f6-5a16a30bc230-2dfd4fa0 {
    grid-column: span 1 / span 1;
  }

  #w-node-_42f2b25b-ecb1-066b-a7f6-5a16a30bc232-2dfd4fa0, #w-node-_42f2b25b-ecb1-066b-a7f6-5a16a30bc233-2dfd4fa0, #w-node-_28fb9e4a-2856-3dad-2f49-0c1fed34fda6-2dfd4fa0, #w-node-f01ca369-cdc6-b1ca-71a9-1399970a3cf7-2dfd4fa0, #w-node-_6abcea50-4883-a596-3ccd-93bc3c1fa713-2dfd4fa0, #w-node-_6abcea50-4883-a596-3ccd-93bc3c1fa715-2dfd4fa0, #w-node-_5daffcbf-1389-ce26-454e-026e39e731ac-2dfd4fa0, #w-node-_5daffcbf-1389-ce26-454e-026e39e731ae-2dfd4fa0, #w-node-_4a4b2559-f806-bf77-3531-942ec17bf615-2dfd4fa0, #w-node-_4a4b2559-f806-bf77-3531-942ec17bf617-2dfd4fa0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1de2af9c-4e15-9001-9eb1-3bc898a6f51b-2dfd4fa0 {
    grid-column: span 1 / span 1;
  }

  #w-node-_1de2af9c-4e15-9001-9eb1-3bc898a6f51d-2dfd4fa0, #w-node-fb647887-c1df-8290-bbac-092941bdeffb-2dfd4fa0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_46b7cabb-fa5b-f8a5-7fbb-9487a21089ad-2dfd4fa0 {
    grid-column: span 1 / span 1;
  }

  #w-node-_46b7cabb-fa5b-f8a5-7fbb-9487a21089b3-2dfd4fa0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_2b9e841d-65e3-1157-7c18-2000c1228452-2dfd4fa0 {
    grid-column: span 1 / span 1;
  }

  #w-node-_2b9e841d-65e3-1157-7c18-2000c1228454-2dfd4fa0, #w-node-_2b9e841d-65e3-1157-7c18-2000c1228455-2dfd4fa0, #w-node-_2b9e841d-65e3-1157-7c18-2000c1228457-2dfd4fa0, #w-node-_2b9e841d-65e3-1157-7c18-2000c1228468-2dfd4fa0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_8d6a5652-1898-4495-d53a-fbd04cb1cec4-2dfd4fa0 {
    grid-column: span 1 / span 1;
  }

  #w-node-_8d6a5652-1898-4495-d53a-fbd04cb1cec6-2dfd4fa0, #w-node-_8d6a5652-1898-4495-d53a-fbd04cb1cec7-2dfd4fa0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b914d534-0c41-bd98-47d7-16f2398be3d4-2dfd4fa0 {
    grid-column: span 1 / span 1;
  }

  #w-node-b914d534-0c41-bd98-47d7-16f2398be3d6-2dfd4fa0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_31971741-9dbe-3fc1-d501-33b484c3a1d7-2dfd4fa1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_4252ecdf-5698-bd87-cf4e-037707bf5c1a-2dfd4fa1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fa2 {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fa2, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fa2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_31971741-9dbe-3fc1-d501-33b484c3a1d7-2dfd4fa3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_6bf7836c-9522-446a-4f29-daf4a0493a2c-2dfd4fa3 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_4252ecdf-5698-bd87-cf4e-037707bf5c1a-2dfd4fa3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_76665c4b-a640-5816-cdd7-6ea97283707e-2dfd4fa5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_76665c4b-a640-5816-cdd7-6ea972837088-2dfd4fa5, #w-node-_0bf5471f-4ad2-2e77-9a4c-e0ed13ff6546-2dfd4fa5, #w-node-_03229fc7-c127-5904-bb54-433820bbd35c-2dfd4fa5, #w-node-df151c49-c23b-af8c-1c42-f18808f5ab90-2dfd4fa5, #w-node-_4032d3cf-b56f-ba80-3746-f4b44073a4b6-2dfd4fa5, #w-node-_9028c278-f73e-542e-5fc6-019349db465e-2dfd4fa5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0ee1240a-35e3-a6c6-8053-81cd81f4c82e-2dfd4fa5 {
    grid-column: span 1 / span 1;
  }

  #w-node-_0ee1240a-35e3-a6c6-8053-81cd81f4c830-2dfd4fa5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5eb985a5-d614-ce9b-c81a-d28d68a8d171-2dfd4fa6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_5eb985a5-d614-ce9b-c81a-d28d68a8d17b-2dfd4fa6, #w-node-_0d84cb93-d709-332d-5b98-fd7fb30cf6b7-2dfd4fa6, #w-node-_9a50f700-7b97-c0d6-fe7f-bc0237305b7f-2dfd4fa6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_872be35a-7e14-8bc0-dbbb-6c1ce573ca4a-2dfd4fa7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_872be35a-7e14-8bc0-dbbb-6c1ce573ca54-2dfd4fa7, #w-node-_0fee49f4-5744-fa3f-ef09-72171167f149-2dfd4fa7, #w-node-d601dd0c-dd34-ab67-5b5b-842fcd7291a8-2dfd4fa7, #w-node-_2009b46f-474e-27f2-7eab-ec833139ce83-2dfd4fa7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b0db1ba4-f646-6e39-f0df-63f263027e4c-2dfd4fa7 {
    grid-column: span 1 / span 1;
  }

  #w-node-b0db1ba4-f646-6e39-f0df-63f263027e4e-2dfd4fa7, #w-node-b0db1ba4-f646-6e39-f0df-63f263027e52-2dfd4fa7, #w-node-b0db1ba4-f646-6e39-f0df-63f263027e54-2dfd4fa7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fa8 {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fa8, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fa8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_31971741-9dbe-3fc1-d501-33b484c3a1d7-2dfd4faa {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_4252ecdf-5698-bd87-cf4e-037707bf5c1a-2dfd4faa {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4faa {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4faa, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4faa {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_31971741-9dbe-3fc1-d501-33b484c3a1d7-2dfd4fab {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_4252ecdf-5698-bd87-cf4e-037707bf5c1a-2dfd4fab {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fab {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fab, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fab, #w-node-_4252ecdf-5698-bd87-cf4e-037707bf5c1a-2dfd4fac, #w-node-_3aa30cf6-7b5d-0469-8b9b-503b6889dea3-2dfd4fac, #w-node-_3aa30cf6-7b5d-0469-8b9b-503b6889dea4-2dfd4fac {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fad {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fad, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fad {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fae {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fae, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fae {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4faf {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4faf, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4faf {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fb0 {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fb0, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fb0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e6d0b8bc-6631-32f1-c3a3-3e1dcf629117-2dfd4fb1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_42f2b25b-ecb1-066b-a7f6-5a16a30bc232-2dfd4fb1, #w-node-_42f2b25b-ecb1-066b-a7f6-5a16a30bc233-2dfd4fb1, #w-node-_28fb9e4a-2856-3dad-2f49-0c1fed34fda6-2dfd4fb1, #w-node-f01ca369-cdc6-b1ca-71a9-1399970a3cf7-2dfd4fb1, #w-node-_6abcea50-4883-a596-3ccd-93bc3c1fa713-2dfd4fb1, #w-node-_6abcea50-4883-a596-3ccd-93bc3c1fa715-2dfd4fb1, #w-node-_5daffcbf-1389-ce26-454e-026e39e731ac-2dfd4fb1, #w-node-_5daffcbf-1389-ce26-454e-026e39e731ae-2dfd4fb1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b914d534-0c41-bd98-47d7-16f2398be3d4-2dfd4fb1 {
    grid-column: span 1 / span 1;
  }

  #w-node-b914d534-0c41-bd98-47d7-16f2398be3d6-2dfd4fb1, #w-node-d8aacd49-f7cd-82d5-e22a-b869218ce1d0-2dfd4fb1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d5749ab3-154f-843f-c2ea-5442b44464f1-2dfd4fb1 {
    grid-column: span 1 / span 1;
  }

  #w-node-d5749ab3-154f-843f-c2ea-5442b44464f3-2dfd4fb1, #w-node-d5749ab3-154f-843f-c2ea-5442b44464f4-2dfd4fb1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_53d7ac61-04e4-cb41-b1d6-8bb5c046d3ce-2dfd4fb1, #w-node-_53d7ac61-04e4-cb41-b1d6-8bb5c046d3d4-2dfd4fb1, #w-node-_53d7ac61-04e4-cb41-b1d6-8bb5c046d3da-2dfd4fb1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_1743d41e-a8b9-3d27-b721-2a07abff6501-2dfd4fb1 {
    grid-column: span 1 / span 1;
  }

  #w-node-_1743d41e-a8b9-3d27-b721-2a07abff6503-2dfd4fb1, #w-node-_1743d41e-a8b9-3d27-b721-2a07abff6504-2dfd4fb1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_82727c2a-87c7-86d1-12dd-78965861806c-2dfd4fb1 {
    grid-column: span 1 / span 1;
  }

  #w-node-_82727c2a-87c7-86d1-12dd-789658618072-2dfd4fb1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fb3 {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fb3, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fb3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fb4 {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fb4, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fb4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fb5 {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fb5, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fb5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fc9 {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fc9, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fc9 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fde {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fde, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fde {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fdf {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fdf, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fdf {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fe0 {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fe0, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fe0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fe1 {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fe1, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fe1, #w-node-_480551d7-2205-75aa-5804-2c67167c2768-2dfd4fe2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fe2 {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fe2, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fe2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e6d0b8bc-6631-32f1-c3a3-3e1dcf629117-2dfd4fe4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_42f2b25b-ecb1-066b-a7f6-5a16a30bc232-2dfd4fe4, #w-node-_42f2b25b-ecb1-066b-a7f6-5a16a30bc233-2dfd4fe4, #w-node-_28fb9e4a-2856-3dad-2f49-0c1fed34fda6-2dfd4fe4, #w-node-f01ca369-cdc6-b1ca-71a9-1399970a3cf7-2dfd4fe4, #w-node-_6abcea50-4883-a596-3ccd-93bc3c1fa713-2dfd4fe4, #w-node-_6abcea50-4883-a596-3ccd-93bc3c1fa715-2dfd4fe4, #w-node-_5daffcbf-1389-ce26-454e-026e39e731ac-2dfd4fe4, #w-node-_5daffcbf-1389-ce26-454e-026e39e731ae-2dfd4fe4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1743d41e-a8b9-3d27-b721-2a07abff6501-2dfd4fe4 {
    grid-column: span 1 / span 1;
  }

  #w-node-_1743d41e-a8b9-3d27-b721-2a07abff6503-2dfd4fe4, #w-node-_1743d41e-a8b9-3d27-b721-2a07abff6504-2dfd4fe4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b914d534-0c41-bd98-47d7-16f2398be3d4-2dfd4fe4 {
    grid-column: span 1 / span 1;
  }

  #w-node-b914d534-0c41-bd98-47d7-16f2398be3d6-2dfd4fe4, #w-node-d8aacd49-f7cd-82d5-e22a-b869218ce1d0-2dfd4fe4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d5749ab3-154f-843f-c2ea-5442b44464f1-2dfd4fe4 {
    grid-column: span 1 / span 1;
  }

  #w-node-d5749ab3-154f-843f-c2ea-5442b44464f3-2dfd4fe4, #w-node-d5749ab3-154f-843f-c2ea-5442b44464f4-2dfd4fe4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fe5 {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fe5, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fe5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fe6 {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fe6, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fe6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fe7 {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fe7, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fe7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fe8 {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fe8, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fe8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fe9 {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fe9, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fe9 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f46-2dfd4fea {
    grid-column: span 1 / span 1;
  }

  #w-node-c56c069e-c1fc-f024-e54f-a26709074f48-2dfd4fea, #w-node-e63ba8fc-f61b-6f2a-7fd9-4aa1c0a3ab34-2dfd4fea {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_24b5f8af-6ec9-333e-1d70-b3216139ed20-2dfd4f46 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: end;
  }

  #w-node-_24078395-eca7-911e-dc8f-204f1b0ab025-2dfd4f46 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0ee1240a-35e3-a6c6-8053-81cd81f4c844-2dfd4fa5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9a50f700-7b97-c0d6-fe7f-bc0237305b7f-2dfd4fa6, #w-node-d8aacd49-f7cd-82d5-e22a-b869218ce1d0-2dfd4fb1, #w-node-d5749ab3-154f-843f-c2ea-5442b44464f4-2dfd4fb1, #w-node-_1743d41e-a8b9-3d27-b721-2a07abff6504-2dfd4fb1, #w-node-_1743d41e-a8b9-3d27-b721-2a07abff6504-2dfd4fe4, #w-node-d8aacd49-f7cd-82d5-e22a-b869218ce1d0-2dfd4fe4, #w-node-d5749ab3-154f-843f-c2ea-5442b44464f4-2dfd4fe4 {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-de73c2ec-1b77-84f8-7241-4eddecd3c79d-2dfd4f46 {
    justify-self: start;
  }

  #w-node-_24b5f8af-6ec9-333e-1d70-b3216139ed55-2dfd4f46 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    align-self: start;
  }

  #w-node-_24b5f8af-6ec9-333e-1d70-b3216139ed58-2dfd4f46 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    justify-self: start;
  }

  #w-node-_24b5f8af-6ec9-333e-1d70-b3216139ed14-2dfd4f46, #w-node-_55567e8a-a20f-e3da-5e17-1dabbb2cb744-2dfd4f46 {
    grid-column: span 1 / span 1;
  }

  #w-node-_24078395-eca7-911e-dc8f-204f1b0ab025-2dfd4f46 {
    grid-area: span 1 / span 12 / span 1 / span 12;
  }

  #w-node-_52f56b81-916f-adeb-1b91-e35d7f428649-2dfd4f46 {
    grid-column: span 1 / span 1;
  }

  #w-node-e0135e94-4481-f300-7dd9-d9ac89e2de10-2dfd4f46, #w-node-_429c0794-60d3-2355-2090-5683552fddca-2dfd4f46, #w-node-_04d5cdbd-323c-144a-70a4-6a9c4a310368-2dfd4f46, #w-node-e91c8520-5aab-8cde-3e66-cd1010bbafdf-2dfd4f46, #w-node-e91c8520-5aab-8cde-3e66-cd1010bbafe1-2dfd4f46, #w-node-e91c8520-5aab-8cde-3e66-cd1010bbafe6-2dfd4f46, #w-node-fb5ac767-c8f7-c658-9a35-44c54ee0b7b4-2dfd4f46, #w-node-fb5ac767-c8f7-c658-9a35-44c54ee0b7b6-2dfd4f46, #w-node-fb5ac767-c8f7-c658-9a35-44c54ee0b7bb-2dfd4f46, #w-node-fb647887-c1df-8290-bbac-092941bdeffb-2dfd4fa0, #w-node-_46b7cabb-fa5b-f8a5-7fbb-9487a21089b3-2dfd4fa0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4252ecdf-5698-bd87-cf4e-037707bf5c1a-2dfd4fa1 {
    grid-column: span 2 / span 2;
  }

  #w-node-_6bf7836c-9522-446a-4f29-daf4a0493a2c-2dfd4fa3 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4252ecdf-5698-bd87-cf4e-037707bf5c1a-2dfd4fa3 {
    grid-column: span 2 / span 2;
  }

  #w-node-_76665c4b-a640-5816-cdd7-6ea972837088-2dfd4fa5 {
    grid-column: span 1 / span 1;
  }

  #w-node-_5eb985a5-d614-ce9b-c81a-d28d68a8d17b-2dfd4fa6, #w-node-_872be35a-7e14-8bc0-dbbb-6c1ce573ca54-2dfd4fa7, #w-node-_4252ecdf-5698-bd87-cf4e-037707bf5c1a-2dfd4faa, #w-node-_4252ecdf-5698-bd87-cf4e-037707bf5c1a-2dfd4fab, #w-node-_4252ecdf-5698-bd87-cf4e-037707bf5c1a-2dfd4fac {
    grid-column: span 2 / span 2;
  }

  #w-node-_82727c2a-87c7-86d1-12dd-789658618072-2dfd4fb1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_480551d7-2205-75aa-5804-2c67167c2768-2dfd4fe2 {
    grid-column: span 2 / span 2;
  }
}


@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: 'Thunder';
  src: url('../fonts/Thunder-SemiBoldLC.woff2') format('woff2'), url('../fonts/Thunder-SemiBoldLC.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Redhatdisplay Variablefont Wght';
  src: url('../fonts/RedHatDisplay-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Univers';
  src: url('../fonts/UniversRegular.ttf') format('truetype'), url('../fonts/UniversCnRg.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Univers';
  src: url('../fonts/UniversCnBold.ttf') format('truetype'), url('../fonts/UniversBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Univers';
  src: url('../fonts/UniversLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}