@font-face {
  font-family: Inter;
  src: url('../fonts/Inter.var.woff2') format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --white-smoke: #fafafa;
  --black: #191919;
  --purple: #b700ff;
  --light-grey: #f1f0ec;
  --dark-grey: #afafaf;
  --white: white;
  --orange: #c40;
  --color: #55554d;
  --orange-surface: #ff5900;
}

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

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

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

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

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

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

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

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

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

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

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

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

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

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

body {
  background-color: var(--white-smoke);
  color: var(--black);
  font-family: Inter, sans-serif;
  font-size: .8rem;
  line-height: 1.4;
}

h1 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
}

h2 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  letter-spacing: -.0625rem;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}

h5 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

h6 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

p {
  margin-bottom: 0;
}

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

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: .25rem;
}

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

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.utility-page_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility-page_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 20rem;
  display: flex;
}

.utility-page_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.utility-page_image {
  margin-left: auto;
  margin-right: auto;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.margin-custom2 {
  margin: 2.5rem;
}

.padding-xlarge {
  padding: 4rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xsmall {
  margin: .5rem;
}

.padding-xhuge {
  padding: 8rem;
}

.margin-custom1 {
  margin: 1.5rem;
}

.padding-0 {
  padding: 0;
}

.padding-xxhuge {
  padding: 12rem;
}

.padding-huge {
  padding: 6rem;
}

.margin-large {
  margin: 3rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.margin-xxsmall {
  margin: .25rem;
}

.padding-custom3 {
  padding: 3.5rem;
}

.padding-large {
  padding: 3rem;
}

.margin-tiny {
  margin: .125rem;
}

.padding-small {
  padding: 1rem;
}

.padding-custom2 {
  padding: 2.5rem;
}

.margin-custom3 {
  margin: 3.5rem;
}

.padding-custom1 {
  padding: 1.5rem;
}

.margin-huge {
  margin: 6rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-xsmall {
  padding: .5rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.padding-xxsmall {
  padding: .25rem;
}

.margin-xhuge {
  margin: 8rem;
}

.padding-tiny {
  padding: .125rem;
}

.margin-small {
  margin: 1rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.margin-0 {
  margin: 0;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

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

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

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

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

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

.padding-vertical.padding-xhuge {
  padding-bottom: 0;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

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

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

.margin-top.margin-small {
  margin-top: 16rem;
}

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

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

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

.form_checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.form_checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-checked {
  background-size: 90%;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-focus {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.fs-styleguide_background {
  border: 1px solid #0000001a;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.fs-styleguide_spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, #2d40ea1a, #fff0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  display: grid;
  position: relative;
}

.icon-1x1-small {
  flex: none;
  width: 1rem;
  height: 1rem;
}

.overflow-auto {
  overflow: auto;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

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

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

.fs-styleguide_background-space {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

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

.text-style-strikethrough {
  text-decoration: line-through;
}

.fs-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

.fs-styleguide_item.is-stretch {
  justify-items: stretch;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.fs-styleguide_item-header {
  border-bottom: 1px solid #0000001a;
  width: 100%;
  padding-bottom: 2rem;
}

.fs-styleguide_heading-large {
  font-size: 6rem;
}

.background-color-black {
  color: #f5f5f5;
  background-color: #000;
}

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

.text-color-black {
  color: #000;
}

.text-color-grey {
  color: gray;
}

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

.fs-styleguide_2-col.is-align-start {
  align-items: start;
}

.form_message-success {
  padding: 1.25rem;
}

.fs-styleguide_row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading-style-h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

.text-rich-text h1, .text-rich-text h2, .text-rich-text h3, .text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.text-rich-text h5, .text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

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

.text-rich-text ul, .text-rich-text ol {
  margin-bottom: 1.5rem;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.icon-height-small {
  height: 1rem;
}

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

.heading-style-h1 {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
}

.padding-global {
  margin-bottom: 0;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-global.nospace-right {
  padding-right: 0;
}

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

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.max-width-small {
  width: 100%;
  max-width: 20rem;
}

.text-color-white {
  color: #fff;
}

.text-style-italic {
  font-style: italic;
}

.text-weight-medium {
  font-weight: 500;
}

.overflow-hidden {
  justify-content: center;
  align-items: flex-end;
  display: block;
  overflow: hidden;
}

.overflow-hidden._0123121 {
  display: flex;
}

.fs-styleguide_section-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid #000;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 3rem;
  line-height: 1.4;
  display: grid;
}

.text-size-tiny {
  font-family: Inconsolata, monospace;
  font-size: 14px;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

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

.overflow-visible {
  overflow: visible;
}

.fs-styleguide_empty-box {
  z-index: -1;
  background-color: #2d40ea0d;
  border: 1px dashed #2d40ea;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.text-weight-light {
  font-weight: 300;
}

.fs-styleguide_heading-medium {
  font-size: 4rem;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

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

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

.text-weight-xbold {
  font-weight: 800;
}

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

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

.max-width-medium {
  width: 100%;
  max-width: 32rem;
}

.fs-styleguide_item-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

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

.fs-styleguide_header-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.background-color-white {
  background-color: #fff;
}

.text-style-muted {
  opacity: .6;
}

.text-size-small {
  font-size: .875rem;
}

.heading-style-h4 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.form_radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  border-width: .25rem;
  width: .875rem;
  height: .875rem;
}

.form_radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.text-style-nowrap {
  white-space: nowrap;
}

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

.background-color-grey {
  background-color: #f5f5f5;
}

.form_input {
  background-color: #0000;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

.form_input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
}

.heading-style-h6 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

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

.fs-styleguide_3-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.fs-styleguide_3-col.is-align-start {
  align-items: start;
}

.text-style-link {
  color: #000;
  text-decoration: underline;
}

.text-style-link.text-color-white {
  color: var(--white-smoke);
}

.text-size-large {
  font-family: Inconsolata, monospace;
  font-size: 16px;
  line-height: 1.4;
}

.fs-styleguide_header {
  background-color: #0000000d;
}

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

.fs-styleguide_label {
  color: #fff;
  background-color: #2d40ea;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem .3rem;
  font-weight: 600;
  display: flex;
}

.fs-styleguide_label.is-tag {
  background-color: #be4aa5;
}

.fs-styleguide_label.is-hex {
  color: #000;
  background-color: #f5f5f5;
}

.fs-styleguide_version {
  z-index: 5;
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

.heading-style-h5 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

.container-large {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.container-large.partner-container {
  justify-content: center;
  display: flex;
}

.icon-height-medium {
  height: 2rem;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.overflow-scroll {
  overflow: scroll;
}

.form_message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.icon-height-large {
  height: 3rem;
}

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

.form_component {
  margin-bottom: 0;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.text-style-quote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #000;
  border-radius: 50rem;
  justify-content: flex-start;
  align-items: center;
  padding: 1.8em 3em;
  font-family: Inconsolata, monospace;
  font-size: .8rem;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button.is-text {
  color: #000;
  background-color: #0000;
  border: 2px solid #0000;
}

.button.is-small {
  padding: .5rem 1.25rem;
}

.button.is-large {
  padding: 1rem 2rem;
}

.button.is-secondary {
  color: #000;
  background-color: #0000;
  border: 1px solid #000;
}

.button.is-icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.fs-styleguide_classes {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-size-medium {
  color: var(--black);
  text-transform: uppercase;
  font-family: Inconsolata, monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.text-size-medium._01 {
  color: var(--purple);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}

.text-size-medium.smalll {
  color: var(--purple);
  font-size: 12px;
}

.fs-styleguide_section {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.fs-styleguide_section.is-vertical {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: 1fr;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hide {
  display: none;
}

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

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.form_radio {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.fs-styleguide_spacing-all {
  display: none;
}

.fs-styleguide_color.is-1 {
  background-color: #000;
}

.fs-styleguide_color.is-2 {
  background-color: #f5f5f5;
}

.fs-styleguide_color.is-3 {
  background-color: #fff;
}

.spacer-huge {
  width: 100%;
  padding-top: 6rem;
}

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.fs-styleguide_spacer-box {
  background-color: #2d40ea1a;
  border: 1px dashed #2d40ea;
  width: 100%;
  position: relative;
}

.spacer-xsmall {
  width: 100%;
  padding-top: .5rem;
}

.spacer-small {
  width: 100%;
  padding-top: 1rem;
}

.spacer-xhuge {
  width: 100%;
  padding-top: 8rem;
}

.spacer-tiny {
  width: 100%;
  padding-top: .125rem;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .25rem;
}

.spacer-xxhuge {
  width: 100%;
  padding-top: 12rem;
}

.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}

.spacer-large {
  padding-top: 3rem;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

.signup {
  overflow: hidden;
}

.signup.is-hero {
  padding-top: 22rem;
  padding-bottom: 7em;
}

.signup.is-fullscreen {
  position: relative;
}

.signup.background-color-grey {
  background-color: var(--light-grey);
}

.signup.case-study {
  padding-top: 6rem;
  padding-bottom: 5.25rem;
}

.signup.is-info {
  background-color: var(--black);
}

.wrapper.is-hero-content {
  grid-column-gap: 3.15em;
  grid-row-gap: 3.15em;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.wrapper.is-hero-image {
  width: 100%;
  min-height: 60rem;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.wrapper.is-intro {
  background-color: var(--white-smoke);
  position: relative;
}

.wrapper.is-product-teaser {
  flex-direction: row;
  width: 100%;
  display: flex;
}

.wrapper.is-wood-intro {
  padding-top: 17.75rem;
  padding-bottom: 6.25rem;
}

.wrapper.is-wood-image {
  background-color: #fafafa;
  justify-content: center;
  align-items: flex-end;
  min-height: 50rem;
  display: flex;
}

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

.wrapper.is-explore {
  position: relative;
}

.wrapper.is-credit {
  margin-bottom: 9.5rem;
}

.wrapper.is-horizontal-scroll {
  position: relative;
}

.grid.is-hero {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .4fr .5fr .5fr;
  place-items: start;
}

.grid.is-intro {
  grid-column-gap: 2.375rem;
  grid-row-gap: 2.375rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  align-items: center;
}

.grid.is-product {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: .4fr 1fr;
  place-items: start;
}

.grid.is-wood {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: .4fr 1fr;
  place-items: start;
}

.grid.is-awards {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.grid.is-casestudy {
  grid-column-gap: 1.56rem;
  grid-row-gap: 1.56rem;
  grid-template-rows: auto;
  grid-template-columns: .4fr .5fr .5fr;
  margin-bottom: 80px;
}

.grid.is-social {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid.is-credit {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr 1fr .25fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.grid.is-footer {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.2fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.navbar {
  z-index: 9999999;
  background-color: #fafafa;
  padding: 1rem 2.5rem;
  position: fixed;
  inset: 0% 0% auto;
}

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

.navbar-brand.w--current {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 0;
}

.icon-1x1-tiny {
  z-index: 5;
  flex: none;
  width: .8rem;
  height: .8rem;
  position: relative;
  transform: rotate(45deg);
}

.image-badge {
  max-width: 3.1rem;
  height: auto;
}

.image-hero {
  object-fit: cover;
  width: 115%;
  max-width: none;
  height: 115%;
  position: absolute;
}

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

.column.intro-left {
  grid-column-gap: 10vw;
  grid-row-gap: 10vw;
  height: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-right: 2rem;
  display: flex;
  position: relative;
}

.column.intro-right {
  width: 100%;
  max-width: 38rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: block;
}

.column.hero-middle {
  max-width: 38rem;
  display: block;
}

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

.column.product-left {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  display: flex;
  position: relative;
}

.column.product-right {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.column.product-teaser-right {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  padding-left: 2.375rem;
  display: flex;
  position: relative;
}

.column.wood-left {
  flex-direction: column;
  justify-content: space-between;
  width: auto;
  height: 100%;
  padding-top: 3.85rem;
  padding-bottom: 4.55rem;
  padding-right: 3.25rem;
  display: flex;
  position: relative;
}

.column.wood-right {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 3.1rem 0 3.55rem 3rem;
  display: flex;
  position: relative;
}

.column.wood-right.spezzzialll {
  padding-left: 0;
}

.column.casestudy-intro {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: none;
  padding-bottom: 5.25rem;
  display: flex;
}

.column.is-explore-info {
  background-color: var(--white-smoke);
  border-radius: .625rem;
  max-width: 25rem;
  height: auto;
  padding: .625rem;
  position: absolute;
  inset: auto auto 5rem 2.5rem;
}

.column.explore-intro {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 37rem;
  height: auto;
  display: flex;
}

.column.credit-left {
  display: flex;
}

.column.footer-right {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: right;
  justify-content: space-between;
  display: flex;
}

.column.footer-nav {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.column.is-explore-info-right {
  background-color: var(--white-smoke);
  border-radius: .625rem;
  max-width: 25rem;
  height: auto;
  padding: .625rem;
  position: absolute;
  inset: auto 2.5rem 5rem auto;
}

.intro-number-text {
  letter-spacing: -.25rem;
  font-size: 5.7rem;
  font-weight: 400;
  line-height: 1;
}

.text-capitalize {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Inconsolata, monospace;
  font-size: 16px;
}

.text-capitalize._01 {
  color: var(--purple);
}

.divider-line {
  z-index: 100;
  background-color: var(--dark-grey);
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 1px;
  display: block;
  position: relative;
  inset: 0 0% auto;
}

.divider-line.vertical {
  width: 1px;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.divider-line.vertical.starter {
  inset: 0% auto 0% 0%;
}

.text-subtitle {
  color: var(--purple);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Inconsolata, monospace;
  font-size: 16px;
}

.link.is-product-teaser {
  border-right: 1px solid var(--dark-grey);
  background-color: var(--light-grey);
  justify-content: center;
  align-items: center;
  width: 50%;
  min-height: 50vh;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  position: relative;
}

.link.is-social {
  border: 1px solid var(--dark-grey);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
}

.link.is-contact {
  color: var(--white-smoke);
  font-size: 1.25rem;
  text-decoration: none;
}

.link.is-credit {
  width: 100%;
  color: var(--black);
  justify-content: space-between;
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-decoration: none;
  display: flex;
  position: relative;
}

.link.is-footer {
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 22px;
  padding-bottom: 22px;
  font-family: Inconsolata, monospace;
  font-size: 1rem;
  text-decoration: none;
  overflow: hidden;
}

.wood-component-wrapper {
  grid-column-gap: 2.25rem;
  grid-row-gap: 2.25rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: minmax(auto, 19.375rem) 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
}

.wood-component-content {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  width: 100%;
  display: flex;
}

.wood-component-image {
  max-width: 19.375rem;
}

.wood-component-title {
  justify-content: space-between;
  margin-top: 2.25rem;
  display: flex;
}

.wood-component-icon {
  border: 1px solid var(--black);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2.75rem;
  height: 2.75rem;
  transition: transform .35s cubic-bezier(.165, .84, .44, 1), opacity .35s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.wood-component-icon:hover {
  border-color: var(--black);
  opacity: .5;
  color: var(--black);
  transform: rotate(-45deg);
}

.wood-component-text {
  max-width: 27rem;
  font-size: .9rem;
}

.wood-component-item {
  grid-column-gap: 2.25rem;
  grid-row-gap: 2.25rem;
  width: 100%;
  display: flex;
}

.section-title {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  display: flex;
}

.section-title._0-gap {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  align-items: flex-start;
}

.section-title._011, .section-title._00001 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
}

.product-image.is-bed {
  object-fit: contain;
  max-width: 80%;
  margin-top: 0%;
  margin-bottom: 0%;
}

.product-image.is-teaser {
  filter: grayscale();
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0%;
}

.wood-component-icon_arrow {
  width: .8rem;
  height: 1rem;
}

.wood-component-link {
  color: var(--black);
  flex-flow: row;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.image-wood {
  width: 100%;
  max-width: 100vw;
  margin-left: 0;
  margin-right: 0;
  position: static;
  transform: translate(0, 1px);
}

.image-award {
  width: 5.5rem;
  max-height: 5rem;
}

.explore-info-item {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-direction: column;
  display: flex;
}

.explore-info-image {
  border-radius: .625rem;
  overflow: hidden;
}

.explore-info-text {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 12rem;
  padding-bottom: 1rem;
  padding-left: .7rem;
  display: flex;
}

.image-explore {
  filter: grayscale();
  object-fit: cover;
  position: absolute;
}

.explore-image-wrapper {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
}

.button-author {
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 20rem;
  padding: .75rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
}

.button-author.is-text-link {
  z-index: 1;
  background-color: #0000;
  padding: 0;
  font-size: 1.125rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.social-wrapper {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  color: #fff;
  flex-direction: column;
  align-items: flex-start;
  font-size: .875rem;
  display: flex;
}

.social-wrapper.left-aligned {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  align-items: flex-start;
  font-size: 1rem;
}

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

.image-author {
  object-fit: cover;
  border-radius: 50%;
  flex: none;
  width: 4.125rem;
  height: 4.125rem;
}

.icon-1x1-small-2 {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
  position: relative;
}

.button-underline-progress {
  background-color: #fff;
  width: 0;
  height: 1px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.button-link-content {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  align-items: center;
  display: flex;
}

.button-underline {
  background-color: #ffffff40;
  align-items: center;
  width: 100%;
  height: 1px;
  margin-top: .25rem;
  display: block;
  position: relative;
}

.social-author {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-direction: column;
  justify-content: space-between;
  max-width: 59%;
  line-height: 1.5;
  display: flex;
}

.icon-1x1-small-second {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.wrapper-info {
  justify-content: space-between;
  margin-top: 2rem;
  display: flex;
}

.wrapper-info.bottom {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr .5fr;
  grid-auto-columns: 1fr;
  margin-top: 0;
  padding-top: 8rem;
  padding-bottom: 8rem;
  display: grid;
}

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

.button-bg {
  z-index: 0;
  background-color: var(--black);
  height: 0;
  position: absolute;
  inset: auto 0% 0%;
}

.navbar-button {
  z-index: 999;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  text-transform: uppercase;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  font-size: .8rem;
  display: block;
}

.navbar-button.w--open {
  background-color: #fff0;
}

.navbar-overlay {
  background-color: var(--white);
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.navbar-button-container {
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: .7rem;
  display: flex;
  position: relative;
}

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

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

.navbar-menu {
  background-color: var(--purple);
  width: 40vw;
  height: 100vh;
  color: var(--white-smoke);
  padding: 4.5rem 2.5rem 2.5rem;
  inset: 0% 0% 0% auto;
}

.navbar-link {
  color: var(--white-smoke);
  text-transform: uppercase;
  padding-left: 0;
  padding-right: 0;
  font-size: 2rem;
}

.navbar-social {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 3rem;
  display: flex;
}

.text-credit-number {
  letter-spacing: 1px;
  min-width: 7rem;
  font-family: Inconsolata, monospace;
  font-size: 16px;
}

.credit-component-icon_arrow {
  width: .8rem;
  height: 1rem;
  transform: rotate(-45deg);
}

.credit-component {
  display: block;
  position: relative;
}

.text-info {
  color: gray;
  font-size: .75rem;
}

.footer-component {
  padding-top: 2rem;
  padding-bottom: 1.875rem;
}

.spacer-footer {
  padding-top: 6.25rem;
}

.image-overlay {
  background-color: var(--white-smoke);
  display: none;
  position: absolute;
  inset: 0%;
}

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

.image-wrapper.wood {
  max-width: 19.375rem;
}

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

.image-fill {
  object-fit: fill;
  overflow: clip;
}

.credit-component-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  inset: 0%;
}

.credit-component-image-wrapper {
  z-index: 200;
  width: 18rem;
  padding-top: 20rem;
  position: absolute;
  inset: auto 8% -62% auto;
}

.image {
  width: 340px;
  height: auto;
  color: var(--black);
}

.image.trademark {
  width: 50px;
}

.text-block {
  letter-spacing: 1px;
  font-size: 14px;
}

.heading {
  padding-right: 24px;
}

.usp-head {
  text-transform: uppercase;
  padding-right: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
}

.text-block-2 {
  letter-spacing: 1px;
  font-family: Inconsolata, monospace;
  font-size: 16px;
}

.link-2 {
  text-transform: uppercase;
  font-family: Inconsolata, monospace;
  font-size: 14px;
  text-decoration: none;
}

.link-3 {
  font-family: Inconsolata, monospace;
  font-size: 14px;
}

.heading-3 {
  padding-right: 24px;
}

.logos-container {
  display: flex;
  position: relative;
}

.logos-row {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex: none;
  align-items: center;
  padding-left: 3rem;
  display: flex;
}

.logo {
  max-width: 10%;
}

.logos-gradient {
  background-image: linear-gradient(to right, #0e0c15, #0e0c1500);
  width: 5rem;
  position: absolute;
  inset: 0% auto 0% 0%;
}

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

.logos-container2 {
  display: flex;
  position: relative;
}

.logos-row2 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex: none;
  align-items: center;
  padding-left: 3rem;
  display: flex;
}

.copy-this-entire-section {
  color: var(--orange);
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: var(--orange);
  text-transform: uppercase;
  background-color: #b700ff00;
  border-top: 1px dotted #fff;
  border-bottom: 0 solid #afafaf;
  margin-top: 100px;
  margin-bottom: 100px;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.main-container {
  background-color: var(--white-smoke);
  width: auto;
  max-width: 100%;
  color: var(--purple);
  margin: 0 auto;
  padding: 0 20px;
  font-size: 20px;
  line-height: 21px;
  overflow: hidden;
}

.brand-logo-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.client-logo-slider-wrapper {
  flex: none;
  width: 100%;
  display: flex;
}

.client-logo-slider {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: row;
  flex: none;
  display: flex;
}

.items {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-flow: row;
  flex: none;
  justify-content: center;
  align-items: center;
  width: auto;
  display: flex;
}

.item {
  width: 300px;
  height: 60%;
  margin-left: 0;
  padding-left: 0;
}

.item._011111 {
  width: 90px;
  max-width: none;
  height: auto;
}

.item._02222 {
  width: 100px;
  height: 70%;
}

.item._077777 {
  width: 381px;
  height: 50%;
  padding-top: 8px;
}

.item._0777777 {
  width: 100px;
  height: 60%;
}

.item._98888 {
  width: 124px;
  height: 65%;
}

.item._8777 {
  margin-left: 20px;
}

.text-block-3, .text-block-4, .text-block-5, .text-block-6, .text-block-7 {
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 700;
}

.heading-4 {
  letter-spacing: -2px;
  font-weight: 300;
}

.heading-5 {
  font-weight: 300;
}

.heading-6, .heading-7, .heading-8, .heading-9, .heading-10, .heading-11 {
  letter-spacing: -2px;
  font-weight: 300;
}

.heading-12 {
  margin-bottom: 4rem;
  font-weight: 200;
}

.text-span {
  font-weight: 500;
}

.heading-13 {
  letter-spacing: -2px;
  font-weight: 300;
}

.text-span-2 {
  font-weight: 500;
}

.name-head {
  padding-right: 24px;
}

.namefounder {
  color: var(--purple);
  text-transform: uppercase;
  padding-top: 0;
  font-size: 14px;
  font-weight: 700;
}

.namefounder._0124 {
  padding-top: 1px;
}

.bold-text {
  text-transform: uppercase;
  vertical-align: text-bottom;
  flex-flow: row;
  font-weight: 400;
  display: inline;
}

.bold-text-2 {
  text-transform: uppercase;
  vertical-align: text-bottom;
  margin-bottom: -10px;
  font-weight: 400;
  display: flex;
}

.bold-text-3 {
  text-transform: uppercase;
  vertical-align: text-bottom;
  margin-bottom: -10px;
  font-weight: 400;
  line-height: 1.4;
  display: flex;
}

.bold-text-4 {
  text-transform: uppercase;
}

.bold-text-5 {
  text-transform: uppercase;
  vertical-align: text-bottom;
  margin-bottom: -10px;
  font-weight: 400;
  display: flex;
}

.bold-text-6, .bold-text-7 {
  text-transform: uppercase;
}

.bold-text-8 {
  text-transform: uppercase;
  vertical-align: text-bottom;
}

.bold-text-9 {
  text-transform: uppercase;
}

.bold-text-10 {
  vertical-align: text-bottom;
  font-weight: 400;
}

.bold-text-11 {
  vertical-align: text-bottom;
  margin-bottom: -10px;
  font-weight: 400;
  display: flex;
}

.bold-text-12 {
  vertical-align: text-bottom;
  font-weight: 400;
}

.bold-text-13 {
  vertical-align: text-bottom;
  margin-bottom: -10px;
  font-weight: 400;
  display: flex;
}

.bold-text-14 {
  vertical-align: text-bottom;
}

.bold-text-15 {
  margin-bottom: -10px;
  font-weight: 400;
  display: flex;
}

.bold-text-16 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  vertical-align: baseline;
  flex-flow: row;
  margin-bottom: -10px;
  padding-bottom: 0;
  font-weight: 700;
  display: flex;
}

.bold-text-17, .bold-text-18 {
  margin-bottom: -10px;
  display: flex;
}

.text-span-3 {
  text-decoration: none;
}

.text-span-4 {
  text-align: left;
}

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

.heading-14 {
  font-weight: 300;
}

.image-2 {
  width: 124px;
  height: 65%;
}

.image-3 {
  width: 230px;
  max-width: none;
  height: 50%;
}

.submit-button {
  background-color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 9999px;
  padding: 1.8rem 3rem;
  font-family: Inconsolata, monospace;
  font-size: 14px;
  overflow: hidden;
}

.text-field {
  border: 0 solid #0000;
  border-radius: 0;
  width: auto;
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
  overflow: hidden;
}

.div-block {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: auto;
  display: block;
}

.text-field-2 {
  border: 1px solid #0000;
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
  overflow: hidden;
}

.div-block-2 {
  width: auto;
}

.div-block-3 {
  width: auto;
  margin-bottom: 0;
}

.field-label {
  color: var(--purple);
  font-weight: 400;
  overflow: hidden;
}

.field-label-2 {
  color: var(--black);
  margin-bottom: 1rem;
  padding-left: .125rem;
  font-family: Inconsolata, monospace;
  font-size: 14px;
  font-weight: 400;
  overflow: clip;
}

.form {
  width: auto;
}

.form-block {
  justify-content: space-between;
  width: auto;
  max-width: none;
  display: block;
}

.image-4 {
  width: 100px;
  height: 60%;
}

.image-5 {
  width: 220px;
  height: 60%;
}

.image-6 {
  width: 220px;
}

.image-7 {
  width: 100px;
}

.success-message {
  border: 1px solid var(--purple);
  background-color: #ddd0;
  width: auto;
}

.text-block-8 {
  color: var(--purple);
}

.image-8 {
  pointer-events: auto;
  vertical-align: baseline;
  flex: 0 auto;
  display: none;
  position: static;
  overflow: visible;
}

.image-9, .image-10, .image-11 {
  display: none;
}

.gridmobile.is-hero {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .55fr 1fr;
  place-items: start;
}

.gridmobile.is-hero.mobile {
  display: none;
}

.gridmobile.is-intro {
  grid-column-gap: 2.375rem;
  grid-row-gap: 2.375rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  align-items: center;
}

.gridmobile.is-product, .gridmobile.is-wood {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: .4fr 1fr;
  place-items: start;
}

.gridmobile.is-awards {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.gridmobile.is-casestudy {
  grid-column-gap: 1.56rem;
  grid-row-gap: 1.56rem;
  grid-template-rows: auto;
  grid-template-columns: 1.2fr .85fr .85fr;
}

.gridmobile.is-social {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.gridmobile.is-credit {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr 1fr .25fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.gridmobile.is-footer {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.2fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.randomventures {
  width: 160px;
  height: auto;
}

.superteamgermany {
  width: 274px;
  height: 60%;
  margin-left: 0;
  padding-left: 0;
}

.superteamgermany._011111 {
  width: 90px;
  max-width: none;
  height: auto;
}

.superteamgermany._02222 {
  width: 100px;
  height: 70%;
}

.superteamgermany._077777 {
  width: 381px;
  height: 50%;
  padding-top: 8px;
}

.superteamgermany._0777777 {
  width: 100px;
  height: 60%;
}

.superteamgermany._98888 {
  width: 124px;
  height: 65%;
}

.superteamgermany._8777 {
  margin-left: 20px;
}

.m-cube {
  width: 300px;
  height: 60%;
  margin-left: 0;
  padding-left: 0;
}

.m-cube._011111 {
  width: 90px;
  max-width: none;
  height: auto;
}

.m-cube._02222 {
  width: 100px;
  height: 70%;
}

.m-cube._077777 {
  width: 381px;
  height: 50%;
  padding-top: 8px;
}

.m-cube._0777777 {
  width: 100px;
  height: 60%;
}

.m-cube._98888 {
  width: 124px;
  height: 65%;
}

.m-cube._8777 {
  margin-left: 20px;
}

.fraunhofer {
  width: 300px;
  height: 60%;
  margin-left: 0;
  padding-left: 0;
}

.fraunhofer._011111 {
  width: 90px;
  max-width: none;
  height: auto;
}

.fraunhofer._02222 {
  width: 100px;
  height: 70%;
}

.fraunhofer._077777 {
  width: 381px;
  height: 50%;
  padding-top: 8px;
}

.fraunhofer._0777777 {
  width: 100px;
  height: 60%;
}

.fraunhofer._98888 {
  width: 124px;
  height: 65%;
}

.fraunhofer._8777 {
  margin-left: 20px;
}

.musictech {
  width: 300px;
  height: 60%;
  margin-left: 0;
  padding-left: 0;
}

.musictech._011111 {
  width: 90px;
  max-width: none;
  height: auto;
}

.musictech._02222 {
  width: 90px;
  height: 70%;
}

.musictech._077777 {
  width: 381px;
  height: 50%;
  padding-top: 8px;
}

.musictech._0777777 {
  width: 100px;
  height: 60%;
}

.musictech._98888 {
  width: 124px;
  height: 65%;
}

.musictech._8777 {
  margin-left: 20px;
}

.intesasanpaolo {
  width: 300px;
  height: 60%;
  margin-left: 0;
  padding-left: 0;
}

.intesasanpaolo._011111 {
  width: 90px;
  max-width: none;
  height: auto;
}

.intesasanpaolo._02222 {
  width: 100px;
  height: 70%;
}

.intesasanpaolo._077777 {
  width: 240px;
  height: 50%;
  padding-top: 8px;
}

.intesasanpaolo._0777777 {
  width: 100px;
  height: 60%;
}

.intesasanpaolo._98888 {
  width: 124px;
  height: 65%;
}

.intesasanpaolo._8777 {
  margin-left: 20px;
}

.newnordicway {
  width: 300px;
  height: 60%;
  margin-left: 0;
  padding-left: 0;
}

.newnordicway._011111 {
  width: 90px;
  max-width: none;
  height: auto;
}

.newnordicway._02222 {
  width: 100px;
  height: 70%;
}

.newnordicway._077777 {
  width: 381px;
  height: 50%;
  padding-top: 8px;
}

.newnordicway._0777777 {
  width: 100px;
  height: 60%;
}

.newnordicway._98888 {
  width: 130px;
  height: auto;
}

.newnordicway._8777 {
  margin-left: 20px;
}

.sinus {
  flex: 0 auto;
  width: 220px;
  max-width: none;
  height: auto;
  overflow: clip;
}

.santanna {
  width: 200px;
  height: auto;
}

.uninicosia {
  width: 190px;
  height: auto;
}

.dga {
  width: 120px;
  height: auto;
}

.text-field-3 {
  background-color: var(--white);
  width: 100%;
  color: var(--black);
  text-transform: none;
  border: 0 solid #000;
  border-radius: 0;
  margin-bottom: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-left: 2rem;
  font-size: 16px;
  font-weight: 400;
}

.text-span-5 {
  font-size: 1.2rem;
  font-weight: 400;
  transform: rotate(0);
}

.text-span-5:hover {
  transform: rotate(90deg);
}

.text-block-9 {
  font-family: Inconsolata, monospace;
  font-size: 1rem;
}

.text-block-10, .text-block-11, .text-block-12, .text-block-13 {
  letter-spacing: normal;
  text-transform: uppercase;
  font-family: Inconsolata, monospace;
  font-size: 16px;
}

.text-span-6 {
  font-style: italic;
}

.text-span-7 {
  letter-spacing: 5px;
  font-style: italic;
}

.text-span-8 {
  font-style: italic;
}

.text-span-9 {
  letter-spacing: 4px;
  margin-left: -4px;
  padding-left: 0;
  font-style: italic;
}

.text-span-10 {
  letter-spacing: 5px;
  font-style: italic;
}

.text-block-14 {
  font-size: 1rem;
}

.text-span-11 {
  letter-spacing: 3px;
  font-style: italic;
}

.heading-15 {
  font-size: 7.8rem;
  font-weight: 300;
}

.text-span-12 {
  font-style: italic;
}

.image-12, .image-13 {
  display: none;
}

.button-copy {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #000;
  border-radius: 50rem;
  justify-content: flex-start;
  align-items: center;
  padding: 1.8em 3em;
  font-family: Inconsolata, monospace;
  font-size: .8rem;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-copy.is-text {
  color: #000;
  background-color: #0000;
  border: 2px solid #0000;
}

.button-copy.is-small {
  padding: .5rem 1.25rem;
}

.button-copy.is-large {
  padding: 1rem 2rem;
}

.button-copy.is-secondary {
  color: #000;
  background-color: #0000;
  border: 1px solid #000;
}

.button-copy.is-icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.icon-1x1-tiny-copy {
  z-index: 5;
  flex: none;
  width: .8rem;
  height: .8rem;
  position: relative;
  transform: rotate(45deg);
}

.icon-1x1-tiny-copy.right-copy.turboarrow {
  transform: rotate(-45deg);
}

.div-block-4 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  display: flex;
}

.image-16 {
  width: 300px;
  height: 100%;
}

.image-17 {
  align-self: auto;
  width: 100%;
  max-width: none;
  height: 100%;
  padding: 2rem;
}

.image-18 {
  display: none;
}

.scrollviewport {
  padding-top: 4rem;
}

.partner-grid {
  overflow: hidden;
}

.partner-grid.is-hero {
  padding-top: 22rem;
  padding-bottom: 7em;
}

.partner-grid.is-fullscreen {
  position: relative;
}

.partner-grid.background-color-grey {
  background-color: var(--light-grey);
}

.partner-grid.case-study {
  padding-top: 6rem;
  padding-bottom: 5.25rem;
}

.partner-grid.is-info {
  background-color: var(--black);
}

.grid-partner.is-hero {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .4fr .5fr .5fr;
  place-items: start;
}

.grid-partner.is-intro {
  grid-column-gap: 2.375rem;
  grid-row-gap: 2.375rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  align-items: center;
}

.grid-partner.is-product {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: .4fr 1fr;
  place-items: start;
}

.grid-partner.is-wood {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: .4fr 1fr;
  place-items: start;
}

.grid-partner.is-awards {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.grid-partner.is-casestudy {
  grid-column-gap: 1.56rem;
  grid-row-gap: 1.56rem;
  grid-template-rows: auto;
  grid-template-columns: .4fr .5fr .5fr;
  margin-bottom: 80px;
}

.grid-partner.is-social {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid-partner.is-credit {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr 1fr .25fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.grid-partner.is-footer {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.2fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-partner.is-partner {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto auto;
  grid-auto-flow: row;
  place-items: stretch stretch;
}

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

.partner-column.intro-left {
  grid-column-gap: 10vw;
  grid-row-gap: 10vw;
  height: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-right: 2rem;
  display: flex;
  position: relative;
}

.partner-column.intro-right {
  width: 100%;
  max-width: 38rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: block;
}

.partner-column.hero-middle {
  max-width: 38rem;
  display: block;
}

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

.partner-column.product-left {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  display: flex;
  position: relative;
}

.partner-column.product-right {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.partner-column.product-teaser-right {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  padding-left: 2.375rem;
  display: flex;
  position: relative;
}

.partner-column.wood-left {
  flex-direction: column;
  justify-content: space-between;
  width: auto;
  height: 100%;
  padding-top: 3.85rem;
  padding-bottom: 4.55rem;
  padding-right: 3.25rem;
  display: flex;
  position: relative;
}

.partner-column.wood-right {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 3.1rem 0 3.55rem 3rem;
  display: flex;
  position: relative;
}

.partner-column.wood-right.spezzzialll {
  padding-left: 0;
}

.partner-column.casestudy-intro {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: none;
  padding-bottom: 5.25rem;
  display: flex;
}

.partner-column.is-explore-info {
  background-color: var(--white-smoke);
  border-radius: .625rem;
  max-width: 25rem;
  height: auto;
  padding: .625rem;
  position: absolute;
  inset: auto auto 5rem 2.5rem;
}

.partner-column.explore-intro {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 37rem;
  height: auto;
  display: flex;
}

.partner-column.credit-left {
  display: flex;
}

.partner-column.footer-right {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: right;
  justify-content: space-between;
  display: flex;
}

.partner-column.footer-nav {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.partner-column.is-explore-info-right {
  background-color: var(--white-smoke);
  border-radius: .625rem;
  max-width: 25rem;
  height: auto;
  padding: .625rem;
  position: absolute;
  inset: auto 2.5rem 5rem auto;
}

.partner-column.partner-left {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18rem;
  height: 18rem;
  padding: 0;
  display: flex;
  position: relative;
}

.text-span-13 {
  font-weight: 700;
}

.footerisimo {
  overflow: hidden;
}

.footerisimo.is-hero {
  padding-top: 22rem;
  padding-bottom: 7em;
}

.footerisimo.is-fullscreen {
  position: relative;
}

.footerisimo.background-color-grey {
  background-color: var(--light-grey);
}

.footerisimo.case-study {
  padding-top: 6rem;
  padding-bottom: 5.25rem;
}

.footerisimo.is-info {
  background-color: var(--black);
}

.page-main-wrapper {
  flex-flow: column;
  justify-content: center;
  width: auto;
  display: flex;
}

.form-block-2 {
  width: auto;
  max-width: 612px;
}

.div-block-5 {
  justify-content: center;
  display: flex;
}

.padding {
  height: 12rem;
}

.logo-holder-box {
  border: 1px solid var(--dark-grey);
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  padding: 1rem;
  display: flex;
}

.superteam {
  flex: 0 auto;
  width: 220px;
  max-width: none;
  height: auto;
  overflow: clip;
}

.bvnk {
  width: 160px;
  height: auto;
}

.cern {
  width: 200px;
  height: auto;
}

.feature-modul-image {
  overflow: hidden;
}

.feature-modul-image.is-hero {
  padding-top: 22rem;
  padding-bottom: 7em;
}

.feature-modul-image.is-fullscreen {
  display: none;
  position: relative;
}

.feature-modul-image.background-color-grey {
  background-color: var(--light-grey);
}

.feature-modul-image.case-study {
  padding-top: 6rem;
  padding-bottom: 5.25rem;
}

.feature-modul-image.is-info {
  background-color: var(--black);
}

.feature-modul-copy {
  overflow: hidden;
}

.feature-modul-copy.is-hero {
  padding-top: 22rem;
  padding-bottom: 7em;
}

.feature-modul-copy.is-fullscreen {
  position: relative;
}

.feature-modul-copy.background-color-grey {
  background-color: var(--light-grey);
}

.feature-modul-copy.case-study {
  padding-top: 6rem;
  padding-bottom: 5.25rem;
  display: none;
}

.feature-modul-copy.is-info {
  background-color: var(--black);
}

@media screen and (min-width: 1440px) {
  .main-container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 1920px) {
  .copy-this-entire-section {
    margin-top: 0;
  }

  .headschmuck {
    font-size: 171%;
    line-height: 100%;
  }
}

@media screen and (max-width: 991px) {
  .padding-xlarge {
    padding: 3rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

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

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

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

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

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

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

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

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

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

  .hide-tablet {
    display: none;
  }

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

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .fs-styleguide_1-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 3rem;
  }

  .fs-styleguide_4-col {
    grid-template-columns: 1fr;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .fs-styleguide_3-col {
    grid-template-columns: 1fr;
  }

  .fs-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

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

  .signup.is-hero {
    padding-top: 16rem;
    padding-bottom: 6em;
  }

  .wrapper.is-wood-intro {
    padding-top: 14rem;
    padding-bottom: 4rem;
  }

  .wrapper.is-wood-image {
    min-height: 40vh;
  }

  .grid.is-hero {
    grid-template-columns: .55fr 1fr;
  }

  .grid.is-product {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1.8fr;
  }

  .grid.is-wood {
    grid-template-columns: 2.3fr;
  }

  .grid.is-awards {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
  }

  .grid.is-casestudy {
    grid-template-columns: 3.15fr;
  }

  .grid.is-credit {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-rows: 32px;
    grid-template-columns: 1.75fr;
    grid-auto-rows: 32px;
    padding-left: 24px;
  }

  .image-hero {
    object-fit: cover;
    width: 115%;
    height: 115%;
  }

  .column.product-teaser-right {
    padding-left: 2rem;
  }

  .column.wood-right {
    padding-left: 0;
  }

  .column.is-explore-info {
    max-width: 20rem;
    bottom: 2.5rem;
  }

  .column.footer-right {
    flex-direction: column;
  }

  .image-wood {
    max-width: 80vw;
  }

  .explore-info-text {
    min-height: 11rem;
  }

  .social-author {
    max-width: none;
  }

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

  .image-wrapper._002 {
    display: block;
  }

  .credit-component-image-wrapper, .image {
    display: none;
  }

  .image.trademark {
    display: block;
  }

  .copy-this-entire-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .main-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .item {
    width: 125px;
  }

  .gridmobile.is-hero {
    grid-template-columns: .55fr 1fr;
  }

  .gridmobile.is-product {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: .55fr 1fr;
  }

  .gridmobile.is-wood {
    grid-template-columns: .55fr 1fr;
  }

  .gridmobile.is-awards {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
  }

  .superteamgermany, .m-cube, .fraunhofer, .musictech, .intesasanpaolo, .newnordicway {
    width: 125px;
  }

  .text-block-9 {
    letter-spacing: -1px;
    font-family: Inter, sans-serif;
    font-weight: 400;
  }

  .image-18 {
    width: 50px;
    display: block;
  }

  .partner-grid.is-hero {
    padding-top: 12rem;
    padding-bottom: 6em;
  }

  .grid-partner.is-hero {
    grid-template-columns: .55fr 1fr;
  }

  .grid-partner.is-product {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1.8fr;
  }

  .grid-partner.is-wood {
    grid-template-columns: 2.3fr;
  }

  .grid-partner.is-awards {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
  }

  .grid-partner.is-casestudy {
    grid-template-columns: 3.15fr;
  }

  .grid-partner.is-credit {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-rows: 32px;
    grid-template-columns: 1.75fr;
    grid-auto-rows: 32px;
    padding-left: 24px;
  }

  .grid-partner.is-partner {
    grid-template-columns: 2.3fr;
  }

  .partner-column.product-teaser-right {
    padding-left: 2rem;
  }

  .partner-column.wood-right {
    padding-left: 0;
  }

  .partner-column.is-explore-info {
    max-width: 20rem;
    bottom: 2.5rem;
  }

  .partner-column.footer-right {
    flex-direction: column;
  }

  .footerisimo.is-hero {
    padding-top: 12rem;
    padding-bottom: 6em;
  }

  .form-block-2 {
    width: auto;
    max-width: 612px;
  }

  .div-block-5 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .code-embed {
    font-family: Inter, sans-serif;
    font-weight: 400;
  }

  .feature-modul-image.is-hero, .feature-modul-copy.is-hero {
    padding-top: 16rem;
    padding-bottom: 6em;
  }
}

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .875rem;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-medium {
    margin: 1.25rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

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

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

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

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

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

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

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

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

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

  .hide-mobile-landscape {
    display: none;
  }

  .fs-styleguide_heading-large {
    font-size: 3rem;
  }

  .heading-style-h3 {
    font-size: 1.5rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

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

  .padding-global.nospace-right {
    padding-right: 1rem;
  }

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

  .fs-styleguide_section-header {
    font-size: .875rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 2rem;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .heading-style-h4 {
    font-size: 1rem;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .heading-style-h6 {
    font-size: .75rem;
  }

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

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

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

  .fs-styleguide_version, .heading-style-h5 {
    font-size: .875rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .spacer-huge {
    padding-top: 4rem;
  }

  .signup.is-hero {
    padding-top: 8rem;
    padding-bottom: 4em;
  }

  .signup.case-study {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .wrapper.is-product-teaser {
    flex-direction: column;
  }

  .wrapper.is-wood-intro {
    padding-top: 8rem;
  }

  .wrapper.is-wood-image {
    min-height: 30vh;
  }

  .wrapper.is-awards {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .grid.is-hero {
    grid-template-columns: .55fr;
  }

  .grid.is-intro {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .grid.is-product, .grid.is-wood {
    grid-template-columns: 1fr;
  }

  .grid.is-awards {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
  }

  .grid.is-casestudy {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1.2fr;
  }

  .grid.is-credit {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-template-columns: 24px .25fr 1fr 24px;
  }

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

  .column.product-teaser-right {
    order: 1;
    width: 100%;
  }

  .column.wood-right {
    padding-left: 0;
  }

  .column.is-explore-info {
    left: 1rem;
  }

  .column.footer-right {
    flex-direction: column;
    justify-content: flex-start;
  }

  .link.is-product-teaser {
    width: 100%;
  }

  .wood-component-title {
    align-items: center;
    margin-bottom: .5rem;
  }

  .wood-component-item {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .social-wrapper {
    align-items: flex-start;
  }

  .social-wrapper.left-aligned {
    align-items: center;
  }

  .social-author {
    max-width: none;
  }

  .wrapper-info.bottom {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
    padding-top: 4rem;
    padding-bottom: 6rem;
  }

  .spacer-footer {
    padding-top: 8rem;
  }

  .image-wrapper.wood {
    max-width: 12rem;
  }

  .image {
    display: none;
  }

  .image.trademark {
    display: block;
  }

  .copy-this-entire-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .brand-logo-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .items {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .item {
    width: 100px;
  }

  .gridmobile.is-hero {
    grid-template-columns: .55fr;
  }

  .gridmobile.is-intro {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .gridmobile.is-product, .gridmobile.is-wood {
    grid-template-columns: 1fr;
  }

  .gridmobile.is-awards {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
  }

  .gridmobile.is-casestudy {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1.2fr;
  }

  .gridmobile.is-credit {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-template-columns: 24px .25fr 1fr 24px;
  }

  .superteamgermany, .m-cube, .fraunhofer, .musictech, .intesasanpaolo, .newnordicway {
    width: 100px;
  }

  .image-18 {
    width: 50px;
    display: block;
  }

  .partner-grid.is-hero {
    padding-top: 8rem;
    padding-bottom: 4em;
  }

  .partner-grid.case-study {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .grid-partner.is-hero {
    grid-template-columns: .55fr;
  }

  .grid-partner.is-intro {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .grid-partner.is-product, .grid-partner.is-wood {
    grid-template-columns: 1fr;
  }

  .grid-partner.is-awards {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
  }

  .grid-partner.is-casestudy {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1.2fr;
  }

  .grid-partner.is-credit {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-template-columns: 24px .25fr 1fr 24px;
  }

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

  .partner-column.product-teaser-right {
    order: 1;
    width: 100%;
  }

  .partner-column.wood-right {
    padding-left: 0;
  }

  .partner-column.is-explore-info {
    left: 1rem;
  }

  .partner-column.footer-right {
    flex-direction: column;
    justify-content: flex-start;
  }

  .footerisimo.is-hero {
    padding-top: 8rem;
    padding-bottom: 4em;
  }

  .footerisimo.case-study {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .div-block-5 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .feature-modul-image.is-hero {
    padding-top: 8rem;
    padding-bottom: 4em;
  }

  .feature-modul-image.case-study {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .feature-modul-copy.is-hero {
    padding-top: 8rem;
    padding-bottom: 4em;
  }

  .feature-modul-copy.case-study {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
}

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

  h3 {
    font-size: 1.35rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

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

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

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

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

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

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

  .margin-top.margin-small {
    margin: 8rem;
  }

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

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

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

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .text-size-medium {
    margin-bottom: 1rem;
  }

  .text-size-medium._01 {
    margin-bottom: 0;
  }

  .signup.is-hero {
    padding-top: 16rem;
    padding-bottom: 4em;
  }

  .signup.case-study {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .wrapper.is-hero-content {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .wrapper.is-hero-image {
    min-height: 12rem;
  }

  .wrapper.is-wood-intro {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .wrapper.is-wood-image {
    min-height: 18vh;
  }

  .grid.is-hero {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: none;
  }

  .grid.is-product, .grid.is-wood {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
  }

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

  .grid.is-casestudy {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .grid.is-credit {
    grid-column-gap: .7rem;
    grid-row-gap: .7rem;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
  }

  .grid.is-footer {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
  }

  .image-hero {
    width: 120%;
    height: 120%;
    inset: 0% 0% 0% auto;
  }

  .column.intro-right {
    padding-top: 0;
  }

  .column.product-teaser-right {
    padding-left: 0;
  }

  .column.wood-left {
    padding-bottom: 0;
    padding-right: 0;
  }

  .column.wood-right {
    padding-top: 0;
  }

  .column.casestudy-intro {
    padding-bottom: 0;
  }

  .column.is-explore-info {
    max-width: 17rem;
  }

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

  .divider-line.vertical {
    height: 100%;
    display: none;
  }

  .link.is-credit {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .wood-component-title {
    margin-top: 1rem;
  }

  .wood-component-item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    width: 100%;
  }

  .product-image.is-bed {
    display: none;
  }

  .image-wood {
    max-width: 90vw;
  }

  .image-award {
    max-height: 3rem;
  }

  .explore-info-item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .explore-info-text {
    min-height: 9rem;
  }

  .social-wrapper.left-aligned {
    align-items: flex-start;
  }

  .social-author {
    max-width: none;
  }

  .spacer-footer {
    padding-top: 6rem;
  }

  .image-wrapper {
    display: block;
  }

  .image-wrapper.wood {
    flex: 0 auto;
  }

  .image-wrapper._002 {
    display: block;
  }

  .image-fill {
    width: 100%;
    max-width: 100%;
  }

  .image {
    width: 124px;
    display: none;
    position: static;
  }

  .image.trademark {
    display: inline-block;
  }

  .usp-head {
    font-size: 18px;
    font-weight: 200;
  }

  .link-2 {
    align-self: auto;
  }

  .copy-this-entire-section {
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .items {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .item {
    width: 108px;
  }

  .heading-14 {
    margin-bottom: 1rem;
  }

  .text-field {
    width: auto;
  }

  .div-block {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .text-field-2, .div-block-2, .div-block-3, .field-label {
    width: auto;
  }

  .field-label-2 {
    text-transform: uppercase;
    width: 90%;
    font-size: 16px;
  }

  .form {
    width: auto;
  }

  .form-block {
    flex: 1;
  }

  .success-message {
    border: 1px solid var(--purple);
    background-color: var(--white-smoke);
  }

  .text-block-8 {
    color: var(--purple);
  }

  .image-8, .image-9, .image-10, .image-11 {
    display: block;
  }

  .gridmobile.is-hero {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .gridmobile.is-hero.mobile {
    grid-column-gap: 4em;
    grid-row-gap: 4em;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .gridmobile.is-product, .gridmobile.is-wood {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
  }

  .gridmobile.is-awards {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .gridmobile.is-credit {
    grid-column-gap: .7rem;
    grid-row-gap: .7rem;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
  }

  .gridmobile.is-footer {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
  }

  .superteamgermany {
    width: 250px;
    height: 60%;
  }

  .m-cube, .fraunhofer {
    width: 108px;
  }

  .fraunhofer._8777 {
    width: 270px;
  }

  .musictech, .intesasanpaolo, .newnordicway {
    width: 108px;
  }

  .headschmuck {
    letter-spacing: -4px;
    font-weight: 300;
  }

  .text-span-6 {
    letter-spacing: 0;
  }

  .text-span-7 {
    letter-spacing: 3px;
  }

  .text-span-9, .text-span-10, .text-span-11 {
    letter-spacing: 2px;
  }

  .image-12, .image-13 {
    display: inline-block;
  }

  .image-14, .image-15 {
    display: none;
  }

  .icon-1x1-tiny-copy.right-copy.turboarrow {
    transform: rotate(0);
  }

  .image-18 {
    width: 50px;
    height: auto;
    display: inline-block;
  }

  .partner-grid.is-hero {
    padding-top: 8rem;
    padding-bottom: 0;
  }

  .partner-grid.case-study {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .grid-partner.is-hero {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: none;
  }

  .grid-partner.is-product, .grid-partner.is-wood {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
  }

  .grid-partner.is-awards {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .grid-partner.is-casestudy {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .grid-partner.is-credit {
    grid-column-gap: .7rem;
    grid-row-gap: .7rem;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
  }

  .grid-partner.is-footer {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
  }

  .grid-partner.is-partner {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
  }

  .partner-column.product-teaser-right {
    padding-left: 0;
  }

  .partner-column.wood-left {
    padding-bottom: 0;
    padding-right: 0;
  }

  .partner-column.wood-right {
    padding-top: 0;
  }

  .partner-column.casestudy-intro {
    padding-bottom: 0;
  }

  .partner-column.is-explore-info {
    max-width: 17rem;
  }

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

  .partner-column.partner-left {
    padding-bottom: 0;
    padding-right: 0;
  }

  .footerisimo.is-hero {
    padding-top: 8rem;
    padding-bottom: 0;
  }

  .footerisimo.case-study {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .div-block-5 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .feature-modul-image.is-hero {
    padding-top: 16rem;
    padding-bottom: 4em;
  }

  .feature-modul-image.case-study {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .feature-modul-copy.is-hero {
    padding-top: 16rem;
    padding-bottom: 4em;
  }

  .feature-modul-copy.case-study {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }
}

#w-node-_2bed190c-7c7f-e4d0-db67-600957dbf8dc-40e1cb34 {
  justify-self: end;
}

#w-node-_8292dae6-5021-f25d-97a3-0a771a496c22-40e1cb34 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1f399962-1c65-d84c-5a3f-8e3fbe7d77fa-40e1cb34 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_62f289d9-1300-b674-3aec-37c2ea92ed41-40e1cb34 {
  justify-self: end;
}

#w-node-_62f289d9-1300-b674-3aec-37c2ea92ed48-40e1cb34 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_62f289d9-1300-b674-3aec-37c2ea92ed49-40e1cb34 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_84fe3906-dd2f-edfa-7223-5e848712c3b3-40e1cb34 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-bb8a6e2c-4b97-520f-66c5-393611ae1db7-40e1cb34, #w-node-_17502089-a26e-8b00-c23d-03081f42b3af-40e1cb34, #w-node-_97449641-c5ba-9793-ad4c-37e3d01856e2-40e1cb34, #w-node-f3fd1232-c0da-3ead-ca05-31f7f93f0059-40e1cb34, #w-node-bfdfcfa3-a944-d8fe-25a8-ac66d46d23f1-40e1cb34, #w-node-_367151bc-bc6d-3153-e0e8-f97a134663dd-40e1cb34, #w-node-_84c60382-c8e5-1138-969e-6aaf2f790c45-40e1cb34, #w-node-ae791a8a-f4e5-8b08-5791-84ae02d20abc-40e1cb34, #w-node-_49e3b3f8-a886-dce4-a006-7fe709b6864b-40e1cb34 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9cb07b43-fe60-4c8c-adc5-e0af9e2e5129-40e1cb34 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-_9cb07b43-fe60-4c8c-adc5-e0af9e2e512c-40e1cb34 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d50448da-ef12-8b5e-6399-0fdcdc85c32e-40e1cb34 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto;
}

#w-node-e43fd41c-30c0-6bfc-ef98-b1e659c07c74-40e1cb34, #w-node-_37824084-960f-857e-0bca-de47bc7a15de-40e1cb34, #w-node-_78bea705-4833-652c-9c8e-e27db1008ea5-40e1cb34 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-ffe593ff-e025-e1f4-71d5-818236f20429-40e1cb34 {
  align-self: center;
}

#w-node-_4faa1d6c-627f-dec7-2e13-414bc28444f7-40e1cb34, #w-node-ab4906f4-9b39-d0bd-cf9b-a6acf274e8b5-40e1cb34 {
  justify-self: end;
}

#w-node-aeb28892-0aea-9914-57f6-258fe8267868-40e1cb34 {
  align-self: center;
}

#w-node-aeb28892-0aea-9914-57f6-258fe826786a-40e1cb34 {
  justify-self: end;
}

#w-node-_468f2691-b356-d439-3f13-66925988ca4a-40e1cb34 {
  align-self: center;
}

#w-node-_468f2691-b356-d439-3f13-66925988ca4c-40e1cb34 {
  justify-self: end;
}

#w-node-ece0b389-2a8f-72e3-00d0-2c299fcb26bb-40e1cb34 {
  align-self: center;
}

#w-node-ece0b389-2a8f-72e3-00d0-2c299fcb26bd-40e1cb34 {
  justify-self: end;
}

#w-node-e7f4440d-01cb-2e51-2488-26c1ab283784-40e1cb34 {
  align-self: center;
}

#w-node-e7f4440d-01cb-2e51-2488-26c1ab283786-40e1cb34 {
  justify-self: end;
}

#w-node-e3054cf6-6090-2055-c938-86cf28a6c8e4-40e1cb34 {
  align-self: center;
}

#w-node-e3054cf6-6090-2055-c938-86cf28a6c8e6-40e1cb34 {
  justify-self: end;
}

#w-node-_574b08f3-8b2e-8cef-387a-356ad98095a7-40e1cb34 {
  align-self: center;
}

#w-node-_574b08f3-8b2e-8cef-387a-356ad98095a9-40e1cb34 {
  justify-self: end;
}

#w-node-dde939a1-2cfd-2b0e-7a58-32164561e53f-40e1cb34 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ed4255df-8343-d4eb-451f-996f763938d9-40e1cb34 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_76112cf5-a3fc-4226-c2c9-ba5dd3ed62ea-40e1cb34, #w-node-c7fe8e1d-c3ff-13b1-56f4-733cc0c687c9-40e1cb34 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_77422254-aa9f-865e-16e3-1bc067ae4656-40e1cb34 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_54830eb8-bef3-b3f7-783f-be595b9e64d5-5b9e64d5, #w-node-abc8575e-01d3-e712-5842-4b8bb37171a5-b37171a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627ca17-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca1c-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca21-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca26-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca2c-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca32-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca38-40e1cb37 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb45-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cb5e-40e1cb37 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb61-40e1cb37 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb63-40e1cb37 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb66-40e1cb37 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cbb8-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc2-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc3-40e1cb37 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc31-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc36-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc3b-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc40-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc45-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc4a-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc54-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc59-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc5e-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc63-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc68-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc6d-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc72-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc77-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc7c-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc81-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc86-40e1cb37 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8a-40e1cb37 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8b-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc90-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc95-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc9a-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccaf-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb4-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb9-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccbe-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc3-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc8-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd2-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd7-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccdc-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce1-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce6-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cceb-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf0-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf5-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccfa-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccff-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd04-40e1cb37 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd08-40e1cb37 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd09-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd0e-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd13-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd18-40e1cb37, #w-node-_30684373-af34-3818-02a4-e58b3ffef3e5-40e1cb37, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ea-40e1cb37, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ef-40e1cb37, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f4-40e1cb37, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f9-40e1cb37, #w-node-_30684373-af34-3818-02a4-e58b3ffef3fe-40e1cb37, #w-node-_30684373-af34-3818-02a4-e58b3ffef403-40e1cb37, #w-node-_30684373-af34-3818-02a4-e58b3ffef408-40e1cb37, #w-node-_30684373-af34-3818-02a4-e58b3ffef40d-40e1cb37, #w-node-_30684373-af34-3818-02a4-e58b3ffef412-40e1cb37 {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef416-40e1cb37 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef417-40e1cb37 {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef41a-40e1cb37, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd6b-40e1cb37 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cdc7-40e1cb37 {
  justify-self: start;
}

#w-node-dde939a1-2cfd-2b0e-7a58-32164561e53f-5ae8f126, #w-node-ed4255df-8343-d4eb-451f-996f763938d9-5ae8f126, #w-node-_76112cf5-a3fc-4226-c2c9-ba5dd3ed62ea-5ae8f126, #w-node-c7fe8e1d-c3ff-13b1-56f4-733cc0c687c9-5ae8f126, #w-node-_77422254-aa9f-865e-16e3-1bc067ae4656-5ae8f126 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c7fe8e1d-c3ff-13b1-56f4-733cc0c687cd-5ae8f126, #w-node-_1f399962-1c65-d84c-5a3f-8e3fbe7d77fa-f60020b5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_2bed190c-7c7f-e4d0-db67-600957dbf8dc-f60020b5 {
  justify-self: end;
}

#w-node-_8292dae6-5021-f25d-97a3-0a771a496c22-f60020b5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_62f289d9-1300-b674-3aec-37c2ea92ed41-f60020b5 {
  justify-self: end;
}

#w-node-_62f289d9-1300-b674-3aec-37c2ea92ed48-f60020b5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_62f289d9-1300-b674-3aec-37c2ea92ed49-f60020b5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_17502089-a26e-8b00-c23d-03081f42b3af-f60020b5, #w-node-_97449641-c5ba-9793-ad4c-37e3d01856e2-f60020b5, #w-node-f3fd1232-c0da-3ead-ca05-31f7f93f0059-f60020b5, #w-node-bfdfcfa3-a944-d8fe-25a8-ac66d46d23f1-f60020b5, #w-node-_367151bc-bc6d-3153-e0e8-f97a134663dd-f60020b5, #w-node-_84c60382-c8e5-1138-969e-6aaf2f790c45-f60020b5, #w-node-dde939a1-2cfd-2b0e-7a58-32164561e53f-f60020b5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ed4255df-8343-d4eb-451f-996f763938d9-f60020b5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_76112cf5-a3fc-4226-c2c9-ba5dd3ed62ea-f60020b5, #w-node-c7fe8e1d-c3ff-13b1-56f4-733cc0c687c9-f60020b5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_77422254-aa9f-865e-16e3-1bc067ae4656-f60020b5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-_1f399962-1c65-d84c-5a3f-8e3fbe7d77fa-40e1cb34, #w-node-_62f289d9-1300-b674-3aec-37c2ea92ed49-40e1cb34 {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: end;
  }

  #w-node-_84fe3906-dd2f-edfa-7223-5e848712c3b3-40e1cb34, #w-node-_9cb07b43-fe60-4c8c-adc5-e0af9e2e5129-40e1cb34, #w-node-d50448da-ef12-8b5e-6399-0fdcdc85c32e-40e1cb34, #w-node-e43fd41c-30c0-6bfc-ef98-b1e659c07c74-40e1cb34, #w-node-_37824084-960f-857e-0bca-de47bc7a15de-40e1cb34, #w-node-_78bea705-4833-652c-9c8e-e27db1008ea5-40e1cb34 {
    justify-self: auto;
  }

  #w-node-_4faa1d6c-627f-dec7-2e13-414bc28444f7-40e1cb34 {
    align-self: end;
  }

  #w-node-_1f399962-1c65-d84c-5a3f-8e3fbe7d77fa-f60020b5, #w-node-_62f289d9-1300-b674-3aec-37c2ea92ed49-f60020b5 {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: end;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_2bed190c-7c7f-e4d0-db67-600957dbf8dc-40e1cb34 {
    justify-self: end;
  }

  #w-node-_1f399962-1c65-d84c-5a3f-8e3fbe7d77fa-40e1cb34 {
    justify-self: auto;
  }

  #w-node-_62f289d9-1300-b674-3aec-37c2ea92ed41-40e1cb34 {
    justify-self: end;
  }

  #w-node-_62f289d9-1300-b674-3aec-37c2ea92ed49-40e1cb34, #w-node-_1f399962-1c65-d84c-5a3f-8e3fbe7d77fa-f60020b5 {
    justify-self: auto;
  }

  #w-node-_2bed190c-7c7f-e4d0-db67-600957dbf8dc-f60020b5, #w-node-_62f289d9-1300-b674-3aec-37c2ea92ed41-f60020b5 {
    justify-self: end;
  }

  #w-node-_62f289d9-1300-b674-3aec-37c2ea92ed49-f60020b5 {
    justify-self: auto;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_2bed190c-7c7f-e4d0-db67-600957dbf8dc-40e1cb34 {
    justify-self: start;
  }

  #w-node-_1f399962-1c65-d84c-5a3f-8e3fbe7d77fa-40e1cb34 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: auto;
  }

  #w-node-_62f289d9-1300-b674-3aec-37c2ea92ed41-40e1cb34 {
    justify-self: start;
  }

  #w-node-_62f289d9-1300-b674-3aec-37c2ea92ed49-40e1cb34 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: auto;
  }

  #w-node-_113257a4-596f-460b-99fa-0a1f741a4325-40e1cb34 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-ffe593ff-e025-e1f4-71d5-818236f20429-40e1cb34 {
    grid-area: span 1 / span 7 / span 1 / span 7;
  }

  #w-node-b3e6895e-539b-ff3a-2bc2-8e00234f6da3-40e1cb34 {
    grid-area: span 1 / span 5 / span 1 / span 5;
  }

  #w-node-aeb28892-0aea-9914-57f6-258fe8267868-40e1cb34 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-aeb28892-0aea-9914-57f6-258fe826786a-40e1cb34 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-_971b9c79-5671-c45b-32aa-0015d6e2fb26-40e1cb34 {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-_468f2691-b356-d439-3f13-66925988ca4a-40e1cb34 {
    grid-area: span 1 / span 5 / span 1 / span 5;
  }

  #w-node-_468f2691-b356-d439-3f13-66925988ca4c-40e1cb34 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-ece0b389-2a8f-72e3-00d0-2c299fcb26b9-40e1cb34 {
    grid-area: span 1 / span 7 / span 1 / span 7;
  }

  #w-node-ece0b389-2a8f-72e3-00d0-2c299fcb26bb-40e1cb34 {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-ece0b389-2a8f-72e3-00d0-2c299fcb26bd-40e1cb34 {
    grid-area: span 2 / span 2 / span 2 / span 2;
    justify-self: end;
  }

  #w-node-fd8b43c7-1d7d-05f4-4ef5-dd861db651ff-40e1cb34 {
    grid-area: span 1 / span 7 / span 1 / span 7;
  }

  #w-node-e7f4440d-01cb-2e51-2488-26c1ab283784-40e1cb34 {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-e7f4440d-01cb-2e51-2488-26c1ab283786-40e1cb34 {
    grid-area: span 2 / span 2 / span 2 / span 2;
    justify-self: end;
  }

  #w-node-e3054cf6-6090-2055-c938-86cf28a6c8e2-40e1cb34 {
    grid-area: span 1 / span 7 / span 1 / span 7;
  }

  #w-node-e3054cf6-6090-2055-c938-86cf28a6c8e4-40e1cb34 {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-e3054cf6-6090-2055-c938-86cf28a6c8e6-40e1cb34 {
    grid-area: span 2 / span 2 / span 2 / span 2;
    justify-self: end;
  }

  #w-node-_574b08f3-8b2e-8cef-387a-356ad98095a5-40e1cb34 {
    grid-area: span 1 / span 7 / span 1 / span 7;
  }

  #w-node-_574b08f3-8b2e-8cef-387a-356ad98095a7-40e1cb34 {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-_574b08f3-8b2e-8cef-387a-356ad98095a9-40e1cb34 {
    grid-area: span 2 / span 2 / span 2 / span 2;
    justify-self: end;
  }

  #w-node-_1f399962-1c65-d84c-5a3f-8e3fbe7d77fa-f60020b5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: auto;
  }

  #w-node-_2bed190c-7c7f-e4d0-db67-600957dbf8dc-f60020b5, #w-node-_62f289d9-1300-b674-3aec-37c2ea92ed41-f60020b5 {
    justify-self: start;
  }

  #w-node-_62f289d9-1300-b674-3aec-37c2ea92ed49-f60020b5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: auto;
  }
}


@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter.var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}