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

@font-face {
  font-family: Barlowsharp;
  src: url('../fonts/BarlowSharp-BoldItalic.woff2') format("woff2"), url('../fonts/BarlowSharp-BoldItalic.woff') format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Barlowsharp;
  src: url('../fonts/BarlowSharp-ExtraBold.woff2') format("woff2"), url('../fonts/BarlowSharp-ExtraBold.woff') format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlowsharp;
  src: url('../fonts/BarlowSharp-SemiBoldItalic.woff2') format("woff2"), url('../fonts/BarlowSharp-SemiBoldItalic.woff') format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Barlowsharp;
  src: url('../fonts/BarlowSharp-SemiBold.woff2') format("woff2"), url('../fonts/BarlowSharp-SemiBold.woff') format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Barlowsharp;
  src: url('../fonts/BarlowSharp-ExtraBoldItalic.woff2') format("woff2"), url('../fonts/BarlowSharp-ExtraBoldItalic.woff') format("woff");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Inter Display;
  src: url('../fonts/InterDisplay-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --lightest-blue: #f0f1f2;
  --primary-blue-500: #061662;
  --light-blue: #e6e7ed;
  --white: white;
  --secondary-blue-500: #141dea;
  --secondary-blue-400: #0059ff;
  --medium-light-blue: #dfe0e9;
  --grey-400: #818494;
  --grey-500: #575b71;
  --lighter-grey: #c6c9da;
}

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

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

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

h1 {
  color: var(--primary-blue-500);
  text-align: left;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Barlowsharp, sans-serif;
  font-size: 20vw;
  font-weight: 800;
  line-height: 71%;
  display: block;
}

h2 {
  letter-spacing: -.25vw;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 1.5vw;
  font-family: Barlowsharp, sans-serif;
  font-size: 17vw;
  font-weight: 800;
  line-height: 66%;
}

h3 {
  color: var(--primary-blue-500);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Barlowsharp, sans-serif;
  font-size: 5rem;
  font-weight: 700;
  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-bottom: 0;
  font-size: 1.125rem;
  line-height: 150%;
}

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

a:hover {
  opacity: .6;
}

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

img {
  object-fit: cover;
  border-radius: .375rem;
  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;
}

.section {
  grid-row-gap: 1rem;
  background-color: var(--lightest-blue);
  border-radius: .75rem;
  flex-direction: column;
  min-height: 32px;
  margin-top: 0;
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: flex;
  position: relative;
}

.section.home-hero-section {
  grid-row-gap: 2.5rem;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100svh;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  overflow: hidden;
}

.section.client-testimonials-section {
  background-color: var(--light-blue);
  border-radius: .75rem;
  padding-top: 15rem;
  padding-bottom: 15rem;
  overflow: hidden;
}

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

.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.numbers-section {
  background-color: var(--primary-blue-500);
  color: var(--white);
  overflow: hidden;
}

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

.section.home-hero-section {
  grid-row-gap: 1.5rem;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100svh;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  overflow: hidden;
}

.section.cta-section {
  z-index: 1;
  grid-row-gap: 1.5rem;
  background-color: var(--secondary-blue-500);
  color: var(--white);
  border-radius: .75rem;
  overflow: hidden;
}

.section.work-hero-section {
  grid-row-gap: 1.5rem;
  padding-top: 8.5rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.section.about-hero-section {
  grid-row-gap: 3rem;
  padding-top: 14rem;
}

.section.fullwidth-image-section {
  z-index: -3;
  border-radius: 0;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 100vw;
  height: 90svh;
  padding-top: 0;
  padding-bottom: .2rem;
  overflow: hidden;
}

.section.services-hero-section {
  grid-row-gap: 1.5rem;
  margin-bottom: -.5rem;
  padding-top: 14rem;
  padding-bottom: 2.5rem;
  overflow: hidden;
}

.section.light-blue-section {
  z-index: 1;
  background-color: var(--light-blue);
  border-radius: .75rem;
}

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

.section.services-intro-section {
  margin-top: -.5rem;
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.section.news-hero-section {
  grid-row-gap: 1.5rem;
  border-radius: 0;
  padding-top: 14rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}

.section.news-post-hero-section {
  grid-row-gap: 1.5rem;
  padding-top: 14rem;
  padding-bottom: 2.5rem;
  overflow: hidden;
}

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

.section.featured-work-section {
  background-color: var(--light-blue);
  width: 100%;
  height: 300vh;
  padding-top: 0;
  padding-bottom: 0;
}

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

.section.no-padding-bottom.featrued-work-intro-section {
  background-color: var(--light-blue);
  border-radius: .75rem;
}

.section.work-hero-section {
  grid-row-gap: 1.5rem;
  border-radius: 0;
  padding-top: 14rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}

.section.approach-section {
  margin-top: -1rem;
  padding-top: 10rem;
  padding-bottom: 20rem;
}

.section.awards-section {
  padding-top: 20rem;
}

.section.home-intro-section {
  background-color: var(--light-blue);
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.section.clients-section {
  padding-top: 20rem;
  padding-bottom: 20rem;
}

.section.clients-section.less-padding {
  padding-top: 10rem;
}

.section.design-service-section {
  z-index: 1;
  background-color: var(--light-blue);
  border-radius: .75rem;
  padding-top: 15rem;
  padding-bottom: 15rem;
}

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

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

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

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

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

.container.footer-container {
  grid-row-gap: 15rem;
  justify-content: center;
  align-items: center;
  max-width: none;
}

.container.styleguide-container, .container.adjusted {
  grid-row-gap: 1rem;
  max-width: 880px;
}

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

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

.footer {
  z-index: 0;
  background-color: var(--primary-blue-500);
  color: #fff;
  border-radius: .75rem;
  width: 100%;
  max-width: 100%;
  padding: 18.75rem 0 2.5rem;
  position: static;
}

.rich-text-block {
  margin-bottom: -3rem;
  font-family: Inter Display, sans-serif;
  font-weight: 400;
}

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

.rich-text-block h3 {
  color: var(--primary-blue-500);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: Inter Display, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 110%;
}

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

.rich-text-block blockquote {
  border-left-color: var(--secondary-blue-500);
  margin-top: 2rem;
  margin-bottom: 3rem;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 110%;
}

.rich-text-block h1 {
  text-align: left;
  letter-spacing: 0;
  margin-bottom: 1rem;
  font-family: Barlowsharp, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 116%;
}

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

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

.rich-text-block figcaption {
  color: #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;
}

.rich-text-block.top-spacing {
  text-align: left;
}

.rich-text-block.top-spacing p {
  margin-bottom: 3rem;
}

.text-field {
  color: var(--primary-blue-500);
  background-color: #0000;
  border: 0 solid #000;
  border-bottom: 1px solid #0616621a;
  border-radius: 0;
  height: auto;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 1.25rem;
  padding-left: 0;
  font-size: 1.125rem;
  line-height: 120%;
  display: block;
  position: static;
}

.text-field:active, .text-field:focus {
  border-bottom-color: var(--primary-blue-500);
  color: var(--primary-blue-500);
  font-size: 1.125rem;
  line-height: 120%;
}

.text-field::placeholder {
  color: #575b7180;
  text-transform: none;
  font-family: Inter Display, sans-serif;
  font-size: 1.125rem;
  line-height: 120%;
}

.text-field.footer-textfield {
  color: var(--white);
  border-bottom-color: #fff;
  font-size: 2rem;
}

.text-field.footer-textfield:active {
  color: #fff;
  border-bottom-color: #fff;
  font-size: 2rem;
}

.text-field.footer-textfield:focus {
  border-bottom-color: #fff;
}

.text-field.footer-textfield::placeholder {
  color: #ffffff4d;
  font-size: 2rem;
}

.submit-button {
  color: var(--white);
  text-transform: uppercase;
  background-color: #0000;
  border: 0 solid #000;
  width: 100%;
  height: 100%;
  padding: 0;
  font-family: Barlowsharp, sans-serif;
  font-size: .75rem;
  font-weight: 600;
  line-height: 120%;
  position: absolute;
  inset: 0%;
}

.submit-button:hover {
  color: #192a27cc;
  border-bottom-width: 0;
  border-bottom-color: #898989;
}

.submit-button.utility-submit-button {
  background-color: var(--primary-blue-500);
  color: var(--white);
  padding: 1rem 2.5rem;
  position: relative;
  inset: auto;
}

.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 {
  grid-row-gap: 4rem;
  text-align: left;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.styleguide-heading-wrapper {
  grid-row-gap: .5rem;
  flex-direction: column;
  margin-bottom: 48px;
  display: flex;
}

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

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

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

.swatch.secondary-blue-500 {
  background-color: var(--secondary-blue-500);
  border-color: #edece81a;
}

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

.swatch.secondary-blue-400 {
  background-color: var(--secondary-blue-400);
  border-color: #edece81a;
}

.swatch.lightest-blue {
  background-color: var(--lightest-blue);
  border-width: 1px;
  border-color: #0616621a;
}

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

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

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

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

.styleguide-heading {
  letter-spacing: -2px;
  margin-top: 32px;
  margin-bottom: 32px;
  font-size: 7rem;
  line-height: 80%;
}

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

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

._12-column-grid {
  grid-column-gap: 2.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;
  grid-auto-flow: row;
  align-content: stretch;
  place-items: start stretch;
  width: 100%;
  display: grid;
  position: relative;
}

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

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

._12-column-grid.home-hero-grid {
  margin-bottom: 5rem;
}

._12-column-grid.more-top-spacing {
  margin-top: 4rem;
}

._12-column-grid.zertifikate {
  place-items: center stretch;
}

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

.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 {
  height: 100%;
  position: relative;
  inset: 0%;
}

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

.form {
  grid-row-gap: 3rem;
  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%;
  max-width: 710px;
}

.parallax-image-container {
  border-radius: .25rem;
  max-width: 80%;
  position: relative;
  overflow: hidden;
}

.parallax-image-container.case-image-container {
  width: 100%;
  max-width: 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(--secondary-blue-500);
  background-color: #0616620f;
}

.error-message {
  color: #edece8;
  background-color: #aa3939;
}

.brand {
  z-index: 2;
  margin-right: auto;
  position: static;
}

.brand.w--current {
  z-index: auto;
  opacity: 1;
  margin-right: auto;
  position: static;
}

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

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

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

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

.numbers-container {
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  text-align: left;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 31ch;
  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;
}

.awards-item-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

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

.hamburger-wrapper {
  z-index: 999;
  grid-row-gap: .25rem;
  text-transform: uppercase;
  cursor: pointer;
  mix-blend-mode: normal;
  flex-direction: column;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-family: Thunder;
  font-size: 2.5rem;
  line-height: 179%;
  display: flex;
  position: static;
  top: 2.5rem;
  left: 2.5rem;
  right: auto;
  overflow: hidden;
}

.arrow {
  border-radius: 50vw;
  flex: none;
}

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

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

.main-wrapper {
  overflow: visible;
}

.hero-subtitle {
  letter-spacing: -.025rem;
  text-transform: none;
  max-width: 550px;
  margin-bottom: 0;
  font-family: Inter Display, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
}

.button {
  grid-column-gap: .5rem;
  grid-row-gap: 1rem;
  background-color: var(--primary-blue-500);
  color: var(--white);
  letter-spacing: .05rem;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 50vw;
  flex-flow: 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: 1.25rem 2.5rem;
  font-family: Barlowsharp, sans-serif;
  font-size: .75rem;
  font-weight: 700;
  line-height: 120%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button:hover {
  opacity: 1;
}

.button.navbar-button {
  z-index: 2;
  grid-column-gap: .5rem;
  background-color: var(--primary-blue-500);
  color: #fff;
  flex-wrap: nowrap;
  justify-content: flex-start;
  height: 100%;
  padding-left: 2.25rem;
  padding-right: 2.25rem;
  font-weight: 700;
}

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

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

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

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

.menu-button-close-text {
  position: absolute;
  top: 100%;
}

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

.testimonial-slider {
  background-color: #0000;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
}

.slide-nav {
  display: none;
}

.slider-mask {
  align-self: stretch;
  max-width: 32%;
  height: 100%;
  overflow: visible;
}

.slide {
  background-color: var(--medium-light-blue);
  border-radius: .25rem;
  width: 100%;
  height: 100%;
  margin-right: 1rem;
  padding: 5rem 6rem 3rem 3rem;
}

.testimonail-client-info {
  grid-column-gap: 1rem;
  grid-row-gap: 0rem;
  color: var(--grey-500);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.quote {
  text-transform: none;
  max-width: 480px;
  margin-bottom: 10rem;
  font-family: Inter Display, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 100%;
}

.left-arrow {
  cursor: pointer;
  border: 1px solid #0616621a;
  border-radius: 50vw;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1rem;
  line-height: 1;
  transition: all .2s;
  display: flex;
  inset: -7.25rem auto auto 0%;
}

.left-arrow:hover {
  border-color: #0616621a;
}

.slider-nav-icon {
  color: var(--primary-blue-500);
}

.right-arrow {
  cursor: pointer;
  border: 1px solid #0616621a;
  border-radius: 50vw;
  width: 3.5rem;
  height: 3.5rem;
  margin-left: 4.5rem;
  font-size: 1rem;
  line-height: 1;
  position: absolute;
  inset: -7.25rem auto auto 0%;
}

.right-arrow:hover {
  border-color: #0616621a;
}

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

.post-image-wrapper {
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
  padding-top: 65%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-text {
  white-space: nowrap;
  position: relative;
}

.label {
  color: var(--primary-blue-500);
  letter-spacing: .025rem;
  text-transform: uppercase;
  font-family: Barlowsharp, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 130%;
}

.label.maring-bottom-5 {
  margin-bottom: .5rem;
}

.label.big {
  font-size: 1rem;
}

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

.case-title-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  display: flex;
}

.cta-member-image-wrapper {
  background-color: var(--secondary-blue-400);
  border-radius: .2rem;
  width: 100%;
  max-width: 450px;
  min-height: 200px;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

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

.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-top-style: none;
  border-bottom: 1px solid #0616621a;
  flex-flow: column wrap;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  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: 500;
  line-height: 130%;
}

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

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

.large-number {
  color: var(--primary-blue-500);
  align-self: flex-start;
  font-family: Barlowsharp, sans-serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
}

.nav-right {
  grid-column-gap: 3rem;
  justify-content: flex-end;
  align-items: center;
  padding-right: 8rem;
  display: flex;
}

.menu-line {
  background-color: var(--primary-blue-500);
  width: 2rem;
  height: .09375rem;
}

.marquee-and-image-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

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

.cta-marquee-container {
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  display: flex;
  overflow: hidden;
}

.marquee-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.marquee-heading {
  white-space: nowrap;
  margin-bottom: 0;
  margin-right: 4vw;
  padding-bottom: 1.8vw;
  font-family: Barlowsharp, sans-serif;
  font-size: 21vw;
  line-height: 67%;
}

.marquee-container {
  grid-row-gap: 1rem;
  flex-direction: column;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.button-background {
  background-color: var(--secondary-blue-500);
  border-radius: 50vw;
  align-self: center;
  width: 102%;
  height: 102%;
  position: absolute;
  inset: 0%;
}

.menu-button {
  z-index: 10;
  grid-column-gap: .25rem;
  cursor: pointer;
  align-items: center;
  display: none;
  position: fixed;
  top: 2.9rem;
  right: 2.5rem;
}

.menu-button-text-wrapper {
  letter-spacing: .025rem;
  text-transform: uppercase;
  width: 44px;
  font-family: Barlowsharp, sans-serif;
  font-size: .75rem;
  font-weight: 700;
  line-height: 100%;
  position: relative;
  overflow: hidden;
}

.text-grey-500 {
  color: var(--grey-500);
}

.view-image-button-text {
  color: var(--primary-blue-500);
  text-align: center;
}

.marquee-top-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-image {
  position: relative;
  inset: 0%;
  transform: scale(1.1);
}

.marquee-bottom-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-image-container {
  grid-row-gap: .5rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 23%;
  padding-bottom: 0;
  padding-right: 0;
  transition-property: none;
  display: flex;
  position: absolute;
}

.hero-image-container:hover {
  opacity: 1;
}

.view-project-button-content-container {
  grid-column-gap: .5rem;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.view-reel-button {
  z-index: 4;
  grid-column-gap: .5rem;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fff;
  letter-spacing: .05rem;
  text-transform: uppercase;
  background-color: #fff9;
  border-radius: .25rem;
  justify-content: center;
  align-self: auto;
  align-items: center;
  padding: .375rem .75rem;
  font-size: .75rem;
  font-weight: 500;
  line-height: 150%;
  display: flex;
  position: absolute;
  bottom: 10%;
}

.hero-image-outer-wrapper {
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.menu-wrapper {
  z-index: 5;
  background-color: var(--secondary-blue-500);
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 100svh;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  display: none;
  position: fixed;
  inset: 0%;
}

.menu-text-sections-container {
  grid-row-gap: 3rem;
  flex-direction: column;
  align-items: flex-start;
  width: 35vw;
  max-width: 400px;
  display: flex;
  position: absolute;
  inset: auto 8vw 24.3vw auto;
}

.nav-links-wrapper {
  flex-direction: column;
  justify-content: flex-end;
  width: 50vw;
  margin-left: 5vw;
  padding-top: 25vh;
  display: flex;
  position: absolute;
  top: 0;
}

.nav-link {
  color: #fff;
  text-transform: uppercase;
  padding-top: 2.5vh;
  padding-bottom: 2.5vh;
  font-family: Barlowsharp, sans-serif;
  font-size: 9vw;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.menu-content-section {
  grid-row-gap: 1.5rem;
  color: #ffffffa6;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.menu-section-heading {
  color: #fff;
  text-transform: uppercase;
  font-family: Barlowsharp, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

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

.social-link {
  color: #ffffffa6;
  font-size: 1rem;
  line-height: 130%;
}

.menu-section-heading-wrapper {
  grid-row-gap: .5rem;
  color: #ffffffa6;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.social-media-links-wrapper {
  grid-row-gap: .5rem;
  flex-direction: column;
  display: flex;
}

.menu-line-bottom {
  background-color: var(--primary-blue-500);
  width: 2rem;
  height: .09375rem;
}

.footer-text {
  align-self: center;
  max-width: 327px;
  margin-bottom: 0;
}

.newsletter-form {
  grid-row-gap: 1.5rem;
  color: #fff;
  flex-direction: column;
  font-size: 1.5rem;
  line-height: 120%;
  display: flex;
}

.newsletter-input-field-wrapper {
  position: relative;
}

.newsletter-submit-button {
  background-color: #0000;
  background-image: url('../images/Submit-arrow.svg');
  background-position: 100% 28%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 4rem;
  height: 100%;
  position: absolute;
  inset: auto 0% 0% auto;
}

._6-column-grid {
  grid-column-gap: 1.25rem;
  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);
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-content: end;
  place-items: start stretch;
  width: 100%;
  display: grid;
  position: relative;
}

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

.footer-logo-symbol-and-text {
  grid-column-gap: 2.5rem;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.logo-symbol {
  flex: 0 auto;
  align-self: flex-start;
  max-width: 82px;
}

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

.footer-link {
  color: #ffffff80;
  padding-top: .5rem;
  padding-bottom: .5rem;
  transition-property: all;
  display: block;
}

.footer-link:hover {
  opacity: 1;
  color: #fff;
}

.template-links {
  grid-column-gap: 2rem;
  display: flex;
}

.copyright-text {
  color: #fff9;
}

.cta-marquee-heading {
  color: var(--white);
  white-space: nowrap;
  margin-bottom: 0;
  margin-right: 4vw;
  padding-bottom: 1.8vw;
  font-family: Barlowsharp, sans-serif;
  font-size: 21vw;
  line-height: 67%;
}

.cta-team-members-wrapper {
  grid-row-gap: 1rem;
  flex-direction: column;
  width: 100%;
  margin-top: 4rem;
  display: flex;
}

.section-subtitle {
  max-width: 588px;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 110%;
}

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

.cta-member-name {
  margin-bottom: .25rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 110%;
}

.cta-member-title {
  color: #fff9;
  font-size: 1.5rem;
  line-height: 110%;
}

.styleguide-h2 {
  letter-spacing: -.025rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 130%;
}

.styleguide-link {
  color: var(--secondary-blue-400);
}

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

.service-list-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-bottom: 1px solid #0616621a;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 8rem;
  font-size: 1.125rem;
  display: flex;
}

.service-subheading {
  width: 50%;
  max-width: 200px;
  font-weight: 700;
}

.service-paragraph {
  max-width: 190px;
  font-size: 1.125rem;
}

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

.fullwidth-image {
  z-index: -1;
  height: 110%;
  margin: -.5rem auto;
  position: static;
}

.subpage-hero-small-subtitle {
  max-width: 290px;
}

.medium-section-subtitle {
  text-transform: uppercase;
  max-width: 820px;
  margin-top: 0;
  font-size: 3rem;
  font-weight: 600;
  line-height: 100%;
}

.service-subheading-and-cases {
  grid-row-gap: 5rem;
  flex-direction: column;
  display: flex;
}

.service-cases-wrapper {
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 535px;
  display: flex;
}

.service-cases {
  width: 100%;
}

.service-cases-list {
  grid-row-gap: .5rem;
  flex-direction: column;
  display: flex;
}

.service-case {
  background-color: var(--light-blue);
  color: var(--primary-blue-500);
  border-radius: .2rem;
  width: 100%;
  padding: 1rem;
  font-size: .875rem;
  line-height: 130%;
}

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

.service-case.dark-background {
  background-color: var(--medium-light-blue);
}

.service-case-content {
  grid-column-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.service-case-image-and-text {
  grid-column-gap: 1rem;
  flex: 1;
  align-items: flex-start;
  display: flex;
}

.service-case-image {
  border-radius: .125rem;
  max-width: 6rem;
  max-height: 3rem;
}

.service-case-title {
  color: var(--primary-blue-500);
  text-transform: none;
  margin-bottom: .25rem;
  font-family: Inter Display, sans-serif;
  font-size: .875rem;
  font-weight: 700;
}

.arrow-right-wrapper {
  background-color: #0616620d;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  padding: .75rem;
  display: flex;
}

.home-hero-marquee-container {
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  display: flex;
  overflow: hidden;
}

.subpage-marquee-container {
  align-items: center;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.heading-wrapper {
  overflow: hidden;
}

.small-button {
  grid-column-gap: 3rem;
  background-color: var(--light-blue);
  color: var(--primary-blue-500);
  letter-spacing: .025px;
  text-transform: uppercase;
  border-radius: .25rem;
  align-items: center;
  padding: .5rem .25rem .5rem .75rem;
  font-family: Barlowsharp, sans-serif;
  font-size: .85rem;
  font-weight: 700;
  line-height: 130%;
  transition-property: none;
  display: flex;
}

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

.small-button-arrow {
  width: auto;
  max-width: 100%;
}

.small-arrow-right-wrapper {
  background-color: #06166212;
  border-radius: .125rem;
  justify-content: center;
  align-items: center;
  padding: .25rem;
  display: flex;
}

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

.post {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.post:hover {
  opacity: 1;
}

.post-date {
  color: var(--grey-500);
  letter-spacing: .025rem;
  text-transform: uppercase;
  font-family: Barlowsharp, sans-serif;
  font-size: .6875rem;
  font-weight: 700;
  line-height: 130%;
}

.post-title-wrapper {
  grid-row-gap: 2rem;
  flex-direction: column;
  width: 100%;
  margin-top: 1rem;
  display: flex;
}

.post-title {
  color: var(--primary-blue-500);
  text-transform: none;
  font-family: Inter Display, sans-serif;
  font-size: 1.125rem;
}

.small-div-button {
  grid-column-gap: 3rem;
  background-color: var(--light-blue);
  color: var(--primary-blue-500);
  letter-spacing: .025px;
  text-transform: uppercase;
  border-radius: .25rem;
  align-items: center;
  padding: .25rem .25rem .25rem .75rem;
  font-family: Barlowsharp, sans-serif;
  font-size: .75rem;
  font-weight: 700;
  line-height: 130%;
  transition-property: none;
  display: flex;
  position: absolute;
  bottom: .75rem;
  right: .75rem;
}

.small-div-button:hover {
  opacity: 1;
}

.section-subtitle-wrapper {
  margin-bottom: 3.5rem;
}

.section-subtitle-wrapper.no-padding-bottom, .section-subtitle-wrapper.no-margin-bottom, .section-subtitle-wrapper.margin-top-bottom {
  margin-bottom: 0;
}

.project-title {
  text-transform: none;
  max-width: 710px;
  font-family: Inter Display, sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 100%;
}

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

.testimonials-logo {
  width: auto;
  max-height: 1.7rem;
  margin-bottom: 2.5rem;
}

.client-name {
  font-weight: 700;
}

.featured-work-wrapper {
  width: 100%;
  height: 100vh;
  padding-top: 0;
  position: sticky;
  top: 0;
  bottom: 0;
}

.featured-cases-outer-wrapper {
  width: 100%;
  margin-top: 4rem;
  overflow: hidden;
}

.featured-cases-outer-wrapper:hover {
  opacity: 1;
}

.featured-cases-inner-wrapper {
  width: 300vh;
}

.featured-cases-container {
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.featured-cases-list {
  grid-column-gap: 2.5rem;
  align-items: center;
  display: flex;
}

.featured-case {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  align-items: stretch;
  width: 68vw;
  min-width: 0;
  max-width: 960px;
  height: 100%;
  margin-left: auto;
  margin-right: 1rem;
  transition-property: none;
  display: flex;
}

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

.featured-case-image-wrapper {
  background-color: var(--primary-blue-500);
  border-radius: .375rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 1.5rem;
  padding-top: 65%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.featured-case-image {
  position: absolute;
  inset: -4% 0% auto;
}

.featured-case-image.smart {
  background-color: #f2c011;
  margin: auto;
  inset: 0%;
}

.collection-list-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 2.5rem;
  display: grid;
}

.case-title {
  color: var(--primary-blue-500);
  text-transform: none;
  margin-top: 0;
  font-family: Inter Display, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}

.case {
  grid-row-gap: 0rem;
  color: var(--primary-blue-500);
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  height: 100%;
  transition-property: none;
  display: flex;
}

.case:hover {
  opacity: 1;
}

.case-image-wrapper {
  border-radius: .375rem;
  margin-bottom: 1.5rem;
  padding-top: 65%;
  position: relative;
  overflow: hidden;
}

.case-title-and-tag {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.last-content-section {
  height: auto;
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.categories {
  grid-column-gap: .5rem;
  align-items: center;
  display: flex;
}

.category-tag {
  background-color: var(--light-blue);
  color: var(--primary-blue-500);
  letter-spacing: .025px;
  text-transform: uppercase;
  border-radius: .25rem;
  padding: .25rem .5rem;
  font-family: Barlowsharp, sans-serif;
  font-size: .75rem;
  font-weight: 700;
  line-height: 130%;
}

.category-tag.w--current {
  background-color: var(--primary-blue-500);
  color: var(--white);
}

.categories-wrapper {
  grid-column-gap: .5rem;
  align-items: center;
  display: flex;
}

.about-subtitle-wrapper {
  margin-top: 5rem;
  margin-bottom: 0;
}

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

.view-featured-case-button {
  background-color: var(--secondary-blue-500);
  color: var(--white);
  text-transform: none;
  cursor: pointer;
  border-radius: 50vw;
  justify-content: center;
  align-items: center;
  width: 10rem;
  min-width: 0;
  height: 10rem;
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  position: relative;
}

.client-testimonials-section {
  background-color: var(--light-blue);
}

.approach-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 125%;
}

.large-section-subtitle {
  max-width: 890px;
  font-size: 5rem;
  font-weight: 600;
  line-height: 100%;
}

.awards-list {
  border-top: 1px solid #0616621a;
}

.small-button-medium-blue {
  grid-column-gap: 3rem;
  background-color: var(--medium-light-blue);
  color: var(--primary-blue-500);
  letter-spacing: .025px;
  text-transform: uppercase;
  border-radius: .25rem;
  align-items: center;
  padding: .25rem .25rem .25rem .75rem;
  font-family: Barlowsharp, sans-serif;
  font-size: .75rem;
  font-weight: 700;
  line-height: 130%;
  transition-property: none;
  display: flex;
}

.small-button-medium-blue:hover {
  opacity: 1;
}

.principles-list {
  border-top: 1px solid #0616621a;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.principles-list-item {
  width: 100%;
  padding-top: 3rem;
}

.principles-image {
  border-radius: .25rem;
}

.principle-heading {
  width: auto;
  max-width: none;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 120%;
}

.principle-paragraph {
  color: var(--grey-500);
  max-width: 550px;
  font-size: 1.25rem;
}

.principle-number {
  width: 50%;
  max-width: 200px;
  margin-bottom: 2rem;
  font-weight: 700;
}

.dark-grey-link {
  color: var(--grey-500);
}

.news-image {
  border-radius: .25rem;
}

.contact-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  display: flex;
}

.home-intro-paragraph {
  max-width: 490px;
  font-size: 1.25rem;
}

.home-intro-subtitle {
  max-width: 762px;
  margin-top: 5rem;
  font-size: 3rem;
  font-weight: 600;
  line-height: 105%;
}

.links-list {
  border-top: 1px solid #0616621a;
}

.large-list-item-link {
  grid-column-gap: 1px;
  grid-row-gap: 1rem;
  text-transform: none;
  border: 0 solid #929295;
  border-bottom: 1px solid #0616621a;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 130%;
  transition-property: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.arrow-right {
  width: 1rem;
  height: 1rem;
}

.looping-images-outer-container {
  white-space: nowrap;
  flex-flow: row;
  grid-template-rows: auto auto auto auto auto auto auto;
  grid-template-columns: minmax(200px, 1fr) minmax(200px, 1fr) minmax(200px, 1fr) minmax(200px, 1fr) minmax(200px, 1fr) minmax(200px, 1fr) minmax(200px, 1fr);
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  overflow: hidden;
}

.looping-images-outer-container.more-top-spacing {
  margin-top: 10rem;
}

.looping-images-container {
  white-space: nowrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: visible;
}

.logo {
  display: inline;
}

.numbers-wrapper {
  background-color: var(--primary-blue-500);
  height: 60vh;
  margin-bottom: 3.5rem;
  position: relative;
  top: 10rem;
}

.huge-number {
  color: var(--white);
  align-self: flex-start;
  font-family: Barlowsharp, sans-serif;
  font-size: 20rem;
  font-weight: 700;
  line-height: .8;
}

.numbers-section-subtitle {
  max-width: 780px;
  margin-top: 0;
  font-size: 3rem;
  font-weight: 600;
  line-height: 110%;
}

.home-hero-section {
  width: 100%;
  height: 112svh;
}

.case-heading {
  font-size: 15vw;
  line-height: 87%;
}

.team-member-heading {
  font-size: 10vw;
  line-height: 87%;
}

.utility-heading {
  text-align: center;
  letter-spacing: -.125rem;
  font-size: 3rem;
  line-height: 100%;
}

.utility-heading.link {
  line-height: 100%;
  text-decoration: underline;
}

.preloader {
  z-index: 9999;
  background-color: var(--primary-blue-500);
  color: var(--white);
  letter-spacing: -.025vw;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 2vw;
  font-weight: 600;
  line-height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.preloader-text {
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
  max-width: 580px;
  line-height: 122%;
}

.footer-heading {
  color: var(--white);
  font-size: 2rem;
}

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

.text-primary.navbar-text {
  color: var(--primary-blue-500);
  max-width: 140px;
  font-size: .85rem;
  line-height: 150%;
}

.cta-marquee-footer {
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 0;
  padding-bottom: 1.8vw;
  font-family: Barlowsharp, sans-serif;
  font-size: 18vw;
  font-weight: 800;
  line-height: 67%;
}

.medium-title {
  text-transform: uppercase;
  max-width: 710px;
  margin-top: 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 100%;
}

.text-reveal-wrapper {
  grid-column-gap: .75vw;
  grid-row-gap: .75vw;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.text-reveal-hover-wrapper {
  position: absolute;
  inset: auto 0;
  overflow: hidden;
}

.text-lighter-grey {
  color: var(--lighter-grey);
}

.cta-member-link {
  color: var(--white);
  font-size: 3rem;
  font-weight: 600;
  line-height: 100%;
}

.background-video {
  border-radius: .375rem;
  width: 768px;
  height: 432px;
}

.background-video.aok {
  width: 249px;
  height: 540px;
}

.background-video.more-spacing {
  margin-bottom: 4rem;
}

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

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

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

.medium-company-title {
  text-transform: uppercase;
  max-width: 820px;
  margin-top: 0;
  font-size: 3rem;
  font-weight: 600;
  line-height: 100%;
}

.container---xl {
  width: 100%;
  max-width: 1167px;
}

.accordion {
  grid-column-gap: 16px;
  grid-row-gap: 7px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.accordion-item-wrapper-2 {
  border: 1px solid var(--primary-blue-500);
  -webkit-text-stroke-color: var(--primary-blue-500);
  border-radius: 4px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  transition: border-color .2s;
}

.accordion-item-wrapper-2:hover {
  border-color: var(--secondary-blue-500);
}

.accordion-title-wrapper-2 {
  cursor: pointer;
  justify-content: space-between;
  padding: 22px;
  display: flex;
}

.accordion-headline {
  letter-spacing: 0;
  padding-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 110%;
}

.accordion-headline.text-bold {
  font-weight: 700;
}

.arrow-icon---accordion {
  z-index: 0;
  color: #036;
  max-width: 24px;
  max-height: 24px;
  position: relative;
}

.accordion-text-content {
  padding-left: 22px;
  padding-right: 30px;
  overflow: hidden;
}

._12-column-grid-project-title, ._12-column-grid-project-info {
  grid-column-gap: 2.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;
  grid-auto-flow: row;
  align-content: stretch;
  place-items: start stretch;
  width: 100%;
  display: grid;
  position: relative;
}

.project-link {
  border-bottom: 3px solid var(--secondary-blue-500);
  color: var(--secondary-blue-500);
  cursor: pointer;
  transition: border-width .2s, opacity .2s;
}

.project-link:hover {
  border-bottom-width: 1.5px;
}

.video-wrapper {
  z-index: 1000;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.video-wrapper.more-spacing {
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.work {
  max-width: 73%;
  margin-top: 50px;
  display: inline-block;
  box-shadow: 0 0 30px #201f1e1a;
}

.work-1 {
  max-width: 75%;
  box-shadow: 0 0 30px #201f1e1a;
}

.selected-works {
  text-align: center;
  background-color: #fff;
  padding-bottom: 4rem;
  position: relative;
}

.bg-work-white-start {
  background-color: #fff;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.bg-work-yellow {
  background-color: #faf7f0;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.arrow-2 {
  margin-left: 62px;
  position: absolute;
  top: 10px;
}

.bg-work-grey-2 {
  background-color: #f2f6f7;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.project-divider {
  border-bottom: 1px dotted var(--primary-blue-500);
  height: 1px;
  margin-top: 1rem;
  margin-bottom: 4rem;
}

.bg-work-blue {
  background-color: #35a9e6e6;
  padding-top: 50px;
  padding-bottom: 30px;
}

.visit-website-link-block {
  text-decoration: none;
  transition: background-color .2s;
  display: block;
  position: relative;
}

.visit-website-link-block:hover {
  opacity: 1;
}

.bg-work-gold {
  background-color: #eedfc8;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.visit-website {
  background-color: var(--secondary-blue-500);
  color: var(--white);
  text-transform: uppercase;
  padding-top: 25px;
  padding-bottom: 23px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s;
  display: block;
}

.visit-website:hover {
  background-color: var(--primary-blue-500);
}

._1-column-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  display: flex;
}

.bg-work-white {
  background-color: #fff;
  padding-bottom: 4rem;
}

.projekt-info-grid {
  grid-column-gap: 16px;
  grid-row-gap: 2rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: flex-start center;
  margin-top: 4rem;
  display: grid;
}

.label-left-aligned {
  color: var(--primary-blue-500);
  text-align: left;
  letter-spacing: .025rem;
  text-transform: uppercase;
  font-family: Barlowsharp, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 130%;
}

.label-left-aligned.text-grey-500 {
  color: var(--grey-500);
}

.bg-work-grey-3 {
  background-color: #f6f5f4;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.principle-heading-2 {
  width: auto;
  max-width: 860px;
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 120%;
}

.zertifikate-list-item {
  border-bottom: 1px solid #0616621a;
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.zertifikate-list {
  border-top: 1px solid #0616621a;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.prinzipien-medium-title {
  text-transform: uppercase;
  max-width: 710px;
  margin-top: 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 120%;
}

.prinzipien-medium-title.bold {
  font-weight: 700;
}

.prinzipien-list-item {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 120%;
}

.prinzipien-list-item.medium {
  font-weight: 500;
}

.prinzipien-list-item.text-grey-500-medium {
  color: var(--grey-500);
  font-weight: 400;
}

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

.margin-top-2.bottom-border {
  border-bottom: 2px solid #0616621a;
}

.styleguide-heading-copy {
  letter-spacing: -2px;
  margin-bottom: 32px;
  font-size: 7rem;
  line-height: 80%;
}

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

  h2 {
    font-size: 7rem;
  }

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

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

  .section.home-hero-section {
    grid-row-gap: 1rem;
    flex-direction: column;
    height: 100rem;
    padding-bottom: 2.5rem;
  }

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

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

  .section.numbers-section {
    grid-row-gap: 4rem;
  }

  .section.home-hero-section {
    grid-row-gap: 1rem;
    flex-direction: column;
    height: auto;
    padding-top: 10rem;
    padding-bottom: 2.5rem;
  }

  .section.cta-section {
    grid-row-gap: 1.5rem;
  }

  .section.work-hero-section {
    padding-top: 7rem;
  }

  .section.about-hero-section {
    grid-row-gap: 1.5rem;
    padding-top: 10rem;
  }

  .section.fullwidth-image-section {
    height: 36svh;
    display: none;
  }

  .section.services-hero-section {
    padding-top: 7rem;
  }

  .section.news-hero-section, .section.news-post-hero-section {
    grid-row-gap: 1.5rem;
    padding-top: 10rem;
  }

  .section.featured-work-section {
    height: auto;
    padding-bottom: 12rem;
  }

  .section.work-hero-section {
    grid-row-gap: 1.5rem;
    padding-top: 10rem;
  }

  .section.work-hero-section.more-spacing {
    margin-top: 2rem;
  }

  .section.approach-section {
    padding-bottom: 10rem;
  }

  .section.awards-section.last-content-section {
    padding-top: 10rem;
  }

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

  .section.clients-section {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .section.clients-section.less-padding {
    padding-top: 6rem;
    padding-bottom: 10rem;
  }

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

  .container.footer-container {
    overflow: hidden;
  }

  .container.adjusted {
    text-align: center;
  }

  .footer {
    padding-top: 15rem;
  }

  .rich-text-block.top-spacing {
    margin-top: 4rem;
  }

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

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

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

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

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

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

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

  ._12-column-grid.more-top-spacing {
    margin-top: 2rem;
  }

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

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

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

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

  .brand {
    margin-left: 0;
  }

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

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

  .hamburger-wrapper {
    z-index: 99999999;
    grid-row-gap: .375rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
    top: 2.5rem;
  }

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

  .button {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    background-color: var(--primary-blue-500);
    color: #fff;
  }

  .button.navbar-button {
    display: none;
  }

  .menu-button-close-text {
    display: block;
  }

  .testimonial-slider-wrapper {
    padding-top: 7.25rem;
  }

  .testimonial-slider {
    margin-top: 0;
  }

  .slider-mask {
    max-width: 68%;
  }

  .slide {
    padding-right: 2rem;
  }

  .testimonail-client-info {
    margin-bottom: 0;
  }

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

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

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

  .hero-centered-wrapper {
    grid-row-gap: 2.5rem;
    flex-direction: column;
  }

  .button-background {
    display: none;
  }

  .menu-button {
    display: flex;
    position: absolute;
    top: -.25rem;
  }

  .menu-button.aligned {
    margin-top: 1rem;
  }

  .hero-image-container {
    width: auto;
    margin-left: 2.5rem;
    margin-right: 2.5rem;
    position: relative;
  }

  .view-reel-button {
    display: flex;
    bottom: 1rem;
  }

  .menu-wrapper {
    grid-row-gap: 4rem;
    height: auto;
    padding-bottom: 2.5rem;
    position: absolute;
    top: 0%;
    bottom: auto;
  }

  .menu-text-sections-container {
    grid-column-gap: 4rem;
    flex-direction: row;
    width: 100%;
    max-width: none;
    position: relative;
    bottom: auto;
    right: auto;
  }

  .nav-links-wrapper {
    margin-left: 0;
    padding-top: 8rem;
    position: relative;
  }

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

  .heading {
    font-size: 6rem;
  }

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

  .section-subtitle {
    font-size: 2rem;
  }

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

  .small-div-button {
    display: none;
  }

  .post-info-wrapper {
    grid-column-gap: 4rem;
    flex-direction: row;
  }

  .featured-work-wrapper {
    height: auto;
    position: relative;
  }

  .featured-cases-outer-wrapper {
    margin-top: 0;
  }

  .featured-cases-inner-wrapper {
    width: 100%;
    height: auto;
  }

  .featured-cases-container {
    justify-content: flex-start;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .featured-cases-list {
    grid-row-gap: 2.5rem;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: auto;
  }

  .featured-case {
    width: 100%;
  }

  .collection-list-wrapper {
    grid-column-gap: 68px;
    grid-row-gap: 68px;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    height: auto;
    padding-left: 0;
  }

  .case {
    width: 100%;
  }

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

  .large-section-subtitle {
    font-size: 3.5rem;
  }

  .home-intro-subtitle {
    max-width: 510px;
    margin-top: 0;
    font-size: 2rem;
  }

  .looping-images-outer-container.more-top-spacing {
    margin-top: 8rem;
  }

  .logo {
    width: 90%;
  }

  .numbers-wrapper {
    height: auto;
    position: static;
  }

  .huge-number {
    font-size: 7rem;
  }

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

  .preloader {
    display: none;
  }

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

  .text-primary.navbar-text {
    display: none;
  }

  .cta-marquee-footer {
    padding-bottom: 0;
  }

  .background-video {
    width: 704px;
    height: 396px;
  }

  .projekt-info-wrapper {
    grid-column-gap: 10rem;
    grid-row-gap: 2rem;
    flex-direction: row;
    grid-template-rows: auto auto auto;
    grid-template-columns: auto auto;
    grid-auto-columns: 1fr;
    place-items: end stretch;
    display: grid;
  }

  .accordion {
    z-index: 1;
    position: relative;
  }

  .accordion-item-wrapper-2 {
    z-index: 8888;
  }

  .arrow-icon---accordion {
    z-index: 0;
    position: relative;
  }

  ._12-column-grid-project-title, ._12-column-grid-project-info {
    grid-row-gap: 2.5rem;
    grid-template-columns: minmax(16px, 1fr) 1fr 1fr 1fr;
  }

  .video-wrapper.more-spacing {
    margin-bottom: 3rem;
  }

  .work {
    max-width: 95%;
    margin-top: 0;
  }

  .work-1 {
    max-width: 95%;
  }

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

  .projekt-info-grid {
    grid-column-gap: 10rem;
    grid-row-gap: 2rem;
    flex-direction: row;
    grid-template-rows: auto auto auto;
    grid-template-columns: auto auto;
    grid-auto-columns: 1fr;
    place-items: end stretch;
    display: grid;
  }

  .prinzipien-list-item {
    font-size: 1.75rem;
  }

  .styleguide-heading-copy {
    text-align: center;
    font-size: 5rem;
  }
}

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

  h2 {
    font-size: 6.5rem;
  }

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

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

  .section.home-hero-section {
    grid-row-gap: 4rem;
    grid-row-gap: 1rem;
    height: auto;
    padding-top: 10rem;
  }

  .section.work-hero-section {
    padding-top: 6.5rem;
  }

  .section.fullwidth-image-section {
    height: 27svh;
  }

  .section.services-hero-section {
    padding-top: 6.5rem;
    padding-bottom: 1.5rem;
  }

  .section.news-post-hero-section {
    padding-bottom: 1.5rem;
  }

  .section.work-hero-section.more-spacing {
    margin-top: 4rem;
  }

  .section.clients-section.less-padding {
    padding-top: 4rem;
  }

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

  .footer {
    padding-top: 10rem;
  }

  .rich-text-block h3, .rich-text-block blockquote {
    font-size: 1.5rem;
  }

  .styleguide-heading {
    letter-spacing: -1px;
    font-size: 5rem;
  }

  .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.row-gap-7-5 {
    grid-row-gap: 3rem;
  }

  ._12-column-grid.more-top-spacing {
    margin-top: 1rem;
  }

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

  .brand.w--current {
    margin-top: -24px;
  }

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

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

  .slider-mask {
    align-self: flex-start;
  }

  .slide {
    padding: 4rem 2rem 2rem;
  }

  .testimonail-client-info {
    margin-bottom: 0;
  }

  .quote {
    font-size: 1.75rem;
  }

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

  .nav-right {
    grid-column-gap: 1rem;
  }

  .hero-centered-wrapper {
    height: auto;
    position: relative;
    inset: auto;
  }

  .marquee-heading {
    margin-bottom: 0;
  }

  .menu-button {
    position: absolute;
    top: -.5rem;
    right: 1.5rem;
  }

  .hero-image-container {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .menu-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .menu-text-sections-container {
    flex-direction: column;
  }

  .nav-links-wrapper {
    width: 75vw;
  }

  .heading {
    font-size: 6.5rem;
  }

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

  .cta-marquee-heading {
    margin-bottom: 0;
  }

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

  .fullwidth-image {
    height: 110%;
  }

  .project-title {
    font-size: 3rem;
  }

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

  .collection-list-wrapper {
    grid-column-gap: 52px;
    grid-row-gap: 52px;
  }

  .large-section-subtitle {
    font-size: 3rem;
  }

  .looping-images-outer-container.more-top-spacing {
    margin-top: 6rem;
  }

  .huge-number {
    font-size: 7rem;
  }

  .cta-marquee-footer {
    margin-bottom: 0;
    font-size: 17vw;
  }

  .background-video {
    width: 528px;
    height: 297px;
  }

  .arrow-icon---accordion {
    margin-left: 10px;
  }

  ._12-column-grid-project-title, ._12-column-grid-project-info {
    grid-row-gap: 3rem;
  }

  .video-wrapper.more-spacing {
    margin-bottom: 2rem;
  }

  .prinzipien-list-item {
    font-size: 1.5rem;
  }

  .styleguide-heading-copy {
    letter-spacing: -1px;
    font-size: 5rem;
  }
}

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

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

  h3 {
    font-size: 1.5rem;
  }

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

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

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

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

  .section.home-hero-section {
    grid-row-gap: 4rem;
    grid-row-gap: 1rem;
    padding-top: 8rem;
  }

  .section.work-hero-section {
    padding-top: 6.5rem;
  }

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

  .section.fullwidth-image-section {
    height: 15svh;
  }

  .section.services-hero-section {
    padding-top: 6.5rem;
  }

  .section.news-post-hero-section {
    padding-bottom: 1rem;
  }

  .section.featured-work-section {
    padding-bottom: 8rem;
  }

  .section.work-hero-section.more-spacing {
    margin-top: 3rem;
  }

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

  .section.awards-section.last-content-section {
    padding-top: 7rem;
  }

  .section.home-intro-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section.clients-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .section.clients-section.less-padding {
    padding-bottom: 8rem;
  }

  .section.design-service-section {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .section.bg-primary-color {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .container.footer-container {
    grid-row-gap: 8rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .rich-text-block h2 {
    overflow-wrap: anywhere;
    font-size: 1.5rem;
  }

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

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

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

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

  ._12-column-grid.more-top-spacing {
    margin-top: 0;
  }

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

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

  .form {
    width: 100%;
  }

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

  .brand.w--current {
    width: 130px;
  }

  .hamburger-wrapper {
    align-items: center;
    padding: .5rem;
    top: 1.5rem;
    left: 1.5rem;
    right: auto;
  }

  .hero-subtitle {
    font-size: 1.4rem;
    line-height: 120%;
  }

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

  .slider-mask {
    max-width: 88%;
  }

  .slide {
    min-height: 380px;
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .testimonail-client-info {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .quote {
    margin-bottom: 6rem;
    font-size: 1.25rem;
  }

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

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

  .hero-centered-wrapper {
    grid-row-gap: 2rem;
    flex-direction: column;
    position: relative;
    inset: auto;
  }

  .marquee-heading {
    font-size: 28vw;
    line-height: 74%;
  }

  .menu-button {
    top: 0;
    right: 1rem;
  }

  .hero-image-container {
    width: auto;
    margin-left: 1rem;
    margin-right: 1rem;
    position: relative;
  }

  .menu-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .heading {
    font-size: 3rem;
  }

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

  .footer-logo-symbol-and-text {
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-symbol {
    max-width: 56px;
  }

  .template-links {
    flex-direction: column;
  }

  .cta-marquee-heading {
    font-size: 28vw;
    line-height: 74%;
  }

  .section-subtitle {
    font-size: 1.5rem;
  }

  .cta-member-name {
    font-size: 1.75rem;
  }

  .service-list-item {
    flex-direction: column;
  }

  .fullwidth-image {
    height: 110%;
  }

  .medium-section-subtitle {
    max-width: 320px;
    font-size: 1.5rem;
  }

  .service-case-content {
    flex-direction: row;
  }

  .service-case-image-and-text {
    grid-row-gap: 1rem;
    flex-direction: column;
  }

  .small-button {
    grid-column-gap: 3rem;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .project-title {
    max-width: none;
    font-size: 1.75rem;
  }

  .post-info-wrapper {
    flex-direction: column;
  }

  .heading-5 {
    font-size: 3.5rem;
  }

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

  .case-title-and-tag {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    justify-content: space-between;
  }

  .large-section-subtitle {
    max-width: none;
    font-size: 2rem;
  }

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

  .home-intro-paragraph {
    font-size: 1.125rem;
  }

  .home-intro-subtitle {
    max-width: none;
    font-size: 1.5rem;
  }

  .large-list-item-link {
    font-size: 1.125rem;
  }

  .looping-images-outer-container.more-top-spacing {
    margin-top: 1rem;
    padding-bottom: 0;
  }

  .logo {
    width: 70%;
  }

  .huge-number {
    font-size: 4rem;
  }

  .numbers-section-subtitle {
    max-width: none;
    font-size: 1.5rem;
  }

  .utility-heading {
    font-size: 2.5rem;
  }

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

  .medium-title {
    max-width: none;
    font-size: 1.5rem;
  }

  .cta-member-link {
    font-size: 1.75rem;
  }

  .background-video {
    width: 316.8px;
    height: 178.2px;
  }

  .projekt-info-wrapper {
    flex-direction: column;
    grid-template-columns: auto;
  }

  .medium-company-title {
    max-width: none;
    font-size: 1.5rem;
  }

  .accordion {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .accordion-headline {
    margin-right: 4px;
    font-size: 1.5rem;
  }

  .accordion-text-content {
    padding-right: 22px;
  }

  ._12-column-grid-project-title, ._12-column-grid-project-info {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr 1fr;
  }

  .project-link {
    font-size: 1.25rem;
    line-height: 140%;
  }

  .projekt-info-grid {
    flex-direction: column;
    grid-template-columns: auto;
  }

  .principle-heading-2 {
    font-size: 1.5rem;
  }

  .prinzipien-medium-title {
    max-width: none;
    font-size: 1.5rem;
  }

  .prinzipien-list-item {
    font-size: 1.3rem;
  }

  .styleguide-heading-copy {
    letter-spacing: 0;
    font-size: 2.75rem;
  }
}

#w-node-_6a29df6c-1f89-ee93-bd70-7635df63f747-c437f593 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-_2b7c5124-2983-1e1f-ec98-87449ffaee69-c437f593 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_4d601686-04bf-7795-99d7-9f5c858955eb-c437f593 {
  grid-area: 2 / 3 / 3 / 5;
  place-self: end start;
}

#w-node-c92bcccf-6e56-f855-3ff4-38216b38e4c0-c437f593 {
  grid-area: 1 / 3 / 2 / 13;
}

#w-node-_62a6c3e5-7bf0-e8a2-aaad-c08588ef5f63-c437f593 {
  grid-area: 2 / 6 / 3 / 12;
  place-self: end start;
}

#w-node-e87c6c7d-8278-07d4-8b73-3dc93548a488-c437f593 {
  grid-area: 3 / 6 / 4 / 9;
  align-self: auto;
}

#w-node-f728dc40-f425-caea-7811-6fb999cd2ef6-c437f593 {
  grid-area: 4 / 6 / 5 / 12;
}

#w-node-df263735-6c93-1c75-90b2-7d9197c2f44e-c437f593 {
  grid-area: 3 / 9 / 4 / 12;
  align-self: auto;
}

#w-node-d01f43ad-6562-872c-db45-9defee850f42-c437f593 {
  grid-area: 1 / 2 / 2 / 6;
}

#w-node-_33234d0a-6aa6-bc0a-5abb-bd8dc25f0aef-c437f593 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-_897a849e-9cf8-7d11-f93f-6df84b41b405-c437f593 {
  grid-area: 1 / 2 / 2 / 6;
}

#w-node-_897a849e-9cf8-7d11-f93f-6df84b41b403-c437f593 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-_88ed5418-a604-95c8-d316-2a8b1fcabbdd-c437f593 {
  grid-area: 1 / 2 / 2 / 6;
}

#w-node-_88ed5418-a604-95c8-d316-2a8b1fcabbdb-c437f593 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-ea724d69-6b8d-a79f-7d3c-5599279ec859-c437f593 {
  grid-area: 1 / 2 / 2 / 6;
}

#w-node-ea724d69-6b8d-a79f-7d3c-5599279ec857-c437f593 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-_4f318d28-8923-5245-8bda-a474387ec859-c437f593 {
  grid-area: span 1 / span 10 / span 1 / span 10;
}

#w-node-af3ae471-3839-9743-95ee-3f065ac9b5c1-c437f593 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-af3ae471-3839-9743-95ee-3f065ac9b5c3-c437f593 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-cb8c593f-53b9-28d8-691f-094272ff8c19-c437f593 {
  grid-area: span 1 / span 10 / span 1 / span 10;
}

#w-node-f90ef14e-7759-7ac7-7845-b13e982d8564-c437f593 {
  grid-area: 1 / 11 / 2 / 13;
  place-self: end;
}

#w-node-fbda841f-26e6-fdd3-3f2d-573f1f49b9a2-c437f593 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-fbda841f-26e6-fdd3-3f2d-573f1f49b9a4-c437f593 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-_012f727c-8384-b77d-c387-ee49f8b984b0-c437f593 {
  grid-area: span 1 / span 10 / span 1 / span 10;
}

#w-node-f1e13c4f-5098-a057-9fae-6fc384374bce-c437f593 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-f1e13c4f-5098-a057-9fae-6fc384374bd0-c437f593 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-cdfe4aab-e5bc-4bb0-4ad1-454712752a76-c437f593 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-cdfe4aab-e5bc-4bb0-4ad1-454712752a80-c437f593 {
  grid-area: 1 / 1 / 2 / 5;
  place-self: start;
}

#w-node-cdfe4aab-e5bc-4bb0-4ad1-454712752a82-c437f593 {
  grid-area: 1 / 7 / 2 / 13;
  align-self: auto;
}

#w-node-_5d272835-bc95-2b0f-febc-74858e09bf96-c437f593 {
  grid-area: span 1 / span 10 / span 1 / span 10;
}

#w-node-_6b5446a7-ff19-1604-cd06-3b89e5de1cda-c437f593 {
  grid-area: 1 / 11 / 2 / 13;
  place-self: end;
}

#w-node-_6b5446a7-ff19-1604-cd06-3b89e5de1ce2-c437f593 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-_6b5446a7-ff19-1604-cd06-3b89e5de1ce4-c437f593 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-ffae624e-e91e-651a-850c-1a67ccd308be-ccd30887 {
  grid-area: 1 / 7 / 2 / 11;
  place-self: end start;
}

#w-node-ffae624e-e91e-651a-850c-1a67ccd308c7-ccd30887 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: end;
}

#w-node-_313b289d-7c92-168a-9264-7945c8edc108-c8edc0ec {
  grid-area: 1 / 5 / 2 / 13;
}

#w-node-_12b5c909-ebbb-e704-5e1b-bbd6485522b3-485522b0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center start;
}

#w-node-_12b5c909-ebbb-e704-5e1b-bbd6485522b5-485522b0 {
  grid-area: 1 / 7 / 2 / 13;
  place-self: center end;
}

#w-node-dd8f99f9-0e70-a1a3-cd5c-940f9cef760f-485522b0, #w-node-_9fb234c6-14e1-65f0-2d93-12dbbbc58779-485522b0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center start;
}

#w-node-_9e3228d1-316d-c04d-0e05-aeef3c0e41a1-c437f596 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-_9e3228d1-316d-c04d-0e05-aeef3c0e41a3-c437f596 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-a41ece57-9cfd-9e20-f53b-5799269ad0d5-c437f596 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-f1c7c926-9a2d-89f7-71f1-590db6ff5a88-c437f596 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-dad9ac4b-971b-fd31-2d5a-0e9316468fa5-c437f596 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-dad9ac4b-971b-fd31-2d5a-0e9316468fb0-c437f596 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-dad9ac4b-971b-fd31-2d5a-0e9316468fb2-c437f596 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-dad9ac4b-971b-fd31-2d5a-0e9316468fba-c437f596 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-dad9ac4b-971b-fd31-2d5a-0e9316468fbb-c437f596 {
  grid-area: 1 / 9 / 2 / 12;
}

#w-node-_6fb9a54d-a7f3-13d0-5415-3d4096dd0551-c437f596 {
  grid-area: span 1 / span 11 / span 1 / span 11;
}

#w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b654d-c437f596 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b654f-c437f596 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b6552-c437f596, #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b655a-c437f596, #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b6562-c437f596, #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b656a-c437f596, #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b6572-c437f596, #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b657a-c437f596 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  justify-self: center;
}

#w-node-_176d4ebc-037f-241a-6f8f-1616a30667ff-c437f596 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-_176d4ebc-037f-241a-6f8f-1616a3066801-c437f596 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-_301a54bc-8d33-fe6e-75a1-7b5c9f5ac7f4-c437f596 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_3ccca2aa-2fec-6b00-27ea-6adb337ebe93-c437f596 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-_3ccca2aa-2fec-6b00-27ea-6adb337ebe95-c437f596 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-_9c780ab4-0283-bfff-575b-a8ac1091ecb8-c437f596 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_9c780ab4-0283-bfff-575b-a8ac1091ecb7-c437f596 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_9c780ab4-0283-bfff-575b-a8ac1091ecba-c437f596 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_9c780ab4-0283-bfff-575b-a8ac1091ecbb-c437f596 {
  grid-area: 1 / 9 / 2 / 12;
}

#w-node-_9d3ef95b-8ed3-27c8-f6bb-e56cb8635250-c437f596 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_9d3ef95b-8ed3-27c8-f6bb-e56cb863524f-c437f596 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_9d3ef95b-8ed3-27c8-f6bb-e56cb8635252-c437f596 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_9d3ef95b-8ed3-27c8-f6bb-e56cb8635253-c437f596 {
  grid-area: 1 / 9 / 2 / 12;
}

#w-node-e30e493a-3041-f4bd-280f-4890997f77cd-c437f596 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-e30e493a-3041-f4bd-280f-4890997f77cc-c437f596 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-e30e493a-3041-f4bd-280f-4890997f77cf-c437f596 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-e30e493a-3041-f4bd-280f-4890997f77d0-c437f596 {
  grid-area: 1 / 9 / 2 / 12;
}

#w-node-_4f6804d1-40e3-3a21-555a-aeffb86ae4fa-c437f596 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_4f6804d1-40e3-3a21-555a-aeffb86ae4f9-c437f596 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_4f6804d1-40e3-3a21-555a-aeffb86ae4fc-c437f596 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_4f6804d1-40e3-3a21-555a-aeffb86ae4fd-c437f596 {
  grid-area: 1 / 9 / 2 / 12;
}

#w-node-af010fb1-867b-cb37-601e-f4169e44a558-c437f596 {
  grid-area: span 1 / span 9 / span 1 / span 9;
}

#w-node-e4e46c0b-6373-997c-74af-b69576d8e946-c437f596 {
  grid-area: 1 / 1 / 2 / 5;
  place-self: start;
}

#w-node-e4e46c0b-6373-997c-74af-b69576d8e948-c437f596 {
  grid-area: 1 / 7 / 2 / 13;
  align-self: auto;
}

#w-node-ba6a2b05-50de-9e39-723b-768cc897a1d8-c437f597 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-ba6a2b05-50de-9e39-723b-768cc897a1d9-c437f597 {
  grid-area: 3 / 1 / 4 / 6;
  align-self: start;
}

#w-node-ba6a2b05-50de-9e39-723b-768cc897a1dd-c437f597 {
  grid-area: 2 / 7 / 3 / 13;
}

#w-node-ba6a2b05-50de-9e39-723b-768cc897a1ea-c437f597 {
  grid-area: 3 / 7 / 4 / 13;
}

#w-node-ba6a2b05-50de-9e39-723b-768cc897a1ed-c437f597, #w-node-ba6a2b05-50de-9e39-723b-768cc897a1f7-c437f597, #w-node-ba6a2b05-50de-9e39-723b-768cc897a201-c437f597 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ba6a2b05-50de-9e39-723b-768cc897a20c-c437f597 {
  grid-area: 1 / 7 / 2 / 11;
  place-self: end start;
}

#w-node-ba6a2b05-50de-9e39-723b-768cc897a213-c437f597 {
  grid-area: 1 / 11 / 2 / 13;
  place-self: end;
}

#w-node-ba6a2b05-50de-9e39-723b-768cc897a215-c437f597 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: end;
}

#w-node-d8ef3937-6948-0135-25cf-c87e37f46bfa-c437f598 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-d8ef3937-6948-0135-25cf-c87e37f46bfc-c437f598 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-ad9c3661-7bd0-ad6c-8c71-93524215b794-c437f598 {
  grid-area: 2 / 1 / 3 / 4;
  align-self: auto;
}

#contact-form.w-node-ff32c6ce-1327-739c-a70c-e61ce5b7cb41-c437f598 {
  grid-area: 2 / 6 / 3 / 12;
}

#w-node-_0a9aeed3-7b54-7024-e56f-10292810b1fb-c437f599 {
  grid-area: 1 / 1 / 2 / 9;
  place-self: end start;
}

#w-node-_58113c30-7ca9-0246-1001-4e9fe373abc8-c437f599 {
  grid-area: 1 / 9 / 2 / 13;
  place-self: end start;
}

#w-node-_539fabd9-8e1e-d56c-dd5e-5025bbd4bdaa-c437f599 {
  grid-area: 1 / 1 / 2 / 5;
  place-self: start;
}

#w-node-_9028c278-f73e-542e-5fc6-019349db465e-c437f599 {
  grid-area: 1 / 6 / 2 / 12;
}

#w-node-_89641184-ad1c-240c-701d-86084980af3d-c437f599 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_89641184-ad1c-240c-701d-86084980af47-c437f599 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-_89641184-ad1c-240c-701d-86084980af49-c437f599 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-e8147955-0e7a-2d98-25e3-0c4de1d2582f-c437f599 {
  grid-area: 1 / 1 / 2 / 9;
  place-self: end start;
}

#w-node-e8147955-0e7a-2d98-25e3-0c4de1d25830-c437f599 {
  grid-area: 1 / 9 / 2 / 13;
  place-self: end start;
}

#w-node-e8147955-0e7a-2d98-25e3-0c4de1d25838-c437f599 {
  grid-area: 1 / 1 / 2 / 5;
  place-self: start;
}

#w-node-e8147955-0e7a-2d98-25e3-0c4de1d25845-c437f599 {
  grid-area: 1 / 6 / 2 / 12;
}

#w-node-e8147955-0e7a-2d98-25e3-0c4de1d25856-c437f599 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-e8147955-0e7a-2d98-25e3-0c4de1d2585b-c437f599 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-e8147955-0e7a-2d98-25e3-0c4de1d2585d-c437f599 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-_6ec57cfe-2386-c455-506c-37af45720a0c-45720a08 {
  grid-area: span 1 / span 10 / span 1 / span 10;
}

#w-node-_6ec57cfe-2386-c455-506c-37af45720a11-45720a08 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-_6ec57cfe-2386-c455-506c-37af45720a13-45720a08 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-_6ec57cfe-2386-c455-506c-37af45720a15-45720a08 {
  grid-area: 2 / 6 / 3 / 12;
}

#w-node-_6c56b248-592b-62d0-758e-63ab9eb5e6e4-c437f59a {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-_6c56b248-592b-62d0-758e-63ab9eb5e6e6-c437f59a {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-da246f7c-8068-7965-0fca-09b302278110-c437f59a {
  grid-area: 2 / 6 / 3 / 12;
}

#w-node-_1839f7e4-eae4-601b-0ae9-d3aaf5be7029-c437f59a {
  grid-area: 2 / 1 / 3 / 5;
  place-self: start;
}

#w-node-_450cf257-3f93-7a3b-3360-e4f38cf3627a-c437f59a {
  grid-area: span 1 / span 10 / span 1 / span 10;
}

#w-node-_450cf257-3f93-7a3b-3360-e4f38cf3627d-c437f59a {
  grid-area: 1 / 11 / 2 / 13;
  place-self: end;
}

#w-node-c73c61df-b740-485a-2993-3ad17fed5989-c437f59a {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-c73c61df-b740-485a-2993-3ad17fed598b-c437f59a {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-cb9de652-3f37-762b-ddb3-2ebaab3cd7e5-c437f59b {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-cb9de652-3f37-762b-ddb3-2ebaab3cd7e7-c437f59b {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-_7fca839e-f13c-424f-9b0b-1859fa0f82bd-c437f59b {
  grid-area: 2 / 6 / 3 / 11;
}

#w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f6f3-c437f59d {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f6f4-c437f59d {
  grid-area: 3 / 1 / 4 / 6;
  align-self: start;
}

#w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f6f8-c437f59d {
  grid-area: 2 / 7 / 3 / 13;
}

#w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f705-c437f59d {
  grid-area: 3 / 7 / 4 / 13;
}

#w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f708-c437f59d, #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f712-c437f59d, #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f71c-c437f59d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f727-c437f59d {
  grid-area: 1 / 7 / 2 / 11;
  place-self: end start;
}

#w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f72e-c437f59d {
  grid-area: 1 / 11 / 2 / 13;
  place-self: end;
}

#w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f730-c437f59d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: end;
}

#w-node-d2409e9d-dcdd-9c5f-cc5c-d2b96c7e1478-c437f59e {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-d2409e9d-dcdd-9c5f-cc5c-d2b96c7e147a-c437f59e {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-_2e119e47-976e-a459-2347-5d0211c159b6-c437f59f {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-_2e119e47-976e-a459-2347-5d0211c159b8-c437f59f {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-_0d1e55df-ea79-0448-c7c8-2841dfc85b51-c437f59f {
  grid-area: 2 / 1 / 3 / 6;
}

#w-node-eb694ed0-d6c4-7bbb-ece7-c7656072dabe-c437f59f {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-cbb611f5-2f99-e061-3bae-fbb77cb87f81-c437f59f {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: end start;
}

#w-node-d69cd5b0-ddc7-9496-b3b1-f5c8d09a7beb-c437f59f {
  grid-area: span 1 / span 10 / span 1 / span 10;
  place-self: end start;
}

#w-node-ad83a957-0dfe-dc37-2f58-5579a44a42b8-c437f59f {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_3b6921d5-1ed5-e719-c8fc-3cfdff262845-c437f59f {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-ce683714-31b0-f8e8-59db-31eb2d7c7f95-c437f59f, #w-node-_23826cfc-a96d-6d5b-3f5e-1a4f6b4db4c5-c437f59f, #w-node-_370ae80b-1228-a432-f911-aedb029213b1-c437f59f, #w-node-e182b006-69ab-0f7d-9823-d9c91649b61f-c437f59f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_67e0d146-ca82-665f-3521-2ffe5268608a-c437f59f {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: end start;
}

#w-node-_67e0d146-ca82-665f-3521-2ffe5268608c-c437f59f {
  grid-area: span 1 / span 10 / span 1 / span 10;
  place-self: end start;
}

#w-node-_7396fcf8-6079-e3aa-039e-726436375462-c437f59f {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_1efda182-5533-81f1-9477-18bf3d8a6ed4-c437f59f {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_1efda182-5533-81f1-9477-18bf3d8a6ed8-c437f59f, #w-node-_1efda182-5533-81f1-9477-18bf3d8a6edd-c437f59f, #w-node-_1efda182-5533-81f1-9477-18bf3d8a6ee2-c437f59f, #w-node-_1efda182-5533-81f1-9477-18bf3d8a6ee7-c437f59f, #w-node-_725c0259-b910-16cb-f4da-c9632b3ec405-c437f59f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7fe4020a-b2ed-684d-8c0c-8615f1b339ac-c437f59f {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: end start;
}

#w-node-_7fe4020a-b2ed-684d-8c0c-8615f1b339ae-c437f59f {
  grid-area: span 1 / span 10 / span 1 / span 10;
  place-self: end start;
}

#w-node-c61fdf62-a64f-a873-9e31-634f2bce1dbe-c437f59f {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_6dec1eb1-ba29-88fc-967c-84c2ab3f57f7-c437f59f {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_6dec1eb1-ba29-88fc-967c-84c2ab3f57fb-c437f59f, #w-node-e26d1f48-97d7-9034-101b-0c125ccbb473-c437f59f, #w-node-_7c29327e-b78c-e5bc-9dc3-6b4671701ce6-c437f59f, #w-node-ca6182e0-bc0a-8478-ddb3-dadfd680895b-c437f59f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8ba246f-af66-619f-6ed0-c27afe9e066e-c437f59f {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_5005611b-41b9-bd8e-7778-c289ee148cdd-c437f59f {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-_5005611b-41b9-bd8e-7778-c289ee148cdf-c437f59f {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-_5cf14370-b05d-9577-0175-6e4ebf32ace4-c437f5a0 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_5cf14370-b05d-9577-0175-6e4ebf32ace5-c437f5a0 {
  grid-area: 3 / 1 / 4 / 6;
  align-self: start;
}

#w-node-_5cf14370-b05d-9577-0175-6e4ebf32ace9-c437f5a0 {
  grid-area: 2 / 7 / 3 / 13;
}

#w-node-_5cf14370-b05d-9577-0175-6e4ebf32acf6-c437f5a0 {
  grid-area: 3 / 7 / 4 / 13;
}

#w-node-_5cf14370-b05d-9577-0175-6e4ebf32acf9-c437f5a0, #w-node-_5cf14370-b05d-9577-0175-6e4ebf32ad03-c437f5a0, #w-node-_5cf14370-b05d-9577-0175-6e4ebf32ad0d-c437f5a0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5cf14370-b05d-9577-0175-6e4ebf32ad18-c437f5a0 {
  grid-area: 1 / 7 / 2 / 11;
  place-self: end start;
}

#w-node-_5cf14370-b05d-9577-0175-6e4ebf32ad1f-c437f5a0 {
  grid-area: 1 / 11 / 2 / 13;
  place-self: end;
}

#w-node-_5cf14370-b05d-9577-0175-6e4ebf32ad21-c437f5a0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: end;
}

#w-node-bfa7cff4-1206-6bf6-e837-21b8e39a2a30-c437f5a1 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-bfa7cff4-1206-6bf6-e837-21b8e39a2a32-c437f5a1 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-cb024f7a-9cf2-a918-061d-b5e338a10145-c437f5a1 {
  grid-area: span 1 / span 10 / span 1 / span 10;
}

#w-node-cb024f7a-9cf2-a918-061d-b5e338a10150-c437f5a1 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-cb024f7a-9cf2-a918-061d-b5e338a10152-c437f5a1 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-b3790661-41ac-b91b-6fed-b75944828c3e-c437f5a2 {
  grid-area: 1 / 3 / 2 / 5;
  place-self: start;
}

#w-node-b3790661-41ac-b91b-6fed-b75944828c40-c437f5a2 {
  grid-area: 1 / 6 / 2 / 13;
  place-self: end start;
}

#w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f6f3-c437f5a3 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f6f4-c437f5a3 {
  grid-area: 3 / 1 / 4 / 6;
  align-self: start;
}

#w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f6f8-c437f5a3 {
  grid-area: 2 / 7 / 3 / 13;
}

#w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f705-c437f5a3 {
  grid-area: 3 / 7 / 4 / 13;
}

#w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f708-c437f5a3, #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f712-c437f5a3, #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f71c-c437f5a3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f727-c437f5a3 {
  grid-area: 1 / 7 / 2 / 11;
  place-self: end start;
}

#w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f72e-c437f5a3 {
  grid-area: 1 / 11 / 2 / 13;
  place-self: end;
}

#w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f730-c437f5a3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: end;
}

#w-node-_798200a3-5126-12bb-4107-14ac27bd8326-94c188c3 {
  grid-area: 1 / 1 / 2 / 8;
  place-self: end start;
}

#w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-94c188c3 {
  grid-area: 1 / 9 / 2 / 12;
  place-self: end start;
}

#w-node-_0629daf0-cee3-17bf-c783-8396f40a6df0-94c188c3 {
  grid-area: 1 / 1 / 2 / 5;
  place-self: start;
}

#w-node-_0629daf0-cee3-17bf-c783-8396f40a6e00-94c188c3 {
  grid-area: 1 / 6 / 2 / 12;
}

#w-node-_6006979f-0779-a475-932b-21b44e1c526d-94c188c3 {
  grid-area: 1 / 1 / 2 / 8;
  place-self: end start;
}

#w-node-_798200a3-5126-12bb-4107-14ac27bd8326-fddf3f69 {
  grid-area: 1 / 1 / 2 / 7;
  place-self: end start;
}

#w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-fddf3f69 {
  grid-area: 1 / 9 / 2 / 13;
  place-self: end start;
}

#w-node-_0629daf0-cee3-17bf-c783-8396f40a6df0-fddf3f69 {
  grid-area: 1 / 1 / 2 / 5;
  place-self: start;
}

#w-node-_0629daf0-cee3-17bf-c783-8396f40a6e00-fddf3f69 {
  grid-area: 1 / 6 / 2 / 12;
}

#w-node-e7041e94-7f33-caf0-cf72-8043d5850fc1-fddf3f69, #w-node-_798200a3-5126-12bb-4107-14ac27bd8326-3de9eaca {
  grid-area: 1 / 1 / 2 / 8;
  place-self: end start;
}

#w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-3de9eaca {
  grid-area: 1 / 9 / 2 / 12;
  place-self: end start;
}

#w-node-_0629daf0-cee3-17bf-c783-8396f40a6df0-3de9eaca {
  grid-area: 1 / 1 / 2 / 5;
  place-self: start;
}

#w-node-_764be1f8-ebe4-d706-30df-84e589611a07-3de9eaca {
  grid-area: 1 / 6 / 2 / 12;
}

#w-node-_5d21580e-804c-e7ad-966e-e6a38d7b480c-3de9eaca, #w-node-_798200a3-5126-12bb-4107-14ac27bd8326-b953b008 {
  grid-area: 1 / 1 / 2 / 8;
  place-self: end start;
}

#w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-b953b008 {
  grid-area: 1 / 9 / 2 / 13;
  place-self: end start;
}

#w-node-_0629daf0-cee3-17bf-c783-8396f40a6df0-b953b008 {
  grid-area: 1 / 1 / 2 / 5;
  place-self: start;
}

#w-node-_0629daf0-cee3-17bf-c783-8396f40a6e00-b953b008 {
  grid-area: 1 / 6 / 2 / 12;
}

#w-node-_81c1e999-7525-94c3-3588-8a93150238b5-b953b008, #w-node-_798200a3-5126-12bb-4107-14ac27bd8326-eea75b2f {
  grid-area: 1 / 1 / 2 / 8;
  place-self: end start;
}

#w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-eea75b2f {
  grid-area: 1 / 9 / 2 / 13;
  place-self: end start;
}

#w-node-_0629daf0-cee3-17bf-c783-8396f40a6df0-eea75b2f {
  grid-area: 1 / 1 / 2 / 5;
  place-self: start;
}

#w-node-_0629daf0-cee3-17bf-c783-8396f40a6e00-eea75b2f {
  grid-area: 1 / 6 / 2 / 12;
}

#w-node-d9b29151-bd8d-656e-2138-e9bcf92b0d56-eea75b2f, #w-node-_798200a3-5126-12bb-4107-14ac27bd8326-58d87010 {
  grid-area: 1 / 1 / 2 / 8;
  place-self: end start;
}

#w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-58d87010 {
  grid-area: 1 / 9 / 2 / 13;
  place-self: end start;
}

#w-node-_0629daf0-cee3-17bf-c783-8396f40a6df0-58d87010 {
  grid-area: 1 / 1 / 2 / 5;
  place-self: start;
}

#w-node-_07c4a6e8-7301-ded4-649f-d141f4dd11a0-58d87010 {
  grid-area: 1 / 6 / 2 / 12;
}

#w-node-_88aae723-552b-eaf7-9b73-5cf55f9e5958-58d87010 {
  grid-area: 1 / 1 / 2 / 8;
  place-self: end start;
}

#w-node-_798200a3-5126-12bb-4107-14ac27bd8326-3d9765fd {
  grid-area: 1 / 1 / 2 / 7;
  place-self: end start;
}

#w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-3d9765fd {
  grid-area: 1 / 9 / 2 / 13;
  place-self: end start;
}

#w-node-a27bda56-e6c7-840d-3020-d1feb5bb0eba-3d9765fd, #w-node-_8bfbdc4d-9b8b-cf55-3832-4d2a12e54c30-3d9765fd, #w-node-_338610fb-bab6-9e68-55b4-836ce04c16ea-3d9765fd, #w-node-d5d9f749-ca30-72f4-4abe-c930df31b661-3d9765fd, #w-node-_180be399-fdbf-734b-94cf-edeab36ae89d-3d9765fd, #w-node-_7c6e099c-716c-5cf5-a1a3-fa30430d4d5d-3d9765fd, #w-node-_5d2dd3bd-0ab0-1c6a-a618-4b5da3fef568-3d9765fd, #w-node-_53248c3f-dbc1-ee01-cf95-243237560495-3d9765fd, #w-node-_012d3619-7c3e-6320-7a63-52650d8e62dc-3d9765fd, #w-node-e21fd28c-980c-fd30-bd5c-03ebadfc717c-3d9765fd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9272f706-2a22-1a90-94dd-70d47f7ae4d5-3d9765fd {
  grid-area: 1 / 1 / 2 / 8;
  place-self: end start;
}

@media screen and (max-width: 991px) {
  #w-node-_6a29df6c-1f89-ee93-bd70-7635df63f747-c437f593 {
    order: 9999;
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_2b7c5124-2983-1e1f-ec98-87449ffaee69-c437f593 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_4d601686-04bf-7795-99d7-9f5c858955eb-c437f593, #w-node-c92bcccf-6e56-f855-3ff4-38216b38e4c0-c437f593, #w-node-_62a6c3e5-7bf0-e8a2-aaad-c08588ef5f63-c437f593, #w-node-e87c6c7d-8278-07d4-8b73-3dc93548a488-c437f593, #w-node-f728dc40-f425-caea-7811-6fb999cd2ef6-c437f593, #w-node-df263735-6c93-1c75-90b2-7d9197c2f44e-c437f593, #w-node-d01f43ad-6562-872c-db45-9defee850f42-c437f593, #w-node-_33234d0a-6aa6-bc0a-5abb-bd8dc25f0aef-c437f593, #w-node-_897a849e-9cf8-7d11-f93f-6df84b41b405-c437f593, #w-node-_897a849e-9cf8-7d11-f93f-6df84b41b403-c437f593, #w-node-_88ed5418-a604-95c8-d316-2a8b1fcabbdd-c437f593, #w-node-_88ed5418-a604-95c8-d316-2a8b1fcabbdb-c437f593, #w-node-ea724d69-6b8d-a79f-7d3c-5599279ec859-c437f593, #w-node-ea724d69-6b8d-a79f-7d3c-5599279ec857-c437f593, #w-node-_4f318d28-8923-5245-8bda-a474387ec859-c437f593 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-af3ae471-3839-9743-95ee-3f065ac9b5c1-c437f593 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-af3ae471-3839-9743-95ee-3f065ac9b5c3-c437f593 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-cb8c593f-53b9-28d8-691f-094272ff8c19-c437f593 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-f90ef14e-7759-7ac7-7845-b13e982d8564-c437f593 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: end;
  }

  #w-node-fbda841f-26e6-fdd3-3f2d-573f1f49b9a2-c437f593 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-fbda841f-26e6-fdd3-3f2d-573f1f49b9a4-c437f593 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_012f727c-8384-b77d-c387-ee49f8b984b0-c437f593 {
    grid-column: span 2 / span 2;
  }

  #w-node-f1e13c4f-5098-a057-9fae-6fc384374bce-c437f593 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-f1e13c4f-5098-a057-9fae-6fc384374bd0-c437f593, #w-node-cdfe4aab-e5bc-4bb0-4ad1-454712752a76-c437f593, #w-node-cdfe4aab-e5bc-4bb0-4ad1-454712752a80-c437f593, #w-node-cdfe4aab-e5bc-4bb0-4ad1-454712752a82-c437f593 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_5d272835-bc95-2b0f-febc-74858e09bf96-c437f593 {
    grid-column: span 2 / span 2;
  }

  #w-node-_6b5446a7-ff19-1604-cd06-3b89e5de1cda-c437f593, #w-node-_6b5446a7-ff19-1604-cd06-3b89e5de1ce2-c437f593 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6b5446a7-ff19-1604-cd06-3b89e5de1ce4-c437f593 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-ffae624e-e91e-651a-850c-1a67ccd308be-ccd30887 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-ffae624e-e91e-651a-850c-1a67ccd308c7-ccd30887 {
    grid-area: 2 / 1 / 3 / 5;
    align-self: end;
  }

  #w-node-_313b289d-7c92-168a-9264-7945c8edc108-c8edc0ec {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_12b5c909-ebbb-e704-5e1b-bbd6485522b3-485522b0 {
    grid-column: span 2 / span 2;
  }

  #w-node-_12b5c909-ebbb-e704-5e1b-bbd6485522b5-485522b0 {
    order: 9999;
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_9e3228d1-316d-c04d-0e05-aeef3c0e41a1-c437f596 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_9e3228d1-316d-c04d-0e05-aeef3c0e41a3-c437f596 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-a41ece57-9cfd-9e20-f53b-5799269ad0d5-c437f596 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-f1c7c926-9a2d-89f7-71f1-590db6ff5a88-c437f596 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-dad9ac4b-971b-fd31-2d5a-0e9316468fa5-c437f596 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-dad9ac4b-971b-fd31-2d5a-0e9316468fb0-c437f596 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-dad9ac4b-971b-fd31-2d5a-0e9316468fb2-c437f596 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-dad9ac4b-971b-fd31-2d5a-0e9316468fba-c437f596, #w-node-_6fb9a54d-a7f3-13d0-5415-3d4096dd0551-c437f596 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b654d-c437f596 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b654f-c437f596 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b6552-c437f596, #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b655a-c437f596, #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b6562-c437f596, #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b656a-c437f596, #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b6572-c437f596, #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b657a-c437f596 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: start;
  }

  #w-node-_176d4ebc-037f-241a-6f8f-1616a30667ff-c437f596 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_176d4ebc-037f-241a-6f8f-1616a3066801-c437f596 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_301a54bc-8d33-fe6e-75a1-7b5c9f5ac7f4-c437f596 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_3ccca2aa-2fec-6b00-27ea-6adb337ebe93-c437f596 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_3ccca2aa-2fec-6b00-27ea-6adb337ebe95-c437f596, #w-node-_9c780ab4-0283-bfff-575b-a8ac1091ecb8-c437f596 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_9c780ab4-0283-bfff-575b-a8ac1091ecb7-c437f596 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9c780ab4-0283-bfff-575b-a8ac1091ecba-c437f596 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_9d3ef95b-8ed3-27c8-f6bb-e56cb8635250-c437f596 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_9d3ef95b-8ed3-27c8-f6bb-e56cb863524f-c437f596 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9d3ef95b-8ed3-27c8-f6bb-e56cb8635252-c437f596 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-e30e493a-3041-f4bd-280f-4890997f77cd-c437f596 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-e30e493a-3041-f4bd-280f-4890997f77cc-c437f596 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e30e493a-3041-f4bd-280f-4890997f77cf-c437f596 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_4f6804d1-40e3-3a21-555a-aeffb86ae4fa-c437f596 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_4f6804d1-40e3-3a21-555a-aeffb86ae4f9-c437f596 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4f6804d1-40e3-3a21-555a-aeffb86ae4fc-c437f596 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-af010fb1-867b-cb37-601e-f4169e44a558-c437f596 {
    grid-column: span 2 / span 2;
  }

  #w-node-e4e46c0b-6373-997c-74af-b69576d8e946-c437f596, #w-node-e4e46c0b-6373-997c-74af-b69576d8e948-c437f596 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-ba6a2b05-50de-9e39-723b-768cc897a1d8-c437f597 {
    grid-column: span 4 / span 4;
  }

  #w-node-ba6a2b05-50de-9e39-723b-768cc897a1d9-c437f597, #w-node-ba6a2b05-50de-9e39-723b-768cc897a1dd-c437f597, #w-node-ba6a2b05-50de-9e39-723b-768cc897a1ea-c437f597 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-ba6a2b05-50de-9e39-723b-768cc897a1ed-c437f597, #w-node-ba6a2b05-50de-9e39-723b-768cc897a1f7-c437f597, #w-node-ba6a2b05-50de-9e39-723b-768cc897a201-c437f597 {
    grid-column: span 1 / span 1;
  }

  #w-node-ba6a2b05-50de-9e39-723b-768cc897a20c-c437f597 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-ba6a2b05-50de-9e39-723b-768cc897a213-c437f597 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ba6a2b05-50de-9e39-723b-768cc897a215-c437f597 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-d8ef3937-6948-0135-25cf-c87e37f46bfa-c437f598 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d8ef3937-6948-0135-25cf-c87e37f46bfc-c437f598, #w-node-ad9c3661-7bd0-ad6c-8c71-93524215b794-c437f598, #contact-form.w-node-ff32c6ce-1327-739c-a70c-e61ce5b7cb41-c437f598, #w-node-_0a9aeed3-7b54-7024-e56f-10292810b1fb-c437f599 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_58113c30-7ca9-0246-1001-4e9fe373abc8-c437f599 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_539fabd9-8e1e-d56c-dd5e-5025bbd4bdaa-c437f599, #w-node-_9028c278-f73e-542e-5fc6-019349db465e-c437f599 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_89641184-ad1c-240c-701d-86084980af3d-c437f599 {
    grid-column: span 4 / span 4;
  }

  #w-node-_89641184-ad1c-240c-701d-86084980af47-c437f599 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_89641184-ad1c-240c-701d-86084980af49-c437f599, #w-node-e8147955-0e7a-2d98-25e3-0c4de1d2582f-c437f599 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-e8147955-0e7a-2d98-25e3-0c4de1d25830-c437f599 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e8147955-0e7a-2d98-25e3-0c4de1d25838-c437f599, #w-node-e8147955-0e7a-2d98-25e3-0c4de1d25845-c437f599 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-e8147955-0e7a-2d98-25e3-0c4de1d25856-c437f599 {
    grid-column: span 4 / span 4;
  }

  #w-node-e8147955-0e7a-2d98-25e3-0c4de1d2585b-c437f599 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e8147955-0e7a-2d98-25e3-0c4de1d2585d-c437f599 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_6ec57cfe-2386-c455-506c-37af45720a0c-45720a08 {
    grid-column: span 4 / span 4;
  }

  #w-node-_6ec57cfe-2386-c455-506c-37af45720a11-45720a08, #w-node-_6ec57cfe-2386-c455-506c-37af45720a13-45720a08, #w-node-_6ec57cfe-2386-c455-506c-37af45720a15-45720a08 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_6c56b248-592b-62d0-758e-63ab9eb5e6e4-c437f59a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6c56b248-592b-62d0-758e-63ab9eb5e6e6-c437f59a {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-da246f7c-8068-7965-0fca-09b302278110-c437f59a, #w-node-_1839f7e4-eae4-601b-0ae9-d3aaf5be7029-c437f59a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_450cf257-3f93-7a3b-3360-e4f38cf3627a-c437f59a {
    grid-column: span 3 / span 3;
  }

  #w-node-_450cf257-3f93-7a3b-3360-e4f38cf3627d-c437f59a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c73c61df-b740-485a-2993-3ad17fed5989-c437f59a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-c73c61df-b740-485a-2993-3ad17fed598b-c437f59a {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-cb9de652-3f37-762b-ddb3-2ebaab3cd7e5-c437f59b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-cb9de652-3f37-762b-ddb3-2ebaab3cd7e7-c437f59b, #w-node-_7fca839e-f13c-424f-9b0b-1859fa0f82bd-c437f59b {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f6f3-c437f59d {
    grid-column: span 4 / span 4;
  }

  #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f6f4-c437f59d, #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f6f8-c437f59d, #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f705-c437f59d {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f708-c437f59d, #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f712-c437f59d, #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f71c-c437f59d {
    grid-column: span 1 / span 1;
  }

  #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f727-c437f59d {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f72e-c437f59d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f730-c437f59d {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-d2409e9d-dcdd-9c5f-cc5c-d2b96c7e1478-c437f59e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d2409e9d-dcdd-9c5f-cc5c-d2b96c7e147a-c437f59e {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_2e119e47-976e-a459-2347-5d0211c159b6-c437f59f {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_2e119e47-976e-a459-2347-5d0211c159b8-c437f59f {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_0d1e55df-ea79-0448-c7c8-2841dfc85b51-c437f59f {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-eb694ed0-d6c4-7bbb-ece7-c7656072dabe-c437f59f {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-cbb611f5-2f99-e061-3bae-fbb77cb87f81-c437f59f, #w-node-d69cd5b0-ddc7-9496-b3b1-f5c8d09a7beb-c437f59f, #w-node-ad83a957-0dfe-dc37-2f58-5579a44a42b8-c437f59f {
    grid-column: span 4 / span 4;
  }

  #w-node-_3b6921d5-1ed5-e719-c8fc-3cfdff262845-c437f59f {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_67e0d146-ca82-665f-3521-2ffe5268608a-c437f59f, #w-node-_67e0d146-ca82-665f-3521-2ffe5268608c-c437f59f, #w-node-_7396fcf8-6079-e3aa-039e-726436375462-c437f59f {
    grid-column: span 4 / span 4;
  }

  #w-node-_1efda182-5533-81f1-9477-18bf3d8a6ed4-c437f59f {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_7fe4020a-b2ed-684d-8c0c-8615f1b339ac-c437f59f, #w-node-_7fe4020a-b2ed-684d-8c0c-8615f1b339ae-c437f59f, #w-node-c61fdf62-a64f-a873-9e31-634f2bce1dbe-c437f59f {
    grid-column: span 4 / span 4;
  }

  #w-node-_6dec1eb1-ba29-88fc-967c-84c2ab3f57f7-c437f59f {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-a8ba246f-af66-619f-6ed0-c27afe9e066e-c437f59f {
    grid-column: span 4 / span 4;
  }

  #w-node-_5005611b-41b9-bd8e-7778-c289ee148cdd-c437f59f {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5005611b-41b9-bd8e-7778-c289ee148cdf-c437f59f {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_5cf14370-b05d-9577-0175-6e4ebf32ace4-c437f5a0 {
    grid-column: span 4 / span 4;
  }

  #w-node-_5cf14370-b05d-9577-0175-6e4ebf32ace5-c437f5a0, #w-node-_5cf14370-b05d-9577-0175-6e4ebf32ace9-c437f5a0, #w-node-_5cf14370-b05d-9577-0175-6e4ebf32acf6-c437f5a0 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_5cf14370-b05d-9577-0175-6e4ebf32acf9-c437f5a0, #w-node-_5cf14370-b05d-9577-0175-6e4ebf32ad03-c437f5a0, #w-node-_5cf14370-b05d-9577-0175-6e4ebf32ad0d-c437f5a0 {
    grid-column: span 1 / span 1;
  }

  #w-node-_5cf14370-b05d-9577-0175-6e4ebf32ad18-c437f5a0 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_5cf14370-b05d-9577-0175-6e4ebf32ad1f-c437f5a0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5cf14370-b05d-9577-0175-6e4ebf32ad21-c437f5a0 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-bfa7cff4-1206-6bf6-e837-21b8e39a2a30-c437f5a1 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-bfa7cff4-1206-6bf6-e837-21b8e39a2a32-c437f5a1, #w-node-cb024f7a-9cf2-a918-061d-b5e338a10145-c437f5a1 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-cb024f7a-9cf2-a918-061d-b5e338a10150-c437f5a1 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-cb024f7a-9cf2-a918-061d-b5e338a10152-c437f5a1 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-b3790661-41ac-b91b-6fed-b75944828c3e-c437f5a2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-b3790661-41ac-b91b-6fed-b75944828c40-c437f5a2 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f6f3-c437f5a3 {
    grid-column: span 4 / span 4;
  }

  #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f6f4-c437f5a3, #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f6f8-c437f5a3, #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f705-c437f5a3 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f708-c437f5a3, #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f712-c437f5a3, #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f71c-c437f5a3 {
    grid-column: span 1 / span 1;
  }

  #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f727-c437f5a3 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f72e-c437f5a3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f730-c437f5a3 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-94c188c3 {
    grid-area: span 1 / span 8 / span 1 / span 8;
    place-self: end start;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6df0-94c188c3 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-df99e32b-dc69-66fc-6eed-e716798f9f2f-94c188c3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6e00-94c188c3 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-fddf3f69 {
    grid-area: span 1 / span 8 / span 1 / span 8;
    place-self: end start;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6df0-fddf3f69 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-df99e32b-dc69-66fc-6eed-e716798f9f2f-fddf3f69 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6e00-fddf3f69 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-3de9eaca {
    grid-area: span 1 / span 8 / span 1 / span 8;
    place-self: end start;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6df0-3de9eaca {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-df99e32b-dc69-66fc-6eed-e716798f9f2f-3de9eaca {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_764be1f8-ebe4-d706-30df-84e589611a07-3de9eaca {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-b953b008 {
    grid-area: span 1 / span 8 / span 1 / span 8;
    place-self: end start;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6df0-b953b008 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-df99e32b-dc69-66fc-6eed-e716798f9f2f-b953b008 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6e00-b953b008 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-eea75b2f {
    grid-area: span 1 / span 8 / span 1 / span 8;
    place-self: end start;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6df0-eea75b2f {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-df99e32b-dc69-66fc-6eed-e716798f9f2f-eea75b2f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6e00-eea75b2f {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-58d87010 {
    grid-area: span 1 / span 8 / span 1 / span 8;
    place-self: end start;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6df0-58d87010 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-df99e32b-dc69-66fc-6eed-e716798f9f2f-58d87010 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_07c4a6e8-7301-ded4-649f-d141f4dd11a0-58d87010 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-3d9765fd {
    grid-area: span 1 / span 8 / span 1 / span 8;
    place-self: end start;
  }

  #w-node-a27bda56-e6c7-840d-3020-d1feb5bb0eba-3d9765fd, #w-node-_8bfbdc4d-9b8b-cf55-3832-4d2a12e54c30-3d9765fd, #w-node-_338610fb-bab6-9e68-55b4-836ce04c16ea-3d9765fd, #w-node-d5d9f749-ca30-72f4-4abe-c930df31b661-3d9765fd, #w-node-_180be399-fdbf-734b-94cf-edeab36ae89d-3d9765fd, #w-node-_7c6e099c-716c-5cf5-a1a3-fa30430d4d5d-3d9765fd, #w-node-_5d2dd3bd-0ab0-1c6a-a618-4b5da3fef568-3d9765fd, #w-node-_53248c3f-dbc1-ee01-cf95-243237560495-3d9765fd, #w-node-_012d3619-7c3e-6320-7a63-52650d8e62dc-3d9765fd, #w-node-e21fd28c-980c-fd30-bd5c-03ebadfc717c-3d9765fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_6a29df6c-1f89-ee93-bd70-7635df63f747-c437f593 {
    order: 9999;
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_2b7c5124-2983-1e1f-ec98-87449ffaee69-c437f593 {
    grid-column: span 4 / span 4;
  }

  #w-node-_6b5446a7-ff19-1604-cd06-3b89e5de1cda-c437f593 {
    grid-column: span 2 / span 2;
  }

  #w-node-dad9ac4b-971b-fd31-2d5a-0e9316468fa5-c437f596 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-dad9ac4b-971b-fd31-2d5a-0e9316468fba-c437f596 {
    grid-column: span 4 / span 4;
  }

  #w-node-_6fb9a54d-a7f3-13d0-5415-3d4096dd0551-c437f596 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b6552-c437f596, #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b655a-c437f596, #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b6562-c437f596, #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b656a-c437f596, #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b6572-c437f596, #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b657a-c437f596 {
    grid-column: span 4 / span 4;
  }

  #w-node-_9c780ab4-0283-bfff-575b-a8ac1091ecb7-c437f596 {
    grid-column: span 3 / span 3;
  }

  #w-node-_9c780ab4-0283-bfff-575b-a8ac1091ecba-c437f596 {
    grid-column: span 4 / span 4;
  }

  #w-node-_9d3ef95b-8ed3-27c8-f6bb-e56cb863524f-c437f596 {
    grid-column: span 3 / span 3;
  }

  #w-node-_9d3ef95b-8ed3-27c8-f6bb-e56cb8635252-c437f596 {
    grid-column: span 4 / span 4;
  }

  #w-node-e30e493a-3041-f4bd-280f-4890997f77cc-c437f596 {
    grid-column: span 3 / span 3;
  }

  #w-node-e30e493a-3041-f4bd-280f-4890997f77cf-c437f596 {
    grid-column: span 4 / span 4;
  }

  #w-node-_4f6804d1-40e3-3a21-555a-aeffb86ae4f9-c437f596 {
    grid-column: span 3 / span 3;
  }

  #w-node-_4f6804d1-40e3-3a21-555a-aeffb86ae4fc-c437f596, #w-node-_89641184-ad1c-240c-701d-86084980af3d-c437f599, #w-node-e8147955-0e7a-2d98-25e3-0c4de1d25856-c437f599 {
    grid-column: span 4 / span 4;
  }

  #w-node-da246f7c-8068-7965-0fca-09b302278110-c437f59a {
    grid-column: span 1 / span 1;
  }

  #w-node-_450cf257-3f93-7a3b-3360-e4f38cf3627a-c437f59a {
    grid-column: span 4 / span 4;
  }

  #w-node-_450cf257-3f93-7a3b-3360-e4f38cf3627d-c437f59a {
    grid-column: span 4 / span 4;
    justify-self: start;
  }

  #w-node-_0d1e55df-ea79-0448-c7c8-2841dfc85b51-c437f59f, #w-node-a8ba246f-af66-619f-6ed0-c27afe9e066e-c437f59f {
    grid-column: span 4 / span 4;
  }
}

@media screen and (max-width: 479px) {
  #w-node-f90ef14e-7759-7ac7-7845-b13e982d8564-c437f593 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    place-self: end start;
  }

  #w-node-_6b5446a7-ff19-1604-cd06-3b89e5de1cda-c437f593 {
    justify-self: start;
  }

  #w-node-ffae624e-e91e-651a-850c-1a67ccd308c7-ccd30887 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_12b5c909-ebbb-e704-5e1b-bbd6485522b3-485522b0, #w-node-_12b5c909-ebbb-e704-5e1b-bbd6485522b5-485522b0 {
    grid-column: span 1 / span 1;
  }

  #w-node-_9e3228d1-316d-c04d-0e05-aeef3c0e41a3-c437f596 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    place-self: end start;
  }

  #w-node-e125fc4a-3b61-9d3f-7a57-9aaba60b654d-c437f596 {
    grid-column: span 4 / span 4;
  }

  #w-node-ba6a2b05-50de-9e39-723b-768cc897a213-c437f597 {
    grid-column: span 2 / span 2;
    justify-self: start;
  }

  #w-node-ba6a2b05-50de-9e39-723b-768cc897a215-c437f597 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6ec57cfe-2386-c455-506c-37af45720a11-45720a08 {
    grid-column: span 4 / span 4;
  }

  #w-node-_450cf257-3f93-7a3b-3360-e4f38cf3627d-c437f59a {
    justify-self: start;
  }

  #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f72e-c437f59d {
    grid-column: span 2 / span 2;
    justify-self: start;
  }

  #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f730-c437f59d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5cf14370-b05d-9577-0175-6e4ebf32ad1f-c437f5a0 {
    grid-column: span 2 / span 2;
    justify-self: start;
  }

  #w-node-_5cf14370-b05d-9577-0175-6e4ebf32ad21-c437f5a0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f72e-c437f5a3 {
    grid-column: span 2 / span 2;
    justify-self: start;
  }

  #w-node-_67e15bea-4241-8ff7-f4ec-6f93ed42f730-c437f5a3 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_798200a3-5126-12bb-4107-14ac27bd8326-94c188c3 {
    grid-area: 1 / 1 / 2 / 8;
    place-self: end start;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-94c188c3 {
    grid-area: span 1 / span 6 / span 1 / span 6;
    place-self: end start;
  }

  #w-node-df99e32b-dc69-66fc-6eed-e716798f9f2f-94c188c3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_6006979f-0779-a475-932b-21b44e1c526d-94c188c3, #w-node-_798200a3-5126-12bb-4107-14ac27bd8326-fddf3f69 {
    grid-area: 1 / 1 / 2 / 8;
    place-self: end start;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-fddf3f69 {
    grid-area: span 1 / span 6 / span 1 / span 6;
    place-self: end start;
  }

  #w-node-df99e32b-dc69-66fc-6eed-e716798f9f2f-fddf3f69 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e7041e94-7f33-caf0-cf72-8043d5850fc1-fddf3f69, #w-node-_798200a3-5126-12bb-4107-14ac27bd8326-3de9eaca {
    grid-area: 1 / 1 / 2 / 8;
    place-self: end start;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-3de9eaca {
    grid-area: span 1 / span 6 / span 1 / span 6;
    place-self: end start;
  }

  #w-node-df99e32b-dc69-66fc-6eed-e716798f9f2f-3de9eaca {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5d21580e-804c-e7ad-966e-e6a38d7b480c-3de9eaca, #w-node-_798200a3-5126-12bb-4107-14ac27bd8326-b953b008 {
    grid-area: 1 / 1 / 2 / 8;
    place-self: end start;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-b953b008 {
    grid-area: span 1 / span 6 / span 1 / span 6;
    place-self: end start;
  }

  #w-node-df99e32b-dc69-66fc-6eed-e716798f9f2f-b953b008 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_81c1e999-7525-94c3-3588-8a93150238b5-b953b008, #w-node-_798200a3-5126-12bb-4107-14ac27bd8326-eea75b2f {
    grid-area: 1 / 1 / 2 / 8;
    place-self: end start;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-eea75b2f {
    grid-area: span 1 / span 6 / span 1 / span 6;
    place-self: end start;
  }

  #w-node-df99e32b-dc69-66fc-6eed-e716798f9f2f-eea75b2f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d9b29151-bd8d-656e-2138-e9bcf92b0d56-eea75b2f, #w-node-_798200a3-5126-12bb-4107-14ac27bd8326-58d87010 {
    grid-area: 1 / 1 / 2 / 8;
    place-self: end start;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-58d87010 {
    grid-area: span 1 / span 6 / span 1 / span 6;
    place-self: end start;
  }

  #w-node-df99e32b-dc69-66fc-6eed-e716798f9f2f-58d87010 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_88aae723-552b-eaf7-9b73-5cf55f9e5958-58d87010, #w-node-_798200a3-5126-12bb-4107-14ac27bd8326-3d9765fd {
    grid-area: 1 / 1 / 2 / 8;
    place-self: end start;
  }

  #w-node-_0629daf0-cee3-17bf-c783-8396f40a6de7-3d9765fd {
    grid-area: span 1 / span 6 / span 1 / span 6;
    place-self: end start;
  }

  #w-node-a27bda56-e6c7-840d-3020-d1feb5bb0eba-3d9765fd, #w-node-_8bfbdc4d-9b8b-cf55-3832-4d2a12e54c30-3d9765fd, #w-node-_338610fb-bab6-9e68-55b4-836ce04c16ea-3d9765fd, #w-node-d5d9f749-ca30-72f4-4abe-c930df31b661-3d9765fd, #w-node-_180be399-fdbf-734b-94cf-edeab36ae89d-3d9765fd, #w-node-_7c6e099c-716c-5cf5-a1a3-fa30430d4d5d-3d9765fd, #w-node-_5d2dd3bd-0ab0-1c6a-a618-4b5da3fef568-3d9765fd, #w-node-_53248c3f-dbc1-ee01-cf95-243237560495-3d9765fd, #w-node-_012d3619-7c3e-6320-7a63-52650d8e62dc-3d9765fd, #w-node-e21fd28c-980c-fd30-bd5c-03ebadfc717c-3d9765fd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9272f706-2a22-1a90-94dd-70d47f7ae4d5-3d9765fd {
    grid-area: 1 / 1 / 2 / 8;
    place-self: end start;
  }
}


@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/InterDisplay-Regular.woff2') format('woff2'), url('../fonts/InterDisplay-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/InterDisplay-Medium.woff2') format('woff2'), url('../fonts/InterDisplay-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/Inter-DisplaySemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/Inter-DisplaySemiBoldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlowsharp';
  src: url('../fonts/BarlowSharp-Bold.woff2') format('woff2'), url('../fonts/BarlowSharp-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlowsharp';
  src: url('../fonts/BarlowSharp-BoldItalic.woff2') format('woff2'), url('../fonts/BarlowSharp-BoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlowsharp';
  src: url('../fonts/BarlowSharp-ExtraBold.woff2') format('woff2'), url('../fonts/BarlowSharp-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlowsharp';
  src: url('../fonts/BarlowSharp-SemiBoldItalic.woff2') format('woff2'), url('../fonts/BarlowSharp-SemiBoldItalic.woff') format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Barlowsharp';
  src: url('../fonts/BarlowSharp-SemiBold.woff2') format('woff2'), url('../fonts/BarlowSharp-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlowsharp';
  src: url('../fonts/BarlowSharp-ExtraBoldItalic.woff2') format('woff2'), url('../fonts/BarlowSharp-ExtraBoldItalic.woff') format('woff');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/InterDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}