@font-face {
  font-family: Linotype helveticaneueltstd bd;
  src: url('../fonts/Linotype---HelveticaNeueLTStd-Bd.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Linotype helveticaneueltstd lt;
  src: url('../fonts/Linotype---HelveticaNeueLTStd-Lt.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Linotype helveticaneueltstd md;
  src: url('../fonts/Linotype---HelveticaNeueLTStd-Md.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Linotype helveticaneueltstd roman;
  src: url('../fonts/Linotype---HelveticaNeueLTStd-Roman.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Linotype helveticaneueltstd hv;
  src: url('../fonts/Linotype---HelveticaNeueLTStd-Hv.otf') format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Linotype helveticaneueltstd ultlt;
  src: url('../fonts/Linotype---HelveticaNeueLTStd-UltLt.otf') format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

:root {
  --hover-grey: #8b8b8b;
  --silver: #c1c1c1;
  --gainsboro: #ddd;
  --white: white;
  --black: black;
  --pink: #f4cbe4;
  --steel-blue: #eff2f7;
  --salmon: #ff8b7b;
  --white-2: white;
  --light-steel-blue: #cad9e8;
  --pale-turquoise: #beeade;
  --alice-blue: #eff3f7;
  --lavender: #d9d5e6;
  --khaki: #fafa7a;
}

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

body {
  color: #000;
  letter-spacing: .5px;
  font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 37px;
}

h1 {
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
}

h2 {
  margin-top: 0;
  margin-bottom: 35px;
  font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 37px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

p {
  margin-bottom: 10px;
}

a {
  box-shadow: inset 0 -2px 0 -1px var(--hover-grey);
  color: var(--hover-grey);
  text-decoration: none;
  transition: box-shadow .2s, color .2s;
}

a:hover {
  box-shadow: none;
  color: var(--silver);
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 22px;
  font-size: 17px;
  line-height: 27px;
}

img {
  display: inline-block;
}

strong {
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-weight: 700;
}

.page-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}

.bg-elements-wrapper {
  justify-content: space-between;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
}

.bg-elements-col {
  flex-direction: column;
  flex: 1;
}

.shape-1 {
  background-color: #000;
  border-radius: 265px;
  align-self: flex-end;
  width: 265px;
  height: 265px;
  position: absolute;
  inset: 430px -153px auto auto;
}

.header-nav {
  z-index: 1000;
  border-bottom: 1px solid var(--gainsboro);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100vw;
  height: 130px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  position: relative;
}

.header-nav.alternative {
  display: none;
}

.header-nav.blank {
  border-bottom-style: none;
  height: auto;
}

.header-line {
  background-color: #000;
  width: 100%;
  height: 12px;
  position: absolute;
  inset: 0 0 auto;
}

.logo-link {
  box-shadow: none;
  cursor: pointer;
  justify-content: flex-start;
  height: 73px;
  margin-top: 32px;
  transition: opacity .2s;
  display: flex;
}

.logo-link:hover {
  opacity: .6;
}

.logo-link.w--current {
  margin-top: 32px;
}

.logo-img {
  width: auto;
  height: 100%;
}

.container-md {
  width: 100%;
  max-width: 1410px;
}

.container-md.pad-left-64 {
  padding-left: 64px;
}

.container-md.pad-left-64.flex-horizontal {
  padding-left: 110px;
  padding-right: 80px;
  display: flex;
}

.container-md.pad-left-64.border-top {
  border-top: 1px solid var(--gainsboro);
  border-top: 1px solid #ddd;
}

.container-md.flex-center {
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin-left: 36px;
  margin-right: 36px;
  display: flex;
}

.container-md.footer {
  min-height: 240px;
}

.container-md.flex {
  display: flex;
}

.container-md.flex.content {
  margin-top: 95px;
}

.container-md.cookie {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.container-md.img-detail {
  padding-top: 60px;
}

.container-md.right {
  align-items: center;
  padding-left: 100px;
  padding-right: 114px;
  display: flex;
}

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

.container-md.right.alt.personen {
  padding-right: 35px;
}

.container-md.left {
  align-items: center;
  padding-left: 110px;
  padding-right: 50px;
  display: flex;
}

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

.container-md.left.alt.personen {
  padding-left: 35px;
}

.container-md.margin-top-bottom {
  margin-top: 100px;
}

.container-md.margin-top-bottom.last {
  margin-bottom: 100px;
}

.container-md.accordeons {
  max-width: 750px;
}

.container-md.border-top {
  border-top: 1px solid #ddd;
}

.container-sm {
  max-width: 1006px;
  margin-left: 0;
  margin-right: 0;
  position: relative;
}

.container-sm.pd-bottom-180 {
  padding-bottom: 180px;
}

.container-lg {
  flex: 1;
  max-width: 1472px;
  padding-left: 36px;
  padding-right: 36px;
}

.container-lg.borders {
  border-right: 1px solid var(--gainsboro);
  border-left: 1px solid var(--gainsboro);
  flex: 1;
  margin-left: 0;
  margin-right: 0;
  padding-left: 36px;
  padding-right: 36px;
}

.container-lg.borders.flex-vertical.type-a {
  border-left-style: none;
  border-right-style: none;
  align-items: center;
}

.container-lg.borders.flex-vertical.type-b {
  padding-top: 170px;
}

.container-lg.header {
  flex-direction: row;
  flex: 1;
  justify-content: flex-start;
  align-self: stretch;
  align-items: flex-start;
  height: 100%;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.container-lg.header.borders {
  border-left-style: none;
  border-right-style: none;
  align-self: stretch;
  align-items: center;
}

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

.container-lg.breadcrumb {
  justify-content: space-between;
  padding-left: 35px;
  padding-right: 35px;
  display: flex;
}

.container-lg.white-bg.no-borders {
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.container-lg.borders {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  flex: 1;
  margin-left: 0;
  margin-right: 0;
  padding-left: 36px;
  padding-right: 36px;
}

.container-lg.borders.flex-vertical {
  flex-direction: column;
  align-items: stretch;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.hero-section {
  color: #000;
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
}

.hero-section.border-bottom {
  z-index: 1;
  z-index: 1;
  z-index: 1;
  border-bottom: 1px solid #ddd;
  flex-direction: column;
  align-items: stretch;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  position: relative;
}

.hero-section.border-bottom.type-2 {
  z-index: 100;
  padding-left: 0;
  padding-right: 0;
}

.home-heading {
  letter-spacing: .1rem;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 34px;
  font-size: 22px;
  line-height: 30px;
}

.home-sub {
  letter-spacing: .05rem;
  margin-right: 50px;
  font-family: Linotype helveticaneueltstd lt, Arial, sans-serif;
  font-size: 68px;
  line-height: 85px;
}

.home-lg {
  font-size: 74px;
}

.intro-sidebar {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 60px;
  display: flex;
}

.anchor-text {
  align-self: center;
  padding-top: 5px;
}

.anchor-link {
  box-shadow: none;
  color: var(--hover-grey);
  justify-content: flex-start;
  text-decoration: none;
  display: flex;
}

.anchor-link.first {
  box-shadow: none;
  color: var(--black);
  cursor: pointer;
}

.anchor-deco {
  justify-content: space-between;
  align-self: center;
  width: 66px;
  margin-right: 14px;
  display: flex;
}

.anchor-line {
  background-color: var(--hover-grey);
  align-self: center;
  width: 30px;
  height: 1px;
}

.anchor-line.first {
  background-color: var(--black);
}

.intro-content {
  margin-top: 135px;
  display: flex;
}

.hero-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 408px 50px;
  grid-template-columns: minmax(50px, auto) minmax(301px, 735px) minmax(301px, 735px) minmax(50px, auto);
  justify-content: stretch;
  margin-top: 80px;
}

.hero-grid.detail {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr minmax(301px, 735px) minmax(301px, 735px) 1fr;
  grid-auto-columns: 1fr;
  margin-top: 0;
  display: grid;
}

.hero-grid.video {
  grid-template-rows: .5fr 1fr 1fr 1fr .5fr;
}

.grid-content.yellow {
  background-color: var(--pink);
  width: 100%;
  height: 408px;
}

.grid-content.steelblue {
  background-color: var(--steel-blue);
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 408px;
  padding-left: 0;
  display: flex;
}

.grid-content.steelblue {
  background-color: #eff2f7;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 180px;
  padding-left: 0;
  display: flex;
}

.grid-content.steelblue.deco {
  background-color: #eff2f7;
  display: block;
}

.grid-content.yellow {
  background-color: #ff8b7b;
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.grid-content.yellow.deco {
  background-color: var(--salmon);
  display: block;
}

.container-full {
  max-width: 100%;
  position: relative;
}

.container-full.divider {
  border-top: 1px solid var(--gainsboro);
  border-bottom: 1px solid var(--gainsboro);
  background-color: var(--white-2);
  justify-content: center;
  max-width: 100vw;
  height: 80px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.container-full.pd-bottom-100 {
  justify-content: center;
  margin-bottom: 0;
  padding-bottom: 150px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.container-full.divider {
  background-color: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  justify-content: center;
  max-width: 100vw;
  height: 80px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.container-full.divider.no-borders {
  background-color: #0000;
  border-top-style: none;
  border-bottom-style: none;
  height: auto;
}

.claim {
  flex-wrap: wrap;
  margin: 117px 65px 35px 36px;
  font-family: Linotype helveticaneueltstd lt, Arial, sans-serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 45px;
  display: flex;
}

.section-label {
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.section-label.sm {
  flex: 0 auto;
  margin-top: 50px;
  margin-left: 65px;
  margin-right: 36px;
}

.section-label.margin-top-bottom {
  margin-top: 55px;
  margin-bottom: 80px;
}

.section-label-text {
  letter-spacing: 0;
  margin-bottom: 0;
  font-family: Linotype helveticaneueltstd md, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.section-label-text.sm {
  letter-spacing: .15rem;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.section-nr {
  color: #c9c9c9;
  font-family: Linotype helveticaneueltstd hv, Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 22px;
}

.section-nr.sm {
  color: #696969;
  font-size: 14px;
}

.intro-paragraph {
  letter-spacing: 0;
  max-width: 526px;
  margin-bottom: 75px;
  margin-left: 65px;
  margin-right: 36px;
  font-family: Linotype helveticaneueltstd lt, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
}

.content-grid-12 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-card-s-old {
  border-left: 1px solid var(--gainsboro);
  background-color: var(--white-2);
  box-shadow: none;
  color: var(--black);
  cursor: pointer;
  padding: 30px;
  text-decoration: none;
}

.grid-card-s-old.video-right {
  border-right: 1px solid var(--gainsboro);
  border-bottom: 1px none var(--gainsboro);
  cursor: auto;
  border-left-style: none;
}

.grid-card-s-old.video-left {
  border-bottom: 1px solid var(--gainsboro);
}

.grid-card-s-old.video-left.alt {
  cursor: auto;
  border-bottom-style: none;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.grid-card-quote-old {
  border-top: 1px none var(--gainsboro);
  border-bottom: 1px solid var(--gainsboro);
  border-left: 1px solid var(--gainsboro);
  background-color: var(--white-2);
  box-shadow: none;
  cursor: pointer;
  padding: 50px 65px 30px 30px;
}

.grid-card-quote-old.alt {
  border-bottom-style: none;
}

.grid-card-xl-old {
  border-right: 1px solid var(--gainsboro);
  border-bottom: 1px none var(--gainsboro);
  border-left: 1px solid var(--gainsboro);
  background-color: var(--white-2);
  box-shadow: none;
  color: #000;
  cursor: pointer;
  padding: 30px 30px 55px;
  text-decoration: none;
}

.grid-card-xl-old.alt {
  border-bottom-style: none;
}

.grid-card-l {
  border-left: 1px solid var(--gainsboro);
  box-shadow: none;
  cursor: pointer;
  padding: 30px 30px 55px;
}

.grid-card-m {
  border-right: 1px solid var(--gainsboro);
  border-left: 1px solid var(--gainsboro);
  box-shadow: none;
  cursor: pointer;
  padding: 30px;
}

.card-label-wrapper {
  z-index: 1;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 25px;
  display: flex;
  position: relative;
}

.card-label-wrapper.personen {
  margin-bottom: 0;
}

.card-label {
  color: #3e3e3e;
  letter-spacing: .05rem;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 14px;
}

.card-label.stage {
  margin-left: 39px;
  margin-right: 65px;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-weight: 700;
}

.card-category {
  color: var(--silver);
  letter-spacing: .05rem;
  text-transform: uppercase;
  margin-left: 30px;
  font-size: 10px;
  line-height: 14px;
}

.img-extra {
  z-index: 0;
  margin-top: 0;
  position: relative;
}

.card-teaser {
  letter-spacing: .05rem;
  font-size: 15px;
  line-height: 24px;
}

.card-teaser.truncate {
  height: 73px;
  overflow: hidden;
}

.card-teaser.card-arrow {
  font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
  font-weight: 400;
}

.card-teaser.card-arrow.button {
  width: 40px;
  margin-top: 0;
  margin-bottom: 3px;
}

.card-quote {
  color: var(--black);
  letter-spacing: 1px;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.card-quote.detail {
  letter-spacing: 1.2px;
  align-self: auto;
  margin-bottom: 35px;
  font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 46px;
}

.card-quote.detail.mobile {
  display: none;
}

.card-quote.quote-start {
  align-self: flex-start;
  margin-top: 8px;
  margin-bottom: 0;
  margin-right: 20px;
  font-family: Linotype helveticaneueltstd ultlt, Arial, sans-serif;
  font-size: 65px;
  font-weight: 100;
}

.card-quote.quote-end {
  align-self: flex-end;
  margin-bottom: 82px;
  font-family: Linotype helveticaneueltstd ultlt, Arial, sans-serif;
  font-size: 65px;
  font-weight: 100;
}

.img-mg-bottom-40 {
  margin-bottom: 40px;
}

.card-title {
  letter-spacing: .1rem;
  margin-top: 20px;
  margin-bottom: 14px;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
}

.quote-name {
  color: var(--black);
  letter-spacing: .1rem;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 16px;
}

.quote-label {
  margin-top: 25px;
  margin-bottom: 25px;
  display: flex;
}

.quote-divider {
  background-color: #000;
  flex: 0 auto;
  align-self: center;
  width: 38px;
  height: .5px;
  margin-left: -5px;
  margin-right: 0;
  transform: rotate(-45deg);
}

.card-arrow {
  transform-origin: 0%;
  color: #000;
  width: 46px;
  margin-top: 35px;
  line-height: 0;
  text-decoration: none;
  overflow: visible;
  transform: translate(0);
}

.banner-text {
  text-transform: uppercase;
  white-space: nowrap;
  flex: 0 auto;
  align-self: center;
  width: auto;
  margin-bottom: 0;
  margin-right: 25px;
  font-size: 51px;
  line-height: 72px;
  overflow: hidden;
}

.banner-bold {
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-weight: 700;
}

.track-horizontal-alt {
  white-space: nowrap;
  flex-wrap: nowrap;
  align-self: center;
  display: flex;
}

.stimmen-section {
  width: 100vw;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}

.zahlen-section.bg-steelblue {
  background-color: var(--steel-blue);
  background-color: #eff2f7;
  width: 100vw;
}

.slider-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 30% 30% 20% 20%;
  grid-template-columns: minmax(min-content, 1fr) minmax(min-content, 1fr) minmax(min-content, 1fr) minmax(min-content, 1fr);
  grid-auto-rows: 10%;
  max-width: 1472px;
}

.slider-content {
  padding: 25px;
}

.slider-content.bg-blue.empty {
  background-color: var(--light-steel-blue);
}

.slider-content.bg-yellow {
  background-color: var(--pale-turquoise);
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
}

.slider-content.bg-blue {
  background-color: #beeade;
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.slider-content.bg-white {
  background-color: #ff8b7b;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
}

.slider-content.bg-plum {
  background-color: #fafa7a;
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.number-lg {
  text-align: left;
  letter-spacing: normal;
  margin-bottom: -30px;
  font-size: 250px;
  line-height: 250px;
}

.number-lg.counter {
  margin-bottom: -52px;
  font-size: 177px;
}

.number-md {
  letter-spacing: normal;
  margin-bottom: -20px;
  font-family: Linotype helveticaneueltstd md, Arial, sans-serif;
  font-size: 185px;
  font-weight: 500;
  line-height: 185px;
}

.number-md.counter {
  margin-bottom: -28px;
  font-size: 137px;
}

.number-sm {
  letter-spacing: normal;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-size: 103px;
  font-weight: 700;
  line-height: 103px;
}

.number-sm.counter {
  font-size: 90px;
}

.number-description {
  width: auto;
  font-size: 20px;
  line-height: 34px;
}

.impressionen-section {
  width: 100vw;
  max-width: 100vw;
  position: relative;
}

.gallery-scroll-track {
  position: static;
  inset: 0;
}

.gallery-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 80px minmax(301px, 735px) minmax(301px, 735px) 80px;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: stretch;
  justify-items: stretch;
  width: 100vw;
  max-width: 100vw;
  height: auto;
  display: grid;
  position: static;
  top: 0;
}

.gallery-track {
  flex-direction: row;
  width: 210rem;
  height: auto;
  min-height: 750px;
  margin-top: 85px;
  margin-bottom: 41px;
  padding-bottom: 40px;
  padding-left: 36px;
  display: none;
  position: relative;
  left: 0;
  overflow: visible;
}

.gallery-wrapper {
  width: 100%;
  height: auto;
  position: static;
}

.imp-card-mid {
  align-self: flex-start;
  margin-top: 80px;
  margin-right: 0;
}

.imp-card-low {
  align-self: flex-end;
  margin-right: 0;
}

.imp-card-high {
  flex: none;
  align-self: flex-start;
  margin-right: 0;
}

.img-gallery-quer {
  width: 687px;
}

.img-gallery-quad {
  width: 461px;
}

.img-gallery-hoch {
  height: 546px;
  margin-left: 0;
}

.gallery-text-wrapper {
  align-items: flex-start;
  max-width: 350px;
  margin-top: 45px;
  display: flex;
}

.gallery-text-wrapper.detail {
  justify-content: flex-start;
  max-width: none;
  margin-top: 30px;
}

.gallery-text-wrapper.detail.slider-right {
  margin-bottom: 60px;
  margin-left: -50px;
}

.gallery-text-wrapper.detail.alt {
  margin-left: 45px;
  margin-right: 0;
}

.gallery-arrow {
  border-bottom: 1px none var(--hover-grey);
  color: var(--silver);
  object-fit: fill;
  flex: 0 auto;
  width: 30px;
  min-width: 30px;
  margin-top: 0;
  margin-left: 25px;
  margin-right: 20px;
  line-height: 0;
}

.gallery-arrow.detail {
  min-height: auto;
  margin-left: 0;
}

.gallery-arrow.detail.lightbox {
  color: var(--black);
  margin-right: 0;
  position: absolute;
  inset: auto 25px 25px auto;
}

.gallery-text {
  letter-spacing: .07rem;
  align-self: flex-start;
  width: 350px;
  max-width: 350px;
  margin-top: 4px;
  margin-bottom: 0;
  font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
  font-size: 12px;
  line-height: 19px;
}

.gallery-text.nav {
  text-align: left;
  text-transform: uppercase;
  align-self: center;
  width: auto;
  max-width: none;
  margin-top: 4px;
  margin-bottom: 0;
}

.gallery-text.detail-description {
  text-transform: uppercase;
  width: auto;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
}

.gallery-text.detail-description.grey.detail {
  margin-bottom: 45px;
}

.gallery-text.detail-description.type-b {
  margin-bottom: 50px;
}

.gallery-text.detail-description.grey {
  color: #c1c1c1;
  text-align: right;
}

.gallery-text.detail-description {
  text-transform: uppercase;
  flex: 0 auto;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
}

.gallery-text.detail {
  width: auto;
  max-width: 330px;
  margin-bottom: 0;
}

.gallery-track-wrapper {
  margin-top: 0;
}

.content-left {
  margin-top: 70px;
  margin-bottom: 135px;
}

.content-left.detail {
  margin-bottom: 25px;
}

.p-38 {
  letter-spacing: .12rem;
  align-self: flex-start;
  margin-bottom: 0;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 41px;
}

.p-38.instagram {
  text-transform: uppercase;
  margin-bottom: 90px;
}

.p-38.video-card {
  margin-right: 40px;
}

.p-38.personen {
  margin-bottom: 10px;
  font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
  font-weight: 400;
}

.p-38.accordeon {
  align-self: auto;
  font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
  font-weight: 400;
}

.p-38.accordeon-title {
  margin-bottom: 50px;
}

.p-38.gallery {
  max-width: 410px;
}

.p-20 {
  font-size: 20px;
  line-height: 34px;
}

.p-20.margin-left-100 {
  margin-top: 25px;
  margin-bottom: 0;
  margin-right: 100px;
  font-size: 16px;
  line-height: 24px;
}

.p-20.margin-left-100.personen {
  margin-right: 0;
}

.p-20.margin-left-100.personen.special {
  margin-top: 15px;
  font-size: 20px;
  line-height: 28px;
}

.p-20.margin-left-100.teaser {
  margin-right: 0;
}

.video-label-wrapper {
  width: 100%;
  display: flex;
}

.play-video {
  box-shadow: none;
  color: var(--black);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  min-width: 196px;
  min-height: 196px;
  display: flex;
}

.video-label {
  width: 100%;
  padding-top: 55px;
  padding-left: 45px;
  padding-right: 45px;
  display: flex;
}

.video-label.bg-yellow {
  background-color: var(--pink);
  background-color: #ff8b7b;
  padding-bottom: 0;
}

.regular {
  font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
  font-weight: 400;
}

.footer-section.bg-black {
  z-index: 100;
  background-color: #000;
  width: 100vw;
  max-width: 100vw;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
  position: relative;
}

.footer-section.bg-black.mobile-menu {
  display: none;
}

.image-wrapper {
  justify-content: center;
  align-items: center;
  height: 315px;
  max-height: 315px;
  display: flex;
  overflow: hidden;
}

.img_parallax {
  position: relative;
  top: -25%;
  bottom: 0%;
}

.instagram-img {
  box-shadow: none;
  cursor: pointer;
  flex: none;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  height: 0;
  padding-top: 50%;
  padding-bottom: 50%;
  transition: opacity .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.instagram-img:hover {
  opacity: .7;
}

.insta-list {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  width: 100%;
  height: 100%;
  display: grid;
}

.insta-list-wrapper {
  width: 100%;
  height: 100%;
  margin-bottom: 180px;
}

.insta-item {
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
}

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

.image-home-stage {
  flex: 1;
  min-width: auto;
  max-width: none;
  height: 100%;
  margin-left: 0;
  display: block;
}

.border-left {
  border-right: 1px solid var(--gainsboro);
}

.border-left.border-top {
  border-top: 1px solid var(--gainsboro);
  min-width: 50px;
}

.border-right {
  border-left: 1px solid var(--gainsboro);
}

.border-right.border-top {
  border-top: 1px solid var(--gainsboro);
  min-width: 50px;
}

.footer-text {
  color: #c1c1c1;
  align-self: auto;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 20px;
}

.footer-grid {
  grid-column-gap: 65px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto;
  grid-template-columns: min-content min-content 1fr;
  grid-auto-flow: row;
  margin-top: 75px;
  margin-bottom: 45px;
}

.footer-col {
  flex-direction: column;
  display: flex;
}

.footer-col.horizontal {
  flex-direction: row;
}

.footer-col.margin-bot {
  margin-bottom: 15px;
}

.footer-col.margin-bot.mobile {
  margin-bottom: 0;
}

.no-wrap {
  white-space: nowrap;
}

.footer-deco {
  background-color: #c1c1c1;
  width: 26px;
  height: 1px;
  margin-bottom: 35px;
}

.footer-deco.slanted {
  align-self: center;
  width: 38px;
  margin-bottom: 5px;
  transform: rotate(-45deg);
}

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

.nav-wrapper {
  box-shadow: none;
  color: #000;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  transition: color .2s;
  display: flex;
  position: absolute;
  inset: 30px 85px auto auto;
}

.nav-wrapper:hover {
  color: var(--hover-grey);
}

.nav-wrapper.negative {
  color: var(--steel-blue);
}

.nav-wrapper.negative:hover {
  color: var(--hover-grey);
}

.back-arrow {
  transform-origin: 100%;
  align-self: center;
  width: 26px;
  margin-top: 0;
  margin-right: 15px;
  line-height: 0;
}

.stage-image-lg {
  justify-content: center;
  width: 100vw;
  display: flex;
}

.img-description-wrapper {
  justify-content: space-between;
  width: 100%;
  padding: 35px 0 120px;
  display: flex;
}

.img-description-wrapper.detail {
  flex: 1;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 0;
  padding-left: 80px;
}

.img-description-wrapper.detail.var-02 {
  padding-left: 30px;
  padding-right: 30px;
}

.img-description-wrapper.detail.var-03 {
  padding-left: 0;
}

.img-description-wrapper.type-b {
  max-width: 670px;
}

.site-title {
  letter-spacing: 1.5px;
  text-transform: none;
  max-width: 680px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-size: 34px;
  line-height: 43px;
}

.site-title.mobile {
  display: none;
}

.site-title-wrapper {
  width: 100%;
  max-width: 680px;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}

.content-detail-section {
  z-index: 1;
  position: relative;
}

.sticky-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: 45px auto auto auto 100px;
  grid-template-columns: minmax(0, auto) minmax(auto, 570fr) minmax(100px, 100px);
  grid-auto-columns: 1fr;
  align-items: flex-end;
  display: grid;
  position: sticky;
  top: 0;
}

.img-1-wrapper {
  background-color: #0000;
  flex-direction: column;
  margin-bottom: 100px;
  margin-left: 80px;
  display: flex;
  position: relative;
}

.img-1-wrapper.alone {
  margin-bottom: 0;
}

.img-1-wrapper.with-interaction {
  cursor: pointer;
}

.img-2-wrapper {
  background-color: #0000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.detail-content {
  border-left: 1px solid var(--gainsboro);
}

.detail-content.no-border {
  border-left-style: none;
}

.sticky-track {
  border-bottom: 1px solid var(--gainsboro);
  height: 100%;
}

.richtext-wrapper {
  min-width: 301px;
  max-width: 735px;
  padding-left: 90px;
  padding-right: 80px;
}

.richtext-wrapper.standalone {
  min-width: auto;
  max-width: none;
  padding-left: 30px;
  padding-right: 0;
}

.richtext-wrapper.alt {
  padding-left: 0;
  padding-right: 0;
}

.richtext-wrapper.accordeon {
  min-width: auto;
  max-width: none;
  margin-bottom: 80px;
  padding-left: 0;
}

.richtext-wrapper h2 {
  letter-spacing: .8px;
  margin-top: 40px;
  margin-bottom: 25px;
}

.richtext-wrapper p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 27px;
}

.richtext-wrapper h4 {
  letter-spacing: .1rem;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 25px;
  font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
}

.richtext-wrapper h3 {
  margin-top: 40px;
  margin-bottom: 25px;
}

.content-segment-wrapper {
  border-bottom: 1px solid var(--gainsboro);
  padding-top: 55px;
  padding-bottom: 70px;
}

.content-segment-wrapper.no-border {
  border-bottom-style: none;
}

.content-segment-wrapper.hidden {
  display: none;
}

.richtext-lead {
  margin-bottom: 30px;
  font-family: Linotype helveticaneueltstd lt, Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

.richtext-paragraph {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 27px;
}

.richtext-zwischentitel {
  letter-spacing: .8px;
  margin-top: 40px;
  margin-bottom: 25px;
  font-size: 27px;
  line-height: 37px;
}

.quote-wrapper {
  margin-top: 45px;
  margin-bottom: 45px;
  display: flex;
}

.quote-wrapper.detail {
  margin-bottom: 80px;
}

.quote-wrapper.detail.title {
  margin-top: 0;
}

.left-wrapper {
  flex: 1;
  justify-content: flex-end;
  width: 100%;
  min-width: 301px;
  max-width: 735px;
  padding-left: 50px;
  display: flex;
}

.left-wrapper.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.img-wrapper-1 {
  margin-left: 50px;
  margin-right: 100px;
}

.img-wrapper-1.static {
  margin-left: 50px;
}

.img-1 {
  width: 100%;
}

.img-wrapper-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-height: 510px;
  margin-right: 100px;
  display: flex;
  overflow: hidden;
}

.img-wrapper-content.full {
  max-height: none;
  margin-right: 0;
  padding-right: 0;
}

.img-2 {
  width: 100%;
  max-width: none;
}

.sub-content-section {
  z-index: 1;
  border-top: 1px solid var(--gainsboro);
  justify-content: center;
  padding: 165px 80px 100px;
  display: flex;
  position: relative;
}

.slide-panel {
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.slide-panel.detail {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: minmax(90px, 1fr) auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 80px;
  display: grid;
}

.img-slide-detail {
  flex-direction: row;
  flex: 0 auto;
  justify-content: space-between;
  align-self: auto;
  align-items: flex-end;
  display: flex;
}

.share-btn-wrapper {
  justify-content: center;
  margin-top: 0;
  display: flex;
}

.social-share-btn {
  z-index: 100;
  box-shadow: none;
  color: #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 10px;
  transition: color .2s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.social-share-btn:hover {
  color: var(--hover-grey);
}

.social-icon {
  line-height: 0;
}

.shape-detail-01 {
  z-index: -100;
  width: 265px;
  height: 265px;
  display: none;
  position: absolute;
  inset: 115% auto auto -160px;
}

.shape-detail-01.home-video {
  top: 0%;
  left: auto;
}

.shape-detail-01.home-01 {
  overflow: hidden;
}

.imp-slider {
  background-color: #0000;
  width: 100%;
  height: 700px;
  display: block;
}

.imp-slide {
  min-height: 100%;
  margin-right: 80px;
}

.imp-slider-wrapper {
  padding-top: 100px;
  padding-bottom: 65px;
}

.imp-mask {
  margin-left: 80px;
  margin-right: 80px;
}

.imp-slider-left-arrow, .imp-slider-right-arrow {
  justify-content: center;
  align-items: center;
  margin-bottom: 65px;
  display: flex;
}

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

.slider-arrow-icon {
  width: 30px;
  line-height: 0;
}

.recommendation-section {
  border-top: 1px solid var(--gainsboro);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
}

.grid-rec {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-items: stretch;
  width: 100%;
  margin-bottom: 180px;
}

.rec-card {
  box-shadow: none;
  color: var(--black);
  flex: 1;
  text-decoration: none;
}

.rec-img {
  width: 100%;
}

.title-rec-wrapper {
  color: #7f7f7f;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 100px;
  margin-bottom: 75px;
  font-family: Linotype helveticaneueltstd hv, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
}

.img-3 {
  object-fit: cover;
  width: 100%;
  max-width: none;
}

.video-embed {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.stop-video {
  box-shadow: none;
  color: var(--black);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  min-width: 196px;
  min-height: 196px;
  display: none;
}

.video-wrapper {
  height: 0;
  padding-top: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}

.video-wrapper.stage {
  z-index: -10;
  aspect-ratio: 192 / 95;
  padding-bottom: 49.5%;
  overflow: visible;
}

.shape-detail-02 {
  display: none;
}

.quote-description-wrapper {
  justify-content: space-between;
  max-width: 1120px;
  margin-left: 44px;
  margin-right: 24px;
  padding: 100px 0 50px;
  display: flex;
}

.quote-description-wrapper.alt {
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 170px;
}

.site-quote-wrapper {
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: stretch;
  width: 100%;
  max-width: 680px;
  margin-bottom: 100px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: relative;
}

.site-quote.start {
  margin-bottom: 0;
  font-family: Linotype helveticaneueltstd ultlt, Arial, sans-serif;
  font-size: 78px;
  font-weight: 100;
  position: absolute;
  top: 3px;
  left: -35px;
}

.site-quote.end {
  margin-bottom: 0;
  font-family: Linotype helveticaneueltstd ultlt, Arial, sans-serif;
  font-size: 78px;
  font-weight: 100;
  position: absolute;
  bottom: 2px;
  right: -35px;
}

.header-02-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 50px minmax(301px, 735px) minmax(301px, 735px) 50px;
}

.header-02-img {
  justify-content: center;
  align-items: center;
  max-width: 960px;
  display: flex;
  overflow: hidden;
}

.header-02-wrapper {
  align-items: center;
  padding-left: 90px;
  display: flex;
}

.header-02-description-wrapper {
  justify-content: space-between;
  margin-left: 0;
  margin-right: 0;
  padding: 0 0 45px;
  display: flex;
}

.header-02-description-wrapper.part-2 {
  padding-top: 35px;
  padding-left: 40px;
}

.marquee-horizontal {
  z-index: 99;
  border-top: 1px solid var(--gainsboro);
  border-bottom: 1px none var(--gainsboro);
  background-color: var(--white-2);
  align-items: center;
  width: 100vw;
  max-width: 100vw;
  height: 275px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.track-horizontal-alt {
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  display: flex;
}

.shape-detail-03 {
  display: none;
}

.stage-slider {
  background-color: #0000;
  height: auto;
}

.slide-nav, .left-arrow, .right-arrow {
  display: none;
}

.stage-image {
  object-fit: cover;
  width: 100vw;
  min-width: 100vw;
  height: 100%;
}

.video-icon {
  width: 90px;
  height: 90px;
  line-height: 0;
}

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

.underline {
  background-color: var(--black);
  height: 1px;
}

.underline.white {
  background-color: var(--white);
  width: 0%;
}

.underline.menu {
  width: 30px;
  height: 1px;
  margin-top: 2px;
}

.footer-link-wrapper {
  box-shadow: none;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.footer-link-wrapper.first {
  margin-left: 0;
}

.footer-icon {
  color: var(--silver);
  width: 24px;
  margin-bottom: 5px;
  margin-right: 25px;
  line-height: 0;
}

.footer-icon.lg {
  width: 28px;
}

.footer-line-wrapper {
  box-shadow: none;
  white-space: nowrap;
  flex-direction: column;
  align-self: flex-start;
  align-items: flex-start;
  margin-top: 5px;
  margin-bottom: 5px;
  text-decoration: none;
  display: flex;
}

.footer-line-wrapper.icon {
  margin-top: 5px;
  margin-bottom: 5px;
}

.main-content {
  margin-top: 180px;
  margin-bottom: 55px;
  padding-left: 80px;
  padding-right: 80px;
}

.col-content {
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  margin-left: 35px;
  display: flex;
}

.col-content.first {
  margin-left: 0;
  display: flex;
}

.lauftext {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 27px;
}

.lauftext.cookie {
  color: #c1c1c1;
  flex: 1;
}

.lauftext-wrapper {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 80px;
  display: flex;
}

.web-link {
  box-shadow: none;
  color: var(--black);
  align-items: center;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.web-link:hover {
  color: var(--hover-grey);
}

.web-link-icon {
  transform-origin: 0%;
  color: var(--hover-grey);
  width: 27px;
  margin-bottom: 5px;
  margin-right: 20px;
  line-height: 0;
}

.quellenverzeichnis {
  margin-top: 35px;
  font-size: 12px;
  line-height: 19px;
}

.claim-text {
  margin-bottom: 0;
  padding-right: 15px;
}

.claim-text._01, .claim-text._02, .claim-text._03 {
  padding-top: 5px;
}

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

.utility-page-content {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  width: auto;
  margin-top: 120px;
  display: flex;
}

.page-content-wrapper {
  flex: 1;
  width: 100vw;
  max-width: 100vw;
  position: relative;
}

.cookie-banner-wrapper {
  z-index: 999999;
  background-color: var(--hover-grey);
  flex: none;
  justify-content: center;
  padding: 28px 80px 25px;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.cookie-close {
  color: #c1c1c1;
  width: 21px;
  height: auto;
  font-size: 0;
  line-height: 0;
  transition: color .2s;
}

.cookie-close:hover {
  color: var(--white);
}

.error-icon {
  color: var(--black);
  align-self: center;
  width: 100px;
  max-width: 100%;
  margin-bottom: 35px;
}

.heading-error {
  margin-bottom: 15px;
}

.card-quote-2 {
  color: #000;
  letter-spacing: 1px;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 46px;
}

.card-quote-2.detail {
  letter-spacing: 1.2px;
  align-self: auto;
  margin-bottom: 35px;
  font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 46px;
}

.card-quote-2.detail.mobile {
  display: none;
}

.card-quote-2.quote-start {
  align-self: flex-start;
  margin-bottom: 0;
  margin-right: 20px;
  font-family: Linotype helveticaneueltstd ultlt, Arial, sans-serif;
  font-size: 65px;
  font-weight: 100;
}

.card-quote-2.quote-end {
  align-self: flex-end;
  margin-bottom: 60px;
  font-family: Linotype helveticaneueltstd ultlt, Arial, sans-serif;
  font-size: 65px;
  font-weight: 100;
}

.sub-content-wrapper-section {
  border-top: 1px solid var(--gainsboro);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.sub-content-wrapper-section.no-line {
  border-top-style: none;
}

.sub-content-wrapper-section.no-margin {
  padding-bottom: 0;
}

.sub-content-wrapper-section.no-margin.no-line {
  border-top-style: none;
}

.sub-content-wrapper {
  padding-left: 80px;
  padding-right: 80px;
}

.sub-content-wrapper.alt {
  padding-left: 50px;
  padding-right: 50px;
  display: none;
}

.sub-content-wrapper.border-top {
  border-top: .5px solid var(--hover-grey);
}

.img-detail-sm {
  z-index: 9999;
  flex: 1;
  width: auto;
  max-width: 52%;
  position: relative;
  overflow: hidden;
}

.img-sm {
  object-fit: cover;
  width: 100%;
  max-width: none;
}

.img-sm.hide {
  display: none;
}

.img-sm-wrapper {
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.img-detail-wrapper {
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.img-detail-lg-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 80px minmax(301px, 735px) minmax(301px, 735px) 80px;
  width: 100%;
  margin-bottom: 80px;
}

.quote-detail-lg {
  max-width: 1120px;
}

.gallery-arrow-2 {
  color: #8b8b8b;
  border-bottom: 1px solid #8b8b8b;
  width: 30px;
  min-width: 30px;
  margin-top: 11px;
  margin-left: 25px;
  margin-right: 20px;
  line-height: 0;
}

.gallery-arrow-2.detail {
  min-height: auto;
  margin-left: 0;
}

.nav-menu {
  z-index: 100000;
  flex: 1;
  justify-content: flex-end;
  margin-top: 44px;
  margin-right: 0;
  position: relative;
}

.nav-link {
  box-shadow: none;
  margin-left: 20px;
  margin-right: 20px;
  transition: color .2s;
}

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

.nav-link.w--current {
  color: var(--black);
  box-shadow: inset 0 -2px 0 -1px #000;
}

.nav-link.sub {
  border-top: 1px solid var(--gainsboro);
  color: var(--hover-grey);
  align-items: center;
  min-height: 50px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.nav-link.sub:hover {
  background-color: var(--steel-blue);
  color: var(--black);
}

.nav-link.sub.w--current {
  box-shadow: none;
  color: var(--black);
}

.nav-link.sub.last {
  border-bottom-style: none;
}

.nav-link.sub.overview {
  display: none;
}

.nav-link.current {
  color: var(--black);
  box-shadow: inset 0 -2px 0 -1px #000;
}

.nav-link-text {
  font-size: 14px;
  line-height: 26px;
}

.nav-link-text.mobile, .mobile-menu-icon-wrapper {
  display: none;
}

.nav-link-wrapper {
  padding-bottom: 30px;
}

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

.nav-dropdown-trigger {
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-content {
  background-color: var(--white);
  flex-direction: column;
  width: 160px;
  height: auto;
  position: absolute;
  top: 85px;
  overflow: hidden;
  box-shadow: 0 2px 8px #0000001a;
}

.nav-link-sub {
  box-shadow: none;
  margin-left: 22px;
  margin-right: 22px;
  transition: color .2s;
}

.nav-link-sub:hover {
  color: var(--black);
}

.nav-link-text-sub {
  font-size: 14px;
  line-height: 26px;
}

.menu-link-section {
  justify-content: flex-end;
  margin-top: 0;
  display: flex;
}

.t-i-img-wrapper {
  object-fit: cover;
  justify-content: flex-start;
  align-items: center;
  max-height: 572px;
  transition: opacity .2s, box-shadow .2s, color .2s;
  display: flex;
  overflow: hidden;
}

.t-i-img-wrapper.link {
  box-shadow: none;
}

.t-i-img-wrapper.link:hover {
  opacity: .8;
}

.t-i-img-wrapper.high {
  max-height: none;
}

.image-text-bild {
  object-fit: fill;
  min-width: 100%;
  max-width: 100%;
}

.card-label-full {
  color: var(--black);
  letter-spacing: .1rem;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: 12px;
  line-height: 16px;
}

.text-card-full {
  color: var(--black);
  letter-spacing: .8px;
  font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 46px;
}

.text-card-full.detail {
  letter-spacing: 1.2px;
  align-self: auto;
  margin-bottom: 35px;
  font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 46px;
}

.text-card-full.detail.mobile {
  display: none;
}

.text-card-full.quote-start {
  align-self: flex-start;
  margin-bottom: 0;
  margin-right: 20px;
  font-family: Linotype helveticaneueltstd ultlt, Arial, sans-serif;
  font-size: 65px;
  font-weight: 100;
}

.text-card-full.quote-end {
  align-self: flex-end;
  margin-bottom: 75px;
  font-family: Linotype helveticaneueltstd ultlt, Arial, sans-serif;
  font-size: 65px;
  font-weight: 100;
}

.link-button-text {
  color: var(--black);
  letter-spacing: .5px;
  margin-right: 20px;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.card-link-button {
  box-shadow: none;
  justify-content: flex-start;
  align-items: center;
  margin-top: 25px;
  display: flex;
}

.card-link-button.content {
  margin-left: 90px;
  margin-right: 80px;
}

.card-text-wrapper-old {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.card-text-wrapper-old.special {
  margin-top: 0;
}

.text-img-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 50px minmax(251px, 685px) 50px 50px 50px minmax(251px, 685px) 50px;
}

.text-img-grid.symmetric {
  grid-template-columns: 50px minmax(251px, 685px) 75px 75px minmax(251px, 685px) 50px;
}

.full-bg-color-section.blue {
  background-color: var(--alice-blue);
  justify-content: center;
  display: flex;
}

.breadcrumb-section {
  z-index: 700;
  position: relative;
}

.breadcrumb-wrapper {
  display: flex;
  position: absolute;
  top: 35px;
}

.breadcrumb-wrapper.negative {
  color: #eff2f7;
}

.breadcrumb-link {
  box-shadow: none;
  color: var(--hover-grey);
  transition: color .2s;
}

.breadcrumb-link:hover {
  color: var(--silver);
}

.breadcrumb-link.w--current {
  cursor: pointer;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-weight: 700;
}

.breadcrumb-link.w--current:hover {
  color: var(--silver);
}

.breadcrumb-link.negativ {
  color: var(--steel-blue);
}

.breadcrumb-link.negativ:hover {
  color: var(--hover-grey);
}

.breadcrumb-link.negativ.w--current {
  cursor: pointer;
}

.breadcrumb-link.black {
  color: var(--black);
}

.breadcrumb-link.black:hover {
  color: var(--hover-grey);
}

.breadcrumb-link.black.w--current {
  cursor: pointer;
}

.breadcrumb-text {
  color: var(--hover-grey);
  font-size: 10px;
  line-height: 20px;
}

.breadcrumb-text.devider {
  color: var(--hover-grey);
  margin-left: 8px;
  margin-right: 8px;
}

.breadcrumb-text.devider.negativ, .breadcrumb-text.negative {
  color: var(--steel-blue);
}

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

.abstandhalter {
  height: 100px;
}

.abstandhalter._130 {
  height: 130px;
}

.abstandhalter.personen {
  height: 60px;
}

.abstandhalter._180 {
  height: 180px;
}

.video-section {
  border-bottom: 1px solid var(--gainsboro);
  width: 100vw;
  padding-left: 50px;
  padding-right: 50px;
}

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

.img-side {
  justify-content: center;
  align-items: stretch;
  width: auto;
  height: 100%;
  margin-right: 50px;
  display: flex;
  overflow: hidden;
}

.img-small {
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.img-standard {
  object-fit: cover;
}

.mobile-menu-icon-wrapper-close, .menu-spacer {
  display: none;
}

.img-sub-con-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: minmax(0, auto) 55px auto minmax(0, auto);
  grid-template-columns: 52% 100px auto;
}

.detail-content-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 70px 70px auto 70px;
  grid-template-columns: 80px 1fr 1fr 80px;
}

.img-wrapper-static-1 {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 610px;
  transition: opacity .2s;
  display: flex;
  overflow: hidden;
}

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

.lightbox-left-arrow, .lightbox-right-arrow {
  width: 80px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.lightbox-nav {
  margin-bottom: 25px;
}

.lightbox-slider-overlay {
  z-index: 5000;
  background-color: #000000d9;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0%;
}

.slider-img-wrapper {
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
}

.slider-img {
  width: 100%;
}

.lightbox-overlay-wrapper {
  display: none;
}

.close-btn-wrapper {
  z-index: 1000;
  justify-content: flex-end;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  position: absolute;
  top: 0;
}

.close-btn {
  color: var(--steel-blue);
  cursor: pointer;
  margin-top: 20px;
  padding: 10px;
  transition: color .2s;
}

.close-btn:hover {
  color: var(--hover-grey);
}

.close-btn-icon {
  width: 20px;
  height: 20px;
}

.numbers-n-facts-section {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding-left: 18px;
  padding-right: 18px;
}

.numbers-n-facts-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto min-content 85px auto 85px 85px auto;
  grid-template-columns: 1fr 100px 1fr;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 140px;
}

.accordeon-section {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 100px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.accordeon-wrapper {
  border-top: .8px solid var(--hover-grey);
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.accordeon-wrapper.first {
  border-top-style: none;
}

.accordeon-trigger {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  transition: color .2s;
  display: flex;
}

.accordeon-trigger:hover {
  color: var(--hover-grey);
}

.accordeon-content {
  height: auto;
  overflow: hidden;
}

.accordeon-icon {
  width: 16px;
  margin-right: 30px;
  line-height: 0;
}

.video-mask-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  height: 38vw;
  display: flex;
  overflow: hidden;
}

.rec-slider-wrapper {
  background-color: #0000;
  width: auto;
  height: auto;
  margin-bottom: 85px;
  margin-left: -15px;
  margin-right: -15px;
  padding-bottom: 80px;
  overflow: hidden;
}

.rec-slider-mask {
  width: 25%;
  overflow: visible;
}

.rec-slide {
  width: 100%;
}

.rec-slide.last-slide {
  width: 400%;
}

.rec-slider-nav {
  justify-content: center;
  align-items: center;
  height: 40px;
  padding-top: 10px;
  display: flex;
  position: absolute;
}

.right-arrow-2 {
  width: 50px;
  margin-bottom: 40px;
  right: -50px;
}

.lightbox {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.icon-2, .icon-3 {
  display: none;
}

.left-arrow-3 {
  width: 50px;
  left: -50px;
}

.last-slide-wrapper {
  flex-direction: row;
  justify-content: flex-start;
  width: auto;
  max-width: none;
  height: auto;
  display: flex;
  position: static;
  left: 0;
  right: 0;
}

.html-embed {
  display: none;
}

.div-put {
  width: 100%;
  height: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.gallery-track-title-wrapper {
  align-items: center;
  display: flex;
}

.arrow-big-icon {
  width: 100px;
  margin-top: 35px;
  margin-bottom: 35px;
  line-height: 0;
}

.arrow-big-wrapper {
  box-shadow: none;
  margin-top: auto;
  margin-left: auto;
}

.arrow-big-wrapper:hover {
  color: var(--black);
}

.arrow-big-wrapper-alt {
  height: auto;
  margin-left: auto;
  margin-right: 20px;
}

.img-2-wrapper-2 {
  background-color: #0000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 0;
  padding-bottom: 100px;
  display: flex;
}

.img-wrapper-2-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-height: 510px;
  padding-right: 100px;
  display: flex;
  overflow: hidden;
}

.img-wrapper-1-2 {
  width: 100%;
  margin-right: 100px;
}

.img-description-wrapper-2 {
  justify-content: space-between;
  padding: 35px 30px 120px;
  display: flex;
}

.img-description-wrapper-2.detail {
  flex: 1;
  padding-bottom: 0;
  padding-right: 100px;
}

.img-1-2 {
  width: 100%;
  max-width: none;
  max-height: 610px;
  margin-left: 0;
  padding-left: 50px;
  overflow: hidden;
}

.img-1-wrapper-2 {
  background-color: #0000;
  flex-direction: row;
  justify-content: flex-end;
  padding-top: 70px;
  padding-bottom: 100px;
  display: flex;
}

.img-2-2 {
  width: 100%;
  max-width: 858px;
}

.detail-slider-wrapper {
  width: 100%;
}

.detail-slider {
  background-color: #0000;
  height: auto;
  padding-bottom: 65px;
}

.grid-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

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

.video-thumbnail {
  z-index: -1;
  min-width: 100%;
  position: relative;
}

.btn-wrapper {
  color: var(--black);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  margin-right: 10px;
  transition: color .2s;
  display: flex;
  position: relative;
}

.btn-wrapper:hover {
  color: var(--hover-grey);
}

.img-overlay {
  width: 100%;
  position: absolute;
}

.img-overlay._02 {
  max-width: 858px;
}

.underline-2 {
  background-color: #000;
  height: 1px;
}

.underline-2.white {
  background-color: #fff;
  width: 0%;
}

.track-horizontal-alt-2 {
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  display: flex;
}

.border-left-2 {
  border-right: 1px solid #ddd;
}

.border-left-2.border-top {
  border-top: 1px solid #ddd;
  min-width: 50px;
}

.nav-dropdown-content-2 {
  background-color: #fff;
  flex-direction: column;
  width: 160px;
  position: absolute;
  top: 85px;
  overflow: hidden;
  box-shadow: 0 2px 8px #0000001a;
}

.grid-card-xl {
  box-shadow: none;
  color: #000;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px #ddd;
  padding: 30px 30px 55px;
  text-decoration: none;
}

.footer-icon-2 {
  color: #c1c1c1;
  width: 24px;
  margin-bottom: 5px;
  margin-right: 25px;
  line-height: 0;
}

.footer-icon-2.lg {
  width: 28px;
}

.border-right-2 {
  border-left: 1px solid #ddd;
}

.border-right-2.border-top {
  border-top: 1px solid #ddd;
  min-width: 50px;
}

.card-label-full-2 {
  color: #000;
  letter-spacing: .1rem;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: 12px;
  line-height: 16px;
}

.card-text-wrapper {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.link-button-text-2 {
  color: #000;
  letter-spacing: .5px;
  margin-right: 20px;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.text-card-full-2 {
  color: #000;
  letter-spacing: .8px;
  font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 46px;
}

.gallery-scroll-track-2 {
  position: static;
  inset: 0;
  overflow: hidden;
}

.claim-2 {
  flex-wrap: wrap;
  margin: 60px 65px 35px 36px;
  font-family: Linotype helveticaneueltstd lt, Arial, sans-serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 45px;
  display: flex;
}

.grid-card-s {
  box-shadow: none;
  color: #000;
  cursor: pointer;
  background-color: #fff;
  border-left: 1px solid #ddd;
  padding: 30px;
  text-decoration: none;
}

.grid-card-s.first {
  border-right: 1px solid #ddd;
}

.arrow-big-wrapper-2 {
  box-shadow: none;
  margin-top: auto;
  margin-left: auto;
}

.arrow-big-wrapper-2:hover {
  color: #000;
}

.nav-link-wrapper-2 {
  padding-bottom: 30px;
}

.gallery-container-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 50px minmax(301px, 735px) minmax(301px, 735px) 50px;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: stretch;
  justify-items: stretch;
  width: 100vw;
  max-width: 100vw;
  height: auto;
  display: grid;
  position: static;
  top: 0;
}

.nav-menu-2 {
  z-index: 100000;
  flex: 1;
  justify-content: flex-end;
  margin-top: 44px;
  margin-right: 0;
  position: relative;
}

.grid-card-quote {
  box-shadow: none;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #ddd;
  border-top-style: none;
  padding: 50px 65px 30px 30px;
}

.p-38-2 {
  letter-spacing: .12rem;
  align-self: flex-start;
  margin-bottom: 0;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 41px;
}

.p-38-2.video-card {
  margin-right: 40px;
}

.p-38-2.instagram {
  text-transform: uppercase;
  margin-bottom: 90px;
}

.p-38-2.personen {
  margin-bottom: 10px;
  font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
  font-weight: 400;
}

.p-38-2.accordeon {
  align-self: auto;
  font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
  font-weight: 400;
}

.p-38-2.accordeon-title {
  margin-bottom: 50px;
}

.nav-link-2 {
  box-shadow: none;
  margin-left: 20px;
  margin-right: 20px;
  transition: color .2s;
}

.nav-link-2:hover {
  color: #000;
}

.nav-link-2.w--current {
  color: #000;
  box-shadow: inset 0 -2px 0 -1px #000;
}

.nav-link-2.sub {
  color: #8b8b8b;
  border-top: 1px solid #ddd;
  align-items: center;
  min-height: 50px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.nav-link-2.sub:hover {
  color: #000;
  background-color: #eff2f7;
}

.nav-link-2.sub.w--current {
  box-shadow: none;
  color: #000;
}

.nav-link-2.sub.overview {
  display: none;
}

.nav-dropdown-trigger-2 {
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
}

.content-grid-12-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: .5fr .5fr 1fr .75fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.header-nav-2 {
  z-index: 1000;
  border-bottom: 1px solid #ddd;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 130px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  position: relative;
}

.header-nav-2.alternative {
  display: none;
}

.header-nav-2.blank {
  border-bottom-style: none;
  height: auto;
}

.marquee-horizontal-2 {
  z-index: 99;
  background-color: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px #ddd;
  align-items: center;
  width: 100vw;
  max-width: 100vw;
  height: 275px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.quote-name-2 {
  color: #000;
  letter-spacing: .1rem;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 16px;
}

.stop-video-2 {
  box-shadow: none;
  color: #000;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  min-width: 196px;
  min-height: 196px;
  display: none;
}

.play-video-2 {
  box-shadow: none;
  color: #000;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  min-width: 196px;
  min-height: 196px;
  display: flex;
}

.card-category-2 {
  color: #c1c1c1;
  letter-spacing: .05rem;
  text-transform: uppercase;
  margin-left: 30px;
  font-size: 10px;
  line-height: 14px;
}

.card-quote-3 {
  color: #000;
  letter-spacing: 1px;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.underline-3 {
  background-color: #000;
  height: 1px;
}

.underline-3.white {
  background-color: #fff;
  width: 0%;
}

.sub-content-wrapper-section-2 {
  border-top: 1px solid #ddd;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.sub-content-wrapper-section-2.no-line {
  border-top-style: none;
}

.sticky-track-2 {
  border-bottom: 1px solid #ddd;
  height: 100%;
}

.nav-link-wrapper-3 {
  padding-bottom: 30px;
}

.nav-menu-3 {
  z-index: 100000;
  flex: 1;
  justify-content: flex-end;
  margin-top: 44px;
  margin-right: 0;
  position: relative;
}

.breadcrumb-text-2 {
  color: #8b8b8b;
  font-size: 10px;
  line-height: 20px;
}

.breadcrumb-text-2.negative {
  color: #eff2f7;
}

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

.nav-wrapper-2 {
  box-shadow: none;
  color: #000;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  transition: color .2s;
  display: flex;
  position: absolute;
  inset: 30px 85px auto auto;
}

.nav-wrapper-2:hover {
  color: #8b8b8b;
}

.nav-wrapper-2.negative {
  color: #eff2f7;
}

.nav-wrapper-2.negative:hover {
  color: #8b8b8b;
}

.btn-wrapper-2 {
  color: #000;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  margin-right: 10px;
  transition: color .2s;
  display: flex;
  position: relative;
}

.btn-wrapper-2:hover {
  color: #8b8b8b;
}

.nav-dropdown-trigger-3 {
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
}

.gallery-arrow-3 {
  color: #8b8b8b;
  border-bottom: 1px solid #8b8b8b;
  width: 30px;
  min-width: 30px;
  margin-top: 11px;
  margin-left: 25px;
  margin-right: 20px;
  line-height: 0;
}

.gallery-arrow-3.detail {
  min-height: auto;
  margin-left: 0;
}

.breadcrumb-link-2 {
  box-shadow: none;
  color: #8b8b8b;
  transition: color .2s;
}

.breadcrumb-link-2:hover {
  color: #c1c1c1;
}

.breadcrumb-link-2.w--current {
  cursor: pointer;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-weight: 700;
}

.breadcrumb-link-2.w--current:hover {
  color: #c1c1c1;
}

.breadcrumb-link-2.negativ {
  color: #eff2f7;
}

.breadcrumb-link-2.negativ:hover {
  color: #8b8b8b;
}

.breadcrumb-link-2.negativ.w--current {
  cursor: pointer;
}

.richtext-lead-2 {
  margin-bottom: 30px;
  font-family: Linotype helveticaneueltstd lt, Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

.recommendation-section-2 {
  border-top: 1px solid #ddd;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
}

.detail-content-2 {
  border-left: 1px solid #ddd;
}

.img-1-3 {
  width: 100%;
}

.social-share-btn-2 {
  z-index: 100;
  box-shadow: none;
  color: #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 10px;
  transition: color .2s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.social-share-btn-2:hover {
  color: #8b8b8b;
}

.img-1-wrapper-3 {
  background-color: #0000;
  flex-direction: column;
  margin-bottom: 100px;
  margin-left: 80px;
  display: flex;
  position: relative;
}

.content-segment-wrapper-2 {
  border-bottom: 1px solid #ddd;
  padding-top: 70px;
  padding-bottom: 70px;
}

.rec-card-old {
  box-shadow: none;
  color: #000;
  flex: 1;
  text-decoration: none;
}

.breadcrumb-link-3 {
  box-shadow: none;
  color: #8b8b8b;
  transition: color .2s;
}

.breadcrumb-link-3:hover {
  color: #c1c1c1;
}

.breadcrumb-link-3.w--current {
  cursor: pointer;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-weight: 700;
}

.breadcrumb-link-3.w--current:hover {
  color: #c1c1c1;
}

.breadcrumb-link-3.negativ {
  color: #eff2f7;
}

.breadcrumb-link-3.negativ:hover {
  color: #8b8b8b;
}

.breadcrumb-link-3.negativ.w--current {
  cursor: pointer;
}

.underline-4 {
  background-color: #000;
  height: 1px;
}

.underline-4.white {
  background-color: #fff;
  width: 0%;
}

.sub-content-wrapper-section-3 {
  border-top: 1px solid #ddd;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.sub-content-wrapper-section-3.no-line {
  border-top-style: none;
}

.nav-dropdown-trigger-4 {
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
}

.gallery-arrow-4 {
  color: #8b8b8b;
  border-bottom: 1px solid #8b8b8b;
  width: 30px;
  min-width: 30px;
  margin-top: 11px;
  margin-left: 25px;
  margin-right: 20px;
  line-height: 0;
}

.gallery-arrow-4.detail {
  min-height: auto;
  margin-left: 0;
}

.breadcrumb-link-4 {
  box-shadow: none;
  color: #8b8b8b;
  transition: color .2s;
}

.breadcrumb-link-4:hover {
  color: #c1c1c1;
}

.breadcrumb-link-4.w--current {
  cursor: pointer;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-weight: 700;
}

.breadcrumb-link-4.w--current:hover {
  color: #c1c1c1;
}

.breadcrumb-link-4.negativ {
  color: #eff2f7;
}

.breadcrumb-link-4.negativ:hover {
  color: #8b8b8b;
}

.breadcrumb-link-4.negativ.w--current {
  cursor: pointer;
}

.img-1-4 {
  width: 100%;
}

.social-share-btn-3 {
  z-index: 100;
  box-shadow: none;
  color: #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 10px;
  transition: color .2s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.social-share-btn-3:hover {
  color: #8b8b8b;
}

.img-1-wrapper-4 {
  background-color: #0000;
  flex-direction: column;
  margin-bottom: 100px;
  margin-left: 80px;
  display: flex;
  position: relative;
}

.underline-5 {
  background-color: #000;
  height: 1px;
}

.underline-5.white {
  background-color: #fff;
  width: 0%;
}

.sub-content-wrapper-section-4 {
  border-top: 1px solid #ddd;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.sub-content-wrapper-section-4.no-line {
  border-top-style: none;
}

.nav-dropdown-trigger-5 {
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
}

.gallery-arrow-5 {
  color: #8b8b8b;
  border-bottom: 1px solid #8b8b8b;
  width: 30px;
  min-width: 30px;
  margin-top: 11px;
  margin-left: 25px;
  margin-right: 20px;
  line-height: 0;
}

.gallery-arrow-5.detail {
  min-height: auto;
  margin-left: 0;
}

.breadcrumb-link-5 {
  box-shadow: none;
  color: #8b8b8b;
  transition: color .2s;
}

.breadcrumb-link-5:hover {
  color: #c1c1c1;
}

.breadcrumb-link-5.w--current {
  cursor: pointer;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-weight: 700;
}

.breadcrumb-link-5.w--current:hover {
  color: #c1c1c1;
}

.breadcrumb-link-5.negativ {
  color: #eff2f7;
}

.breadcrumb-link-5.negativ:hover {
  color: #8b8b8b;
}

.breadcrumb-link-5.negativ.w--current {
  cursor: pointer;
}

.img-1-5 {
  width: 100%;
}

.social-share-btn-4 {
  z-index: 100;
  box-shadow: none;
  color: #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 10px;
  transition: color .2s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.social-share-btn-4:hover {
  color: #8b8b8b;
}

.img-1-wrapper-5 {
  background-color: #0000;
  flex-direction: column;
  margin-bottom: 100px;
  margin-left: 80px;
  display: flex;
  position: relative;
}

.sub-content-wrapper-section-5 {
  border-top: 1px solid #ddd;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.sub-content-wrapper-section-5.no-line {
  border-top-style: none;
}

.sub-content-wrapper-section-5.no-margin {
  padding-bottom: 0;
}

.nav-dropdown-trigger-6 {
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
}

.gallery-arrow-6 {
  color: #8b8b8b;
  border-bottom: 1px solid #8b8b8b;
  width: 30px;
  min-width: 30px;
  margin-top: 11px;
  margin-left: 25px;
  margin-right: 20px;
  line-height: 0;
}

.gallery-arrow-6.detail {
  min-height: auto;
  margin-left: 0;
}

.breadcrumb-link-6 {
  box-shadow: none;
  color: #8b8b8b;
  transition: color .2s;
}

.breadcrumb-link-6:hover {
  color: #c1c1c1;
}

.breadcrumb-link-6.w--current {
  cursor: pointer;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-weight: 700;
}

.breadcrumb-link-6.w--current:hover {
  color: #c1c1c1;
}

.img-1-6 {
  width: 100%;
}

.social-share-btn-5 {
  z-index: 100;
  box-shadow: none;
  color: #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 10px;
  transition: color .2s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.social-share-btn-5:hover {
  color: #8b8b8b;
}

.img-1-wrapper-6 {
  background-color: #0000;
  flex-direction: column;
  margin-bottom: 100px;
  margin-left: 80px;
  display: flex;
  position: relative;
}

.nav-dropdown-trigger-7 {
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
}

.gallery-arrow-7 {
  color: #8b8b8b;
  border-bottom: 1px solid #8b8b8b;
  width: 30px;
  min-width: 30px;
  margin-top: 11px;
  margin-left: 25px;
  margin-right: 20px;
  line-height: 0;
}

.gallery-arrow-7.detail {
  min-height: auto;
  margin-left: 0;
}

.breadcrumb-link-7 {
  box-shadow: none;
  color: #8b8b8b;
  transition: color .2s;
}

.breadcrumb-link-7:hover {
  color: #c1c1c1;
}

.breadcrumb-link-7.w--current {
  cursor: pointer;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-weight: 700;
}

.breadcrumb-link-7.w--current:hover {
  color: #c1c1c1;
}

.img-1-7 {
  width: 100%;
}

.social-share-btn-6 {
  z-index: 100;
  box-shadow: none;
  color: #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 10px;
  transition: color .2s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.social-share-btn-6:hover {
  color: #8b8b8b;
}

.img-1-wrapper-7 {
  background-color: #0000;
  flex-direction: column;
  margin-bottom: 100px;
  margin-left: 80px;
  display: flex;
  position: relative;
}

.nav-dropdown-trigger-8 {
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
}

.gallery-arrow-8 {
  color: #8b8b8b;
  border-bottom: 1px solid #8b8b8b;
  width: 30px;
  min-width: 30px;
  margin-top: 11px;
  margin-left: 25px;
  margin-right: 20px;
  line-height: 0;
}

.gallery-arrow-8.detail {
  min-height: auto;
  margin-left: 0;
}

.breadcrumb-link-8 {
  box-shadow: none;
  color: #8b8b8b;
  transition: color .2s;
}

.breadcrumb-link-8:hover {
  color: #c1c1c1;
}

.breadcrumb-link-8.w--current {
  cursor: pointer;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-weight: 700;
}

.breadcrumb-link-8.w--current:hover {
  color: #c1c1c1;
}

.breadcrumb-link-8.negativ {
  color: #eff2f7;
}

.breadcrumb-link-8.negativ:hover {
  color: #8b8b8b;
}

.breadcrumb-link-8.negativ.w--current {
  cursor: pointer;
}

.richtext-lead-3 {
  margin-bottom: 30px;
  font-family: Linotype helveticaneueltstd lt, Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

.recommendation-section-3 {
  border-top: 1px solid #ddd;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
}

.img-1-8 {
  width: 100%;
}

.img-1-wrapper-8 {
  background-color: #0000;
  flex-direction: column;
  margin-bottom: 100px;
  margin-left: 80px;
  display: flex;
  position: relative;
}

.rec-card-2 {
  box-shadow: none;
  color: #000;
  flex: 1;
  text-decoration: none;
}

.nav-dropdown-trigger-9 {
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
}

.breadcrumb-link-9 {
  box-shadow: none;
  color: #8b8b8b;
  transition: color .2s;
}

.breadcrumb-link-9:hover {
  color: #c1c1c1;
}

.breadcrumb-link-9.w--current {
  cursor: pointer;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-weight: 700;
}

.breadcrumb-link-9.w--current:hover {
  color: #c1c1c1;
}

.breadcrumb-link-9.negativ {
  color: #eff2f7;
}

.breadcrumb-link-9.negativ:hover {
  color: #8b8b8b;
}

.breadcrumb-link-9.negativ.w--current {
  cursor: pointer;
}

.breadcrumb-link-9.black {
  color: #000;
}

.breadcrumb-link-9.black:hover {
  color: #8b8b8b;
}

.breadcrumb-link-9.black.w--current {
  cursor: pointer;
}

.gallery-arrow-9 {
  color: #c1c1c1;
  object-fit: fill;
  border-bottom: 1px #8b8b8b;
  flex: 0 auto;
  width: 30px;
  min-width: 30px;
  margin-top: 0;
  margin-left: 25px;
  margin-right: 20px;
  line-height: 0;
}

.gallery-arrow-9.detail {
  min-height: auto;
  margin-left: 0;
}

.card-quote-4 {
  color: #000;
  letter-spacing: 1px;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.card-quote-4.detail {
  letter-spacing: 1.2px;
  align-self: auto;
  margin-bottom: 35px;
  font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 46px;
}

.card-quote-4.detail.mobile {
  display: none;
}

.accordeon-wrapper-2 {
  border-top: .8px solid #8b8b8b;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.accordeon-wrapper-2.first {
  border-top-style: none;
}

.nav-dropdown-trigger-10 {
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
}

.accordeon-trigger-2 {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  transition: color .2s;
  display: flex;
}

.accordeon-trigger-2:hover {
  color: #8b8b8b;
}

.nav-dropdown-trigger-11 {
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
}

.gallery-arrow-10 {
  color: #8b8b8b;
  border-bottom: 1px solid #8b8b8b;
  width: 30px;
  min-width: 30px;
  margin-top: 11px;
  margin-left: 25px;
  margin-right: 20px;
  line-height: 0;
}

.gallery-arrow-10.detail {
  min-height: auto;
  margin-left: 0;
}

.richtext-lead-4 {
  margin-bottom: 30px;
  font-family: Linotype helveticaneueltstd lt, Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

.nav-dropdown-trigger-12 {
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
}

.gallery-arrow-11 {
  color: #8b8b8b;
  border-bottom: 1px solid #8b8b8b;
  width: 30px;
  min-width: 30px;
  margin-top: 11px;
  margin-left: 25px;
  margin-right: 20px;
  line-height: 0;
}

.gallery-arrow-11.detail {
  min-height: auto;
  margin-left: 0;
}

.img-1-9 {
  width: 100%;
}

.img-1-wrapper-9 {
  background-color: #0000;
  flex-direction: column;
  margin-bottom: 100px;
  margin-left: 80px;
  display: flex;
  position: relative;
}

.link-button-text-3 {
  color: #000;
  letter-spacing: .5px;
  margin-right: 20px;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.gallery-track-2 {
  flex-direction: row;
  width: 210rem;
  height: auto;
  min-height: 750px;
  margin-top: 85px;
  margin-bottom: 41px;
  padding-bottom: 40px;
  padding-left: 36px;
  display: none;
  position: relative;
  left: 0;
  overflow: visible;
}

.slider-arrow-icon-2 {
  width: 30px;
  line-height: 0;
}

.imp-slider-left-arrow-2 {
  justify-content: center;
  align-items: center;
  margin-bottom: 65px;
  display: flex;
}

.gallery-scroll-track-3 {
  position: static;
  inset: 0;
  overflow: hidden;
}

.gallery-container-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 50px minmax(301px, 735px) minmax(301px, 735px) 50px;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: stretch;
  justify-items: stretch;
  width: 100vw;
  max-width: 100vw;
  height: auto;
  display: grid;
  position: static;
  top: 0;
}

.gallery-arrow-12 {
  color: #8b8b8b;
  border-bottom: 1px solid #8b8b8b;
  width: 30px;
  min-width: 30px;
  margin-top: 11px;
  margin-left: 25px;
  margin-right: 20px;
  line-height: 0;
}

.gallery-arrow-12.detail {
  min-height: auto;
  margin-left: 0;
}

.imp-slider-right-arrow-2 {
  justify-content: center;
  align-items: center;
  margin-bottom: 65px;
  display: flex;
}

.code-embed {
  display: none;
}

.footer-extention-2 {
  background-color: #000;
  width: 100%;
}

.nav-dropdown-trigger-13, .nav-dropdown-trigger-14 {
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
}

.quote-name-3 {
  color: #000;
  letter-spacing: .1rem;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 16px;
}

.recommendation-section-4 {
  border-top: 1px solid #ddd;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
}

.img-1-10 {
  width: 100%;
}

.img-1-wrapper-10 {
  background-color: #0000;
  flex-direction: column;
  margin-bottom: 100px;
  margin-left: 80px;
  display: flex;
  position: relative;
}

.card-quote-5 {
  color: #000;
  letter-spacing: 1px;
  font-family: Linotype helveticaneueltstd bd, Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.card-quote-5.detail {
  letter-spacing: 1.2px;
  align-self: auto;
  margin-bottom: 35px;
  font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 46px;
}

.card-quote-5.detail.mobile {
  display: none;
}

.card-quote-5.quote-end {
  align-self: flex-end;
  margin-bottom: 85px;
  font-family: Linotype helveticaneueltstd ultlt, Arial, sans-serif;
  font-size: 65px;
  font-weight: 100;
}

.card-quote-5.quote-start {
  align-self: flex-start;
  margin-top: 2px;
  margin-bottom: 0;
  margin-right: 20px;
  font-family: Linotype helveticaneueltstd ultlt, Arial, sans-serif;
  font-size: 65px;
  font-weight: 100;
  line-height: 40px;
}

.nav-dropdown-trigger-15 {
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
}

.richtext-lead-5 {
  margin-bottom: 30px;
  font-family: Linotype helveticaneueltstd lt, Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

.img-1-11 {
  width: 100%;
}

.img-1-wrapper-10-copy {
  background-color: #0000;
  flex-direction: column;
  margin-bottom: 100px;
  margin-left: 80px;
  display: flex;
  position: relative;
}

@media screen and (min-width: 1280px) {
  h2 {
    font-size: 37px;
    line-height: 49px;
  }

  ul {
    padding-left: 24px;
    font-size: 20px;
    line-height: 34px;
  }

  .page-wrapper {
    overflow: visible;
  }

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

  .container-md.instagram {
    z-index: 10;
  }

  .container-md.flex.content {
    margin-top: 120px;
  }

  .container-md.img-detail {
    justify-content: center;
    display: flex;
  }

  .container-md.img-detail.centered {
    flex-direction: column;
    align-items: center;
  }

  .container-md.margin-top-bottom {
    margin-top: 115px;
  }

  .container-md.margin-top-bottom.last {
    margin-bottom: 115px;
  }

  .container-md.accordeons {
    max-width: 930px;
  }

  .container-md.border-top.empty {
    background-color: #fff0;
  }

  .container-sm.pd-bottom-180 {
    position: relative;
  }

  .container-lg.borders.flex-vertical.type-b {
    padding-top: 250px;
  }

  .container-lg.insta {
    z-index: 1;
    background-color: #fff0;
    position: relative;
  }

  .container-lg.white-bg.no-borders {
    z-index: 1;
    background-color: #fff0;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    position: relative;
  }

  .container-lg.borders.flex-vertical {
    flex-direction: column;
    align-items: stretch;
    padding-left: 95px;
    padding-right: 95px;
    display: flex;
  }

  .hero-section {
    position: relative;
  }

  .hero-section.border-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .home-heading {
    font-size: 24px;
  }

  .home-sub {
    font-size: 85px;
    line-height: 100px;
  }

  .home-lg {
    font-size: 92px;
  }

  .claim {
    flex-wrap: wrap;
    align-items: flex-end;
    font-size: 48px;
    line-height: 59px;
    display: flex;
  }

  .section-label-text {
    font-size: 22px;
    line-height: 37px;
  }

  .section-label-text.sm {
    font-size: 18px;
  }

  .section-nr {
    font-size: 22px;
    line-height: 37px;
  }

  .section-nr.sm {
    font-size: 18px;
  }

  .intro-paragraph {
    font-size: 30px;
    line-height: 41px;
  }

  .content-grid-12 {
    grid-template-rows: auto;
  }

  .grid-card-s-old {
    padding: 36px;
  }

  .grid-card-quote-old {
    padding-top: 60px;
    padding-bottom: 36px;
    padding-left: 36px;
  }

  .grid-card-xl-old {
    padding-top: 36px;
    padding-left: 65px;
    padding-right: 65px;
  }

  .grid-card-l {
    padding-top: 36px;
    padding-left: 36px;
    padding-right: 36px;
  }

  .grid-card-m {
    padding: 36px;
  }

  .card-label {
    font-size: 12px;
    line-height: 16px;
  }

  .card-label.stage {
    margin-left: 41px;
  }

  .card-category {
    font-size: 12px;
    line-height: 16px;
  }

  .card-teaser {
    height: 112px;
    font-size: 18px;
    line-height: 28px;
  }

  .card-teaser.truncate {
    height: 84px;
  }

  .card-teaser.card-arrow.button {
    height: 35px;
    margin-top: 3px;
    margin-bottom: 0;
    font-size: 0;
    line-height: 0;
  }

  .card-quote {
    letter-spacing: 1px;
    font-size: 56px;
    line-height: 64px;
  }

  .card-quote.detail {
    font-size: 34px;
    line-height: 46px;
  }

  .card-quote.quote-start {
    margin-top: 2px;
    font-size: 120px;
  }

  .card-quote.quote-end {
    margin-bottom: 88px;
    margin-left: 20px;
    font-size: 120px;
  }

  .card-title {
    font-size: 34px;
    line-height: 46px;
  }

  .quote-name {
    font-size: 14px;
    line-height: 18px;
  }

  .number-lg.counter {
    margin-bottom: -48px;
    font-size: 204px;
  }

  .number-md.counter {
    font-size: 156px;
  }

  .number-sm.counter {
    font-size: 103px;
  }

  .gallery-scroll-track {
    flex-direction: column;
    align-items: center;
    position: absolute;
  }

  .gallery-scroll-track.alt {
    height: auto;
    position: static;
  }

  .gallery-container {
    grid-template-columns: 80px minmax(301px, 735px) minmax(301px, 735px) 80px;
    position: sticky;
    top: 0;
    overflow: hidden;
  }

  .gallery-container.alt {
    position: static;
  }

  .gallery-track {
    display: flex;
    left: 0;
  }

  .gallery-wrapper {
    height: 1000px;
  }

  .gallery-wrapper.v2 {
    height: 3000px;
    position: relative;
  }

  .gallery-wrapper.alt {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    position: relative;
    overflow: hidden;
  }

  .gallery-wrapper.v2 {
    width: 100vw;
    height: 4650px;
  }

  .imp-card-mid {
    min-width: 580px;
    max-width: 500px;
    margin-right: 100px;
  }

  .imp-card-low, .imp-card-high {
    margin-right: 100px;
  }

  .gallery-text-wrapper {
    max-width: 375px;
  }

  .gallery-text-wrapper.detail {
    margin-top: 30px;
  }

  .gallery-text-wrapper.detail.slider-right {
    margin-left: -50px;
  }

  .gallery-text-wrapper.detail.alt {
    margin-right: 50px;
  }

  .gallery-text {
    margin-top: 1px;
    font-size: 15px;
    line-height: 26px;
  }

  .gallery-text.detail-description.grey.detail {
    margin-bottom: 55px;
  }

  .gallery-track-wrapper {
    display: block;
  }

  .p-38 {
    font-size: 38px;
    line-height: 49px;
  }

  .p-38.gallery {
    max-width: 460px;
  }

  .p-20.margin-left-100 {
    font-size: 20px;
    line-height: 34px;
  }

  .p-20.margin-left-100.personen.special {
    font-size: 28px;
    line-height: 34px;
  }

  .footer-section.bg-black {
    padding-left: 80px;
    padding-right: 80px;
  }

  .footer-grid {
    grid-column-gap: 65px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto auto;
    grid-template-columns: min-content min-content 1fr;
  }

  .footer-col.horizontal.impressum {
    margin-top: 120px;
  }

  .footer-col.margin-bot {
    margin-bottom: 15px;
  }

  .nav-wrapper {
    top: 40px;
  }

  .back-arrow {
    width: 32px;
  }

  .img-description-wrapper {
    align-self: stretch;
    width: auto;
    margin-left: -95px;
    margin-right: -95px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .img-description-wrapper.detail {
    padding-right: 0;
  }

  .site-title {
    max-width: none;
    margin-bottom: 0;
    font-size: 46px;
    line-height: 58px;
  }

  .site-title.quote {
    font-size: 40px;
    line-height: 52px;
  }

  .site-title-wrapper {
    max-width: 800px;
    margin-bottom: 100px;
  }

  .sticky-wrapper {
    grid-template-rows: 45px auto auto auto 100px;
    grid-template-columns: minmax(0, auto) 570px minmax(100px, 100px);
  }

  .detail-content.no-border {
    padding-left: 30px;
  }

  .richtext-wrapper {
    padding-right: 80px;
  }

  .richtext-wrapper h2 {
    line-height: 45px;
  }

  .richtext-wrapper p {
    font-size: 22px;
    line-height: 34px;
  }

  .richtext-wrapper h4 {
    font-size: 16px;
    line-height: 26px;
  }

  .richtext-wrapper h3 {
    font-size: 30px;
    line-height: 40px;
  }

  .content-segment-wrapper {
    padding-top: 55px;
  }

  .richtext-lead {
    letter-spacing: .8px;
    font-size: 26px;
    line-height: 38px;
  }

  .richtext-paragraph {
    font-size: 22px;
    line-height: 37px;
  }

  .richtext-zwischentitel {
    font-size: 37px;
    line-height: 39px;
  }

  .quote-wrapper {
    margin-top: 55px;
    margin-bottom: 55px;
  }

  .quote-wrapper.detail.title {
    justify-content: center;
  }

  .left-wrapper {
    padding-left: 50px;
  }

  .img-wrapper-1.static {
    margin-left: 100px;
    margin-right: 0;
  }

  .img-wrapper-content.full {
    margin-right: 0;
  }

  .slide-panel.detail {
    max-width: 1120px;
  }

  .shape-detail-01 {
    display: block;
    top: 18%;
    left: -200px;
  }

  .shape-detail-01.home-02 {
    z-index: -10;
    width: 170px;
    height: auto;
    top: 5%;
    left: -48px;
  }

  .shape-detail-01.home-03 {
    width: 320px;
    height: auto;
    top: 5%;
    left: auto;
    right: -180px;
  }

  .shape-detail-01.home-video {
    width: 750px;
    height: auto;
    top: -184px;
    right: 0;
  }

  .shape-detail-01.home-4 {
    z-index: 5;
    width: 820px;
    height: auto;
    inset: auto 50% 40px auto;
  }

  .shape-detail-01.gemeinsames-01 {
    z-index: 0;
    width: 220px;
    height: 450px;
    top: -8%;
    left: -90px;
  }

  .shape-detail-01.home-5 {
    z-index: -50;
    width: 640px;
    height: auto;
    top: 28%;
    left: -412px;
    right: auto;
  }

  .shape-detail-01.home-01 {
    width: 800px;
    height: auto;
    top: 6%;
    left: auto;
    right: -340px;
    overflow: visible;
  }

  .shape-detail-01.overview-01 {
    z-index: -50;
    width: 530px;
    height: auto;
    inset: -315px auto auto -210px;
  }

  .shape-detail-01.overview-02 {
    width: 550px;
    height: auto;
    inset: auto -298px -170px auto;
    overflow: hidden;
  }

  .imp-slider {
    display: none;
  }

  .imp-slider-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .grid-rec {
    grid-column-gap: 75px;
  }

  .title-rec-wrapper {
    font-size: 22px;
    line-height: 30px;
  }

  .img-3 {
    object-fit: cover;
  }

  .shape-detail-02 {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }

  .shape-detail-02.home {
    z-index: -50;
    width: 700px;
    top: 45%;
    right: -331px;
  }

  .quote-description-wrapper {
    align-self: stretch;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .quote-description-wrapper.alt {
    max-width: 800px;
    padding-top: 250px;
  }

  .site-quote-wrapper {
    max-width: 800px;
    margin-bottom: 100px;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    position: relative;
  }

  .site-quote {
    margin-bottom: 0;
    font-family: Linotype helveticaneueltstd ultlt, Arial, sans-serif;
    font-size: 180px;
    font-weight: 100;
    line-height: 62px;
  }

  .site-quote.start {
    font-size: 120px;
    position: absolute;
    top: -8px;
    left: -65px;
  }

  .site-quote.end {
    font-size: 120px;
    position: absolute;
    bottom: -2px;
    right: -65px;
  }

  .header-02-description-wrapper {
    align-self: stretch;
    width: 100%;
    max-width: 1085px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-bottom: 45px;
  }

  .shape-detail-03 {
    z-index: 100;
    width: 220px;
    display: block;
    position: absolute;
    inset: 41% auto auto -100px;
  }

  .bg-shape-wrapper {
    z-index: -1000;
    width: 100vw;
    height: 100%;
    position: absolute;
    inset: 0%;
    overflow: hidden;
  }

  .lauftext {
    font-size: 20px;
    line-height: 34px;
  }

  .quellenverzeichnis {
    font-size: 15px;
    line-height: 26px;
  }

  .claim-text {
    margin-bottom: 0;
    padding-right: 15px;
  }

  .claim-text._01, .claim-text._02, .claim-text._03 {
    padding-top: 10px;
  }

  .single-word {
    height: auto;
    overflow: hidden;
  }

  .utility-page-content {
    margin-top: 135px;
    margin-bottom: 160px;
  }

  .card-quote-2 {
    letter-spacing: 1px;
    font-size: 56px;
    line-height: 64px;
  }

  .card-quote-2.detail {
    font-size: 57px;
    line-height: 75px;
  }

  .card-quote-2.quote-start, .card-quote-2.quote-end {
    font-size: 120px;
  }

  .sub-content-wrapper-section.no-margin {
    padding-bottom: 0;
  }

  .img-detail-sm {
    width: 50%;
  }

  .img-sm {
    object-fit: cover;
  }

  .img-detail-wrapper {
    width: auto;
    max-width: 100%;
    max-height: none;
  }

  .nav-link {
    margin-left: 30px;
    margin-right: 30px;
  }

  .nav-link.sub {
    min-height: 75px;
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .nav-dropdown-content {
    width: 200px;
    min-width: 200px;
    display: block;
  }

  .nav-dropdown-content.archive {
    width: 194px;
    min-width: 194px;
  }

  .nav-link-text-sub {
    font-size: 18px;
  }

  .card-label-full {
    font-size: 14px;
    line-height: 18px;
  }

  .text-card-full {
    letter-spacing: 1px;
    font-size: 45px;
    line-height: 55px;
  }

  .text-card-full.detail {
    font-size: 57px;
    line-height: 75px;
  }

  .text-card-full.quote-start, .text-card-full.quote-end {
    font-size: 120px;
  }

  .link-button-text {
    font-size: 14px;
    line-height: 18px;
  }

  .card-link-button {
    flex-direction: row;
  }

  .text-img-section {
    position: relative;
  }

  .text-img-grid {
    grid-template-columns: minmax(50px, 1fr) minmax(251px, 685px) 50px 50px 50px minmax(251px, 685px) minmax(50px, 1fr);
  }

  .breadcrumb-wrapper {
    top: 50px;
  }

  .breadcrumb-text {
    font-size: 12px;
    line-height: 20px;
  }

  .abstandhalter {
    height: 115px;
  }

  .abstandhalter.personen {
    height: 100px;
  }

  .img-sub-con-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: minmax(0, auto) 90px auto;
    grid-template-columns: 0% 52% 100px auto;
  }

  .detail-content-grid {
    grid-template-columns: 80px minmax(560px, 1fr) minmax(560px, 1fr) 80px;
  }

  .img-wrapper-static-1 {
    max-width: 536.609px;
    max-height: none;
  }

  .numbers-n-facts-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .numbers-n-facts-grid {
    grid-template-rows: auto 80px auto 80px auto 80px 80px;
    align-items: start;
    margin-top: 100px;
    margin-bottom: 200px;
  }

  .accordeon-section {
    margin-bottom: 160px;
  }

  .accordeon-trigger {
    height: 120px;
  }

  .lottie-animation {
    align-items: flex-start;
  }

  .rec-slide.last-slide {
    width: 400%;
  }

  .last-slide-wrapper {
    width: 100%;
    max-width: none;
    padding-right: 0%;
  }

  .gallery-btn-wrapper {
    margin-left: 36px;
  }

  .img-1-2 {
    max-width: 536.609px;
    max-height: none;
  }

  .nav-dropdown-content-2 {
    width: 220px;
    min-width: 220px;
    display: block;
  }

  .grid-card-xl {
    padding-top: 36px;
    padding-left: 65px;
    padding-right: 65px;
  }

  .card-label-full-2 {
    font-size: 14px;
    line-height: 18px;
  }

  .card-text-wrapper {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .link-button-text-2 {
    font-size: 14px;
    line-height: 18px;
  }

  .text-card-full-2 {
    letter-spacing: 1px;
    font-size: 45px;
    line-height: 55px;
  }

  .gallery-scroll-track-2 {
    flex-direction: column;
    align-items: center;
    position: sticky;
  }

  .gallery-scroll-track-2.alt {
    height: auto;
    position: static;
  }

  .claim-2 {
    flex-wrap: wrap;
    align-items: flex-end;
    font-size: 48px;
    line-height: 59px;
    display: flex;
  }

  .grid-card-s {
    padding: 36px;
  }

  .gallery-container-2 {
    grid-template-columns: 80px minmax(301px, 735px) minmax(301px, 735px) 80px;
    min-height: 100vh;
    position: sticky;
    top: 0;
    overflow: visible;
  }

  .gallery-container-2.alt {
    position: static;
  }

  .grid-card-quote {
    padding-top: 60px;
    padding-bottom: 36px;
    padding-left: 36px;
  }

  .p-38-2 {
    font-size: 38px;
    line-height: 49px;
  }

  .nav-link-2 {
    margin-left: 30px;
    margin-right: 30px;
  }

  .nav-link-2.sub {
    min-height: 75px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .content-grid-12-2 {
    grid-template-rows: .5fr .5fr .5fr .75fr;
  }

  .quote-name-2 {
    font-size: 14px;
    line-height: 18px;
  }

  .card-category-2 {
    font-size: 12px;
    line-height: 16px;
  }

  .card-quote-3 {
    letter-spacing: 1px;
    font-size: 56px;
    line-height: 64px;
  }

  .breadcrumb-text-2 {
    font-size: 12px;
    line-height: 20px;
  }

  .nav-wrapper-2 {
    top: 40px;
  }

  .richtext-lead-2 {
    letter-spacing: .8px;
    font-size: 26px;
    line-height: 38px;
  }

  .recommendation-section-2 {
    z-index: 1;
    position: relative;
  }

  .sub-content-wrapper-section-5.no-margin {
    padding-bottom: 0;
  }

  .richtext-lead-3 {
    letter-spacing: .8px;
    font-size: 26px;
    line-height: 38px;
  }

  .recommendation-section-3 {
    z-index: 1;
    position: relative;
  }

  .card-quote-4 {
    letter-spacing: 1px;
    font-size: 56px;
    line-height: 64px;
  }

  .card-quote-4.detail {
    font-size: 57px;
    line-height: 75px;
  }

  .accordeon-trigger-2 {
    height: 120px;
  }

  .richtext-lead-4 {
    letter-spacing: .8px;
    font-size: 26px;
    line-height: 38px;
  }

  .link-button-text-3 {
    font-size: 14px;
    line-height: 18px;
  }

  .gallery-track-2 {
    width: 4650px;
    display: flex;
    left: 0;
  }

  .gallery-scroll-track-3 {
    flex-direction: column;
    align-items: center;
    position: sticky;
  }

  .gallery-container-3 {
    grid-template-columns: 80px minmax(301px, 735px) minmax(301px, 735px) 80px;
    min-height: 100vh;
    position: sticky;
    top: 0;
    overflow: visible;
  }

  .quote-name-3 {
    font-size: 14px;
    line-height: 18px;
  }

  .recommendation-section-4 {
    z-index: 1;
    position: relative;
  }

  .card-quote-5 {
    letter-spacing: 1px;
    font-size: 56px;
    line-height: 64px;
  }

  .card-quote-5.detail {
    font-size: 57px;
    line-height: 75px;
  }

  .card-quote-5.quote-end {
    margin-bottom: 95px;
    margin-left: 20px;
    font-size: 120px;
  }

  .card-quote-5.quote-start {
    margin-top: 18px;
    font-size: 120px;
  }

  .richtext-lead-5 {
    letter-spacing: .8px;
    font-size: 26px;
    line-height: 38px;
  }
}

@media screen and (min-width: 1440px) {
  a {
    color: var(--hover-grey);
    text-decoration: none;
    transition: color .2s;
  }

  a:hover {
    color: var(--silver);
  }

  ul {
    margin-bottom: 0;
  }

  .container-md.margin-top-bottom {
    margin-top: 130px;
  }

  .container-md.margin-top-bottom.last {
    margin-bottom: 130px;
  }

  .container-md.accordeons {
    max-width: 1110px;
  }

  .container-lg.borders.flex-vertical.type-b {
    padding-top: 250px;
  }

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

  .container-lg.breadcrumb {
    position: relative;
  }

  .container-lg.white-bg {
    background-color: #fff;
    justify-content: center;
    display: flex;
  }

  .container-lg.white-bg.no-borders {
    z-index: 1;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  .container-lg.borders {
    flex: 1;
    align-self: center;
  }

  .container-lg.borders.flex-vertical {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .hero-section.border-bottom {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }

  .hero-section.border-bottom.type-2 {
    z-index: -101;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .home-heading {
    font-size: 26px;
  }

  .home-sub {
    font-size: 100px;
    line-height: 121px;
  }

  .home-lg {
    font-size: 107px;
  }

  .anchor-link.first {
    cursor: pointer;
  }

  .hero-grid {
    grid-template-columns: minmax(50px, auto) minmax(301px, 735px) minmax(301px, 735px) minmax(50px, auto);
    position: relative;
  }

  .hero-grid.video {
    grid-template-rows: 1fr 1fr 2fr 1fr 1fr;
  }

  .grid-content.steelblue.deco {
    width: 100px;
    position: absolute;
    left: 0;
  }

  .grid-content.yellow.deco {
    width: 100px;
    position: absolute;
    right: 0;
  }

  .container-full {
    justify-content: center;
    max-width: 100%;
    display: flex;
  }

  .claim {
    margin-bottom: 35px;
  }

  .grid-card-s-old {
    color: var(--black);
    text-decoration: none;
  }

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

  .card-teaser.card-arrow.button {
    margin-top: 0;
  }

  .card-quote.detail {
    font-size: 40px;
    line-height: 50px;
  }

  .card-arrow {
    color: var(--black);
  }

  .number-lg.counter {
    margin-bottom: -41px;
    font-size: 250px;
  }

  .number-md.counter {
    margin-bottom: -26px;
    font-size: 182px;
  }

  .gallery-container {
    grid-template-columns: 1fr minmax(301px, 735px) minmax(301px, 735px) 1fr;
    min-height: 100vh;
    position: sticky;
    top: 0;
    overflow: visible;
  }

  .gallery-container.alt {
    position: relative;
  }

  .gallery-track {
    width: auto;
  }

  .gallery-wrapper.v2 {
    height: 5060px;
  }

  .imp-card-mid {
    min-width: 736px;
    max-width: 736px;
  }

  .imp-card-low, .imp-card-high {
    min-width: 403px;
    max-width: 403px;
  }

  .img-gallery-quer {
    width: 100%;
  }

  .img-gallery-quad {
    width: auto;
  }

  .img-gallery-hoch {
    height: auto;
  }

  .gallery-text-wrapper {
    max-width: 400px;
  }

  .gallery-text-wrapper.detail.slider-right {
    margin-top: 0;
    margin-left: -50px;
  }

  .gallery-text-wrapper.detail.alt {
    margin-right: 70px;
  }

  .p-38 {
    color: var(--black);
  }

  .p-38.gallery {
    max-width: 540px;
  }

  .footer-section.bg-black {
    padding-left: 80px;
    padding-right: 80px;
  }

  .img_parallax {
    object-fit: cover;
    width: 100%;
    max-width: none;
  }

  .instagram-img, .image {
    transform: none;
  }

  .footer-grid {
    grid-column-gap: 65px;
    grid-template: "."
                   "."
                   / min-content min-content min-content min-content auto;
  }

  .footer-col.horizontal.impressum {
    margin-top: 0;
  }

  .footer-col.margin-bot {
    margin-bottom: 0;
  }

  .nav-wrapper {
    right: 35px;
  }

  .stage-image-lg {
    max-width: 1920px;
  }

  .img-description-wrapper {
    align-self: stretch;
    max-width: 1472px;
  }

  .site-title {
    max-width: none;
    margin-bottom: 0;
    font-size: 64px;
    line-height: 84px;
  }

  .site-title.quote {
    font-size: 46px;
    line-height: 60px;
  }

  .site-title-wrapper {
    max-width: 1085px;
    margin-bottom: 100px;
    margin-left: 0;
    margin-right: 0;
  }

  .sticky-wrapper {
    grid-template-rows: 65px auto auto auto 100px;
    grid-template-columns: minmax(0%, 1fr) minmax(0%, 180px) 680px 100px;
  }

  .img-2-wrapper {
    width: 100%;
    margin-bottom: 0;
  }

  .detail-content.no-border {
    padding-left: 0;
  }

  .sticky-track {
    border-bottom: 1px solid var(--gainsboro);
  }

  .richtext-wrapper {
    padding-right: 30px;
  }

  .richtext-wrapper.standalone {
    padding-left: 0;
  }

  .richtext-wrapper.accordeon {
    min-width: auto;
    max-width: none;
    margin-right: 100px;
    padding-left: 0;
    padding-right: 0;
  }

  .content-segment-wrapper {
    padding-top: 70px;
  }

  .quote-wrapper.detail {
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
  }

  .quote-wrapper.detail.normal {
    justify-content: center;
  }

  .left-wrapper {
    padding-left: 25px;
  }

  .img-wrapper-content {
    max-width: 858px;
  }

  .img-wrapper-content.full {
    max-width: none;
    margin-right: 0;
  }

  .sub-content-section {
    border-top-style: none;
  }

  .slide-panel.detail {
    justify-items: stretch;
    display: none;
  }

  .img-slide-detail {
    justify-content: space-between;
  }

  .shape-detail-01 {
    left: -170px;
  }

  .shape-detail-01.home-02 {
    width: 240px;
    left: -80px;
  }

  .shape-detail-01.home-03 {
    right: -146px;
  }

  .shape-detail-01.home-video {
    width: 780px;
    top: -190px;
  }

  .shape-detail-01.home-4 {
    left: -100px;
    right: auto;
  }

  .shape-detail-01.overview-02 {
    width: 380px;
    height: 420px;
    bottom: -80px;
    overflow: hidden;
  }

  .shape-detail-01.home-5 {
    width: 830px;
    top: 30%;
    left: -570px;
  }

  .shape-detail-01.home-01 {
    width: 1080px;
    top: 4%;
    right: -520px;
  }

  .shape-detail-01.overview-01 {
    width: 620px;
    top: -327px;
    left: -320px;
    right: auto;
  }

  .shape-detail-01.overview-02 {
    width: 600px;
    bottom: -26px;
    overflow: hidden;
  }

  .img-3 {
    object-fit: cover;
    display: block;
  }

  .video-wrapper.detail {
    padding-bottom: 47.5%;
  }

  .shape-detail-02 {
    z-index: -100;
    right: 0;
  }

  .shape-detail-02.home {
    z-index: 5;
    z-index: -50;
    width: 820px;
    top: 44%;
    right: -300px;
  }

  .quote-description-wrapper {
    align-self: center;
    width: 100%;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }

  .quote-description-wrapper.alt {
    max-width: 950px;
  }

  .site-quote-wrapper {
    max-width: 950px;
    position: relative;
  }

  .site-quote {
    font-size: 180px;
    position: absolute;
    left: 0;
  }

  .site-quote.start {
    font-size: 130px;
    top: -4px;
    left: -65px;
  }

  .site-quote.end {
    font-size: 130px;
    bottom: 2px;
    left: auto;
    right: -65px;
  }

  .header-02-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: minmax(50px, 1fr) minmax(301px, 735px) minmax(301px, 735px) minmax(50px, 1fr);
    max-width: 1920px;
  }

  .header-02-img {
    max-width: 960px;
  }

  .header-02-wrapper {
    flex-direction: column;
    justify-content: center;
    padding-left: 90px;
    display: flex;
  }

  .header-02-description-wrapper {
    align-self: center;
    width: 100%;
    max-width: 1085px;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 45px;
  }

  .header-02-description-wrapper.part-2 {
    padding-top: 35px;
    padding-left: 30px;
  }

  .shape-detail-03 {
    z-index: 100;
    top: 45%;
    left: -55px;
    right: auto;
  }

  .stage-slider {
    height: auto;
  }

  .bg-shape-wrapper {
    z-index: 100;
    display: none;
  }

  .footer-link-wrapper {
    margin-left: 0;
  }

  .footer-icon {
    margin-bottom: 0;
  }

  .footer-line-wrapper.icon {
    display: block;
  }

  .web-link-icon {
    width: 30px;
  }

  .sub-content-wrapper-section {
    position: relative;
  }

  .sub-content-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    display: flex;
  }

  .img-detail-sm {
    align-self: flex-end;
    width: auto;
    max-width: 275px;
  }

  .img-detail-wrapper {
    width: 100%;
    max-width: none;
  }

  .img-detail-lg-grid {
    grid-template-columns: minmax(80px, 3fr) minmax(301px, 735px) minmax(301px, 735px) minmax(80px, 3fr);
    justify-items: stretch;
    width: 100vw;
    max-width: 1920px;
  }

  .img-content-wide {
    width: 100%;
    max-width: none;
  }

  .kontakt-anchor-target {
    padding-top: 0;
    padding-bottom: 0;
  }

  .t-i-img-wrapper {
    display: flex;
  }

  .image-text-bild {
    object-fit: cover;
  }

  .text-card-full {
    font-size: 56px;
    line-height: 64px;
  }

  .text-img-section {
    justify-content: center;
    display: flex;
  }

  .text-img-grid {
    grid-template-columns: minmax(50px, 1fr) minmax(251px, 685px) 50px 50px 50px minmax(251px, 685px) minmax(50px, 1fr);
    max-width: 1570px;
  }

  .text-img-grid.symmetric {
    margin-left: auto;
    margin-right: auto;
  }

  .abstandhalter {
    height: 130px;
  }

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

  .grid {
    flex: 1;
    grid-template-rows: auto auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    max-width: 1470px;
  }

  .img-sub-con-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: minmax(0, auto) 90px auto;
    grid-template-columns: 100px 52% 100px auto;
    width: 100%;
  }

  .detail-content-grid {
    grid-template-columns: minmax(80px, 1fr) minmax(560px, 705px) minmax(560px, 705px) minmax(80px, 1fr);
  }

  .lightbox-slider {
    height: 100%;
  }

  .lightbox-left-arrow, .lightbox-right-arrow, .lightbox-nav {
    display: none;
  }

  .numbers-n-facts-grid {
    grid-template-rows: auto 80px auto 80px auto 80px 80px;
    grid-template-columns: 1fr 100px 1fr;
  }

  .rec-slide.last-slide {
    width: 400%;
  }

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

  .lightbox {
    justify-content: center;
    align-items: center;
  }

  .last-slide-wrapper {
    width: 100%;
    max-width: none;
    padding-right: 0%;
  }

  .gallery-btn-wrapper {
    margin-left: 36px;
  }

  .arrow-big-wrapper {
    cursor: pointer;
  }

  .img-description-wrapper-2 {
    align-self: stretch;
  }

  .img-1-2 {
    max-width: 536.609px;
  }

  .img-2-2 {
    max-width: none;
  }

  .detail-slider {
    background-color: #0000;
    padding-bottom: 65px;
  }

  .circle-img {
    display: block;
  }

  .footer-extention {
    background-color: #000;
  }

  .footer-icon-2 {
    margin-bottom: 0;
  }

  .text-card-full-2 {
    font-size: 56px;
    line-height: 64px;
  }

  .claim-2 {
    margin-bottom: 35px;
  }

  .grid-card-s {
    color: #000;
    text-decoration: none;
  }

  .arrow-big-wrapper-2 {
    cursor: pointer;
  }

  .gallery-container-2 {
    grid-template-columns: 1fr minmax(301px, 735px) minmax(301px, 735px) 1fr;
    min-height: 100vh;
    position: sticky;
    top: 0;
    overflow: visible;
  }

  .gallery-container-2.alt {
    position: relative;
  }

  .p-38-2 {
    color: #000;
  }

  .card-category-2 {
    text-align: right;
  }

  .sub-content-wrapper-section-2 {
    position: relative;
  }

  .sticky-track-2 {
    border-bottom: 1px solid #ddd;
  }

  .nav-wrapper-2 {
    right: 35px;
  }

  .sub-content-wrapper-section-3, .sub-content-wrapper-section-4, .sub-content-wrapper-section-5 {
    position: relative;
  }

  .gallery-track-2 {
    width: 5060px;
  }

  .gallery-container-3 {
    grid-template-columns: 1fr minmax(301px, 735px) minmax(301px, 735px) 1fr;
    min-height: 100vh;
    position: sticky;
    top: 0;
    overflow: visible;
  }

  .footer-extention-2 {
    background-color: #000;
  }
}

@media screen and (max-width: 991px) {
  h2 {
    margin-bottom: 20px;
    font-size: 27px;
    line-height: 37px;
  }

  .header-nav {
    z-index: 100000;
    flex-direction: row;
    align-items: center;
    height: 72px;
    padding-left: 95px;
    padding-right: 95px;
    display: flex;
  }

  .header-nav.alternative {
    border-bottom-color: #696969;
    min-height: 72px;
    margin-bottom: 145px;
    display: block;
  }

  .header-line {
    height: 6px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }

  .logo-link {
    flex: 0 auto;
    justify-content: flex-start;
    height: 50px;
    margin-top: 14px;
  }

  .logo-link.w--current {
    margin-top: 13px;
  }

  .logo-img {
    object-fit: fill;
    width: auto;
    max-width: none;
    height: 100%;
    display: block;
  }

  .container-md {
    align-self: center;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .container-md.pad-left-64 {
    margin-left: 0;
    margin-right: 0;
    padding-left: 30px;
    padding-right: 115px;
  }

  .container-md.pad-left-64.flex-horizontal {
    padding-left: 110px;
    padding-right: 110px;
  }

  .container-md.pad-left-64.border-top, .container-md.pad-left-64.detail, .container-md.pad-left-64.border-top {
    padding-left: 0;
  }

  .container-md.flex-center {
    margin-left: 95px;
    margin-right: 95px;
  }

  .container-md.footer {
    min-height: 220px;
    margin-bottom: 70px;
    padding-left: 80px;
    padding-right: 80px;
  }

  .container-md.instagram {
    margin-left: 0;
    margin-right: 0;
  }

  .container-md.insta {
    margin-left: 0;
    margin-right: 0;
  }

  .container-md.flex.content {
    margin-top: 75px;
  }

  .container-md.right {
    margin-top: 85px;
    padding-left: 0;
    padding-right: 170px;
  }

  .container-md.right.alt.personen {
    margin-top: 30px;
    padding-right: 0;
  }

  .container-md.left {
    margin-top: 85px;
    padding-left: 0;
    padding-right: 100px;
  }

  .container-md.left.alt.personen {
    margin-top: 30px;
    padding-left: 0;
  }

  .container-md.margin-top-bottom, .container-md.margin-top-bottom.last {
    margin-bottom: 0;
  }

  .container-md.margin-top-bottom.last.left {
    margin-bottom: 100px;
  }

  .container-md.margin-top-bottom.right {
    margin-top: 70px;
    padding-left: 0;
  }

  .container-md.margin-top-bottom.left {
    margin-top: 70px;
    padding-left: 0;
    padding-right: 114px;
  }

  .container-md.accordeons {
    max-width: 750px;
  }

  .container-md.border-top.empty {
    display: none;
  }

  .container-sm.pd-bottom-180 {
    padding-bottom: 95px;
  }

  .container-lg {
    max-width: 100%;
    padding-left: 80px;
    padding-right: 80px;
  }

  .container-lg.borders.flex-vertical.type-b {
    padding-top: 120px;
  }

  .container-lg.header {
    flex-direction: row;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  .container-lg.header.borders {
    flex-direction: row;
  }

  .container-lg.insta, .container-lg.no-padding, .container-lg.breadcrumb, .container-lg.insta {
    padding-left: 0;
    padding-right: 0;
  }

  .container-lg.borders {
    border-left-style: none;
    border-right-style: none;
    flex-direction: column;
    align-items: stretch;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .container-lg.borders.flex-vertical {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-section.border-bottom {
    padding-left: 65px;
    padding-right: 65px;
  }

  .home-heading {
    letter-spacing: .05rem;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 27px;
  }

  .home-sub {
    letter-spacing: 0;
    margin-bottom: 0;
    font-size: 62px;
    line-height: 77px;
  }

  .home-lg {
    font-size: 62px;
  }

  .intro-sidebar {
    margin-top: 40px;
    position: absolute;
    top: 330px;
  }

  .anchor-text {
    font-size: 14px;
    line-height: 20px;
  }

  .anchor-link {
    margin-bottom: 2.5px;
  }

  .anchor-deco {
    width: 45px;
    margin-right: 10px;
  }

  .anchor-line {
    width: 20px;
    height: .8px;
  }

  .intro-content {
    flex-direction: column;
    align-items: flex-end;
    margin-top: 80px;
  }

  .hero-grid {
    grid-template-rows: 235px 50px;
    grid-template-columns: 80px minmax(301px, 1fr) minmax(301px, 1fr) minmax(80px, auto);
    grid-auto-rows: 235px;
  }

  .hero-grid.detail {
    grid-template-columns: 50% 50%;
    grid-auto-rows: auto;
  }

  .hero-grid.video {
    grid-template-rows: .5fr .5fr 1fr .5fr .5fr;
  }

  .grid-content.steelblue {
    height: 100%;
  }

  .grid-content.steelblue.deco {
    display: block;
  }

  .grid-content.yellow {
    height: 100%;
  }

  .grid-content.yellow.deco {
    display: block;
  }

  .container-full.pd-bottom-100 {
    padding-bottom: 100px;
    padding-left: 0;
    padding-right: 0;
  }

  .container-full.divider {
    height: 50px;
    padding-left: 0;
    padding-right: 0;
  }

  .claim {
    margin-top: 36px;
    margin-left: 0;
    margin-right: 39px;
    font-size: 28px;
    line-height: 35px;
  }

  .section-label.sm {
    margin-top: 36px;
    margin-left: 39px;
    margin-right: 15px;
  }

  .section-label.margin-top-bottom {
    margin: 30px 0 65px;
  }

  .section-label-text {
    font-size: 16px;
    line-height: 22px;
  }

  .section-label-text.sm {
    font-size: 14px;
    line-height: 24px;
  }

  .section-nr {
    font-size: 16px;
    line-height: 22px;
  }

  .section-nr.sm {
    font-size: 14px;
    line-height: 24px;
  }

  .intro-paragraph {
    margin-bottom: 32px;
    margin-left: 39px;
    margin-right: 15px;
    font-size: 18px;
    line-height: 28px;
  }

  .content-grid-12 {
    grid-template: "."
    / 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    width: 100%;
  }

  .grid-card-s-old {
    border-right: 1px solid var(--gainsboro);
    padding: 30px 30px 45px;
  }

  .grid-card-s-old.first, .grid-card-s-old.video-left {
    border-right-style: none;
  }

  .grid-card-quote-old {
    border-right: 1px solid var(--gainsboro);
    padding: 40px 75px 45px;
  }

  .grid-card-xl-old {
    border-top: 1px solid var(--gainsboro);
    border-bottom-style: none;
    padding: 16px 30px 45px;
  }

  .grid-card-l {
    border-top: 1px solid var(--gainsboro);
    border-right: 1px solid var(--gainsboro);
    padding: 30px 30px 45px;
  }

  .grid-card-m {
    border-left-style: none;
    padding: 30px 30px 45px;
  }

  .card-label-wrapper {
    margin-bottom: 20px;
  }

  .card-label {
    font-size: 10px;
    line-height: 14px;
  }

  .card-label.stage {
    margin-left: 1px;
    margin-right: 39px;
  }

  .card-category {
    font-size: 10px;
    line-height: 14px;
  }

  .card-teaser {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 24px;
  }

  .card-teaser.card-arrow.button {
    width: 30px;
    margin-bottom: 2px;
    font-size: 0;
    line-height: 0;
  }

  .card-quote {
    letter-spacing: .1rem;
    font-size: 30px;
  }

  .card-quote.detail.mobile {
    display: none;
  }

  .card-quote.quote-start {
    margin-right: 60px;
    font-size: 65px;
  }

  .card-quote.quote-end {
    margin-bottom: 84px;
    margin-left: 55px;
    font-size: 65px;
  }

  .img-mg-bottom-40 {
    width: auto;
    margin-bottom: 35px;
  }

  .card-title {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 38px;
  }

  .quote-name {
    font-size: 12px;
    line-height: 16px;
  }

  .quote-divider {
    margin-left: 0;
  }

  .banner-text {
    font-size: 36px;
  }

  .stimmen-section {
    padding-left: 0;
    padding-right: 0;
  }

  .slider-grid {
    grid-template-rows: auto auto auto 75px auto auto auto;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    padding-left: 80px;
    padding-right: 80px;
  }

  .slider-content.bg-white, .slider-content.bg-blue, .slider-content.bg-plum, .slider-content.bg-yellow, .slider-content.bg-yellow, .slider-content.bg-blue, .slider-content.bg-white, .slider-content.bg-plum {
    padding: 30px;
  }

  .number-lg.counter {
    margin-bottom: -50px;
    font-family: Linotype helveticaneueltstd lt, Arial, sans-serif;
    font-size: 218px;
    font-weight: 300;
  }

  .number-md.counter {
    margin-bottom: -30px;
    font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
    font-size: 145px;
    font-weight: 400;
  }

  .number-sm.counter {
    margin-bottom: -5px;
    font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
    font-size: 80px;
    font-weight: 400;
  }

  .number-description {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
  }

  .gallery-scroll-track {
    position: static;
  }

  .gallery-container {
    grid-template-columns: 80px minmax(301px, 1fr) minmax(301px, 1fr) 80px;
  }

  .gallery-track {
    width: 150rem;
    min-height: auto;
    margin-top: 60px;
    padding-left: 30px;
    display: none;
  }

  .gallery-wrapper {
    height: auto;
  }

  .imp-card-mid {
    flex: 0 auto;
    align-self: center;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-right: 0;
  }

  .imp-card-low {
    flex: none;
    align-self: center;
    max-width: 76%;
    margin-right: 0;
  }

  .imp-card-high {
    flex-flow: column;
    flex: 0 auto;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    width: 55%;
    height: auto;
    margin-right: 0;
    display: flex;
  }

  .img-gallery-quer {
    width: 100%;
    max-width: none;
  }

  .img-gallery-quad {
    width: 100%;
  }

  .img-gallery-hoch {
    object-fit: contain;
    flex: 0 auto;
    width: 100%;
    max-width: none;
    height: auto;
    max-height: 100%;
    display: block;
    overflow: visible;
  }

  .gallery-text-wrapper {
    object-fit: contain;
    margin-top: 25px;
  }

  .gallery-text-wrapper.detail {
    margin-top: 25px;
  }

  .gallery-text-wrapper.detail.slider-right {
    margin-top: 25px;
    margin-bottom: 0;
    margin-left: 0;
  }

  .gallery-arrow {
    width: 20px;
    min-width: 20px;
    margin-left: 5px;
    margin-right: 12px;
  }

  .gallery-text {
    max-width: 210px;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 19px;
  }

  .gallery-text.nav {
    display: none;
  }

  .gallery-text.nav.alternate {
    display: block;
  }

  .gallery-text.detail-description {
    width: auto;
    max-width: 350px;
  }

  .gallery-text.detail-description.type-b {
    margin-bottom: 35px;
  }

  .gallery-text.detail-description.grey {
    width: auto;
  }

  .gallery-track-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .content-left {
    margin-bottom: 95px;
  }

  .p-38 {
    font-size: 31px;
    line-height: 41px;
  }

  .p-38.instagram {
    margin-bottom: 34px;
  }

  .p-38.video-card {
    margin-right: 25px;
    font-size: 28px;
    line-height: 38px;
  }

  .p-20.margin-left-100 {
    margin-top: 15px;
    margin-right: 0;
    font-size: 16px;
    line-height: 24px;
  }

  .play-video {
    display: none;
  }

  .video-label.bg-yellow {
    padding: 32px 30px 25px;
  }

  .footer-section.bg-black {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .footer-section.bg-black.mobile-menu {
    flex: 1;
    justify-content: flex-end;
    display: flex;
  }

  .image-wrapper {
    height: 165px;
  }

  .img_parallax {
    top: 0%;
  }

  .instagram-img {
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: auto;
    max-height: none;
  }

  .insta-list {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr 1fr;
  }

  .insta-list-wrapper {
    margin-bottom: 90px;
  }

  .insta-item {
    width: 100%;
    height: 100%;
  }

  .image {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
  }

  .image-home-stage {
    flex: 0 auto;
    width: 530px;
    height: auto;
    min-height: 100%;
  }

  .border-left {
    display: none;
  }

  .border-left.border-top {
    border-right-style: none;
    display: block;
  }

  .border-right {
    display: none;
  }

  .border-right.border-top {
    border-left-style: none;
    display: block;
  }

  .footer-text {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 16px;
  }

  .footer-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 50% 50%;
    margin-bottom: 55px;
  }

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

  .footer-col.horizontal {
    flex-direction: row;
  }

  .footer-col.horizontal.margin-bot.sm {
    margin-bottom: 8px;
  }

  .footer-col.margin-bot, .footer-col.margin-bot.mobile, .footer-deco {
    margin-bottom: 20px;
  }

  .footer-deco.slanted {
    display: block;
  }

  .nav-wrapper {
    flex: 0 auto;
    margin-top: 10px;
    top: 6px;
    right: 95px;
  }

  .back-arrow {
    width: 26px;
  }

  .img-description-wrapper {
    margin-left: 0;
    margin-right: 0;
    padding: 30px 0 60px;
  }

  .img-description-wrapper.detail, .img-description-wrapper.detail.var-02 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .site-title {
    max-width: none;
    margin-bottom: 0;
    font-size: 34px;
    line-height: 43px;
  }

  .site-title-wrapper {
    max-width: none;
    margin-bottom: 50px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .sticky-wrapper {
    grid-template-rows: 65px auto auto auto 100px;
    grid-template-columns: 80px 1fr 80px;
    align-items: stretch;
    position: static;
  }

  .img-1-wrapper {
    margin-left: 160px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .img-1-wrapper.alone {
    margin-bottom: 0;
  }

  .img-2-wrapper {
    align-items: stretch;
    max-width: none;
  }

  .detail-content {
    border-left-style: none;
  }

  .detail-content.no-border {
    padding-left: 30px;
    padding-right: 30px;
  }

  .richtext-wrapper {
    min-width: auto;
    max-width: none;
    padding-left: 110px;
    padding-right: 110px;
  }

  .richtext-wrapper.quote {
    padding-left: 80px;
    padding-right: 80px;
  }

  .richtext-wrapper.standalone {
    margin-bottom: 50px;
    padding-right: 30px;
  }

  .richtext-wrapper.accordeon {
    margin-bottom: 50px;
  }

  .content-segment-wrapper {
    padding-top: 50px;
    padding-bottom: 40px;
  }

  .richtext-lead {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 28px;
  }

  .richtext-paragraph {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 27px;
  }

  .richtext-zwischentitel {
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 27px;
    line-height: 37px;
  }

  .quote-wrapper.detail {
    margin-bottom: 50px;
  }

  .left-wrapper {
    justify-content: flex-end;
    min-width: auto;
    max-width: none;
    padding-left: 95px;
    padding-right: 95px;
  }

  .img-wrapper-1 {
    width: 75%;
    margin-right: 0;
  }

  .img-wrapper-1.static {
    width: 75%;
  }

  .img-1 {
    padding-left: 0;
  }

  .img-wrapper-content {
    padding-right: 0;
  }

  .img-2 {
    max-width: none;
  }

  .sub-content-section {
    flex-direction: column;
    align-items: stretch;
    padding: 50px 80px 65px;
  }

  .slide-panel.detail {
    grid-row-gap: 55px;
    grid-template-rows: auto auto;
    justify-items: center;
    margin-bottom: 50px;
  }

  .img-slide-detail {
    flex-direction: column;
    align-items: flex-start;
  }

  .share-btn-wrapper {
    margin-top: 0;
  }

  .shape-detail-01 {
    display: none;
  }

  .imp-slider {
    background-color: #0000;
    align-items: stretch;
    width: 100vw;
    height: 75vw;
    margin-top: 0;
    margin-bottom: 0;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .imp-slide {
    min-height: 100%;
    margin-left: 0;
    margin-right: 80px;
    padding-left: 0;
    padding-right: 0;
  }

  .imp-slider-wrapper {
    padding-top: 100px;
    padding-bottom: 65px;
  }

  .imp-mask {
    margin-left: 80px;
    margin-right: 80px;
    overflow: visible;
  }

  .imp-slider-left-arrow {
    color: var(--hover-grey);
    justify-content: center;
    align-items: center;
    transition: color .2s;
    display: flex;
  }

  .imp-slider-left-arrow:hover {
    color: var(--silver);
  }

  .imp-slider-right-arrow {
    color: var(--hover-grey);
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 65px;
    transition: color .2s;
    display: flex;
  }

  .imp-slider-right-arrow:hover {
    color: var(--silver);
  }

  .imp-slider-nav {
    inset: auto 0% 0%;
  }

  .slide-container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0;
    display: flex;
  }

  .slider-arrow-icon {
    color: var(--white);
    width: 30px;
    line-height: 0;
  }

  .recommendation-section {
    padding-left: 80px;
    padding-right: 80px;
  }

  .grid-rec {
    grid-column-gap: 30px;
    grid-row-gap: 45px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 90px;
  }

  .title-rec-wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 14px;
    line-height: 20px;
  }

  .img-3 {
    width: 100%;
  }

  .stop-video {
    display: none;
  }

  .quote-description-wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-top: 50px;
    padding-bottom: 35px;
  }

  .quote-description-wrapper.alt {
    width: 100%;
    padding-top: 120px;
  }

  .site-quote-wrapper {
    margin-bottom: 50px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .header-02-wrapper {
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 39px;
  }

  .header-02-content {
    align-self: center;
  }

  .header-02-description-wrapper {
    padding-top: 0;
    padding-bottom: 35px;
  }

  .header-02-description-wrapper.part-2 {
    padding-left: 45px;
  }

  .marquee-horizontal {
    height: 130px;
  }

  .stage-slider, .stage-slide {
    height: auto;
  }

  .footer-icon {
    width: 20px;
    margin-right: 15px;
  }

  .footer-icon.lg {
    width: 22px;
    margin-right: 15px;
  }

  .footer-line-wrapper {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .main-content {
    flex-direction: column;
    justify-content: center;
    margin-top: 125px;
    padding-left: 95px;
    padding-right: 95px;
    display: flex;
  }

  .lauftext {
    font-size: 17px;
    line-height: 27px;
  }

  .lauftext.cookie {
    padding-right: 50px;
  }

  .lauftext-wrapper {
    margin-bottom: 55px;
  }

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

  .cookie-banner-wrapper {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .card-quote-2 {
    letter-spacing: .1rem;
    font-size: 30px;
    line-height: 46px;
  }

  .card-quote-2.detail {
    font-size: 30px;
    line-height: 46px;
  }

  .card-quote-2.detail.mobile {
    display: none;
  }

  .card-quote-2.quote-start {
    margin-right: 60px;
    font-size: 65px;
  }

  .card-quote-2.quote-end {
    margin-bottom: 48px;
    margin-left: 55px;
    font-size: 65px;
  }

  .sub-content-wrapper-section {
    padding-top: 0;
  }

  .sub-content-wrapper {
    flex-direction: column;
    padding-left: 80px;
    padding-right: 80px;
    display: flex;
  }

  .sub-content-wrapper.quote, .sub-content-wrapper.with-grid {
    padding-left: 80px;
    padding-right: 80px;
  }

  .img-detail-sm {
    max-width: none;
  }

  .img-sm {
    width: 100%;
    max-width: none;
  }

  .img-sm-wrapper {
    align-items: center;
  }

  .img-detail-lg-grid {
    grid-template-columns: minmax(auto, 80px) minmax(301px, 735px) minmax(301px, 735px) minmax(auto, 80px);
    margin-bottom: 50px;
  }

  .gallery-arrow-2 {
    width: 20px;
    min-width: 20px;
    margin-left: 5px;
    margin-right: 12px;
  }

  .nav-menu {
    background-color: var(--black);
    flex-direction: column;
    flex: 0 auto;
    justify-content: flex-start;
    width: 100vw;
    height: 0;
    margin-top: 0;
    display: flex;
    position: fixed;
    inset: 0%;
    overflow: scroll;
  }

  .nav-link {
    z-index: 1001;
    align-items: center;
    height: 80px;
    margin-left: 0;
    margin-right: 0;
    display: none;
    position: relative;
  }

  .nav-link.sub {
    color: var(--white);
    border-top-style: none;
    height: auto;
    min-height: 40px;
  }

  .nav-link.sub:hover {
    color: var(--hover-grey);
    background-color: #0000;
  }

  .nav-link.sub.w--current {
    color: var(--white);
  }

  .nav-link.sub.w--current:hover {
    color: var(--silver);
  }

  .nav-link.sub.last {
    margin-bottom: 24px;
  }

  .nav-link.sub.overview {
    justify-content: flex-start;
    display: flex;
  }

  .nav-link-text {
    font-size: 24px;
    line-height: 34px;
  }

  .nav-link-text.men {
    width: auto;
    height: auto;
    margin-top: 2px;
    margin-right: 12px;
    font-size: 14px;
    line-height: 14px;
  }

  .nav-link-text.mobile {
    align-items: center;
    height: 80px;
    display: flex;
  }

  .mobile-menu-icon-wrapper {
    cursor: pointer;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
    margin-left: auto;
    padding: 10px 0 10px 10px;
    display: flex;
    position: relative;
  }

  .mobile-menu-icon-wrapper.white {
    z-index: 1200;
    color: var(--steel-blue);
    cursor: pointer;
    padding-right: 0;
    position: relative;
  }

  .mobile-menu-icon {
    min-width: 16px;
    min-height: 10px;
    font-size: 0;
    line-height: 0;
  }

  .mobile-menu-icon.close {
    min-width: 10px;
    min-height: 10px;
    margin-left: 5px;
  }

  .nav-link-wrapper {
    border-bottom: .8px solid var(--hover-grey);
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding-bottom: 0;
    padding-left: 95px;
    padding-right: 95px;
    display: flex;
  }

  .nav-link-wrapper.last {
    border-bottom-style: none;
  }

  .nav-menu-arrow {
    flex: 0 auto;
    margin-bottom: 5px;
    font-size: 0;
    line-height: 0;
    display: block;
  }

  .nav-dropdown-wrapper {
    flex-direction: column;
    flex: 1;
    display: flex;
  }

  .nav-dropdown-trigger {
    color: var(--white);
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    transition: color .2s;
    display: flex;
  }

  .nav-dropdown-trigger:hover {
    color: var(--silver);
  }

  .nav-dropdown-content {
    box-shadow: none;
    background-color: #0000;
    flex-direction: column;
    width: auto;
    display: flex;
    position: static;
    overflow: hidden;
  }

  .nav-link-sub {
    margin-left: 0;
    margin-right: 0;
  }

  .nav-link-text-sub {
    font-size: 18px;
    line-height: 34px;
  }

  .nav-link-text-sub.men {
    width: auto;
    height: auto;
    margin-top: 2px;
    margin-right: 12px;
    font-size: 14px;
  }

  .menu-link-section {
    flex-direction: column;
    justify-content: flex-start;
    width: 100vw;
  }

  .image-text-bild {
    object-fit: cover;
  }

  .card-label-full {
    font-size: 12px;
    line-height: 16px;
  }

  .text-card-full {
    letter-spacing: .1rem;
    font-size: 31px;
    line-height: 41px;
  }

  .text-card-full.detail {
    font-size: 30px;
    line-height: 46px;
  }

  .text-card-full.detail.mobile {
    display: none;
  }

  .text-card-full.quote-start {
    margin-right: 60px;
    font-size: 65px;
  }

  .text-card-full.quote-end {
    margin-bottom: 75px;
    margin-left: 55px;
    font-size: 65px;
  }

  .link-button-text {
    margin-right: 15px;
    font-size: 12px;
    line-height: 16px;
  }

  .card-link-button.content {
    margin-left: 110px;
    margin-right: 110px;
  }

  .card-text-wrapper-old {
    margin-top: 0;
  }

  .card-text-wrapper-old.special {
    margin-top: -25px;
  }

  .text-img-grid {
    grid-template-columns: 80px minmax(auto, 415px) repeat(auto-fit, minmax(auto, 415px)) 80px;
  }

  .text-img-grid.symmetric {
    grid-template-columns: 50px minmax(251px, 685px) minmax(251px, 685px) 50px;
  }

  .breadcrumb-wrapper {
    top: 20px;
  }

  .abstandhalter.personen {
    height: 100px;
  }

  .abstandhalter._180 {
    height: 95px;
  }

  .video-section {
    padding-left: 0;
    padding-right: 0;
  }

  .mobile-menu-icon-wrapper-close {
    z-index: 1000;
    cursor: pointer;
    justify-content: flex-end;
    align-items: center;
    margin-top: 13px;
    margin-left: auto;
    padding: 10px;
    display: flex;
    position: relative;
  }

  .mobile-menu-icon-wrapper-close.white {
    color: #eff2f7;
    cursor: pointer;
    cursor: pointer;
    cursor: pointer;
    margin-top: 20px;
    padding-right: 0;
  }

  .menu-spacer {
    height: 50px;
    padding-bottom: 0;
    padding-right: 0;
    display: block;
  }

  .img-sub-con-grid {
    grid-template-rows: minmax(0, auto) 55px auto auto;
    grid-template-columns: 61% 75px auto;
  }

  .detail-content-grid {
    grid-template-rows: 70px 70px auto auto 70px;
    grid-template-columns: 80px 1fr 80px;
  }

  .img-wrapper-static-1 {
    max-width: none;
    max-height: none;
  }

  .numbers-n-facts-section {
    padding-left: 0;
    padding-right: 0;
  }

  .numbers-n-facts-grid {
    grid-template-rows: auto;
    grid-template-columns: auto;
    margin-bottom: 0;
  }

  .accordeon-section {
    margin-bottom: 80px;
    padding-left: 95px;
    padding-right: 95px;
  }

  .accordeon-icon {
    width: 14px;
  }

  .numbers-n-facts-lotties {
    margin-bottom: 100px;
  }

  .rec-slider-wrapper {
    height: auto;
    margin-left: -30px;
    margin-right: -30px;
    padding-bottom: 70px;
  }

  .rec-slider-mask {
    width: 50%;
  }

  .rec-slide.last-slide {
    width: 400%;
  }

  .right-arrow-2 {
    width: 80px;
    right: -80px;
  }

  .left-arrow-3 {
    width: 80px;
    left: -80px;
  }

  .div-put {
    padding-left: 30px;
    padding-right: 30px;
  }

  .arrow-big-icon {
    width: 60px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .img-2-wrapper-2 {
    align-items: stretch;
    max-width: none;
    padding-bottom: 65px;
  }

  .img-wrapper-2-2 {
    padding-right: 0;
  }

  .img-wrapper-1-2 {
    width: 75%;
    margin-right: 0;
  }

  .img-description-wrapper-2 {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .img-description-wrapper-2.detail {
    padding-left: 95px;
    padding-right: 95px;
  }

  .img-1-2 {
    max-height: none;
    padding-left: 32px;
  }

  .img-1-wrapper-2 {
    padding-top: 55px;
    padding-bottom: 65px;
  }

  .img-2-2 {
    max-width: none;
  }

  .menu-arrow {
    margin-bottom: 4px;
    margin-right: 20px;
    line-height: 0;
  }

  .left-arrow-rec, .right-arrow-rec, .border-left-2 {
    display: none;
  }

  .border-left-2.border-top {
    border-right-style: none;
    display: block;
  }

  .nav-dropdown-content-2 {
    box-shadow: none;
    background-color: #0000;
    flex-direction: column;
    width: auto;
    display: flex;
    position: static;
    overflow: hidden;
  }

  .grid-card-xl {
    border-top: 1px #ddd;
    border-bottom-style: solid;
    padding: 16px 30px 45px;
  }

  .footer-icon-2 {
    width: 20px;
    margin-right: 15px;
  }

  .footer-icon-2.lg {
    width: 22px;
    margin-right: 15px;
  }

  .border-right-2 {
    display: none;
  }

  .border-right-2.border-top {
    border-left-style: none;
    display: block;
  }

  .card-label-full-2 {
    font-size: 12px;
    line-height: 16px;
  }

  .card-text-wrapper {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .link-button-text-2 {
    margin-right: 15px;
    font-size: 12px;
    line-height: 16px;
  }

  .text-card-full-2 {
    letter-spacing: .1rem;
    font-size: 31px;
    line-height: 41px;
  }

  .gallery-scroll-track-2 {
    position: static;
  }

  .claim-2 {
    margin-top: 36px;
    margin-left: 0;
    margin-right: 39px;
    font-size: 28px;
    line-height: 35px;
  }

  .grid-card-s {
    border-right: 1px #ddd;
    padding: 30px 30px 45px;
  }

  .grid-card-s.first {
    border-right-style: none;
  }

  .nav-link-wrapper-2 {
    border-bottom: .8px solid #8b8b8b;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding-bottom: 0;
    padding-left: 95px;
    padding-right: 95px;
    display: flex;
  }

  .nav-link-wrapper-2.last {
    border-bottom-style: none;
  }

  .gallery-container-2 {
    grid-template-columns: 80px minmax(301px, 1fr) minmax(301px, 1fr) 80px;
  }

  .nav-menu-2 {
    background-color: #000;
    flex-direction: column;
    flex: 0 auto;
    justify-content: flex-start;
    width: 100vw;
    height: 0;
    margin-top: 0;
    display: flex;
    position: fixed;
    inset: 0%;
    overflow: scroll;
  }

  .grid-card-quote {
    border-top-style: solid;
    border-right: 1px solid #ddd;
    padding: 40px 75px 45px;
  }

  .p-38-2 {
    font-size: 31px;
    line-height: 41px;
  }

  .p-38-2.video-card {
    margin-right: 25px;
    font-size: 28px;
    line-height: 38px;
  }

  .p-38-2.instagram {
    margin-bottom: 34px;
  }

  .nav-link-2 {
    z-index: 1001;
    align-items: center;
    height: 80px;
    margin-left: 0;
    margin-right: 0;
    display: none;
    position: relative;
  }

  .nav-link-2.sub {
    color: #fff;
    border-top-style: none;
    height: auto;
    min-height: 40px;
  }

  .nav-link-2.sub:hover {
    color: #8b8b8b;
    background-color: #0000;
  }

  .nav-link-2.sub.w--current {
    color: #fff;
  }

  .nav-link-2.sub.w--current:hover {
    color: #c1c1c1;
  }

  .nav-link-2.sub.overview {
    justify-content: flex-start;
    display: flex;
  }

  .nav-dropdown-trigger-2 {
    color: #fff;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    transition: color .2s;
    display: flex;
  }

  .nav-dropdown-trigger-2:hover {
    color: #c1c1c1;
  }

  .content-grid-12-2 {
    grid-template: "."
    / 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    width: 100%;
  }

  .header-nav-2 {
    z-index: 100000;
    flex-direction: row;
    align-items: center;
    height: 72px;
    padding-left: 95px;
    padding-right: 95px;
    display: flex;
  }

  .header-nav-2.alternative {
    border-bottom-color: #696969;
    min-height: 72px;
    margin-bottom: 145px;
    display: block;
  }

  .marquee-horizontal-2 {
    height: 130px;
  }

  .quote-name-2 {
    font-size: 12px;
    line-height: 16px;
  }

  .stop-video-2, .play-video-2 {
    display: none;
  }

  .card-category-2 {
    font-size: 10px;
    line-height: 14px;
  }

  .card-quote-3 {
    letter-spacing: .1rem;
    font-size: 30px;
  }

  .sub-content-wrapper-section-2 {
    padding-top: 0;
  }

  .nav-link-wrapper-3 {
    border-bottom: .8px solid #8b8b8b;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding-bottom: 0;
    padding-left: 95px;
    padding-right: 95px;
    display: flex;
  }

  .nav-link-wrapper-3.last {
    border-bottom-style: none;
  }

  .nav-menu-3 {
    background-color: #000;
    flex-direction: column;
    flex: 0 auto;
    justify-content: flex-start;
    width: 100vw;
    height: 0;
    margin-top: 0;
    display: flex;
    position: fixed;
    inset: 0%;
    overflow: scroll;
  }

  .nav-wrapper-2 {
    flex: 0 auto;
    margin-top: 10px;
    top: 6px;
    right: 95px;
  }

  .nav-dropdown-trigger-3 {
    color: #fff;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    transition: color .2s;
    display: flex;
  }

  .nav-dropdown-trigger-3:hover {
    color: #c1c1c1;
  }

  .gallery-arrow-3 {
    width: 20px;
    min-width: 20px;
    margin-left: 5px;
    margin-right: 12px;
  }

  .richtext-lead-2 {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 28px;
  }

  .recommendation-section-2 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .detail-content-2 {
    border-left-style: none;
  }

  .img-1-3 {
    padding-left: 0;
  }

  .img-1-wrapper-3 {
    margin-left: 160px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .content-segment-wrapper-2 {
    padding-top: 50px;
    padding-bottom: 40px;
  }

  .sub-content-wrapper-section-3 {
    padding-top: 0;
  }

  .nav-dropdown-trigger-4 {
    color: #fff;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    transition: color .2s;
    display: flex;
  }

  .nav-dropdown-trigger-4:hover {
    color: #c1c1c1;
  }

  .gallery-arrow-4 {
    width: 20px;
    min-width: 20px;
    margin-left: 5px;
    margin-right: 12px;
  }

  .img-1-4 {
    padding-left: 0;
  }

  .img-1-wrapper-4 {
    margin-left: 160px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .sub-content-wrapper-section-4 {
    padding-top: 0;
  }

  .nav-dropdown-trigger-5 {
    color: #fff;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    transition: color .2s;
    display: flex;
  }

  .nav-dropdown-trigger-5:hover {
    color: #c1c1c1;
  }

  .gallery-arrow-5 {
    width: 20px;
    min-width: 20px;
    margin-left: 5px;
    margin-right: 12px;
  }

  .img-1-5 {
    padding-left: 0;
  }

  .img-1-wrapper-5 {
    margin-left: 160px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .sub-content-wrapper-section-5 {
    padding-top: 0;
  }

  .nav-dropdown-trigger-6 {
    color: #fff;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    transition: color .2s;
    display: flex;
  }

  .nav-dropdown-trigger-6:hover {
    color: #c1c1c1;
  }

  .gallery-arrow-6 {
    width: 20px;
    min-width: 20px;
    margin-left: 5px;
    margin-right: 12px;
  }

  .img-1-6 {
    padding-left: 0;
  }

  .img-1-wrapper-6 {
    margin-left: 160px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-dropdown-trigger-7 {
    color: #fff;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    transition: color .2s;
    display: flex;
  }

  .nav-dropdown-trigger-7:hover {
    color: #c1c1c1;
  }

  .gallery-arrow-7 {
    width: 20px;
    min-width: 20px;
    margin-left: 5px;
    margin-right: 12px;
  }

  .img-1-7 {
    padding-left: 0;
  }

  .img-1-wrapper-7 {
    margin-left: 160px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-dropdown-trigger-8 {
    color: #fff;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    transition: color .2s;
    display: flex;
  }

  .nav-dropdown-trigger-8:hover {
    color: #c1c1c1;
  }

  .gallery-arrow-8 {
    width: 20px;
    min-width: 20px;
    margin-left: 5px;
    margin-right: 12px;
  }

  .richtext-lead-3 {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 28px;
  }

  .recommendation-section-3 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .img-1-8 {
    padding-left: 0;
  }

  .img-1-wrapper-8 {
    margin-left: 160px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-dropdown-trigger-9 {
    color: #fff;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    transition: color .2s;
    display: flex;
  }

  .nav-dropdown-trigger-9:hover {
    color: #c1c1c1;
  }

  .gallery-arrow-9 {
    width: 20px;
    min-width: 20px;
    margin-left: 5px;
    margin-right: 12px;
  }

  .card-quote-4 {
    letter-spacing: .1rem;
    font-size: 30px;
  }

  .card-quote-4.detail.mobile {
    display: none;
  }

  .nav-dropdown-trigger-10 {
    color: #fff;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    transition: color .2s;
    display: flex;
  }

  .nav-dropdown-trigger-10:hover {
    color: #c1c1c1;
  }

  .nav-dropdown-trigger-11 {
    color: #fff;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    transition: color .2s;
    display: flex;
  }

  .nav-dropdown-trigger-11:hover {
    color: #c1c1c1;
  }

  .gallery-arrow-10 {
    width: 20px;
    min-width: 20px;
    margin-left: 5px;
    margin-right: 12px;
  }

  .richtext-lead-4 {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 28px;
  }

  .nav-dropdown-trigger-12 {
    color: #fff;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    transition: color .2s;
    display: flex;
  }

  .nav-dropdown-trigger-12:hover {
    color: #c1c1c1;
  }

  .gallery-arrow-11 {
    width: 20px;
    min-width: 20px;
    margin-left: 5px;
    margin-right: 12px;
  }

  .img-1-9 {
    padding-left: 0;
  }

  .img-1-wrapper-9 {
    margin-left: 160px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .link-button-text-3 {
    margin-right: 15px;
    font-size: 12px;
    line-height: 16px;
  }

  .gallery-track-2 {
    width: 150rem;
    min-height: auto;
    margin-top: 60px;
    padding-left: 30px;
    display: none;
  }

  .slider-arrow-icon-2 {
    color: #fff;
    width: 30px;
    line-height: 0;
  }

  .imp-slider-left-arrow-2 {
    color: #8b8b8b;
    justify-content: center;
    align-items: center;
    transition: color .2s;
    display: flex;
  }

  .imp-slider-left-arrow-2:hover {
    color: #c1c1c1;
  }

  .gallery-scroll-track-3 {
    position: static;
  }

  .gallery-container-3 {
    grid-template-columns: 80px minmax(301px, 1fr) minmax(301px, 1fr) 80px;
  }

  .gallery-arrow-12 {
    width: 20px;
    min-width: 20px;
    margin-left: 5px;
    margin-right: 12px;
  }

  .imp-slider-right-arrow-2 {
    color: #8b8b8b;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 65px;
    transition: color .2s;
    display: flex;
  }

  .imp-slider-right-arrow-2:hover {
    color: #c1c1c1;
  }

  .nav-dropdown-trigger-13 {
    color: #fff;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    transition: color .2s;
    display: flex;
  }

  .nav-dropdown-trigger-13:hover {
    color: #c1c1c1;
  }

  .nav-dropdown-trigger-14 {
    color: #fff;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    transition: color .2s;
    display: flex;
  }

  .nav-dropdown-trigger-14:hover {
    color: #c1c1c1;
  }

  .quote-name-3 {
    font-size: 12px;
    line-height: 16px;
  }

  .recommendation-section-4 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .img-1-10 {
    padding-left: 0;
  }

  .img-1-wrapper-10 {
    margin-left: 160px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .card-quote-5 {
    letter-spacing: .1rem;
    font-size: 30px;
  }

  .card-quote-5.detail.mobile {
    display: none;
  }

  .card-quote-5.quote-end {
    margin-bottom: 75px;
    margin-left: 55px;
    font-size: 65px;
    line-height: 40px;
  }

  .card-quote-5.quote-start {
    margin-right: 60px;
    font-size: 65px;
  }

  .nav-dropdown-trigger-15 {
    color: #fff;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    transition: color .2s;
    display: flex;
  }

  .nav-dropdown-trigger-15:hover {
    color: #c1c1c1;
  }

  .richtext-lead-5 {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 28px;
  }

  .img-1-11 {
    padding-left: 0;
  }

  .img-1-wrapper-10-copy {
    margin-left: 160px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 23px;
    line-height: 30px;
  }

  ul {
    padding-left: 20px;
    font-size: 16px;
    line-height: 22px;
  }

  .header-nav {
    height: 50px;
    padding-left: 35px;
    padding-right: 35px;
  }

  .header-nav.alternative {
    min-height: 50px;
    margin-bottom: 90px;
  }

  .header-line {
    height: 4px;
  }

  .logo-link {
    height: 35px;
    margin-top: 9px;
  }

  .logo-link.w--current {
    width: 145.891px;
    margin-top: 8px;
  }

  .logo-img {
    height: 100%;
  }

  .container-md {
    margin-left: 50px;
    margin-right: 50px;
    padding-left: 0;
    padding-right: 0;
  }

  .container-md.pad-left-64, .container-md.pad-left-64.flex-horizontal, .container-md.pad-left-64.border-top {
    padding-left: 35px;
    padding-right: 35px;
  }

  .container-md.pad-left-64.detail {
    padding-left: 35px;
  }

  .container-md.pad-left-64.border-top {
    padding-left: 35px;
    padding-right: 35px;
  }

  .container-md.flex-center {
    margin-left: 35px;
    margin-right: 35px;
    padding-left: 0;
    padding-right: 0;
  }

  .container-md.footer {
    min-height: 310px;
    padding-left: 35px;
    padding-right: 35px;
  }

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

  .container-md.flex {
    flex-direction: column;
  }

  .container-md.flex.content {
    margin-top: 55px;
  }

  .container-md.cookie {
    flex: 1;
    justify-content: center;
    margin-left: 35px;
    margin-right: 35px;
  }

  .container-md.right, .container-md.left {
    margin-top: 50px;
    margin-left: 0;
    margin-right: 0;
    padding-right: 50px;
  }

  .container-md.margin-top-bottom {
    margin-top: 70px;
    margin-left: 0;
    margin-right: 0;
  }

  .container-md.margin-top-bottom.last.left {
    margin-top: 50px;
    margin-bottom: 70px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .container-md.margin-top-bottom.right {
    margin-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .container-md.img, .container-md.text-bild {
    margin-left: 0;
    margin-right: 0;
  }

  .container-sm.pd-bottom-180 {
    padding-bottom: 80px;
  }

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

  .container-lg.borders, .container-lg.borders.flex-vertical {
    padding-left: 35px;
    padding-right: 35px;
  }

  .container-lg.borders.flex-vertical.type-b {
    padding-top: 100px;
  }

  .container-lg.header {
    flex-direction: row;
    align-items: flex-start;
  }

  .container-lg.header.borders, .container-lg.no-padding {
    padding-left: 0;
    padding-right: 0;
  }

  .container-lg.borders, .container-lg.borders.flex-vertical {
    padding-left: 35px;
    padding-right: 35px;
  }

  .hero-section.border-bottom {
    padding-left: 0;
    padding-right: 0;
  }

  .home-heading {
    font-size: 10px;
    line-height: 16px;
  }

  .home-sub {
    font-size: 40px;
    line-height: 50px;
  }

  .home-lg {
    font-size: 40px;
  }

  .intro-sidebar {
    margin-top: 25px;
    position: static;
  }

  .anchor-text {
    font-size: 12px;
    line-height: 14px;
  }

  .anchor-link {
    margin-bottom: 5px;
  }

  .intro-content {
    margin-top: 60px;
  }

  .hero-grid {
    grid-template-rows: 160px auto 30px auto auto 30px;
    grid-template-columns: 35px minmax(auto, 1fr) 35px;
    grid-auto-rows: auto;
    margin-top: 45px;
  }

  .hero-grid.video {
    grid-template-rows: minmax(220px, auto) 1fr 45px minmax(180px, auto) 45px;
  }

  .grid-content.yellow.deco, .grid-content.steelblue.deco, .grid-content.steelblue.deco {
    display: none;
  }

  .grid-content.yellow {
    padding: 52px 35px;
  }

  .grid-content.yellow.deco {
    display: none;
  }

  .container-full.pd-bottom-100 {
    padding-top: 25px;
    padding-bottom: 50px;
  }

  .container-full.divider {
    height: 50px;
    line-height: 37px;
  }

  .container-full.divider.no-borders {
    border-bottom-style: solid;
    height: 50px;
  }

  .claim {
    margin-top: 0;
    margin-right: 0;
  }

  .section-label.sm {
    margin-top: 20px;
    margin-left: 15px;
  }

  .section-label.margin-top-bottom {
    margin-top: 18px;
    margin-bottom: 15px;
  }

  .section-label-text {
    font-size: 14px;
    line-height: 20px;
  }

  .section-label-text.sm {
    letter-spacing: .05rem;
    font-size: 13px;
    line-height: 10px;
  }

  .section-nr {
    font-size: 14px;
    line-height: 20px;
  }

  .section-nr.sm {
    letter-spacing: .05rem;
    font-size: 13px;
    line-height: 10px;
  }

  .intro-paragraph {
    margin-top: 45px;
    margin-bottom: 25px;
    margin-left: 15px;
    font-size: 16px;
    font-weight: 300;
    line-height: 23px;
  }

  .content-grid-12 {
    grid-template-columns: auto;
  }

  .grid-card-s-old {
    border-bottom: 1px solid var(--gainsboro);
    border-left-style: none;
    padding: 35px;
  }

  .grid-card-s-old.video-right {
    display: none;
  }

  .grid-card-quote-old {
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    padding-left: 35px;
    padding-right: 35px;
  }

  .grid-card-xl-old {
    border-style: none;
    padding-left: 35px;
    padding-right: 35px;
  }

  .grid-card-xl-old.alt {
    border-bottom-style: solid;
  }

  .grid-card-l {
    border-style: none none solid;
    border-bottom-width: 1px;
    border-bottom-color: var(--gainsboro);
    padding-left: 35px;
    padding-right: 35px;
  }

  .grid-card-m {
    border-left-style: none;
    border-right-style: none;
    padding-left: 35px;
  }

  .card-teaser {
    font-size: 14px;
    line-height: 22px;
  }

  .card-teaser.truncate {
    height: 66px;
  }

  .card-teaser.card-arrow.button {
    width: 22px;
  }

  .card-quote {
    letter-spacing: .4px;
    font-size: 28px;
    line-height: 38px;
  }

  .card-quote.detail {
    font-size: 28px;
    line-height: 38px;
    display: none;
  }

  .card-quote.detail.mobile {
    margin-bottom: 30px;
    font-size: 26px;
    line-height: 38px;
    display: block;
  }

  .card-quote.quote-start, .card-quote.quote-end {
    display: none;
  }

  .quote-label {
    margin-bottom: 25px;
  }

  .card-arrow {
    margin-top: 25px;
  }

  .banner-text {
    margin-top: 6px;
    font-family: Linotype helveticaneueltstd lt, Arial, sans-serif;
    font-size: 33px;
    font-weight: 300;
    line-height: 42px;
  }

  .banner-bold {
    font-family: Linotype helveticaneueltstd md, Arial, sans-serif;
    font-weight: 500;
  }

  .slider-grid {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: auto;
    padding-left: 35px;
    padding-right: 35px;
  }

  .slider-content.bg-blue.empty {
    display: none;
  }

  .number-md {
    font-size: 170px;
  }

  .number-description {
    margin-bottom: 0;
    font-size: 15px;
  }

  .gallery-scroll-track {
    position: relative;
  }

  .gallery-container {
    grid-template-columns: 35px auto 35px;
    width: 100%;
  }

  .gallery-track {
    flex-direction: column;
    width: auto;
    padding-left: 35px;
    padding-right: 35px;
  }

  .gallery-wrapper {
    height: auto;
  }

  .imp-card-mid {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .imp-card-low {
    width: 75%;
    max-width: 100%;
    margin-bottom: 0;
    margin-right: 0;
  }

  .imp-card-high {
    flex-direction: column;
    justify-content: flex-start;
    align-self: stretch;
    height: 100%;
    margin-bottom: 0;
  }

  .img-gallery-quer, .img-gallery-quad {
    width: 100%;
  }

  .img-gallery-hoch {
    object-fit: fill;
    flex: 0 auto;
    width: 100%;
    max-width: 450px;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .gallery-text-wrapper.detail {
    margin-top: 30px;
  }

  .gallery-text-wrapper.detail.slider-right {
    margin-bottom: 60px;
  }

  .gallery-text-wrapper.detail.alt {
    margin-left: 0;
  }

  .gallery-arrow {
    margin-top: 8px;
    margin-left: 0;
  }

  .gallery-arrow.detail {
    margin-top: 0;
  }

  .gallery-text {
    width: auto;
    max-width: 350px;
    margin-top: 3px;
    font-size: 11px;
    line-height: 16px;
  }

  .gallery-text.nav.alternate {
    display: block;
  }

  .gallery-text.detail-description {
    margin-right: 15px;
  }

  .gallery-text.detail-description.type-b {
    margin-bottom: 25px;
  }

  .gallery-text.detail-description.grey {
    margin-right: 0;
  }

  .gallery-track-wrapper {
    position: relative;
  }

  .content-left {
    margin-top: 60px;
    margin-bottom: 65px;
  }

  .p-38 {
    letter-spacing: .8px;
  }

  .p-38.instagram {
    font-size: 27px;
    line-height: 34px;
  }

  .p-38.video-card {
    margin-right: 0;
    font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 34px;
  }

  .p-38.accordeon {
    font-size: 24px;
  }

  .p-38.accordeon-title {
    margin-bottom: 35px;
  }

  .video-label.bg-yellow {
    flex-direction: column;
    padding-left: 30px;
    padding-right: 30px;
  }

  .footer-section.bg-black {
    padding-left: 0;
    padding-right: 0;
  }

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

  .img_parallax {
    top: 0%;
  }

  .instagram-img {
    max-width: none;
    max-height: none;
  }

  .insta-item {
    width: 100%;
    height: 100%;
  }

  .image {
    width: 100%;
    max-width: none;
    max-height: none;
  }

  .image-home-stage {
    width: 100%;
  }

  .border-left.border-top, .border-right.border-top {
    display: none;
  }

  .footer-text {
    font-size: 15px;
  }

  .footer-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto auto;
    grid-template-columns: auto;
  }

  .footer-col {
    flex-direction: row;
  }

  .footer-col.horizontal.impressum {
    margin-top: 50px;
  }

  .footer-col.margin-bot {
    flex-direction: column;
  }

  .footer-deco {
    margin-bottom: 15px;
  }

  .footer-deco.slanted {
    margin-bottom: 0;
    display: block;
  }

  .nav-wrapper {
    margin-top: 7px;
    top: 12px;
    right: 35px;
  }

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

  .nav-wrapper.text-bild:hover {
    color: var(--hover-grey);
  }

  .back-arrow {
    margin-right: 10px;
  }

  .stage-image-lg {
    height: 280px;
  }

  .img-description-wrapper {
    padding-bottom: 45px;
    padding-left: 0;
    padding-right: 0;
  }

  .img-description-wrapper.detail {
    padding-top: 25px;
    padding-left: 35px;
    padding-right: 35px;
  }

  .img-description-wrapper.detail.var-02 {
    padding-left: 35px;
    padding-right: 35px;
  }

  .site-title {
    margin-bottom: 0;
    font-size: 31px;
    display: block;
  }

  .site-title.mobile {
    display: block;
  }

  .site-title.quote {
    display: none;
  }

  .site-title-wrapper {
    margin-bottom: 35px;
    padding-left: 0;
    padding-right: 0;
  }

  .sticky-wrapper {
    grid-template-rows: 65px auto auto auto 75px;
    grid-template-columns: 35px 1fr 35px;
  }

  .img-1-wrapper {
    margin-bottom: 75px;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .img-2-wrapper {
    padding-bottom: 0;
  }

  .detail-content.no-border {
    padding-left: 0;
    padding-right: 0;
  }

  .richtext-wrapper, .richtext-wrapper.quote, .richtext-wrapper.standalone {
    padding-left: 35px;
    padding-right: 35px;
  }

  .richtext-wrapper p {
    font-size: 16px;
    line-height: 26px;
  }

  .richtext-wrapper h4 {
    font-size: 12px;
    line-height: 21px;
  }

  .richtext-wrapper h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .richtext-wrapper li {
    line-height: 26px;
  }

  .content-segment-wrapper {
    padding-top: 45px;
    padding-bottom: 35px;
  }

  .richtext-lead {
    font-size: 18px;
    line-height: 26px;
  }

  .richtext-paragraph {
    font-size: 16px;
    line-height: 22px;
  }

  .richtext-zwischentitel {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 23px;
    line-height: 30px;
  }

  .left-wrapper {
    padding-left: 35px;
    padding-right: 35px;
  }

  .img-wrapper-1, .img-wrapper-1.static {
    width: 100%;
  }

  .img-1 {
    padding-left: 0;
  }

  .img-wrapper-content {
    margin-right: 35px;
  }

  .sub-content-section {
    padding-left: 35px;
    padding-right: 35px;
  }

  .img-slide-detail {
    width: 100%;
  }

  .imp-slider, .imp-slide {
    width: 100vw;
    height: auto;
  }

  .imp-slider-wrapper {
    width: auto;
    height: auto;
    padding-top: 55px;
  }

  .imp-mask {
    width: auto;
    height: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .imp-slider-left-arrow, .imp-slider-right-arrow {
    display: flex;
  }

  .slide-container {
    flex-direction: row;
    align-items: center;
    width: auto;
    height: 661px;
    padding-bottom: 55px;
    padding-left: 35px;
    padding-right: 35px;
    display: flex;
  }

  .slide-container.detail {
    height: auto;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .slider-arrow-icon, .slider-arrow-icon.special {
    display: none;
  }

  .recommendation-section {
    padding-left: 35px;
    padding-right: 35px;
  }

  .grid-rec {
    margin-bottom: 70px;
  }

  .title-rec-wrapper {
    letter-spacing: 1.5px;
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 12px;
    line-height: 16px;
  }

  .quote-description-wrapper {
    margin-left: 0;
    margin-right: 0;
    padding: 45px 0 25px;
  }

  .quote-description-wrapper.alt {
    padding-top: 100px;
  }

  .site-quote-wrapper {
    margin-bottom: 35px;
    padding-left: 0;
    padding-right: 0;
  }

  .site-quote.start, .site-quote.end {
    display: none;
  }

  .header-02-grid {
    grid-template-columns: minmax(35px, 1fr) auto minmax(35px, 1fr);
  }

  .header-02-wrapper {
    align-items: flex-start;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .header-02-description-wrapper {
    padding: 45px 0 25px;
  }

  .header-02-description-wrapper.part-2 {
    padding-left: 0;
  }

  .marquee-horizontal {
    height: 100px;
  }

  .stage-image {
    height: 100%;
  }

  .main-content {
    margin-top: 95px;
    padding-left: 35px;
    padding-right: 35px;
  }

  .col-content {
    align-self: stretch;
    width: auto;
    margin-left: 0;
  }

  .col-content.first {
    align-self: flex-start;
  }

  .lauftext {
    font-size: 16px;
    line-height: 22px;
  }

  .lauftext-wrapper {
    margin-bottom: 45px;
  }

  .quellenverzeichnis {
    font-size: 11px;
    line-height: 16px;
  }

  .list-2 {
    padding-left: 24px;
  }

  .utility-page-content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .cookie-banner-wrapper {
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .card-quote-2 {
    letter-spacing: .075rem;
    font-size: 30px;
    line-height: 39px;
  }

  .card-quote-2.detail {
    display: none;
  }

  .card-quote-2.detail.mobile {
    margin-bottom: 30px;
    display: block;
  }

  .card-quote-2.quote-start, .card-quote-2.quote-end {
    display: none;
  }

  .sub-content-wrapper-section {
    padding-top: 0;
    padding-bottom: 65px;
  }

  .sub-content-wrapper, .sub-content-wrapper.quote {
    padding-left: 35px;
    padding-right: 35px;
  }

  .sub-content-wrapper.with-grid {
    padding-left: 0;
    padding-right: 0;
  }

  .img-detail-sm {
    width: 100%;
  }

  .img-detail-lg-grid {
    grid-template-columns: 35px auto 35px;
  }

  .gallery-arrow-2 {
    margin-top: 8px;
    margin-left: 0;
  }

  .div-block-2 {
    position: static;
  }

  .nav-link {
    height: 52px;
  }

  .nav-link.sub {
    min-height: 40px;
  }

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

  .nav-link-text.men {
    font-size: 12px;
    line-height: 12px;
  }

  .mobile-menu-icon-wrapper {
    margin-top: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-link-wrapper {
    padding-left: 35px;
    padding-right: 35px;
  }

  .nav-link-text-sub {
    font-size: 16px;
  }

  .text-card-full {
    letter-spacing: .075rem;
    font-size: 30px;
    line-height: 39px;
  }

  .text-card-full.detail {
    display: none;
  }

  .text-card-full.detail.mobile {
    margin-bottom: 30px;
    display: block;
  }

  .text-card-full.quote-start, .text-card-full.quote-end {
    display: none;
  }

  .card-link-button.content {
    margin-left: 35px;
    margin-right: 35px;
  }

  .text-img-grid {
    grid-template-columns: 35px 1fr 1fr 35px;
  }

  .text-img-grid.symmetric {
    grid-template-columns: 35px minmax(auto, 685px) minmax(auto, 685px) 35px;
  }

  .breadcrumb-wrapper {
    max-width: 50%;
  }

  .abstandhalter {
    height: 70px;
  }

  .abstandhalter._180 {
    height: 80px;
  }

  .mobile-menu-icon-wrapper-close {
    margin-top: 8px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .mobile-menu-icon-wrapper-close.white {
    margin-top: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .img-sub-con-grid {
    grid-template-rows: minmax(0, auto) auto auto auto;
    grid-template-columns: 35px auto 35px;
  }

  .detail-content-grid {
    grid-template-columns: 35px 1fr 35px;
  }

  .numbers-n-facts-section {
    padding-left: 35px;
    padding-right: 35px;
  }

  .numbers-n-facts-grid {
    margin-top: 45px;
    margin-bottom: 80px;
  }

  .accordeon-section {
    margin-bottom: 60px;
    padding-left: 35px;
    padding-right: 35px;
  }

  .accordeon-trigger {
    height: 80px;
  }

  .accordeon-icon {
    width: 12px;
  }

  .numbers-n-facts-lotties {
    margin-bottom: 75px;
  }

  .rec-slider-wrapper {
    max-width: none;
    margin-left: -30px;
    margin-right: -30px;
  }

  .rec-slider-mask {
    width: 100%;
  }

  .rec-slider-nav {
    flex-wrap: wrap;
    height: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .arrow-big-icon {
    margin-top: 0;
    margin-bottom: 0;
  }

  .arrow-big-wrapper-alt {
    padding-top: 25px;
  }

  .img-2-wrapper-2 {
    padding-bottom: 50px;
  }

  .img-wrapper-1-2 {
    width: 100%;
  }

  .img-description-wrapper-2 {
    padding-bottom: 45px;
    padding-left: 0;
    padding-right: 0;
  }

  .img-description-wrapper-2.detail {
    padding-top: 25px;
    padding-left: 35px;
    padding-right: 35px;
  }

  .img-1-2 {
    padding-left: 0;
  }

  .img-1-wrapper-2 {
    padding-top: 45px;
    padding-bottom: 50px;
  }

  .detail-slider-wrapper {
    width: 100vw;
  }

  .border-left-2.border-top {
    display: none;
  }

  .grid-card-xl {
    border-style: none none solid;
    padding-left: 35px;
    padding-right: 35px;
  }

  .border-right-2.border-top {
    display: none;
  }

  .text-card-full-2 {
    letter-spacing: .075rem;
    font-size: 30px;
    line-height: 39px;
  }

  .gallery-scroll-track-2 {
    position: relative;
  }

  .claim-2 {
    margin-top: 0;
    margin-right: 0;
  }

  .grid-card-s {
    border-bottom: 1px solid #ddd;
    border-left-style: none;
    padding: 35px;
  }

  .grid-card-s.first {
    border-bottom-style: none;
  }

  .nav-link-wrapper-2 {
    padding-left: 35px;
    padding-right: 35px;
  }

  .gallery-container-2 {
    grid-template-columns: 35px auto 35px;
    width: 100%;
  }

  .grid-card-quote {
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    padding-left: 35px;
    padding-right: 35px;
  }

  .p-38-2 {
    letter-spacing: .8px;
  }

  .p-38-2.video-card {
    margin-right: 0;
    font-family: Linotype helveticaneueltstd roman, Arial, sans-serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 34px;
  }

  .p-38-2.instagram {
    font-size: 27px;
    line-height: 34px;
  }

  .p-38-2.accordeon {
    font-size: 24px;
  }

  .p-38-2.accordeon-title {
    margin-bottom: 35px;
  }

  .nav-link-2 {
    height: 52px;
  }

  .nav-link-2.sub {
    min-height: 40px;
  }

  .content-grid-12-2 {
    grid-template-columns: auto;
  }

  .header-nav-2 {
    height: 50px;
    padding-left: 35px;
    padding-right: 35px;
  }

  .header-nav-2.alternative {
    min-height: 50px;
    margin-bottom: 90px;
  }

  .marquee-horizontal-2 {
    height: 100px;
  }

  .card-quote-3 {
    letter-spacing: .4px;
    font-size: 28px;
    line-height: 38px;
  }

  .sub-content-wrapper-section-2 {
    padding-top: 0;
    padding-bottom: 65px;
  }

  .nav-link-wrapper-3 {
    padding-left: 35px;
    padding-right: 35px;
  }

  .nav-wrapper-2 {
    margin-top: 7px;
    top: 12px;
    right: 35px;
  }

  .gallery-arrow-3 {
    margin-top: 8px;
    margin-left: 0;
  }

  .richtext-lead-2 {
    font-size: 18px;
    line-height: 26px;
  }

  .recommendation-section-2 {
    padding-left: 35px;
    padding-right: 35px;
  }

  .img-1-3 {
    padding-left: 0;
  }

  .img-1-wrapper-3 {
    margin-bottom: 75px;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .content-segment-wrapper-2 {
    padding-top: 45px;
    padding-bottom: 35px;
  }

  .sub-content-wrapper-section-3 {
    padding-top: 0;
    padding-bottom: 65px;
  }

  .gallery-arrow-4 {
    margin-top: 8px;
    margin-left: 0;
  }

  .img-1-4 {
    padding-left: 0;
  }

  .img-1-wrapper-4 {
    margin-bottom: 75px;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .sub-content-wrapper-section-4 {
    padding-top: 0;
    padding-bottom: 65px;
  }

  .gallery-arrow-5 {
    margin-top: 8px;
    margin-left: 0;
  }

  .img-1-5 {
    padding-left: 0;
  }

  .img-1-wrapper-5 {
    margin-bottom: 75px;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .sub-content-wrapper-section-5 {
    padding-top: 0;
    padding-bottom: 65px;
  }

  .gallery-arrow-6 {
    margin-top: 8px;
    margin-left: 0;
  }

  .img-1-6 {
    padding-left: 0;
  }

  .img-1-wrapper-6 {
    margin-bottom: 75px;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .gallery-arrow-7 {
    margin-top: 8px;
    margin-left: 0;
  }

  .img-1-7 {
    padding-left: 0;
  }

  .img-1-wrapper-7 {
    margin-bottom: 75px;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .gallery-arrow-8 {
    margin-top: 8px;
    margin-left: 0;
  }

  .richtext-lead-3 {
    font-size: 18px;
    line-height: 26px;
  }

  .recommendation-section-3 {
    padding-left: 35px;
    padding-right: 35px;
  }

  .img-1-8 {
    padding-left: 0;
  }

  .img-1-wrapper-8 {
    margin-bottom: 75px;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .gallery-arrow-9 {
    margin-top: 8px;
    margin-left: 0;
  }

  .gallery-arrow-9.detail {
    margin-top: 0;
  }

  .card-quote-4 {
    letter-spacing: .4px;
    font-size: 28px;
    line-height: 38px;
  }

  .card-quote-4.detail {
    font-size: 28px;
    line-height: 38px;
    display: none;
  }

  .card-quote-4.detail.mobile {
    margin-bottom: 30px;
    font-size: 31px;
    line-height: 43px;
    display: block;
  }

  .accordeon-trigger-2 {
    height: 80px;
  }

  .gallery-arrow-10 {
    margin-top: 8px;
    margin-left: 0;
  }

  .richtext-lead-4 {
    font-size: 18px;
    line-height: 26px;
  }

  .gallery-arrow-11 {
    margin-top: 8px;
    margin-left: 0;
  }

  .img-1-9 {
    padding-left: 0;
  }

  .img-1-wrapper-9 {
    margin-bottom: 75px;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .gallery-track-2 {
    flex-direction: column;
    width: auto;
    padding-left: 35px;
    padding-right: 35px;
  }

  .slider-arrow-icon-2 {
    display: none;
  }

  .imp-slider-left-arrow-2 {
    display: flex;
  }

  .gallery-scroll-track-3 {
    position: relative;
  }

  .gallery-container-3 {
    grid-template-columns: 35px auto 35px;
    width: 100%;
  }

  .gallery-arrow-12 {
    margin-top: 8px;
    margin-left: 0;
  }

  .imp-slider-right-arrow-2 {
    display: flex;
  }

  .recommendation-section-4 {
    padding-left: 35px;
    padding-right: 35px;
  }

  .img-1-10 {
    padding-left: 0;
  }

  .img-1-wrapper-10 {
    margin-bottom: 75px;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .card-quote-5 {
    letter-spacing: .4px;
    font-size: 28px;
    line-height: 38px;
  }

  .card-quote-5.detail {
    font-size: 28px;
    line-height: 38px;
    display: none;
  }

  .card-quote-5.detail.mobile {
    margin-bottom: 30px;
    font-size: 31px;
    line-height: 43px;
    display: block;
  }

  .card-quote-5.quote-end, .card-quote-5.quote-start {
    display: none;
  }

  .richtext-lead-5 {
    font-size: 18px;
    line-height: 26px;
  }

  .img-1-11 {
    padding-left: 0;
  }

  .img-1-wrapper-10-copy {
    margin-bottom: 75px;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 479px) {
  .header-nav.alternative {
    margin-bottom: 50px;
  }

  .logo-link {
    height: 33px;
    margin-top: 10px;
  }

  .container-md {
    margin-left: 50px;
    margin-right: 50px;
  }

  .container-md.insta {
    margin-left: 0;
    margin-right: 0;
  }

  .container-md.cookie {
    margin-left: 35px;
    margin-right: 35px;
  }

  .container-md.right, .container-md.left {
    margin-top: 40px;
    padding-right: 0;
  }

  .home-sub {
    margin-right: 0;
    font-size: 36px;
    line-height: 42px;
  }

  .home-lg {
    font-size: 36px;
  }

  .intro-sidebar {
    margin-top: 0;
  }

  .hero-grid {
    grid-template-rows: 160px auto 30px auto auto 30px;
  }

  .card-quote.detail.mobile {
    width: auto;
    max-width: none;
    font-size: 22px;
    line-height: 30px;
  }

  .quote-name {
    margin-left: 5px;
    font-size: 10px;
    line-height: 15px;
  }

  .quote-label {
    align-items: center;
  }

  .quote-divider {
    width: 50px;
    min-width: 50px;
    margin-left: -10px;
    margin-right: -10px;
  }

  .slider-content.bg-white, .slider-content.bg-blue, .slider-content.bg-plum, .slider-content.bg-yellow, .slider-content.bg-yellow, .slider-content.bg-blue, .slider-content.bg-white, .slider-content.bg-plum {
    padding-left: 25px;
    padding-right: 25px;
  }

  .number-lg {
    font-size: 55vw;
  }

  .number-lg.counter {
    font-size: 45vw;
  }

  .number-md {
    font-size: 31vw;
  }

  .number-md.counter {
    font-size: 30vw;
  }

  .number-sm.counter {
    font-size: 18vw;
  }

  .number-description {
    margin-bottom: 0;
  }

  .gallery-container {
    grid-template-columns: 35px 1fr 35px;
  }

  .imp-card-mid {
    flex: 1;
    align-self: center;
    width: auto;
    max-width: none;
    height: auto;
    margin-bottom: 0;
  }

  .imp-card-low {
    width: 100%;
  }

  .imp-card-high {
    flex: 0 auto;
    width: auto;
    height: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .img-gallery-hoch {
    width: 100%;
  }

  .gallery-text-wrapper.detail.alt {
    margin-right: 0;
  }

  .gallery-text {
    width: auto;
  }

  .gallery-text.detail-description {
    margin-right: 15px;
  }

  .p-38, .p-38.personen {
    font-size: 28px;
    line-height: 38px;
  }

  .p-20.margin-left-100.personen.special {
    font-size: 16px;
    line-height: 24px;
  }

  .video-label.bg-yellow {
    padding-left: 35px;
    padding-right: 35px;
  }

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

  .img_parallax {
    top: 0%;
  }

  .instagram-img {
    max-width: none;
    max-height: none;
  }

  .insta-list {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .insta-item {
    width: 100%;
    height: 100%;
  }

  .image {
    width: 100%;
    max-width: none;
    max-height: none;
  }

  .image-home-stage {
    flex: 0 auto;
    width: auto;
    min-width: auto;
    max-width: none;
    height: auto;
    min-height: 100%;
  }

  .site-title, .site-title.mobile {
    font-size: 28px;
    line-height: 38px;
  }

  .richtext-wrapper h2 {
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 28px;
  }

  .richtext-wrapper p {
    letter-spacing: .5px;
    font-size: 14px;
    line-height: 24px;
  }

  .richtext-wrapper h4 {
    font-size: 10px;
    line-height: 20px;
  }

  .richtext-wrapper li {
    font-size: 14px;
    line-height: 24px;
  }

  .richtext-lead {
    font-size: 16px;
    line-height: 24px;
  }

  .imp-slide {
    width: auto;
    height: 100%;
    min-height: auto;
    margin-right: 0;
  }

  .imp-slider-nav {
    height: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .slide-container {
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    height: 100%;
  }

  .grid-rec {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .header-02-grid {
    place-items: center;
  }

  .lauftext-wrapper {
    margin-bottom: 45px;
  }

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

  .mobile-menu-icon-wrapper {
    margin-top: 10px;
  }

  .text-card-full {
    letter-spacing: .4px;
    font-size: 28px;
    line-height: 38px;
  }

  .text-card-full.detail.mobile {
    width: auto;
    max-width: none;
  }

  .link-button-text {
    margin-right: 10px;
  }

  .breadcrumb-wrapper {
    align-content: flex-start;
    max-width: 45%;
  }

  .breadcrumb-text {
    flex-flow: wrap;
    align-items: center;
    display: flex;
  }

  .numbers-n-facts-lotties {
    margin-bottom: 50px;
  }

  .rec-slider-wrapper {
    padding-bottom: 90px;
  }

  .rec-slider-nav {
    padding-left: 30px;
    padding-right: 30px;
  }

  .link-button-text-2 {
    margin-right: 10px;
  }

  .text-card-full-2 {
    letter-spacing: .4px;
    font-size: 28px;
    line-height: 38px;
  }

  .gallery-container-2 {
    grid-template-columns: 35px 1fr 35px;
  }

  .p-38-2, .p-38-2.personen {
    font-size: 28px;
    line-height: 38px;
  }

  .content-grid-12-2 {
    grid-template-columns: 1fr;
  }

  .header-nav-2.alternative {
    margin-bottom: 50px;
  }

  .quote-name-2 {
    margin-left: 5px;
  }

  .breadcrumb-text-2 {
    flex-flow: wrap;
    align-items: center;
    display: flex;
  }

  .richtext-lead-2, .richtext-lead-3 {
    font-size: 16px;
    line-height: 24px;
  }

  .card-quote-4.detail.mobile {
    width: auto;
    max-width: none;
    font-size: 28px;
    line-height: 38px;
  }

  .richtext-lead-4 {
    font-size: 16px;
    line-height: 24px;
  }

  .link-button-text-3 {
    margin-right: 10px;
  }

  .gallery-container-3 {
    grid-template-columns: 35px 1fr 35px;
  }

  .quote-name-3 {
    margin-left: 5px;
  }

  .card-quote-5.detail.mobile {
    width: auto;
    max-width: none;
    font-size: 28px;
    line-height: 38px;
  }

  .richtext-lead-5 {
    font-size: 16px;
    line-height: 24px;
  }
}

#w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61add5-f721828c {
  grid-area: 4 / 1 / 6 / 2;
}

#w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61add6-f721828c {
  grid-area: 4 / 2 / 6 / 3;
}

#w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61adff-f721828c {
  grid-area: 2 / 2 / 5 / 4;
}

#Intro.w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae02-f721828c {
  grid-area: 1 / 3 / 3 / 4;
}

#w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae0a-f721828c {
  grid-area: 1 / 4 / 3 / 5;
}

#w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae15-f721828c {
  grid-area: 1 / 1 / 4 / 7;
}

#w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae21-f721828c {
  grid-area: 4 / 1 / 5 / 4;
}

#w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae2c-f721828c {
  grid-area: 4 / 4 / 5 / 7;
}

#w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae3e-f721828c {
  grid-area: 1 / 7 / 3 / 13;
}

#w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae49-f721828c {
  grid-area: 3 / 7 / 5 / 13;
}

#w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae66-f721828c {
  grid-area: 1 / 2 / 3 / 3;
}

#w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae6b-f721828c {
  grid-area: 3 / 2 / 5 / 4;
}

#w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae71-f721828c {
  grid-area: 1 / 4 / 4 / 5;
}

#w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae76-f721828c {
  grid-area: 2 / 1 / 5 / 2;
}

#w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae7b-f721828c {
  grid-area: 5 / 4 / 6 / 5;
}

#w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae7c-f721828c {
  grid-area: 4 / 4 / 5 / 5;
}

#w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae82-f721828c {
  grid-area: 1 / 1 / 2 / 5;
  justify-self: stretch;
}

#w-node-db2a9184-5d73-adc1-e79b-15126ceecb13-f721828c {
  grid-area: 1 / 1 / 2 / 4;
  align-self: center;
}

#w-node-db2a9184-5d73-adc1-e79b-15126ceecb16-f721828c {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-_8b51643d-6ec9-8071-fed4-a798ff86a25e-f721828c {
  grid-area: 1 / 4 / 2 / 7;
  align-self: center;
}

#w-node-_8b51643d-6ec9-8071-fed4-a798ff86a261-f721828c {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a3d-f721828c {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a46-f721828c {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a47-f721828c {
  grid-area: 2 / 2 / 3 / 4;
  justify-self: stretch;
}

#w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a58-f721828c {
  grid-area: 3 / 2 / 4 / 4;
}

#w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a5a-f721828c {
  grid-area: 1 / 1 / 5 / 2;
}

#w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a5b-f721828c {
  grid-area: 1 / 4 / 5 / 5;
}

#w-node-c1325d91-081a-8adf-4212-66c44297f69e-4297f69b {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c1325d91-081a-8adf-4212-66c44297f69f-4297f69b {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-c1325d91-081a-8adf-4212-66c44297f6aa-4297f69b {
  grid-area: 3 / 1 / 4 / 2;
  align-self: end;
}

#w-node-c1325d91-081a-8adf-4212-66c44297f6b3-4297f69b {
  grid-area: 2 / 2 / 3 / 3;
  align-self: start;
}

#w-node-c1325d91-081a-8adf-4212-66c44297f6ba-4297f69b {
  grid-area: 2 / 3 / 3 / 4;
  align-self: start;
}

#w-node-c1325d91-081a-8adf-4212-66c44297f6c1-4297f69b {
  grid-area: 3 / 3 / 4 / 4;
  place-self: end;
}

#w-node-_497cfc8a-c6a5-5522-04c7-6834458ed8e6-458ed8e6 {
  grid-area: 4 / 2 / 5 / 4;
}

#w-node-_267daae3-abba-47ff-e869-e47e422650c3-458ed8e6, #w-node-_45f8bdd3-841e-af49-af6d-d2539a9729e4-458ed8e6, #w-node-_5ec137e6-3a77-46ba-3226-708a3acca4f7-458ed8e6, #w-node-faedaad7-9275-e647-ff6d-d046733b5d4e-458ed8e6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_36fb20a4-90b9-b147-8a58-1e5b907631c2-4312233b {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_36fb20a4-90b9-b147-8a58-1e5b907631c3-4312233b {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_36fb20a4-90b9-b147-8a58-1e5b907631ce-4312233b {
  grid-area: 3 / 1 / 4 / 2;
  align-self: end;
}

#w-node-_36fb20a4-90b9-b147-8a58-1e5b907631d7-4312233b {
  grid-area: 2 / 2 / 3 / 3;
  align-self: start;
}

#w-node-_36fb20a4-90b9-b147-8a58-1e5b907631de-4312233b {
  grid-area: 2 / 3 / 3 / 4;
  align-self: start;
}

#w-node-_4327fe07-b35e-9a11-9092-f444893747a2-45218294 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-f27c81b6-15cb-3372-3685-9ee507b4a79e-45218294 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_9dae890c-ab80-3572-e85d-7e58eeb52aff-45218294 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_9dae890c-ab80-3572-e85d-7e58eeb52b01-45218294 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-_9dae890c-ab80-3572-e85d-7e58eeb52b0f-45218294 {
  grid-area: 3 / 1 / 3 / 2;
}

#w-node-_9dae890c-ab80-3572-e85d-7e58eeb52b12-45218294 {
  grid-area: 3 / 3 / 4 / 4;
  align-self: end;
}

#w-node-_9dae890c-ab80-3572-e85d-7e58eeb52b16-45218294 {
  grid-area: 2 / 3 / 4 / 4;
  align-self: start;
}

#w-node-_4327fe07-b35e-9a11-9092-f444893747a2-68218295 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-f27c81b6-15cb-3372-3685-9ee507b4a79e-68218295 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_83acbe8d-ecf3-c1cd-6892-be70c1909636-68218295 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_83acbe8d-ecf3-c1cd-6892-be70c1909638-68218295 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-_83acbe8d-ecf3-c1cd-6892-be70c1909646-68218295 {
  grid-area: 3 / 1 / 3 / 2;
}

#w-node-_83acbe8d-ecf3-c1cd-6892-be70c1909649-68218295 {
  grid-area: 3 / 3 / 4 / 4;
  align-self: end;
}

#w-node-_83acbe8d-ecf3-c1cd-6892-be70c190964d-68218295 {
  grid-area: 2 / 3 / 4 / 4;
  align-self: start;
}

#w-node-_027eca4f-fecd-02b0-47c9-1cf27d3f9e53-3b218296 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2d50c3d3-d412-26a3-d37f-06058133bbbd-3b218296 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_666aa93b-5060-59f6-6980-ee0af729b3ae-3b218296 {
  grid-area: 1 / 3 / 3 / 4;
  place-self: end stretch;
}

#Intro.w-node-_6f7ca629-9ba7-f202-4435-d3cedc76adec-3b218296 {
  grid-area: 3 / 3 / 4 / 4;
}

#w-node-_2567676d-1f54-9c8e-cd4b-630ba212a14a-3b218296 {
  grid-area: 3 / 4 / 4 / 5;
}

#w-node-_16899461-7010-02ee-1eab-30e36b89de5f-3b218296 {
  grid-area: 2 / 2 / 4 / 3;
  align-self: start;
}

#w-node-_4d97ab31-96dd-4987-3d5d-7153a67c23d7-3b218296 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_54edf6c2-7feb-2bd4-2dc7-c04f5c4a6e0f-3b218296 {
  grid-area: 1 / 4 / 2 / 7;
}

#w-node-eae759c9-f593-fe81-a45e-1e916fbbdb0c-3b218296 {
  grid-area: 2 / 1 / 3 / 7;
}

#w-node-_7e315f2a-72f4-697a-eab1-4858f2674205-3b218296 {
  grid-area: 1 / 7 / 3 / 13;
}

#w-node-dbd09f31-c039-4812-62f2-4b097072fdc5-3b218296 {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_714cba40-fcf3-b93f-c36d-960c5d8a88a2-3b218296 {
  grid-area: 3 / 4 / 4 / 9;
}

#w-node-f35fd280-00f5-d392-a617-fa03177f14b1-3b218296 {
  grid-area: 3 / 9 / 4 / 13;
}

#w-node-_1aaa86d9-5d94-eeb1-5240-fe06d58eb393-3b218296 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_1aaa86d9-5d94-eeb1-5240-fe06d58eb394-3b218296 {
  grid-area: 3 / 1 / 5 / 2;
}

#w-node-_1aaa86d9-5d94-eeb1-5240-fe06d58eb399-3b218296 {
  grid-area: 1 / 2 / 3 / 4;
}

#w-node-_1aaa86d9-5d94-eeb1-5240-fe06d58eb39e-3b218296 {
  grid-area: 3 / 3 / 5 / 4;
}

#w-node-_1aaa86d9-5d94-eeb1-5240-fe06d58eb3a3-3b218296 {
  grid-area: 1 / 4 / 4 / 5;
}

#w-node-_5e14ad3d-eb83-bf9d-82e2-e683bc5d2427-3b218296 {
  grid-area: 1 / 1 / 2 / 5;
  justify-self: stretch;
}

#w-node-_3a70b080-a1af-0ede-f8c2-bb302313d191-3b218296 {
  grid-area: 2 / 2 / 3 / 5;
}

#w-node-_1074a0bb-0b92-ee13-ce63-3cb35f5e16ef-3b218296 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_41f4896c-d51a-70a0-b7ab-4385a4e8c0a3-3b218296 {
  grid-area: 3 / 3 / 4 / 4;
}

#w-node-ad8489f0-3953-1311-fe88-19b32c2efafb-3b218296 {
  grid-area: 4 / 2 / 5 / 4;
  justify-self: stretch;
}

#Kontakt.w-node-_154e4523-985e-734d-9f54-9ad285a21a53-3b218296 {
  grid-area: 5 / 2 / 6 / 4;
}

#w-node-_86f5e4b4-b701-3f47-d36e-02460e812ab7-3b218296 {
  place-self: center;
}

#w-node-_7954463e-2770-1985-6c00-45c2a3b414fc-3b218296 {
  grid-area: 3 / 1 / 6 / 2;
}

#w-node-a55a75b1-ef06-39a7-057f-7b1ed89ebbd4-3b218296 {
  grid-area: 3 / 4 / 6 / 5;
}

#w-node-e017b033-f654-cdfb-769d-e671ed1b037e-3b218296 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-e017b033-f654-cdfb-769d-e671ed1b0383-3b218296 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-d9825df5-5492-7fec-6a96-c345aaa7e2a9-5121829e {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-b9241a8a-818e-b63e-d27b-214a42a8acd8-5121829e {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_4327fe07-b35e-9a11-9092-f444893747a2-5121829e {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-f27c81b6-15cb-3372-3685-9ee507b4a79e-5121829e {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_78c53a68-de33-5391-359e-173a37833039-5121829e {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_78c53a68-de33-5391-359e-173a3783303b-5121829e {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-_78c53a68-de33-5391-359e-173a37833049-5121829e {
  grid-area: 3 / 1 / 3 / 2;
}

#w-node-_78c53a68-de33-5391-359e-173a3783304c-5121829e {
  grid-area: 3 / 3 / 4 / 4;
  align-self: end;
}

#w-node-_78c53a68-de33-5391-359e-173a37833050-5121829e {
  grid-area: 2 / 3 / 4 / 4;
  align-self: start;
}

#w-node-ad5e75c9-8339-a6d7-20e6-61c598af784c-5121829e {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-a986e6f8-fc34-854a-244f-aa3bc90ce7d7-7aefb8b7 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-a986e6f8-fc34-854a-244f-aa3bc90ce7d8-7aefb8b7 {
  grid-area: 2 / 4 / 3 / 7;
  align-self: center;
}

#w-node-a986e6f8-fc34-854a-244f-aa3bc90ce7db-7aefb8b7 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-a986e6f8-fc34-854a-244f-aa3bc90ce7e5-7aefb8b7 {
  grid-area: 3 / 1 / 4 / 7;
}

#w-node-c3941c75-3f3f-3796-64ee-dbdd62919533-7aefb8b7 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_39e94a5d-17a6-0493-f6a1-69771d72842b-7aefb8b7 {
  grid-area: 2 / 2 / 3 / 3;
  align-self: center;
}

#w-node-_39e94a5d-17a6-0493-f6a1-69771d728421-7aefb8b7 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-_23ad7ec6-acb3-17a6-c649-c577a4fc9941-7aefb8b7 {
  grid-area: 3 / 1 / 4 / 7;
}

#w-node-_2da22e62-1d16-b44c-9f43-753dbc0f29b2-7aefb8b7 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_1c97f02a-a629-fbf0-3d11-2d3323c49048-7aefb8b7 {
  grid-area: 2 / 4 / 3 / 6;
  align-self: center;
}

#w-node-_1c97f02a-a629-fbf0-3d11-2d3323c4903e-7aefb8b7 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_464b9c2d-b695-24d9-ba8c-699b3f37b4b0-7aefb8b7 {
  grid-area: 3 / 1 / 4 / 7;
}

#w-node-_7de3343f-d05f-add2-0de3-be62a4a10b1c-7aefb8b7 {
  grid-area: 2 / 1 / 2 / 4;
  align-self: center;
}

#w-node-_7de3343f-d05f-add2-0de3-be62a4a10b1f-7aefb8b7 {
  grid-area: 2 / 5 / 3 / 7;
}

#w-node-_7de3343f-d05f-add2-0de3-be62a4a10b29-7aefb8b7 {
  grid-area: 3 / 1 / 4 / 7;
}

#w-node-_9dcb15f8-6861-2403-6909-fb03f2e61dd4-de3aa5ed {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-b4e93b50-b6f7-596b-5475-4f7f9c37c241-de3aa5ed {
  grid-area: 2 / 1 / 2 / 4;
  align-self: center;
}

#w-node-bba6fbf5-dacb-e697-ad2b-26a84718b6d4-de3aa5ed {
  grid-area: 2 / 5 / 3 / 7;
}

#w-node-_7418e1fb-1e4c-1d51-4b23-2318f31c9b7e-de3aa5ed {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_7418e1fb-1e4c-1d51-4b23-2318f31c9b7f-de3aa5ed {
  grid-area: 2 / 4 / 3 / 6;
  align-self: center;
}

#w-node-_7418e1fb-1e4c-1d51-4b23-2318f31c9b82-de3aa5ed {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_2da22e62-1d16-b44c-9f43-753dbc0f29b2-de3aa5ed {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_1c97f02a-a629-fbf0-3d11-2d3323c49048-de3aa5ed {
  grid-area: 2 / 2 / 3 / 4;
  align-self: center;
}

#w-node-_1c97f02a-a629-fbf0-3d11-2d3323c4903e-de3aa5ed {
  grid-area: 2 / 5 / 3 / 7;
}

#w-node-_464b9c2d-b695-24d9-ba8c-699b3f37b4b0-de3aa5ed {
  grid-area: 3 / 1 / 4 / 7;
}

#w-node-_455d56a5-7f17-5c62-2b98-a1e975ba35dd-de3aa5ed {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_455d56a5-7f17-5c62-2b98-a1e975ba35de-de3aa5ed {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-_455d56a5-7f17-5c62-2b98-a1e975ba3658-de3aa5ed {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_455d56a5-7f17-5c62-2b98-a1e975ba365c-de3aa5ed {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_455d56a5-7f17-5c62-2b98-a1e975ba365d-de3aa5ed {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_455d56a5-7f17-5c62-2b98-a1e975ba3668-de3aa5ed {
  grid-area: 3 / 1 / 4 / 2;
  align-self: end;
}

#w-node-_455d56a5-7f17-5c62-2b98-a1e975ba3671-de3aa5ed {
  grid-area: 2 / 2 / 3 / 3;
  align-self: start;
}

#w-node-_455d56a5-7f17-5c62-2b98-a1e975ba3678-de3aa5ed {
  grid-area: 2 / 3 / 3 / 4;
  align-self: start;
}

#w-node-_455d56a5-7f17-5c62-2b98-a1e975ba367f-de3aa5ed {
  grid-area: 3 / 3 / 4 / 4;
  place-self: end;
}

#w-node-_0d16f781-2f45-47f4-8c70-343ae7813197-2591d12d {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_0d16f781-2f45-47f4-8c70-343ae7813198-2591d12d {
  grid-area: 2 / 2 / 3 / 4;
  align-self: center;
}

#w-node-_0d16f781-2f45-47f4-8c70-343ae781319b-2591d12d {
  grid-area: 2 / 5 / 2 / 6;
}

#w-node-_10b68778-af09-75aa-83a8-199a38e8dc21-2591d12d {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_10b68778-af09-75aa-83a8-199a38e8dc22-2591d12d {
  grid-area: 2 / 4 / 3 / 6;
  align-self: center;
}

#w-node-_10b68778-af09-75aa-83a8-199a38e8dc2c-2591d12d {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-_59c7dee4-04b0-0990-3bfb-406b71811c99-2591d12d {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_59c7dee4-04b0-0990-3bfb-406b71811c9a-2591d12d {
  grid-area: 2 / 2 / 3 / 4;
  align-self: center;
}

#w-node-_59c7dee4-04b0-0990-3bfb-406b71811ca4-2591d12d {
  grid-area: 2 / 5 / 2 / 6;
}

#w-node-_68ab3c2f-319d-dea4-47f8-637cd895727c-2591d12d {
  grid-area: 2 / 2 / 8 / 7;
}

#w-node-_076d28e3-f9fa-2293-e8ea-f7877446df1b-2591d12d {
  grid-area: 6 / 7 / 8 / 9;
}

#w-node-_4bc483e3-2599-f5ce-20b5-50873b2e3bef-2591d12d {
  grid-area: 1 / 8 / 5 / 10;
}

#w-node-db9c4ed8-0ba6-d67b-5e4a-b1451a81509f-2591d12d {
  grid-area: 3 / 1 / 3 / 2;
}

#w-node-db9c4ed8-0ba6-d67b-5e4a-b1451a8150a2-2591d12d {
  grid-area: 3 / 3 / 4 / 4;
  align-self: end;
}

#w-node-db9c4ed8-0ba6-d67b-5e4a-b1451a8150a6-2591d12d {
  grid-area: 2 / 3 / 4 / 4;
  align-self: start;
}

#w-node-e893e9c1-21fc-aab1-3bf3-9cc1215a5e43-2591d12d {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-e893e9c1-21fc-aab1-3bf3-9cc1215a5e44-2591d12d {
  grid-area: 2 / 5 / 3 / 6;
  align-self: center;
}

#w-node-e893e9c1-21fc-aab1-3bf3-9cc1215a5e47-2591d12d {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-_7df155a5-d671-fd50-fbcd-7e23bcf3859c-2591d12d {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_7df155a5-d671-fd50-fbcd-7e23bcf3859d-2591d12d {
  grid-area: 2 / 1 / 3 / 3;
  align-self: center;
}

#w-node-_7df155a5-d671-fd50-fbcd-7e23bcf385a0-2591d12d {
  grid-area: 2 / 5 / 2 / 6;
}

#w-node-_5e2390bd-05bf-3e4e-1b16-778677ca403d-2591d12d {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_5e2390bd-05bf-3e4e-1b16-778677ca403e-2591d12d {
  grid-area: 2 / 5 / 3 / 6;
  align-self: center;
}

#w-node-_5e2390bd-05bf-3e4e-1b16-778677ca4041-2591d12d {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-_50b4f6eb-817f-0cca-32c1-4b21505027b2-2591d12d {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_50b4f6eb-817f-0cca-32c1-4b21505027b3-2591d12d {
  grid-area: 2 / 2 / 3 / 3;
  align-self: center;
}

#w-node-_50b4f6eb-817f-0cca-32c1-4b21505027b6-2591d12d {
  grid-area: 2 / 5 / 2 / 6;
}

#w-node-_50b4f6eb-817f-0cca-32c1-4b21505027bc-2591d12d {
  grid-area: 3 / 1 / 4 / 6;
}

#w-node-_7c8fe64c-8cd1-c091-03b3-46c19ea7e339-2591d12d {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_7c8fe64c-8cd1-c091-03b3-46c19ea7e33a-2591d12d {
  grid-area: 2 / 2 / 3 / 4;
  align-self: center;
}

#w-node-_7c8fe64c-8cd1-c091-03b3-46c19ea7e344-2591d12d {
  grid-area: 2 / 5 / 2 / 6;
}

#w-node-_764bc5be-e230-bef9-f7f8-48bda6592fdb-2591d12d {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_764bc5be-e230-bef9-f7f8-48bda6592fdc-2591d12d {
  grid-area: 2 / 4 / 3 / 6;
  align-self: center;
}

#w-node-_764bc5be-e230-bef9-f7f8-48bda6592fe6-2591d12d {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-_6607dc2d-7e8e-3f28-e9a4-cbb44b85fc77-2591d12d {
  grid-area: 3 / 1 / 4 / 6;
}

#w-node-_3e656220-b4bd-7031-0516-1f26fb66b2bd-c53d4a2b {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_18fc2373-753c-26d0-04a4-72e613af0cb6-c53d4a2b {
  grid-area: 3 / 3 / 4 / 4;
}

#w-node-_5ef80cb1-0f43-e24c-4107-f10313a3238a-c53d4a2b {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-e03c7460-39f6-d95a-0f56-b36b4c0a2b57-c53d4a2b {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-_34b50b20-266a-cd26-ffa7-d5b649ff37fd-c53d4a2b {
  grid-area: 3 / 1 / 3 / 2;
}

#w-node-_34b50b20-266a-cd26-ffa7-d5b649ff3800-c53d4a2b {
  grid-area: 3 / 3 / 4 / 4;
  align-self: end;
}

#w-node-_8d2121d8-e138-7783-2b12-2f66c518fde2-c53d4a2b {
  grid-area: 2 / 3 / 4 / 4;
  align-self: start;
}

#w-node-_96a6c972-8f30-c3d8-f447-73133a7503ea-c53d4a2b {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_96a6c972-8f30-c3d8-f447-73133a7503ee-c53d4a2b {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-_96a6c972-8f30-c3d8-f447-73133a750485-c53d4a2b {
  grid-area: 4 / 1 / 5 / 5;
}

#w-node-fbbdb917-373d-f5e0-0418-d109568c7200-c53d4a2b {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-fbbdb917-373d-f5e0-0418-d109568c7205-c53d4a2b {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-fbbdb917-373d-f5e0-0418-d109568c722e-c53d4a2b {
  grid-area: 4 / 1 / 5 / 5;
}

#w-node-_0b96fe72-c4c1-c6e1-c72d-7870cebc3f16-ceb12742 {
  grid-area: 1 / 1 / 4 / 2;
}

#w-node-_02ca898f-85f1-83a6-7491-42e7f3ff5591-ceb12742 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-dc42ed4d-dae0-724a-e549-802b56e7ab69-ceb12742 {
  grid-area: 5 / 1 / 6 / 2;
  align-self: start;
}

#w-node-a7064845-a1fa-c545-8669-d14386422b50-ceb12742 {
  grid-area: 3 / 3 / 6 / 4;
}

#w-node-d751efc3-c8d0-96bb-30a2-6801fb88e225-ceb12742 {
  grid-area: 7 / 1 / 8 / 2;
}

#w-node-_3bb19546-d65b-9aac-6c7e-fe2514f846cd-ceb12742 {
  grid-area: 7 / 3 / 8 / 4;
  align-self: end;
}

#w-node-a6029938-55e2-97ed-9160-c21bc598dbc8-3a342e3d {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-a6029938-55e2-97ed-9160-c21bc598dbf3-3a342e3d {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a6029938-55e2-97ed-9160-c21bc598dbf5-3a342e3d {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-a6029938-55e2-97ed-9160-c21bc598dbfc-3a342e3d {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-a6029938-55e2-97ed-9160-c21bc598dbfe-3a342e3d {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-a6029938-55e2-97ed-9160-c21bc598dc05-3a342e3d {
  grid-area: 3 / 1 / 3 / 2;
}

#w-node-a6029938-55e2-97ed-9160-c21bc598dc08-3a342e3d {
  grid-area: 3 / 3 / 4 / 4;
  align-self: end;
}

#w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d8ec-7418d8a4 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d94c-7418d8a4 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d94e-7418d8a4 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d955-7418d8a4 {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d957-7418d8a4 {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d961-7418d8a4 {
  grid-area: 3 / 1 / 3 / 2;
}

#w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d964-7418d8a4 {
  grid-area: 2 / 3 / 4 / 4;
  align-self: start;
}

#w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d967-7418d8a4 {
  grid-area: 3 / 3 / 4 / 4;
  align-self: end;
}

#w-node-ed72f549-6f1e-1eaa-95b6-12fe74297997-6508351f {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-ed72f549-6f1e-1eaa-95b6-12fe742979ab-6508351f {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-ed72f549-6f1e-1eaa-95b6-12fe742979ad-6508351f {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-ed72f549-6f1e-1eaa-95b6-12fe742979b4-6508351f {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-_75f5f5fc-01c8-4fbf-214c-c79129234b76-6508351f {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-_9466ac39-61d0-0fd3-43d9-12af12202c8e-6508351f {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_9466ac39-61d0-0fd3-43d9-12af12202cf9-6508351f {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_9466ac39-61d0-0fd3-43d9-12af12202cfb-6508351f {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_9466ac39-61d0-0fd3-43d9-12af12202d02-6508351f {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-_9466ac39-61d0-0fd3-43d9-12af12202d04-6508351f {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-deaa47ee-57c4-2100-8f6d-061d3e379565-6508351f {
  grid-area: 3 / 1 / 3 / 2;
}

#w-node-deaa47ee-57c4-2100-8f6d-061d3e379568-6508351f {
  grid-area: 2 / 3 / 4 / 4;
  align-self: start;
}

#w-node-deaa47ee-57c4-2100-8f6d-061d3e37956b-6508351f {
  grid-area: 3 / 3 / 4 / 4;
  align-self: end;
}

#w-node-_627e2084-e52d-6149-5c40-e7df6dba9dcc-b14c37cc {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_627e2084-e52d-6149-5c40-e7df6dba9de0-b14c37cc {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_627e2084-e52d-6149-5c40-e7df6dba9de2-b14c37cc {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_627e2084-e52d-6149-5c40-e7df6dba9de9-b14c37cc {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-_627e2084-e52d-6149-5c40-e7df6dba9deb-b14c37cc {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-_627e2084-e52d-6149-5c40-e7df6dba9dfd-b14c37cc {
  grid-area: 3 / 1 / 3 / 2;
}

#w-node-_627e2084-e52d-6149-5c40-e7df6dba9e00-b14c37cc {
  grid-area: 2 / 3 / 4 / 4;
  align-self: start;
}

#w-node-_627e2084-e52d-6149-5c40-e7df6dba9e03-b14c37cc {
  grid-area: 3 / 3 / 4 / 4;
  align-self: end;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f477-d9f734f1 {
  grid-area: 2 / 2 / 8 / 7;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f479-d9f734f1 {
  grid-area: 6 / 7 / 8 / 9;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f47d-d9f734f1 {
  grid-area: 1 / 8 / 5 / 10;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f481-d9f734f1 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f482-d9f734f1 {
  grid-area: 2 / 2 / 3 / 5;
  align-self: center;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f48c-d9f734f1 {
  grid-area: 2 / 6 / 2 / 7;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f494-d9f734f1 {
  grid-area: 2 / 4 / 3 / 7;
  align-self: center;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f49e-d9f734f1 {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f4a8-d9f734f1 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f4ab-d9f734f1 {
  grid-area: 2 / 2 / 3 / 5;
  align-self: center;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f4b5-d9f734f1 {
  grid-area: 2 / 6 / 2 / 7;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f4bb-d9f734f1 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f4be-d9f734f1 {
  grid-area: 2 / 4 / 3 / 7;
  align-self: center;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f4c8-d9f734f1 {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f4ce-d9f734f1 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f4d1-d9f734f1 {
  grid-area: 2 / 2 / 3 / 5;
  align-self: center;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f4db-d9f734f1 {
  grid-area: 2 / 6 / 2 / 7;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f4e1-d9f734f1 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f4e4-d9f734f1 {
  grid-area: 2 / 4 / 3 / 7;
  align-self: center;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f4ee-d9f734f1 {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f4f8-d9f734f1 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f4fb-d9f734f1 {
  grid-area: 2 / 2 / 3 / 5;
  align-self: center;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f505-d9f734f1 {
  grid-area: 2 / 6 / 2 / 7;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f50e-d9f734f1 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f511-d9f734f1 {
  grid-area: 2 / 4 / 3 / 7;
  align-self: center;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f51b-d9f734f1 {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f521-d9f734f1 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f524-d9f734f1 {
  grid-area: 2 / 2 / 3 / 5;
  align-self: center;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f52e-d9f734f1 {
  grid-area: 2 / 6 / 2 / 7;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f534-d9f734f1 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f537-d9f734f1 {
  grid-area: 2 / 4 / 3 / 7;
  align-self: center;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f541-d9f734f1 {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f547-d9f734f1 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f54a-d9f734f1 {
  grid-area: 2 / 2 / 3 / 5;
  align-self: center;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f554-d9f734f1 {
  grid-area: 2 / 6 / 2 / 7;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f55a-d9f734f1 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f55d-d9f734f1 {
  grid-area: 2 / 4 / 3 / 7;
  align-self: center;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f567-d9f734f1 {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f56d-d9f734f1 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f570-d9f734f1 {
  grid-area: 2 / 2 / 3 / 5;
  align-self: center;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f57a-d9f734f1 {
  grid-area: 2 / 6 / 2 / 7;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f580-d9f734f1 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f583-d9f734f1 {
  grid-area: 2 / 4 / 3 / 7;
  align-self: center;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f58d-d9f734f1 {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f599-d9f734f1 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f59c-d9f734f1 {
  grid-area: 2 / 2 / 3 / 5;
  align-self: center;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f5a6-d9f734f1 {
  grid-area: 2 / 6 / 2 / 7;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f5ac-d9f734f1 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f5b8-d9f734f1 {
  grid-area: 2 / 2 / 3 / 5;
  align-self: center;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f5c2-d9f734f1 {
  grid-area: 2 / 6 / 2 / 7;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f5c8-d9f734f1 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f5cb-d9f734f1 {
  grid-area: 2 / 4 / 3 / 7;
  align-self: center;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f5d5-d9f734f1 {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f5db-d9f734f1 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f5e7-d9f734f1 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-f98f0047-479d-dca0-5989-83dcd260f5e9-d9f734f1 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-a94e6689-1b44-4c02-bce3-677731b3e628-53b9a1dd {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a94e6689-1b44-4c02-bce3-677731b3e632-53b9a1dd {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-a94e6689-1b44-4c02-bce3-677731b3e637-53b9a1dd {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-a94e6689-1b44-4c02-bce3-677731b3e66b-53b9a1dd {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a94e6689-1b44-4c02-bce3-677731b3e66d-53b9a1dd {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-a94e6689-1b44-4c02-bce3-677731b3e676-53b9a1dd {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-a94e6689-1b44-4c02-bce3-677731b3e67a-53b9a1dd {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-a94e6689-1b44-4c02-bce3-677731b3e6a4-53b9a1dd {
  grid-area: 3 / 1 / 3 / 2;
}

#w-node-a94e6689-1b44-4c02-bce3-677731b3e6a7-53b9a1dd {
  grid-area: 3 / 3 / 4 / 4;
  align-self: end;
}

#w-node-a94e6689-1b44-4c02-bce3-677731b3e6ab-53b9a1dd {
  grid-area: 2 / 3 / 4 / 4;
  align-self: start;
}

#w-node-_577579db-2727-6d21-a883-f2314e7bb6eb-6c4c4e08 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_577579db-2727-6d21-a883-f2314e7bb707-6c4c4e08 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_577579db-2727-6d21-a883-f2314e7bb709-6c4c4e08 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_577579db-2727-6d21-a883-f2314e7bb710-6c4c4e08 {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-_577579db-2727-6d21-a883-f2314e7bb726-6c4c4e08 {
  grid-area: 3 / 1 / 3 / 2;
}

#w-node-_577579db-2727-6d21-a883-f2314e7bb729-6c4c4e08 {
  grid-area: 3 / 3 / 4 / 4;
  align-self: end;
}

#w-node-_1d6d6f00-b399-05be-2b76-37177ee4f69f-d94fefb9 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_1d6d6f00-b399-05be-2b76-37177ee4f6a0-d94fefb9 {
  grid-area: 1 / 3 / 4 / 4;
}

#w-node-_1d6d6f00-b399-05be-2b76-37177ee4f6a1-d94fefb9 {
  grid-area: 3 / 1 / 6 / 2;
  align-self: end;
}

#w-node-_1d6d6f00-b399-05be-2b76-37177ee4f6a2-d94fefb9 {
  grid-area: 5 / 3 / 7 / 4;
}

#w-node-_1d6d6f00-b399-05be-2b76-37177ee4f6a3-d94fefb9 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_1d6d6f00-b399-05be-2b76-37177ee4f6a4-d94fefb9 {
  grid-area: 7 / 1 / 9 / 2;
}

#w-node-_1d6d6f00-b399-05be-2b76-37177ee4f6a5-d94fefb9 {
  grid-area: 8 / 3 / 9 / 4;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec99ff9-066c5126 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec99ffa-066c5126 {
  grid-area: 2 / 2 / 3 / 5;
  align-self: center;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a002-066c5126 {
  grid-area: 2 / 6 / 2 / 7;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a00a-066c5126 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a00b-066c5126 {
  grid-area: 2 / 4 / 3 / 7;
  align-self: center;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a013-066c5126 {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a01b-066c5126 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a01c-066c5126 {
  grid-area: 2 / 2 / 3 / 5;
  align-self: center;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a024-066c5126 {
  grid-area: 2 / 6 / 2 / 7;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a032-066c5126 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a033-066c5126 {
  grid-area: 2 / 4 / 3 / 7;
  align-self: center;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a03b-066c5126 {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a043-066c5126 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a044-066c5126 {
  grid-area: 2 / 2 / 3 / 5;
  align-self: center;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a04c-066c5126 {
  grid-area: 2 / 6 / 2 / 7;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a054-066c5126 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a055-066c5126 {
  grid-area: 2 / 4 / 3 / 7;
  align-self: center;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a05d-066c5126 {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a065-066c5126 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a066-066c5126 {
  grid-area: 2 / 2 / 3 / 5;
  align-self: center;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a06e-066c5126 {
  grid-area: 2 / 6 / 2 / 7;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a076-066c5126 {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a077-066c5126 {
  grid-area: 2 / 4 / 3 / 7;
  align-self: center;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a07f-066c5126 {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a087-066c5126 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a088-066c5126 {
  grid-area: 2 / 2 / 3 / 5;
  align-self: center;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a090-066c5126 {
  grid-area: 2 / 6 / 2 / 7;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a098-066c5126 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a099-066c5126 {
  grid-area: 2 / 4 / 3 / 7;
  align-self: center;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0a1-066c5126 {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0a9-066c5126 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0aa-066c5126 {
  grid-area: 2 / 2 / 3 / 5;
  align-self: center;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0b2-066c5126 {
  grid-area: 2 / 6 / 2 / 7;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0ba-066c5126 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0bb-066c5126 {
  grid-area: 2 / 4 / 3 / 7;
  align-self: center;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0c3-066c5126 {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0cb-066c5126 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0cc-066c5126 {
  grid-area: 2 / 2 / 3 / 5;
  align-self: center;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0d4-066c5126 {
  grid-area: 2 / 6 / 2 / 7;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0dc-066c5126 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0dd-066c5126 {
  grid-area: 2 / 4 / 3 / 7;
  align-self: center;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0e5-066c5126 {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0ed-066c5126 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0ee-066c5126 {
  grid-area: 2 / 2 / 3 / 5;
  align-self: center;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0f6-066c5126 {
  grid-area: 2 / 6 / 2 / 7;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0fe-066c5126 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0ff-066c5126 {
  grid-area: 2 / 4 / 3 / 7;
  align-self: center;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a107-066c5126 {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a10f-066c5126 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a110-066c5126 {
  grid-area: 2 / 2 / 3 / 5;
  align-self: center;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a118-066c5126 {
  grid-area: 2 / 6 / 2 / 7;
}

#w-node-ccde5beb-28e3-dc7e-503e-f9459f787ceb-066c5126 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a121-066c5126 {
  grid-area: 2 / 4 / 3 / 7;
  align-self: center;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a129-066c5126 {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-_728af04e-f9d1-b06e-2e82-e56deec9a120-066c5126 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-e363946d-43e3-75e1-d01d-410058998415-f7601d70 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-e363946d-43e3-75e1-d01d-410058998442-f7601d70 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-e363946d-43e3-75e1-d01d-410058998444-f7601d70 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-e363946d-43e3-75e1-d01d-41005899844b-f7601d70 {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-e363946d-43e3-75e1-d01d-41005899844d-f7601d70 {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-e363946d-43e3-75e1-d01d-410058998454-f7601d70 {
  grid-area: 3 / 1 / 3 / 2;
}

#w-node-e363946d-43e3-75e1-d01d-410058998457-f7601d70 {
  grid-area: 3 / 3 / 4 / 4;
  align-self: end;
}

#w-node-a13c8b8d-9556-fd65-feaf-fdae369bf42f-4b81e749 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-a13c8b8d-9556-fd65-feaf-fdae369bf47c-4b81e749 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-a13c8b8d-9556-fd65-feaf-fdae369bf47e-4b81e749 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-a13c8b8d-9556-fd65-feaf-fdae369bf485-4b81e749 {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-a13c8b8d-9556-fd65-feaf-fdae369bf487-4b81e749 {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-a13c8b8d-9556-fd65-feaf-fdae369bf48e-4b81e749 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-a13c8b8d-9556-fd65-feaf-fdae369bf490-4b81e749 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-a13c8b8d-9556-fd65-feaf-fdae369bf496-4b81e749 {
  grid-area: 3 / 1 / 3 / 2;
}

#w-node-a13c8b8d-9556-fd65-feaf-fdae369bf499-4b81e749 {
  grid-area: 3 / 3 / 4 / 4;
  align-self: end;
}

#w-node-a13c8b8d-9556-fd65-feaf-fdae369bf49d-4b81e749 {
  grid-area: 2 / 3 / 4 / 4;
  align-self: start;
}

#w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abeef3-624721ef {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abef01-624721ef {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abef03-624721ef {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_5f041eff-611d-b7f0-f8b8-a820e9d71e0a-624721ef {
  grid-area: 3 / 1 / 4 / 3;
}

#w-node-_6a5ddfc6-3c68-b009-fe00-8bdb78ebc748-624721ef {
  grid-area: 4 / 1 / 5 / 3;
}

#w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abef0e-624721ef {
  grid-area: 3 / 1 / 3 / 2;
}

#w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abef11-624721ef {
  grid-area: 3 / 3 / 4 / 4;
  align-self: end;
}

#w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abef15-624721ef {
  grid-area: 2 / 3 / 4 / 4;
  align-self: start;
}

#w-node-f079764b-cc94-cc82-6f10-58564fb3cdbb-624721ef {
  grid-area: 1 / 2 / 3 / 4;
}

#w-node-_01ab69f0-5d7c-b172-b7f3-35c441237169-624721ef {
  grid-area: 4 / 1 / 5 / 5;
}

@media screen and (min-width: 1440px) {
  #w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a5a-f721828c {
    grid-area: 1 / 1 / 5 / 2;
  }

  #w-node-c1325d91-081a-8adf-4212-66c44297f6aa-4297f69b {
    grid-area: 1 / 2 / 3 / 3;
    align-self: end;
  }

  #w-node-c1325d91-081a-8adf-4212-66c44297f6b3-4297f69b {
    grid-column: 3 / 4;
    grid-row-start: 2;
    align-self: end;
  }

  #w-node-c1325d91-081a-8adf-4212-66c44297f6ba-4297f69b {
    grid-column: 4 / 5;
    grid-row-start: 2;
    align-self: end;
  }

  #w-node-c1325d91-081a-8adf-4212-66c44297f6c1-4297f69b {
    grid-area: 2 / 5 / 3 / 6;
  }

  #w-node-_497cfc8a-c6a5-5522-04c7-6834458ed8e6-458ed8e6 {
    grid-column-end: 4;
  }

  #w-node-_36fb20a4-90b9-b147-8a58-1e5b907631ce-4312233b {
    grid-area: 1 / 2 / 3 / 3;
    align-self: end;
  }

  #w-node-_36fb20a4-90b9-b147-8a58-1e5b907631d7-4312233b {
    grid-column: 3 / 4;
    grid-row-start: 2;
    align-self: end;
  }

  #w-node-_36fb20a4-90b9-b147-8a58-1e5b907631de-4312233b {
    grid-column: 4 / 5;
    grid-row-start: 2;
    align-self: end;
  }

  #w-node-_9dae890c-ab80-3572-e85d-7e58eeb52b0a-45218294 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_9dae890c-ab80-3572-e85d-7e58eeb52b0f-45218294 {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-_9dae890c-ab80-3572-e85d-7e58eeb52b12-45218294 {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-_9dae890c-ab80-3572-e85d-7e58eeb52b16-45218294 {
    grid-area: 2 / 4 / 4 / 5;
  }

  #w-node-_83acbe8d-ecf3-c1cd-6892-be70c1909641-68218295 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_83acbe8d-ecf3-c1cd-6892-be70c1909646-68218295 {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-_83acbe8d-ecf3-c1cd-6892-be70c1909649-68218295 {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-_83acbe8d-ecf3-c1cd-6892-be70c190964d-68218295 {
    grid-area: 2 / 4 / 4 / 5;
  }

  #w-node-_4d97ab31-96dd-4987-3d5d-7153a67c23d7-3b218296 {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-_54edf6c2-7feb-2bd4-2dc7-c04f5c4a6e0f-3b218296 {
    grid-area: 1 / 4 / 2 / 7;
  }

  #w-node-eae759c9-f593-fe81-a45e-1e916fbbdb0c-3b218296 {
    grid-area: 2 / 1 / 3 / 7;
  }

  #w-node-_7e315f2a-72f4-697a-eab1-4858f2674205-3b218296 {
    grid-area: 1 / 7 / 3 / 13;
  }

  #w-node-ad8489f0-3953-1311-fe88-19b32c2efafb-3b218296 {
    grid-area: 4 / 2 / 5 / 4;
  }

  #w-node-e017b033-f654-cdfb-769d-e671ed1b037e-3b218296 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-d9825df5-5492-7fec-6a96-c345aaa7e2a9-5121829e {
    grid-area: 1 / 1 / 2 / 3;
    justify-self: end;
  }

  #w-node-b9241a8a-818e-b63e-d27b-214a42a8acd8-5121829e {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_78c53a68-de33-5391-359e-173a37833044-5121829e {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_78c53a68-de33-5391-359e-173a37833049-5121829e {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-_78c53a68-de33-5391-359e-173a3783304c-5121829e {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-_78c53a68-de33-5391-359e-173a37833050-5121829e {
    grid-area: 2 / 4 / 4 / 5;
  }

  #w-node-_7de3343f-d05f-add2-0de3-be62a4a10b29-7aefb8b7 {
    grid-area: 3 / 1 / 4 / 7;
  }

  #w-node-_455d56a5-7f17-5c62-2b98-a1e975ba3668-de3aa5ed {
    grid-area: 1 / 2 / 3 / 3;
    align-self: end;
  }

  #w-node-_455d56a5-7f17-5c62-2b98-a1e975ba3671-de3aa5ed {
    grid-column: 3 / 4;
    grid-row-start: 2;
    align-self: end;
  }

  #w-node-_455d56a5-7f17-5c62-2b98-a1e975ba3678-de3aa5ed {
    grid-column: 4 / 5;
    grid-row-start: 2;
    align-self: end;
  }

  #w-node-_455d56a5-7f17-5c62-2b98-a1e975ba367f-de3aa5ed {
    grid-area: 2 / 5 / 3 / 6;
  }

  #w-node-_68ab3c2f-319d-dea4-47f8-637cd895727c-2591d12d {
    grid-area: 2 / 2 / 8 / 7;
  }

  #w-node-_076d28e3-f9fa-2293-e8ea-f7877446df1b-2591d12d {
    grid-area: 6 / 7 / 8 / 9;
  }

  #w-node-_4bc483e3-2599-f5ce-20b5-50873b2e3bef-2591d12d {
    grid-area: 1 / 8 / 5 / 10;
  }

  #w-node-db9c4ed8-0ba6-d67b-5e4a-b1451a81509a-2591d12d {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-db9c4ed8-0ba6-d67b-5e4a-b1451a81509f-2591d12d {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-db9c4ed8-0ba6-d67b-5e4a-b1451a8150a2-2591d12d {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-db9c4ed8-0ba6-d67b-5e4a-b1451a8150a6-2591d12d {
    grid-area: 2 / 4 / 4 / 5;
  }

  #w-node-_4c08d860-5d54-eb76-3950-40391c132388-c53d4a2b {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_34b50b20-266a-cd26-ffa7-d5b649ff37fd-c53d4a2b {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-_34b50b20-266a-cd26-ffa7-d5b649ff3800-c53d4a2b {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-_8d2121d8-e138-7783-2b12-2f66c518fde2-c53d4a2b {
    grid-area: 2 / 4 / 4 / 5;
  }

  #w-node-fbbdb917-373d-f5e0-0418-d109568c7202-c53d4a2b {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_0b96fe72-c4c1-c6e1-c72d-7870cebc3f16-ceb12742 {
    grid-row-end: 4;
  }

  #w-node-_02ca898f-85f1-83a6-7491-42e7f3ff5591-ceb12742 {
    grid-row-end: 2;
  }

  #w-node-dc42ed4d-dae0-724a-e549-802b56e7ab69-ceb12742 {
    grid-row: 5 / 6;
  }

  #w-node-a7064845-a1fa-c545-8669-d14386422b50-ceb12742 {
    grid-area: 3 / 3 / 6 / 4;
  }

  #w-node-d751efc3-c8d0-96bb-30a2-6801fb88e225-ceb12742, #w-node-_3bb19546-d65b-9aac-6c7e-fe2514f846cd-ceb12742 {
    grid-row: 7 / 8;
  }

  #w-node-a6029938-55e2-97ed-9160-c21bc598dbf5-3a342e3d {
    grid-column: 3 / 4;
  }

  #w-node-a6029938-55e2-97ed-9160-c21bc598dbfc-3a342e3d {
    grid-column: 2 / 4;
  }

  #w-node-a6029938-55e2-97ed-9160-c21bc598dbfe-3a342e3d {
    grid-area: 4 / 3 / 5 / 4;
  }

  #w-node-a6029938-55e2-97ed-9160-c21bc598dc05-3a342e3d {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-a6029938-55e2-97ed-9160-c21bc598dc08-3a342e3d {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d94e-7418d8a4 {
    grid-column: 3 / 4;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d955-7418d8a4 {
    grid-column: 2 / 4;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d957-7418d8a4 {
    grid-column: 3 / 4;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d961-7418d8a4 {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d964-7418d8a4 {
    grid-area: 2 / 4 / 4 / 5;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d967-7418d8a4 {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-ed72f549-6f1e-1eaa-95b6-12fe742979ad-6508351f {
    grid-column: 3 / 4;
  }

  #w-node-ed72f549-6f1e-1eaa-95b6-12fe742979b4-6508351f {
    grid-column: 2 / 4;
  }

  #w-node-_75f5f5fc-01c8-4fbf-214c-c79129234b76-6508351f, #w-node-_9466ac39-61d0-0fd3-43d9-12af12202cfb-6508351f {
    grid-column: 3 / 4;
  }

  #w-node-_9466ac39-61d0-0fd3-43d9-12af12202d02-6508351f {
    grid-column: 2 / 4;
  }

  #w-node-_9466ac39-61d0-0fd3-43d9-12af12202d04-6508351f {
    grid-column: 3 / 4;
  }

  #w-node-deaa47ee-57c4-2100-8f6d-061d3e37955a-6508351f {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-deaa47ee-57c4-2100-8f6d-061d3e379565-6508351f {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-deaa47ee-57c4-2100-8f6d-061d3e379568-6508351f {
    grid-area: 2 / 4 / 4 / 5;
  }

  #w-node-deaa47ee-57c4-2100-8f6d-061d3e37956b-6508351f {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9de2-b14c37cc {
    grid-column: 3 / 4;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9de9-b14c37cc {
    grid-column: 2 / 4;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9deb-b14c37cc {
    grid-area: 4 / 3 / 5 / 4;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9df2-b14c37cc {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9dfd-b14c37cc {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9e00-b14c37cc {
    grid-area: 2 / 4 / 4 / 5;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9e03-b14c37cc {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f477-d9f734f1 {
    grid-area: 2 / 2 / 8 / 7;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f479-d9f734f1 {
    grid-area: 6 / 7 / 8 / 9;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f47d-d9f734f1 {
    grid-area: 1 / 8 / 5 / 10;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f4a8-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f4ce-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f4f8-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f521-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f547-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f56d-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f599-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f5db-d9f734f1 {
    grid-area: 1 / 1 / 2 / 8;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e628-53b9a1dd {
    grid-area: 1 / 1 / 2 / 3;
    justify-self: end;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e632-53b9a1dd {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e66d-53b9a1dd {
    grid-column: 2 / 4;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e681-53b9a1dd {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e6a4-53b9a1dd {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e6a7-53b9a1dd {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e6ab-53b9a1dd {
    grid-area: 2 / 4 / 4 / 5;
  }

  #w-node-_577579db-2727-6d21-a883-f2314e7bb709-6c4c4e08 {
    grid-column: 3 / 4;
  }

  #w-node-_577579db-2727-6d21-a883-f2314e7bb710-6c4c4e08 {
    grid-column: 2 / 4;
  }

  #w-node-_577579db-2727-6d21-a883-f2314e7bb719-6c4c4e08 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_577579db-2727-6d21-a883-f2314e7bb726-6c4c4e08 {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-_577579db-2727-6d21-a883-f2314e7bb729-6c4c4e08 {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a033-066c5126 {
    grid-column-end: 7;
  }

  #w-node-e363946d-43e3-75e1-d01d-410058998444-f7601d70 {
    grid-column: 3 / 4;
  }

  #w-node-e363946d-43e3-75e1-d01d-41005899844b-f7601d70 {
    grid-column: 2 / 4;
  }

  #w-node-e363946d-43e3-75e1-d01d-41005899844d-f7601d70 {
    grid-column: 3 / 4;
  }

  #w-node-e363946d-43e3-75e1-d01d-410058998454-f7601d70 {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-e363946d-43e3-75e1-d01d-410058998457-f7601d70 {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf47e-4b81e749 {
    grid-column: 3 / 4;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf485-4b81e749 {
    grid-column: 2 / 4;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf487-4b81e749 {
    grid-area: 4 / 3 / 5 / 4;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf496-4b81e749 {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf499-4b81e749 {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf49d-4b81e749 {
    grid-area: 2 / 4 / 4 / 5;
  }

  #w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abef03-624721ef {
    grid-column: 3 / 4;
  }

  #w-node-_5f041eff-611d-b7f0-f8b8-a820e9d71e0a-624721ef {
    grid-column: 2 / 4;
  }

  #w-node-_6a5ddfc6-3c68-b009-fe00-8bdb78ebc748-624721ef {
    grid-area: 4 / 3 / 5 / 4;
  }

  #w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abef0e-624721ef {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abef11-624721ef {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abef15-624721ef {
    grid-area: 2 / 4 / 4 / 5;
  }
}

@media screen and (min-width: 1280px) {
  #w-node-db2a9184-5d73-adc1-e79b-15126ceecb13-f721828c, #w-node-_8b51643d-6ec9-8071-fed4-a798ff86a25e-f721828c {
    align-self: center;
  }

  #w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a47-f721828c {
    grid-area: 2 / 2 / 3 / 4;
    justify-self: stretch;
  }

  #w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a5a-f721828c {
    grid-area: 1 / 1 / 5 / 2;
  }

  #w-node-c1325d91-081a-8adf-4212-66c44297f6aa-4297f69b {
    grid-row: 2 / 3;
  }

  #w-node-c1325d91-081a-8adf-4212-66c44297f6c1-4297f69b {
    grid-area: 2 / 3 / 3 / 6;
  }

  #w-node-_497cfc8a-c6a5-5522-04c7-6834458ed8e6-458ed8e6 {
    grid-row: 4 / 5;
  }

  #w-node-_36fb20a4-90b9-b147-8a58-1e5b907631ce-4312233b {
    grid-row: 2 / 3;
  }

  #w-node-_9dae890c-ab80-3572-e85d-7e58eeb52b0f-45218294 {
    grid-area: 3 / 1 / 3 / 2;
  }

  #w-node-_9dae890c-ab80-3572-e85d-7e58eeb52b12-45218294 {
    grid-area: 3 / 3 / 4 / 4;
    align-self: end;
  }

  #w-node-_9dae890c-ab80-3572-e85d-7e58eeb52b16-45218294 {
    grid-column: 3 / 4;
  }

  #w-node-_83acbe8d-ecf3-c1cd-6892-be70c1909646-68218295 {
    grid-area: 3 / 1 / 3 / 2;
  }

  #w-node-_83acbe8d-ecf3-c1cd-6892-be70c1909649-68218295 {
    grid-area: 3 / 3 / 4 / 4;
    align-self: end;
  }

  #w-node-_83acbe8d-ecf3-c1cd-6892-be70c190964d-68218295 {
    grid-column: 3 / 4;
  }

  #w-node-eae759c9-f593-fe81-a45e-1e916fbbdb0c-3b218296 {
    grid-area: 2 / 1 / 3 / 7;
  }

  #w-node-_22d00b1d-4f96-a3ec-c0a9-009c1221b4fe-3b218296 {
    grid-area: 4 / 1 / 6 / 2;
  }

  #w-node-ad8489f0-3953-1311-fe88-19b32c2efafb-3b218296 {
    grid-area: 4 / 2 / 5 / 4;
    justify-self: stretch;
  }

  #w-node-e017b033-f654-cdfb-769d-e671ed1b0383-3b218296 {
    grid-row: 2 / 3;
  }

  #w-node-_78c53a68-de33-5391-359e-173a37833049-5121829e {
    grid-area: 3 / 1 / 3 / 2;
  }

  #w-node-_78c53a68-de33-5391-359e-173a3783304c-5121829e {
    grid-area: 3 / 3 / 4 / 4;
    align-self: end;
  }

  #w-node-_78c53a68-de33-5391-359e-173a37833050-5121829e {
    grid-column: 3 / 4;
  }

  #w-node-_455d56a5-7f17-5c62-2b98-a1e975ba35de-de3aa5ed {
    grid-row: 2 / 3;
  }

  #w-node-_455d56a5-7f17-5c62-2b98-a1e975ba3658-de3aa5ed {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_455d56a5-7f17-5c62-2b98-a1e975ba3668-de3aa5ed {
    grid-row: 2 / 3;
  }

  #w-node-_455d56a5-7f17-5c62-2b98-a1e975ba367f-de3aa5ed {
    grid-area: 2 / 3 / 3 / 6;
  }

  #w-node-_0d16f781-2f45-47f4-8c70-343ae7813197-2591d12d {
    grid-column-end: 7;
  }

  #w-node-db9c4ed8-0ba6-d67b-5e4a-b1451a81509f-2591d12d {
    grid-area: 3 / 1 / 3 / 2;
  }

  #w-node-db9c4ed8-0ba6-d67b-5e4a-b1451a8150a2-2591d12d {
    grid-area: 3 / 3 / 4 / 4;
    align-self: end;
  }

  #w-node-db9c4ed8-0ba6-d67b-5e4a-b1451a8150a6-2591d12d {
    grid-column: 3 / 4;
  }

  #w-node-_18fc2373-753c-26d0-04a4-72e613af0cb6-c53d4a2b {
    grid-area: 3 / 3 / 4 / 4;
  }

  #w-node-_34b50b20-266a-cd26-ffa7-d5b649ff37fd-c53d4a2b {
    grid-area: 3 / 1 / 3 / 2;
  }

  #w-node-_34b50b20-266a-cd26-ffa7-d5b649ff3800-c53d4a2b {
    grid-area: 3 / 3 / 4 / 4;
    align-self: end;
  }

  #w-node-_8d2121d8-e138-7783-2b12-2f66c518fde2-c53d4a2b {
    grid-column: 3 / 4;
  }

  #w-node-_96a6c972-8f30-c3d8-f447-73133a7503ee-c53d4a2b {
    grid-row: 2 / 3;
  }

  #w-node-_96a6c972-8f30-c3d8-f447-73133a750485-c53d4a2b {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-fbbdb917-373d-f5e0-0418-d109568c7202-c53d4a2b {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-fbbdb917-373d-f5e0-0418-d109568c7205-c53d4a2b {
    grid-row: 2 / 3;
  }

  #w-node-_0b96fe72-c4c1-c6e1-c72d-7870cebc3f16-ceb12742 {
    grid-row-end: 4;
  }

  #w-node-dc42ed4d-dae0-724a-e549-802b56e7ab69-ceb12742 {
    grid-row: 5 / 6;
  }

  #w-node-a7064845-a1fa-c545-8669-d14386422b50-ceb12742 {
    grid-row: 3 / 6;
  }

  #w-node-d751efc3-c8d0-96bb-30a2-6801fb88e225-ceb12742 {
    grid-row: 7 / 8;
  }

  #w-node-_3bb19546-d65b-9aac-6c7e-fe2514f846cd-ceb12742 {
    grid-row: 7 / 8;
    align-self: end;
  }

  #w-node-a6029938-55e2-97ed-9160-c21bc598dc05-3a342e3d {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-a6029938-55e2-97ed-9160-c21bc598dc08-3a342e3d {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d961-7418d8a4 {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d964-7418d8a4 {
    grid-column: 4 / 5;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d967-7418d8a4 {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-deaa47ee-57c4-2100-8f6d-061d3e37955a-6508351f {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-deaa47ee-57c4-2100-8f6d-061d3e379565-6508351f {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-deaa47ee-57c4-2100-8f6d-061d3e379568-6508351f {
    grid-column: 4 / 5;
  }

  #w-node-deaa47ee-57c4-2100-8f6d-061d3e37956b-6508351f {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9df2-b14c37cc {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9dfd-b14c37cc {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9e00-b14c37cc {
    grid-column: 4 / 5;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9e03-b14c37cc {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e681-53b9a1dd {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e6a4-53b9a1dd {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e6a7-53b9a1dd {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e6ab-53b9a1dd {
    grid-column: 4 / 5;
  }

  #w-node-_577579db-2727-6d21-a883-f2314e7bb719-6c4c4e08 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_577579db-2727-6d21-a883-f2314e7bb726-6c4c4e08 {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-_577579db-2727-6d21-a883-f2314e7bb729-6c4c4e08 {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec99ff9-066c5126 {
    grid-column-end: 7;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a01c-066c5126 {
    grid-area: 2 / 2 / 3 / 5;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a077-066c5126 {
    grid-area: 2 / 4 / 3 / 7;
  }

  #w-node-e363946d-43e3-75e1-d01d-410058998454-f7601d70 {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-e363946d-43e3-75e1-d01d-410058998457-f7601d70 {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf496-4b81e749 {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf499-4b81e749 {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf49d-4b81e749 {
    grid-column: 4 / 5;
  }

  #w-node-_6a5ddfc6-3c68-b009-fe00-8bdb78ebc748-624721ef {
    grid-column-end: 3;
  }

  #w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abef0e-624721ef {
    grid-area: 3 / 2 / 3 / 3;
  }

  #w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abef11-624721ef {
    grid-area: 3 / 4 / 4 / 5;
    align-self: end;
  }

  #w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abef15-624721ef {
    grid-column: 4 / 5;
  }
}

@media screen and (max-width: 991px) {
  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61adff-f721828c {
    grid-column: 1 / 5;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae15-f721828c {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae21-f721828c {
    grid-row: 2 / 3;
    grid-column-end: 7;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae2c-f721828c {
    grid-area: 2 / 7 / 3 / 13;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae3e-f721828c {
    grid-area: 3 / 1 / 4 / 13;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae49-f721828c {
    grid-column: 1 / 13;
    grid-row-start: 4;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae66-f721828c {
    grid-area: 1 / 2 / 3 / 3;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae6b-f721828c {
    grid-area: 2 / 1 / 5 / 2;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae71-f721828c {
    grid-area: 5 / 1 / 8 / 2;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae76-f721828c {
    grid-area: 4 / 2 / 6 / 3;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae7b-f721828c {
    grid-area: 7 / 2 / 8 / 3;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae7c-f721828c {
    grid-area: 5 / 2 / 8 / 3;
  }

  #w-node-db2a9184-5d73-adc1-e79b-15126ceecb13-f721828c {
    grid-column: 1 / 4;
  }

  #w-node-db2a9184-5d73-adc1-e79b-15126ceecb16-f721828c {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-_8b51643d-6ec9-8071-fed4-a798ff86a25e-f721828c {
    grid-area: 1 / 2 / 2 / 5;
  }

  #w-node-_8b51643d-6ec9-8071-fed4-a798ff86a261-f721828c {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a3d-f721828c {
    grid-area: 1 / 2 / 2 / 4;
  }

  #w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a46-f721828c {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a47-f721828c {
    grid-row: 2 / 3;
  }

  #w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a5a-f721828c, #w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a5b-f721828c {
    grid-row: 1 / 5;
  }

  #w-node-c1325d91-081a-8adf-4212-66c44297f6b3-4297f69b {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-c1325d91-081a-8adf-4212-66c44297f6ba-4297f69b {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-c1325d91-081a-8adf-4212-66c44297f6c1-4297f69b {
    grid-area: 5 / 2 / 6 / 3;
  }

  #w-node-_497cfc8a-c6a5-5522-04c7-6834458ed8e6-458ed8e6 {
    grid-row: 4 / 5;
  }

  #w-node-_36fb20a4-90b9-b147-8a58-1e5b907631ce-4312233b {
    grid-row: 3 / 5;
  }

  #w-node-_36fb20a4-90b9-b147-8a58-1e5b907631d7-4312233b {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_36fb20a4-90b9-b147-8a58-1e5b907631de-4312233b {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-_4327fe07-b35e-9a11-9092-f444893747a2-45218294 {
    grid-column: 1 / 3;
  }

  #w-node-f27c81b6-15cb-3372-3685-9ee507b4a79e-45218294 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_9dae890c-ab80-3572-e85d-7e58eeb52b0a-45218294 {
    grid-column: 1 / 4;
  }

  #w-node-_9dae890c-ab80-3572-e85d-7e58eeb52b0f-45218294 {
    grid-area: 3 / 1 / 3 / 2;
  }

  #w-node-_9dae890c-ab80-3572-e85d-7e58eeb52b12-45218294 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_9dae890c-ab80-3572-e85d-7e58eeb52b16-45218294 {
    grid-area: 2 / 3 / 4 / 4;
    justify-self: stretch;
  }

  #w-node-_4327fe07-b35e-9a11-9092-f444893747a2-68218295 {
    grid-column: 1 / 3;
  }

  #w-node-f27c81b6-15cb-3372-3685-9ee507b4a79e-68218295 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_83acbe8d-ecf3-c1cd-6892-be70c1909641-68218295 {
    grid-column: 1 / 4;
  }

  #w-node-_83acbe8d-ecf3-c1cd-6892-be70c1909646-68218295 {
    grid-area: 3 / 1 / 3 / 2;
  }

  #w-node-_83acbe8d-ecf3-c1cd-6892-be70c1909649-68218295 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_83acbe8d-ecf3-c1cd-6892-be70c190964d-68218295 {
    grid-area: 2 / 3 / 4 / 4;
    justify-self: stretch;
  }

  #w-node-_666aa93b-5060-59f6-6980-ee0af729b3ae-3b218296 {
    grid-column-end: 5;
    align-self: end;
  }

  #w-node-_16899461-7010-02ee-1eab-30e36b89de5f-3b218296 {
    grid-column-start: 1;
  }

  #w-node-_4d97ab31-96dd-4987-3d5d-7153a67c23d7-3b218296 {
    grid-column-end: 7;
  }

  #w-node-_54edf6c2-7feb-2bd4-2dc7-c04f5c4a6e0f-3b218296 {
    grid-column: 7 / 13;
  }

  #w-node-eae759c9-f593-fe81-a45e-1e916fbbdb0c-3b218296 {
    grid-row: 3 / 4;
    grid-column-end: 13;
  }

  #w-node-_7e315f2a-72f4-697a-eab1-4858f2674205-3b218296 {
    grid-row-start: 2;
    grid-column-start: 1;
  }

  #w-node-dbd09f31-c039-4812-62f2-4b097072fdc5-3b218296 {
    grid-row: 4 / 5;
    grid-column-end: 7;
  }

  #w-node-_714cba40-fcf3-b93f-c36d-960c5d8a88a2-3b218296 {
    grid-area: 5 / 1 / 6 / 13;
  }

  #w-node-f35fd280-00f5-d392-a617-fa03177f14b1-3b218296 {
    grid-row: 4 / 5;
    grid-column-start: 7;
  }

  #w-node-_1aaa86d9-5d94-eeb1-5240-fe06d58eb393-3b218296 {
    grid-row: 2 / 3;
  }

  #w-node-_1aaa86d9-5d94-eeb1-5240-fe06d58eb394-3b218296 {
    grid-row: 3 / 6;
  }

  #w-node-_1aaa86d9-5d94-eeb1-5240-fe06d58eb399-3b218296 {
    grid-row-end: 4;
    grid-column-end: 3;
  }

  #w-node-_1aaa86d9-5d94-eeb1-5240-fe06d58eb39e-3b218296 {
    grid-area: 5 / 2 / 7 / 3;
  }

  #w-node-_1aaa86d9-5d94-eeb1-5240-fe06d58eb3a3-3b218296 {
    grid-area: 6 / 1 / 8 / 2;
  }

  #w-node-_3a70b080-a1af-0ede-f8c2-bb302313d191-3b218296 {
    grid-column: 1 / 5;
    align-self: stretch;
  }

  #w-node-_1074a0bb-0b92-ee13-ce63-3cb35f5e16ef-3b218296 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_41f4896c-d51a-70a0-b7ab-4385a4e8c0a3-3b218296 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-e017b033-f654-cdfb-769d-e671ed1b0383-3b218296 {
    grid-column: 1 / 5;
    align-self: stretch;
  }

  #w-node-_4327fe07-b35e-9a11-9092-f444893747a2-5121829e {
    grid-column: 1 / 3;
  }

  #w-node-f27c81b6-15cb-3372-3685-9ee507b4a79e-5121829e {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_78c53a68-de33-5391-359e-173a37833044-5121829e {
    grid-column: 1 / 4;
  }

  #w-node-_78c53a68-de33-5391-359e-173a37833049-5121829e {
    grid-area: 3 / 1 / 3 / 2;
  }

  #w-node-_78c53a68-de33-5391-359e-173a3783304c-5121829e {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_78c53a68-de33-5391-359e-173a37833050-5121829e {
    grid-area: 2 / 3 / 4 / 4;
    justify-self: stretch;
  }

  #w-node-a986e6f8-fc34-854a-244f-aa3bc90ce7d7-7aefb8b7 {
    grid-column-end: 5;
  }

  #w-node-a986e6f8-fc34-854a-244f-aa3bc90ce7d8-7aefb8b7 {
    grid-area: 2 / 2 / 3 / 5;
  }

  #w-node-a986e6f8-fc34-854a-244f-aa3bc90ce7db-7aefb8b7 {
    grid-row: 3 / 4;
    grid-column-end: 4;
  }

  #w-node-a986e6f8-fc34-854a-244f-aa3bc90ce7e5-7aefb8b7 {
    grid-row: 4 / 5;
    grid-column-end: 5;
  }

  #w-node-c3941c75-3f3f-3796-64ee-dbdd62919533-7aefb8b7 {
    grid-column-end: 5;
  }

  #w-node-_39e94a5d-17a6-0493-f6a1-69771d72842b-7aefb8b7 {
    grid-column: 2 / 4;
  }

  #w-node-_39e94a5d-17a6-0493-f6a1-69771d728421-7aefb8b7 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_23ad7ec6-acb3-17a6-c649-c577a4fc9941-7aefb8b7 {
    grid-row: 4 / 5;
    grid-column-end: 5;
  }

  #w-node-_2da22e62-1d16-b44c-9f43-753dbc0f29b2-7aefb8b7 {
    grid-column-end: 5;
  }

  #w-node-_1c97f02a-a629-fbf0-3d11-2d3323c49048-7aefb8b7 {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-_1c97f02a-a629-fbf0-3d11-2d3323c4903e-7aefb8b7 {
    grid-row: 3 / 4;
    grid-column-end: 4;
  }

  #w-node-_464b9c2d-b695-24d9-ba8c-699b3f37b4b0-7aefb8b7 {
    grid-row: 4 / 5;
    grid-column-end: 5;
  }

  #w-node-_7de3343f-d05f-add2-0de3-be62a4a10b1c-7aefb8b7 {
    grid-column: 1 / 4;
  }

  #w-node-_7de3343f-d05f-add2-0de3-be62a4a10b1f-7aefb8b7 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_7de3343f-d05f-add2-0de3-be62a4a10b29-7aefb8b7 {
    grid-row: 4 / 5;
    grid-column-end: 5;
  }

  #w-node-_9dcb15f8-6861-2403-6909-fb03f2e61dd4-de3aa5ed {
    grid-column-end: 5;
  }

  #w-node-b4e93b50-b6f7-596b-5475-4f7f9c37c241-de3aa5ed {
    grid-column: 1 / 4;
  }

  #w-node-bba6fbf5-dacb-e697-ad2b-26a84718b6d4-de3aa5ed {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_7418e1fb-1e4c-1d51-4b23-2318f31c9b7e-de3aa5ed {
    grid-column-end: 5;
  }

  #w-node-_7418e1fb-1e4c-1d51-4b23-2318f31c9b7f-de3aa5ed {
    grid-area: 2 / 2 / 3 / 4;
  }

  #w-node-_7418e1fb-1e4c-1d51-4b23-2318f31c9b82-de3aa5ed {
    grid-row: 3 / 4;
    grid-column-end: 4;
  }

  #w-node-_2da22e62-1d16-b44c-9f43-753dbc0f29b2-de3aa5ed {
    grid-column-end: 5;
  }

  #w-node-_1c97f02a-a629-fbf0-3d11-2d3323c49048-de3aa5ed {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_1c97f02a-a629-fbf0-3d11-2d3323c4903e-de3aa5ed {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_464b9c2d-b695-24d9-ba8c-699b3f37b4b0-de3aa5ed {
    grid-row: 4 / 5;
    grid-column-end: 5;
  }

  #w-node-_455d56a5-7f17-5c62-2b98-a1e975ba35dd-de3aa5ed {
    grid-area: 1 / 2 / 2 / 4;
  }

  #w-node-_455d56a5-7f17-5c62-2b98-a1e975ba35de-de3aa5ed {
    grid-column: 1 / 5;
    align-self: stretch;
  }

  #w-node-_455d56a5-7f17-5c62-2b98-a1e975ba3671-de3aa5ed {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_455d56a5-7f17-5c62-2b98-a1e975ba3678-de3aa5ed {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-_455d56a5-7f17-5c62-2b98-a1e975ba367f-de3aa5ed {
    grid-area: 5 / 2 / 6 / 3;
  }

  #w-node-_0d16f781-2f45-47f4-8c70-343ae7813197-2591d12d {
    grid-column-end: 5;
  }

  #w-node-_0d16f781-2f45-47f4-8c70-343ae7813198-2591d12d {
    grid-column: 2 / 4;
  }

  #w-node-_0d16f781-2f45-47f4-8c70-343ae781319b-2591d12d {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_10b68778-af09-75aa-83a8-199a38e8dc21-2591d12d {
    grid-column-end: 5;
  }

  #w-node-_10b68778-af09-75aa-83a8-199a38e8dc22-2591d12d {
    grid-column: 2 / 4;
  }

  #w-node-_10b68778-af09-75aa-83a8-199a38e8dc2c-2591d12d {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_59c7dee4-04b0-0990-3bfb-406b71811c99-2591d12d {
    grid-column-end: 5;
  }

  #w-node-_59c7dee4-04b0-0990-3bfb-406b71811c9a-2591d12d {
    grid-column: 2 / 4;
  }

  #w-node-_59c7dee4-04b0-0990-3bfb-406b71811ca4-2591d12d {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-db9c4ed8-0ba6-d67b-5e4a-b1451a81509a-2591d12d {
    grid-column: 1 / 4;
  }

  #w-node-db9c4ed8-0ba6-d67b-5e4a-b1451a81509f-2591d12d {
    grid-area: 3 / 1 / 3 / 2;
  }

  #w-node-db9c4ed8-0ba6-d67b-5e4a-b1451a8150a2-2591d12d {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-db9c4ed8-0ba6-d67b-5e4a-b1451a8150a6-2591d12d {
    grid-area: 2 / 3 / 4 / 4;
    justify-self: stretch;
  }

  #w-node-e893e9c1-21fc-aab1-3bf3-9cc1215a5e43-2591d12d {
    grid-column-end: 5;
  }

  #w-node-e893e9c1-21fc-aab1-3bf3-9cc1215a5e44-2591d12d {
    grid-column: 2 / 4;
  }

  #w-node-e893e9c1-21fc-aab1-3bf3-9cc1215a5e47-2591d12d {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_7df155a5-d671-fd50-fbcd-7e23bcf3859c-2591d12d {
    grid-column-end: 5;
  }

  #w-node-_7df155a5-d671-fd50-fbcd-7e23bcf3859d-2591d12d {
    grid-column: 2 / 4;
  }

  #w-node-_7df155a5-d671-fd50-fbcd-7e23bcf385a0-2591d12d {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_5e2390bd-05bf-3e4e-1b16-778677ca403d-2591d12d {
    grid-column-end: 5;
  }

  #w-node-_5e2390bd-05bf-3e4e-1b16-778677ca403e-2591d12d {
    grid-column: 2 / 4;
  }

  #w-node-_5e2390bd-05bf-3e4e-1b16-778677ca4041-2591d12d {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_50b4f6eb-817f-0cca-32c1-4b21505027b2-2591d12d {
    grid-column-end: 5;
  }

  #w-node-_50b4f6eb-817f-0cca-32c1-4b21505027b3-2591d12d {
    grid-column: 2 / 4;
  }

  #w-node-_50b4f6eb-817f-0cca-32c1-4b21505027b6-2591d12d {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_50b4f6eb-817f-0cca-32c1-4b21505027bc-2591d12d {
    grid-row: 4 / 5;
    grid-column-end: 5;
  }

  #w-node-_7c8fe64c-8cd1-c091-03b3-46c19ea7e339-2591d12d {
    grid-column-end: 5;
  }

  #w-node-_7c8fe64c-8cd1-c091-03b3-46c19ea7e33a-2591d12d {
    grid-column: 2 / 4;
  }

  #w-node-_7c8fe64c-8cd1-c091-03b3-46c19ea7e344-2591d12d {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_764bc5be-e230-bef9-f7f8-48bda6592fdb-2591d12d {
    grid-column-end: 5;
  }

  #w-node-_764bc5be-e230-bef9-f7f8-48bda6592fdc-2591d12d {
    grid-column: 2 / 4;
  }

  #w-node-_764bc5be-e230-bef9-f7f8-48bda6592fe6-2591d12d {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_6607dc2d-7e8e-3f28-e9a4-cbb44b85fc77-2591d12d {
    grid-row: 4 / 5;
    grid-column-end: 5;
  }

  #w-node-_3e656220-b4bd-7031-0516-1f26fb66b2bd-c53d4a2b {
    grid-column: 2 / 3;
  }

  #w-node-_18fc2373-753c-26d0-04a4-72e613af0cb6-c53d4a2b {
    grid-area: 4 / 2 / 5 / 3;
    justify-self: end;
  }

  #w-node-_4c08d860-5d54-eb76-3950-40391c132388-c53d4a2b {
    grid-column: 1 / 4;
  }

  #w-node-_34b50b20-266a-cd26-ffa7-d5b649ff37fd-c53d4a2b {
    grid-area: 3 / 1 / 3 / 2;
  }

  #w-node-_34b50b20-266a-cd26-ffa7-d5b649ff3800-c53d4a2b {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_8d2121d8-e138-7783-2b12-2f66c518fde2-c53d4a2b {
    grid-area: 2 / 3 / 4 / 4;
    justify-self: stretch;
  }

  #w-node-_96a6c972-8f30-c3d8-f447-73133a7503ea-c53d4a2b {
    grid-area: 1 / 2 / 2 / 4;
  }

  #w-node-_96a6c972-8f30-c3d8-f447-73133a7503ee-c53d4a2b {
    grid-column: 1 / 5;
    align-self: stretch;
  }

  #w-node-fbbdb917-373d-f5e0-0418-d109568c7200-c53d4a2b {
    grid-area: 1 / 2 / 2 / 4;
  }

  #w-node-fbbdb917-373d-f5e0-0418-d109568c7202-c53d4a2b {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-fbbdb917-373d-f5e0-0418-d109568c7205-c53d4a2b {
    grid-column: 1 / 5;
    align-self: stretch;
  }

  #w-node-_0b96fe72-c4c1-c6e1-c72d-7870cebc3f16-ceb12742, #w-node-_02ca898f-85f1-83a6-7491-42e7f3ff5591-ceb12742, #w-node-dc42ed4d-dae0-724a-e549-802b56e7ab69-ceb12742, #w-node-a7064845-a1fa-c545-8669-d14386422b50-ceb12742, #w-node-d751efc3-c8d0-96bb-30a2-6801fb88e225-ceb12742, #w-node-_3bb19546-d65b-9aac-6c7e-fe2514f846cd-ceb12742 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a6029938-55e2-97ed-9160-c21bc598dbc8-3a342e3d {
    grid-column: 1 / 3;
  }

  #w-node-a6029938-55e2-97ed-9160-c21bc598dbf3-3a342e3d {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-a6029938-55e2-97ed-9160-c21bc598dbfc-3a342e3d {
    grid-column: 1 / 4;
  }

  #w-node-a6029938-55e2-97ed-9160-c21bc598dc05-3a342e3d {
    grid-area: 3 / 1 / 3 / 2;
  }

  #w-node-a6029938-55e2-97ed-9160-c21bc598dc08-3a342e3d {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d8ec-7418d8a4 {
    grid-column: 1 / 3;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d94c-7418d8a4 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d955-7418d8a4 {
    grid-column: 1 / 4;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d957-7418d8a4 {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d961-7418d8a4 {
    grid-area: 3 / 1 / 3 / 2;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d964-7418d8a4 {
    grid-area: 2 / 3 / 4 / 4;
    justify-self: stretch;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d967-7418d8a4 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-ed72f549-6f1e-1eaa-95b6-12fe74297997-6508351f {
    grid-column: 1 / 3;
  }

  #w-node-ed72f549-6f1e-1eaa-95b6-12fe742979ab-6508351f {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-ed72f549-6f1e-1eaa-95b6-12fe742979b4-6508351f {
    grid-column: 1 / 4;
  }

  #w-node-_75f5f5fc-01c8-4fbf-214c-c79129234b76-6508351f {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-_9466ac39-61d0-0fd3-43d9-12af12202c8e-6508351f {
    grid-column: 1 / 3;
  }

  #w-node-_9466ac39-61d0-0fd3-43d9-12af12202cf9-6508351f {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_9466ac39-61d0-0fd3-43d9-12af12202d02-6508351f {
    grid-column: 1 / 4;
  }

  #w-node-_9466ac39-61d0-0fd3-43d9-12af12202d04-6508351f {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-deaa47ee-57c4-2100-8f6d-061d3e37955a-6508351f {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-deaa47ee-57c4-2100-8f6d-061d3e379565-6508351f {
    grid-area: 3 / 1 / 3 / 2;
  }

  #w-node-deaa47ee-57c4-2100-8f6d-061d3e379568-6508351f {
    grid-area: 2 / 3 / 4 / 4;
    justify-self: stretch;
  }

  #w-node-deaa47ee-57c4-2100-8f6d-061d3e37956b-6508351f {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9dcc-b14c37cc {
    grid-column: 1 / 3;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9de0-b14c37cc {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9de9-b14c37cc {
    grid-column: 1 / 4;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9df2-b14c37cc {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9dfd-b14c37cc {
    grid-area: 3 / 1 / 3 / 2;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9e00-b14c37cc {
    grid-area: 2 / 3 / 4 / 4;
    justify-self: stretch;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9e03-b14c37cc {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f481-d9f734f1 {
    grid-column-end: 5;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f482-d9f734f1 {
    grid-column: 2 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f48c-d9f734f1 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f494-d9f734f1 {
    grid-column: 2 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f49e-d9f734f1 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f4a8-d9f734f1 {
    grid-column-end: 5;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f4ab-d9f734f1 {
    grid-column: 2 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f4b5-d9f734f1 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f4bb-d9f734f1 {
    grid-column-end: 5;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f4be-d9f734f1 {
    grid-column: 2 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f4c8-d9f734f1 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f4ce-d9f734f1 {
    grid-column-end: 5;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f4d1-d9f734f1 {
    grid-column: 2 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f4db-d9f734f1 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f4e1-d9f734f1 {
    grid-column-end: 5;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f4e4-d9f734f1 {
    grid-column: 2 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f4ee-d9f734f1 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f4f8-d9f734f1 {
    grid-column-end: 5;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f4fb-d9f734f1 {
    grid-column: 2 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f505-d9f734f1 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f50e-d9f734f1 {
    grid-column-end: 5;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f511-d9f734f1 {
    grid-column: 2 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f51b-d9f734f1 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f521-d9f734f1 {
    grid-column-end: 5;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f524-d9f734f1 {
    grid-column: 2 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f52e-d9f734f1 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f534-d9f734f1 {
    grid-column-end: 5;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f537-d9f734f1 {
    grid-column: 2 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f541-d9f734f1 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f547-d9f734f1 {
    grid-column-end: 5;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f54a-d9f734f1 {
    grid-column: 2 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f554-d9f734f1 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f55a-d9f734f1 {
    grid-column-end: 5;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f55d-d9f734f1 {
    grid-column: 2 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f567-d9f734f1 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f56d-d9f734f1 {
    grid-column-end: 5;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f570-d9f734f1 {
    grid-column: 2 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f57a-d9f734f1 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f580-d9f734f1 {
    grid-column-end: 5;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f583-d9f734f1 {
    grid-column: 2 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f58d-d9f734f1 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f599-d9f734f1 {
    grid-column-end: 5;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f59c-d9f734f1 {
    grid-column: 2 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f5a6-d9f734f1 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f5ac-d9f734f1 {
    grid-column-end: 5;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f5b8-d9f734f1 {
    grid-column: 2 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f5c2-d9f734f1 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f5c8-d9f734f1 {
    grid-column-end: 5;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f5cb-d9f734f1 {
    grid-column: 2 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f5d5-d9f734f1 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f5db-d9f734f1 {
    grid-column-end: 5;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e637-53b9a1dd {
    grid-column: 1 / 3;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e66b-53b9a1dd {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e66d-53b9a1dd {
    grid-column: 1 / 4;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e681-53b9a1dd {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e6a4-53b9a1dd {
    grid-area: 3 / 1 / 3 / 2;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e6a7-53b9a1dd {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e6ab-53b9a1dd {
    grid-area: 2 / 3 / 4 / 4;
    justify-self: stretch;
  }

  #w-node-_577579db-2727-6d21-a883-f2314e7bb6eb-6c4c4e08 {
    grid-column: 1 / 3;
  }

  #w-node-_577579db-2727-6d21-a883-f2314e7bb707-6c4c4e08 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_577579db-2727-6d21-a883-f2314e7bb710-6c4c4e08 {
    grid-column: 1 / 4;
  }

  #w-node-_577579db-2727-6d21-a883-f2314e7bb719-6c4c4e08 {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-_577579db-2727-6d21-a883-f2314e7bb726-6c4c4e08 {
    grid-area: 3 / 1 / 3 / 2;
  }

  #w-node-_577579db-2727-6d21-a883-f2314e7bb729-6c4c4e08 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_1d6d6f00-b399-05be-2b76-37177ee4f6a0-d94fefb9 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_1d6d6f00-b399-05be-2b76-37177ee4f6a1-d94fefb9 {
    grid-row-end: 4;
  }

  #w-node-_1d6d6f00-b399-05be-2b76-37177ee4f6a2-d94fefb9 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_1d6d6f00-b399-05be-2b76-37177ee4f6a4-d94fefb9 {
    grid-row: 5 / 6;
  }

  #w-node-_1d6d6f00-b399-05be-2b76-37177ee4f6a5-d94fefb9 {
    grid-area: 6 / 1 / 7 / 2;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec99ff9-066c5126 {
    grid-column-end: 5;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec99ffa-066c5126 {
    grid-column: 2 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a002-066c5126 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a00a-066c5126 {
    grid-column-end: 5;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a00b-066c5126 {
    grid-column: 2 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a013-066c5126 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a01b-066c5126 {
    grid-column-end: 5;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a01c-066c5126 {
    grid-column: 2 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a024-066c5126 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a032-066c5126 {
    grid-column-end: 5;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a033-066c5126 {
    grid-column: 2 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a03b-066c5126 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a043-066c5126 {
    grid-column-end: 5;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a044-066c5126 {
    grid-column: 2 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a04c-066c5126 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a054-066c5126 {
    grid-column-end: 5;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a055-066c5126 {
    grid-column: 2 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a05d-066c5126 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a065-066c5126 {
    grid-column-end: 5;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a066-066c5126 {
    grid-column: 2 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a06e-066c5126 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a076-066c5126 {
    grid-column-end: 5;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a077-066c5126 {
    grid-column: 2 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a07f-066c5126 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a087-066c5126 {
    grid-column-end: 5;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a088-066c5126 {
    grid-column: 2 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a090-066c5126 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a098-066c5126 {
    grid-column-end: 5;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a099-066c5126 {
    grid-column: 2 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0a1-066c5126 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0a9-066c5126 {
    grid-column-end: 5;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0aa-066c5126 {
    grid-column: 2 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0b2-066c5126 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0ba-066c5126 {
    grid-column-end: 5;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0bb-066c5126 {
    grid-column: 2 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0c3-066c5126 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0cb-066c5126 {
    grid-column-end: 5;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0cc-066c5126 {
    grid-column: 2 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0d4-066c5126 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0dc-066c5126 {
    grid-column-end: 5;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0dd-066c5126 {
    grid-column: 2 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0e5-066c5126 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0ed-066c5126 {
    grid-column-end: 5;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0ee-066c5126 {
    grid-column: 2 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0f6-066c5126 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0fe-066c5126 {
    grid-column-end: 5;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0ff-066c5126 {
    grid-column: 2 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a107-066c5126 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a10f-066c5126 {
    grid-column-end: 5;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a110-066c5126 {
    grid-column: 2 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a118-066c5126 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-ccde5beb-28e3-dc7e-503e-f9459f787ceb-066c5126 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a121-066c5126 {
    grid-column: 2 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a129-066c5126 {
    grid-area: 3 / 2 / 4 / 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a120-066c5126 {
    grid-column-end: 5;
  }

  #w-node-e363946d-43e3-75e1-d01d-410058998415-f7601d70 {
    grid-column: 1 / 3;
  }

  #w-node-e363946d-43e3-75e1-d01d-410058998442-f7601d70 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-e363946d-43e3-75e1-d01d-41005899844b-f7601d70 {
    grid-column: 1 / 4;
  }

  #w-node-e363946d-43e3-75e1-d01d-410058998454-f7601d70 {
    grid-area: 3 / 1 / 3 / 2;
  }

  #w-node-e363946d-43e3-75e1-d01d-410058998457-f7601d70 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf42f-4b81e749 {
    grid-column: 1 / 3;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf47c-4b81e749 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf485-4b81e749 {
    grid-column: 1 / 4;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf496-4b81e749 {
    grid-area: 3 / 1 / 3 / 2;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf499-4b81e749 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf49d-4b81e749 {
    grid-area: 2 / 3 / 4 / 4;
    justify-self: stretch;
  }

  #w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abeef3-624721ef {
    grid-column: 1 / 3;
  }

  #w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abef01-624721ef {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_5f041eff-611d-b7f0-f8b8-a820e9d71e0a-624721ef {
    grid-column: 1 / 4;
  }

  #w-node-_6a5ddfc6-3c68-b009-fe00-8bdb78ebc748-624721ef {
    grid-column: 2 / 3;
  }

  #w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abef0e-624721ef {
    grid-area: 3 / 1 / 3 / 2;
  }

  #w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abef11-624721ef {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abef15-624721ef {
    grid-area: 2 / 3 / 4 / 4;
    justify-self: stretch;
  }

  #w-node-f079764b-cc94-cc82-6f10-58564fb3cdbb-624721ef {
    grid-row-end: 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61add6-f721828c {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61adff-f721828c {
    grid-column: 1 / 4;
    grid-row-end: 3;
  }

  #Intro.w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae02-f721828c {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae15-f721828c {
    grid-row: 1 / 2;
    grid-column-end: 2;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae21-f721828c {
    grid-row: 2 / 3;
    grid-column-end: 2;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae2c-f721828c {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae3e-f721828c {
    grid-row: 4 / 5;
    grid-column-end: 2;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae49-f721828c {
    grid-row: 5 / 6;
    grid-column-end: 2;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae66-f721828c {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae6b-f721828c {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae71-f721828c {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae76-f721828c {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae7b-f721828c {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-e9b14c4e-8e86-8c7f-6ca2-94d34f61ae82-f721828c {
    grid-column-end: 4;
  }

  #w-node-db2a9184-5d73-adc1-e79b-15126ceecb13-f721828c {
    grid-column: 1 / 4;
    grid-row-start: 1;
  }

  #w-node-db2a9184-5d73-adc1-e79b-15126ceecb16-f721828c {
    grid-column-start: 2;
  }

  #w-node-_8b51643d-6ec9-8071-fed4-a798ff86a25e-f721828c {
    grid-column-end: 5;
  }

  #w-node-_8b51643d-6ec9-8071-fed4-a798ff86a261-f721828c {
    grid-column-start: 2;
  }

  #w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a3d-f721828c, #w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a46-f721828c {
    grid-column: 1 / 4;
  }

  #w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a47-f721828c {
    grid-column-end: 3;
    justify-self: stretch;
  }

  #w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a58-f721828c {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a5a-f721828c {
    grid-row-end: 10;
  }

  #w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a5b-f721828c {
    grid-column: 3 / 4;
  }

  #w-node-c1325d91-081a-8adf-4212-66c44297f6b3-4297f69b, #w-node-c1325d91-081a-8adf-4212-66c44297f6ba-4297f69b {
    justify-self: start;
  }

  #w-node-c1325d91-081a-8adf-4212-66c44297f6c1-4297f69b {
    grid-area: 6 / 1 / 7 / 2;
  }

  #w-node-_497cfc8a-c6a5-5522-04c7-6834458ed8e6-458ed8e6 {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-_36fb20a4-90b9-b147-8a58-1e5b907631ce-4312233b {
    grid-row-end: 4;
  }

  #w-node-_36fb20a4-90b9-b147-8a58-1e5b907631d7-4312233b {
    grid-area: 4 / 1 / 5 / 2;
    justify-self: start;
  }

  #w-node-_36fb20a4-90b9-b147-8a58-1e5b907631de-4312233b {
    grid-area: 5 / 1 / 6 / 2;
    justify-self: start;
  }

  #w-node-_9dae890c-ab80-3572-e85d-7e58eeb52aff-45218294 {
    grid-column-end: 4;
  }

  #w-node-_9dae890c-ab80-3572-e85d-7e58eeb52b01-45218294 {
    grid-column: 1 / 4;
  }

  #w-node-_9dae890c-ab80-3572-e85d-7e58eeb52b0f-45218294 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_9dae890c-ab80-3572-e85d-7e58eeb52b12-45218294 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_9dae890c-ab80-3572-e85d-7e58eeb52b16-45218294 {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-_83acbe8d-ecf3-c1cd-6892-be70c1909636-68218295 {
    grid-column-end: 4;
  }

  #w-node-_83acbe8d-ecf3-c1cd-6892-be70c1909638-68218295 {
    grid-column: 1 / 4;
  }

  #w-node-_83acbe8d-ecf3-c1cd-6892-be70c1909646-68218295 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_83acbe8d-ecf3-c1cd-6892-be70c1909649-68218295 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_83acbe8d-ecf3-c1cd-6892-be70c190964d-68218295 {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-_2d50c3d3-d412-26a3-d37f-06058133bbbd-3b218296 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_666aa93b-5060-59f6-6980-ee0af729b3ae-3b218296 {
    grid-area: 4 / 2 / 5 / 3;
  }

  #Intro.w-node-_6f7ca629-9ba7-f202-4435-d3cedc76adec-3b218296 {
    grid-area: 5 / 2 / 6 / 3;
  }

  #w-node-_16899461-7010-02ee-1eab-30e36b89de5f-3b218296 {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-_4d97ab31-96dd-4987-3d5d-7153a67c23d7-3b218296 {
    grid-column-end: 2;
  }

  #w-node-_54edf6c2-7feb-2bd4-2dc7-c04f5c4a6e0f-3b218296 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-eae759c9-f593-fe81-a45e-1e916fbbdb0c-3b218296 {
    grid-row: 4 / 5;
    grid-column-end: 2;
  }

  #w-node-_7e315f2a-72f4-697a-eab1-4858f2674205-3b218296 {
    grid-row: 3 / 4;
    grid-column-end: 2;
  }

  #w-node-dbd09f31-c039-4812-62f2-4b097072fdc5-3b218296 {
    grid-row: 5 / 6;
    grid-column-end: 2;
  }

  #w-node-_714cba40-fcf3-b93f-c36d-960c5d8a88a2-3b218296 {
    grid-row: 6 / 7;
    grid-column-end: 2;
  }

  #w-node-f35fd280-00f5-d392-a617-fa03177f14b1-3b218296 {
    grid-area: 7 / 1 / 8 / 2;
  }

  #w-node-_1aaa86d9-5d94-eeb1-5240-fe06d58eb394-3b218296 {
    grid-row: 1 / 2;
  }

  #w-node-_1aaa86d9-5d94-eeb1-5240-fe06d58eb399-3b218296 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_1aaa86d9-5d94-eeb1-5240-fe06d58eb39e-3b218296 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_1aaa86d9-5d94-eeb1-5240-fe06d58eb3a3-3b218296 {
    grid-row: 3 / 4;
  }

  #w-node-_5e14ad3d-eb83-bf9d-82e2-e683bc5d2427-3b218296 {
    grid-column-end: 4;
  }

  #w-node-_3a70b080-a1af-0ede-f8c2-bb302313d191-3b218296 {
    grid-area: 2 / 1 / 3 / 4;
    align-self: stretch;
  }

  #w-node-_1074a0bb-0b92-ee13-ce63-3cb35f5e16ef-3b218296, #w-node-_41f4896c-d51a-70a0-b7ab-4385a4e8c0a3-3b218296 {
    grid-column: 1 / 4;
  }

  #w-node-ad8489f0-3953-1311-fe88-19b32c2efafb-3b218296 {
    grid-column-end: 3;
    justify-self: stretch;
  }

  #Kontakt.w-node-_154e4523-985e-734d-9f54-9ad285a21a53-3b218296 {
    grid-column: 2 / 3;
  }

  #w-node-a55a75b1-ef06-39a7-057f-7b1ed89ebbd4-3b218296 {
    grid-column: 3 / 4;
  }

  #w-node-e017b033-f654-cdfb-769d-e671ed1b0383-3b218296 {
    grid-area: 2 / 1 / 3 / 4;
    align-self: stretch;
  }

  #w-node-d9825df5-5492-7fec-6a96-c345aaa7e2a9-5121829e {
    grid-column-end: 4;
  }

  #w-node-_4b150306-6b46-8725-80d6-3612f14111cb-5121829e {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-b9241a8a-818e-b63e-d27b-214a42a8acd8-5121829e {
    grid-row: 3 / 4;
  }

  #w-node-_78c53a68-de33-5391-359e-173a37833039-5121829e {
    grid-column-end: 4;
  }

  #w-node-_78c53a68-de33-5391-359e-173a3783303b-5121829e {
    grid-column: 1 / 4;
  }

  #w-node-_78c53a68-de33-5391-359e-173a37833049-5121829e {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_78c53a68-de33-5391-359e-173a3783304c-5121829e {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_78c53a68-de33-5391-359e-173a37833050-5121829e {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-ad5e75c9-8339-a6d7-20e6-61c598af784c-5121829e {
    grid-column: 1 / 4;
  }

  #w-node-a986e6f8-fc34-854a-244f-aa3bc90ce7d8-7aefb8b7 {
    grid-column: 2 / 5;
  }

  #w-node-_1c97f02a-a629-fbf0-3d11-2d3323c49048-7aefb8b7 {
    grid-column: 1 / 5;
  }

  #w-node-_7de3343f-d05f-add2-0de3-be62a4a10b1c-7aefb8b7 {
    grid-column: 1 / 4;
  }

  #w-node-_7de3343f-d05f-add2-0de3-be62a4a10b29-7aefb8b7 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-b4e93b50-b6f7-596b-5475-4f7f9c37c241-de3aa5ed {
    grid-column: 1 / 4;
  }

  #w-node-_7418e1fb-1e4c-1d51-4b23-2318f31c9b7f-de3aa5ed, #w-node-_1c97f02a-a629-fbf0-3d11-2d3323c49048-de3aa5ed, #w-node-_455d56a5-7f17-5c62-2b98-a1e975ba35dd-de3aa5ed {
    grid-column: 1 / 5;
  }

  #w-node-_455d56a5-7f17-5c62-2b98-a1e975ba35de-de3aa5ed {
    grid-area: 2 / 1 / 3 / 4;
    align-self: stretch;
  }

  #w-node-_455d56a5-7f17-5c62-2b98-a1e975ba3671-de3aa5ed, #w-node-_455d56a5-7f17-5c62-2b98-a1e975ba3678-de3aa5ed {
    justify-self: start;
  }

  #w-node-_455d56a5-7f17-5c62-2b98-a1e975ba367f-de3aa5ed {
    grid-area: 6 / 1 / 7 / 2;
  }

  #w-node-_0d16f781-2f45-47f4-8c70-343ae7813198-2591d12d, #w-node-_10b68778-af09-75aa-83a8-199a38e8dc22-2591d12d, #w-node-_59c7dee4-04b0-0990-3bfb-406b71811c9a-2591d12d {
    grid-column: 2 / 4;
  }

  #w-node-db9c4ed8-0ba6-d67b-5e4a-b1451a81509f-2591d12d {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-db9c4ed8-0ba6-d67b-5e4a-b1451a8150a2-2591d12d {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-db9c4ed8-0ba6-d67b-5e4a-b1451a8150a6-2591d12d {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-e893e9c1-21fc-aab1-3bf3-9cc1215a5e44-2591d12d, #w-node-_7df155a5-d671-fd50-fbcd-7e23bcf3859d-2591d12d, #w-node-_5e2390bd-05bf-3e4e-1b16-778677ca403e-2591d12d, #w-node-_50b4f6eb-817f-0cca-32c1-4b21505027b3-2591d12d, #w-node-_7c8fe64c-8cd1-c091-03b3-46c19ea7e33a-2591d12d, #w-node-_764bc5be-e230-bef9-f7f8-48bda6592fdc-2591d12d {
    grid-column: 2 / 4;
  }

  #w-node-_5ef80cb1-0f43-e24c-4107-f10313a3238a-c53d4a2b {
    grid-column-end: 4;
  }

  #w-node-e03c7460-39f6-d95a-0f56-b36b4c0a2b57-c53d4a2b {
    grid-column: 1 / 4;
  }

  #w-node-_34b50b20-266a-cd26-ffa7-d5b649ff37fd-c53d4a2b {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_34b50b20-266a-cd26-ffa7-d5b649ff3800-c53d4a2b {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_8d2121d8-e138-7783-2b12-2f66c518fde2-c53d4a2b {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-_96a6c972-8f30-c3d8-f447-73133a7503ea-c53d4a2b {
    grid-column: 1 / 4;
  }

  #w-node-_96a6c972-8f30-c3d8-f447-73133a7503ee-c53d4a2b {
    grid-area: 2 / 1 / 3 / 4;
    align-self: stretch;
  }

  #w-node-_96a6c972-8f30-c3d8-f447-73133a750485-c53d4a2b {
    grid-column-end: 4;
  }

  #w-node-fbbdb917-373d-f5e0-0418-d109568c7200-c53d4a2b {
    grid-column: 1 / 4;
  }

  #w-node-fbbdb917-373d-f5e0-0418-d109568c7205-c53d4a2b {
    grid-area: 2 / 1 / 3 / 4;
    align-self: stretch;
  }

  #w-node-fbbdb917-373d-f5e0-0418-d109568c722e-c53d4a2b {
    grid-column-end: 4;
  }

  #w-node-a6029938-55e2-97ed-9160-c21bc598dbfe-3a342e3d {
    grid-column: 1 / 4;
  }

  #w-node-a6029938-55e2-97ed-9160-c21bc598dc05-3a342e3d {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-a6029938-55e2-97ed-9160-c21bc598dc08-3a342e3d {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d957-7418d8a4 {
    grid-column: 1 / 4;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d961-7418d8a4 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d964-7418d8a4 {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-d8059d9d-6cb5-3bd2-ef0a-50087dc1d967-7418d8a4 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_75f5f5fc-01c8-4fbf-214c-c79129234b76-6508351f, #w-node-_9466ac39-61d0-0fd3-43d9-12af12202d04-6508351f {
    grid-column: 1 / 4;
  }

  #w-node-deaa47ee-57c4-2100-8f6d-061d3e379565-6508351f {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-deaa47ee-57c4-2100-8f6d-061d3e379568-6508351f {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-deaa47ee-57c4-2100-8f6d-061d3e37956b-6508351f {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9deb-b14c37cc {
    grid-column: 1 / 4;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9dfd-b14c37cc {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9e00-b14c37cc {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-_627e2084-e52d-6149-5c40-e7df6dba9e03-b14c37cc {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f482-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f494-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f4ab-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f4be-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f4d1-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f4e4-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f4fb-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f511-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f524-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f537-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f54a-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f55d-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f570-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f583-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f59c-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f5b8-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f5cb-d9f734f1 {
    grid-column: 2 / 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f5e7-d9f734f1 {
    grid-column-end: 4;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f5e9-d9f734f1 {
    grid-column: 1 / 4;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e628-53b9a1dd {
    grid-column-end: 4;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e62a-53b9a1dd {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e632-53b9a1dd {
    grid-row: 3 / 4;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e676-53b9a1dd {
    grid-column-end: 4;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e67a-53b9a1dd {
    grid-column: 1 / 4;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e6a4-53b9a1dd {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e6a7-53b9a1dd {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e6ab-53b9a1dd {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-_577579db-2727-6d21-a883-f2314e7bb726-6c4c4e08 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_577579db-2727-6d21-a883-f2314e7bb729-6c4c4e08 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec99ffa-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a00b-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a01c-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a033-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a044-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a055-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a066-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a077-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a088-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a099-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0aa-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0bb-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0cc-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0dd-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0ee-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0ff-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a110-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a121-066c5126 {
    grid-column: 2 / 4;
  }

  #w-node-e363946d-43e3-75e1-d01d-41005899844d-f7601d70 {
    grid-column-start: 1;
  }

  #w-node-e363946d-43e3-75e1-d01d-410058998454-f7601d70 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-e363946d-43e3-75e1-d01d-410058998457-f7601d70 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf487-4b81e749 {
    grid-column: 1 / 4;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf48e-4b81e749 {
    grid-column-end: 4;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf490-4b81e749 {
    grid-column: 1 / 4;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf496-4b81e749 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf499-4b81e749 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-a13c8b8d-9556-fd65-feaf-fdae369bf49d-4b81e749 {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-_6a5ddfc6-3c68-b009-fe00-8bdb78ebc748-624721ef {
    grid-column: 1 / 4;
  }

  #w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abef0e-624721ef {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abef11-624721ef {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_06fd4c78-0043-a03e-4b6c-ae1a19abef15-624721ef {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-f079764b-cc94-cc82-6f10-58564fb3cdbb-624721ef {
    grid-column: 1 / 4;
  }

  #w-node-_01ab69f0-5d7c-b172-b7f3-35c441237169-624721ef {
    grid-column-end: 4;
  }
}

@media screen and (max-width: 479px) {
  #w-node-c50fb98e-c9d3-feeb-1fe6-bddca17d9a47-f721828c, #w-node-ad8489f0-3953-1311-fe88-19b32c2efafb-3b218296 {
    grid-column: 1 / 4;
  }

  #w-node-_7de3343f-d05f-add2-0de3-be62a4a10b1c-7aefb8b7, #w-node-b4e93b50-b6f7-596b-5475-4f7f9c37c241-de3aa5ed, #w-node-_0d16f781-2f45-47f4-8c70-343ae7813198-2591d12d, #w-node-_10b68778-af09-75aa-83a8-199a38e8dc22-2591d12d, #w-node-_59c7dee4-04b0-0990-3bfb-406b71811c9a-2591d12d {
    grid-column-end: 4;
  }

  #w-node-e893e9c1-21fc-aab1-3bf3-9cc1215a5e44-2591d12d {
    grid-area: 2 / 2 / 3 / 4;
    align-self: center;
  }

  #w-node-_7df155a5-d671-fd50-fbcd-7e23bcf3859d-2591d12d {
    grid-column: 2 / 4;
  }

  #w-node-_5e2390bd-05bf-3e4e-1b16-778677ca403e-2591d12d {
    grid-column-end: 4;
  }

  #w-node-_50b4f6eb-817f-0cca-32c1-4b21505027b3-2591d12d {
    grid-area: 2 / 2 / 3 / 4;
    align-self: center;
  }

  #w-node-_7c8fe64c-8cd1-c091-03b3-46c19ea7e33a-2591d12d, #w-node-_764bc5be-e230-bef9-f7f8-48bda6592fdc-2591d12d {
    grid-column-end: 5;
  }

  #w-node-f98f0047-479d-dca0-5989-83dcd260f482-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f494-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f4ab-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f4be-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f4d1-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f4e4-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f4fb-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f511-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f524-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f537-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f54a-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f55d-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f570-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f583-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f59c-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f5b8-d9f734f1, #w-node-f98f0047-479d-dca0-5989-83dcd260f5cb-d9f734f1 {
    grid-column-end: 4;
  }

  #w-node-a94e6689-1b44-4c02-bce3-677731b3e632-53b9a1dd {
    justify-self: start;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec99ffa-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a00b-066c5126 {
    grid-column-end: 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a01c-066c5126 {
    grid-area: 2 / 2 / 3 / 4;
    align-self: center;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a033-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a044-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a055-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a066-066c5126 {
    grid-column-end: 4;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a077-066c5126 {
    grid-area: 2 / 2 / 3 / 4;
    align-self: center;
  }

  #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a088-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a099-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0aa-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0bb-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0cc-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0dd-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0ee-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a0ff-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a110-066c5126, #w-node-_728af04e-f9d1-b06e-2e82-e56deec9a121-066c5126 {
    grid-column-end: 4;
  }
}


@font-face {
  font-family: 'Linotype helveticaneueltstd bd';
  src: url('../fonts/Linotype---HelveticaNeueLTStd-Bd.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Linotype helveticaneueltstd lt';
  src: url('../fonts/Linotype---HelveticaNeueLTStd-Lt.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Linotype helveticaneueltstd md';
  src: url('../fonts/Linotype---HelveticaNeueLTStd-Md.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Linotype helveticaneueltstd roman';
  src: url('../fonts/Linotype---HelveticaNeueLTStd-Roman.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Linotype helveticaneueltstd hv';
  src: url('../fonts/Linotype---HelveticaNeueLTStd-Hv.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Linotype helveticaneueltstd ultlt';
  src: url('../fonts/Linotype---HelveticaNeueLTStd-UltLt.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}