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

@font-face {
  font-family: Relative;
  src: url('../fonts/Relative-Book.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: Montserrat Custom;
  src: url('../fonts/Montserrat-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

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

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

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

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

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

:root {
  --dark-grey: #161616;
  --black: #1a1a1a;
  --gainsboro: #e9e6e6;
  --aquamarine: #00b8eb;
  --black-2: #272727;
  --dark-turquoise: #00c8d6;
  --maroon: #460010;
  --indian-red: #ee3f42;
  --light-sea-green: #03b3c0;
}

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

body {
  color: var(--dark-grey);
  font-family: Relative, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

h1 {
  color: var(--dark-grey);
  letter-spacing: -2.4px;
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 72px;
  font-weight: 500;
  line-height: 80px;
}

h2 {
  letter-spacing: -1.92px;
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 64px;
  font-weight: 500;
  line-height: 72px;
}

h3 {
  letter-spacing: -1.68px;
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 56px;
  font-weight: 500;
  line-height: 64px;
}

h4 {
  letter-spacing: -.64px;
  margin-top: 8px;
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

h5 {
  letter-spacing: -.48px;
  margin-top: 8px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

h6 {
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

p {
  letter-spacing: -.32px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.nav-text-hover {
  color: #0a0a0a;
  letter-spacing: .28px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}

.button {
  color: #fff;
  letter-spacing: .8px;
  text-transform: uppercase;
  background-color: #000;
  border: 2px solid #000;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  transition: all .4s;
}

.button:hover {
  background-color: #161616;
  transform: translate(0, -2px);
  box-shadow: 0 1px 3px #00000026;
}

.button.button-white {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}

.button.button-white.small {
  padding: 12px 24px;
  font-size: 14px;
}

.button.secondary {
  color: #000;
  background-color: #fff;
}

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

.button.secondary.small {
  text-align: center;
  flex: 1;
  padding: 12px 24px;
  font-size: 14px;
  text-decoration: none;
}

.button.secondary.small.nav-cta {
  z-index: 2000;
  flex: 0 auto;
}

.button.secondary.small.nav-cta.hide {
  display: none;
}

.button.secondary.button-white {
  color: #fff;
  background-color: #0a0a0a;
}

.button.secondary.button-white.right-32:hover {
  background-color: #ffffff0d;
}

.button.secondary.right-32:hover {
  background-color: #16161626;
}

.button.right-32 {
  margin-right: 32px;
}

.text-purple {
  color: #6248ff;
}

.paragraph-l {
  letter-spacing: -.48px;
  font-size: 24px;
}

.text-white {
  color: #fff;
  margin-top: 10px;
}

.text-link {
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: underline;
}

.text-link.text-white {
  color: #fff;
  cursor: pointer;
  flex-wrap: nowrap;
  display: inline-block;
}

.text-link.text-light-grey.privacy-policy {
  margin-bottom: 0;
}

.nav-link {
  color: #000;
  letter-spacing: .7px;
  text-transform: uppercase;
  padding: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.menu-nav-wrap {
  width: 100%;
}

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

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

.text-centred.margin-xxl {
  margin-bottom: 80px;
}

.badge-text {
  color: #000;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  text-decoration: none;
}

.badge-text.text-grey {
  color: #000000bf;
}

.home {
  width: 124px;
  height: 33.33px;
  position: relative;
}

.paragraph-m {
  letter-spacing: -.4px;
  font-size: 20px;
}

.close-button {
  background-color: #161616;
  border: 2px solid #fff;
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  inset: 24px 40px auto auto;
}

.menu-container {
  z-index: 1000;
  background-color: #161616;
  justify-content: flex-start;
  align-items: flex-start;
  width: 560px;
  padding: 104px 64px;
  display: flex;
  position: fixed;
  inset: 0% 0% 0% auto;
  overflow: scroll;
}

.section {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.section.light-purple {
  background-color: #f5f3ff;
}

.section.black {
  z-index: 1;
  background-color: var(--black);
}

.section.black.confirmation-page {
  height: 100vh;
  padding-top: 180px;
  display: flex;
}

.section.light-orange {
  background-color: #fff3ef;
}

.section.footer {
  z-index: 99;
  background-color: #0a0a0a;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: relative;
}

.section.grain {
  background-image: url('../images/Grain_Latest.png');
  background-position: 0 0;
  background-size: 300px 300px;
}

.section.grain.padding-top-40 {
  padding-top: 40px;
}

.section.grain.subpage-hero {
  padding-top: 160px;
}

.section.lightgrey {
  background-color: var(--gainsboro);
  display: flex;
}

.section.blue {
  background-color: var(--aquamarine);
  display: flex;
}

.section.grey {
  z-index: 1;
  background-color: var(--black-2);
  display: block;
}

.section.grey.confirmation-page {
  height: 100vh;
  padding-top: 180px;
  display: flex;
}

.section.grey.alt {
  display: block;
}

.text-orange {
  color: #ff7448;
}

.nav-text {
  color: #0a0a0a;
  letter-spacing: .28px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}

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

.nav-text-wrap {
  height: 20px;
  text-decoration: none;
  overflow: hidden;
}

.nav-link-dope-edition {
  padding: 16px;
  text-decoration: none;
}

.nav-link-dope-edition.right-32 {
  margin-right: 16px;
}

.badge {
  background-color: #d8d5d1;
  border-radius: 8px;
  padding: 6px 8px;
  display: inline-block;
}

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

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

.container {
  z-index: 2;
  width: 70vw;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.container.small {
  max-width: 920px;
}

.container.small.flex {
  justify-content: flex-start;
  align-items: flex-start;
}

.container.small.flex.invert {
  filter: invert();
}

.container.centred {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container.static {
  position: static;
}

.container.invert {
  filter: invert();
}

.text-light-grey {
  color: #ffffffa6;
}

.text-light-grey.dark {
  color: var(--dark-grey);
}

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

.margin-xs {
  margin-bottom: 12px;
}

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

.margin-xl {
  margin-bottom: 56px;
}

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

.heading-2 {
  color: #fff;
  text-align: center;
  font-size: 40px;
}

.process-image {
  background-image: url('../images/Process_step_background.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 240px;
  display: flex;
}

.step {
  flex: none;
  justify-content: flex-start;
  align-items: center;
  min-width: 120px;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.process-wrapper {
  position: relative;
}

.text-area {
  color: #fff;
  background-color: #ffffff0d;
  border: 2px solid #ffffff0d;
  border-radius: 8px;
  min-height: 120px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.text-area:hover {
  border-color: #ffffff40;
}

.text-area:focus {
  background-color: #fff0;
  border-color: #fff;
}

.text-area.margin-l {
  transition: all .4s;
}

.relume-logo-primary-white {
  z-index: 0;
  color: #fff;
  position: absolute;
  inset: 0%;
}

.benefits-wrapper-2 {
  flex-direction: column;
  align-items: flex-start;
}

.relume-logo-secondary-black {
  z-index: 1;
  color: #000;
  position: absolute;
  inset: 0%;
}

.heading-2-small {
  font-size: 56px;
  line-height: 64px;
}

.success-message {
  background-color: #ffffff26;
  border-radius: 16px;
  padding: 24px;
}

.benefits-icon {
  margin-bottom: 16px;
  margin-right: 0;
}

.step-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.footer-credits {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

.wrapper {
  position: relative;
}

.wrapper.footer-logo {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.fixed-cta {
  z-index: 500;
  color: #fff;
  letter-spacing: .8px;
  text-transform: uppercase;
  background-color: #0a0a0a;
  border: 2px solid #000;
  border-radius: 8px;
  align-items: center;
  padding: 12px 20px 12px 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .4s;
  display: flex;
  position: fixed;
  top: 24px;
  right: 5vw;
  box-shadow: 0 2px 6px #0000001a;
}

.fixed-cta:hover {
  transform: translate(0, -2px);
  box-shadow: 0 1px 3px #00000026;
}

.field-label {
  color: #fff;
  letter-spacing: .8px;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 12px;
}

._3-col-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.page-wrapper {
  overflow: hidden;
  transform: translate(0);
}

.relume-logo-secondary {
  z-index: 1;
  color: #fff;
  position: absolute;
  inset: 0%;
}

.navbar-container {
  z-index: 2;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr .25fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.navbar-container.navbar-container-confirmation-page {
  grid-template-columns: 2.25fr;
  justify-items: center;
}

.step-heading {
  color: var(--aquamarine);
  font-size: 28px;
  line-height: 140%;
}

.step-heading.margin-xs, .step-heading.margin-xs.invert {
  color: var(--aquamarine);
}

.step-heading.margin-xs.invert-dark {
  color: #c90003;
}

.step-heading.mittel {
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 13px #0000004d;
}

.step-heading.mittig {
  margin-left: auto;
  margin-right: auto;
}

.circle-blur-bottom-right-2 {
  z-index: -1;
  filter: blur(100px);
  background-image: linear-gradient(132deg, #ff7448 26%, #ff4848 51%, #6248ff 75%);
  border-radius: 500px;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 440px;
  height: 440px;
  display: flex;
  position: absolute;
  inset: auto 0% -15% auto;
}

.circle-blur-bottom-right-2.turqoise {
  z-index: 0;
  opacity: .97;
  filter: invert() blur(64px) blur(64px);
}

.circle-blur-bottom-right-2.turqoise._50 {
  opacity: .46;
}

.footer-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.center-div {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.center-div.max-720w {
  max-width: 720px;
}

.text-field {
  color: #fff;
  background-color: #ffffff0d;
  border: 2px solid #ffffff0d;
  border-radius: 8px;
  height: 48px;
  font-size: 16px;
  line-height: 24px;
}

.text-field:hover {
  border-color: #ffffff40;
}

.text-field:focus {
  background-color: #fff0;
  border-color: #fff;
}

.text-field.margin-s {
  transition: all .4s;
}

.navbar {
  z-index: 100;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 96px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
  transform: translate(0);
}

.relume-logo-primary {
  z-index: 0;
  color: #000;
  position: absolute;
  inset: 0%;
}

.black-line {
  background-color: var(--black);
  width: 2px;
  height: 72px;
  position: absolute;
  left: 19px;
  right: 20px;
}

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

.black-line.grey {
  background-color: var(--black-2);
}

.grey-line {
  background-color: #ffffff26;
  width: 2px;
  height: 100%;
  position: relative;
}

.step-info {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: static;
}

.timeline-wrapper {
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 100%;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.fixed-cta-container {
  z-index: 1000;
  width: 90%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: fixed;
  inset: 24px 0% auto;
}

.error-message {
  color: #e01e1e;
  border-radius: 8px;
}

.success-message-text {
  color: #fff;
  text-align: left;
  font-family: Relative, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.white-line {
  background-color: #fff;
  width: 2px;
  height: 100%;
  position: absolute;
  inset: 0%;
}

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

.paragraph-s {
  font-size: 14px;
}

.paragraph-s.text-light-grey {
  margin-bottom: 0;
}

.faq-top {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.body {
  background-color: #fff;
  font-family: Montserrat Custom, sans-serif;
}

.confirmation-heading-wrapper {
  color: #fff;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.confirmation-page-subheading {
  color: #fff;
  text-align: center;
  max-width: 560px;
  margin-bottom: 24px;
  font-size: 24px;
}

.image-9 {
  margin-right: 16px;
}

.image-9.invert {
  filter: invert();
}

.menu {
  z-index: 2000;
  display: none;
  position: relative;
}

.image-6 {
  filter: invert();
  width: 20px;
  height: 20px;
  margin-right: 12px;
}

.max-800w {
  max-width: 800px;
}

.step-1-info-wrapper {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  display: flex;
}

.step-1-info-wrapper.light {
  border-right-color: var(--dark-grey);
  border-bottom-color: var(--black);
}

.step-2-info-wrapper {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  display: flex;
}

.step-2-info-wrapper.light {
  border-bottom-color: var(--dark-grey);
  border-left-color: var(--dark-grey);
}

.step-3-info-wrapper {
  flex: 1;
  align-items: center;
  display: flex;
}

.step-4-info-wrapper, .step-5-info-wrapper {
  border: 2px solid #fff;
  border-radius: 16px;
  flex: 1;
  align-items: center;
  padding: 24px;
  display: flex;
}

.step-1-number {
  z-index: 2;
  color: #fff;
  text-align: center;
  border: 8px #161616;
  border-left: 1px #000;
  border-right: 1px #000;
  width: 40px;
  font-size: 22px;
  position: relative;
  overflow: hidden;
}

.step-1-number.dark {
  color: var(--black);
}

.step-2-number {
  z-index: 2;
  color: #fff;
  text-align: center;
  border: 8px #161616;
  border-left: 1px #000;
  border-right: 1px #000;
  width: 40px;
  font-size: 22px;
  position: relative;
  overflow: hidden;
}

.step-2-number.dark {
  color: var(--dark-grey);
}

.step-3-number {
  z-index: 2;
  color: #fff;
  text-align: center;
  border: 8px #161616;
  border-left: 1px #000;
  border-right: 1px #000;
  width: 40px;
  font-size: 22px;
  position: relative;
  overflow: hidden;
}

.step-4-number, .step-5-number {
  z-index: 2;
  border: 8px #161616;
  border-left: 1px #000;
  border-right: 1px #000;
  position: relative;
  overflow: hidden;
}

.contact-button-footer {
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  text-decoration: none;
}

.header {
  background-image: url('../images/silke-dzuban-sw2-header.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: row;
  align-items: center;
  height: 100vh;
  display: flex;
  position: relative;
}

.header.impressum {
  background-image: none;
  align-items: stretch;
}

.wrapper-70vw {
  z-index: 1;
  width: 70vw;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.wrapper-70vw.head {
  position: absolute;
  inset: auto 0% 12%;
}

.name {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 40px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 150px;
  font-weight: 700;
  line-height: 100%;
}

.image-10 {
  width: 50px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 4% 0% auto;
}

.label {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0;
}

.label.margin-b {
  margin-bottom: 25px;
}

.label.dark {
  color: var(--black);
}

.label.dark.blendout {
  opacity: 0;
}

.label.space {
  margin-top: 7px;
}

.label.caps {
  text-transform: uppercase;
}

.label.klein {
  text-transform: none;
}

.list {
  color: var(--aquamarine);
  margin-bottom: 0;
  padding-left: 20px;
}

.list.light {
  color: var(--dark-turquoise);
}

.list.invert {
  color: var(--maroon);
}

.list.margin-b {
  margin-bottom: 25px;
}

.list.grey {
  color: var(--black-2);
}

.textlink {
  color: var(--aquamarine);
  text-decoration: none;
}

.textlink.invert {
  color: var(--indian-red);
}

.textlink.dark {
  color: var(--black);
}

.textlink.white {
  font-size: 16px;
}

.link {
  text-decoration: none;
}

.grid {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.kachel {
  background-color: #e9e6e640;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  margin-bottom: 4px;
  padding: 36px;
  display: flex;
}

.kachel.light {
  border-right-color: var(--dark-grey);
  border-bottom-color: var(--black);
}

.kachel.dunkler {
  background-color: #e9e6e624;
}

.kachel.da {
  background-color: var(--dark-turquoise);
}

.kachel-r {
  border-bottom: 1px solid #fff;
  flex: 1;
  align-items: center;
  padding: 24px;
  display: flex;
}

.kachel-r.light {
  border-right-color: var(--dark-grey);
  border-bottom-color: var(--black);
}

.wrap-projekte {
  z-index: 3;
  display: flex;
  position: relative;
}

.wrap-projekte.m {
  display: none;
}

.wrapper-kacheln-l {
  width: 50%;
  margin-right: 4px;
}

.wrap-kacheln-r {
  width: 50%;
  margin-bottom: 4px;
}

.link-2 {
  text-decoration: none;
}

.social-icons {
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: absolute;
  inset: auto 0% 5%;
}

.social-icons.static {
  position: static;
}

.social-icon {
  width: 30px;
}

.social-icon.margin-r {
  width: 25px;
  margin-right: 20px;
}

.social-icon.smaller {
  width: 25px;
}

.social-icon.kontakt {
  width: 20px;
}

.trenner {
  background-color: #fff;
  width: 200px;
  height: 1px;
  margin-top: 50px;
}

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

.trenner.kontakt {
  width: 100px;
  height: 2px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

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

.div-block-4 {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.name-outline {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 150px;
  font-weight: 700;
  line-height: 100%;
}

.div-block-5 {
  align-items: center;
  display: flex;
}

.div-block-6 {
  flex-direction: column;
  display: flex;
}

.div-block-7 {
  background-color: #fff;
  padding: 70px;
  position: absolute;
  inset: auto 10% 20% auto;
}

.svg {
  color: var(--aquamarine);
  width: 25px;
  margin-right: 10px;
}

.svg.white {
  margin-top: 4px;
}

.wrap-kontakt {
  align-items: center;
  display: flex;
}

.wrap-kontakt.margin-r {
  margin-right: 50px;
  display: flex;
}

.white {
  color: #fff;
}

.div-block-8 {
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  display: flex;
}

.div-block-9 {
  height: 100vh;
}

.footer {
  background-color: var(--dark-grey);
  justify-content: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

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

.div-block-10 {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.h5 {
  color: var(--aquamarine);
  letter-spacing: 0;
  font-size: 24px;
  line-height: 140%;
}

.h5.margin-xs, .h5.margin-xs.invert {
  color: var(--aquamarine);
}

.h5.margin-xs.invert-dark {
  color: #c90003;
}

.h5.mittel {
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 13px #0000004d;
}

.h5.mittig {
  margin-left: auto;
  margin-right: auto;
}

.h5.white {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}

.wrap-banner {
  z-index: 99;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--aquamarine);
  object-fit: fill;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2.2rem 2.7rem;
  display: flex;
  position: fixed;
  inset: auto 0% 2rem auto;
  box-shadow: 6px 8px 13px #0003;
}

.close {
  color: #fff;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.kachel-copy {
  background-color: #e9e6e640;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  margin-bottom: 4px;
  padding: 36px;
  display: flex;
}

.kachel-copy.light {
  border-right-color: var(--dark-grey);
  border-bottom-color: var(--black);
}

.kachel-copy.dunkler {
  background-color: #e9e6e624;
}

.kachel-copy.da {
  background-color: var(--dark-turquoise);
}

.textlink-2 {
  color: #00b8eb;
  text-decoration: none;
}

.textlink-2.white {
  font-size: 16px;
}

.textlink-2.white.banner {
  color: #fff;
}

.wrap-banner-2 {
  z-index: 99;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  object-fit: fill;
  background-color: #00b8eb;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2.2rem 2.7rem;
  display: flex;
  position: fixed;
  inset: auto 0% 2rem auto;
  box-shadow: 6px 8px 13px #0003;
}

.h5-2 {
  color: #00b8eb;
  letter-spacing: 0;
  font-size: 24px;
  line-height: 140%;
}

.h5-2.white {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}

.h5-2.white.popup {
  margin-bottom: 10px;
}

.svg-2 {
  color: #00b8eb;
  width: 25px;
  margin-right: 10px;
}

.svg-2.white {
  margin-top: 4px;
}

.trennliniie-popup {
  background-color: var(--gainsboro);
  align-self: stretch;
  height: 1px;
}

.wrap-banner-3 {
  z-index: 99;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #00b8eb;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 30rem;
  padding: 2.2rem 2.7rem;
  display: flex;
  position: fixed;
  inset: auto 0% 2rem auto;
  box-shadow: 6px 8px 13px #0003;
}

@media screen and (min-width: 1280px) {
  .section {
    object-fit: fill;
    width: auto;
  }

  .section.black {
    z-index: 1;
  }

  .section.footer, .section.blue {
    width: auto;
  }

  .section.grey {
    z-index: 1;
  }

  .container {
    width: 60vw;
  }

  .step-1-number {
    color: #fff;
  }

  .header {
    width: auto;
    overflow: hidden;
  }

  .wrapper-70vw {
    width: 80vw;
  }

  .image-10 {
    width: 80px;
  }

  .list {
    color: #03deee;
  }

  .kachel {
    padding: 51px;
  }

  .trenner {
    height: 2px;
  }

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

  .wrap-banner {
    display: none;
  }

  .kachel-copy {
    padding: 51px;
  }

  .wrap-banner-2, .wrap-banner-3 {
    display: flex;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 64px;
    line-height: 72px;
  }

  h2 {
    font-size: 56px;
    line-height: 64px;
  }

  h3 {
    font-size: 48px;
    line-height: 56px;
  }

  .paragraph-l {
    font-size: 20px;
  }

  .text-centred.margin-xxl {
    margin-bottom: 64px;
  }

  .paragraph-m {
    font-size: 18px;
  }

  .section {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .section.footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section.grain.subpage-hero {
    padding-top: 120px;
  }

  .container {
    width: 85vw;
  }

  .container.small.flex {
    width: 100%;
    max-width: none;
  }

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

  .step {
    min-width: 80px;
  }

  .heading-2-small {
    font-size: 56px;
    line-height: 64px;
  }

  .fixed-cta {
    position: static;
    top: 16px;
  }

  ._3-col-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .navbar-container {
    display: flex;
  }

  .navbar-container.navbar-container-confirmation-page {
    justify-content: center;
  }

  .step-heading {
    font-size: 22px;
  }

  .circle-blur-bottom-right-2 {
    opacity: .9;
    filter: blur(64px);
    width: 320px;
    height: 320px;
  }

  .navbar {
    height: 80px;
  }

  .fixed-cta-container {
    z-index: 1000;
    justify-content: flex-end;
    display: flex;
    inset: 16px 0% auto;
  }

  .confirmation-page-subheading {
    font-size: 20px;
  }

  .image-9 {
    width: 48px;
  }

  .step-2-info-wrapper, .step-3-info-wrapper, .step-4-info-wrapper, .step-5-info-wrapper {
    align-items: flex-start;
  }

  .header {
    height: 70vh;
  }

  .header.impressum {
    background-image: none;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
  }

  .wrapper-70vw {
    width: 100vw;
    padding-left: 30px;
    padding-right: 30px;
  }

  .name {
    margin-right: 15px;
    font-size: 80px;
  }

  .list.invert.margin-r {
    margin-right: 50px;
  }

  .kachel, .kachel-r {
    align-items: flex-start;
  }

  .trenner.kontakt {
    margin-top: 24px;
  }

  .name-outline {
    font-size: 80px;
  }

  .div-block-6 {
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
  }

  .div-block-7 {
    width: 100vw;
    position: static;
    inset: auto 0% 0%;
  }

  .div-block-8 {
    margin-top: 25px;
  }

  .div-block-9 {
    height: 100vh;
  }

  .footer {
    position: static;
  }

  .h5 {
    font-size: 22px;
  }

  .kachel-copy {
    align-items: flex-start;
  }

  .h5-2 {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
    line-height: 56px;
  }

  h2 {
    font-size: 40px;
    line-height: 48px;
  }

  h3 {
    font-size: 36px;
    line-height: 44px;
  }

  h4 {
    font-size: 24px;
    line-height: 32px;
  }

  .button {
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 15px;
  }

  .text-centred.margin-xxl {
    margin-bottom: 48px;
  }

  .paragraph-m.text-white.margin-m {
    margin-bottom: 16px;
  }

  .close-button {
    right: 24px;
  }

  .menu-container {
    width: 100%;
    padding: 80px 5vw;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

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

  .margin-xxl {
    margin-bottom: 56px;
  }

  .heading-2 {
    font-size: 20px;
    line-height: 28px;
  }

  .process-image {
    background-image: url('../images/Process-Image-Background-Mobile.png');
    background-size: cover;
    width: 100%;
    margin-bottom: 24px;
  }

  .step {
    min-width: 60px;
    left: 16px;
  }

  .heading-2-small {
    font-size: 40px;
    line-height: 48px;
  }

  .footer-credits {
    flex-direction: column-reverse;
  }

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

  .step-heading {
    font-size: 18px;
  }

  .step-heading.margin-xs {
    margin-bottom: 8px;
  }

  .circle-blur-bottom-right-2 {
    filter: blur(60px);
    width: 280px;
    height: 280px;
    bottom: 5%;
  }

  .footer-wrapper.margin-xl {
    grid-template-columns: 3fr;
  }

  .step-info {
    margin-left: 0;
  }

  .confirmation-heading-wrapper {
    margin-bottom: 16px;
  }

  .image-9 {
    width: 40px;
  }

  .menu {
    display: none;
  }

  .step-1-info-wrapper, .step-2-info-wrapper, .step-3-info-wrapper, .step-4-info-wrapper, .step-5-info-wrapper {
    flex-direction: column;
    padding: 16px;
  }

  .header {
    height: 90vh;
  }

  .header.impressum {
    justify-content: space-between;
  }

  .name {
    margin-right: 5px;
    font-size: 40px;
  }

  .kachel {
    flex-direction: column;
  }

  .kachel-r {
    flex-direction: column;
    padding: 16px;
  }

  .wrap-projekte {
    display: none;
  }

  .wrap-projekte.m {
    display: flex;
  }

  .wrapper-kacheln-l {
    width: 100%;
  }

  .social-icon {
    width: 20px;
  }

  .trenner.kontakt {
    height: 1px;
  }

  .name-outline {
    font-size: 40px;
  }

  .wrap-kontakt.margin-r {
    margin-right: 25px;
  }

  .h5 {
    font-size: 18px;
  }

  .h5.margin-xs {
    margin-bottom: 8px;
  }

  .kachel-copy {
    flex-direction: column;
  }

  .h5-2 {
    font-size: 18px;
  }

  .wrap-banner-3 {
    max-width: 90%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 40px;
    line-height: 48px;
  }

  h2 {
    font-size: 36px;
    line-height: 44px;
  }

  h3 {
    font-size: 32px;
    line-height: 40px;
  }

  .paragraph-l {
    font-size: 18px;
  }

  .section.blue {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .text-light-grey.dark.mittel-m, .heading-2 {
    text-align: center;
  }

  .step {
    min-width: 20px;
  }

  .heading-2-small {
    font-size: 36px;
    line-height: 44px;
  }

  .benefits-icon {
    width: 32px;
    margin-bottom: 0;
    margin-right: 12px;
  }

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

  .fixed-cta {
    padding: 10px 14px;
    font-size: 13px;
    top: 18px;
  }

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

  .circle-blur-bottom-right-2.turqoise {
    bottom: -7%;
    right: -15%;
  }

  .icon-image-wrapper {
    align-items: center;
    display: flex;
  }

  .icon-image-wrapper.margin-s {
    flex-direction: column;
    align-items: flex-start;
  }

  .black-line {
    left: 9px;
  }

  .timeline-wrapper {
    width: 20px;
  }

  .faq-top {
    align-items: flex-start;
  }

  .confirmation-page-subheading {
    font-size: 18px;
  }

  .image-9 {
    width: 32px;
  }

  .image-6 {
    display: none;
  }

  .step-1-number, .step-2-number, .step-3-number {
    width: 20px;
  }

  .header {
    height: 60vh;
  }

  .wrapper-70vw {
    padding-left: 20px;
    padding-right: 20px;
  }

  .textlink.white.banner {
    font-size: 14px;
  }

  .kachel {
    flex-direction: column;
  }

  .wrap-projekte {
    display: none;
  }

  .wrap-projekte.m {
    flex-direction: column;
    display: flex;
  }

  .wrapper-kacheln-l {
    width: 100%;
  }

  .social-icons {
    align-items: center;
  }

  .social-icons.static {
    margin-top: 12px;
  }

  .social-icon.margin-r {
    margin-right: 10px;
  }

  .div-block-6 {
    flex-direction: column;
  }

  .div-block-7 {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    display: flex;
  }

  .svg.white.banner {
    width: 20px;
    margin-right: 5px;
  }

  .wrap-kontakt.margin-r.top {
    margin-top: 6px;
  }

  .wrap-kontakt.top {
    margin-top: 12px;
  }

  .wrap-kontakt.margin-r {
    margin-right: 0;
  }

  .div-block-8 {
    flex-direction: column;
    align-items: center;
    margin-top: 12px;
  }

  .div-block-10 {
    height: 50%;
  }

  .wrap-banner {
    width: 85vw;
  }

  .kachel-copy {
    flex-direction: column;
  }

  .textlink-2.white.banner {
    font-size: 14px;
  }

  .svg-2.white.banner {
    width: 20px;
    margin-right: 5px;
  }

  .wrap-banner-3 {
    max-width: 80%;
  }
}

#w-node-_30c8d968-55fe-8251-987b-0e377becbfc6-5d5b476f, #w-node-b535d347-7343-6ea2-df09-797d0e244cf6-5d5b476f, #w-node-_62a95de7-45ae-006a-1ea9-fe2051f6fad4-5d5b476f {
  grid-area: 1 / 3 / 2 / 11;
}

@media screen and (max-width: 991px) {
  #w-node-b282fa53-c876-a363-d487-995c7a386351-5d5b476f {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-b282fa53-c876-a363-d487-995c7a386351-5d5b476f {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-b282fa53-c876-a363-d487-995c7a3865a3-5d5b476f {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-b282fa53-c876-a363-d487-995c7a3865a5-5d5b476f {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_8591a0aa-421e-d9b2-d96d-e131e2805223-a65b4771, #w-node-_8591a0aa-421e-d9b2-d96d-e131e2805225-a65b4771 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Relative';
  src: url('../fonts/Relative-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Relative';
  src: url('../fonts/Relative-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Relative';
  src: url('../fonts/Relative-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat Custom';
  src: url('../fonts/Montserrat-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat Custom';
  src: url('../fonts/Montserrat-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat Custom';
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat Custom';
  src: url('../fonts/Montserrat-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat Custom';
  src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat Custom';
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat Custom';
  src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}