:root {
  --black-90: #000000e6;
  --black-60: #0009;
  --whitesmoke: #f5f5f5;
  --black-10: #0000001a;
  --white-100: #fff;
  --white-40: #fff6;
  --white-10: #ffffff1a;
  --body-background: #0e1011;
  --white-101: white;
  --black-91: black;
}

.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-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

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

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

h1 {
  color: var(--black-90);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 4.3rem;
  font-weight: 500;
  line-height: 110%;
}

h2 {
  color: var(--black-90);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 120%;
}

h3 {
  color: var(--black-90);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Anton SC, sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 120%;
}

h4 {
  color: var(--black-90);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 120%;
}

h5 {
  color: var(--black-90);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 130%;
}

h6 {
  color: var(--black-90);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 140%;
}

p {
  color: var(--black-90);
  margin-bottom: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
}

a {
  color: var(--black-60);
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  line-height: 140%;
  text-decoration: none;
}

a:hover {
  color: var(--black-90);
}

ul {
  margin-top: 0;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

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

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

label {
  color: var(--black-90);
  text-align: left;
  margin-bottom: 5px;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
  display: block;
}

blockquote {
  background-color: var(--whitesmoke);
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 1rem 2rem;
  font-size: 1rem;
  line-height: 140%;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  color: var(--black-60);
  text-align: center;
  margin-top: .5rem;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  line-height: 140%;
}

.container {
  min-height: auto;
  padding: 0 2rem 7.5rem;
}

.container.home-logo {
  height: auto;
  min-height: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.container.nav-bar {
  min-height: 0;
  padding-top: .8rem;
  padding-bottom: .8rem;
}

.container.homepage-hero {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.container.homepage-hero.linie {
  border-top: 1px solid var(--black-10);
}

.container.footer {
  background-color: #000;
  padding-top: 5rem;
  padding-bottom: 0;
}

.container.page-heading {
  padding-top: 15rem;
  padding-bottom: 0;
}

.container.git-home, .container.ohne {
  padding-left: 0;
  padding-right: 0;
}

.homepage-content {
  z-index: 990;
  background-color: var(--white-100);
  position: relative;
}

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

._12-column-grid.large-gap {
  grid-row-gap: 5rem;
  justify-content: space-between;
  align-items: stretch;
  max-width: none;
}

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

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

.nav-menu-desktop {
  grid-column-gap: .5rem;
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.primary-button {
  border: 1px solid var(--black-10);
  background-color: var(--black-90);
  border-radius: 20px;
  flex-flow: column;
  align-items: flex-start;
  height: 2.4rem;
  padding: .5rem 1rem;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
}

.navigation-bar {
  border-top: 1px solid var(--black-10);
  border-bottom: 1px solid var(--black-10);
  display: none;
}

.small-logo {
  width: auto;
  height: 1rem;
  display: block;
}

.menu-button {
  width: 0;
  height: 0;
  display: none;
}

.standard-text {
  color: var(--black-90);
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  line-height: 140%;
}

.standard-text.black-60 {
  color: var(--black-60);
}

.standard-text.black-60.abstand_links {
  margin-left: 0;
  padding-bottom: 2px;
  padding-left: 10px;
}

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

.standard-text.footer-button {
  z-index: 5;
  position: relative;
}

.big-logo-section {
  z-index: 1;
  position: sticky;
  top: 0%;
  overflow: hidden;
}

.nav-menu-mobile {
  width: 0;
  height: 0;
  display: none;
}

.logo-scroll-trigger {
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50vh;
}

.scroll-down-wrapper {
  grid-column-gap: .25rem;
  align-items: center;
  display: flex;
}

.scroll-down-arrow {
  display: block;
}

.scroll-down-arrow-wrapper {
  width: .75rem;
  height: .75rem;
  overflow: hidden;
}

.section-heading {
  border-bottom: 1px solid var(--black-10);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-top: 140px;
  padding-bottom: 1rem;
  display: flex;
}

.section-heading.next {
  justify-content: flex-start;
  align-items: center;
  display: block;
  overflow: visible;
}

.section-title {
  color: var(--black-90);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
  transition: opacity .8s;
}

.section-title:hover {
  opacity: .2;
}

.secondary-button {
  border: 1px solid var(--black-10);
  background-color: var(--white-100);
  border-radius: 20px;
  flex-flow: column;
  align-items: flex-start;
  height: 2.4rem;
  padding: .5rem 1rem;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
}

.large-text {
  color: var(--black-90);
  font-family: Inter Tight, sans-serif;
  font-size: 2.5rem;
  line-height: 120%;
}

.statistic-block {
  border-top: 1px solid var(--black-10);
  border-left: 1px solid var(--black-10);
  padding-left: 2rem;
}

.statistic-text {
  font-size: 10rem;
  line-height: 100%;
}

.statistic-description-wrapper {
  grid-row-gap: .5rem;
  background-color: var(--white-100);
  flex-direction: column;
  margin-top: -.75rem;
  padding-left: .5rem;
  display: flex;
}

.service-item {
  padding-top: 2rem;
}

.medium-text {
  color: var(--black-90);
  font-family: Inter Tight, sans-serif;
  font-size: 1.25rem;
  line-height: 140%;
}

.medium-text.black-60 {
  color: var(--black-60);
  text-transform: none;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.medium-text.black-60.no {
  display: none;
}

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

.medium-text.abstand {
  margin-bottom: 40px;
}

.medium-text.impressum {
  margin-bottom: 40px;
  font-family: Inter Tight, sans-serif;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

.image-wrapper.aus {
  display: none;
}

.divider {
  background-color: var(--black-10);
  width: 100%;
  height: 1px;
}

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

.project-link {
  width: 100%;
  text-decoration: none;
}

.project-info-block {
  grid-row-gap: 4rem;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.project-info-block.breite {
  width: 50vw;
  padding-right: 8em;
}

.thumbnail-wrapper {
  text-align: left;
  position: relative;
  overflow: hidden;
}

.thumbnail-wrapper.left {
  text-align: right;
  width: auto;
  overflow: visible;
}

.thumbnail-wrapper.abstand {
  text-align: right;
  width: 20vw;
  overflow: visible;
}

.thumbnail-wrapper.breite {
  width: 50vw;
}

.extra-large-text {
  color: var(--black-90);
  margin-top: 100px;
  font-family: Inter Tight, sans-serif;
  font-size: 3.5rem;
  line-height: 120%;
}

.extra-large-text.white-100 {
  color: var(--white-100);
}

.partner-logo-block {
  grid-row-gap: .75rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.partner-logo-item {
  grid-column-gap: .5rem;
  border: 1px solid var(--black-10);
  border-radius: 100rem;
  flex-direction: row;
  align-items: center;
  padding: .25rem 1rem .25rem .25rem;
  display: flex;
}

.partner-logo {
  width: 2.5rem;
}

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

.testimonial-item {
  border-bottom: 1px solid var(--black-10);
  flex-direction: column;
  width: 100%;
  padding-bottom: 1.5rem;
  display: flex;
  overflow: hidden;
}

.testimonial-item.default-item {
  width: 100%;
  display: block;
}

.testimonial-first-row {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

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

.testimonial-image {
  width: 5rem;
}

.dropdown-block {
  border: 1px solid var(--black-10);
  border-radius: 100rem;
  padding: .5rem;
}

.dropdown-icon {
  display: block;
}

.testimonial-second-row {
  align-items: flex-start;
  display: none;
}

.accordion-text {
  color: var(--black-60);
  margin-top: 1em;
  font-family: Inter Tight, sans-serif;
  font-size: 1.25rem;
  line-height: 140%;
}

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

.footer-link {
  color: var(--white-40);
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  line-height: 140%;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--white-100);
}

.button-wrapper {
  background-color: var(--white-100);
  text-align: left;
  border-radius: 100rem;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 10rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.get-in-touch-button {
  text-decoration: none;
}

.footer-logo-loop-block {
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  margin-top: 4rem;
  margin-left: -2rem;
  margin-right: -2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.logo-loop-wrapper {
  grid-column-gap: 0vw;
  width: 200vw;
  display: flex;
}

.footer-minior-link-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  display: flex;
}

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

.footer-button-hover {
  background-color: #df7d46;
  border-radius: 100%;
  height: 0;
  position: absolute;
  inset: auto 0% 0%;
}

.footer-big-logo {
  width: 85em;
  max-width: none;
  height: auto;
}

.project-minor-info-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid var(--black-10);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: grid;
}

.projet-minor-info-wrapper {
  width: 100%;
}

.project-main-info-wrapper {
  grid-row-gap: .5rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.about-us-introduction-text-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
}

.page-heading {
  font-family: Anton SC, sans-serif;
  font-size: 12vw;
  font-weight: 400;
  line-height: 120%;
  position: static;
}

.page-heading.headline-blog {
  text-transform: none;
  font-family: Inter Tight, sans-serif;
  font-size: 4vw;
}

.page-heading-wrapper {
  overflow: hidden;
}

.about-minor-info {
  color: var(--black-60);
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  line-height: 140%;
}

.value-item {
  border-bottom: 1px solid var(--black-10);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.value-icon {
  width: 2rem;
  height: 2rem;
}

.text-over-image-wrapper {
  position: relative;
}

.transparent-text {
  opacity: 1;
  color: #fff;
  mix-blend-mode: difference;
  font-family: Inter Tight, sans-serif;
  font-size: 5vw;
  font-weight: 500;
  line-height: 100%;
}

.transparent-text-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.section {
  overflow: hidden;
}

.section.headline {
  margin-top: 0;
}

.image-with-scrolll-effect-wrapper {
  width: 100%;
  overflow: hidden;
}

.our-team-item {
  grid-row-gap: .5rem;
  flex-direction: column;
  display: flex;
}

.join-our-team-block {
  border: 1px solid var(--black-10);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
}

.join-our-team-content-wrapper {
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.award-recognition-item {
  padding-top: 1rem;
}

.what-we-do-block {
  padding-top: 2rem;
}

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

.service-detail-list {
  width: 100%;
}

.service-detail-item {
  border-top: 1px solid var(--black-10);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.service-name-wrapper {
  width: 30vw;
}

.process-item {
  border-bottom: 1px solid var(--black-10);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.project-thumbnail {
  text-align: left;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  width: 75%;
  overflow: clip;
}

.project-thumbnail.klein {
  text-align: right;
  width: 30%;
}

.contact-content-wrapper {
  border-top: 1px solid var(--black-10);
  padding-top: 5rem;
}

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

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

.contact-form-block {
  grid-row-gap: 2rem;
  flex-direction: column;
  width: 60vw;
  display: flex;
}

.submit-button {
  background-color: var(--black-90);
  color: var(--white-100);
  border-radius: 100rem;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  line-height: 140%;
}

.text-field {
  background-color: var(--whitesmoke);
  border: 1px #000;
  min-height: 4rem;
  margin-bottom: .75rem;
  padding: 1rem .75rem;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  line-height: 140%;
}

.text-area {
  background-color: var(--whitesmoke);
  border: 1px #000;
  min-height: 6rem;
  margin-bottom: 2rem;
  padding: 1rem .75rem;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
}

.form-block {
  line-height: 140%;
}

.success-message {
  background-color: var(--whitesmoke);
  color: var(--black-90);
  padding: .75rem 1rem;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
}

.error-message {
  margin-top: 2rem;
  padding: .75rem 1rem;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
}

.project-detail-info-block {
  border-bottom: 1px solid var(--black-10);
  width: 100%;
  padding-bottom: 1rem;
}

.project-detail-content {
  grid-row-gap: 5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.project-detail-content-list {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.project-detail-content-item {
  border-bottom: 1px solid var(--black-10);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

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

.empty-state {
  background-color: var(--whitesmoke);
  color: var(--black-90);
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  line-height: 140%;
}

.style-guide-content {
  grid-row-gap: 7rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.style-guide-item {
  grid-row-gap: 2rem;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.color-swatch {
  width: 100%;
  height: 10rem;
}

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

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

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

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

.color-swatch.white-100 {
  border: 1px solid var(--black-10);
  background-color: var(--white-100);
}

.color-swatch.white-40 {
  border: 1px solid var(--black-10);
  background-color: var(--white-40);
}

.color-swatch.white-10 {
  border: 1px solid var(--black-10);
  background-color: var(--white-10);
}

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

.rich-text {
  color: var(--black-90);
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
}

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

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

.rich-text p {
  color: var(--black-60);
  margin-bottom: 4rem;
}

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

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

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

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

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

.primary-button-text {
  color: var(--white-100);
  margin-bottom: .5rem;
}

.secondary-button-text {
  color: var(--black-90);
  margin-bottom: .5rem;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  line-height: 140%;
}

.select-field {
  color: var(--black-90);
  border: 1px #000;
  min-height: 4rem;
  margin-bottom: .75rem;
  padding: 1rem .75rem;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  line-height: 140%;
}

.nav-menu-wrapper {
  grid-column-gap: .5rem;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.licenses-link {
  font-size: 2.5rem;
  line-height: 120%;
}

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

.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: center;
  flex-direction: column;
  align-items: center;
  width: 40%;
  display: flex;
}

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

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

._404-text-wrapper {
  grid-row-gap: .75rem;
  text-align: center;
  flex-direction: column;
  display: flex;
}

._404-text {
  text-align: center;
}

._404-block {
  grid-row-gap: 2rem;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 40%;
  display: flex;
}

.collection-list {
  grid-row-gap: 7rem;
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  margin-top: 100px;
  display: flex;
}

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

.collection-list-wrapper.no {
  display: none;
}

.collection-item {
  width: 100%;
}

.service-image {
  width: 60%;
}

.big-logo.no {
  display: none;
}

.view-case-study-block {
  grid-column-gap: .5rem;
  background-color: var(--white-100);
  border-radius: 100rem;
  align-items: center;
  padding: .25rem .25rem .25rem .75rem;
  display: flex;
  position: absolute;
  inset: auto 10px .75rem auto;
}

.view-case-study-icon-wrapper {
  border: 1px solid var(--black-10);
  border-radius: 100rem;
  padding: .25rem;
  display: flex;
}

.view-case-study-icon {
  width: 1rem;
  height: 1rem;
}

.heading {
  color: var(--white-10);
}

.nav-link-6 {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #000;
  transition: opacity .6s;
}

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

.nav-link-6.w--current {
  color: #ff5864;
}

.nav-bar {
  z-index: 999;
  border-bottom: 1px none var(--black-10);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 0;
  display: flex;
  position: absolute;
}

.overlay-menu {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background-color: #fff;
  width: 100vw;
  display: none;
  position: fixed;
  inset: 0% 0% 0% auto;
}

.cell-slogan {
  justify-content: center;
}

.quick-stack {
  width: 100%;
  height: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.text-no {
  display: none;
}

.we-are-box {
  text-transform: uppercase;
  margin-left: 0;
  margin-right: auto;
  font-weight: 700;
}

.nav-link-text {
  color: #000;
  text-align: center;
  letter-spacing: -2px;
  text-transform: uppercase;
  padding-top: 10px;
  font-size: 8vw;
  font-weight: 400;
  line-height: .8;
}

.brand-logo-2 {
  width: 6em;
}

.menu-button-3 {
  background-color: #0000;
  height: auto;
  padding: 0;
}

.menu-button-3:focus-visible, .menu-button-3[data-wf-focus-visible], .menu-button-3.w--open {
  background-color: #0000;
}

.cell-brand {
  justify-content: center;
  align-items: center;
}

.nav-menu-3 {
  z-index: 90;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 40px;
  margin-right: 40px;
  display: none;
  position: fixed;
  inset: 0% 0% 0% auto;
}

.cell-menu {
  justify-content: center;
  align-items: flex-end;
}

.menu-button-wrapper {
  z-index: 999;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: fixed;
}

.dot-menu-button {
  background-color: #0000;
  background-image: url('../images/open-menu.svg');
  background-position: 0 0;
  background-size: cover;
  border-radius: 0;
  width: 30px;
  height: 30px;
}

.navmenu {
  z-index: 999;
  background-color: #0000;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  height: auto;
  display: flex;
  position: relative;
}

.background-video {
  height: 82vh;
}

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

.heading-3 {
  text-transform: uppercase;
  font-family: Inter Tight, sans-serif;
  font-size: 2rem;
  font-weight: 400;
}

.heading-3.blog.mobile {
  display: none;
}

.heading-4, .heading-5 {
  font-size: 2rem;
}

.heading-6 {
  font-family: Anton SC, sans-serif;
  font-size: 2rem;
}

.heading-7, .heading-8 {
  font-size: 2rem;
}

.abstand-4rem {
  height: 4rem;
}

.grid-team-thirds {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 100px;
}

.tile-team {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  margin-bottom: 6px;
  display: flex;
}

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

.background-video-2 {
  height: 75vh;
}

.div-monate {
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.nav-item-line {
  background-color: #0e1011;
  width: 0;
  height: 2px;
  margin-right: 4px;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.nav-item-line.inverse {
  background-color: #fff;
}

.text-color-muted {
  color: #0e101199;
  padding-top: 60px;
}

.text-color-muted.black {
  color: #fff;
}

.text-color-muted.white-footer {
  color: #fff;
  padding-top: 0;
  line-height: 100%;
}

.section-home-office {
  transform-origin: 50% 100%;
  position: relative;
}

.button-text-inner {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.header {
  z-index: 1000;
  background-color: #fff;
  position: fixed;
  inset: 0% 0% auto;
}

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

.max-width-huge {
  width: 100%;
  max-width: 87.5rem;
}

.nav-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #0e1011;
  letter-spacing: 0;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
  display: flex;
  position: relative;
}

.nav-item:hover {
  color: #0e1011;
}

.nav-item.w--current {
  color: #0e1011;
  transition: color .3s;
}

.nav-item.inverse, .nav-item.inverse:hover {
  color: #fff;
}

.testimonial-item-2 {
  border-bottom: 1px solid #0000001a;
  flex-direction: column;
  width: 100%;
  padding-bottom: 1.5rem;
  display: flex;
  overflow: hidden;
}

.testimonial-item-2.default-item {
  width: 100%;
  display: block;
}

.footer-2 {
  color: #fff;
  background-color: #0e1011;
  flex-flow: column;
  justify-content: space-between;
  min-height: 100vh;
  padding: 6vw 6vw 2vw;
  display: flex;
  position: relative;
}

.button-text {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #0e1011;
  text-align: center;
  letter-spacing: 0;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 120%;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

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

.section-home-hero {
  transform-origin: 50% 100%;
  background-color: #fff;
  position: relative;
}

.content-wrapper-kontakt {
  margin-bottom: 220px;
}

.medium-text-2 {
  color: #000000e6;
  font-size: 1.25rem;
  line-height: 140%;
}

.medium-text-2.black-60 {
  color: #0009;
  font-size: 1rem;
  font-weight: 400;
}

.medium-text-2.black-60.no {
  display: none;
}

.section-home-faq {
  transform-origin: 50% 100%;
  position: relative;
}

.footer-bottom {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  display: flex;
}

.wrapper-heading-arbeiten {
  height: auto;
  min-height: 2rem;
}

.view-case-study-block-2 {
  grid-column-gap: .5rem;
  background-color: #fff;
  border-radius: 100rem;
  align-items: center;
  padding: .25rem .25rem .25rem .75rem;
  display: flex;
  position: absolute;
  inset: auto 10px .75rem auto;
}

.dark-mode {
  display: none;
}

.accordion-text-2 {
  color: #0009;
  margin-top: 1em;
  font-size: 1.25rem;
  line-height: 140%;
}

.navbar-small-right {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.show-tablet {
  display: none;
}

.nav {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.navbar-menu-item {
  color: #0e1011;
  letter-spacing: 0;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 100%;
  text-decoration: none;
  position: relative;
}

.navbar-menu-item:hover {
  color: #0e1011;
}

.navbar-small {
  z-index: 2;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: .8fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4vw 1.5rem;
  display: grid;
}

.divider-2 {
  background-color: #0000001a;
  width: 100%;
  height: 1px;
}

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

.header-small {
  z-index: 101;
  position: absolute;
  inset: 0% 0% auto;
}

.mobile-menu-toggle-inner {
  cursor: pointer;
  width: 100%;
  height: 10px;
  display: block;
  position: relative;
}

.project-thumbnail-3 {
  text-align: right;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  width: 30%;
}

.home-hero-right {
  flex-flow: column;
  display: flex;
}

.home-hero-logos {
  grid-column-gap: 5rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  max-width: 800px;
  display: grid;
}

.home-hero-grid {
  z-index: 2;
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: .8fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  display: grid;
}

.navbar-right {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.heading-style-large {
  text-transform: uppercase;
  font-family: Anton SC, sans-serif;
  font-size: 12vw;
  font-weight: 400;
  line-height: 100%;
}

.menu-toggle-line {
  perspective-origin: 50%;
  transform-origin: 50%;
  background-color: #0e1011;
  width: 100%;
  height: 2px;
  position: absolute;
}

.menu-toggle-line.bottom {
  bottom: 0;
}

.menu-toggle-line.top {
  top: 0;
}

.section-home-projects {
  transform-origin: 50% 100%;
  background-color: #f8f8f8;
  position: relative;
}

.footer-bottom-grid {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.navbar-small-menu {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  align-items: center;
  display: flex;
}

.statistic-block-2 {
  border-top: 1px solid #0000001a;
  border-left: 1px solid #0000001a;
  padding-left: 2rem;
}

.home-hero-right-top {
  flex-flow: column;
  justify-content: space-between;
  height: 100vh;
  padding: 10vw 6vw 4vw;
  display: flex;
}

.mobile-menu-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding-top: 96px;
  display: flex;
}

.mobile-menu {
  z-index: 999;
  background-color: #fff;
  width: 100vw;
  height: 100dvh;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
  transform: translate(0);
}

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

.margin-bottom.margin-xhuge {
  grid-template-columns: .3fr 1fr;
}

.main-wrapper {
  transform-origin: 50% 100%;
  position: relative;
}

.statistic-description-wrapper-2 {
  grid-row-gap: .5rem;
  background-color: #fff;
  flex-direction: column;
  margin-top: -.75rem;
  padding-left: .5rem;
  display: flex;
}

.text-meta {
  letter-spacing: 0;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 130%;
}

.text-meta.text-color-muted {
  padding-bottom: 20px;
  font-family: Inter Tight, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.overflow-hidden {
  padding-top: 10px;
  overflow: hidden;
}

.view-case-study-icon-wrapper-2 {
  border: 1px solid #0000001a;
  border-radius: 100rem;
  padding: .25rem;
  display: flex;
}

.heading-alt-h2 {
  font-family: Inter Tight, sans-serif;
  font-size: 5vw;
  font-weight: 400;
  line-height: 120%;
}

.mobile-menu-nav-item {
  color: #0e1011;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.nav-menu {
  aspect-ratio: auto;
  text-align: right;
  background-color: #0e1011;
  display: none;
}

.home-hero-image {
  object-fit: cover;
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
}

.dropdown-block-2 {
  border: 1px solid #0000001a;
  border-radius: 100rem;
  padding: .5rem;
}

.navbar-logo, .navbar-logo.w--current {
  display: flex;
}

.navbar-2 {
  background-color: #ffffff0d;
  width: 100%;
  height: auto;
  position: relative;
  inset: 0% 0% auto;
}

.container-2 {
  text-align: justify;
}

.section-home-clients {
  background-color: #fff;
  position: relative;
}

.home-hero-right-bottom {
  flex-flow: column;
  justify-content: space-between;
  padding: 6vw 6vw 8vw;
  display: flex;
}

._12-column-grid-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 100px;
  display: grid;
}

._12-column-grid-2.large-gap {
  grid-column-gap: 1rem;
  grid-row-gap: 5rem;
}

.nav-link {
  color: #fff;
  text-align: right;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  height: 10rem;
  font-size: 48px;
  display: flex;
}

.nav-link:hover {
  color: #262829;
}

.heading-style-h2 {
  text-transform: uppercase;
  font-family: Anton SC, sans-serif;
  font-size: 6vw;
  font-weight: 400;
  line-height: 100%;
}

.navbar-menu {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  align-items: center;
  display: flex;
}

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

.button-text-line {
  background-color: #0e1011;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -2px;
}

.heading-alt-small {
  text-transform: none;
  font-size: 5vw;
  font-weight: 400;
  line-height: 110%;
}

.heading-style-xxlarge {
  text-transform: uppercase;
  margin-top: 60px;
  font-family: Anton SC, sans-serif;
  font-size: 19vw;
  font-weight: 400;
  line-height: 100%;
}

.heading-style-xxlarge.footer {
  color: var(--white-100);
  font-family: Anton SC, sans-serif;
  font-size: 16vw;
  font-weight: 500;
}

.pageloader {
  z-index: 9999;
  color: #fff;
  background-color: #0e1011;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100vw;
  height: 100dvh;
  padding: 5vw 6vw;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.section-home-services {
  transform-origin: 50% 100%;
  position: relative;
}

.navbar-small-left {
  grid-column-gap: 3rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
  position: relative;
}

.menu-nav-item-text {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 600;
  line-height: 100%;
}

.navbar {
  z-index: 2;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 6vw 1.5rem;
  display: grid;
}

.menu-button-4.w--open {
  background-color: #0e1011;
}

.nav-item-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
}

.max-width-large {
  width: 100%;
  max-width: 50rem;
}

.navbar-left {
  grid-column-gap: 3rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
  position: relative;
}

.standard-text-2 {
  color: #000000e6;
  font-size: 1rem;
  line-height: 140%;
}

.standard-text-2.black-60 {
  color: #0009;
}

.section-top {
  grid-column-gap: 8vw;
  grid-row-gap: 8vw;
  background-color: #fff;
  flex-flow: column;
  margin-bottom: 100px;
  padding: 10vw 6vw 6vw;
  display: flex;
}

.section-top.muted {
  background-color: #f8f8f8;
}

.footer-nav {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 0;
  display: grid;
}

.mobile-menu-toggle {
  cursor: pointer;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: none;
}

.navbar-item-line {
  background-color: #0e1011;
  width: 0;
  height: 2px;
  margin-right: 4px;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.mobile-menu-nav {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.pageloader-heading {
  text-align: right;
  text-transform: uppercase;
  font-family: Anton SC, sans-serif;
  font-size: 12vw;
  font-weight: 400;
  line-height: 100%;
}

.navbar-logo-image {
  filter: invert();
  width: 50%;
}

.footer-eaglenest {
  background-color: var(--body-background);
  color: #fff;
  flex-flow: column;
  justify-content: space-between;
  min-height: 100vh;
  padding: 6vw 6vw 2vw;
  display: flex;
  position: relative;
}

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

.heading-9, .heading-10 {
  font-family: Anton SC, sans-serif;
  font-weight: 400;
}

.heading-11 {
  font-family: Anton SC, sans-serif;
}

.heading-12, .heading-13 {
  font-weight: 400;
}

.headline-antrieb {
  font-family: Anton SC, sans-serif;
  font-weight: 400;
}

.text-preise {
  font-family: Inter Tight, sans-serif;
  font-weight: 400;
}

.bold-text {
  font-weight: 400;
}

.abstand-20, .abstand-14 {
  height: 14em;
}

.heading-14, .heading-15, .heading-16 {
  font-family: Inter Tight, sans-serif;
}

.div-image {
  justify-content: flex-start;
  align-items: flex-start;
  width: 30vw;
  display: flex;
}

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

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

._12-column-grid-3.large-gap.grid {
  grid-template-columns: 1fr 1fr 1fr;
}

.extra-large-text-2 {
  color: #000000e6;
  margin-top: 100px;
  font-family: Inter Tight, sans-serif;
  font-size: 3.5rem;
  line-height: 120%;
}

.value-item-2 {
  border-bottom: 1px solid #0000001a;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.standard-text-3 {
  color: #000000e6;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  line-height: 140%;
}

.standard-text-3.black-60 {
  color: #0009;
}

.standard-text-3.black-60.abstand_links {
  margin-left: 0;
  padding-bottom: 2px;
  padding-left: 10px;
}

.heading-17 {
  text-transform: uppercase;
  font-family: Inter Tight, sans-serif;
  font-size: 2rem;
  font-weight: 400;
}

.process-item-2 {
  border-bottom: 1px solid #0000001a;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.medium-text-3 {
  color: #000000e6;
  font-family: Inter Tight, sans-serif;
  font-size: 1.25rem;
  line-height: 140%;
}

.medium-text-3.black-60 {
  color: #0009;
  text-transform: none;
  font-family: Inter Tight, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

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

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

.image {
  width: 30vw;
  max-width: none;
}

.link-mail {
  color: var(--white-101);
  transition: all .6s;
}

.link-mail:hover {
  color: var(--white-40);
}

@media screen and (min-width: 1440px) {
  ._12-column-grid.large-gap, ._12-column-grid.large-gap.grid {
    grid-column-gap: 1rem;
    grid-row-gap: 5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .project-info-block.breite {
    padding-right: 4em;
  }

  .project-thumbnail.klein {
    width: 30%;
  }

  .nav-item {
    font-size: 1.25rem;
  }

  .footer-2 {
    min-height: 100vh;
    padding: 6rem 6rem 3rem;
  }

  .button-text {
    font-size: 20px;
  }

  .navbar-small-right {
    padding-left: 6rem;
  }

  .navbar-menu-item {
    font-size: 20px;
  }

  .navbar-small {
    padding-left: 4rem;
    padding-right: 6rem;
  }

  .heading-style-large {
    font-size: 12rem;
  }

  .section-home-projects {
    background-color: #f8f8f8;
  }

  .navbar-small-menu {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .home-hero-right-top {
    padding: 8rem 6rem 4rem;
  }

  .text-meta, .text-meta.text-color-muted {
    font-size: 22px;
  }

  .heading-alt-h2 {
    font-size: 3.5rem;
  }

  .home-hero-right-bottom {
    padding: 6rem 6rem 8rem;
  }

  .heading-style-h2 {
    font-size: 6rem;
  }

  .heading-alt-small {
    font-size: 5rem;
  }

  .heading-style-xxlarge {
    font-size: 19rem;
  }

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

  .section-top {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
    padding: 8rem 6rem 5rem;
  }

  .pageloader-heading {
    font-size: 12rem;
  }

  .footer-eaglenest {
    min-height: 100vh;
    padding: 6rem 6rem 3rem;
  }
}

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

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.8rem;
  }

  h5 {
    font-size: 1.4rem;
  }

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

  .container.homepage-hero {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .container.ohne {
    margin-top: 4em;
  }

  ._12-column-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-flow: row;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    justify-content: space-between;
    align-items: stretch;
  }

  ._12-column-grid.large-gap {
    grid-row-gap: 4rem;
    flex-flow: column;
  }

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

  .menu-button, .nav-menu-mobile {
    height: 0;
    position: absolute;
  }

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

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

  .medium-text.black-60 {
    font-size: 1.1rem;
  }

  .project-info-block {
    grid-row-gap: 1rem;
  }

  .project-info-block.breite {
    width: 80vw;
    padding-right: 0;
  }

  .thumbnail-wrapper.breite {
    width: 40vw;
  }

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

  .partner-logo-block {
    grid-column-gap: 1rem;
    flex-direction: row;
  }

  .button-wrapper {
    width: 7.5rem;
    height: 7.5rem;
  }

  .footer-logo-loop-block {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .project-main-info-wrapper {
    width: auto;
  }

  .join-our-team-block {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .contact-info-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .contact-form-block {
    width: auto;
  }

  .project-detail-content {
    grid-row-gap: 3rem;
  }

  .licenses-link {
    font-size: 2rem;
  }

  .utility-page-content, ._404-block {
    width: 60%;
  }

  .view-case-study-block {
    display: flex;
  }

  .nav-bar {
    padding-left: 10px;
    padding-right: 10px;
  }

  .overlay-menu {
    display: none;
  }

  .quick-stack {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-link-text {
    font-size: 5rem;
  }

  .nav-menu-3 {
    display: none;
  }

  .div-monate {
    flex-flow: row;
  }

  .nav-item-line {
    display: none;
  }

  .nav-item.inverse {
    font-size: 18px;
  }

  .footer-2 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    min-height: auto;
    padding: 4rem 4rem 2rem;
  }

  .button-text {
    font-size: 18px;
  }

  .medium-text-2.black-60 {
    font-size: 1.1rem;
  }

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

  .view-case-study-block-2 {
    display: none;
  }

  .navbar-small-right {
    justify-content: flex-end;
    align-items: center;
    padding-left: 0;
  }

  .show-tablet {
    display: block;
  }

  .navbar-menu-item {
    font-size: 19px;
  }

  .navbar-small {
    background-color: #fff;
    padding: 1.25rem 4rem;
  }

  .header-small {
    display: none;
  }

  .home-hero-grid {
    display: flex;
  }

  .heading-style-large {
    font-size: 18vw;
  }

  .navbar-small-menu {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    display: none;
  }

  .home-hero-right-top {
    height: auto;
    padding: 3rem 4rem 0;
  }

  .mobile-menu-wrapper {
    padding-top: 80px;
  }

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

  .main-wrapper {
    padding-top: 0;
  }

  .heading-alt-h2 {
    font-size: 7vw;
  }

  .home-hero-image {
    height: 75vw;
    position: static;
  }

  .home-hero-right-bottom {
    padding: 4rem;
  }

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

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

  .heading-style-h2 {
    font-size: 12vw;
  }

  .navbar-menu {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .statistic-text-2 {
    font-size: 5rem;
  }

  .heading-alt-small {
    font-size: 2.75rem;
  }

  .heading-style-xxlarge {
    font-size: 20vw;
  }

  .pageloader {
    padding: 3rem 4rem;
  }

  .navbar {
    padding: 1rem 4rem;
    display: flex;
  }

  .section-top {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    padding: 4rem 4rem 3rem;
  }

  .footer-nav {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr 1fr;
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .navbar-item-line {
    display: none;
  }

  .pageloader-heading {
    font-size: 15vw;
  }

  .navbar-logo-image {
    height: auto;
  }

  .footer-eaglenest {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    min-height: auto;
    padding: 4rem 4rem 2rem;
  }

  ._12-column-grid-3 {
    flex-flow: column;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    align-items: flex-start;
    display: flex;
  }

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

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

  .medium-text-3.black-60 {
    font-size: 1.1rem;
  }

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

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

  .image {
    width: 30vw;
  }
}

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

  h4 {
    font-size: 1.6rem;
  }

  .container {
    padding-bottom: 5rem;
  }

  .container.nav-bar {
    z-index: 999;
  }

  .container.homepage-hero {
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 8rem;
  }

  .container.footer {
    padding-top: 3rem;
  }

  ._12-column-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: flex-start;
  }

  .nav-menu-desktop {
    display: none;
  }

  .navigation-bar {
    border-top-width: 4px;
    border-top-color: var(--black-90);
  }

  .menu-button {
    z-index: 999;
    width: auto;
    height: auto;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .big-logo-section {
    display: none;
  }

  .brand {
    z-index: 999;
    padding-left: 0;
  }

  .menu-button-text-wrapper {
    height: 1.4rem;
  }

  .nav-menu-mobile {
    z-index: 998;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    background-color: var(--whitesmoke);
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100svh;
    padding: 1rem .8rem;
    display: none;
    position: absolute;
    inset: 0%;
  }

  .mobile-nav-link {
    border-bottom: 1px solid var(--black-10);
    border-left: 1px solid var(--black-10);
    padding: .5rem 1rem;
    text-decoration: none;
    display: block;
  }

  .mobile-menu-link {
    color: var(--black-90);
    font-family: Inter Tight, sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 100%;
    text-decoration: none;
  }

  .moblie-menu-link-mask {
    overflow: hidden;
  }

  .mobile-social-link-wrapper {
    grid-column-gap: 2rem;
    justify-content: flex-start;
    padding-top: 1rem;
    display: flex;
  }

  .mobile-social-link {
    color: var(--black-60);
    font-family: Inter Tight, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 120%;
    text-decoration: none;
  }

  .scroll-down-arrow-wrapper {
    z-index: 1;
  }

  .section-heading {
    margin-bottom: 1rem;
    padding-bottom: .75rem;
  }

  .secondary-button {
    display: block;
  }

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

  .thumbnail-wrapper.breite {
    width: 60vw;
  }

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

  .partner-logo-block {
    grid-column-gap: 1rem;
    grid-row-gap: .75rem;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: start;
    display: flex;
  }

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

  .footer-logo-loop-block {
    margin-top: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .project-main-info-wrapper {
    width: auto;
    margin-left: 0;
    display: block;
  }

  .project-main-info-wrapper.langer-text {
    margin-left: 0;
  }

  .value-item, .process-item {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

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

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

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

  .rich-text blockquote {
    margin-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .licenses-link {
    font-size: 1.6rem;
  }

  .utility-page-content, ._404-block {
    width: 80%;
  }

  .collection-list {
    grid-row-gap: 4rem;
  }

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

  .nav-menu-3 {
    justify-content: center;
    margin-right: 60px;
    display: none;
  }

  .heading-3 {
    font-size: 1.8rem;
  }

  .grid-team-thirds {
    grid-row-gap: 80px;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .tile-team {
    text-align: center;
    align-items: center;
  }

  .text-color-muted.black {
    text-align: left;
  }

  .footer-column {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .testimonial-item-2 {
    width: auto;
  }

  .footer-2 {
    text-align: center;
    padding-top: 3rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .accordion-text-2 {
    font-size: 1rem;
  }

  .nav.center-phone-landscape {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .navbar-small {
    padding: 1.25rem;
  }

  .mobile-menu-toggle-inner {
    cursor: pointer;
  }

  .home-hero-logos {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
  }

  .navbar-small-menu {
    display: none;
  }

  .home-hero-right-top {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .mobile-menu-wrapper {
    padding-top: 64px;
  }

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

  .main-wrapper {
    padding-top: 0;
  }

  .mobile-menu-nav-item {
    overflow: hidden;
  }

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

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

  .navbar-menu {
    display: none;
  }

  .heading-alt-small {
    font-size: 2.25rem;
  }

  .heading-style-xxlarge {
    font-size: 20vw;
  }

  .pageloader {
    padding: 2.5rem 3rem;
  }

  .navbar-small-left {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .navbar {
    padding: 1.25rem 2.5rem;
  }

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

  .section-top {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    padding: 2.5rem;
  }

  .footer-nav {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 2em;
    margin-bottom: 2em;
    display: grid;
  }

  .mobile-menu-toggle {
    cursor: pointer;
    display: flex;
  }

  .navbar-logo-image {
    width: 75%;
  }

  .footer-eaglenest {
    text-align: center;
    padding-top: 3rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }

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

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

  .value-item-2, .process-item-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

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

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

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

  .container.page-heading.oben {
    padding-top: 8rem;
  }

  .container.page-heading._1rem, .container._1rem {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  ._12-column-grid {
    justify-content: space-between;
    align-items: flex-start;
  }

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

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

  .section-heading {
    padding-top: 140px;
  }

  .section-heading.top {
    padding-top: 60px;
  }

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

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

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

  .project-info-block.breite {
    width: auto;
    padding-right: 0;
  }

  .thumbnail-wrapper.breite {
    width: 65vw;
  }

  .extra-large-text {
    font-size: 1.8rem;
  }

  .trusted-by-block.nomobile {
    display: none;
  }

  .partner-logo-block {
    display: block;
  }

  .testimonial-image {
    width: 3rem;
  }

  .testimonial-second-row {
    display: flex;
  }

  .footer-logo-loop-block {
    margin-left: -.75rem;
    margin-right: -.75rem;
  }

  .footer-minior-link-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
  }

  .project-minor-info-item {
    grid-template-columns: 1fr 2fr;
  }

  .project-main-info-wrapper {
    width: auto;
    margin-left: auto;
  }

  .project-main-info-wrapper.langer-text {
    width: auto;
    margin-left: 0;
  }

  .page-heading.headline-blog {
    font-size: 6vw;
  }

  .value-list {
    padding-right: 0;
  }

  .join-our-team-block {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .service-content {
    grid-row-gap: 3rem;
  }

  .contact-content-wrapper {
    padding-top: 3rem;
  }

  .contact-info-wrapper {
    grid-row-gap: 4rem;
    display: flex;
  }

  .project-detail-content {
    grid-row-gap: 2rem;
  }

  .project-detail-content-item {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .color-swatch {
    height: 5rem;
  }

  .licenses-link {
    font-size: 1.4rem;
  }

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

  .collection-list {
    grid-row-gap: 4rem;
    margin-top: 60px;
  }

  .view-case-study-block {
    justify-content: flex-start;
    align-items: center;
  }

  .nav-bar {
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .overlay-menu {
    display: none;
  }

  .brand-3.w--current {
    padding-left: 0;
  }

  .quick-stack {
    padding-top: 0;
    padding-bottom: 1rem;
  }

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

  .nav-menu-3 {
    justify-content: flex-end;
    margin-right: 40px;
    display: none;
  }

  .dot-menu-button {
    width: 30px;
    height: 30px;
  }

  .heading-3 {
    font-size: 1.2rem;
  }

  .heading-3.blog {
    font-size: 1.6rem;
  }

  .heading-3.blog.mobile {
    display: block;
  }

  .heading-3.blog.desktop {
    display: none;
  }

  .heading-6 {
    font-size: 1.6rem;
  }

  .tile-team {
    text-align: center;
    align-items: center;
  }

  .div-monate {
    align-self: auto;
  }

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

  .footer-2 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    padding-top: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .medium-text-2 {
    font-size: 1.2rem;
  }

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

  .nav {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
  }

  .navbar-small {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    padding: 1rem;
  }

  .home-hero-logos {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .home-hero-right-top {
    padding-top: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .main-wrapper {
    padding-top: 0;
  }

  .heading-alt-h2 {
    font-size: 10vw;
  }

  .home-hero-image {
    background-image: repeating-linear-gradient(#fff, #000);
  }

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

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

  .heading-style-h2 {
    font-size: 2.5rem;
    line-height: 110%;
  }

  .heading-alt-small {
    font-size: 2rem;
  }

  .heading-style-xxlarge {
    margin-top: 0;
  }

  .pageloader {
    padding: 1.5rem 2rem;
  }

  .navbar {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    padding: 1rem 2rem;
  }

  .max-width-large {
    font-size: 1vw;
  }

  .section-top {
    padding: 2rem 1rem 1.5rem;
  }

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

  .section-top.nomobile {
    display: none;
  }

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

  .pageloader-heading {
    font-size: 4rem;
  }

  .navbar-logo-image {
    width: 8em;
    max-width: none;
    height: auto;
  }

  .footer-eaglenest {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    padding-top: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  ._12-column-grid-3 {
    width: 100%;
  }

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

  .extra-large-text-2, .heading-17 {
    font-size: 1.8rem;
  }

  .medium-text-3 {
    font-size: 1.2rem;
  }

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

  .image {
    width: 60vw;
  }
}

#w-node-a1db10d7-557f-f9da-b034-82987908f808-df125e70 {
  align-self: stretch;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f841-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908f842-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908f843-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908f844-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908f845-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908f846-df125e70 {
  align-self: center;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f849-df125e70 {
  grid-area: 2 / 1 / 3 / 5;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f851-df125e70 {
  grid-area: 2 / 5 / 3 / 9;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f859-df125e70 {
  grid-area: 2 / 9 / 3 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f877-df125e70 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f879-df125e70 {
  grid-area: 2 / 8 / 3 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f87e-df125e70 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f881-df125e70 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f882-df125e70 {
  grid-area: 3 / 3 / 4 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f885-df125e70 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f887-df125e70 {
  grid-area: 2 / 8 / 3 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f88c-df125e70 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f88f-df125e70 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f890-df125e70 {
  grid-area: 3 / 3 / 4 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f893-df125e70 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f895-df125e70 {
  grid-area: 2 / 8 / 3 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f897-df125e70 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f89a-df125e70 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f89b-df125e70 {
  grid-area: 3 / 3 / 4 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f89e-df125e70 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f8a0-df125e70 {
  grid-area: 2 / 8 / 3 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f8a2-df125e70 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f8a5-df125e70 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f8a6-df125e70 {
  grid-area: 3 / 3 / 4 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f8a9-df125e70 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f8ab-df125e70 {
  grid-area: 2 / 8 / 3 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f8bc-df125e70 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f8c1-df125e70 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f8c2-df125e70 {
  grid-area: 3 / 3 / 4 / 13;
}

#w-node-_851005f0-87fb-ff02-adc2-aeff08ec0bf1-df125e70 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-_851005f0-87fb-ff02-adc2-aeff08ec0bf3-df125e70 {
  grid-area: 2 / 8 / 3 / 13;
}

#w-node-_851005f0-87fb-ff02-adc2-aeff08ec0bf5-df125e70 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-_851005f0-87fb-ff02-adc2-aeff08ec0bf9-df125e70 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-_851005f0-87fb-ff02-adc2-aeff08ec0bfa-df125e70 {
  grid-area: 3 / 3 / 4 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f8d6-df125e70 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f8d8-df125e70 {
  grid-area: 2 / 8 / 3 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f8ea-df125e70 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f8ed-df125e70 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f8ee-df125e70 {
  grid-area: 3 / 3 / 4 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f8f1-df125e70 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f8f3-df125e70 {
  grid-area: 2 / 8 / 3 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f909-df125e70 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f90c-df125e70 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f90d-df125e70 {
  grid-area: 3 / 3 / 4 / 13;
}

#w-node-_3eb15957-81b7-c97d-076b-276e99bad891-df125e70 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-_3eb15957-81b7-c97d-076b-276e99bad893-df125e70 {
  grid-area: 2 / 8 / 3 / 13;
}

#w-node-_3eb15957-81b7-c97d-076b-276e99bad8a9-df125e70 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-_3eb15957-81b7-c97d-076b-276e99bad8ac-df125e70 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-_3eb15957-81b7-c97d-076b-276e99bad8ad-df125e70 {
  grid-area: 3 / 3 / 4 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f910-df125e70 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f912-df125e70 {
  grid-area: 2 / 8 / 3 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f922-df125e70 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f925-df125e70 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f926-df125e70 {
  grid-area: 3 / 3 / 4 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f928-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908f92a-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908f92c-df125e70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_33df7a8e-514d-4bf3-4c39-51b47884e827-df125e70 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-_33df7a8e-514d-4bf3-4c39-51b47884e829-df125e70 {
  grid-area: 2 / 8 / 3 / 13;
}

#w-node-_33df7a8e-514d-4bf3-4c39-51b47884e83b-df125e70 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-_33df7a8e-514d-4bf3-4c39-51b47884e83e-df125e70 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-_33df7a8e-514d-4bf3-4c39-51b47884e83f-df125e70 {
  grid-area: 3 / 3 / 4 / 13;
}

#w-node-_33df7a8e-514d-4bf3-4c39-51b47884e842-df125e70 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-_33df7a8e-514d-4bf3-4c39-51b47884e844-df125e70 {
  grid-area: 2 / 8 / 3 / 13;
}

#w-node-_33df7a8e-514d-4bf3-4c39-51b47884e85a-df125e70 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-_33df7a8e-514d-4bf3-4c39-51b47884e85d-df125e70 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-_33df7a8e-514d-4bf3-4c39-51b47884e85e-df125e70 {
  grid-area: 3 / 3 / 4 / 13;
}

#w-node-_33df7a8e-514d-4bf3-4c39-51b47884e861-df125e70 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-_33df7a8e-514d-4bf3-4c39-51b47884e863-df125e70 {
  grid-area: 2 / 8 / 3 / 13;
}

#w-node-_33df7a8e-514d-4bf3-4c39-51b47884e873-df125e70 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-_33df7a8e-514d-4bf3-4c39-51b47884e876-df125e70 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-_33df7a8e-514d-4bf3-4c39-51b47884e877-df125e70 {
  grid-area: 3 / 3 / 4 / 13;
}

#w-node-a95c69ea-6b1b-1fa2-8a5c-fe995ec2d8b9-df125e70 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-a95c69ea-6b1b-1fa2-8a5c-fe995ec2d8bb-df125e70 {
  grid-area: 2 / 8 / 3 / 13;
}

#w-node-a95c69ea-6b1b-1fa2-8a5c-fe995ec2d8bd-df125e70 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-a95c69ea-6b1b-1fa2-8a5c-fe995ec2d8c1-df125e70 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-a95c69ea-6b1b-1fa2-8a5c-fe995ec2d8c2-df125e70 {
  grid-area: 3 / 3 / 4 / 13;
}

#w-node-_33df7a8e-514d-4bf3-4c39-51b47884e879-df125e70, #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e87b-df125e70, #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e87d-df125e70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f943-df125e70 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: end;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f949-df125e70 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f955-df125e70 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: end;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f95b-df125e70 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f967-df125e70 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: end;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f96d-df125e70 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f979-df125e70 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: end;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f97f-df125e70 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f98b-df125e70 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: end;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f991-df125e70 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f99d-df125e70 {
  grid-area: 1 / 1 / 2 / 6;
  align-self: end;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f9a3-df125e70 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f9ac-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908f9ae-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908f9b0-df125e70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f9c4-df125e70 {
  grid-area: 2 / 1 / 3 / 4;
}

#w-node-a1db10d7-557f-f9da-b034-82987908f9c6-df125e70 {
  grid-area: 2 / 5 / 3 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908fa40-df125e70 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-a1db10d7-557f-f9da-b034-82987908fa43-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908fa45-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908fa47-df125e70 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a1db10d7-557f-f9da-b034-82987908fa4a-df125e70 {
  grid-area: 2 / 1 / 3 / 4;
}

#w-node-a1db10d7-557f-f9da-b034-82987908fa4c-df125e70 {
  grid-area: 2 / 5 / 3 / 13;
}

#w-node-a1db10d7-557f-f9da-b034-82987908fac6-df125e70 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_40b8fb2b-8be5-024c-c974-b4cf62116c85-62116c75, #w-node-_40b8fb2b-8be5-024c-c974-b4cf62116c93-62116c75, #w-node-_40b8fb2b-8be5-024c-c974-b4cf62116ca1-62116c75, #w-node-_40b8fb2b-8be5-024c-c974-b4cf62116cab-62116c75 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_61d49f29-60a7-4af2-7b87-154cf46811c7-f46811c5 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_61d49f29-60a7-4af2-7b87-154cf46811c8-f46811c5, #w-node-_61d49f29-60a7-4af2-7b87-154cf46811cb-f46811c5, #w-node-_61d49f29-60a7-4af2-7b87-154cf46811cf-f46811c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-acd4f0a4-4919-db6b-eac1-f4557a11e0c6-df125ecc {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_028f8d22-e57a-3ac0-9b52-51f263c30e5b-df125ecc {
  grid-area: 2 / 6 / 3 / 13;
}

#w-node-_812412a8-827b-b176-4b7d-a5cd7b24b48a-df125ecc, #w-node-_812412a8-827b-b176-4b7d-a5cd7b24b48c-df125ecc, #w-node-_812412a8-827b-b176-4b7d-a5cd7b24b48e-df125ecc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f1871a06-f97c-2fb5-18bc-958b55e38511-df125ecc, #w-node-_447e8552-2886-979a-3630-dce90adeef8c-df125ecc {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_5c34351d-8a79-73ca-5be0-9af4930a50bf-df125ecc {
  grid-area: 1 / 7 / 2 / 10;
}

#w-node-_5c34351d-8a79-73ca-5be0-9af4930a50c1-df125ecc {
  grid-area: 1 / 10 / 2 / 13;
}

#w-node-_5c34351d-8a79-73ca-5be0-9af4930a50c3-df125ecc {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-_5c34351d-8a79-73ca-5be0-9af4930a50c8-df125ecc {
  grid-area: 2 / 7 / 3 / 13;
}

#w-node-_5c34351d-8a79-73ca-5be0-9af4930a50cc-df125ecc {
  grid-area: 1 / 7 / 2 / 10;
}

#w-node-_5c34351d-8a79-73ca-5be0-9af4930a50ce-df125ecc {
  grid-area: 1 / 10 / 2 / 13;
}

#w-node-_5c34351d-8a79-73ca-5be0-9af4930a50d0-df125ecc {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-_5c34351d-8a79-73ca-5be0-9af4930a50d5-df125ecc {
  grid-area: 2 / 7 / 3 / 13;
}

#w-node-_5c34351d-8a79-73ca-5be0-9af4930a50d9-df125ecc {
  grid-area: 1 / 7 / 2 / 10;
}

#w-node-_5c34351d-8a79-73ca-5be0-9af4930a50db-df125ecc {
  grid-area: 1 / 10 / 2 / 13;
}

#w-node-_5c34351d-8a79-73ca-5be0-9af4930a50dd-df125ecc {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-_5c34351d-8a79-73ca-5be0-9af4930a50e2-df125ecc {
  grid-area: 2 / 7 / 3 / 13;
}

#w-node-_8616a2b0-5b73-5a37-f785-e6ef4f2ae01e-df125ecc {
  grid-area: 1 / 7 / 2 / 10;
}

#w-node-_8616a2b0-5b73-5a37-f785-e6ef4f2ae01f-df125ecc {
  grid-area: 1 / 10 / 2 / 13;
}

#w-node-_8616a2b0-5b73-5a37-f785-e6ef4f2ae020-df125ecc {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-_8616a2b0-5b73-5a37-f785-e6ef4f2ae026-df125ecc {
  grid-area: 2 / 7 / 3 / 13;
}

#w-node-d11c248c-de11-223d-5707-2e45c5da171b-df125ecc {
  grid-area: 1 / 7 / 2 / 10;
}

#w-node-d11c248c-de11-223d-5707-2e45c5da171c-df125ecc {
  grid-area: 1 / 10 / 2 / 13;
}

#w-node-d11c248c-de11-223d-5707-2e45c5da171d-df125ecc {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-d11c248c-de11-223d-5707-2e45c5da1723-df125ecc {
  grid-area: 2 / 7 / 3 / 13;
}

#w-node-cdaf0034-6a4c-39a6-91df-98685891c54b-df125ecc {
  grid-area: 1 / 7 / 2 / 10;
}

#w-node-cdaf0034-6a4c-39a6-91df-98685891c54c-df125ecc {
  grid-area: 1 / 10 / 2 / 13;
}

#w-node-cdaf0034-6a4c-39a6-91df-98685891c54d-df125ecc {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-cdaf0034-6a4c-39a6-91df-98685891c553-df125ecc {
  grid-area: 2 / 7 / 3 / 13;
}

#w-node-_5c34351d-8a79-73ca-5be0-9af4930a50e5-df125ecc, #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50e7-df125ecc, #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50e9-df125ecc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_98dae7eb-32f9-daa9-d015-2949ff9fe7a0-df125ee3 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-d14579b1-c586-7509-3c00-f52d3d2f525b-df125ee3 {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-_583377e6-17a3-3c18-deab-823135cd8b3a-df125ee4, #w-node-_4566d32b-70f7-048b-d17d-4df6adc3af34-df125ee4, #w-node-_50032594-5e8a-5da9-986d-613606bcd462-df125ee4 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_3485e7fb-9dfb-b497-c0ee-ede934b1fef8-df125ee4 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  place-self: end;
}

#w-node-_7d4edca6-156e-329a-5db8-7cf219f47d74-df125ee4 {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-_27823ea1-b07b-e6d6-1762-464dbf568a7e-df125ee4 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_29dd9412-18de-b184-ebe0-4faf8a77f8d4-df125ee4 {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-_29dd9412-18de-b184-ebe0-4faf8a77f8d6-df125ee4 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-beafe21c-9b8e-98ee-1056-20be2f6032fa-df125ee4 {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-beafe21c-9b8e-98ee-1056-20be2f6032fc-df125ee4 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_9e877598-1fb8-2a50-c8c5-f25b6e371437-6e371434 {
  grid-area: 1 / 1 / 2 / 9;
}

#w-node-_9e877598-1fb8-2a50-c8c5-f25b6e371439-6e371434 {
  grid-area: 2 / 1 / 3 / 5;
}

#w-node-_9e877598-1fb8-2a50-c8c5-f25b6e371443-6e371434 {
  grid-area: 2 / 5 / 3 / 9;
}

#w-node-_9e877598-1fb8-2a50-c8c5-f25b6e37144d-6e371434 {
  grid-area: 1 / 11 / 3 / 13;
  place-self: end start;
}

#w-node-_9e877598-1fb8-2a50-c8c5-f25b6e371459-6e371434 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_9e877598-1fb8-2a50-c8c5-f25b6e37145b-6e371434 {
  grid-area: 1 / 6 / 2 / 13;
  justify-self: end;
}

#w-node-c1e3da35-a6f0-9b8c-c582-2b415d70056a-5d700567 {
  grid-area: 1 / 1 / 2 / 4;
  align-self: center;
}

#w-node-c1e3da35-a6f0-9b8c-c582-2b415d70056c-5d700567 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-f708acb8-0990-6ece-f8cf-1eae7c3b9974-5d700567 {
  grid-area: 1 / 10 / 2 / 13;
  justify-self: end;
}

#w-node-c1e3da35-a6f0-9b8c-c582-2b415d700579-5d700567, #w-node-c1e3da35-a6f0-9b8c-c582-2b415d70057f-5d700567 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_8c5c435a-436a-35b4-9d12-d89e50480a6e-df125ee7 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-a3002bc3-26da-f518-8c53-5b1b67e59754-df125ee7 {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-_4d3751e6-d073-af8b-c826-7cf8db066321-df125ee7 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: end;
}

#w-node-_4d3751e6-d073-af8b-c826-7cf8db066322-df125ee7 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a3002bc3-26da-f518-8c53-5b1b67e59757-df125ee7 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-a3002bc3-26da-f518-8c53-5b1b67e5975e-df125ee7 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-a3002bc3-26da-f518-8c53-5b1b67e59766-df125ee7 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: end;
}

#w-node-a3002bc3-26da-f518-8c53-5b1b67e59767-df125ee7 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a3002bc3-26da-f518-8c53-5b1b67e59762-df125ee7 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-a3002bc3-26da-f518-8c53-5b1b67e59764-df125ee7 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-a3002bc3-26da-f518-8c53-5b1b67e59771-df125ee7 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: end;
}

#w-node-a3002bc3-26da-f518-8c53-5b1b67e59772-df125ee7 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a3002bc3-26da-f518-8c53-5b1b67e5976d-df125ee7 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-a3002bc3-26da-f518-8c53-5b1b67e5976f-df125ee7 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-a3002bc3-26da-f518-8c53-5b1b67e5977a-df125ee7 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: end;
}

#w-node-a3002bc3-26da-f518-8c53-5b1b67e5977b-df125ee7 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a3002bc3-26da-f518-8c53-5b1b67e59778-df125ee7 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-a3002bc3-26da-f518-8c53-5b1b67e5977f-df125ee7 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42d3-df125ee7 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42d8-df125ee7 {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42df-df125ee7 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: auto;
}

#w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42dd-df125ee7 {
  grid-area: 1 / 3 / 2 / 7;
}

#w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42db-df125ee7 {
  grid-area: 1 / 8 / 2 / 13;
  place-self: center start;
}

#w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42e7-df125ee7 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: auto;
}

#w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42e5-df125ee7 {
  grid-area: 1 / 3 / 2 / 7;
}

#w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42e3-df125ee7 {
  grid-area: 1 / 8 / 2 / 13;
  place-self: center start;
}

#w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42f0-df125ee7 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: auto;
}

#w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42ed-df125ee7 {
  grid-area: 1 / 3 / 2 / 7;
}

#w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42eb-df125ee7 {
  grid-area: 1 / 8 / 2 / 13;
  place-self: center start;
}

#w-node-cff1a193-26b1-8ae9-3dcb-0462993214b3-df125ee7, #w-node-cff1a193-26b1-8ae9-3dcb-0462993214b5-df125ee7, #w-node-cff1a193-26b1-8ae9-3dcb-0462993214b7-df125ee7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-de936914-99ec-8439-5f5d-e51a9094ccc2-df125ee8, #w-node-_21ee7ffa-7118-e873-9157-541f99f2d62a-df125ee8, #w-node-_5f8e483c-0b7a-47c0-6f25-ae76117cb88a-df125ee8, #w-node-dd09396e-7bab-5581-8096-26b112ccb245-df125ee8, #w-node-ba3f9de4-34b1-ef0e-4407-056ac179abe7-df125ee8, #w-node-_5b1e8e7c-0949-7bca-5ff4-e763eac70f72-df125ee8, #w-node-fcf451c9-8ff9-4c06-4484-fe9e14d00cfc-df125ee8 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_866da9cf-aa5d-a8a0-9b12-43a1e1b445a7-df125ee9 {
  grid-area: 1 / 1 / 2 / 5;
  align-self: end;
}

#w-node-_866da9cf-aa5d-a8a0-9b12-43a1e1b445ad-df125ee9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_866da9cf-aa5d-a8a0-9b12-43a1e1b445af-df125ee9 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_866da9cf-aa5d-a8a0-9b12-43a1e1b445b1-df125ee9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_866da9cf-aa5d-a8a0-9b12-43a1e1b445b3-df125ee9 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_866da9cf-aa5d-a8a0-9b12-43a1e1b445b5-df125ee9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_866da9cf-aa5d-a8a0-9b12-43a1e1b445b7-df125ee9 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_866da9cf-aa5d-a8a0-9b12-43a1e1b445b8-df125ee9 {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-_98dae7eb-32f9-daa9-d015-2949ff9fe7a0-df125eea, #w-node-_98dae7eb-32f9-daa9-d015-2949ff9fe7a0-df125eeb {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-b20a5496-9c99-4815-debf-216f7a13c44a-df125eec {
  grid-area: 1 / 1 / 2 / 6;
  align-self: end;
}

#w-node-b20a5496-9c99-4815-debf-216f7a13c450-df125eec {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-b20a5496-9c99-4815-debf-216f7a13c45c-df125eec {
  grid-area: 1 / 1 / 2 / 6;
  align-self: end;
}

#w-node-b20a5496-9c99-4815-debf-216f7a13c462-df125eec {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-b20a5496-9c99-4815-debf-216f7a13c46e-df125eec {
  grid-area: 1 / 1 / 2 / 6;
  align-self: end;
}

#w-node-b20a5496-9c99-4815-debf-216f7a13c474-df125eec {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-b20a5496-9c99-4815-debf-216f7a13c480-df125eec {
  grid-area: 1 / 1 / 2 / 6;
  align-self: end;
}

#w-node-b20a5496-9c99-4815-debf-216f7a13c486-df125eec {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-b20a5496-9c99-4815-debf-216f7a13c492-df125eec {
  grid-area: 1 / 1 / 2 / 6;
  align-self: end;
}

#w-node-b20a5496-9c99-4815-debf-216f7a13c498-df125eec {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-b20a5496-9c99-4815-debf-216f7a13c4a4-df125eec {
  grid-area: 1 / 1 / 2 / 6;
  align-self: end;
}

#w-node-b20a5496-9c99-4815-debf-216f7a13c4aa-df125eec {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-b20a5496-9c99-4815-debf-216f7a13c450-df125eed {
  grid-area: 1 / 11 / 2 / 13;
}

#w-node-b20a5496-9c99-4815-debf-216f7a13c44a-df125eed {
  grid-area: 1 / 3 / 2 / 11;
  align-self: start;
}

#w-node-_1ddf4b06-b213-10b2-102a-dd861836169b-df125eee {
  grid-area: 1 / 11 / 2 / 13;
}

#w-node-_1ddf4b06-b213-10b2-102a-dd861836169c-df125eee {
  grid-area: 1 / 3 / 2 / 11;
  align-self: start;
}

#w-node-_50317c2e-3f00-eaab-bdee-4c8aa0caa3e8-df125eef {
  grid-area: 1 / 11 / 2 / 13;
}

#w-node-_50317c2e-3f00-eaab-bdee-4c8aa0caa3e9-df125eef {
  grid-area: 1 / 3 / 2 / 11;
  align-self: start;
}

#w-node-_9103ca4d-0200-ff97-8514-ce90c2c4ad78-df125f03 {
  grid-area: 1 / 11 / 2 / 13;
}

#w-node-_9103ca4d-0200-ff97-8514-ce90c2c4ad79-df125f03 {
  grid-area: 1 / 3 / 2 / 11;
  align-self: start;
}

#w-node-e0ccc12a-ce42-7ca4-e8c1-e61af3ed188f-df125f04 {
  grid-area: 1 / 11 / 2 / 13;
}

#w-node-e0ccc12a-ce42-7ca4-e8c1-e61af3ed1890-df125f04 {
  grid-area: 1 / 3 / 2 / 11;
  align-self: start;
}

#w-node-a8453b5c-03c6-1aa8-d6ee-c24d92c5ed59-df125f05 {
  grid-area: 1 / 11 / 2 / 13;
}

#w-node-a8453b5c-03c6-1aa8-d6ee-c24d92c5ed5a-df125f05 {
  grid-area: 1 / 3 / 2 / 11;
  align-self: start;
}

@media screen and (min-width: 1440px) {
  #w-node-_40b8fb2b-8be5-024c-c974-b4cf62116c85-62116c75 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-a1db10d7-557f-f9da-b034-82987908f849-df125e70 {
    grid-column: 1 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f851-df125e70 {
    grid-column: 5 / 9;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f859-df125e70 {
    grid-column: 9 / 13;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f877-df125e70 {
    grid-column: 2 / 3;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f879-df125e70 {
    grid-column-start: 8;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f87e-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908f881-df125e70 {
    grid-column: 3 / 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f882-df125e70 {
    grid-column-start: 2;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f885-df125e70 {
    grid-column: 2 / 3;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f887-df125e70 {
    grid-column-start: 8;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f88c-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908f88f-df125e70 {
    grid-column: 3 / 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f890-df125e70 {
    grid-column-start: 2;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f893-df125e70 {
    grid-column: 2 / 3;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f895-df125e70 {
    grid-column-start: 8;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f897-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908f89a-df125e70 {
    grid-column: 3 / 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f89b-df125e70 {
    grid-column-start: 2;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f89e-df125e70 {
    grid-column: 2 / 3;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8a0-df125e70 {
    grid-column-start: 8;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8a2-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908f8a5-df125e70 {
    grid-column: 3 / 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8a6-df125e70 {
    grid-column-start: 2;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8a9-df125e70 {
    grid-column: 2 / 3;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8ab-df125e70 {
    grid-column-start: 8;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8bc-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908f8c1-df125e70 {
    grid-column: 3 / 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8c2-df125e70 {
    grid-column-start: 2;
  }

  #w-node-_851005f0-87fb-ff02-adc2-aeff08ec0bf1-df125e70 {
    grid-column: 2 / 3;
  }

  #w-node-_851005f0-87fb-ff02-adc2-aeff08ec0bf3-df125e70 {
    grid-column-start: 8;
  }

  #w-node-_851005f0-87fb-ff02-adc2-aeff08ec0bf5-df125e70, #w-node-_851005f0-87fb-ff02-adc2-aeff08ec0bf9-df125e70 {
    grid-column: 3 / 7;
  }

  #w-node-_851005f0-87fb-ff02-adc2-aeff08ec0bfa-df125e70 {
    grid-column-start: 2;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8d6-df125e70 {
    grid-column: 2 / 3;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8d8-df125e70 {
    grid-column-start: 8;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8ea-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908f8ed-df125e70 {
    grid-column: 3 / 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8ee-df125e70 {
    grid-column-start: 2;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8f1-df125e70 {
    grid-column: 2 / 3;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8f3-df125e70 {
    grid-column-start: 8;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f909-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908f90c-df125e70 {
    grid-column: 3 / 7;
  }

  #w-node-_3eb15957-81b7-c97d-076b-276e99bad891-df125e70 {
    grid-column: 2 / 3;
  }

  #w-node-_3eb15957-81b7-c97d-076b-276e99bad893-df125e70 {
    grid-column-start: 8;
  }

  #w-node-_3eb15957-81b7-c97d-076b-276e99bad8a9-df125e70, #w-node-_3eb15957-81b7-c97d-076b-276e99bad8ac-df125e70 {
    grid-column: 3 / 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f910-df125e70 {
    grid-column: 2 / 3;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f912-df125e70 {
    grid-column-start: 8;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f922-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908f925-df125e70 {
    grid-column: 3 / 7;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e827-df125e70 {
    grid-column: 2 / 3;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e829-df125e70 {
    grid-column-start: 8;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e83b-df125e70, #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e83e-df125e70 {
    grid-column: 3 / 7;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e83f-df125e70 {
    grid-column-start: 2;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e842-df125e70 {
    grid-column: 2 / 3;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e844-df125e70 {
    grid-column-start: 8;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e85a-df125e70, #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e85d-df125e70 {
    grid-column: 3 / 7;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e861-df125e70 {
    grid-column: 2 / 3;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e863-df125e70 {
    grid-column-start: 8;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e873-df125e70, #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e876-df125e70 {
    grid-column: 3 / 7;
  }

  #w-node-a95c69ea-6b1b-1fa2-8a5c-fe995ec2d8b9-df125e70 {
    grid-column: 2 / 3;
  }

  #w-node-a95c69ea-6b1b-1fa2-8a5c-fe995ec2d8bb-df125e70 {
    grid-column-start: 8;
  }

  #w-node-a95c69ea-6b1b-1fa2-8a5c-fe995ec2d8bd-df125e70, #w-node-a95c69ea-6b1b-1fa2-8a5c-fe995ec2d8c1-df125e70 {
    grid-column: 3 / 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f943-df125e70 {
    grid-area: 2 / 1 / 3 / 13;
    align-self: end;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f949-df125e70 {
    grid-column-start: 1;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f955-df125e70 {
    grid-area: 2 / 1 / 3 / 13;
    align-self: end;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f95b-df125e70 {
    grid-column-start: 1;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f967-df125e70 {
    grid-area: 2 / 1 / 3 / 13;
    align-self: end;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f96d-df125e70 {
    grid-column-start: 1;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f979-df125e70 {
    grid-area: 2 / 1 / 3 / 13;
    align-self: end;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f97f-df125e70 {
    grid-column-start: 1;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f98b-df125e70 {
    grid-area: 2 / 1 / 3 / 13;
    align-self: end;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f991-df125e70 {
    grid-column-start: 1;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f99d-df125e70 {
    grid-area: 2 / 1 / 3 / 13;
    align-self: end;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f9a3-df125e70 {
    grid-column-start: 1;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f9c4-df125e70 {
    grid-column-end: 13;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f9c6-df125e70 {
    grid-area: 1 / 1 / 4 / 13;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908fa4a-df125e70 {
    grid-column-end: 13;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908fa4c-df125e70 {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-acd4f0a4-4919-db6b-eac1-f4557a11e0c6-df125ecc {
    grid-column-end: 7;
  }

  #w-node-_028f8d22-e57a-3ac0-9b52-51f263c30e5b-df125ecc {
    grid-column: 3 / 7;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50bf-df125ecc {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50c1-df125ecc {
    grid-area: 2 / 4 / 3 / 7;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50c3-df125ecc {
    grid-column-end: 7;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50c8-df125ecc {
    grid-area: 3 / 1 / 4 / 7;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50cc-df125ecc {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50ce-df125ecc {
    grid-area: 2 / 4 / 3 / 7;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50d0-df125ecc {
    grid-column-end: 7;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50d5-df125ecc {
    grid-area: 3 / 1 / 4 / 7;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50d9-df125ecc {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50db-df125ecc {
    grid-area: 2 / 4 / 3 / 7;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50dd-df125ecc {
    grid-column-end: 7;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50e2-df125ecc {
    grid-area: 3 / 1 / 4 / 7;
  }

  #w-node-_8616a2b0-5b73-5a37-f785-e6ef4f2ae01e-df125ecc {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_8616a2b0-5b73-5a37-f785-e6ef4f2ae01f-df125ecc {
    grid-area: 2 / 4 / 3 / 7;
  }

  #w-node-_8616a2b0-5b73-5a37-f785-e6ef4f2ae020-df125ecc {
    grid-column-end: 7;
  }

  #w-node-_8616a2b0-5b73-5a37-f785-e6ef4f2ae026-df125ecc {
    grid-area: 3 / 1 / 4 / 7;
  }

  #w-node-d11c248c-de11-223d-5707-2e45c5da171b-df125ecc {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-d11c248c-de11-223d-5707-2e45c5da171c-df125ecc {
    grid-area: 2 / 4 / 3 / 7;
  }

  #w-node-d11c248c-de11-223d-5707-2e45c5da171d-df125ecc {
    grid-column-end: 7;
  }

  #w-node-d11c248c-de11-223d-5707-2e45c5da1723-df125ecc {
    grid-area: 3 / 1 / 4 / 7;
  }

  #w-node-cdaf0034-6a4c-39a6-91df-98685891c54b-df125ecc {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-cdaf0034-6a4c-39a6-91df-98685891c54c-df125ecc {
    grid-area: 2 / 4 / 3 / 7;
  }

  #w-node-cdaf0034-6a4c-39a6-91df-98685891c54d-df125ecc {
    grid-column-end: 7;
  }

  #w-node-cdaf0034-6a4c-39a6-91df-98685891c553-df125ecc {
    grid-area: 3 / 1 / 4 / 7;
  }

  #w-node-_98dae7eb-32f9-daa9-d015-2949ff9fe7a0-df125ee3 {
    grid-column-end: 7;
  }

  #w-node-d14579b1-c586-7509-3c00-f52d3d2f525b-df125ee3 {
    grid-area: 2 / 1 / 3 / 7;
  }

  #w-node-_583377e6-17a3-3c18-deab-823135cd8b3a-df125ee4 {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-_4566d32b-70f7-048b-d17d-4df6adc3af34-df125ee4 {
    grid-area: 1 / 4 / 2 / 7;
  }

  #w-node-_50032594-5e8a-5da9-986d-613606bcd462-df125ee4 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_3485e7fb-9dfb-b497-c0ee-ede934b1fef8-df125ee4 {
    justify-self: start;
  }

  #w-node-_7d4edca6-156e-329a-5db8-7cf219f47d74-df125ee4 {
    grid-column-end: 3;
  }

  #w-node-_27823ea1-b07b-e6d6-1762-464dbf568a7e-df125ee4 {
    grid-column: 3 / 7;
  }

  #w-node-_29dd9412-18de-b184-ebe0-4faf8a77f8d4-df125ee4 {
    grid-column-end: 3;
  }

  #w-node-_29dd9412-18de-b184-ebe0-4faf8a77f8d6-df125ee4 {
    grid-column: 3 / 7;
  }

  #w-node-beafe21c-9b8e-98ee-1056-20be2f6032fa-df125ee4 {
    grid-column-end: 3;
  }

  #w-node-beafe21c-9b8e-98ee-1056-20be2f6032fc-df125ee4 {
    grid-column: 3 / 7;
  }

  #w-node-_9e877598-1fb8-2a50-c8c5-f25b6e371437-6e371434 {
    grid-column-end: 7;
  }

  #w-node-_9e877598-1fb8-2a50-c8c5-f25b6e371439-6e371434 {
    grid-column-end: 3;
  }

  #w-node-_9e877598-1fb8-2a50-c8c5-f25b6e371443-6e371434 {
    grid-column: 4 / 5;
  }

  #w-node-_9e877598-1fb8-2a50-c8c5-f25b6e37144d-6e371434 {
    grid-column: 5 / 7;
    grid-row-start: 2;
    justify-self: end;
  }

  #w-node-c1e3da35-a6f0-9b8c-c582-2b415d70056a-5d700567 {
    grid-area: 1 / 1 / 2 / 3;
    align-self: center;
  }

  #w-node-c1e3da35-a6f0-9b8c-c582-2b415d70056c-5d700567 {
    grid-column: 3 / 7;
  }

  #w-node-f708acb8-0990-6ece-f8cf-1eae7c3b9974-5d700567 {
    grid-column: 5 / 7;
  }

  #w-node-c1e3da35-a6f0-9b8c-c582-2b415d700579-5d700567, #w-node-c1e3da35-a6f0-9b8c-c582-2b415d70057f-5d700567 {
    grid-area: 1 / 1 / 2 / 9;
  }

  #w-node-_8c5c435a-436a-35b4-9d12-d89e50480a6e-df125ee7 {
    grid-column: 4 / 7;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e59754-df125ee7 {
    grid-column-end: 7;
  }

  #w-node-_4d3751e6-d073-af8b-c826-7cf8db066322-df125ee7, #w-node-a3002bc3-26da-f518-8c53-5b1b67e59757-df125ee7 {
    grid-column: 2 / 4;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e5975e-df125ee7 {
    grid-column: 4 / 7;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e59767-df125ee7, #w-node-a3002bc3-26da-f518-8c53-5b1b67e59762-df125ee7 {
    grid-column: 2 / 4;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e59764-df125ee7 {
    grid-column: 4 / 7;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e59772-df125ee7, #w-node-a3002bc3-26da-f518-8c53-5b1b67e5976d-df125ee7 {
    grid-column: 2 / 4;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e5976f-df125ee7 {
    grid-column: 4 / 7;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e5977b-df125ee7, #w-node-a3002bc3-26da-f518-8c53-5b1b67e59778-df125ee7 {
    grid-column: 2 / 4;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e5977f-df125ee7 {
    grid-column: 4 / 7;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42d3-df125ee7 {
    grid-column: 1 / 7;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42d8-df125ee7 {
    grid-column-end: 7;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42df-df125ee7 {
    grid-row-end: 3;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42dd-df125ee7 {
    grid-column: 2 / 7;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42db-df125ee7 {
    grid-area: 2 / 2 / 3 / 7;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42e7-df125ee7 {
    grid-row-end: 3;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42e5-df125ee7 {
    grid-column: 2 / 7;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42e3-df125ee7 {
    grid-area: 2 / 2 / 3 / 7;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42f0-df125ee7 {
    grid-row-end: 3;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42ed-df125ee7 {
    grid-column: 2 / 7;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42eb-df125ee7 {
    grid-area: 2 / 2 / 3 / 7;
  }

  #w-node-_866da9cf-aa5d-a8a0-9b12-43a1e1b445a7-df125ee9 {
    grid-area: 2 / 1 / 3 / 13;
    align-self: end;
  }

  #w-node-_866da9cf-aa5d-a8a0-9b12-43a1e1b445b8-df125ee9 {
    grid-column-start: 1;
  }

  #w-node-_98dae7eb-32f9-daa9-d015-2949ff9fe7a0-df125eea, #w-node-_98dae7eb-32f9-daa9-d015-2949ff9fe7a0-df125eeb {
    grid-column-end: 7;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c44a-df125eec {
    grid-area: 2 / 1 / 3 / 13;
    align-self: end;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c450-df125eec {
    grid-column-start: 1;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c45c-df125eec {
    grid-area: 2 / 1 / 3 / 13;
    align-self: end;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c462-df125eec {
    grid-column-start: 1;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c46e-df125eec {
    grid-area: 2 / 1 / 3 / 13;
    align-self: end;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c474-df125eec {
    grid-column-start: 1;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c480-df125eec {
    grid-area: 2 / 1 / 3 / 13;
    align-self: end;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c486-df125eec {
    grid-column-start: 1;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c492-df125eec {
    grid-area: 2 / 1 / 3 / 13;
    align-self: end;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c498-df125eec {
    grid-column-start: 1;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c4a4-df125eec {
    grid-area: 2 / 1 / 3 / 13;
    align-self: end;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c4aa-df125eec, #w-node-b20a5496-9c99-4815-debf-216f7a13c450-df125eed {
    grid-column-start: 1;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c44a-df125eed {
    grid-area: 2 / 1 / 3 / 13;
    align-self: end;
  }

  #w-node-_1ddf4b06-b213-10b2-102a-dd861836169b-df125eee {
    grid-column-start: 1;
  }

  #w-node-_1ddf4b06-b213-10b2-102a-dd861836169c-df125eee {
    grid-area: 2 / 1 / 3 / 13;
    align-self: end;
  }

  #w-node-_50317c2e-3f00-eaab-bdee-4c8aa0caa3e8-df125eef {
    grid-column-start: 1;
  }

  #w-node-_50317c2e-3f00-eaab-bdee-4c8aa0caa3e9-df125eef {
    grid-area: 2 / 1 / 3 / 13;
    align-self: end;
  }

  #w-node-_9103ca4d-0200-ff97-8514-ce90c2c4ad78-df125f03 {
    grid-column-start: 1;
  }

  #w-node-_9103ca4d-0200-ff97-8514-ce90c2c4ad79-df125f03 {
    grid-area: 2 / 1 / 3 / 13;
    align-self: end;
  }

  #w-node-e0ccc12a-ce42-7ca4-e8c1-e61af3ed188f-df125f04 {
    grid-column-start: 1;
  }

  #w-node-e0ccc12a-ce42-7ca4-e8c1-e61af3ed1890-df125f04 {
    grid-area: 2 / 1 / 3 / 13;
    align-self: end;
  }

  #w-node-a8453b5c-03c6-1aa8-d6ee-c24d92c5ed59-df125f05 {
    grid-column-start: 1;
  }

  #w-node-a8453b5c-03c6-1aa8-d6ee-c24d92c5ed5a-df125f05 {
    grid-area: 2 / 1 / 3 / 13;
    align-self: end;
  }
}

@media screen and (max-width: 767px) {
  #w-node-a1db10d7-557f-f9da-b034-82987908f849-df125e70 {
    grid-column-end: 4;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f851-df125e70 {
    grid-column: 4 / 7;
    grid-row-start: 2;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f859-df125e70 {
    grid-area: 3 / 1 / 4 / 4;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f877-df125e70 {
    grid-column: 1 / 5;
    align-self: center;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f879-df125e70 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f87e-df125e70 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f881-df125e70 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f882-df125e70 {
    grid-area: 5 / 1 / 6 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f885-df125e70 {
    grid-column: 1 / 5;
    align-self: center;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f887-df125e70 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f88c-df125e70 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f88f-df125e70 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f890-df125e70 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f893-df125e70 {
    grid-column: 1 / 5;
    align-self: center;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f895-df125e70 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f897-df125e70 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f89a-df125e70 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f89b-df125e70 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f89e-df125e70 {
    grid-column: 1 / 5;
    align-self: center;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8a0-df125e70 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8a2-df125e70 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8a5-df125e70 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8a6-df125e70 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8a9-df125e70 {
    grid-column: 1 / 5;
    align-self: center;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8ab-df125e70 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8bc-df125e70 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8c1-df125e70 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8c2-df125e70 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_851005f0-87fb-ff02-adc2-aeff08ec0bf1-df125e70 {
    grid-column: 1 / 5;
    align-self: center;
  }

  #w-node-_851005f0-87fb-ff02-adc2-aeff08ec0bf3-df125e70 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-_851005f0-87fb-ff02-adc2-aeff08ec0bf5-df125e70 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_851005f0-87fb-ff02-adc2-aeff08ec0bf9-df125e70 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_851005f0-87fb-ff02-adc2-aeff08ec0bfa-df125e70 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8d6-df125e70 {
    grid-column: 1 / 5;
    align-self: center;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8d8-df125e70 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8ea-df125e70 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8ed-df125e70 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8ee-df125e70 {
    grid-area: 5 / 1 / 6 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8f1-df125e70 {
    grid-area: 1 / 1 / 2 / 13;
    align-self: center;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f8f3-df125e70 {
    grid-area: 4 / 1 / 5 / 13;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f909-df125e70 {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f90c-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908f90d-df125e70 {
    grid-area: 3 / 1 / 4 / 13;
  }

  #w-node-_3eb15957-81b7-c97d-076b-276e99bad891-df125e70 {
    grid-column: 1 / 5;
    align-self: center;
  }

  #w-node-_3eb15957-81b7-c97d-076b-276e99bad893-df125e70 {
    grid-area: 4 / 1 / 5 / 13;
  }

  #w-node-_3eb15957-81b7-c97d-076b-276e99bad8a9-df125e70 {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-_3eb15957-81b7-c97d-076b-276e99bad8ac-df125e70, #w-node-_3eb15957-81b7-c97d-076b-276e99bad8ad-df125e70 {
    grid-area: 3 / 1 / 4 / 13;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f910-df125e70 {
    grid-column: 1 / 5;
    align-self: center;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f912-df125e70 {
    grid-area: 4 / 1 / 5 / 13;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f922-df125e70 {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f925-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908f926-df125e70 {
    grid-area: 3 / 1 / 4 / 13;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e827-df125e70 {
    grid-column: 1 / 5;
    align-self: center;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e829-df125e70 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e83b-df125e70 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e83e-df125e70 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e83f-df125e70 {
    grid-area: 5 / 1 / 6 / 5;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e842-df125e70 {
    grid-column: 1 / 5;
    align-self: center;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e844-df125e70 {
    grid-area: 4 / 1 / 5 / 13;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e85a-df125e70 {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e85d-df125e70, #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e85e-df125e70 {
    grid-area: 3 / 1 / 4 / 13;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e861-df125e70 {
    grid-column: 1 / 5;
    align-self: center;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e863-df125e70 {
    grid-area: 4 / 1 / 5 / 13;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e873-df125e70 {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e876-df125e70, #w-node-_33df7a8e-514d-4bf3-4c39-51b47884e877-df125e70 {
    grid-area: 3 / 1 / 4 / 13;
  }

  #w-node-a95c69ea-6b1b-1fa2-8a5c-fe995ec2d8b9-df125e70 {
    grid-column: 1 / 5;
    align-self: center;
  }

  #w-node-a95c69ea-6b1b-1fa2-8a5c-fe995ec2d8bb-df125e70 {
    grid-area: 4 / 1 / 5 / 13;
  }

  #w-node-a95c69ea-6b1b-1fa2-8a5c-fe995ec2d8bd-df125e70 {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-a95c69ea-6b1b-1fa2-8a5c-fe995ec2d8c1-df125e70, #w-node-a95c69ea-6b1b-1fa2-8a5c-fe995ec2d8c2-df125e70 {
    grid-area: 3 / 1 / 4 / 13;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f943-df125e70 {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f949-df125e70 {
    grid-area: 1 / 1 / 2 / 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f955-df125e70 {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f95b-df125e70 {
    grid-area: 1 / 1 / 2 / 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f967-df125e70 {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f96d-df125e70 {
    grid-area: 1 / 1 / 2 / 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f979-df125e70 {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f97f-df125e70 {
    grid-area: 1 / 1 / 2 / 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f98b-df125e70 {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f991-df125e70 {
    grid-area: 1 / 1 / 2 / 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f99d-df125e70 {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f9a3-df125e70 {
    grid-area: 1 / 1 / 2 / 7;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f9c4-df125e70 {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f9c6-df125e70 {
    grid-area: 1 / 1 / 4 / 13;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908fa4a-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908fa4c-df125e70 {
    grid-column-end: 7;
  }

  #w-node-acd4f0a4-4919-db6b-eac1-f4557a11e0c6-df125ecc {
    grid-column-end: 5;
  }

  #w-node-_028f8d22-e57a-3ac0-9b52-51f263c30e5b-df125ecc {
    grid-column: 1 / 5;
  }

  #w-node-f1871a06-f97c-2fb5-18bc-958b55e38511-df125ecc, #w-node-_447e8552-2886-979a-3630-dce90adeef8c-df125ecc {
    grid-column: span 2 / span 2;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50bf-df125ecc {
    grid-column-end: 3;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50c1-df125ecc {
    grid-column: 3 / 5;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50c3-df125ecc, #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50c8-df125ecc {
    grid-column-end: 5;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50cc-df125ecc {
    grid-column-end: 3;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50ce-df125ecc {
    grid-column: 3 / 5;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50d0-df125ecc, #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50d5-df125ecc {
    grid-column-end: 5;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50d9-df125ecc {
    grid-column-end: 3;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50db-df125ecc {
    grid-column: 3 / 5;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50dd-df125ecc, #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50e2-df125ecc {
    grid-column-end: 5;
  }

  #w-node-_8616a2b0-5b73-5a37-f785-e6ef4f2ae01e-df125ecc {
    grid-column-end: 3;
  }

  #w-node-_8616a2b0-5b73-5a37-f785-e6ef4f2ae01f-df125ecc {
    grid-column: 3 / 5;
  }

  #w-node-_8616a2b0-5b73-5a37-f785-e6ef4f2ae020-df125ecc, #w-node-_8616a2b0-5b73-5a37-f785-e6ef4f2ae026-df125ecc {
    grid-column-end: 5;
  }

  #w-node-d11c248c-de11-223d-5707-2e45c5da171b-df125ecc {
    grid-column-end: 3;
  }

  #w-node-d11c248c-de11-223d-5707-2e45c5da171c-df125ecc {
    grid-column: 3 / 5;
  }

  #w-node-d11c248c-de11-223d-5707-2e45c5da171d-df125ecc, #w-node-d11c248c-de11-223d-5707-2e45c5da1723-df125ecc {
    grid-column-end: 5;
  }

  #w-node-cdaf0034-6a4c-39a6-91df-98685891c54b-df125ecc {
    grid-column-end: 3;
  }

  #w-node-cdaf0034-6a4c-39a6-91df-98685891c54c-df125ecc {
    grid-column: 3 / 5;
  }

  #w-node-cdaf0034-6a4c-39a6-91df-98685891c54d-df125ecc, #w-node-cdaf0034-6a4c-39a6-91df-98685891c553-df125ecc, #w-node-_98dae7eb-32f9-daa9-d015-2949ff9fe7a0-df125ee3, #w-node-d14579b1-c586-7509-3c00-f52d3d2f525b-df125ee3 {
    grid-column-end: 5;
  }

  #w-node-_583377e6-17a3-3c18-deab-823135cd8b3a-df125ee4 {
    grid-column-end: 3;
  }

  #w-node-_4566d32b-70f7-048b-d17d-4df6adc3af34-df125ee4 {
    grid-column: 3 / 5;
  }

  #w-node-_50032594-5e8a-5da9-986d-613606bcd462-df125ee4 {
    grid-column-end: 3;
  }

  #w-node-_3485e7fb-9dfb-b497-c0ee-ede934b1fef8-df125ee4 {
    grid-column: span 2 / span 2;
  }

  #w-node-_7d4edca6-156e-329a-5db8-7cf219f47d74-df125ee4 {
    grid-column-end: 5;
  }

  #w-node-_27823ea1-b07b-e6d6-1762-464dbf568a7e-df125ee4 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_29dd9412-18de-b184-ebe0-4faf8a77f8d4-df125ee4 {
    grid-column-end: 5;
  }

  #w-node-_29dd9412-18de-b184-ebe0-4faf8a77f8d6-df125ee4 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-beafe21c-9b8e-98ee-1056-20be2f6032fa-df125ee4 {
    grid-column-end: 5;
  }

  #w-node-beafe21c-9b8e-98ee-1056-20be2f6032fc-df125ee4 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_9e877598-1fb8-2a50-c8c5-f25b6e371439-6e371434 {
    grid-column-end: 4;
  }

  #w-node-_9e877598-1fb8-2a50-c8c5-f25b6e371443-6e371434 {
    grid-column-end: 7;
  }

  #w-node-_9e877598-1fb8-2a50-c8c5-f25b6e37144d-6e371434 {
    grid-row: 3 / 4;
    grid-column-start: 1;
    justify-self: start;
  }

  #w-node-_9e877598-1fb8-2a50-c8c5-f25b6e371459-6e371434 {
    grid-area: 2 / 1 / 3 / 7;
  }

  #w-node-_9e877598-1fb8-2a50-c8c5-f25b6e37145b-6e371434 {
    grid-column: 1 / 7;
    justify-self: start;
  }

  #w-node-c1e3da35-a6f0-9b8c-c582-2b415d700579-5d700567 {
    grid-column: 4 / 5;
    justify-self: end;
  }

  #w-node-_8c5c435a-436a-35b4-9d12-d89e50480a6e-df125ee7 {
    grid-column: 1 / 5;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e59754-df125ee7 {
    grid-column-end: 5;
  }

  #w-node-_4d3751e6-d073-af8b-c826-7cf8db066322-df125ee7 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e59757-df125ee7 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e5975e-df125ee7 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e59767-df125ee7 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e59762-df125ee7 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e59764-df125ee7 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e59772-df125ee7 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e5976d-df125ee7 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e5976f-df125ee7 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e5977b-df125ee7 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e59778-df125ee7 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-a3002bc3-26da-f518-8c53-5b1b67e5977f-df125ee7 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42d3-df125ee7 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42d8-df125ee7 {
    grid-column-end: 5;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42df-df125ee7 {
    grid-row-end: 2;
    grid-column-end: 5;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42dd-df125ee7 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42db-df125ee7 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42e7-df125ee7 {
    grid-row-end: 2;
    grid-column-end: 5;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42e5-df125ee7 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42e3-df125ee7 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42f0-df125ee7 {
    grid-row-end: 2;
    grid-column-end: 5;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42ed-df125ee7 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_9d77b5e1-4c1e-18ca-a329-297e379b42eb-df125ee7 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-de936914-99ec-8439-5f5d-e51a9094ccc2-df125ee8, #w-node-_21ee7ffa-7118-e873-9157-541f99f2d62a-df125ee8, #w-node-_5f8e483c-0b7a-47c0-6f25-ae76117cb88a-df125ee8, #w-node-dd09396e-7bab-5581-8096-26b112ccb245-df125ee8, #w-node-ba3f9de4-34b1-ef0e-4407-056ac179abe7-df125ee8, #w-node-_5b1e8e7c-0949-7bca-5ff4-e763eac70f72-df125ee8, #w-node-fcf451c9-8ff9-4c06-4484-fe9e14d00cfc-df125ee8 {
    grid-column: span 2 / span 2;
  }

  #w-node-_866da9cf-aa5d-a8a0-9b12-43a1e1b445a7-df125ee9 {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }

  #w-node-_866da9cf-aa5d-a8a0-9b12-43a1e1b445b8-df125ee9 {
    grid-area: 1 / 1 / 2 / 7;
  }

  #w-node-_98dae7eb-32f9-daa9-d015-2949ff9fe7a0-df125eea, #w-node-_98dae7eb-32f9-daa9-d015-2949ff9fe7a0-df125eeb {
    grid-column-end: 5;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c44a-df125eec {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c450-df125eec {
    grid-area: 1 / 1 / 2 / 7;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c45c-df125eec {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c462-df125eec {
    grid-area: 1 / 1 / 2 / 7;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c46e-df125eec {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c474-df125eec {
    grid-area: 1 / 1 / 2 / 7;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c480-df125eec {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c486-df125eec {
    grid-area: 1 / 1 / 2 / 7;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c492-df125eec {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c498-df125eec {
    grid-area: 1 / 1 / 2 / 7;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c4a4-df125eec {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c4aa-df125eec, #w-node-b20a5496-9c99-4815-debf-216f7a13c450-df125eed {
    grid-area: 1 / 1 / 2 / 7;
  }

  #w-node-b20a5496-9c99-4815-debf-216f7a13c44a-df125eed {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }

  #w-node-_1ddf4b06-b213-10b2-102a-dd861836169b-df125eee {
    grid-area: 1 / 1 / 2 / 7;
  }

  #w-node-_1ddf4b06-b213-10b2-102a-dd861836169c-df125eee {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }

  #w-node-_50317c2e-3f00-eaab-bdee-4c8aa0caa3e8-df125eef {
    grid-area: 1 / 1 / 2 / 7;
  }

  #w-node-_50317c2e-3f00-eaab-bdee-4c8aa0caa3e9-df125eef {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }

  #w-node-_9103ca4d-0200-ff97-8514-ce90c2c4ad78-df125f03 {
    grid-area: 1 / 1 / 2 / 7;
  }

  #w-node-_9103ca4d-0200-ff97-8514-ce90c2c4ad79-df125f03 {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }

  #w-node-e0ccc12a-ce42-7ca4-e8c1-e61af3ed188f-df125f04 {
    grid-area: 1 / 1 / 2 / 7;
  }

  #w-node-e0ccc12a-ce42-7ca4-e8c1-e61af3ed1890-df125f04 {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }

  #w-node-a8453b5c-03c6-1aa8-d6ee-c24d92c5ed59-df125f05 {
    grid-area: 1 / 1 / 2 / 7;
  }

  #w-node-a8453b5c-03c6-1aa8-d6ee-c24d92c5ed5a-df125f05 {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }
}

@media screen and (max-width: 479px) {
  #w-node-a1db10d7-557f-f9da-b034-82987908f849-df125e70 {
    grid-column-end: 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f851-df125e70 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f859-df125e70 {
    grid-row: 4 / 5;
    grid-column-end: 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f9c4-df125e70 {
    grid-column-end: 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908f9c6-df125e70 {
    grid-area: 1 / 1 / 4 / 5;
  }

  #w-node-a1db10d7-557f-f9da-b034-82987908fa4a-df125e70, #w-node-a1db10d7-557f-f9da-b034-82987908fa4c-df125e70, #w-node-acd4f0a4-4919-db6b-eac1-f4557a11e0c6-df125ecc, #w-node-_028f8d22-e57a-3ac0-9b52-51f263c30e5b-df125ecc {
    grid-column-end: 5;
  }

  #w-node-f1871a06-f97c-2fb5-18bc-958b55e38511-df125ecc, #w-node-_447e8552-2886-979a-3630-dce90adeef8c-df125ecc {
    grid-column: span 4 / span 4;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50bf-df125ecc {
    grid-column-end: 5;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50c1-df125ecc {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50c8-df125ecc {
    grid-row: 4 / 5;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50cc-df125ecc {
    grid-column-end: 5;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50ce-df125ecc {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50d5-df125ecc {
    grid-row: 4 / 5;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50d9-df125ecc {
    grid-column-end: 5;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50db-df125ecc {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-_5c34351d-8a79-73ca-5be0-9af4930a50e2-df125ecc {
    grid-row: 4 / 5;
  }

  #w-node-_8616a2b0-5b73-5a37-f785-e6ef4f2ae01e-df125ecc {
    grid-column-end: 5;
  }

  #w-node-_8616a2b0-5b73-5a37-f785-e6ef4f2ae01f-df125ecc {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-_8616a2b0-5b73-5a37-f785-e6ef4f2ae026-df125ecc {
    grid-row: 4 / 5;
  }

  #w-node-d11c248c-de11-223d-5707-2e45c5da171b-df125ecc {
    grid-column-end: 5;
  }

  #w-node-d11c248c-de11-223d-5707-2e45c5da171c-df125ecc {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-d11c248c-de11-223d-5707-2e45c5da1723-df125ecc {
    grid-row: 4 / 5;
  }

  #w-node-cdaf0034-6a4c-39a6-91df-98685891c54b-df125ecc {
    grid-column-end: 5;
  }

  #w-node-cdaf0034-6a4c-39a6-91df-98685891c54c-df125ecc {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-cdaf0034-6a4c-39a6-91df-98685891c553-df125ecc {
    grid-row: 4 / 5;
  }

  #w-node-_583377e6-17a3-3c18-deab-823135cd8b3a-df125ee4, #w-node-_4566d32b-70f7-048b-d17d-4df6adc3af34-df125ee4, #w-node-_50032594-5e8a-5da9-986d-613606bcd462-df125ee4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_3485e7fb-9dfb-b497-c0ee-ede934b1fef8-df125ee4 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-_9e877598-1fb8-2a50-c8c5-f25b6e371439-6e371434 {
    grid-column-end: 5;
  }

  #w-node-_9e877598-1fb8-2a50-c8c5-f25b6e371443-6e371434 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_9e877598-1fb8-2a50-c8c5-f25b6e37144d-6e371434 {
    grid-row: 4 / 5;
    grid-column-end: 5;
  }

  #w-node-c1e3da35-a6f0-9b8c-c582-2b415d70056a-5d700567 {
    grid-column-end: 3;
  }
}


