@font-face {
  font-family: "Plus Jakarta Custom (variable)";
  src: url('../fonts/PlusJakartaSans-VariableFont_wght.ttf') format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Lora Variablefont Wght;
  src: url('../fonts/Lora-VariableFont_wght.ttf') format("truetype"), url('../fonts/Lora-VariableFont_wght.ttf') format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Libre Bodoni Custom;
  src: url('../fonts/LibreBodoni-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Libre Bodoni Custom;
  src: url('../fonts/LibreBodoni-MediumItalic.ttf') format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Libre Bodoni Custom;
  src: url('../fonts/LibreBodoni-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Libre Bodoni Custom;
  src: url('../fonts/LibreBodoni-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Libre Bodoni Custom;
  src: url('../fonts/LibreBodoni-BoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Libre Bodoni Custom;
  src: url('../fonts/LibreBodoni-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Libre Bodoni Custom;
  src: url('../fonts/LibreBodoni-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Libre Bodoni Custom;
  src: url('../fonts/LibreBodoni-SemiBoldItalic.ttf') format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Montserrat Variablefont Wght;
  src: url('../fonts/Montserrat-VariableFont_wght.ttf') format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color--background: var(--light--background);
  --color--text: var(--light--text);
  --off-white: #f6f6f6;
  --primary-color: #ff5c4c;
  --secondary-color: #f8e9dc;
  --ring-color-silber: #e4e4e4;
  --color--button-background: var(--light--button-background);
  --dark--text: var(--off-white);
  --ring-color-gold: #f4cd0033;
  --ring-color-bronze: #f8e9dc;
  --text-color: black;
  --white: white;
  --black: black;
  --beige--text: var(--text-color);
  --beige--background: var(--secondary-color);
  --beige--button-background: var(--primary-color);
  --beige--button-text: var(--off-white);
  --color--button-text: var(--light--button-text);
  --dark--background: var(--text-color);
  --dark--button-background: var(--text-color);
  --dark--button-text: var(--off-white);
  --light--text: var(--text-color);
  --light--background: var(--off-white);
  --light--button-background: var(--text-color);
  --light--button-text: var(--off-white);
}

.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 {
  background-color: var(--color--background);
  color: var(--color--text);
  font-family: Montserrat Variablefont Wght, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 64px;
  font-weight: 500;
  line-height: 125%;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 44px;
  font-weight: 500;
  line-height: 125%;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--color--text);
  text-decoration: underline;
}

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

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

.padding-global.height100 {
  height: 100%;
}

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

.hero-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 100%;
  max-width: 80rem;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.hero-container.is-fullimg {
  z-index: 1;
  max-width: none;
  display: block;
  position: relative;
}

.hero-container.is-app-site {
  display: block;
  position: relative;
  overflow: hidden;
}

.hero-container.is--lifestyle {
  z-index: 1;
  max-width: none;
  height: 80vh;
  display: block;
  position: relative;
}

.hero-left-wrapper {
  align-items: flex-end;
  max-width: 40rem;
  padding-bottom: 8vh;
  padding-left: 0;
  padding-right: 5vw;
}

.hero-right-wrapper {
  z-index: -1;
  object-fit: contain;
  height: 120vh;
  position: relative;
  overflow: visible;
}

.hero-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}

.hero-content-wrapper {
  z-index: 2;
  max-width: 32rem;
  margin-top: 20vh;
  position: relative;
}

.hero-content-wrapper.absolut-wrapper {
  z-index: 1;
  color: var(--off-white);
  max-width: none;
  margin-top: 0;
  padding-top: 18vh;
  position: absolute;
  inset: 0%;
}

.hero-content-wrapper.is--appsite {
  max-width: 30rem;
}

.margin-bottom16 {
  margin-bottom: 16px;
}

.margin-bottom24 {
  margin-bottom: 24px;
}

.btn {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--primary-color);
  color: var(--off-white);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  height: 42px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.btn:hover {
  opacity: .8;
}

.btn.light {
  background-color: var(--secondary-color);
  color: #000;
}

.btn.dark {
  background-color: #000;
  font-size: 18px;
}

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

.btn.is-banner {
  transition-duration: .4s;
}

.btn.is-banner:hover {
  background-color: #f6f6f633;
}

.hero-heading-wrapper-left {
  z-index: 10;
  justify-content: center;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 7%;
  display: flex;
  position: absolute;
  inset: 22vh 0% auto;
}

.hero-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5rem;
  line-height: 1;
}

.hero-heading.accent {
  color: var(--off-white);
  font-family: Fette Bauersche Custom;
}

.padding-section-large {
  height: 100%;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

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

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

.padding-section-large.top-15 {
  padding-top: 15rem;
}

.padding-section-large.top-2 {
  padding-top: 2rem;
}

.padding-section-large.business-hero {
  padding-top: 11rem;
  padding-bottom: 10rem;
}

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

.container-large.smaller {
  max-width: 60rem;
}

.container-large._70rem {
  max-width: 70rem;
}

.container-large._55rem {
  max-width: 55rem;
}

.container-large._60rem {
  max-width: 60rem;
}

.container-large.height100 {
  height: 100%;
}

.container-large.is-realtive {
  position: relative;
}

.container-large.is--hero {
  align-items: flex-start;
  height: 100%;
  display: flex;
  position: relative;
}

.switch-btn-wrapper {
  z-index: 100;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--off-white);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: 8px;
  display: flex;
  box-shadow: 3px 3px 32px #00000014;
}

.logo-flexbox {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.logo-flexbox.centered {
  justify-content: space-around;
}

.featured-logo {
  height: 48px;
}

.featured-logo.smaller {
  height: 40px;
}

.featured-logo.smaller.inverted {
  filter: invert();
}

.featured-logo.bigger {
  height: 56px;
}

.featured-logo.paul {
  height: 36px;
}

.opacity0-6 {
  opacity: .6;
}

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

.font-size12 {
  font-size: 12px;
}

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

.layout408_card {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: #fff;
  border-radius: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  align-items: stretch;
  margin-bottom: 3rem;
  padding: 32px;
  display: flex;
  position: sticky;
  top: 264px;
  overflow: hidden;
}

.layout408_card.card-2 {
  background-color: #ebebeb;
  position: sticky;
  top: 239px;
}

.layout408_card.card-1 {
  background-color: #dcdcdc;
  position: sticky;
  top: 204px;
}

.margin-bottom, .margin-bottom.margin-xsmall, .margin-bottom.margin-small, .margin-bottom.margin-xxsmall, .margin-bottom.margin-tiny {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.layout408_component {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-content: start;
  align-items: start;
  width: 40%;
  margin-left: auto;
  margin-right: auto;
}

.margin-bottom8 {
  margin-bottom: 8px;
}

.sub-heading {
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
}

.margin-bottom64 {
  margin-bottom: 64px;
}

.section-heading-first {
  font-size: 44px;
  font-weight: 500;
  line-height: 100%;
}

.section-heading-first.bigger {
  font-size: 64px;
}

.section-heading-second {
  color: var(--primary-color);
  font-family: Lora Variablefont Wght, sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 125%;
}

.section-heading-second.bigger {
  font-size: 64px;
}

._3d-grid-layout {
  z-index: 1;
  grid-column-gap: 29rem;
  grid-row-gap: 29rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

._3d_content-left {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 10rem 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  position: relative;
}

._3d-section {
  position: relative;
}

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

.max-width-small.smaller {
  z-index: 5;
  max-width: 24rem;
  position: relative;
}

.max-width-small.bigger {
  max-width: 29rem;
}

.layout355_space-reducer {
  margin-bottom: -100vh;
}

.layout355_text-wrapper {
  flex-direction: column;
  justify-content: center;
  height: 150vh;
  display: flex;
}

.layout355_text-wrapper.last {
  justify-content: flex-end;
  height: 100vh;
}

._3d-model-wrapper {
  z-index: -2;
  width: 100%;
  height: 100vh;
  position: sticky;
  bottom: 0;
}

._3d_content-right {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 10rem 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-top: 80vh;
  position: relative;
}

.spline-scene {
  z-index: -2;
  background-color: var(--primary-color);
  width: 100%;
  height: 100%;
}

.cta-top_card {
  z-index: 1;
  border: 1px solid #f6f6f633;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 500px;
  padding: 64px;
  display: flex;
  position: relative;
}

.cta-top_card.bigger {
  height: 600px;
}

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

.cta-top_background-image {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.color-light {
  color: var(--off-white);
}

.transparent-btn {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.transparent-btn:hover {
  transform: scale(.95);
}

.icon {
  width: 32px;
}

.transparent-btn-inner {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.layout219_image {
  width: 100%;
  height: 100%;
  max-height: 100vh;
}

.layout219_tabs-menu {
  padding-top: 0;
}

.layout219_tabs-link {
  opacity: .6;
  cursor: pointer;
  background-color: #0000;
  border-left: 2px solid #0000;
  max-width: 80%;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0 0 0 1.5rem;
  transition: opacity .2s;
  display: block;
}

.layout219_tabs-link:hover {
  opacity: 1;
}

.layout219_tabs-link.w--current {
  border-left-color: var(--primary-color);
  opacity: 1;
  background-color: #0000;
}

.layout219_tabs-link.first {
  border-left-color: var(--primary-color);
  opacity: 1;
}

.layout219_component {
  grid-column-gap: 80px;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.blog-heading-big {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 500;
  line-height: 125%;
}

.section-heading-component {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.section-heading-component.is--shop {
  max-width: 48rem;
}

.tabs-img-wrapper {
  border: 1px solid #0003;
  border-radius: 8px;
  max-height: 100vh;
}

.scroll-fix-box {
  height: 200vh;
  position: relative;
}

.sticky-wrapper {
  height: 100vh;
  position: sticky;
  top: 5rem;
}

.full-img-section {
  background-color: #0000000d;
  height: 100vh;
  position: relative;
}

.full-img-section.mobil-smaller, .full-img-section.hero-cta {
  overflow: hidden;
}

.full-img {
  object-fit: contain;
  object-position: 50% 100%;
  width: 100%;
  height: 100%;
}

.full-img-section-content-wrapper {
  max-width: 32rem;
  position: absolute;
  inset: 15% auto auto 50%;
  transform: translate(-50%);
}

.margin-bottom32 {
  margin-bottom: 32px;
}

.switch-component {
  padding-left: 5%;
  padding-right: 5%;
  position: absolute;
  inset: auto 0% 40px;
}

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

.color-switch-wrapper {
  background-color: var(--off-white);
  border-radius: 440px;
  padding: 5px;
  display: inline-block;
}

.color-switch {
  width: 24px;
  height: 24px;
}

.color-switch-flexbox {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  display: flex;
  position: relative;
}

.switch-btn-outer-circle {
  cursor: pointer;
  border: 3px solid #0000;
  border-radius: 50%;
  padding: 1px 2px 2px;
}

.switch-btn-outer-circle.rose {
  border-color: #ff5c4c;
}

.switch-btn-outer-circle.silber {
  border-color: #0000;
}

.switch-btn-outer-circle.silber:hover {
  border-color: #ff5c4c;
}

.switch-btn-outer-circle.gold {
  border-color: #0000;
}

.switch-btn-outer-circle.gold:hover {
  border-color: #ff5c4c;
}

.selector-circle {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

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

.text-size-medium.text-weight-bold {
  font-size: 18px;
  font-weight: 500;
}

.faq4_answer {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
}

.faq4_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: start stretch;
  display: grid;
}

.faq4_icon-wrappper {
  align-self: flex-start;
  width: 2rem;
  margin-left: 1.5rem;
  display: flex;
}

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

.container-small.socials {
  max-width: 24rem;
}

.faq4_accordion {
  border-bottom: 1px solid #0003;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.faq4_accordion.white {
  border-bottom-color: #fff3;
}

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

.icon-embed-small:hover {
  transform: scale(.95);
}

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

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

.faq4_question {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.cta-bottom_card {
  z-index: 1;
  background-color: #f6f6f61a;
  border: 2px solid #fff3;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 500px;
  padding: 64px;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cta-bottom_card:hover {
  opacity: .98;
}

.cta-bottom_card.bigger {
  height: 600px;
}

.cta-bottom_card.has-full-bg {
  border-color: #f6f6f633;
}

.cta-bottom_card.is-slider {
  background-color: var(--off-white);
  border-color: #ff5c4c33;
  height: 600px;
}

.cta-bottom_card.is-beige {
  background-color: var(--secondary-color);
}

.cta-bottom_background-image-wrapper {
  z-index: -1;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.cta-bottom_background-image {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.div-block {
  position: relative;
}

.div-block-2 {
  position: sticky;
  top: 2rem;
}

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

.layout424_component {
  flex-direction: column;
  position: relative;
}

.layout424_heading-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  display: flex;
  transform: translate(0, -45%);
}

.layout424_content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.layout424_heading {
  white-space: nowrap;
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
}

.layout424_ix-trigger {
  height: 200vh;
}

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

.text-big {
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
}

.bg-dark {
  background-color: #0000000d;
}

.margin-bottom80 {
  margin-bottom: 80px;
}

.layout216_item-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

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

.layout216_image-wrapper {
  height: 100%;
}

.layout216_image {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 100%;
}

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

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

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

.margin-bottom40 {
  margin-bottom: 40px;
}

.margin-top44 {
  margin-top: 44px;
}

.theme-switch {
  z-index: 100;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: auto 0% 16px;
}

.btn-outer {
  text-decoration: none;
  display: inline-block;
}

.btn-outer.show-mobile {
  display: none;
}

.cta-half-img-card {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--off-white);
  border: 1.5px solid #ff5c4c33;
  border-radius: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: start center;
  align-items: start;
  height: 600px;
  display: flex;
  position: relative;
}

.cta-img-wrapper {
  width: 50%;
  height: 100%;
}

.cta-img-left {
  object-fit: cover;
  object-position: 50% 10%;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  width: 100%;
  height: 100%;
}

.cta-content-wrapper {
  color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: 100%;
  padding: 64px 74px;
  display: flex;
}

.cta-img-right {
  object-fit: cover;
  object-position: 50% 50%;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 100%;
  height: 100%;
}

.merch-flex-box {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  height: 100%;
  max-height: 900px;
  display: flex;
}

.merch-img-wrapper-left {
  width: 50%;
}

.merch-wrapper-right {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  width: 50%;
  display: flex;
}

.merch-img-wrapper-right {
  height: 60%;
}

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

.img-cover.border-16 {
  border: 1px solid #ff5c4c33;
  border-radius: 16px;
}

.merch-content-wrapper {
  color: var(--color--text);
  background-color: #ffffff1a;
  border: 1px solid #fff3;
  border-radius: 16px;
  height: 40%;
  padding: 32px;
}

.hero-small {
  height: 80vh;
  position: relative;
}

.hero-img-small {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
}

.hero-heading-wrapper-absolut {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  z-index: 0;
  background-color: #0009;
  position: absolute;
  inset: 0%;
}

.story-flex-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.max-60 {
  max-width: 60%;
}

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

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

.icon-wrapper {
  border: 1px solid #ff5c4c33;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: .5rem;
  display: flex;
  overflow: hidden;
  box-shadow: 6px 6px 16px #0000000a;
}

.werte-item-heading {
  font-family: Lora Variablefont Wght, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 125%;
}

.gallery21_image {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.gallery21_component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-items: start;
}

.gallery21_image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery21_arrow-icon {
  color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.gallery21_arrow {
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: none;
  inset: auto 0% 0% auto;
}

.gallery21_slide-nav {
  height: 1.75rem;
  font-size: .5rem;
  display: none;
  inset: auto auto 0% 0%;
}

.gallery21_slider {
  background-color: #0000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
}

.gallery21_slide {
  flex: none;
  width: 70vh;
  height: 100%;
  padding-right: 40px;
}

.gallery21_slide.is--off {
  display: none;
}

.gallery21_slide.new {
  padding-right: 0;
}

.img-slider-section {
  height: 100vh;
  min-height: 50rem;
  padding-top: 7rem;
  display: none;
  overflow: hidden;
}

.gallery21_mask {
  width: 70vh;
  height: 70vh;
  overflow: visible;
}

.slider-content-wrapper {
  z-index: 2;
  background-image: linear-gradient(#0000 16%, #0009);
  align-items: flex-end;
  padding: 44px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.slider-content-container {
  width: 100%;
  max-width: 550px;
}

.slider-item-heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
}

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

.cta3_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.button-2 {
  text-align: center;
  padding: .75rem 1.5rem;
}

.button-2.is-add-to-cart-button {
  background-color: var(--primary-color);
  color: var(--off-white);
  width: 100%;
  margin-top: .5rem;
  margin-bottom: 1rem;
}

.cta3_background-image {
  object-fit: cover;
  object-position: 50% 20%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.cta3_background-image.app-detail-site {
  object-position: 50% 40%;
}

.section_cta3 {
  background-image: url('../images/SAYA-images_47.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.cta-flex-centered-wrapper {
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 500px;
  display: flex;
}

.cta-flex-centered-wrapper.smaller {
  height: 350px;
}

.zitat {
  font-family: Lora Variablefont Wght, sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 140%;
}

.zitat-quoter {
  font-size: 20px;
  font-weight: 400;
}

.width50 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.jobs-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.job-item {
  background-color: #0000000d;
  border: 1px solid #0000000d;
  border-radius: 8px;
  padding: 32px;
  transition: background-color .2s;
}

.job-item:hover {
  background-color: #0000001a;
}

.job-item-topbar {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.jobs-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 125%;
}

.smaller-text {
  width: 60%;
}

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

.article-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  display: flex;
}

.article-item {
  border-bottom: 1px solid #0003;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  display: flex;
}

.article-topbar {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.margin-bottom4 {
  margin-bottom: 4px;
}

.article-title {
  font-size: 18px;
  font-weight: 500;
}

.max-width30rem {
  max-width: 30rem;
}

.download-btn-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

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

.app-details-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  height: 400vh;
  max-height: 240rem;
  display: block;
  position: relative;
}

.app-details-block {
  border-radius: 16px;
  width: 70rem;
  min-height: 100vh;
  max-height: 60rem;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.details-img-wrapper {
  width: 45%;
}

.app-details-img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.details-content-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 55%;
  padding: 46px 64px;
  display: flex;
}

.details-content-inner {
  opacity: 0;
}

.details-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 125%;
}

.details-section {
  background-color: #00000005;
}

.product-header7_arrow-icon-copy {
  color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.header102_slide-image-wrapper {
  flex: 1;
  position: relative;
}

.header102_slide-nav {
  height: 1.75rem;
  font-size: .5rem;
  display: none;
  inset: auto auto 2.625rem 2rem;
}

.header102_arrow {
  background-color: #f6f6f699;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
  inset: auto 32px 2rem auto;
}

.header102_arrow.is-left {
  left: 32px;
  right: auto;
}

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

.header102_slide-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.header102_slide-wrapper {
  flex-direction: column;
  grid-template-rows: auto max-content;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: flex;
}

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

.layout298_item {
  text-align: center;
  background-color: #f8e9dc66;
  border: 1px solid #ff5c4c33;
  border-radius: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 32px;
  display: flex;
}

.blog-heading-small {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
}

.stats-list {
  grid-column-gap: 64px;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch center;
  display: grid;
}

.business-hero {
  height: 45vh;
  position: relative;
}

.header50_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.header50_background-image {
  object-fit: cover;
  object-position: 50% 45%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.stats-heading {
  color: var(--primary-color);
  font-family: Lora Variablefont Wght, sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 100%;
}

.margin-top64 {
  margin-top: 64px;
}

.big-text {
  max-width: 55rem;
  font-size: 53px;
  line-height: 140%;
  transition: all .3s;
}

.big-text.complete {
  opacity: 1;
}

.layout351_column-vertical-text {
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  font-weight: 500;
  transform: rotate(180deg);
}

.layout351_component {
  z-index: 0;
  background-color: var(--off-white);
  border: 1px solid #ff5c4c33;
  border-radius: 16px;
  width: 100%;
  height: 75vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.layout351_accordion {
  background-color: var(--off-white);
  flex-direction: row;
  justify-content: flex-start;
  width: 5rem;
  min-width: 5rem;
  height: 75vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.layout351_accordion.active {
  background-color: #0000;
  width: 100%;
}

.layout351_column-text {
  white-space: nowrap;
  font-family: Lora Variablefont Wght, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.layout351_column-content {
  min-width: 200vw;
  height: 100%;
  overflow: auto;
}

.layout351_content-wrapper {
  flex-direction: column;
  flex: none;
  width: 40rem;
  height: 100%;
  padding: 4rem 3rem;
  display: flex;
}

.layout351_column {
  color: var(--primary-color);
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 5rem;
  min-width: 5rem;
  height: 75vh;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  position: relative;
}

.layout351_column-horiztonal-text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  display: none;
}

.image-2 {
  z-index: -1;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.overlay {
  background-color: #0009;
  position: absolute;
  inset: 0%;
}

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

.show-content-bottom {
  align-items: flex-end;
  height: 100%;
  display: flex;
}

.tab-link {
  background-color: #0000;
  padding: 8px 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
}

.tab-link.w--current {
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color);
  background-color: #0000;
}

.tabs-menu {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.product-header1_component {
  padding-bottom: 3rem;
}

.product-header1_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.product-header1_option {
  margin-bottom: 24px;
}

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

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

.variant-button {
  color: #0000;
  border: 2px solid #0000;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  padding: 0;
  display: inline-block;
}

.variant-button:hover {
  border-color: var(--primary-color);
}

.variant-button.is-active {
  border-color: var(--primary-color);
  color: #0000;
  background-color: #0000;
}

.variant-button.pink {
  background-color: #efbaa2;
}

.variant-button.yellow {
  background-color: #f4cd00;
}

.variant-button.silber {
  background-color: #0000001a;
}

.variant-button.silber.is-active {
  background-color: #cdcdcd;
}

.product-header1_layout {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.product-title {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 44px;
  font-weight: 900;
  line-height: 125%;
}

.text-size-tiny {
  font-size: .75rem;
}

.product-header1_image-wrapper {
  width: 100%;
}

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

.form-input {
  color: #000;
  background-color: #eaeaea;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input:focus {
  border-color: #000;
}

.form-input::placeholder {
  color: #0009;
}

.form-input.is-select-input {
  color: #000;
}

.form-input.is-quantity-input {
  width: 4rem;
}

.form-input.is-quantity-input::placeholder {
  color: #000;
}

.product-header1_default-state {
  margin-bottom: 2rem;
}

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

.variant-button-row {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  display: flex;
}

.product-header1_lightbox-link {
  width: 100%;
  display: block;
}

.error-state {
  margin-top: 1.5rem;
  padding: .875rem 1rem;
}

.product-header1_image {
  aspect-ratio: 5 / 6;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.functions-grid {
  grid-column-gap: 88px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.functions-item {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  align-items: flex-start;
  display: flex;
}

.image-4 {
  width: 32px;
  height: 32px;
  display: block;
}

.functions-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
}

.functions-content-wrapper {
  flex: 0 auto;
  width: 80%;
}

.functions-icon {
  background-color: #f6f6f626;
  border: 1.5px solid #ff5c4c33;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  padding: 12px;
  display: flex;
  overflow: hidden;
  box-shadow: 3px 3px 16px #00000014;
}

.blog21_featured-image-wrapper {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.blog21_featured-title-link {
  text-decoration: none;
  display: block;
}

.blog21_featured-image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 100%;
}

.blog21_date-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  font-size: 12px;
  display: flex;
}

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

.blog_new_banner {
  background-color: var(--primary-color);
  color: var(--off-white);
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}

.blog_new_banner.w--current {
  border-bottom: 2px solid #000;
}

.blog21_image {
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: 16px;
  width: 100%;
  height: 100%;
}

.blog21_featured-item-content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.blog21_image-wrapper {
  width: 100%;
  height: 360px;
  overflow: hidden;
}

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

.blog21_featured-item {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.horizontal-line-wrapper {
  padding: 88px 40px;
}

.grey-line-horizontal {
  background-color: #0000001a;
  width: 100%;
  height: 2px;
}

.blog-author-text {
  font-weight: 500;
  line-height: 125%;
}

.margin-bottom48 {
  margin-bottom: 48px;
}

.blog-big-img-wrapper {
  border-radius: 32px;
  height: 650px;
  overflow: hidden;
}

.blog-big-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog33_image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 360px;
}

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

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

.blog33_image-wrapper {
  width: 100%;
  overflow: hidden;
}

.faq-heading {
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
}

.colored-line-horizontal {
  background-color: #ff5c4c99;
  width: 100%;
  height: 1px;
}

.contact-flex-wrapper {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.contact-item {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  border-bottom: 1px solid #0003;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  display: flex;
}

.contact-items {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  min-width: 60%;
  display: flex;
}

.contact-details-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  font-size: 12px;
  display: flex;
}

.contact-item-heading {
  font-size: 18px;
  font-weight: 500;
}

.contact-btn {
  color: var(--primary-color);
  justify-content: center;
  align-items: center;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  display: flex;
}

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

.footer1_left-wrapper {
  flex-direction: column;
  display: flex;
}

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

.button-4 {
  color: var(--off-white);
  text-align: center;
  border-radius: 4px;
  padding: .75rem 1.5rem;
}

.button-4.is-footer {
  color: var(--off-white);
  background-color: #f6f6f633;
  transition: all .2s;
}

.button-4.is-footer:hover {
  background-color: #f6f6f666;
}

.footer1_social-link {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  color: var(--off-white);
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .875rem;
  text-decoration: none;
  display: flex;
}

.footer1_form-block {
  max-width: 35rem;
  margin-bottom: 0;
}

.footer1_link {
  color: var(--off-white);
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .875rem;
  text-decoration: none;
}

.footer1_link:hover, .footer1_link.w--current {
  color: var(--primary-color);
  text-decoration: underline;
}

.footer1_link-list {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  display: flex;
}

.footer1_link-list.is--off {
  display: none;
}

.footer1_form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  margin-bottom: .75rem;
  display: grid;
}

.form-input-2 {
  color: var(--off-white);
  background-color: #f6f6f633;
  border: 1px solid #f6f6f61a;
  border-radius: 4px;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input-2:focus {
  border-color: #000;
}

.footer {
  color: var(--off-white);
  background-color: #000;
  border-top: 1px solid #fff6;
  border-bottom: 1px solid #fff6;
  padding-top: 80px;
}

.error-message {
  background-color: #da4a4a33;
  margin-top: 1.5rem;
  padding: .875rem 1rem;
}

.footer1_menu-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

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

.footer1_top-wrapper {
  grid-column-gap: 8vw;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  align-items: start;
}

.success-message {
  background-color: #0000;
  padding: 1.5rem;
}

.inverted-logo {
  filter: invert();
  width: 100%;
  max-width: 112px;
}

.menu-icon4_line-bottom {
  background-color: #000;
  width: 24px;
  height: 2px;
}

.menu-icon_line-middle-base {
  background-color: #000;
  width: 24px;
  height: 2px;
  position: absolute;
}

.navbar4_menu-button {
  padding: 0;
}

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

.navbar4_logo {
  width: 112px;
}

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

.navbar4_link {
  margin-top: .5rem;
  margin-bottom: .5rem;
  margin-left: 0;
  padding: .5rem 0;
  font-size: 24px;
  display: inline-block;
  position: static;
}

.navbar4_link.w--current {
  color: #0000;
}

.menu-icon4_wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.navbar4_container {
  z-index: 9999;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.navbar4_wrapper {
  grid-column-gap: 1rem;
  flex-direction: row;
  align-items: center;
  display: flex;
}

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

.navbar4_menu-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: -4.5rem;
  display: flex;
}

.menu-icon4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: relative;
}

.navbar4_menu {
  background-color: var(--off-white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  padding-left: 5%;
  padding-right: 5%;
  transition: height .5s;
  display: flex;
  position: absolute;
  overflow: auto;
}

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

.menu-icon_line-middle-top {
  z-index: 2;
  width: 24px;
  height: 2px;
  position: absolute;
  inset: 0;
}

.navbar4_component {
  background-color: #0000;
  align-items: center;
  width: 100%;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: fixed;
}

.mobile-hero-heading {
  display: none;
}

.layout351_accordion-arbeitnehmer {
  background-color: var(--off-white);
  flex-direction: row;
  justify-content: flex-start;
  width: 5rem;
  min-width: 5rem;
  height: 75vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.layout351_accordion-arbeitnehmer.active {
  background-color: #0000;
  width: 100%;
}

.workers-grid {
  z-index: 1;
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.workers-grid.second {
  z-index: 0;
  margin-left: -100%;
}

.testimonial7_arrow-icon {
  color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.workers-img-wrapper {
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.workers-img {
  object-fit: cover;
  border-radius: 15px;
  width: 100%;
  max-width: 500px;
  height: 630px;
  transition: all .4s;
}

.workers-img.second {
  margin-left: -100%;
  transform: rotate(3deg);
}

.workers-img.third {
  margin-left: -100%;
}

.workers-slider-arrow {
  z-index: 5;
  background-color: var(--off-white);
  cursor: pointer;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.workers-slider-arrow.is-left {
  z-index: 5;
  left: 50%;
  right: auto;
}

.text-block {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 125%;
}

.workers-slider-component {
  position: relative;
}

.workers-content-wrapper {
  background-color: #0000;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  transition: all .4s;
  display: flex;
}

.workers-content-wrapper.second, .workers-content-wrapper.third {
  margin-left: -100%;
}

.workers-slider-wrapper {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  position: relative;
}

.mainfunc-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  color: var(--color--text);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.mainfunc-item {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: #fff;
  border: 1px solid #0003;
  border-radius: 16px;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  display: flex;
}

.mainfunc-contents {
  width: 100%;
}

.mainfunc-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
}

.hero-bg {
  z-index: -2;
  object-fit: cover;
  object-position: 0% 50%;
  display: none;
  position: absolute;
  inset: -38% -41% 0% auto;
}

.hero-bg.bigger-screens {
  display: none;
}

.hero-ring-big {
  position: absolute;
  inset: 40% auto auto 5%;
  transform: translate(0, -50%);
}

.hero-ring-bronze {
  position: absolute;
  inset: 5% auto auto -5%;
}

.hero-ring-gold {
  position: absolute;
  inset: auto 0% 10% auto;
}

.accent-heading {
  color: var(--primary-color);
  font-family: Lora Variablefont Wght, sans-serif;
}

.paralax-grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1.2fr .8fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.paralax-img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid #0003;
  border-radius: 16px;
  width: 100%;
  max-height: 700px;
}

.paralax-img.smaller {
  max-height: 500px;
}

.paralax-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 125%;
}

.paralax-title.is--off {
  display: none;
}

.paralax-text {
  font-size: 20px;
  font-weight: 500;
}

.paralax-text.is--off {
  display: none;
}

.padding-64 {
  padding-left: 64px;
  padding-right: 64px;
}

.padding-24 {
  padding-left: 24px;
  padding-right: 24px;
}

.fader-section {
  color: var(--color--text);
  background-color: #0000000d;
}

.margin-top20 {
  margin-top: 20px;
}

.bg-black {
  color: var(--off-white);
  background-color: #000;
}

.bg-black.is-appold {
  display: none;
}

.full-hero-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-img-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

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

.image-6 {
  width: 100%;
  height: 100%;
}

.image-7 {
  object-fit: contain;
  max-height: 70vh;
  position: absolute;
  inset: auto auto 20vh 0%;
}

.image-8 {
  position: absolute;
  inset: 8.1vh auto auto -15%;
}

.image-9 {
  height: 100%;
  max-height: 250px;
  position: absolute;
  inset: auto 0% 10vh auto;
}

.hero-video {
  height: 100vh;
}

.inline-wrapper {
  display: inline-block;
}

.stats-info-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.stats-info-icon {
  cursor: pointer;
  width: 24px;
  height: 24px;
}

.product-section {
  background-image: linear-gradient(to bottom, var(--ring-color-silber), transparent 47%);
  height: 100%;
  min-height: 100vh;
  position: relative;
}

.buy-ring-component {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.ring-img {
  height: 35vh;
}

.ring-img.bronze, .ring-img.gold {
  display: none;
}

.ring-info-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 125%;
}

.padding-top {
  height: 100%;
  padding-top: 15vh;
  padding-bottom: 3vh;
}

.gif-absolut-wrapper {
  max-width: 260px;
  max-height: 260px;
  position: absolute;
  inset: 22vh auto auto 8vw;
  transform: rotate(-11deg);
}

.gif-absolut-wrapper.is--lifestyle {
  inset: -17% 0% auto auto;
}

.image-10 {
  width: 100%;
  height: 100%;
}

.navbar10_dropdown-toggle {
  grid-column-gap: .5rem;
  align-items: center;
  padding: 1.5rem 1rem;
  display: flex;
}

.button {
  color: #0000;
  text-align: center;
  background-color: #0000;
  border: 1px solid #0000;
  padding: .75rem 1.5rem;
}

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

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

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

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

.navbar10_blog-item-content {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.dropdown-chevron {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.navbar10_dropdown-link-list {
  grid-column-gap: 0px;
  grid-row-gap: 1rem;
  grid-template-rows: max-content max-content max-content max-content max-content;
  grid-template-columns: 1fr;
  grid-auto-rows: max-content;
  grid-auto-columns: 1fr;
  display: grid;
}

.navbar10_container {
  background-color: var(--off-white);
  border: 1px solid #0003;
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  height: 100%;
  margin-top: 9px;
  margin-left: auto;
  margin-right: auto;
  padding: 9px 12px;
  display: flex;
}

.navbar10_container.transparent-first {
  background-color: #fff0;
  border-color: #0000;
}

.navbar10_blog-item-image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

.navbar10_link {
  padding: 12px 1rem;
}

.navbar10_link.w--current {
  color: var(--primary-color);
  text-decoration: underline;
}

.navbar10_component {
  background-color: #0000;
  align-items: center;
  width: 100%;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: fixed;
}

.navbar10_dropdown-content-right {
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  position: relative;
}

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

.navbar10_dropdown-link {
  grid-column-gap: 8px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: none;
}

.navbar10_menu-dropdown {
  position: static;
}

.navbar10_blog-item {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: .5rem;
  padding-bottom: .5rem;
  text-decoration: none;
  display: grid;
}

.navbar10_dropdown-list.w--open {
  background-color: #fff;
  border-bottom: 1px solid #000;
  width: 100vw;
  max-width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

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

.navbar10_dropdown-content {
  width: 100%;
  display: flex;
}

.navbar10_menu {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  margin-left: 1.5rem;
  display: flex;
  position: static;
}

.navbar10_logo {
  width: 120px;
}

.navbar10_menu-button {
  padding: 0;
}

.navbar10_blog-item-image-wrapper {
  width: 100%;
  display: flex;
}

.navbar10_blog-list {
  grid-column-gap: 3rem;
  grid-row-gap: .5rem;
  grid-template-rows: max-content;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: max-content;
  grid-auto-columns: max-content;
  width: 100%;
  display: grid;
}

.navbar10_dropdown-content-left {
  grid-column-gap: 2rem;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 15rem;
  padding: 2rem 2rem 2rem 0;
}

.margin-bottom-copy, .margin-bottom-copy.margin-xsmall, .margin-bottom-copy.margin-small, .margin-bottom-copy.margin-xxsmall, .margin-bottom-copy.margin-tiny {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.footer-bottom {
  border-top: 1px solid #fff6;
  justify-content: space-between;
  margin-top: 80px;
  padding: 24px 2%;
  display: flex;
}

.copyright-text {
  font-size: 14px;
}

.gradient-bottom {
  background-image: linear-gradient(to bottom, transparent 45%, var(--secondary-color));
}

.gradient-top {
  background-image: linear-gradient(to bottom, var(--secondary-color), transparent);
}

.display-none {
  display: none;
}

.big-text-section {
  justify-content: center;
  align-items: center;
  height: 120vh;
  display: flex;
}

.gradient-top-big {
  background-image: linear-gradient(to bottom, var(--secondary-color), transparent 74%);
}

.uber-uns {
  background-color: var(--primary-color);
}

.scroll-wrapper {
  height: 150vh;
}

.sticky-top {
  color: var(--color--text);
  position: sticky;
  top: 0;
}

.sticky-top.larger-1 {
  top: 6rem;
}

.sticky-top.larger-2 {
  top: 9rem;
}

.sticky-top.larger-3 {
  top: 12rem;
}

.sticky-top.larger-4 {
  top: 15rem;
}

.hero-component {
  width: 100vw;
  position: relative;
  overflow: hidden;
}

.second-sticky-wrapper {
  height: 3192px;
  position: relative;
}

.lora-heading {
  font-family: Lora Variablefont Wght, sans-serif;
  font-weight: 500;
}

.merch-heading {
  color: var(--primary-color);
  font-family: Lora Variablefont Wght, sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 125%;
}

.about-hero-content {
  z-index: 2;
  position: absolute;
  top: 18vh;
  left: 5%;
}

.about-hero-content.absolut-wrapper {
  color: var(--off-white);
  max-width: 40%;
  position: absolute;
  inset: 0% auto auto 5vw;
}

.width-small-wrapper {
  width: 50%;
}

.h2-small {
  font-size: 24px;
}

.team-heading {
  font-size: 32px;
  font-weight: 500;
  line-height: 125%;
}

.team-subheading {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 125%;
}

.werte-img {
  width: 32px;
  height: 32px;
}

.slider-img-overlay {
  z-index: 1;
  background-image: linear-gradient(#0000 60%, #000);
  position: absolute;
  inset: 0%;
}

.image-overlay-gradient {
  z-index: 1;
  background-color: #0009;
  background-image: linear-gradient(#000, #0000 25%);
  position: absolute;
  inset: 0%;
}

.cta-ring-bg {
  width: 70%;
  padding-top: 50px;
  position: absolute;
  inset: 0% -5% 0% auto;
  transform: none;
}

.cta-ring {
  object-fit: cover;
  height: 600px;
  position: absolute;
  inset: auto 32% -63% auto;
  transform: translate(50%);
}

.cta-ring.bigger {
  bottom: -43%;
}

.full-img-slogan {
  font-family: "Plus Jakarta Custom (variable)", sans-serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 100%;
}

.width60 {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.tabs-heading {
  font-size: 32px;
  font-weight: 500;
  line-height: 125%;
}

.horizontal-slider {
  padding-top: 0;
  padding-bottom: 5rem;
  display: flex;
  overflow: auto;
}

.padding-left {
  padding-left: 4rem;
}

.div-block-4 {
  color: var(--primary-color);
}

.horizonta-scroll-component {
  position: absolute;
  left: 0;
  overflow: auto;
}

.section.is--hero {
  height: 80vh;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0% 0% auto auto;
}

.hero-image.is--svg {
  width: 1500px;
  transform: translate(47%, -27%);
}

.hero-image.is--silver {
  width: 35vw;
  inset: 17% 16% auto auto;
}

.hero-image.is--rose {
  width: 160px;
  top: 15%;
  right: 46%;
}

.hero-image.is--gold {
  transform-style: preserve-3d;
  width: 300px;
  inset: 65% -3% auto auto;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.layout219_image-2 {
  width: 100%;
  height: 100%;
}

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

.layout219_lightbox-image {
  object-fit: cover;
}

.layout219_tabs-link-2 {
  background-color: #0000;
  border-left: 2px solid #0000;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 0 0 0 2rem;
  display: block;
}

.layout219_tabs-link-2.w--current {
  opacity: 1;
  background-color: #0000;
  border-left-color: #000;
}

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

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

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

.heading-style-h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

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

.tabs-place-holder {
  padding-left: 54%;
  position: relative;
  top: -50px;
}

.loading-wrapper {
  z-index: 999999;
  background-color: var(--off-white);
  opacity: 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  inset: 0%;
  transform: scale(0);
}

.loading-gif {
  object-fit: contain;
  width: 100%;
  height: 260px;
}

.loading-wrapper-inner {
  margin-top: -5rem;
}

.loader-wrapper {
  background-color: #0003;
  border-radius: 12px;
  width: 300px;
  height: 4px;
  position: relative;
  bottom: auto;
  overflow: hidden;
}

.loader-filler {
  background-color: var(--primary-color);
  border-radius: 12px;
  width: 100%;
  height: 100%;
  transform: translate(-100%);
}

.loader-absolute-container {
  position: absolute;
  bottom: 11vh;
}

.cta-bg {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.scroll-section {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.div-block-8 {
  display: flex;
}

.workers-slide {
  padding-left: 5%;
  padding-right: 5%;
  position: absolute;
}

.workers-slide._2 {
  display: none;
}

.margin-top80 {
  margin-top: 80px;
}

.width40 {
  width: 40%;
}

.div-block-10 {
  background-color: var(--off-white);
  border-radius: 8px;
  padding: 24px;
}

.workers-zitat {
  transition: all .4s;
}

.layout351_column-content-arbeitnehmer {
  min-width: 200vw;
  height: 100%;
  overflow: auto;
}

.layout351_column-arbeitnehmer {
  color: var(--primary-color);
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 5rem;
  min-width: 5rem;
  height: 75vh;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  position: relative;
}

.margin-top32 {
  margin-top: 32px;
}

.cta-ring-gold {
  opacity: 0;
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.cta-ring-rose {
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.cta-ring-wrapper {
  z-index: -1;
  width: 50%;
  height: 80%;
  position: absolute;
  inset: auto 0% -25% 48%;
  transform: translate(-50%);
}

.cta-ring-silber {
  opacity: 0;
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.cta-bg-ring {
  z-index: -1;
  width: 100%;
  padding-top: 10vh;
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
}

.cta-bg-ring.is--home {
  z-index: -2;
  position: absolute;
  bottom: -50%;
}

.about-max-width-wrapper {
  width: 50vw;
}

.slider-arrows-wrapper {
  z-index: 5;
  justify-content: space-between;
  width: 500px;
  display: flex;
  position: absolute;
  top: 700px;
  left: 53.5%;
}

.color-black {
  color: #000;
}

.app-hero-img {
  object-fit: contain;
  width: 100%;
  max-width: 40vw;
  height: auto;
  min-height: 700px;
  max-height: 70vh;
  position: absolute;
  bottom: -20%;
  right: 5%;
}

.image-11 {
  object-fit: contain;
  transform-style: preserve-3d;
  width: 100%;
  max-width: 250px;
  height: auto;
  min-height: 240px;
  position: absolute;
  inset: auto -4% -8% auto;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.image-12 {
  object-fit: contain;
  width: 100%;
  max-width: 200px;
  min-height: 240px;
  position: absolute;
  inset: 15% auto auto 45%;
}

.tooltip-wrapper {
  z-index: 5;
  background-color: var(--off-white);
  border: 1px solid #0003;
  border-radius: 16px;
  width: 300px;
  padding: 32px;
  display: none;
  position: absolute;
  inset: auto 0% 0% auto;
  transform: translate(16px)translate(100%);
}

.tooltip-component {
  position: relative;
}

.app-download-link {
  cursor: pointer;
}

.business-hero-big {
  background-image: linear-gradient(to bottom, var(--secondary-color), #fff0 76%);
  height: 70vh;
  position: relative;
}

.new-app-grid {
  grid-column-gap: 240px;
  grid-row-gap: 240px;
  grid-template-rows: auto;
  grid-template-columns: .8fr 1.2fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
  position: sticky;
  top: 15vh;
}

.iphone-shape {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.iphone-mockup {
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.iphone-screens {
  z-index: -1;
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  width: 90.2%;
  height: 96%;
  display: flex;
  position: absolute;
  inset: 2.2% 0% 0% 5.1%;
  overflow: hidden;
}

.iphone-img {
  object-fit: cover;
  flex: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100%;
}

.iphone-img.first {
  z-index: -7;
  top: 0%;
}

.iphone-img._2 {
  z-index: -6;
}

.iphone-img._3 {
  z-index: -5;
}

.iphone-img._4 {
  z-index: -4;
}

.iphone-img._5 {
  z-index: -3;
}

.iphone-img._6 {
  z-index: -2;
}

.iphone-img._7 {
  z-index: -1;
}

.iphone-img._8 {
  z-index: 0;
}

.app-texte-wrapper {
  margin-bottom: 6rem;
  position: relative;
}

.texte-block {
  opacity: 1;
  position: absolute;
  transform: translate(0, 50px);
}

.texte-block.first {
  opacity: 1;
  transform: none;
}

.app-sticky-scroll {
  height: 600vh;
  position: relative;
}

.div-block-12 {
  width: 100%;
  height: 100%;
  padding-right: 10%;
}

.color-swap {
  color: var(--color--text);
  border-right: 1px solid #ff5c4c33;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.color-swap.active {
  color: var(--primary-color);
}

.color-swap-arbeitnehmer {
  color: var(--color--text);
  border-right: 1px solid #ff5c4c33;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.color-swap-arbeitnehmer.active {
  color: var(--primary-color);
}

.container-large-2 {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.signup-form_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  margin-bottom: 1rem;
  display: grid;
}

.newsletter-heading_wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  width: 80%;
  display: flex;
}

.newsletter-heading_wrapper.is--big {
  width: 80%;
}

.modal1_background-overlay {
  z-index: -1;
  cursor: pointer;
  background-color: #0003;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.modal1_content-wrapper {
  z-index: 250;
  background-color: var(--off-white);
  color: var(--color--text);
  border: 1px solid #0003;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 48rem;
  height: auto;
  max-height: 80vh;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.show-mobile-landscape {
  filter: invert();
  display: none;
}

.signup-form_form-block {
  max-width: 30rem;
  margin-bottom: 0;
}

.signup-form_form-block.is--big {
  max-width: none;
}

.hide-mobile-landscape {
  filter: invert();
}

.success-message-2 {
  color: #0009;
  background-color: #fff;
  border-radius: 4px;
  padding: 1.5rem;
}

.modal1_close-button {
  z-index: 260;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.newsletter-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  width: 40vw;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  left: 15%;
}

.newsletter-wrapper.is--modal {
  width: auto;
  position: static;
}

.error-message-2 {
  border-radius: 4px;
  margin-top: 1.5rem;
  padding: .875rem 1rem;
}

.button-5 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #fff;
  background-color: #54bfac;
  border-radius: 2px;
  align-items: center;
  padding: 10px 32px;
  transition: opacity .2s;
  display: flex;
}

.button-5:hover {
  opacity: .85;
}

.form-input-3 {
  color: #000;
  background-color: #0000000d;
  border: 1px solid #0003;
  border-radius: 4px;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input-3:focus {
  border-color: #000;
}

.form-input-3::placeholder {
  color: var(--color--button-background);
}

.modal1_component {
  z-index: 250;
  opacity: 0;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0%;
  transform: translate(0, 100vh);
}

.cta-image-overlay {
  z-index: 4;
  background-image: linear-gradient(to right, #000c, #0000);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.is--desktop-hidden, .section-2 {
  display: none;
}

.app-grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1.2fr .8fr;
  grid-auto-columns: 1fr;
}

.app-image.smaller {
  max-height: 500px;
}

.spline {
  z-index: 50;
  height: 100vh;
  position: relative;
}

._3d-card {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  outline-offset: 0px;
  background-color: #ffffff0d;
  border-radius: 8px;
  outline: 1px solid #fff3;
  padding: 1rem;
}

._3d-card.bottom {
  margin-bottom: 30vh;
}

.text-block-5 {
  font-size: 20px;
}

.horizontal-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1.2fr .8fr;
  grid-auto-columns: 1fr;
  width: 100vw;
  padding-bottom: 8px;
  display: flex;
  overflow: auto;
}

.horizontal-item.is--spacer {
  width: 5vw;
  min-width: 5vw;
}

.horizontal-item.is--spacer.is--cultur {
  min-width: 30vw;
}

.cultur-item {
  border: 1px solid #fff3;
  border-radius: 16px;
  flex: none;
  max-width: 40vw;
  height: 65vh;
  overflow: hidden;
}

.cultur-item.is--off {
  display: none;
}

.cultur-item.new {
  padding-right: 0;
}

.scroll-stopper {
  overflow: hidden;
}

.preorder-modal_trigger {
  background-color: #0000;
  padding: 0;
}

.is--hidden-completly, .mobile-cta_wrapper, .partner-spacer {
  display: none;
}

.social-icons-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-icon {
  width: 40px;
  height: 40px;
}

.margin-bottom80-copy {
  margin-bottom: 80px;
}

.banner2_component {
  z-index: 999999;
  background-color: var(--primary-color);
  position: fixed;
  inset: 0% 0% auto;
}

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

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

.banner2_wrapper {
  color: var(--dark--text);
  justify-content: flex-start;
  align-items: center;
  padding-top: .75rem;
  padding-bottom: .75rem;
  display: flex;
  position: relative;
}

.banner2_content {
  flex: 1;
  align-items: center;
  display: flex;
}

.banner2_icon-wrapper {
  flex: none;
  margin-right: 1rem;
  display: block;
}

.icon-1x1-small {
  filter: invert();
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  transition: all .4s;
}

.icon-1x1-small:hover {
  transform: scale(.8);
}

.button-6 {
  color: #0000;
  text-align: center;
  background-color: #0000;
  border: 1px solid #0000;
  padding: .75rem 1.5rem;
}

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

.banner2_close-button {
  margin-left: 1rem;
  display: none;
}

.banner-flex-horizontal {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

@media screen and (min-width: 1440px) {
  h1 {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 125%;
  }

  h2 {
    line-height: 125%;
  }

  h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 32px;
    font-weight: 500;
    line-height: 125%;
  }

  .hero-container.is-fullimg, .hero-container.is--lifestyle {
    max-width: none;
    max-height: none;
  }

  .hero-right-wrapper {
    max-height: 80rem;
  }

  .hero-content-wrapper {
    margin-top: 15rem;
  }

  .layout219_tabs-link {
    padding-right: 3rem;
  }

  .hero-bg.bigger-screens {
    object-fit: contain;
    display: block;
    position: absolute;
    left: 50%;
    right: 0;
  }

  .sticky-top.larger-2 {
    top: 9rem;
  }

  .sticky-top.larger-3 {
    top: 12rem;
  }

  .sticky-top.larger-4 {
    top: 15rem;
  }

  .horizonta-scroll-component {
    width: 95vw;
  }

  .section.is--hero {
    max-height: 80rem;
  }

  .hero-image.is--silver {
    width: 50vh;
  }

  .loading-gif {
    object-fit: contain;
    width: 260px;
    height: auto;
  }

  .cta-ring-wrapper {
    height: 90%;
    bottom: -33%;
  }

  .about-max-width-wrapper {
    width: 35vw;
  }

  .app-hero-img {
    max-width: 35vw;
    right: -5%;
  }

  .image-11 {
    min-height: 300px;
    bottom: -100px;
  }

  .image-12 {
    max-width: 300px;
    left: 34vw;
  }
}

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

  h2 {
    font-size: 35px;
  }

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

  .hero-content-wrapper {
    max-width: 22rem;
  }

  .hero-heading-wrapper-left {
    padding-left: 11%;
    padding-right: 0%;
  }

  .hero-heading {
    font-size: 4.5rem;
  }

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

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

  .layout408_component {
    width: 70%;
  }

  .section-heading-first.bigger, .section-heading-second.bigger {
    font-size: 50px;
  }

  ._3d-grid-layout {
    grid-column-gap: 25rem;
    grid-row-gap: 25rem;
    grid-template-columns: 1fr 1fr;
  }

  .cta-top_card {
    padding: 3rem;
  }

  .layout219_tabs-link {
    max-width: none;
    padding-right: 0;
  }

  .layout219_component {
    grid-column-gap: 3rem;
  }

  .blog-heading-big {
    font-size: 1.75rem;
  }

  .full-img {
    min-height: 45rem;
  }

  .cta-bottom_card {
    justify-content: flex-start;
    padding: 3rem;
  }

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

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

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

  .cta-half-img-card {
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    min-height: 600px;
    padding: 1rem;
  }

  .cta-img-wrapper {
    width: 100%;
  }

  .cta-img-left {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    height: 30vh;
  }

  .cta-content-wrapper {
    width: 100%;
    padding: 44px 0;
  }

  .cta-img-right {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    height: 30vh;
  }

  .merch-img-wrapper-right, .merch-content-wrapper {
    height: 50%;
  }

  .gallery21_slide {
    width: 50vh;
  }

  .img-slider-section {
    height: 80vh;
    min-height: 0;
    padding-top: 6rem;
  }

  .gallery21_mask {
    width: 60%;
  }

  .zitat {
    font-size: 32px;
  }

  .zitat-quoter {
    font-size: 18px;
  }

  .app-details-block {
    width: 90vw;
  }

  .header102_slider {
    width: 100vw;
    max-width: 100%;
  }

  .header102_slide-wrapper {
    grid-template-rows: 60% 40%;
  }

  .stats-list {
    grid-template-columns: 1fr 1fr;
  }

  .big-text {
    font-size: 40px;
  }

  .layout351_column-vertical-text {
    display: none;
  }

  .layout351_component {
    flex-direction: column;
    height: auto;
  }

  .layout351_accordion {
    border-right-style: none;
    flex-direction: column;
    width: 100%;
    min-width: auto;
    height: auto;
  }

  .layout351_column-text {
    position: absolute;
    left: 2.5rem;
  }

  .layout351_column-content {
    width: 100%;
    min-width: auto;
    overflow: hidden;
  }

  .layout351_column-content.active {
    height: auto;
  }

  .layout351_content-wrapper {
    width: auto;
    padding: 3rem 2.5rem;
  }

  .layout351_column {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    min-width: 100%;
    height: 5rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .layout351_column-horiztonal-text {
    display: block;
  }

  .product-header1_component {
    padding-bottom: 2.5rem;
  }

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

  .product-header1_layout {
    grid-column-gap: 5rem;
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .product-title {
    font-size: 2.25rem;
  }

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

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

  .contact-flex-wrapper {
    flex-direction: column;
  }

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

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

  .footer1_top-wrapper {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

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

  .menu-icon_line-middle-base {
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: absolute;
  }

  .navbar4_menu-button {
    margin-left: -.5rem;
    padding: 0;
  }

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

  .navbar4_link {
    margin-top: 0;
    margin-bottom: 0;
    padding: .75rem 0;
    font-size: 1.25rem;
    position: static;
  }

  .menu-icon4_wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .navbar4_container {
    grid-auto-columns: 1fr;
  }

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

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

  .navbar4_menu {
    z-index: 1;
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    flex-direction: column;
    justify-content: center;
    margin-left: 0;
    display: block;
  }

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

  .menu-icon_line-middle-top {
    z-index: 2;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    inset: 0;
  }

  .layout351_accordion-arbeitnehmer {
    border-right-style: none;
    flex-direction: column;
    width: 100%;
    min-width: auto;
    height: auto;
  }

  .workers-grid {
    align-content: start;
    align-items: start;
  }

  .workers-img-wrapper {
    align-items: flex-start;
  }

  .workers-img {
    height: 600px;
  }

  .gif-absolut-wrapper {
    max-width: 200px;
    max-height: 200px;
    top: 28%;
    left: 0%;
  }

  .gif-absolut-wrapper.is--lifestyle {
    top: -24%;
    right: -9%;
  }

  .navbar10_dropdown-toggle {
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
    font-size: 1.125rem;
    display: flex;
  }

  .navbar10_menu-right {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .navbar10_blog-item-content {
    width: 100%;
  }

  .dropdown-chevron {
    inset: auto 0% auto auto;
  }

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

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

  .navbar10_blog-item-image {
    width: 100%;
  }

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

  .navbar10_link {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .navbar10_dropdown-content-right {
    align-items: flex-start;
    max-width: none;
    padding-top: 0;
  }

  .navbar10_menu-dropdown {
    width: 100%;
  }

  .navbar10_blog-item {
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .navbar10_dropdown-list {
    position: relative;
    overflow: hidden;
  }

  .navbar10_dropdown-list.w--open {
    border-style: none;
    align-items: flex-start;
    padding: 0 0 0;
    position: relative;
    top: 0;
  }

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

  .navbar10_dropdown-content {
    flex-direction: column;
  }

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

  .navbar10_blog-item-image-wrapper {
    flex-direction: column;
    width: 100%;
  }

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

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

  .navbar10_blog-list {
    grid-row-gap: 2rem;
    width: 100%;
  }

  .navbar10_dropdown-content-left {
    align-content: start;
    align-items: start;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

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

  .second-sticky-wrapper {
    height: 100%;
  }

  .cta-ring-bg {
    width: 100%;
    max-width: none;
    top: auto;
    bottom: 7%;
    right: -11%;
    transform: translate(0, 50%);
  }

  .cta-ring {
    height: 400px;
    bottom: -38%;
    right: 42%;
  }

  .cta-ring.bigger {
    bottom: -30%;
  }

  .horizonta-scroll-component {
    width: 100vw;
  }

  .hero-image.is--svg {
    width: auto;
    max-width: none;
    height: 120vh;
    top: -19%;
    right: -15%;
  }

  .hero-image.is--silver {
    width: 400px;
    right: 5%;
  }

  .hero-image.is--rose {
    top: 0%;
  }

  .hero-image.is--gold {
    width: 250px;
  }

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

  .layout219_component-2 {
    grid-column-gap: 3rem;
    align-items: start;
  }

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

  .tabs-place-holder {
    top: 0;
  }

  .workers-slide._2 {
    display: none;
  }

  .layout351_column-content-arbeitnehmer {
    width: 100%;
    min-width: auto;
    overflow: hidden;
  }

  .layout351_column-content-arbeitnehmer.active {
    height: auto;
  }

  .layout351_column-arbeitnehmer {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    min-width: 100%;
    height: 5rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .cta-ring-wrapper {
    width: 70%;
    height: 600px;
  }

  .cta-bg-ring.is--home {
    padding-left: 0%;
    padding-right: 0%;
    position: absolute;
    bottom: -30%;
  }

  .about-max-width-wrapper {
    width: 60%;
  }

  .slider-arrows-wrapper {
    width: 44%;
    left: 56%;
  }

  .app-hero-img {
    max-width: 38vw;
    min-height: auto;
    max-height: none;
    right: 0%;
  }

  .image-11 {
    max-width: 200px;
    min-height: 200px;
    bottom: -12%;
    right: -14%;
  }

  .image-12 {
    min-height: 200px;
    top: auto;
    bottom: 19%;
    left: 46%;
  }

  .tooltip-wrapper {
    width: 260px;
  }

  .new-app-grid {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    top: 12rem;
  }

  .app-sticky-scroll {
    height: 700vh;
  }

  .color-swap, .color-swap-arbeitnehmer {
    border-right-width: 0;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
  }

  .newsletter-heading_wrapper {
    width: 100%;
  }

  .modal1_content-wrapper {
    width: 90%;
    max-width: none;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .newsletter-wrapper {
    width: 80vw;
    left: 0%;
  }

  .cultur-item {
    height: 55vh;
  }

  .banner-flex-horizontal {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }
}

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

  h2 {
    font-size: 35px;
  }

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

  .hero-container.is-fullimg, .hero-container.is--lifestyle {
    height: 80vh;
  }

  .hero-left-wrapper {
    align-items: flex-start;
    height: 50vh;
    margin-top: -20vh;
    padding: 8vh 5% 0;
  }

  .hero-right-wrapper {
    height: 50vh;
  }

  .hero-content-wrapper {
    width: 100%;
    max-width: none;
    height: 40vh;
    margin-top: 0;
  }

  .hero-content-wrapper.absolut-wrapper {
    height: auto;
    padding-top: 25vh;
    top: 0%;
    left: 0;
    right: 0;
  }

  .btn {
    text-decoration: none;
  }

  .btn.dark {
    font-size: 16px;
  }

  .hero-heading-wrapper-left {
    padding-right: 5%;
    display: none;
    top: 25vh;
  }

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

  .logo-flexbox {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .featured-logo {
    object-fit: contain;
    min-width: 140px;
  }

  .layout408_card {
    grid-template-columns: 1fr;
    height: auto;
    margin-bottom: 0;
    position: static;
  }

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

  .layout408_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    width: 100%;
  }

  .margin-bottom64.is-placeholder {
    margin-bottom: 8rem;
  }

  .margin-bottom64.is-half-img {
    margin-bottom: 120px;
  }

  .section-heading-first.bigger, .section-heading-second.bigger {
    font-size: 44px;
  }

  ._3d-grid-layout {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
    padding-bottom: 2rem;
  }

  ._3d_content-left {
    margin-top: 0;
  }

  .layout355_space-reducer {
    margin-bottom: 0;
  }

  .layout355_text-wrapper {
    align-items: center;
    height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .layout355_text-wrapper.last {
    height: auto;
  }

  ._3d-model-wrapper {
    z-index: -2;
    background-color: var(--color--background);
    height: 50vh;
    top: 0;
  }

  ._3d_content-right {
    padding-top: 0;
  }

  .cta-top_card {
    padding: 2rem;
  }

  .transparent-btn-inner {
    white-space: nowrap;
  }

  .layout219_image {
    object-fit: cover;
    object-position: 50% 80%;
    max-height: 50vh;
  }

  .layout219_tabs-link {
    padding-right: 1.5rem;
  }

  .layout219_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .blog-heading-big {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .tabs-img-wrapper {
    z-index: 9999;
  }

  .full-img-section.mobil-smaller, .full-img-section.hero-cta {
    height: 70vh;
  }

  .full-img.mobil-smaller {
    min-height: 0;
  }

  .full-img-section-content-wrapper {
    width: 100%;
    max-width: none;
    padding-left: 5%;
    padding-right: 5%;
    top: 5%;
    left: 0%;
    right: 0;
    transform: none;
  }

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

  .faq4_answer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .faq4_icon-wrappper {
    width: 1.75rem;
  }

  .faq4_question {
    padding: 1rem 1.25rem;
  }

  .cta-bottom_card {
    height: 700px;
    padding: 2rem;
  }

  .cta-bottom_card.has-full-bg {
    justify-content: flex-end;
    height: 500px;
    padding-bottom: 4rem;
  }

  .cta-bottom_card.is-slider {
    height: 700px;
  }

  .cta-bottom_background-image {
    object-position: 88% 50%;
  }

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

  .layout216_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

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

  .btn-outer {
    text-decoration: none;
  }

  .btn-outer.show-desktop {
    display: none;
  }

  .btn-outer.show-mobile {
    margin-top: 2rem;
    display: inline-block;
  }

  .cta-half-img-card {
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }

  .cta-img-left {
    border-radius: 0;
  }

  .cta-content-wrapper {
    padding: 24px 1rem 1rem;
  }

  .merch-flex-box {
    flex-direction: column;
    max-height: none;
  }

  .merch-img-wrapper-left {
    width: 100%;
  }

  .merch-wrapper-right {
    flex-direction: column-reverse;
    width: 100%;
  }

  .img-cover.border-16 {
    object-position: 50% 20%;
    max-height: 400px;
  }

  .story-flex-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
  }

  .max-60 {
    max-width: 100%;
  }

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

  .gallery21_slide {
    width: 40vh;
    padding-right: 1.5rem;
  }

  .img-slider-section {
    height: 70vh;
  }

  .gallery21_mask {
    width: 100%;
  }

  .width50 {
    width: 80%;
  }

  .jobs-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: row;
    width: 105%;
    overflow: scroll;
  }

  .job-item {
    min-width: 80vw;
    padding: 1.5rem;
  }

  .flex-align-center.is-tabs {
    justify-content: center;
  }

  .app-details-block {
    flex-direction: column;
    height: auto;
  }

  .details-img-wrapper, .details-content-wrapper {
    width: 100%;
  }

  .header102_slide-image {
    position: static;
  }

  .header102_slide-wrapper {
    grid-template-rows: 70% 30%;
  }

  .blog-heading-small {
    font-size: 1.25rem;
  }

  .stats-list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .big-text {
    font-size: 34px;
  }

  .layout351_column-vertical-text {
    font-size: 1.25rem;
  }

  .layout351_column-text {
    font-size: 1.25rem;
    left: 1.5rem;
  }

  .layout351_content-wrapper {
    padding: 1rem 1.5rem 2rem;
  }

  .layout351_column {
    height: 4rem;
  }

  .layout351_column-horiztonal-text {
    font-size: 1.25rem;
  }

  .product-header1_component {
    padding-bottom: 1.5rem;
  }

  .product-header1_list {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

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

  .product-header1_layout {
    grid-column-gap: 5rem;
    grid-row-gap: 2rem;
  }

  .product-title {
    font-size: 2rem;
  }

  .product-header1_gallery, .functions-grid {
    grid-template-columns: 1fr;
  }

  .functions-item {
    align-items: center;
  }

  .blog21_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .blog21_featured-item {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
  }

  .blog33_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

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

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

  .footer1_menu-wrapper {
    grid-column-gap: 1.5rem;
  }

  .footer1_top-wrapper {
    grid-row-gap: 3rem;
  }

  .navbar4_component {
    min-height: 4rem;
  }

  .mobile-hero-heading {
    padding-left: 5%;
    padding-right: 5%;
    display: block;
    position: absolute;
    inset: auto 0% 10%;
  }

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

  .workers-img-wrapper {
    justify-content: center;
  }

  .workers-img {
    max-width: 300px;
    height: 400px;
  }

  .workers-slider-arrow, .workers-slider-arrow.is-left {
    top: 23%;
  }

  .workers-slider-wrapper {
    height: 170vh;
  }

  .mainfunc-grid {
    grid-template-columns: 1fr;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-bg {
    object-position: 0% 100%;
    height: 60vh;
    position: static;
    inset: -50vh 0% auto auto;
  }

  .hero-ring-big {
    max-width: 300px;
    top: 55%;
    left: 40%;
    transform: translate(-50%, -50%);
  }

  .hero-ring-bronze {
    display: none;
    top: -5%;
    left: 3%;
  }

  .hero-ring-gold {
    height: 100%;
    max-height: 140px;
    bottom: 10%;
    right: 7%;
  }

  .paralax-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .paralax-title {
    line-height: 125%;
  }

  .hero-video {
    height: 80vh;
  }

  .stats-info-block {
    white-space: nowrap;
  }

  .stats-info-text {
    white-space: normal;
  }

  .buy-ring-component {
    width: 70%;
  }

  .gif-absolut-wrapper {
    display: none;
  }

  .gif-absolut-wrapper.is--lifestyle {
    display: block;
    inset: -12% 0% auto auto;
  }

  .navbar10_menu-right {
    justify-content: flex-end;
    width: 100%;
  }

  .navbar10_dropdown-link-list {
    max-width: none;
  }

  .navbar10_container {
    z-index: 9999999;
    align-items: flex-start;
    position: relative;
  }

  .menu-icon {
    z-index: 999999999;
    margin-right: 0;
    position: relative;
  }

  .navbar10_blog-item-image {
    margin-bottom: 0;
  }

  .navbar10_link {
    text-align: right;
    margin-bottom: .5rem;
    font-size: 2.5vh;
  }

  .navbar10_component {
    min-height: 4rem;
  }

  .navbar10_dropdown-content-right {
    padding-bottom: 1.5rem;
  }

  .navbar10_blog-item {
    grid-row-gap: 1rem;
  }

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

  .navbar10_menu {
    background-color: var(--off-white);
    border: 1px solid #0003;
    border-radius: 8px;
    height: auto;
    min-height: 55vh;
    margin-top: 9px;
    margin-left: 0;
    margin-right: 5%;
    padding: 5rem 5% 2rem 2rem;
    position: absolute;
    inset: 0 0 auto auto;
    overflow: hidden;
  }

  .navbar10_blog-item-image-wrapper {
    max-width: 100%;
  }

  .navbar10_dropdown-content-left {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

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

  .sticky-top.larger-2 {
    top: 8rem;
  }

  .sticky-top.larger-3 {
    top: 10rem;
  }

  .sticky-top.larger-4 {
    top: 12rem;
  }

  .about-hero-content {
    margin-top: 0;
    padding-left: 5%;
    padding-right: 5%;
    left: 0%;
  }

  .width-small-wrapper {
    width: 80%;
  }

  .h2-small {
    font-size: 35px;
  }

  .cta-ring-bg {
    width: 120%;
    padding-top: 0;
    bottom: 11%;
    left: auto;
  }

  .cta-ring {
    bottom: -27%;
    right: 53%;
  }

  .width60 {
    width: 80%;
  }

  .div-block-3 {
    background-color: #0003;
    flex-direction: column-reverse;
    display: flex;
  }

  .div-block-4 {
    width: 100%;
  }

  .section.is--hero {
    height: 100vh;
  }

  .section.is--hero.is--app {
    height: auto;
    position: relative;
  }

  .hero-image_wrapper {
    height: 50vh;
  }

  .hero-image_wrapper.is--app {
    height: 45vh;
    display: none;
    position: relative;
  }

  .hero-image.is--svg {
    top: -14%;
    right: -29%;
  }

  .hero-image.is--svg.is--appsite {
    z-index: -1;
    top: auto;
    left: auto;
    right: 0;
  }

  .hero-image.is--silver {
    top: 9%;
    right: 32%;
  }

  .hero-image.is--rose {
    display: none;
  }

  .hero-image.is--gold {
    width: 200px;
    top: 36%;
    right: -5%;
  }

  .layout219_tabs-menu-2 {
    z-index: 0;
    padding-top: 5rem;
  }

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

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

  .tabs-place-holder {
    justify-content: center;
    align-items: center;
    padding-left: 0%;
    display: flex;
  }

  .loading-wrapper {
    color: var(--color--text);
  }

  .hero-section {
    flex-direction: column-reverse;
    display: flex;
  }

  .hero-section.is--app {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 15vh;
  }

  .workers-slide {
    padding-top: 2rem;
    overflow: hidden;
  }

  .layout351_column-arbeitnehmer {
    height: 4rem;
  }

  .cta-ring-wrapper {
    bottom: -40%;
  }

  .cta-bg-ring.is--home {
    padding-top: 0;
    padding-left: 0%;
    padding-right: 0%;
    bottom: -31%;
  }

  .about-max-width-wrapper {
    width: 100%;
  }

  .slider-arrows-wrapper {
    width: 100%;
    height: 4rem;
    margin-top: 400px;
    position: sticky;
    top: 7rem;
    left: auto;
  }

  .app-hero-img {
    height: 100%;
    min-height: 55vh;
    max-height: 60vh;
    bottom: -25%;
    left: 5%;
    right: auto;
  }

  .image-11 {
    bottom: -10%;
    right: -5%;
  }

  .image-12 {
    top: 0;
    bottom: auto;
    left: -8%;
  }

  .tooltip-wrapper {
    inset: 0% auto auto 0%;
    transform: translate(-100%, -100%);
  }

  .text-block-2 {
    height: 500px;
  }

  .lifestyle-animation-heading {
    font-size: 32px;
  }

  .tabs-content {
    z-index: 5;
    background-color: var(--off-white);
    position: sticky;
    top: 5rem;
  }

  .new-app-grid {
    grid-column-gap: 6vh;
    grid-row-gap: 6vh;
    grid-template-columns: 1fr;
    top: 8rem;
  }

  .iphone-mockup {
    width: 20vh;
    height: 40vh;
  }

  .app-texte-wrapper {
    width: 70%;
    margin-bottom: 15rem;
    margin-left: auto;
    margin-right: auto;
  }

  .app-sticky-scroll {
    height: 600vh;
  }

  .div-block-12 {
    justify-content: center;
    align-items: center;
    padding-left: 30%;
    padding-right: 30%;
    display: flex;
  }

  .modal1_content-wrapper {
    width: 100%;
    padding-bottom: 7rem;
    padding-left: 5%;
    padding-right: 5%;
  }

  .show-mobile-landscape {
    filter: none;
    display: block;
  }

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

  .button-5 {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .is--desktop-hidden, .section-2 {
    display: block;
  }

  .app-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    width: 100%;
    display: flex;
    overflow: auto;
  }

  .app-image {
    border-radius: 4px;
  }

  .app-image_wrapper {
    flex: none;
    max-width: 80vw;
  }

  .ring-svg {
    position: absolute;
    inset: -33% -40% auto auto;
  }

  ._3d-card {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: #ffffff1a;
  }

  ._3d-card.bottom {
    margin-bottom: 0;
  }

  .section-3 {
    overflow: visible;
  }

  .horizontal-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    width: 105%;
    display: flex;
    overflow: auto;
  }

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

  .horizontal-item {
    flex: none;
    max-width: 80vw;
  }

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

  .mobile-cta_wrapper {
    z-index: 200;
    justify-content: center;
    padding-bottom: 1rem;
    display: flex;
    position: fixed;
    inset: auto 0% 0%;
  }

  ._3d-overlay {
    z-index: 51;
    background-image: linear-gradient(#0000004d 75%, #0000);
    height: 80vh;
    position: absolute;
    inset: 0%;
  }

  .partner-scroll-wrapper {
    width: 95vw;
    padding-top: 30px;
    padding-bottom: 30px;
    overflow: scroll;
  }

  .partner-spacer {
    width: 40px;
    height: 100%;
    padding: 0;
    display: block;
  }

  .banner2_wrapper {
    flex-direction: column;
    align-items: stretch;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .banner2_content {
    align-items: flex-start;
  }

  .banner2_close-button {
    margin-left: 0;
    position: absolute;
    inset: .5rem .5rem auto auto;
  }

  .banner-flex-horizontal {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

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

  .hero-container {
    height: 100%;
  }

  .hero-left-wrapper {
    margin-top: -10vh;
    padding: 5vh 5%;
  }

  .hero-right-wrapper {
    height: 50vh;
  }

  .hero-content-wrapper {
    height: 100%;
    min-height: 40vh;
  }

  .hero-content-wrapper.absolut-wrapper {
    max-width: 100%;
    height: auto;
    left: 0;
  }

  .hero-heading-wrapper-left {
    top: 25vh;
  }

  .hero-heading {
    font-size: 17vw;
  }

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

  .featured-logo {
    min-width: 100px;
  }

  .featured-logo.bigger {
    height: 56px;
  }

  .layout408_card.card-2 {
    flex-direction: column;
    top: 389px;
  }

  .layout408_card.card-1 {
    flex-direction: column;
    top: 354px;
  }

  .layout408_card.card-3 {
    flex-direction: column;
    position: sticky;
    top: 449px;
  }

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

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

  .section-heading-first {
    word-break: break-all;
    font-size: 35px;
  }

  .section-heading-first.bigger {
    word-break: normal;
    font-size: 32px;
  }

  .section-heading-second {
    font-size: 35px;
  }

  .section-heading-second.bigger {
    font-size: 32px;
  }

  .layout355_text-wrapper {
    padding-left: 5%;
    padding-right: 5%;
  }

  ._3d-model-wrapper {
    z-index: -2;
    height: 40vh;
    top: 10vh;
  }

  .layout219_component {
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .full-img-section.hero-cta {
    height: 80vh;
  }

  .full-img.mobil-smaller {
    object-fit: cover;
    height: 50%;
    position: absolute;
    bottom: 0;
  }

  .switch-component {
    bottom: 10px;
  }

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

  .cta-bottom_card {
    height: 85vh;
    padding: 1.5rem;
  }

  .cta-bottom_background-image {
    object-position: 78% 50%;
  }

  .div-block-2 {
    top: 0;
  }

  .layout424_heading-list {
    width: 50%;
  }

  .layout424_heading {
    font-size: 17px;
  }

  .text-big {
    font-size: 17px;
    transform: translate(0, 15%);
  }

  .layout216_item-list {
    grid-template-columns: 1fr;
  }

  .layout216_image-wrapper {
    padding-top: 7.5rem;
  }

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

  .btn-outer.show-desktop {
    display: none;
  }

  .story-flex-wrapper {
    grid-column-gap: 44px;
    grid-row-gap: 44px;
  }

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

  .gallery21_slide {
    width: 93vw;
  }

  .img-slider-section {
    height: 165vw;
    padding-top: 4rem;
  }

  .slider-content-wrapper {
    padding: 22px;
  }

  .cta3_background-image.is--zitat {
    object-position: 24% 21%;
  }

  .zitat {
    font-size: 24px;
  }

  .zitat-quoter {
    font-size: 14px;
  }

  .width50 {
    width: 100%;
  }

  .jobs-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: row;
    width: 106%;
    overflow: scroll;
  }

  .job-item {
    min-width: 80vw;
    padding: 1.5rem;
  }

  .smaller-text {
    width: 100%;
  }

  .article-item {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .details-content-wrapper {
    padding: 44px 32px;
  }

  .details-title {
    word-break: break-all;
    font-size: 25px;
  }

  .header102_slide-wrapper {
    grid-template-rows: auto auto;
  }

  .stats-list {
    grid-template-columns: 1fr;
  }

  .business-hero {
    height: 40vh;
  }

  .big-text {
    font-size: 24px;
  }

  .layout351_column-text {
    position: relative;
    left: 0;
  }

  .tab-link {
    padding-left: 10px;
    padding-right: 10px;
  }

  .tabs-menu {
    display: flex;
  }

  .product-header1_layout {
    grid-template-columns: 1fr;
  }

  .functions-grid {
    grid-row-gap: 40px;
  }

  .functions-item {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    text-align: center;
    flex-direction: column;
  }

  .functions-title {
    font-size: 20px;
  }

  .blog-big-img-wrapper {
    height: 400px;
  }

  .contact-item {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .footer1_form {
    grid-row-gap: 12px;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer1_menu-wrapper {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .footer1_top-wrapper {
    grid-row-gap: 48px;
  }

  .card-icon {
    height: 88px;
  }

  .workers-slider-arrow, .workers-slider-arrow.is-left {
    top: 21%;
  }

  .workers-slider-wrapper {
    height: 210vh;
  }

  .mainfunc-grid {
    width: 100%;
  }

  .mainfunc-title {
    font-size: 20px;
  }

  .hero-bg {
    height: 60vh;
    top: -55vh;
    left: 0%;
    right: 0;
  }

  .hero-ring-big {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    top: 15%;
    left: 0%;
    transform: none;
  }

  .hero-ring-bronze {
    max-width: 200px;
    top: -5%;
    left: 0%;
  }

  .hero-ring-gold {
    bottom: 5%;
    right: 0%;
  }

  .paralax-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .padding-64, .padding-24 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .buy-ring-component {
    width: 100%;
  }

  .ring-img {
    height: 25vh;
  }

  .gif-absolut-wrapper.is--lifestyle {
    top: -7%;
  }

  .navbar10_menu-right {
    justify-content: center;
  }

  .navbar10_link {
    text-align: center;
  }

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

  .navbar10_blog-item {
    flex-direction: column;
  }

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

  .navbar10_menu {
    flex: 0 auto;
    width: 90%;
    margin-left: 5%;
    padding-left: 5%;
  }

  .navbar10_blog-list {
    grid-template-columns: 1fr;
  }

  .navbar10_dropdown-content-left {
    grid-template-columns: 1fr;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

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

  .lora-heading {
    font-size: 32px;
  }

  .width-small-wrapper {
    width: 100%;
  }

  .cta-ring-bg {
    width: 150%;
    max-width: none;
    bottom: 10%;
    left: -25%;
  }

  .cta-ring {
    height: 350px;
    bottom: -26%;
    right: 56%;
  }

  .cta-ring.bigger {
    bottom: -26%;
  }

  .width60 {
    width: 100%;
  }

  .section.is--hero {
    height: 100%;
    min-height: 100vh;
  }

  .section.is--hero.is--app {
    min-height: auto;
  }

  .hero-image_wrapper.is--app {
    flex: none;
  }

  .hero-image.is--svg {
    width: 100vh;
    height: 100vh;
    top: -19%;
    right: -36%;
  }

  .hero-image.is--svg.is--appsite {
    top: auto;
    bottom: -410px;
    right: -46%;
  }

  .hero-image.is--silver {
    right: 15%;
  }

  .hero-image.is--gold {
    top: 32%;
    right: -21%;
    transform: rotateX(0)rotateY(180deg)rotateZ(0);
  }

  .layout219_component-2 {
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .loading-wrapper-inner {
    padding-bottom: 20vh;
  }

  .loader-absolute-container {
    bottom: 20vh;
  }

  .cta-bg {
    object-position: 42% 50%;
  }

  .div-block-6 {
    margin-bottom: 5vh;
  }

  .heading-8 {
    font-size: 25px;
  }

  .div-block-7 {
    text-align: right;
    width: 50%;
  }

  .cta-ring-wrapper {
    width: 100%;
    height: 400px;
    bottom: -25%;
    left: 47%;
  }

  .cta-bg-ring.is--home {
    width: 150%;
    max-width: none;
    bottom: -27%;
    left: -25%;
  }

  .slider-arrows-wrapper {
    margin-top: 420px;
  }

  .app-hero-img {
    width: 100%;
    height: 40vh;
    max-height: 40vh;
    top: 0;
    bottom: auto;
    left: -15%;
  }

  .image-11 {
    bottom: -21%;
    right: -28%;
  }

  .image-12 {
    max-width: 150px;
    min-height: 150px;
    bottom: auto;
    left: -22%;
  }

  .tooltip-wrapper {
    left: 250%;
  }

  .text-block-4 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .new-app-grid {
    max-height: 90vh;
    top: 6.5rem;
  }

  .app-texte-wrapper {
    width: 100%;
  }

  .div-block-12 {
    padding-left: 20%;
    padding-right: 20%;
  }

  .color-swap-arbeitnehmer {
    justify-content: space-between;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .signup-form_form {
    grid-row-gap: .75rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .newsletter-wrapper {
    width: auto;
  }

  .app-image_wrapper {
    max-width: none;
  }

  .ring-svg {
    top: -2%;
  }

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

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

  .horizontal-item.is--spacer {
    width: 3vw;
  }

  .cultur-item {
    max-width: 85vw;
    height: auto;
    min-height: 60vh;
    margin-right: -.5rem;
  }

  .partner-scroll-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }
}

#w-node-_17f94265-9e71-70dd-1951-5dfa10aa7ca7-4fd4d9bd {
  grid-area: 1 / 1 / 4 / 2;
}

#w-node-e4dbcf3a-72a9-c43c-0cd1-446669c5d5ad-4fd4d9bd {
  grid-area: 1 / 2 / 3 / 3;
}

#w-node-_591f5f05-d8cc-dff5-b124-7ee3a6d65302-4fd4d9bd, #w-node-_591f5f05-d8cc-dff5-b124-7ee3a6d6530b-4fd4d9bd, #w-node-_591f5f05-d8cc-dff5-b124-7ee3a6d65314-4fd4d9bd {
  grid-area: 1 / 1 / 4 / 2;
}

#w-node-_8a49e872-fde6-d27b-2f6c-f9f6bd4c3174-bd4c315b {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-d302dbe1-ffe8-beaa-0b2f-dff2e8e7d88f-bd4c315b, #w-node-d302dbe1-ffe8-beaa-0b2f-dff2e8e7d898-bd4c315b, #w-node-d302dbe1-ffe8-beaa-0b2f-dff2e8e7d8a1-bd4c315b {
  grid-area: 1 / 1 / 4 / 2;
}

#w-node-_813ac4c7-e7c6-f80f-1a6c-3b00905b5974-905b596c, #w-node-_813ac4c7-e7c6-f80f-1a6c-3b00905b597d-905b596c, #w-node-_813ac4c7-e7c6-f80f-1a6c-3b00905b5986-905b596c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_027ee7ce-fffa-7f2b-0ee9-29f4d045ec40-d045ec2c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_51496c98-81f6-3bf3-6c8f-5b6e138aa0f9-25681fac, #w-node-eb2e3a7a-264e-83de-999c-90d2ad78440b-25681fac, #w-node-ed627eaa-4470-cdce-3786-b0a2d82b1af8-25681fac, #w-node-a7631a2a-579b-3f74-fad8-b0a7393992d2-25681fac {
  grid-area: 1 / 1 / 4 / 2;
}

#w-node-_0b866064-5f3f-636a-eb40-f4472afec498-25681fac {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d00ab2b1-3624-dbbe-42f5-647b7ff9fc26-107e3dbe {
  grid-area: 1 / 1 / 4 / 2;
}

#w-node-d00ab2b1-3624-dbbe-42f5-647b7ff9fc2f-107e3dbe {
  grid-area: 1 / 2 / 3 / 3;
}

#w-node-f2992572-0559-37af-2357-43e4a6a3a4ac-3ab0add8, #w-node-_9fd108d9-9ba3-2d3e-ed49-a29580cc78ee-3ab0add8, #w-node-c8f5dbd5-dac0-5991-74b3-20af90ec6c46-3f47c6b0, #w-node-c28b2423-39e6-e9f2-20d1-1810a2b79034-3f47c6b0, #w-node-e2356533-ec56-f7f1-8809-53fae802a9af-3f47c6b0, #w-node-_4f82b62d-5e48-d92d-53d4-c8227d4a2003-3f47c6b0, #w-node-_4f82b62d-5e48-d92d-53d4-c8227d4a2011-3f47c6b0, #w-node-_99d89f94-06f3-48b3-54df-7c42206ca389-3f47c6b0, #w-node-_99d89f94-06f3-48b3-54df-7c42206ca397-3f47c6b0, #w-node-b0d77ff7-fd51-e9e4-9570-da1821577a4c-3f47c6b0, #w-node-b0d77ff7-fd51-e9e4-9570-da1821577a5e-3f47c6b0, #w-node-_0559f3d4-b67c-1f8d-2a32-ea10dd97b8c9-3f47c6b0, #w-node-fe7ea737-cc6d-00bf-2348-648dd35577b6-3f47c6b0, #w-node-e2e2a13e-9516-30f6-1093-b2bde5ba48dc-3f47c6b0, #w-node-_4e527a63-7181-97df-427b-8bca4394e4c7-3f47c6b0, #w-node-af9909ca-a483-50c3-8525-c7d8b061d0cd-55f8ab62, #w-node-_3c860e7c-698f-5606-2a45-b006c887fa10-55f8ab62, #w-node-_76f24f10-a607-ca12-e3bd-a5e67e6e0f9b-55f8ab62, #w-node-d414e2de-b238-e714-6246-068b0d786126-55f8ab62, #w-node-e2664a3b-9aea-d028-20ac-3ead7b37bae0-b415e416 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e2664a3b-9aea-d028-20ac-3ead7b37bae1-b415e416 {
  order: 9999;
}

#w-node-e2664a3b-9aea-d028-20ac-3ead7b37bae6-b415e416, #w-node-e2664a3b-9aea-d028-20ac-3ead7b37baea-b415e416, #w-node-_33565e47-fb26-69d1-123b-bc18d694d7a2-75f21894 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_17f94265-9e71-70dd-1951-5dfa10aa7ca7-4fd4d9bd {
    grid-row: span 1 / span 1;
  }

  #w-node-e4dbcf3a-72a9-c43c-0cd1-446669c5d5ad-4fd4d9bd {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-bd3813ba-accc-3c35-dee1-005c39242257-4fd4d9bd {
    order: -9999;
  }

  #w-node-_591f5f05-d8cc-dff5-b124-7ee3a6d65302-4fd4d9bd, #w-node-_591f5f05-d8cc-dff5-b124-7ee3a6d6530b-4fd4d9bd, #w-node-_591f5f05-d8cc-dff5-b124-7ee3a6d65314-4fd4d9bd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_8a49e872-fde6-d27b-2f6c-f9f6bd4c3161-bd4c315b {
    order: 9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d302dbe1-ffe8-beaa-0b2f-dff2e8e7d88f-bd4c315b, #w-node-d302dbe1-ffe8-beaa-0b2f-dff2e8e7d898-bd4c315b, #w-node-d302dbe1-ffe8-beaa-0b2f-dff2e8e7d8a1-bd4c315b, #w-node-_51496c98-81f6-3bf3-6c8f-5b6e138aa0f9-25681fac, #w-node-eb2e3a7a-264e-83de-999c-90d2ad78440b-25681fac, #w-node-ed627eaa-4470-cdce-3786-b0a2d82b1af8-25681fac, #w-node-a7631a2a-579b-3f74-fad8-b0a7393992d2-25681fac, #w-node-d00ab2b1-3624-dbbe-42f5-647b7ff9fc26-107e3dbe, #w-node-d00ab2b1-3624-dbbe-42f5-647b7ff9fc2f-107e3dbe {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a4a5768d-c07e-0e9c-e86a-aeb1b000e20b-3ab0add8 {
    order: -9999;
  }

  #w-node-c28b2423-39e6-e9f2-20d1-1810a2b79034-3f47c6b0, #w-node-_4f82b62d-5e48-d92d-53d4-c8227d4a2003-3f47c6b0, #w-node-_99d89f94-06f3-48b3-54df-7c42206ca389-3f47c6b0, #w-node-b0d77ff7-fd51-e9e4-9570-da1821577a4c-3f47c6b0, #w-node-e2664a3b-9aea-d028-20ac-3ead7b37bae4-b415e416 {
    order: 9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_17f94265-9e71-70dd-1951-5dfa10aa7ca7-4fd4d9bd {
    grid-row: span 1 / span 1;
  }

  #w-node-e4dbcf3a-72a9-c43c-0cd1-446669c5d5ad-4fd4d9bd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_591f5f05-d8cc-dff5-b124-7ee3a6d65302-4fd4d9bd, #w-node-_591f5f05-d8cc-dff5-b124-7ee3a6d6530b-4fd4d9bd, #w-node-_591f5f05-d8cc-dff5-b124-7ee3a6d65314-4fd4d9bd, #w-node-d302dbe1-ffe8-beaa-0b2f-dff2e8e7d88f-bd4c315b, #w-node-d302dbe1-ffe8-beaa-0b2f-dff2e8e7d898-bd4c315b, #w-node-d302dbe1-ffe8-beaa-0b2f-dff2e8e7d8a1-bd4c315b {
    grid-row: span 1 / span 1;
  }

  #w-node-_027ee7ce-fffa-7f2b-0ee9-29f4d045ec40-d045ec2c {
    grid-column: span 1 / span 1;
  }

  #w-node-_51496c98-81f6-3bf3-6c8f-5b6e138aa0f9-25681fac, #w-node-eb2e3a7a-264e-83de-999c-90d2ad78440b-25681fac, #w-node-ed627eaa-4470-cdce-3786-b0a2d82b1af8-25681fac, #w-node-a7631a2a-579b-3f74-fad8-b0a7393992d2-25681fac, #w-node-d00ab2b1-3624-dbbe-42f5-647b7ff9fc26-107e3dbe {
    grid-row: span 1 / span 1;
  }

  #w-node-d00ab2b1-3624-dbbe-42f5-647b7ff9fc2f-107e3dbe {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a4a5768d-c07e-0e9c-e86a-aeb1b000e209-3ab0add8 {
    order: -9999;
  }
}


@font-face {
  font-family: 'Plus Jakarta Custom (variable)';
  src: url('../fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora Variablefont Wght';
  src: url('../fonts/Lora-VariableFont_wght.ttf') format('truetype'), url('../fonts/Lora-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Libre Bodoni Custom';
  src: url('../fonts/LibreBodoni-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Libre Bodoni Custom';
  src: url('../fonts/LibreBodoni-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Libre Bodoni Custom';
  src: url('../fonts/LibreBodoni-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Libre Bodoni Custom';
  src: url('../fonts/LibreBodoni-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Libre Bodoni Custom';
  src: url('../fonts/LibreBodoni-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Libre Bodoni Custom';
  src: url('../fonts/LibreBodoni-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Libre Bodoni Custom';
  src: url('../fonts/LibreBodoni-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Libre Bodoni Custom';
  src: url('../fonts/LibreBodoni-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat Variablefont Wght';
  src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}