@font-face {
  font-family: PP Neue Montreal;
  src: url("/assets/fonts/ppneuemontreal-medium.woff2") format("woff2"), url("/assets/fonts/ppneuemontreal-medium.woff") format("woff"), url("/assets/fonts/ppneuemontreal-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: PP Neue Montreal;
  src: url("/assets/fonts/ppneuemontreal-semibold.woff2") format("woff2"), url("/assets/fonts/ppneuemontreal-semibold.woff") format("woff"), url("/assets/fonts/ppneuemontreal-semibold.ttf") format("truetype"), url("/assets/fonts/ppneuemontreal-semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: PP Neue Montreal ;
  src: url("/assets/fonts/ppneuemontreal-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: black;
  --white: white;
  --gray100: #d3d5de;
  --gray300: #6e727d;
  --brand-300: #7b8bef;
  --bg-dark: #0f1825;
  --gray-50: #f2f2f3;
  --brand500: #455ce9;
  --gray400: #33353b;
  --grey500: #1c1d20;
  --blue50: #dfe3fd;
  --brand-400: #5c6fec;
  --gray200: #afb1b9;
  --error: #db5461;
  --green: #46b26c;
  --bg-menu-hover: #f7f8ff;
  --brand100: #eff1fd;
  --bg-dark-hell: #1c2531;
  --deactivated: #8a8e99;
}

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

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

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

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

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

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

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: var(--image-i5cec3e91);
  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;
}

body {
  color: var(--black);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: PP Neue Montreal, sans-serif;
  font-size: 3.5em;
  font-weight: 600;
  line-height: 1.15;
}

h2 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: PP Neue Montreal, sans-serif;
  font-size: 3em;
  font-weight: 600;
  line-height: 1.15;
}

h3 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: PP Neue Montreal, sans-serif;
  font-size: 2.5em;
  font-weight: 600;
  line-height: 1.2;
}

h4 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: PP Neue Montreal, sans-serif;
  font-size: 2em;
  font-weight: 600;
  line-height: 1.2;
}

h5 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: PP Neue Montreal, sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.4;
}

h6 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: PP Neue Montreal, sans-serif;
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.4;
}

p {
  margin-bottom: 0;
  font-weight: 500;
}

a {
  border-color: var(--black);
  color: var(--black);
  text-decoration: none;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

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

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

blockquote {
  border-left: .1875rem solid var(--black);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

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

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

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

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

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

.overflow-hidden {
  overflow: hidden;
}

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

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

.hide {
  display: none;
}

.text-style-link {
  text-decoration: underline;
}

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

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

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

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

.page-wrapper {
  flex-direction: column;
  align-items: center;
  display: block;
}

.container-large {
  width: 100%;
  max-width: 80em;
  margin-left: auto;
  margin-right: auto;
}

.container-large.padding-top {
  padding-top: 0;
}

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

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

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

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

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

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

.utility_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_form-block {
  grid-row-gap: .5em;
  text-align: center;
  flex-direction: column;
  max-width: 17em;
  display: flex;
}

.utility_form-block.lottie {
  max-width: 12em;
  margin-left: auto;
  margin-right: auto;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.main-wrapper {
  z-index: 3;
  position: relative;
}

.main-wrapper.is-hidden {
  margin-top: -5.33333em;
  overflow: hidden;
}

.main-wrapper.is--contact {
  margin-top: -5.33333em;
}

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

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

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

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

.margin-xsmall {
  margin: 1rem;
}

.margin-small {
  margin: 1.5rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 7rem;
}

.margin-xxhuge {
  margin: 10rem;
}

.margin-custom1 {
  padding-top: 2em;
  padding-bottom: 3em;
}

.margin-0 {
  margin: 0;
}

.padding-0 {
  padding: 0;
}

.padding-tiny {
  padding: .25em;
}

.padding-xxsmall {
  padding: .5em;
}

.padding-xsmall {
  padding: 1em;
}

.padding-small {
  padding: 1.5em;
}

.padding-medium {
  padding: 2em;
}

.padding-large {
  padding: 3em;
}

.padding-xlarge {
  padding: 4em;
}

.padding-xxlarge {
  padding: 5em;
}

.padding-huge {
  padding: 6em;
}

.padding-xhuge {
  padding: 7em;
}

.padding-xxhuge {
  padding: 10em;
}

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

.margin-top.margin-small {
  color: var(--white);
  margin: 1.5em 0 0;
}

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

.margin-top.margin-custom3 {
  margin: 1em 0 0;
}

.margin-top.margin-medium, .margin-top.margin-xxsmall, .margin-top.margin-xxhuge, .margin-top.margin-custom2, .margin-top.margin-xsmall, .margin-top.margin-large, .margin-top.margin-xxlarge, .margin-top.margin-xlarge, .margin-top.margin-0, .margin-top.margin-xhuge {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-top.margin-medium {
  margin: 2em 0 0;
}

.margin-bottom, .margin-bottom.margin-xxlarge, .margin-bottom.margin-medium, .margin-bottom.margin-custom3 {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-custom1 {
  margin: 0 0 3em;
}

.margin-bottom.margin-tiny, .margin-bottom.margin-small, .margin-bottom.margin-large, .margin-bottom.margin-0, .margin-bottom.margin-xlarge, .margin-bottom.margin-xhuge, .margin-bottom.margin-xxhuge, .margin-bottom.margin-huge, .margin-bottom.margin-xxsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-custom2, .margin-bottom.margin-xsmall {
  margin: 0 0 1em;
}

.margin-bottom.margin-small {
  margin-bottom: 1.5em;
}

.margin-bottom.margin-xxlarge {
  margin-bottom: 5em;
}

.margin-bottom.margin-xxlarge {
  justify-content: center;
  display: flex;
}

.margin-bottom.margin-xsmall {
  padding-top: 1em;
}

.margin-bottom.margin-xxlarge {
  justify-content: flex-start;
}

.margin-bottom.margin-custom2 {
  margin: 0 0 2em;
}

.margin-bottom.margin-large, .margin-bottom.margin-small, .margin-bottom.margin-xxlarge, .margin-bottom.margin-small {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-xsmall {
  margin: 0 0 1em;
}

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

.margin-left, .margin-left.margin-tiny, .margin-left.margin-xxlarge, .margin-left.margin-0, .margin-left.margin-small, .margin-left.margin-xsmall, .margin-left.margin-large, .margin-left.margin-huge, .margin-left.margin-xlarge, .margin-left.margin-custom3, .margin-left.margin-xxsmall, .margin-left.margin-custom1, .margin-left.margin-custom2, .margin-left.margin-xhuge, .margin-left.margin-xxhuge, .margin-left.margin-medium {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-right, .margin-right.margin-huge, .margin-right.margin-xsmall, .margin-right.margin-xxhuge, .margin-right.margin-small, .margin-right.margin-medium, .margin-right.margin-xlarge, .margin-right.margin-custom3, .margin-right.margin-custom2, .margin-right.margin-xxsmall, .margin-right.margin-xhuge, .margin-right.margin-custom1, .margin-right.margin-large, .margin-right.margin-0, .margin-right.margin-xxlarge, .margin-right.margin-tiny {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-vertical, .margin-vertical.margin-medium, .margin-vertical.margin-xlarge, .margin-vertical.margin-xxsmall, .margin-vertical.margin-xxlarge, .margin-vertical.margin-huge, .margin-vertical.margin-0, .margin-vertical.margin-xxhuge, .margin-vertical.margin-tiny, .margin-vertical.margin-xsmall, .margin-vertical.margin-custom1, .margin-vertical.margin-small, .margin-vertical.margin-large, .margin-vertical.margin-xhuge, .margin-vertical.margin-custom2, .margin-vertical.margin-custom3 {
  margin-left: 0;
  margin-right: 0;
}

.margin-horizontal, .margin-horizontal.margin-medium, .margin-horizontal.margin-tiny, .margin-horizontal.margin-custom3, .margin-horizontal.margin-0, .margin-horizontal.margin-xxlarge, .margin-horizontal.margin-xhuge, .margin-horizontal.margin-huge, .margin-horizontal.margin-xlarge, .margin-horizontal.margin-custom1, .margin-horizontal.margin-xxsmall, .margin-horizontal.margin-xsmall, .margin-horizontal.margin-large, .margin-horizontal.margin-custom2, .margin-horizontal.margin-small, .margin-horizontal.margin-xxhuge {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-top, .padding-top.padding-xhuge, .padding-top.padding-xxhuge, .padding-top.padding-0, .padding-top.padding-large, .padding-top.padding-custom2, .padding-top.padding-xlarge, .padding-top.padding-huge, .padding-top.padding-xxsmall, .padding-top.padding-custom3, .padding-top.padding-tiny, .padding-top.padding-medium, .padding-top.padding-xxlarge, .padding-top.padding-small, .padding-top.padding-xsmall, .padding-top.padding-custom1 {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-top.text-align-left {
  display: flex;
}

.padding-bottom, .padding-bottom.padding-xlarge, .padding-bottom.padding-small, .padding-bottom.padding-xxhuge, .padding-bottom.padding-large, .padding-bottom.padding-xhuge {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom.padding-custom2 {
  margin-bottom: 1.625em;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom.padding-xxsmall, .padding-bottom.padding-xxlarge, .padding-bottom.padding-custom3, .padding-bottom.padding-custom1, .padding-bottom.padding-xsmall, .padding-bottom.padding-huge, .padding-bottom.padding-tiny, .padding-bottom.padding-medium, .padding-bottom.padding-0 {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom.padding-xxlarge {
  padding-bottom: 2em;
}

.padding-left, .padding-left.padding-xhuge, .padding-left.padding-xlarge, .padding-left.padding-0, .padding-left.padding-small, .padding-left.padding-xsmall, .padding-left.padding-medium, .padding-left.padding-xxhuge, .padding-left.padding-huge, .padding-left.padding-custom1, .padding-left.padding-tiny, .padding-left.padding-xxsmall, .padding-left.padding-custom3, .padding-left.padding-custom2, .padding-left.padding-xxlarge, .padding-left.padding-large {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-right, .padding-right.padding-xxhuge, .padding-right.padding-custom2, .padding-right.padding-large, .padding-right.padding-xlarge, .padding-right.padding-tiny, .padding-right.padding-custom3, .padding-right.padding-custom1, .padding-right.padding-xsmall, .padding-right.padding-xxlarge, .padding-right.padding-xxsmall, .padding-right.padding-medium, .padding-right.padding-xhuge, .padding-right.padding-huge, .padding-right.padding-0, .padding-right.padding-small {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.padding-vertical, .padding-vertical.padding-0, .padding-vertical.padding-xxhuge, .padding-vertical.padding-large, .padding-vertical.padding-custom3 {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-medium {
  padding: 4em 0;
}

.padding-vertical.padding-tiny, .padding-vertical.padding-xxlarge, .padding-vertical.padding-custom1, .padding-vertical.padding-xsmall, .padding-vertical.padding-xhuge, .padding-vertical.padding-xlarge, .padding-vertical.padding-custom2, .padding-vertical.padding-xxsmall, .padding-vertical.padding-huge, .padding-vertical.padding-small {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-xxlarge {
  padding-top: 7em;
}

.padding-horizontal, .padding-horizontal.padding-xxsmall, .padding-horizontal.padding-0, .padding-horizontal.padding-custom3, .padding-horizontal.padding-huge, .padding-horizontal.padding-xsmall, .padding-horizontal.padding-medium, .padding-horizontal.padding-xxlarge, .padding-horizontal.padding-large, .padding-horizontal.padding-xhuge {
  padding-top: 0;
  padding-bottom: 0;
}

.padding-horizontal.padding-custom1 {
  padding-top: 11.1rem;
  padding-bottom: 7em;
}

.padding-horizontal.padding-tiny, .padding-horizontal.padding-custom2, .padding-horizontal.padding-xxhuge, .padding-horizontal.padding-small, .padding-horizontal.padding-xlarge {
  padding-top: 0;
  padding-bottom: 0;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

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

.text-size-medium {
  font-family: PP Neue Montreal, sans-serif;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.55;
}

.text-size-medium.darkmode {
  color: var(--gray100);
  font-size: 1.125em;
}

.text-size-medium.text-color-white.is-small {
  padding-left: 7.5em;
  padding-right: 7.5em;
}

.text-size-medium.text-color-grey300 {
  color: var(--gray300);
  font-size: 1.125em;
}

.text-size-medium.text-color-gray100 {
  color: var(--gray100);
}

.text-size-medium.text-color-brand300 {
  color: var(--brand-300);
}

.margin-top-auto {
  margin-top: auto;
}

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

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.heading-style-h2 {
  letter-spacing: -.02em;
  font-size: 3em;
  font-weight: 600;
  line-height: 1.15;
}

.heading-style-h2.text-color-white {
  margin-bottom: 1.7rem;
}

.rl-styleguide_tutorial-callout {
  grid-column-gap: 2rem;
  background-color: #fff;
  border: 1px solid #000;
  justify-content: space-between;
  align-items: center;
  padding: .75rem .75rem .75rem 1rem;
  display: flex;
}

.rl-styleguide_callout-link-wrapper {
  background-image: linear-gradient(135deg, #ff744826, #ff484826 50%, #6248ff26), linear-gradient(#fff, #fff);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: .75rem 1rem;
  display: flex;
}

.rl-styleguide_heading {
  z-index: 4;
  color: #fff;
  background-color: #000;
  padding: .25rem .5rem;
  position: sticky;
  top: 0;
}

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

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

.heading-style-h6 {
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.4;
}

.rl-styleguide_item-row {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 15rem 1fr;
  align-items: center;
}

.icon-1x1-xsmall {
  width: 1.4em;
  height: 1.4em;
}

.rl-styleguide_empty-space {
  z-index: -1;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
  position: relative;
}

.shadow-xxlarge {
  box-shadow: 0 32px 64px -12px #0b165a24;
}

.rl-styleguide_icons-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.icon-embed-medium {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.form-radio {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.125rem;
  display: flex;
}

.heading-style-h5 {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.4;
}

.heading-style-h5.text-color-grey50 {
  color: #f2f2f3;
}

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

.heading-style-h1 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 3.5em;
  font-weight: 600;
  line-height: 1.15;
}

.heading-style-h1.text-align-left {
  padding-left: 0;
  padding-right: 0;
}

.form-checkbox-icon {
  border: .0625em solid var(--black);
  cursor: pointer;
  border-radius: 4px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

.form-checkbox-icon.w--redirected-checked {
  background-color: var(--brand500);
  box-shadow: none;
  background-size: 16px 16px;
  border: 1px #000;
}

.form-checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.form-checkbox-label {
  margin-bottom: 0;
}

.form-checkbox-label.text-size-small {
  letter-spacing: .1px;
  font-size: 16px;
}

.text-size-tiny {
  white-space: nowrap;
  font-family: PP Neue Montreal, sans-serif;
  font-size: .75em;
  font-weight: 500;
}

.field-label {
  color: var(--gray400);
  margin-bottom: .5rem;
  font-weight: 500;
}

.button {
  background-color: var(--grey500);
  color: var(--white);
  text-align: center;
  border-radius: .5em;
  padding: .85em 1.3em .75em;
  transition: box-shadow .25s ease-out, transform .25s;
}

.button:hover {
  transform: translate(0, -.2em);
  box-shadow: 0 4px 20px #00000042;
}

.button:active {
  background-color: #000;
}

.button:focus {
  outline-color: var(--gray400);
  outline-offset: 0px;
  outline-width: .15em;
  outline-style: solid;
}

.button.is-link {
  color: var(--black);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button.is-link.is-alternate {
  color: var(--white);
  background-color: #0000;
}

.button.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

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

.button.is-secondary {
  border: .17em solid var(--gray400);
  color: var(--grey500);
  background-color: #0000;
  margin-right: 1em;
  padding-top: .72em;
  padding-bottom: .62em;
  transition: background-color .25s cubic-bezier(.25, .46, .45, .94), box-shadow .25s ease-out, transform .25s;
}

.button.is-secondary:hover {
  box-shadow: 0 4px 24px #0a0e2736;
}

.button.is-secondary.is-alternate {
  border-color: var(--white);
  color: var(--white);
  background-color: #0000;
}

.button.is-secondary.is-small {
  border-color: var(--gray400);
}

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

.button.is-small.is-icon-only {
  padding-left: .5rem;
  padding-right: .5rem;
}

.button.is-small.copy-button.tooltip {
  background-color: var(--grey500);
}

.button.is-alternate {
  background-color: var(--white);
  color: #000;
}

.button.is-alternate:hover {
  box-shadow: 0 4px 24px #ffffff26;
}

.button.is-tertiary {
  color: #000;
  background-color: #0000;
  border-color: #0000;
}

.button.is-icon-only {
  padding-left: .75rem;
  padding-right: .75rem;
}

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

.heading-style-h4 {
  text-align: left;
  letter-spacing: -.02em;
  font-size: 2em;
  font-weight: 600;
  line-height: 1.2;
}

.heading-style-h4.text-align-left {
  margin-top: -.8em;
}

.heading-style-h4.text-align-left.is--1em {
  margin-top: 0;
}

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

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

.form-radio-label {
  margin-bottom: 0;
}

.rl-styleguide_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 1rem;
  display: grid;
}

.rl-styleguide_item.is-stretch {
  grid-row-gap: 1rem;
  justify-items: stretch;
}

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

.shadow-xlarge {
  box-shadow: 0 24px 48px -12px #0b165a2e;
}

.rl-styleguide_label {
  color: var(--white);
  white-space: nowrap;
  cursor: context-menu;
  background-color: #0073e6;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

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

.text-size-regular {
  font-family: PP Neue Montreal, sans-serif;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.55;
  text-decoration: none;
}

.text-size-regular.darkmode.cta {
  color: var(--white);
}

.text-size-regular.darkmode {
  color: #d3d5de;
}

.text-size-regular.text-color-blue300 {
  color: var(--brand-300);
}

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

.icon-height-xlarge {
  height: 6.5rem;
}

.heading-style-h3 {
  letter-spacing: -.02em;
  font-size: 2.5em;
  font-weight: 600;
  line-height: 1.2;
}

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

.form-input {
  border: .0625em solid var(--gray100);
  background-color: var(--white);
  height: auto;
  min-height: 2.75rem;
  color: var(--black);
  border-radius: 8px;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input:focus {
  border-color: var(--brand-300);
}

.form-input::placeholder {
  color: #0000008a;
}

.form-input.is-text-area {
  height: auto;
  min-height: 7rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: 1em;
  overflow: auto;
}

.form-input.is-select-input {
  background-image: none;
}

.rl-styleguide_paste-text {
  color: #00000080;
  text-align: center;
  border: 1px dashed #00000026;
  padding: 1rem;
}

.rl-styleguide_button-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: max-content;
  grid-auto-flow: row;
  place-items: center start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: grid;
}

.rl-styleguide_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
}

.icon-embed-custom1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

.rl-styleguide_color {
  padding-bottom: 8rem;
}

.rl-styleguide_color.is-black {
  background-color: var(--black);
}

.rl-styleguide_color.is-white {
  background-color: var(--white);
}

.rl-styleguide_color.is-blue50 {
  background-color: var(--blue50);
}

.rl-styleguide_color.is-brand100 {
  background-color: #eff1fd;
}

.rl-styleguide_color.is-brand200 {
  background-color: #b9c1f7;
}

.rl-styleguide_color.is-brand300 {
  background-color: var(--brand-300);
}

.rl-styleguide_color.is-brand400 {
  background-color: var(--brand-400);
}

.rl-styleguide_color.is-brand500 {
  background-color: var(--brand500);
}

.rl-styleguide_color.is-gray50 {
  background-color: var(--gray-50);
}

.rl-styleguide_color.is-gray100 {
  background-color: var(--gray100);
}

.rl-styleguide_color.is-gray200 {
  background-color: var(--gray200);
}

.rl-styleguide_color.is-gray300 {
  background-color: var(--gray300);
}

.rl-styleguide_color.is-gray400 {
  background-color: var(--gray400);
}

.rl-styleguide_color.is-error {
  background-color: var(--error);
}

.rl-styleguide_color.is-success {
  background-color: var(--green);
}

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

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

.text-color-white.is--cta {
  font-size: 4em;
}

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

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

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

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

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

.icon-embed-large {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  display: flex;
}

.shadow-xxsmall {
  box-shadow: 0 1px 2px #0b165a0d;
}

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

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

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  display: flex;
}

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

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

.shadow-xsmall {
  box-shadow: 0 1px 3px #0b165a1a, 0 1px 2px #0b165a0f;
}

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

.rl-styleguide_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.rl-styleguide_subheading {
  z-index: 3;
  color: #000;
  background-color: #d3d3d3;
  padding: .25rem .5rem;
  position: sticky;
  top: 2rem;
}

.form-radio-icon {
  border: .0625em solid var(--black);
  cursor: pointer;
  border-radius: 100px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
  margin-right: .5rem;
}

.form-radio-icon.w--redirected-checked {
  background-color: #fff;
  background-image: none;
  border-width: 6px;
  border-color: #000;
}

.form-radio-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
  margin-top: 0;
}

.rl-styleguide_shadows-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: start;
}

.form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.rl-styleguide_callout-link {
  background-color: #fff;
  background-image: linear-gradient(135deg, #ff7448, #ff4848 50%, #6248ff);
  justify-content: space-between;
  align-items: center;
  padding: 1px;
  text-decoration: none;
  display: flex;
}

.icon-height-custom1 {
  height: 1.25rem;
}

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

.text-size-small {
  font-family: PP Neue Montreal, sans-serif;
  font-size: .875em;
  font-weight: 500;
}

.text-size-small.text-color-gray100 {
  color: var(--gray100);
}

.text-size-small.text-color-gray200 {
  color: var(--gray200);
}

.class-label-column {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-field-wrapper {
  position: relative;
}

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

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

.shadow-large {
  box-shadow: 0 20px 24px -4px #0b165a14, 0 8px 8px -4px #0b165a08;
}

.icon-embed-xlarge {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 6.5rem;
  height: 6.5rem;
  display: flex;
}

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

.class-label-row {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

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

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

.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 a {
  text-decoration: underline;
}

.text-rich-text figcaption {
  border-left: 2px solid var(--black);
  text-align: left;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

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

.form-checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.25rem;
  display: flex;
}

.shadow-small {
  box-shadow: 0 4px 8px -2px #0b165a1a, 0 2px 4px -2px #0b165a0f;
}

.icon-1x1-medium {
  flex-direction: column;
  width: 3em;
  height: 3em;
  display: block;
}

.rl-styleguide_button-row {
  grid-column-gap: 1rem;
  display: flex;
}

.shadow-medium {
  box-shadow: 0 12px 16px -4px #0b165a14, 0 4px 6px -2px #0b165a08;
}

.text-size-large {
  -webkit-text-stroke-color: var(--black);
  font-family: PP Neue Montreal, sans-serif;
  font-size: 1.24em;
  font-weight: 500;
}

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

.text-size-large.text-align-left.text-color-grey400 {
  color: var(--gray400);
}

.text-size-large.text-align-left.is-mobile.text-color-white {
  color: var(--gray-50);
}

.text-size-large.text-color-gray400.is-small {
  padding-left: 157px;
  padding-right: 157px;
}

.text-size-large.text-color-brand300 {
  color: var(--brand-400);
}

.icon-height-xsmall {
  height: 1.5rem;
}

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

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

.rl-styleguide_empty-box {
  z-index: -1;
  background-color: #eee;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.rl-styleguide_spacing {
  border: 1px dashed #d3d3d3;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

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

.padding-section-large {
  padding-top: 7em;
  padding-bottom: 7em;
}

.padding-section-large.is--bigger-bottom {
  padding-top: 7em;
  padding-bottom: 12em;
}

.padding-section-large.is-bigger-top {
  padding-top: 11em;
  padding-bottom: 7em;
}

.padding-section-large.is--smaler-bottom {
  padding-bottom: 2em;
}

.padding-section-large.is--smaler-bottom.is--special {
  padding-top: 10em;
  padding-bottom: 0;
}

.padding-section-large.is-smaller {
  padding-bottom: 7em;
}

.padding-section-large.is-smaler-top {
  padding-top: 0;
}

.padding-section-large.is-smaler-top.is-ladung {
  padding-top: 3.4em;
  padding-bottom: 4.4em;
}

.padding-section-large.is-smaler-top.fghjukk {
  padding-top: 2.7em;
  padding-bottom: 8.5em;
}

.padding-section-large.is--nobottom {
  padding-bottom: 0;
}

.padding-section-large.is-portfolio {
  padding-top: 10em;
  padding-bottom: 3em;
}

.padding-section-large.is--notop {
  padding-top: 0;
}

.padding-section-large.is-ladung.is-other {
  padding-top: 10.6em;
  padding-bottom: 5.3em;
}

.padding-section-large.is-ladung.is-more {
  padding-top: 3.3em;
  padding-bottom: 8.9em;
}

.padding-section-large.is-ladung.xcv {
  padding-top: 10.5em;
  padding-bottom: 3.3em;
}

.padding-section-large.is--other {
  padding-top: 4em;
  padding-bottom: 5.9em;
}

.padding-section-large.is--other._2 {
  padding-bottom: 4.3em;
}

.padding-section-large.fgh {
  padding-top: 9em;
}

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

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

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

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

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

.spacer-large, .spacer-xlarge {
  width: 100%;
  padding-top: 3rem;
}

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

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

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

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

.navbar2_component {
  z-index: 2000;
  border-style: none none solid;
  border-width: 1px 1px .5px;
  border-color: black black var(--gray100);
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  background-color: #f7f7f7d9;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 4.2em;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: fixed;
  top: 0;
}

.navbar2_logo-link {
  flex-direction: row;
  padding-top: .3em;
  padding-left: 0;
  display: flex;
}

.navbar2_logo-link.w--current {
  padding-top: 0;
}

.navbar2_menu-button {
  padding: 0;
}

.navbar2_link {
  color: var(--gray300);
  padding: .5rem 1rem;
  transition: color .25s ease-out;
}

.navbar2_link:hover {
  color: var(--black);
}

.navbar2_link.w--current {
  color: #000;
}

.navbar2_link.is-toppadding {
  font-size: 1em;
}

.navbar2_dropdown-link {
  grid-column-gap: .5rem;
  width: 20rem;
  height: 3.75rem;
  color: var(--black);
  border-radius: 1.1rem;
  align-items: center;
  margin-left: .5rem;
  margin-right: .5rem;
  padding: 2rem .5rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: flex;
}

.navbar2_dropdown-link:hover {
  background-color: var(--bg-menu-hover);
  color: var(--brand500);
}

.navbar2_dropdown-link.w--current {
  color: #000;
}

.navbar2_dropdown-link.is--small {
  width: 12.5rem;
  height: 3.2em;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar2_dropdown-link.is--small.w--current {
  align-items: center;
  width: 12.5rem;
  height: 3.2rem;
}

.navbar2_dropdown-list.w--open {
  background-color: #fff;
  border: 1px #000;
  border-radius: .7em;
  padding: .5rem;
  position: absolute;
}

.navbar2_dropdown-list.shadow-xlarge.w--open {
  z-index: 4;
  border-radius: 1.5rem;
  padding: 1rem .5rem;
}

.dropdown-icon-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 1rem;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.navbar2_button-wrapper {
  grid-column-gap: 1rem;
  margin-left: 1rem;
  display: flex;
}

.navbar2_dropdwn-toggle {
  color: var(--gray300);
  padding: .5rem 2.5rem .5rem 1rem;
  transition: color .25s ease-out;
}

.navbar2_dropdwn-toggle:hover {
  color: var(--black);
}

.navbar2_dropdwn-toggle.services {
  display: block;
}

.navbar2_menu {
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
}

.navbar2_menu-dropdown.is--services {
  display: none;
}

.navbar2_container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr .25fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.text-size-medium-2 {
  font-size: 1.125em;
}

.text-size-medium-2.darkmode {
  color: var(--gray100);
  line-height: 1.55;
}

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

.button-group-2.is-center {
  grid-column-gap: 1em;
  justify-content: center;
}

.max-width-large-2 {
  width: 100%;
  max-width: 100%;
}

.layout208_item {
  display: flex;
}

.lightbox-play-icon {
  z-index: 2;
  color: #fff;
  width: 64px;
  height: 64px;
  position: absolute;
}

.layout208_item-icon-wrapper {
  flex: none;
  align-self: flex-start;
  margin-right: .5em;
}

.footer4_component {
  background-color: var(--bg-dark);
  padding-top: 0;
}

.footer4_logo-link {
  padding-left: 0;
}

.footer4_link-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0px;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  justify-items: start;
  display: grid;
}

.footer4_legal-link {
  color: #afb1b9;
  text-transform: none;
  font-size: .9em;
  text-decoration: none;
  transition: color .25s cubic-bezier(.25, .46, .45, .94);
}

.footer4_legal-link:hover {
  color: var(--brand100);
}

.footer4_social-link {
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.footer4_social-list {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: start;
  display: grid;
}

.footer4_social-list.is-navbar {
  display: none;
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gray-50);
  transition: all .25s cubic-bezier(.25, .46, .45, .94);
}

.social-icon:hover {
  color: var(--brand-400);
  transform: scale(1.2);
}

.social-icon.white {
  color: var(--grey500);
}

.social-icon.white.is-gumroad {
  width: 1.4rem;
  height: 1.4rem;
}

.social-icon.is--youtube {
  display: none;
}

.footer4_top-wrapper {
  grid-column-gap: 4vw;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr .25fr;
  justify-content: space-between;
  align-items: center;
}

.footer4_bottom-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: space-between;
  display: grid;
}

.footer4_link {
  color: var(--gray-50);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.footer4_link.hover-underline-animation {
  color: var(--gray-50);
  font-size: 1em;
}

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

.line-divider {
  background-color: var(--gray300);
  opacity: .51;
  width: 100%;
  height: 1px;
}

.layout_item_div {
  grid-column-gap: 2em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.layout228_item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.layout228_item.is-left {
  align-items: flex-start;
}

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

.layout228_component.is--vertical {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

.section_skills {
  background-color: #f7f7f7;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.image-overlay-layer {
  z-index: 1;
  background-color: #00000080;
  display: none;
  position: absolute;
  inset: 0%;
}

.cta53_background-image {
  border-radius: 24px;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.cta53_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-top: 4em;
}

.section_cta53 {
  background-color: var(--bg-dark);
}

.cta53_background-image-wrapper {
  z-index: -1;
  position: absolute;
  inset: 0%;
}

.cta53_card {
  z-index: 3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4em;
  display: flex;
  position: relative;
}

.body {
  background-color: #f7f7f7;
  font-family: PP Neue Montreal, sans-serif;
  font-weight: 500;
}

.body.is--dafuer {
  color: #f4f4f4;
  background-color: #1e1e1f;
}

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

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

.navbar_logo_picture {
  width: 3em;
  min-width: 3em;
  height: 3em;
  min-height: 3em;
}

.paragraph-4 {
  font-size: 1.1875em;
  font-weight: 600;
  line-height: .9;
}

.paragraph-4.darkmode {
  color: var(--gray-50);
  font-weight: 600;
}

.navbar_logo_text {
  align-self: center;
  max-width: 6.5em;
  margin-left: .3em;
}

.navbar_logo_online-dot {
  border: .12em solid var(--white);
  background-color: var(--green);
  border-radius: 100vw;
  width: .7em;
  height: .7em;
  position: relative;
  top: -.7em;
  left: 2.1em;
}

.section_dark-bg {
  background-color: var(--bg-dark);
  color: var(--white);
  position: relative;
}

.section_dark-bg.is-footer {
  z-index: 1;
  height: 55rem;
  position: fixed;
  inset: auto 0% 0%;
}

.rating-icons {
  justify-content: center;
  align-items: center;
  display: flex;
}

.rating-icons.is--contact {
  flex-direction: row;
}

.image-google {
  max-width: 19.75em;
}

.text-gradient {
  background-image: linear-gradient(93deg, var(--brand500), #5c6fece6);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.background-noise {
  z-index: 1;
  opacity: .3;
  background-image: var(--image-7d4ed67b);
  background-position: 0 0;
  background-size: auto;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.cta_profilepic {
  width: 11em;
  min-width: 11em;
  height: 11em;
  min-height: 11em;
  position: absolute;
  top: -6.6em;
  bottom: 7.75em;
}

.section_profil {
  background-color: #f7f7f7;
  position: relative;
  overflow: hidden;
}

.background_elements {
  z-index: -1;
  display: block;
  position: absolute;
  inset: 0%;
}

.ellipse_dark {
  background-color: var(--brand-300);
  opacity: .08;
  filter: blur(3.6rem);
  border-radius: 100vw;
  width: 20rem;
  height: 20rem;
  position: absolute;
  top: 23.6em;
  left: 227px;
}

.ellipse_dark.is--bullet {
  opacity: .05;
  top: 22.4em;
  left: 248px;
}

.arrow_1 {
  text-align: left;
  margin-left: -66px;
  margin-right: auto;
}

.arrow_1.is-contact {
  margin-top: -10em;
}

.arrow_1.is-mainsite {
  max-width: 100%;
  margin-left: 84px;
}

.link_google {
  z-index: 5;
  margin-top: -21px;
  position: relative;
}

.padding-global-2 {
  padding-left: 5%;
  padding-right: 5%;
}

.div-block-10 {
  grid-row-gap: 4em;
  flex-direction: column;
  padding-top: 0;
  padding-left: 14em;
  padding-right: 14em;
  display: flex;
}

.header1_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.container-large-3 {
  width: 100%;
  max-width: 83em;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.container-large-3.hero {
  max-width: 82.125em;
}

.datenschutz {
  grid-row-gap: 3em;
  flex-direction: column;
  display: flex;
}

.padding-section-large-4 {
  height: 85vh;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4em;
  display: flex;
}

.padding-section-large-4.second {
  height: 100%;
  padding-top: 9em;
  padding-bottom: 3.5em;
}

.padding-global-4 {
  padding-left: 4em;
  padding-right: 4em;
}

.section_h1 {
  background-color: #f4f4f400;
}

.footer_dark {
  background-color: var(--bg-dark);
}

.error-message {
  border-radius: .75em;
  margin-top: 1.5rem;
  padding: .875rem 1rem;
}

.success-message {
  background-color: var(--brand100);
  border-radius: 20px;
  padding: 3.3rem 1.5rem 1.5rem;
}

.success-message.shadow-xxlarge {
  background-color: var(--white);
}

.layout16_component {
  grid-column-gap: 5em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 530px 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 2em;
  display: grid;
}

.layout16_content {
  max-width: 33.2em;
  margin-top: 5em;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 5em;
  position: relative;
}

.logo3_logo {
  max-height: 3.5rem;
}

.logo3_wrapper {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.section_logo3 {
  z-index: 3;
  background-color: #fff;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.logo3_list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1rem;
  white-space: nowrap;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  place-items: center start;
  margin-right: 2rem;
  display: grid;
}

.container-large-9 {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.logo3_component {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.error-text-2 {
  color: #e23939;
}

.transition-trigger {
  z-index: 20;
  padding: 0;
  display: none;
}

.transition {
  z-index: 9000;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0% 0% auto;
  transform: none;
}

.transition-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: absolute;
  inset: 0%;
}

.transition-bg {
  z-index: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  position: absolute;
  inset: 0%;
}

.transition-color {
  background-color: #f7f7f7;
  width: 100%;
  height: 100%;
  position: relative;
}

.transition-color-border {
  background-color: var(--bg-dark);
  width: 100%;
  height: 10px;
  margin-bottom: -8px;
  position: absolute;
  inset: auto 0% 0%;
}

.section_header {
  background-color: #f6f7f9;
  padding-top: 5.33333em;
  overflow: hidden;
}

.section_header.is-contact {
  z-index: -2;
  margin-bottom: -3.75em;
  padding-bottom: 0;
}

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

.padding-section-large-5.is--hero {
  padding-top: 12em;
  padding-bottom: 0;
}

.layout89_image {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 1.5em;
  width: 100%;
  height: 100%;
}

.layout89_image-wrapper {
  object-fit: fill;
}

.text-size-medium-3 {
  color: var(--gray400);
  font-size: 1.125rem;
}

.layout89_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.layout16_item {
  display: flex;
}

.layout16_image {
  object-fit: cover;
  border-radius: 1.5em;
  width: 95%;
  height: 100%;
}

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

.layout16_item-icon-wrapper {
  flex: none;
  align-self: flex-start;
  margin-right: 1rem;
}

.layout16_item-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: grid;
}

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

.layout208_lightbox-2 {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.layout208_lightbox-image-2 {
  object-fit: cover;
  border-radius: 1.5em;
}

.section_magnet {
  position: static;
}

.layout208_component-2 {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 6em;
  display: grid;
}

.video-overlay-layer-2 {
  z-index: 1;
  opacity: .49;
  background-color: #00000080;
  border-radius: 1.5em;
  position: absolute;
  inset: 0%;
  box-shadow: 9px 18px 20px 9px #9f29671c;
}

.paragraph {
  font-size: 1.4rem;
}

.paragraph.is-white {
  color: #f4f4f4;
  font-size: 1.1rem;
}

.logo1_logo {
  max-height: 4.375em;
}

.logo1_component {
  grid-column-gap: .75em;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
}

.html-embed {
  display: none;
}

.blog13_title-wrapper {
  margin-bottom: .5rem;
}

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

.blog13_author-wrapper {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: -8px;
  display: flex;
}

.blog13_item-link {
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.blog13_item-content-top {
  display: flex;
}

.blog13_image-wrapper {
  border-top-left-radius: 1.5em;
  border-top-right-radius: 1.5em;
  width: 100%;
  padding-top: 74.25%;
  position: relative;
  overflow: hidden;
}

.blog13_author-image-wrapper {
  grid-column-gap: 1em;
  margin-right: 1rem;
  display: flex;
}

.section_blog13 {
  background-color: var(--bg-dark);
  display: block;
}

.blog13_author-text {
  grid-column-gap: .2em;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
}

.blog13_component {
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.blog13_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.success-text {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.2em;
  font-weight: 600;
}

.contact6_form-block {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}

.form-field-2col {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.content6_component {
  grid-column-gap: 6em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 4fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-top: -6.875em;
  display: grid;
}

.field-label-2 {
  margin-bottom: .5rem;
  font-weight: 400;
}

.contact6_form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: #fcfcfc;
  border-radius: 1.5em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 60px;
  display: grid;
}

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

.icon-contact {
  width: 3em;
  height: 3em;
}

.hover-trigger {
  flex-direction: column;
  align-items: flex-start;
  margin: -32px;
  padding: 32px;
  font-style: normal;
  display: flex;
}

.image-3 {
  border-radius: 9px;
}

.action-bar {
  grid-column-gap: 1.5em;
  align-items: center;
  display: flex;
}

.navbar2_icon_svg {
  margin-bottom: -.375em;
  padding-left: 2.375px;
  padding-right: 5.375px;
}

.text-block-2 {
  margin-bottom: -3px;
  font-size: 1.125rem;
  font-weight: 600;
}

.text-block-2.is-nogap {
  margin-bottom: 0;
}

.html-embed-2 {
  display: none;
}

.text-block-dropper.text-align-center {
  border-top: 1.5px solid var(--gray-50);
  color: var(--gray300);
  margin-top: .5em;
  padding-top: .8em;
  font-size: .9rem;
}

.image-listando {
  opacity: .8;
  max-width: 6em;
}

.image-5 {
  max-height: 100%;
}

.section_portfolio6-header {
  margin-top: 107px;
}

.portfolio6-gallery_row {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.portfolio6-gallery_image-wrapper {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.portfolio-header_tag-list {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: wrap;
  margin-top: 1em;
  display: flex;
}

.portfolio-header_metatag-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.portfolio6-gallery_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  position: absolute;
  inset: 0%;
}

.portfolio6-gallery_image.is--bigger {
  object-fit: contain;
  height: 130%;
}

.portfolio6-gallery_image.is-fit {
  object-fit: fill;
  width: 70%;
  height: 70%;
}

.portfolio6-gallery_image.is-special {
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.portfolio6-header_tag-item {
  background-color: var(--white);
  border-radius: 8px;
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

.portfolio6-header_tag-item.w--current {
  border-bottom: 2px solid #000;
}

.portfolio6-header_tag-item.shadow-xsmall {
  cursor: default;
}

.portfolio-header_component {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.portfolio6-gallery_image-wrapper-large {
  width: 100%;
  padding-top: 56.25%;
  display: flex;
  position: relative;
}

.portfolio6-gallery_image-wrapper-large.is-other {
  padding-top: 0%;
}

.portfolio6-gallery_lightbox-link {
  cursor: default;
  width: 100%;
  height: 100%;
}

.portfolio6-gallery_lightbox-link.asd {
  padding-top: 111px;
}

.portfolio-gallery_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  justify-items: center;
}

.content18_image-wrapper {
  flex: 1;
  width: 100%;
  overflow: hidden;
}

.content18_image-wrapper.is-small {
  justify-content: flex-end;
  display: flex;
}

.content18_image {
  width: 100%;
  height: 100%;
}

.content18_image.is-small {
  width: 50%;
}

.padding-global-portfolio {
  padding-left: 30%;
  padding-right: 30%;
}

.grey {
  color: var(--gray300);
}

.div-block-12 {
  padding-left: 0;
}

.grid {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "Area";
}

.smartphone_image {
  object-fit: fill;
  max-width: 100%;
  transform: scale(1.4);
}

.layout350_content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  display: flex;
}

.layout350_desktop-image-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

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

.section_features {
  background-color: var(--bg-dark);
}

.layout350_image {
  width: 100%;
  position: absolute;
}

.layout350_image.is-image3, .layout350_image.is-image2, .layout350_image.is-image1 {
  border-radius: 24px;
}

.layout350_mobile-image {
  width: 100%;
  position: absolute;
}

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

.layout350_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
  position: relative;
}

.background-color-dark-light {
  background-color: var(--bg-dark-hell);
}

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

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

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

.text-span-2 {
  text-decoration: underline;
}

.scrollgallery_content-bottom {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  display: flex;
  overflow: hidden;
}

.layout414_image-wrapper {
  width: 30vw;
  padding-top: 68%;
  position: relative;
}

.section_scrollgallery {
  overflow: hidden;
}

.scrollgallery_component {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.layout414_image {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.layout414_image-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.image_wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  justify-content: center;
  display: flex;
}

.image_container {
  border-radius: 24px;
}

.image_container.is-shifted {
  padding-top: 3.5rem;
}

.image_handy {
  border-radius: 24px;
}

.section_responsive {
  position: relative;
}

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

.prototype_wrapper {
  border-radius: 16px;
  width: 414px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.padding-section-huge {
  margin-top: 12em;
  margin-bottom: 12em;
}

.padding-section-huge.is--bigger-bottom {
  margin-bottom: 24em;
  position: relative;
}

.padding-section-huge.is--bullets-section {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 12em;
  padding-bottom: 12em;
}

.button-10, .button-11 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #2e313a;
  border-radius: 100rem;
  padding: .75rem 1.05rem .75rem 1.15rem;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
}

.home_work_item {
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  width: 42%;
  margin-left: 1%;
  margin-right: 1%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home_work_scroll-wrapper {
  justify-content: center;
  width: 180%;
  max-width: 182rem;
  height: 100%;
  display: flex;
}

.home-work_work-title {
  color: #000;
}

.home-work_work-title.text-color-white {
  color: #fff;
}

.section_projekte {
  background-color: var(--black);
  width: 100vw;
  position: relative;
  overflow: hidden;
}

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

.button-12 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: #0000;
  border: 1.45px solid #ff5330;
  border-radius: .875rem;
  justify-content: center;
  align-items: center;
  padding: .575rem 1.5rem;
  transition: all .5s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  overflow: hidden;
}

.button-12:hover {
  background-color: #ff5330;
}

.button-12:active {
  background-color: #e44120;
  border-color: #e44120;
}

.button-12.is-secondary {
  border-style: none;
  border-radius: 0;
  padding: 0;
  transition-property: none;
  display: block;
}

.button-12.is-secondary:hover {
  background-color: #0000;
}

.home-work_text-wrapper {
  z-index: 1;
  color: #fff;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60%;
  display: flex;
  position: absolute;
}

.home_work_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.home_work_image-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.home_work_component {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 35rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-work_work-description {
  color: #111;
}

.home-work_work-description.text-color-gray50 {
  color: var(--gray-50);
}

.section-typo-zoom-in {
  color: #000;
  background-color: #f7f7f7;
  width: 100%;
  height: 250vh;
  margin-bottom: -2px;
}

.typo-zoom-sticky {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
}

.typo-zoom-sticky-inner {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.typo-zoom-text-wrapper {
  width: 50vw;
}

.typo-zoom-text {
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.typo-zoom-text-image {
  width: 100%;
}

.home-list_text-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  display: flex;
}

.work-descr {
  flex-direction: column;
  align-self: end;
  align-items: flex-start;
  width: 100%;
  max-width: 480px;
  padding-top: 29px;
  display: flex;
}

.horizontal-scroll {
  flex: none;
  display: flex;
}

.scroll {
  z-index: -1;
  height: 250vh;
  position: relative;
}

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

.section-3 {
  height: 100vh;
  padding-top: 180px;
  padding-bottom: 60px;
  padding-left: 5%;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.video-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 460px;
  display: flex;
  position: relative;
}

.col {
  grid-column-gap: 0px;
  grid-row-gap: 8px;
  transform-origin: 0 0;
  flex: none;
  grid-template: "." 1fr
                 "." 1fr
                 "." 1fr
                 / 1fr 1fr .5fr;
  grid-auto-columns: 1fr;
  min-height: 450px;
  margin-top: auto;
  margin-bottom: auto;
  display: grid;
}

.section_vita {
  background-color: #0f1825;
  background-image: linear-gradient(#0f1825, #162130);
  display: none;
}

.wrapper_secondline {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  display: flex;
}

.profil_wrapper {
  display: flex;
}

.scroll-reveal_trigger {
  height: 8rem;
  position: absolute;
  inset: 0% 0% auto auto;
}

.is--scroll-reveal {
  position: relative;
}

.section-4, .section-5 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.navbar15_menu {
  grid-column-gap: 4.5em;
  grid-row-gap: 4.5em;
  align-items: center;
}

.navbar-on-page {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.navbar15_container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  background-color: #ffffffab;
  border: 1.5px solid #0000000d;
  border-radius: 1.5em;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  height: auto;
  min-height: 4.5rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

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

.navbar15_logo-link {
  padding-left: .5rem;
  display: none;
}

.navbar15_menu-link-wrapper {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
  display: flex;
}

.navbar15_component {
  background-color: #ddd0;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-left: 5%;
  margin-right: 5%;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 0%;
}

.navbar15_link {
  border-radius: .6em;
  padding: .5rem 1rem;
  transition: all .25s;
}

.navbar15_link:hover {
  background-color: #0000001f;
}

.navbar15_link.w--current {
  color: #000;
}

.navbar15_arrow-link {
  border-radius: .6em;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
}

.navbar15_arrow-link:hover {
  background-color: #f7f7f7;
}

.navbar15_menu-button {
  padding: 0;
}

.blog13_item-content-2 {
  background-color: #1c2531;
  border-bottom-right-radius: 1.5em;
  border-bottom-left-radius: 1.5em;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 1.5em;
  display: flex;
}

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

.blog13_item-2 {
  border: 1px #000;
  border-radius: 1.5em;
  transition: box-shadow .25s cubic-bezier(.25, .46, .45, .94);
}

.blog13_item-2:hover {
  box-shadow: 12px 16px 150px -20px #b9c1f733;
}

.blog13_item-2.is--right:hover, .blog13_item-2.is--left:hover {
  box-shadow: 12px 16px 150px -20px #b9c1f717;
}

.background-video {
  border-radius: 24px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: absolute;
}

.ellipse_dark-2 {
  opacity: .08;
  filter: blur(3.6rem);
  background-color: #7b8bef;
  border-radius: 100vw;
  width: 30rem;
  height: 20rem;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0% 0;
}

.menu_link-bg {
  z-index: 1;
  opacity: 0;
  background-color: #fff;
  border-radius: 100vw;
  position: absolute;
  inset: 0%;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 1%;
}

.container.is-menu {
  z-index: 1000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 3%;
  padding-left: 4%;
  padding-right: 4%;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.menu_link {
  z-index: 2;
  color: #fff;
  mix-blend-mode: difference;
  padding: 1.2em 1.7em;
  position: relative;
}

.menu_link-text {
  z-index: 2;
  mix-blend-mode: difference;
  font-size: 1.3em;
  line-height: 1;
  position: relative;
}

.menu_shape {
  z-index: 1;
  opacity: 0;
  justify-content: flex-start;
  width: 7em;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
  transform: translate(0);
}

.menu_wrap {
  background-color: #fff;
  border-radius: 100vw;
  max-width: 100%;
  padding: .3em;
  font-size: .9rem;
  box-shadow: 1px 1px 7px #00000029;
}

.menu {
  position: relative;
}

.menu_shape-bg {
  background-color: #000;
  border-radius: 100vw;
  flex: none;
  width: 100%;
  height: 100%;
  position: relative;
}

.button-13 {
  color: #fff;
  text-align: center;
  background-color: #1c1d20;
  border-radius: .5em;
  padding: .85em 1.3em .75em;
  transition: box-shadow .25s ease-out, transform .25s;
}

.button-13:hover {
  transform: translate(0, -.2em);
  box-shadow: 0 4px 20px #00000042;
}

.button-13:active {
  background-color: #000;
}

.button-13:focus {
  outline-offset: 0px;
  outline: .15em solid #33353b;
}

.button-13.is-small {
  white-space: nowrap;
  padding: .5rem 1.25rem;
}

.wrapper_lottie {
  width: 3%;
  height: 5%;
  position: absolute;
  inset: auto 48% 10%;
}

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

.div-block-14 {
  position: relative;
  bottom: 0;
}

.lottie_desktop {
  opacity: .59;
}

.lottie_mobile {
  opacity: .59;
  display: none;
}

.home_arrow {
  position: relative;
}

.div-block-15 {
  height: 1px;
}

.wrapper_absatz {
  margin-bottom: 6em;
}

.hover_list.is-mobile {
  display: none;
}

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

.cursor_wrap {
  aspect-ratio: 16 / 9;
  width: 130%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.hover_section {
  color: var(--white);
  background-color: #000;
}

.page-padding {
  padding: 2em 5%;
}

.page-padding.is-hover {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: 100vh;
  padding-bottom: 4em;
  display: flex;
}

.cursor_list {
  width: 100%;
  height: 100%;
  transition: transform .4s cubic-bezier(.645, .045, .355, 1);
  position: absolute;
  inset: 0%;
}

.hover_item {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  cursor: pointer;
  border: 1px #414141;
  border-bottom: 1.5px solid #414141;
  justify-content: space-between;
  align-items: center;
  padding: 2.8em 4em;
  transition: padding .2s, color .2s;
  display: flex;
}

.hover_item:hover {
  color: #ffffff8a;
  padding-left: 3em;
  padding-right: 3em;
}

.cursor_move {
  width: 24em;
  max-width: 90%;
}

.cursor_wrapper {
  z-index: 1000;
  opacity: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  transition: transform .3s cubic-bezier(.645, .045, .355, 1), opacity .3s cubic-bezier(.645, .045, .355, 1);
  display: flex;
  position: fixed;
  inset: 0%;
  transform: scale(.5);
}

.cursor_item {
  width: 100%;
  height: 100%;
}

.project-css {
  width: 0;
  height: 0;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
}

.hover_title {
  letter-spacing: -.02em;
  font-size: 3em;
  font-weight: 600;
  line-height: 1.15;
}

.hover_number {
  font-size: 1.4em;
  font-weight: 800;
  line-height: 1;
}

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

.pf_item_link {
  display: block;
}

.text-size-medium-4 {
  font-size: 1.125rem;
}

.button-14 {
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding: .75rem 1.5rem;
}

.button-14.is-secondary {
  color: var(--black);
  background-color: #0000;
}

.header82_content-bottom {
  z-index: 1;
  flex-direction: column;
  justify-content: flex-start;
  width: 90%;
  height: 80vh;
  margin-bottom: -10vh;
  display: flex;
  position: sticky;
  top: 10vh;
}

.header82_content {
  z-index: 0;
  justify-content: center;
  align-items: center;
  max-width: 48rem;
  min-height: 80vh;
  margin-left: auto;
  margin-right: auto;
  padding-top: 7rem;
  padding-bottom: 7rem;
  display: flex;
  position: sticky;
  top: 0;
}

.header82_ix-trigger {
  z-index: -1;
  margin-top: 100vh;
  position: absolute;
  inset: 0%;
}

.lightbox-play-icon-2 {
  z-index: 2;
  color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

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

.button-group-5.is-center {
  justify-content: center;
}

.header82_lightbox {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

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

.video-overlay-layer {
  z-index: 1;
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

.header82_component {
  flex-direction: column;
  align-items: center;
  height: 300vh;
  display: flex;
  position: relative;
}

.section_black-bg {
  color: var(--white);
  background-color: #232323;
  position: relative;
}

.section_black-bg.is-footer {
  overflow: hidden;
}

.portfolio6-header_tag-item-2 {
  background-color: #fff;
  border-radius: 8px;
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

.portfolio6-header_tag-item-2.w--current {
  border-bottom: 2px solid #000;
}

.portfolio6-header_tag-item-2.shadow-xsmall {
  cursor: default;
}

.section_header11 {
  opacity: 1;
}

.text-size-medium-5 {
  font-size: 1.125rem;
}

.gallery1_image {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.gallery1_image.is--square {
  aspect-ratio: 1;
}

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

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

.gallery1_lightbox-link {
  width: 100%;
  height: 100%;
}

.gallery1_image-wrapper {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.container-large-10 {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

._2-col-wrapper {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 100%;
  display: grid;
}

.icon-embed-custom {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 37.4375rem;
  height: 19.8125rem;
  display: flex;
}

.icon-embed-custom-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 37.8125rem;
  height: 19.8125rem;
  display: flex;
}

.icon-embed-custom-3 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 55.6875rem;
  height: 19.5rem;
  display: flex;
}

.icon-embed-custom-4, .icon-embed-custom-5 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42.875rem;
  height: 21.75rem;
  display: flex;
}

.icon-embed-custom-6 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 37.5rem;
  height: 18.25rem;
  display: flex;
}

.icon-embed-custom-7 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 37.5rem;
  height: 18.8125rem;
  display: flex;
}

.icon-embed-custom-8 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 8.5rem;
  height: 1.75rem;
  display: flex;
}

.laufschrift_link {
  transition: transform .3s cubic-bezier(.215, .61, .355, 1);
}

.laufschrift_link:hover {
  transform: scale(1.05);
}

.laufschrift-image_wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.padding-global-5 {
  padding-left: 5%;
  padding-right: 5%;
}

.container-large-11 {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.layout484_split-text {
  display: none;
}

.layout484_text {
  color: var(--white);
  text-align: left;
}

.section_layout484 {
  background-color: var(--bg-dark);
  padding-bottom: 5em;
}

.fixed-footer-visibility-block {
  height: 55rem;
}

.section_layout486 {
  background-color: var(--\<unknown\|relume-variable-background-color-1\>);
  color: var(--white);
}

.padding-global-6 {
  padding-left: 5%;
  padding-right: 5%;
}

.container-large-12 {
  width: 100%;
  max-width: 80em;
  margin-left: auto;
  margin-right: auto;
}

.padding-section-large-9 {
  padding-top: 7em;
  padding-bottom: 12em;
}

.layout486_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
  position: relative;
}

.layout486_content-left {
  align-items: flex-start;
  height: 14rem;
  display: flex;
  position: sticky;
  top: 20%;
  overflow: hidden;
}

.layout486_number {
  font-size: 14rem;
  font-weight: 500;
  line-height: 1;
}

.layout486_number.show-mobile-landscape {
  display: none;
}

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

.layout486_content-right {
  grid-column-gap: 7rem;
  grid-row-gap: 7rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.layout486_content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.layout486_progress-wrapper {
  background-color: var(--bg-dark-hell);
  width: 100%;
  height: 2px;
  margin-bottom: 2rem;
}

.layout486_progress-bar {
  background-color: var(--gray300);
  width: 2rem;
  height: 2px;
}

.text-style-tagline {
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.text-style-tagline.is-brand300 {
  color: var(--brand-300);
  font-size: 1.125rem;
}

.text-size-medium-6 {
  color: var(--gray100);
  font-family: PP Neue Montreal, sans-serif;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.55;
}

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

.button-15 {
  background-color: var(--grey500);
  color: var(--white);
  text-align: center;
  border-radius: .5em;
  padding: .85em 1.3em .75em;
  transition: box-shadow .25s ease-out, transform .25s;
}

.button-15:hover {
  transform: translate(0, -.2em);
  box-shadow: 0 4px 20px #00000042;
}

.button-15:active {
  background-color: #000;
}

.button-15:focus {
  outline-color: var(--gray400);
  outline-offset: 0px;
  outline-width: .15em;
  outline-style: solid;
}

.button-15.is-secondary {
  border: .17em solid var(--gray400);
  color: var(--grey500);
  background-color: #0000;
  margin-right: 1em;
  padding-top: .72em;
  padding-bottom: .62em;
  transition: background-color .25s cubic-bezier(.25, .46, .45, .94), box-shadow .25s ease-out, transform .25s;
}

.button-15.is-secondary:hover {
  box-shadow: 0 4px 24px #0a0e2736;
}

.button-15.is-link {
  color: var(--black);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-15.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

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

.hover_list-mobile, .hover_list-mobile.is-mobile {
  display: none;
}

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

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .hide-tablet {
    display: none;
  }

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

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xlarge {
    margin: 3.5rem;
  }

  .margin-xxlarge {
    margin: 4.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 7.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3.5rem;
  }

  .padding-xxlarge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 7.5rem;
  }

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

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

  .margin-bottom.margin-custom1, .margin-bottom.margin-custom2 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-bottom.margin-small.z {
    z-index: 10;
    position: relative;
  }

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

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

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

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

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

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

  .padding-bottom.padding-xhuge.is-ladung {
    padding-bottom: 0;
  }

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

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

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

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

  .text-size-medium.text-color-white.is-small {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-style-h2 {
    padding-left: 0;
    padding-right: 0;
    font-size: 2.75rem;
  }

  .rl-styleguide_icons-list {
    grid-auto-flow: row;
  }

  .heading-style-h1 {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    font-size: 2.9em;
  }

  .heading-style-h1.text-align-left {
    text-align: left;
  }

  .button:hover {
    box-shadow: none;
    transform: none;
  }

  .button.is-secondary:hover {
    background-color: #fff0;
  }

  .button.is-small.copy-button.tooltip {
    display: none;
  }

  .button.is-navbar {
    font-size: 1.2em;
    display: inline-block;
  }

  .heading-style-h4 {
    font-size: 1.75em;
  }

  .heading-style-h4.text-align-left.is--1em {
    margin-top: 0;
  }

  .text-size-regular.darkmode.cta {
    white-space: nowrap;
    object-fit: fill;
  }

  .text-size-regular.text-align-left {
    padding-right: 0;
  }

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

  .text-color-white.is--cta {
    font-size: 3.5em;
  }

  .text-size-large {
    padding-left: 0;
    padding-right: 0;
    font-size: 1.3em;
  }

  .text-size-large.text-color-gray400.is-small {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-global {
    font-size: .95em;
  }

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

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

  .padding-section-large.is--smaler-bottom {
    padding-bottom: 0;
  }

  .padding-section-large.is-smaler-top.is-ladung {
    padding-bottom: 0;
  }

  .padding-section-large.is--nobottom.is-other {
    padding-top: 1.3rem;
  }

  .padding-section-large.is--notop, .padding-section-large.is-ladung {
    padding-bottom: 6rem;
  }

  .padding-section-large.is-ladung.is-other {
    padding-top: 13.8em;
    padding-bottom: 0;
  }

  .padding-section-large.is-ladung.is-more {
    padding-bottom: 2.2em;
  }

  .padding-section-large.is-ladung.xcv {
    padding-bottom: 0;
  }

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

  .spacer-xlarge {
    padding-top: 3.5rem;
  }

  .spacer-xxlarge {
    padding-top: 4.5rem;
  }

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

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

  .spacer-xxhuge {
    padding-top: 7.5rem;
  }

  .menu-icon2_line-middle {
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar2_component {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: #f7f7f7;
  }

  .navbar2_menu-button {
    padding: 0;
  }

  .navbar2_menu-button.w--open {
    background-color: #0000;
  }

  .menu-icon2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon2_line-bottom {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_line-middle-inner-2 {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar2_link {
    text-align: center;
    padding: .75em 0;
    font-size: 1.5em;
  }

  .navbar2_link:hover {
    color: var(--gray300);
  }

  .navbar2_link.is-toppadding {
    padding-top: .95em;
    padding-bottom: .25em;
    font-size: 2em;
    font-weight: 600;
  }

  .navbar2_link.is-toppadding:hover {
    color: var(--gray300);
  }

  .navbar2_link.is-toppadding:active {
    color: var(--black);
  }

  .navbar2_dropdown-link {
    width: auto;
    color: var(--gray300);
    text-align: center;
    padding: .75rem 0;
    font-size: .8em;
  }

  .navbar2_dropdown-list {
    position: static;
    overflow: hidden;
  }

  .navbar2_dropdown-list.w--open {
    border-style: none;
    padding: 0;
    position: static;
  }

  .dropdown-icon-2 {
    width: 1em;
    height: 1em;
    margin-top: .5rem;
    margin-bottom: 0;
    margin-right: 0;
    inset: auto 0% auto auto;
  }

  .navbar2_button-wrapper {
    align-items: center;
  }

  .navbar2_dropdwn-toggle {
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding: 1.55em 2rem .25em 0;
    font-size: 1.125em;
    display: flex;
  }

  .navbar2_dropdwn-toggle:hover {
    color: var(--gray300);
  }

  .navbar2_dropdwn-toggle:active {
    color: var(--black);
  }

  .navbar2_dropdwn-toggle.services {
    font-size: 1em;
  }

  .navbar2_menu {
    -webkit-text-fill-color: inherit;
    background-color: #fff;
    background-clip: border-box;
    border-bottom: 1px solid #000;
    justify-content: center;
    padding: 1rem 5% 2.5rem;
    display: flex;
    position: absolute;
    overflow: auto;
  }

  .navbar2_menu.is-page-height-tablet {
    z-index: 3000;
    z-index: 3000;
    opacity: 1;
    background-color: #f7f7f7;
    background-image: linear-gradient(#fff, #f4f5ff);
    height: 100dvh;
    padding-top: 6em;
    padding-bottom: 6em;
    transition: height .5s;
  }

  .navbar2_menu-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    display: flex;
  }

  .navbar2_container {
    grid-template-columns: .25fr 1fr;
    display: flex;
  }

  .menu-icon2_line-top {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .footer4_social-list {
    grid-column-gap: 1.5em;
    grid-row-gap: 0em;
    justify-content: center;
    display: flex;
  }

  .footer4_social-list.is-navbar {
    margin-bottom: 2.25em;
    display: flex;
  }

  .social-icon {
    width: 2em;
    height: 2em;
  }

  .social-icon:hover {
    color: var(--gray-50);
    transform: none;
  }

  .social-icon.white.is-navbar {
    width: 2.25em;
    height: 2.25em;
  }

  .footer4_top-wrapper {
    grid-column-gap: 4.5em;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
  }

  .footer4_bottom-wrapper {
    grid-template-rows: auto auto;
    place-content: center;
    place-items: center;
  }

  .layout_item_div {
    grid-column-gap: 1.5em;
  }

  .layout228_component {
    grid-column-gap: 2rem;
    grid-template-areas: "Area";
  }

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

  .cta53_card {
    padding: 3rem;
  }

  .body {
    font-size: 1em;
  }

  .paragraph-4.darkmode {
    text-align: center;
  }

  .section_dark-bg.is-footer {
    position: static;
  }

  .image-google {
    margin-left: -17px;
  }

  .cta_profilepic {
    top: -9.1em;
  }

  .arrow_1.is-contact {
    margin-top: -6em;
  }

  .arrow_1.is-mainsite {
    margin-left: -126px;
    padding-top: 44px;
  }

  .div-block-10 {
    padding-left: 0;
    padding-right: 0;
  }

  .header1_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .padding-section-large-4 {
    height: 85vh;
    padding-top: 4em;
    padding-bottom: 0;
  }

  .padding-section-large-4.second {
    padding-top: 5em;
  }

  .padding-global-4 {
    padding-left: 2em;
    padding-right: 2em;
  }

  .header1_content {
    margin-top: 4em;
    margin-bottom: 4em;
  }

  .layout16_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .section_logo3 {
    overflow: hidden;
  }

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

  .layout89_component {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

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

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

  .layout208_component-2 {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .logo1_component {
    grid-row-gap: 2em;
  }

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

  .content6_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .image-listando {
    max-width: 30%;
  }

  .portfolio6-gallery_image {
    margin-top: 61px;
  }

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

  .padding-global-portfolio {
    padding-left: 10%;
    padding-right: 10%;
    font-size: .95em;
  }

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

  .section_scrollgallery {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }

  .image_wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-top: 24px;
  }

  .image_container.is-shifted {
    padding-top: 1.5rem;
  }

  .image_handy.shadow-xlarge {
    border-radius: 10px;
  }

  .home-work_text-wrapper {
    display: none;
  }

  .home_work_component {
    align-items: flex-start;
    height: 22rem;
    overflow: scroll;
  }

  .col {
    grid-row-gap: 8px;
  }

  .profil_wrapper {
    flex-direction: column;
  }

  .navbar15_menu {
    -webkit-text-fill-color: inherit;
    background-color: #0000;
    background-clip: border-box;
    justify-content: center;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    position: absolute;
    overflow: auto;
  }

  .navbar15_container {
    grid-template-columns: auto 1fr;
    width: 100%;
  }

  .navbar15_button-wrapper {
    align-items: center;
  }

  .navbar15_logo-link {
    display: block;
  }

  .navbar15_menu-link-wrapper {
    background-color: #fff;
    border: 1px solid #000;
    border-top-style: none;
    flex-direction: column;
    width: 100%;
    padding: 2rem;
  }

  .navbar15_component {
    width: 100%;
    margin: 1.5rem auto 0;
    padding-left: 5%;
    padding-right: 5%;
    display: none;
    top: 0%;
    bottom: auto;
  }

  .menu-icon2_line-top-2 {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar15_link {
    text-align: center;
    padding: .75rem 0 1rem;
    font-size: 1.125rem;
  }

  .menu-icon2_line-bottom-2 {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar15_arrow-link {
    display: none;
  }

  .navbar15_menu-button {
    padding: 0;
  }

  .navbar15_menu-button.w--open {
    background-color: #0000;
  }

  .menu-icon2_line-middle-2 {
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .container {
    padding: 2%;
  }

  .container.is-menu {
    padding-bottom: 6.5em;
  }

  .menu-icon2_line-middle-3 {
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .button-13:hover {
    box-shadow: none;
    transform: none;
  }

  .menu-icon2_line-top-3 {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .wrapper_lottie {
    width: 8%;
    bottom: 15%;
    left: 46%;
    right: 46%;
  }

  .lottie_desktop {
    display: none;
  }

  .lottie_mobile {
    display: block;
  }

  .lottie-animation-4 {
    width: 1.6em;
    height: 1.6em;
  }

  .wrapper_bottom-elements {
    position: absolute;
    inset: auto 0% 15%;
  }

  .wrapper_links {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .hover_list {
    display: none;
  }

  .page-padding.is-hover {
    padding-left: 0%;
    padding-right: 0%;
  }

  .hover_item {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hover_item:hover {
    color: #ffffff8a;
    padding-left: 5%;
    padding-right: 5%;
  }

  .cursor_wrapper {
    display: none;
  }

  .header82_content-bottom {
    justify-content: center;
  }

  .header82_content {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

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

  .section_layout484 {
    padding-bottom: 0;
  }

  .fixed-footer-visibility-block {
    height: auto;
  }

  .padding-global-6 {
    font-size: .95em;
  }

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

  .padding-section-large-9.no-top {
    padding-bottom: 11.1rem;
  }

  .layout486_component {
    grid-column-gap: 2rem;
    grid-template-columns: .75fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .button-15:hover {
    box-shadow: none;
    transform: none;
  }

  .button-15.is-secondary:hover {
    background-color: #fff0;
  }

  .mobile-image_wrapper {
    width: 100%;
    height: 100%;
    display: block;
  }

  .mobile-case-image {
    width: 100%;
    height: 100%;
  }

  .mobile-image-link, .hover_list-mobile {
    display: block;
  }
}

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

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

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

  .container-large {
    width: 90vw;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .margin-small {
    margin: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2rem;
  }

  .margin-xlarge {
    margin: 2.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-xxhuge {
    margin: 5rem;
  }

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

  .padding-small {
    padding: 1.25rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2rem;
  }

  .padding-xlarge {
    padding: 2.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 5rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .text-style-quote {
    font-size: 1.125rem;
  }

  .heading-style-h2 {
    font-size: 2.8em;
  }

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

  .heading-style-h5 {
    font-size: 1.25rem;
  }

  .heading-style-h1 {
    text-align: center;
    font-size: 3em;
  }

  .button.is-small.copy-button.tooltip {
    display: none;
  }

  .heading-style-h4 {
    font-size: 1.7em;
    line-height: 1.4;
  }

  .text-size-regular {
    font-size: 1.1em;
  }

  .text-size-regular.darkmode {
    padding-left: 0;
    padding-right: 0;
    font-size: 1.1em;
  }

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

  .text-color-white {
    margin-top: 1.9rem;
  }

  .text-color-white.is--cta {
    font-size: 2.9em;
  }

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

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

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

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

  .padding-section-large.is-bigger-top {
    padding-bottom: 6em;
  }

  .padding-section-large.is-smaller {
    padding-bottom: 0;
  }

  .spacer-xsmall {
    padding-top: .75rem;
  }

  .spacer-small {
    padding-top: 1.25rem;
  }

  .spacer-medium {
    padding-top: 1.5rem;
  }

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

  .spacer-xlarge {
    padding-top: 2.5rem;
  }

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

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

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

  .spacer-xxhuge {
    padding-top: 5rem;
  }

  .navbar2_component {
    min-height: 4rem;
  }

  .navbar2_link.is-toppadding {
    padding-bottom: .25em;
  }

  .navbar2_menu.is-page-height-tablet {
    background-color: #f7f7f7;
    background-image: none;
    padding-bottom: 6rem;
  }

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

  .footer4_link-list {
    grid-column-gap: 0px;
    grid-row-gap: 1.5rem;
    grid-auto-flow: row;
    justify-items: center;
  }

  .footer4_bottom-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
    justify-items: center;
    padding-bottom: 1rem;
  }

  .layout_item_div {
    grid-row-gap: 1.5em;
    flex-direction: column;
  }

  .layout228_component {
    grid-row-gap: 6.25rem;
    grid-template-columns: 1fr;
  }

  .cta53_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template: "Area"
                   "."
                   / minmax(200px, 1fr);
  }

  .cta53_card {
    padding: 2rem;
  }

  .body {
    font-size: .95em;
  }

  .image-google {
    padding-bottom: 0;
  }

  .arrow_1 {
    max-width: 80vw;
    margin-right: 0;
  }

  .link_google {
    margin-top: 19px;
  }

  .header1_component {
    grid-row-gap: 3rem;
  }

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

  .padding-section-large-4.second {
    padding-top: 0;
  }

  .padding-global-4 {
    padding-left: 1.6em;
    padding-right: 1.6em;
  }

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

  .logo3_logo {
    max-height: 3rem;
  }

  .logo3_wrapper {
    padding: .75rem 1rem;
  }

  .logo3_list {
    grid-column-gap: 1rem;
    grid-template-columns: 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem;
    padding-top: 0;
  }

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

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

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

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

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

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

  .logo1_logo {
    max-height: 3rem;
  }

  .logo1_component {
    padding-top: 1rem;
  }

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

  .form-field-2col.is-mobile-1col {
    grid-template-columns: 1fr;
  }

  .content6_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
    margin-top: -3.975em;
  }

  .portfolio6-gallery_row {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .portfolio-header_metatag-list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

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

  .portfolio6-gallery_lightbox-link.asd {
    padding-top: 3px;
  }

  .portfolio-gallery_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .layout350_content {
    height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

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

  .section_features {
    overflow: hidden;
  }

  .layout350_mobile-image {
    border-radius: 24px;
    position: static;
  }

  .layout350_mobile-image-wrapper {
    width: 100%;
    margin-top: 2.5rem;
    display: block;
  }

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

  .text-gradient-dark {
    margin-top: 1.9rem;
  }

  .layout414_image-wrapper {
    width: 40vw;
  }

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

  .section_responsive {
    margin-top: 0;
    overflow: hidden;
  }

  .home_work_item {
    width: 85vw;
    margin-left: 0%;
    margin-right: 0%;
  }

  .home_work_scroll-wrapper {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    justify-content: flex-start;
    width: auto;
    margin-left: 5%;
    margin-right: 5%;
  }

  .button-12 {
    text-align: center;
    flex-wrap: wrap;
  }

  .home_work_component {
    height: 20rem;
  }

  .work-descr {
    align-self: end;
    margin-top: auto;
    padding-top: 0;
  }

  .horizontal-scroll {
    flex-direction: column;
    flex: 0 auto;
    align-items: flex-start;
    width: 100%;
    max-width: 380px;
  }

  .scroll {
    height: auto;
  }

  .wrapper {
    padding-bottom: 200px;
  }

  .section-3 {
    justify-content: center;
    height: auto;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
  }

  .video-wrapper {
    width: 100%;
    min-width: auto;
    height: 15rem;
  }

  .col {
    grid-row-gap: 0px;
    flex: 0 auto;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    min-height: auto;
    margin-top: 0;
    margin-bottom: 100px;
  }

  .section-4, .section-5 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .navbar15_container {
    min-height: 4rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .navbar15_menu-link-wrapper {
    padding: 1.25rem;
  }

  .navbar15_component {
    margin-top: 1.25rem;
  }

  .wrapper_lottie {
    width: 10%;
    left: 45%;
    right: 45%;
  }

  .hover_title {
    font-size: 2.1em;
  }

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

  .header82_content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

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

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

  ._2-col-wrapper {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

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

  .container-large-12 {
    width: 90vw;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .layout486_content-left {
    display: none;
    position: static;
  }

  .layout486_number {
    font-size: 6rem;
  }

  .layout486_number.show-mobile-landscape {
    margin-top: 2.5rem;
    display: flex;
  }

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

  .layout486_content {
    height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

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

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

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

  p {
    font-size: 1.05em;
  }

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

  .container-large.is-projecst {
    padding-bottom: 57px;
  }

  .container-large.is-sd {
    padding-bottom: 126px;
  }

  .main-wrapper.is--contact {
    overflow: hidden;
  }

  .padding-xsmall {
    padding-left: 0;
  }

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

  .margin-top.margin-small {
    padding-bottom: 1.25em;
  }

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

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

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

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

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

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

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

  .padding-bottom.padding-xhuge.is--dafuer {
    padding-bottom: 0;
  }

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

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

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

  .padding-vertical.padding-medium {
    padding-top: 2em;
  }

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

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

  .text-size-medium, .text-size-medium.darkmode {
    text-align: left;
  }

  .text-size-medium.text-color-white {
    text-align: center;
  }

  .heading-style-h2 {
    font-size: 2.25em;
  }

  .heading-style-h2.is-profil {
    text-align: center;
  }

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

  .heading-style-h1.text-align-left {
    text-align: center;
  }

  .form-checkbox-icon {
    margin-right: .8em;
  }

  .form-checkbox-label.text-size-small {
    color: #4d4d4d;
  }

  .button {
    width: 80%;
    padding-top: .95em;
    padding-bottom: .85em;
  }

  .button.is-secondary {
    margin-right: 0;
    padding-top: .82em;
    padding-bottom: .72em;
  }

  .button.is-secondary.is-alternate {
    width: 90%;
    margin-right: 0;
    display: block;
  }

  .button.is-secondary.is-alternate.is-100 {
    width: 100%;
  }

  .button.is-secondary.is-icon.is-alternate.is-100 {
    display: flex;
  }

  .button.is-small {
    display: block;
  }

  .button.is-alternate {
    white-space: nowrap;
    width: 100%;
    position: static;
  }

  .button.is--100 {
    width: 100%;
  }

  .button.is-navbar {
    width: 60%;
    padding-top: .8em;
    padding-bottom: .8em;
    font-size: 1.1em;
    display: inline-block;
  }

  .heading-style-h4 {
    word-break: normal;
    font-size: 1.9em;
  }

  .heading-style-h4.is-brake {
    overflow-wrap: anywhere;
  }

  .text-size-regular, .text-size-regular.darkmode, .text-size-regular.darkmode {
    font-size: 1.2em;
  }

  .text-color-white.is--cta {
    font-size: 3em;
  }

  .form-checkbox {
    padding-left: 1.25em;
  }

  .text-size-large {
    text-align: center;
    padding-left: 0;
    font-size: 1.3em;
  }

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

  .text-size-large.text-align-left.text-color-grey400.is-mobile, .text-size-large.text-align-left.is-mobile {
    font-size: 1em;
  }

  .padding-global {
    margin-left: auto;
    margin-right: auto;
  }

  .padding-section-large, .padding-section-large.is--bigger-bottom {
    padding-top: 6em;
    padding-bottom: 6em;
  }

  .padding-section-large.is-bigger-top {
    padding-top: 8em;
  }

  .padding-section-large.is--smaler-bottom.is--special {
    padding-top: 8.2em;
  }

  .padding-section-large.is-smaller.is-special {
    padding-bottom: 0;
  }

  .padding-section-large.is-smaler-top.fghjukk {
    padding-bottom: 3.9em;
  }

  .padding-section-large.is--nobottom {
    padding-bottom: 0;
  }

  .padding-section-large.is--nobottom.is-other {
    padding-top: 0;
  }

  .padding-section-large.is-portfolio {
    padding-top: 7em;
    padding-bottom: 0;
  }

  .padding-section-large.is--notop {
    padding-bottom: 6em;
  }

  .padding-section-large.is-ladung.is-other {
    padding-top: 3em;
  }

  .padding-section-large.is-ladung.is-more {
    padding-top: 0;
    padding-bottom: 0;
  }

  .padding-section-large.is-hero {
    padding-bottom: 0;
  }

  .padding-section-large.is-hero.asd {
    padding-top: 4em;
  }

  .padding-section-large.is--other {
    padding-top: 0;
  }

  .padding-section-large.is--other._2 {
    padding-bottom: 6em;
  }

  .navbar2_component {
    z-index: 3333;
  }

  .navbar2_link {
    color: var(--gray400);
  }

  .navbar2_link.is-toppadding {
    color: var(--gray400);
    padding-bottom: 0;
    font-size: 1.7em;
  }

  .navbar2_dropdown-link.is--small, .navbar2_dropdown-link.is--small.w--current {
    width: 100%;
  }

  .dropdown-icon-2 {
    color: var(--gray400);
    justify-content: center;
    align-items: center;
    margin-top: .4rem;
  }

  .navbar2_dropdwn-toggle.services {
    padding-bottom: .8em;
    font-size: 1.1em;
  }

  .navbar2_dropdwn-toggle.services.w--open {
    color: var(--gray400);
  }

  .navbar2_menu.is-page-height-tablet {
    padding-top: 7%;
  }

  .navbar2_menu-dropdown {
    font-size: 1.4em;
  }

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

  .button-group-2 {
    justify-content: center;
  }

  .footer4_link-list {
    margin-bottom: 0;
  }

  .footer4_legal-link {
    font-size: 1em;
  }

  .footer4_link.hover-underline-animation {
    font-size: 1.2em;
  }

  .layout_item_div {
    flex-direction: column;
  }

  .layout228_component {
    grid-row-gap: 6em;
    grid-template-columns: 1fr;
  }

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

  .cta53_component {
    grid-template-rows: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .body {
    font-size: 1em;
  }

  .navbar_logo_online-dot {
    width: .8em;
    height: .8em;
  }

  .rating-icons.is--contact {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .image-google {
    padding-bottom: 10px;
  }

  .arrow_1 {
    max-width: 40vw;
    margin-bottom: -31px;
    margin-left: -48px;
    padding-top: 35px;
  }

  .arrow_1.is-contact {
    margin-bottom: -70px;
    padding-top: 0;
  }

  .arrow_1.is-mainsite {
    max-width: 50vw;
    margin-bottom: 31px;
    margin-left: -17px;
    padding-top: 0;
  }

  .link_google {
    margin-top: 0;
  }

  .div-block-10 {
    font-size: .8rem;
  }

  .header1_component {
    grid-column-gap: 5em;
    grid-row-gap: 3em;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .container-large-3.hero {
    height: 85vh;
    margin-top: -7.8em;
  }

  .datenschutz {
    padding-top: 44px;
  }

  .padding-section-large-4 {
    height: 100%;
    padding-top: 2.8em;
  }

  .padding-section-large-4.second {
    margin-top: 0;
    padding-top: 4em;
    padding-bottom: 0;
  }

  .padding-global-4 {
    padding-left: 2em;
    padding-right: 2em;
  }

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

  .section_h1 {
    display: block;
  }

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

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

  .logo3_list {
    justify-content: center;
  }

  .container-large-9 {
    padding-top: 123px;
  }

  .container-large-9.projekt {
    padding-top: 0;
  }

  .padding-section-large-5.is--hero {
    padding-top: 7.2rem;
  }

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

  .button-group-4 {
    justify-content: center;
  }

  .padding-section-large-7 {
    padding-top: 0;
  }

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

  .logo1_logo {
    max-width: 48%;
    max-height: 3.4rem;
  }

  .logo1_component {
    grid-column-gap: 0em;
    justify-content: center;
  }

  .blog13_author-wrapper {
    align-items: flex-end;
  }

  .blog13_author-text {
    display: none;
  }

  .contact6_form-block {
    margin-top: 80px;
  }

  .content6_component {
    grid-template-columns: 1fr;
    margin-top: .125em;
  }

  .contact6_form.shadow-xxlarge {
    padding: 30px;
  }

  .action-bar {
    grid-row-gap: 3em;
    flex-direction: column;
    padding-top: 1.25em;
  }

  .lottie-animation-3 {
    padding-top: 4px;
  }

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

  .text-block-3, .text-block-4, .text-block-dropper {
    color: var(--gray400);
  }

  .image-listando {
    max-width: 5em;
    display: block;
  }

  .portfolio-header_tag-list {
    grid-column-gap: .3em;
    grid-row-gap: 1em;
  }

  .portfolio6-gallery_image-wrapper-large.is-other {
    padding-top: 0%;
  }

  .portfolio6-gallery_lightbox-link.asd {
    padding-top: 0;
  }

  .content18_image-wrapper.is-small {
    flex-direction: column;
  }

  .content18_image.is-small {
    width: 100%;
  }

  .padding-global-portfolio {
    margin-left: auto;
    margin-right: auto;
  }

  .grid {
    grid-row-gap: 120px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .smartphone_image {
    padding-top: 20px;
    padding-bottom: 0;
  }

  .smartphone_image.is-last {
    margin-bottom: -112px;
  }

  .layout350_content {
    height: auto;
  }

  .layout350_content.is--first {
    padding-top: 0;
  }

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

  .layout414_image-wrapper {
    width: 60vw;
  }

  .image_wrapper {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
  }

  .image_handy.shadow-xlarge {
    border-radius: 8px;
  }

  .section_responsive {
    margin-top: 0;
  }

  .prototype_wrapper {
    width: 100%;
    height: 100%;
    margin-top: -110px;
  }

  .padding-section-huge {
    margin-top: 6em;
    margin-bottom: 6em;
  }

  .padding-section-huge.is--bigger-bottom {
    margin-top: 8em;
    margin-bottom: 8em;
  }

  .padding-section-huge.is--bullets-section {
    padding-top: 8em;
    padding-bottom: 8em;
  }

  .home_work_component {
    height: 32rem;
  }

  .home-list_text-wrapper {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .work-descr {
    align-self: end;
    width: auto;
    min-width: 100%;
    max-width: 200px;
    margin-top: 24px;
    padding-right: 32px;
  }

  .horizontal-scroll {
    max-width: 340px;
  }

  .scroll {
    height: auto;
  }

  .wrapper {
    padding-bottom: 4em;
  }

  .section-3 {
    padding-top: 8em;
  }

  .video-wrapper {
    min-height: 160px;
  }

  .col {
    grid-template-rows: auto auto;
  }

  .blog13_item-content-2 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .ellipse_dark-2 {
    display: none;
  }

  .container {
    padding: 3%;
  }

  .container.is-menu {
    padding-bottom: 8%;
  }

  .menu_wrap {
    font-size: 3vw;
  }

  .button-13 {
    width: 80%;
    padding-top: .95em;
    padding-bottom: .85em;
  }

  .button-13.is-small {
    display: block;
  }

  .wrapper_lottie {
    width: 10%;
    left: 45%;
    right: 45%;
  }

  .home_arrow {
    margin-left: -48px;
  }

  .wrapper_absatz {
    margin-bottom: 4em;
  }

  .hover_title {
    font-size: 1.9em;
  }

  .hover_number {
    font-size: 1em;
  }

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

  .layout484_text.is-profil {
    text-align: center;
  }

  .padding-global-6 {
    margin-left: auto;
    margin-right: auto;
  }

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

  .padding-section-large-9.no-top {
    padding-top: 0;
    padding-bottom: 7.7rem;
  }

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

  .layout486_content {
    height: auto;
  }

  .text-size-medium-6 {
    text-align: left;
  }

  .button-15 {
    width: 80%;
    padding-top: .95em;
    padding-bottom: .85em;
  }

  .button-15.is-secondary {
    margin-right: 0;
    padding-top: .82em;
    padding-bottom: .72em;
  }
}

#w-node-_308886fd-f3ec-8073-fd8b-42891c659436-c23020d7, #w-node-_308886fd-f3ec-8073-fd8b-42891c65943a-c23020d7, #w-node-_308886fd-f3ec-8073-fd8b-42891c659440-c23020d7, #w-node-_308886fd-f3ec-8073-fd8b-42891c659438-c23020d7, #w-node-_308886fd-f3ec-8073-fd8b-42891c659442-c23020d7, #w-node-_308886fd-f3ec-8073-fd8b-42891c65943c-c23020d7, #w-node-_308886fd-f3ec-8073-fd8b-42891c659434-c23020d7, #w-node-_308886fd-f3ec-8073-fd8b-42891c65943e-c23020d7, #w-node-_8564b1c2-7451-9c3f-4146-81c5003b2aca-c23020d7, #w-node-_8564b1c2-7451-9c3f-4146-81c5003b2acc-c23020d7, #w-node-_8564b1c2-7451-9c3f-4146-81c5003b2ace-c23020d7, #w-node-_8564b1c2-7451-9c3f-4146-81c5003b2ad0-c23020d7, #w-node-_8564b1c2-7451-9c3f-4146-81c5003b2ad2-c23020d7, #w-node-_8564b1c2-7451-9c3f-4146-81c5003b2ad4-c23020d7, #w-node-_8564b1c2-7451-9c3f-4146-81c5003b2ad6-c23020d7, #w-node-_8564b1c2-7451-9c3f-4146-81c5003b2ad8-c23020d7 {
  justify-self: center;
}

#w-node-f355ffd3-924f-05f3-1441-253de82fc3c4-c23020d7, #w-node-d1d82ef1-aafc-23c6-e624-26beb216297f-c23020d7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8f381592-e778-2150-1020-7b6747b9bdb9-47b9bdb3 {
  justify-self: start;
}

#w-node-_8f381592-e778-2150-1020-7b6747b9bdc9-47b9bdb3 {
  justify-self: end;
}

#w-node-_8f381592-e778-2150-1020-7b6747b9bddc-47b9bdb3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f8d99c4c-c06e-bef2-83d7-f38d13738b39-15a56d99 {
  justify-self: center;
}

#w-node-edd0b775-0b34-0172-a4a9-628115a56dad-15a56d99 {
  justify-self: end;
}

#w-node-_5d8c0a1b-e2f3-5bb1-7df0-29bb0d646e09-c23020e4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5d8c0a1b-e2f3-5bb1-7df0-29bb0d646e0b-c23020e4 {
  justify-self: center;
}

#w-node-_5d8c0a1b-e2f3-5bb1-7df0-29bb0d646e15-c23020e4 {
  justify-self: end;
}

#w-node-b288a40d-d692-51e1-e11f-214d163994c1-c23020e4, #w-node-b288a40d-d692-51e1-e11f-214d163994c2-c23020e4, #w-node-b288a40d-d692-51e1-e11f-214d163994d2-c23020e4, #w-node-b288a40d-d692-51e1-e11f-214d163994d3-c23020e4, #w-node-b288a40d-d692-51e1-e11f-214d163994d9-c23020e4, #w-node-b288a40d-d692-51e1-e11f-214d163994df-c23020e4, #w-node-_6999377f-bd2b-87a4-c520-c821245121ec-c23020e4, #w-node-ed110bf2-c834-a154-1739-7e4e1d5f97e6-c23020e4, #w-node-_101be8fc-8e87-7088-65b0-2cd703579718-c23020e4, #w-node-_101be8fc-8e87-7088-65b0-2cd70357971a-c23020e4, #w-node-_101be8fc-8e87-7088-65b0-2cd70357971c-c23020e4, #w-node-c837f122-7fec-c542-75e6-294246ba472e-c23020e4, #w-node-b656d370-5592-5b48-08bb-8beb38ff9597-c23020e4, #w-node-_15de8757-12f5-9586-5951-3125d62a98ef-c23020e4, #w-node-_31007c10-3629-f0be-7e15-e6e4309a99e8-c23020e4, #w-node-_7ddd4043-a54c-63ce-136e-f6cc2531c2ac-c23020e4, #w-node-_02ed1dd5-b07a-ebba-3a70-5cf1129db612-c23020e4, #w-node-_02b71dec-575a-068e-11f7-b90b59866c91-c23020e4, #w-node-_58115f1d-34cf-d61e-2698-62d6d6eecab9-c23020e4, #w-node-_58115f1d-34cf-d61e-2698-62d6d6eecabd-c23020e4, #w-node-_58115f1d-34cf-d61e-2698-62d6d6eecac0-c23020e4, #w-node-_58115f1d-34cf-d61e-2698-62d6d6eecac4-c23020e4, #w-node-_58115f1d-34cf-d61e-2698-62d6d6eecac5-c23020e4, #w-node-_58115f1d-34cf-d61e-2698-62d6d6eecac6-c23020e4, #w-node-_63424b69-30bf-431e-577f-06c61517f395-c23020e4, #w-node-_63424b69-30bf-431e-577f-06c61517f398-c23020e4, #w-node-_63424b69-30bf-431e-577f-06c61517f39c-c23020e4, #w-node-_63424b69-30bf-431e-577f-06c61517f39d-c23020e4, #w-node-_63424b69-30bf-431e-577f-06c61517f39f-c23020e4, #w-node-_63424b69-30bf-431e-577f-06c61517f3a0-c23020e4, #w-node-_63424b69-30bf-431e-577f-06c61517f3a1-c23020e4, #w-node-_23d2286b-8662-4b9d-ffed-374a63249c55-c23020e4, #w-node-b3f83eb1-642f-d75b-6da9-76253f264bfa-c23020e5, #w-node-ca9e0b59-53e7-fedd-fc6f-f5ccb844b5cd-c23020f2, #Contact-6-Checkbox.w-node-_17842ef1-117c-5f6e-c68b-f9c63ceff9d2-c23020f3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_55e3c538-31c2-cff3-5b6a-fbf93160542b-c23020f3 {
  justify-self: end;
}

#w-node-_8e376127-47cf-6157-2c77-e3a30805aed8-c23020f5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8e376127-47cf-6157-2c77-e3a30805aeda-c23020f5 {
  justify-self: center;
}

#w-node-_8e376127-47cf-6157-2c77-e3a30805aee4-c23020f5 {
  justify-self: end;
}

#w-node-_7f34465e-ab0f-8933-97d7-fc7b7d00b28b-c23020f5, #w-node-_7f34465e-ab0f-8933-97d7-fc7b7d00b28c-c23020f5, #w-node-_7f34465e-ab0f-8933-97d7-fc7b7d00b28d-c23020f5, #w-node-_7f34465e-ab0f-8933-97d7-fc7b7d00b28e-c23020f5, #w-node-_7f34465e-ab0f-8933-97d7-fc7b7d00b28f-c23020f5, #w-node-_7f34465e-ab0f-8933-97d7-fc7b7d00b290-c23020f5, #w-node-_7f34465e-ab0f-8933-97d7-fc7b7d00b291-c23020f5, #w-node-_7f34465e-ab0f-8933-97d7-fc7b7d00b292-c23020f5, #w-node-_7f34465e-ab0f-8933-97d7-fc7b7d00b294-c23020f5, #w-node-_7f34465e-ab0f-8933-97d7-fc7b7d00b295-c23020f5, #w-node-_7f34465e-ab0f-8933-97d7-fc7b7d00b296-c23020f5, #w-node-_7f34465e-ab0f-8933-97d7-fc7b7d00b297-c23020f5, #w-node-_7f34465e-ab0f-8933-97d7-fc7b7d00b298-c23020f5, #w-node-_7f34465e-ab0f-8933-97d7-fc7b7d00b299-c23020f5, #w-node-_7f34465e-ab0f-8933-97d7-fc7b7d00b29a-c23020f5, #w-node-_7f34465e-ab0f-8933-97d7-fc7b7d00b29b-c23020f5, #w-node-_10002396-6b3d-302d-0848-cf60e8e73131-c23020f5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_25970ead-3d8d-3768-11c0-36e0d8f9d378-c23020f5, #w-node-_25970ead-3d8d-3768-11c0-36e0d8f9d37e-c23020f5, #w-node-_25970ead-3d8d-3768-11c0-36e0d8f9d384-c23020f5, #w-node-_6f41b94d-9f9e-dffb-7870-d6848e8319eb-c23020f5, #w-node-_6f41b94d-9f9e-dffb-7870-d6848e8319f4-c23020f5, #w-node-_6f41b94d-9f9e-dffb-7870-d6848e8319fa-c23020f5, #w-node-_853dffc8-a54b-97eb-fe73-bea43c601516-c23020f5, #w-node-_853dffc8-a54b-97eb-fe73-bea43c60151f-c23020f5, #w-node-_4533abd6-4137-caee-e1b1-e8b2c4d62784-c23020fd, #w-node-_2d6441a2-25e5-90f9-7846-9afd16360e1b-c23020fd, #w-node-_4cc82826-7e9e-1c58-c334-3b97a6d90959-c23020fd, #w-node-_34bbae53-0c52-234f-8af1-fe9e232a3edb-c23020fd, #w-node-_34bbae53-0c52-234f-8af1-fe9e232a3ee1-c23020fd, #w-node-_34bbae53-0c52-234f-8af1-fe9e232a3ee7-c23020fd {
  align-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86205-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86207-c23020fe {
  justify-self: center;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621b-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621c-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86220-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86221-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86225-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86226-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622a-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622b-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622f-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86230-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86234-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86235-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8623f-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86240-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86244-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86245-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86249-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624a-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624e-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624f-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86253-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86254-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86258-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86259-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86263-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86264-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86268-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86269-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8626d-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8626e-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86272-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86273-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8627c-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8627d-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86286-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86287-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86299-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629a-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629e-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629f-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a3-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a4-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a8-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a9-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ad-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ae-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c2-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c3-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c7-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c8-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862dd-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862de-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e2-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e3-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e7-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e8-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ec-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ed-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f1-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f2-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f6-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f7-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862fb-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862fc-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86300-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86301-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86305-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86306-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86310-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86311-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86315-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86316-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8631a-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8631b-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86322-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86323-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86393-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86394-c23020fe {
  justify-self: start;
}

#w-node-_71b303cf-417d-3db9-351e-ff405773ed84-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71b303cf-417d-3db9-351e-ff405773ed85-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8638e-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8638f-c23020fe {
  justify-self: start;
}

#w-node-af478acf-5cc9-69cb-5e87-db0c507cad12-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-af478acf-5cc9-69cb-5e87-db0c507cad13-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863a4-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863b0-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ba-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863bd-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863be-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c1-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c2-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c5-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c6-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ca-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863cd-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ce-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d1-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d2-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d5-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863dd-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863de-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863df-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863e1-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e4-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e5-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863e6-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ea-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ed-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ee-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ef-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863f3-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc863f7-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863f8-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863fe-c23020fe, #w-node-e9f171cc-11b4-0905-714d-593dc5e729cd-c23020fe, #w-node-e9f171cc-11b4-0905-714d-593dc5e729ce-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e9f171cc-11b4-0905-714d-593dc5e729cf-c23020fe {
  justify-self: start;
}

#w-node-e9f171cc-11b4-0905-714d-593dc5e729d3-c23020fe, #w-node-_803d93b2-f316-78e7-4b37-d40ff102217f-c23020fe, #w-node-_803d93b2-f316-78e7-4b37-d40ff1022180-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_803d93b2-f316-78e7-4b37-d40ff1022181-c23020fe {
  justify-self: start;
}

#w-node-_803d93b2-f316-78e7-4b37-d40ff1022187-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc86402-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86403-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86407-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640a-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640f-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc86410-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86411-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86415-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc86418-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc86419-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8641a-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86420-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc86423-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc86424-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86425-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8642b-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642e-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642f-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86430-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86438-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc8643b-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc8643c-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8643d-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86449-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc8644a-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8644b-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8644f-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc86454-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc86455-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86456-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8645c-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc86461-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc86462-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86463-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86469-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc8646e-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc8646f-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86470-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86478-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc8647e-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8647f-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86485-c23020fe, #w-node-bf202792-073b-d0b9-2e3f-1ac68c32701c-c23020fe, #w-node-bf202792-073b-d0b9-2e3f-1ac68c32701d-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bf202792-073b-d0b9-2e3f-1ac68c32701e-c23020fe {
  justify-self: start;
}

#w-node-bf202792-073b-d0b9-2e3f-1ac68c327022-c23020fe, #w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e1608-c23020fe, #w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e1609-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e160a-c23020fe {
  justify-self: start;
}

#w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e1610-c23020fe, #w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece1-c23020fe, #w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece2-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece3-c23020fe {
  justify-self: start;
}

#w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece9-c23020fe, #w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b7e-c23020fe, #w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b7f-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b80-c23020fe {
  justify-self: start;
}

#w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b88-c23020fe, #w-node-_0a1c269a-9c65-cac5-d78d-08680a95253d-c23020fe, #w-node-_0a1c269a-9c65-cac5-d78d-08680a95253e-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a1c269a-9c65-cac5-d78d-08680a95253f-c23020fe {
  justify-self: start;
}

#w-node-_0a1c269a-9c65-cac5-d78d-08680a952545-c23020fe, #w-node-ee513712-f44c-c02b-b1ea-6045fc69ab7c-c23020fe, #w-node-ee513712-f44c-c02b-b1ea-6045fc69ab7d-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee513712-f44c-c02b-b1ea-6045fc69ab7e-c23020fe {
  justify-self: start;
}

#w-node-ee513712-f44c-c02b-b1ea-6045fc69ab86-c23020fe, #w-node-_40872103-aff7-c010-da67-704a8f3f1108-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_40872103-aff7-c010-da67-704a8f3f1109-c23020fe {
  justify-self: start;
}

#w-node-_40872103-aff7-c010-da67-704a8f3f110f-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc8648f-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc86490-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc86491-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86492-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86494-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc86497-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649b-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649c-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649d-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a6-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a7-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a8-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b1-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b2-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b3-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864b4-c23020fe {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864ba-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc864bb-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc864bc-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864bd-c23020fe {
  justify-self: start;
}

#w-node-da163454-3d7f-a6d2-8037-3b46b9c50abd-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c3-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c4-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c5-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864c6-c23020fe, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c8-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369290-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369294-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369295-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369297-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369299-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929a-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929c-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929e-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929f-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a1-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a3-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a4-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a6-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a8-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a9-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ab-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ad-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ae-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b0-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b2-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b3-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b5-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b6-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b8-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b9-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bb-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bc-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692be-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bf-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c1-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c2-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c4-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c5-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c7-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692cd-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d1-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d2-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d4-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d6-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d7-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d9-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692db-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692dc-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692de-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e0-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e1-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e3-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e5-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e6-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e8-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ea-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692eb-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ed-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ef-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f0-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f2-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f4-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f5-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f7-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f9-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fa-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fc-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fe-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ff-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369301-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369303-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369304-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369306-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930b-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930f-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369311-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369314-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369319-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936931e-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369323-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369328-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936932f-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369330-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369332-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369333-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369335-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369336-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369338-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369339-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933b-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933c-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933e-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933f-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369341-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369342-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369344-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369345-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369347-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369348-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934a-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934b-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934d-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934e-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369350-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369351-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369353-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369354-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369356-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369357-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369359-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935a-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935c-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935d-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935f-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369360-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369362-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369363-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369365-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369366-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369368-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369369-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936b-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936c-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936e-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936f-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369371-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369372-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369374-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369375-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369377-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369378-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937a-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937b-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937d-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937e-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369380-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369381-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369383-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369384-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369386-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369387-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936938c-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369390-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369392-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369395-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939a-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939f-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a4-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a9-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b0-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b1-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b3-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b4-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b6-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b7-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b9-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ba-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bc-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bd-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bf-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c0-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c2-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c3-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c5-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c6-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c8-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c9-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cb-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cc-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ce-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cf-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d1-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d2-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d4-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d5-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d7-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d8-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693da-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693db-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693dd-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693de-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e0-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e1-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e3-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e4-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e6-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e7-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e9-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ea-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ec-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ed-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ef-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f0-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f2-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f3-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f5-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f6-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f8-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f9-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fb-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fc-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fe-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ff-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369401-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369402-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369404-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369405-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369407-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369408-c23020fe, #w-node-aba73718-5f03-827e-9e0b-61449dc1d37c-c23020fe, #w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448f8-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448f9-c23020fe {
  justify-self: start;
}

#w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448fb-c23020fe, #w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448fc-c23020fe, #w-node-_16994295-7a31-57da-1001-8ec0ea846a1e-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_16994295-7a31-57da-1001-8ec0ea846a1f-c23020fe {
  justify-self: start;
}

#w-node-_16994295-7a31-57da-1001-8ec0ea846a21-c23020fe, #w-node-_16994295-7a31-57da-1001-8ec0ea846a22-c23020fe, #w-node-_8f691932-76bb-1979-3d19-a80adf0a25f2-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8f691932-76bb-1979-3d19-a80adf0a25f3-c23020fe {
  justify-self: start;
}

#w-node-_8f691932-76bb-1979-3d19-a80adf0a25f5-c23020fe, #w-node-_8f691932-76bb-1979-3d19-a80adf0a25f6-c23020fe, #w-node-f28919c2-e180-d075-d1c2-81b601b8a964-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f28919c2-e180-d075-d1c2-81b601b8a965-c23020fe {
  justify-self: start;
}

#w-node-f28919c2-e180-d075-d1c2-81b601b8a967-c23020fe, #w-node-f28919c2-e180-d075-d1c2-81b601b8a968-c23020fe, #w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b3-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b4-c23020fe {
  justify-self: start;
}

#w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b6-c23020fe, #w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b7-c23020fe, #w-node-ee961e8d-845a-edc3-3307-509470022457-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee961e8d-845a-edc3-3307-509470022458-c23020fe {
  justify-self: start;
}

#w-node-ee961e8d-845a-edc3-3307-50947002245a-c23020fe, #w-node-ee961e8d-845a-edc3-3307-50947002245b-c23020fe, #w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e1-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e2-c23020fe {
  justify-self: start;
}

#w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e4-c23020fe, #w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e5-c23020fe, #w-node-_626bd165-37fe-b21e-713f-accb16c57414-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_626bd165-37fe-b21e-713f-accb16c57415-c23020fe {
  justify-self: start;
}

#w-node-_626bd165-37fe-b21e-713f-accb16c57417-c23020fe, #w-node-_626bd165-37fe-b21e-713f-accb16c57418-c23020fe, #w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f40-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f41-c23020fe {
  justify-self: start;
}

#w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f43-c23020fe, #w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f44-c23020fe, #w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee5-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee6-c23020fe {
  justify-self: start;
}

#w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee8-c23020fe, #w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee9-c23020fe, #w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe33-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe34-c23020fe {
  justify-self: start;
}

#w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe36-c23020fe, #w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe37-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fa-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fe-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694ff-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369503-c23020fe, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369505-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369506-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950a-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950b-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950f-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369510-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369514-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369515-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369519-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951a-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951e-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951f-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369523-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369524-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369528-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369529-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952d-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952e-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369532-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369533-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369536-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369537-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953a-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953b-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953f-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369540-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369544-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369545-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369549-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954a-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954e-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954f-c23020fe {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369553-c23020fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369554-c23020fe {
  justify-self: start;
}

#w-node-_69f7f5b5-51aa-5e76-c740-7f104444aabf-b13bbf8a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_69f7f5b5-51aa-5e76-c740-7f104444aac1-b13bbf8a {
  justify-self: center;
}

#w-node-_69f7f5b5-51aa-5e76-c740-7f104444aac9-b13bbf8a {
  justify-self: end;
}

#w-node-_7f6ab4a7-5054-a32f-9b7e-ea0f9094c512-b13bbf8a, #w-node-daad8623-024b-5623-bfcb-6c5eb0aef307-b13bbf8a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_8f381592-e778-2150-1020-7b6747b9bdb9-47b9bdb3, #w-node-_8f381592-e778-2150-1020-7b6747b9bdc9-47b9bdb3 {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_8f381592-e778-2150-1020-7b6747b9bdb9-47b9bdb3 {
    order: 0;
  }

  #w-node-_8f381592-e778-2150-1020-7b6747b9bdbe-47b9bdb3, #w-node-_622067a5-3214-696a-369a-f788775cecf2-47b9bdb3, #w-node-b11704d6-8769-d81d-ddef-b16b6f001e19-c23020fd {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_8f381592-e778-2150-1020-7b6747b9bdb9-47b9bdb3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_55e3c538-31c2-cff3-5b6a-fbf93160542b-c23020f3 {
    justify-self: center;
  }

  #w-node-_7f34465e-ab0f-8933-97d7-fc7b7d00b28b-c23020f5, #w-node-_7f34465e-ab0f-8933-97d7-fc7b7d00b291-c23020f5 {
    order: 9999;
  }
}


@font-face {
  font-family: 'PP Neue Montreal';
  src: url("/assets/fonts/ppneuemontreal-medium.woff2") format('woff2'), url("/assets/fonts/ppneuemontreal-medium.woff") format('woff'), url("/assets/fonts/ppneuemontreal-medium.ttf") format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Neue Montreal';
  src: url("/assets/fonts/ppneuemontreal-semibold.woff2") format('woff2'), url("/assets/fonts/ppneuemontreal-semibold.woff") format('woff'), url("/assets/fonts/ppneuemontreal-semibold.ttf") format('truetype'), url("/assets/fonts/ppneuemontreal-semibold.otf") format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Neue Montreal ';
  src: url("/assets/fonts/ppneuemontreal-medium.otf") format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}