@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

figure {
  line-height: 0;
}

*, *::after, *::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scaleIn {
  0% {
    filter: blur(30px);
    transform: scale(1.1);
  }
  100% {
    filter: blur(0) brightness(1);
    transform: scale(1);
  }
}
@keyframes fullWidth {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes fullWidth {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes rotatePulse {
  0% {
    transform: scale(1) rotate(-15deg);
  }
  50% {
    transform: scale(0.95) rotate(15deg);
  }
  100% {
    transform: scale(1) rotate(-15deg);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0) translateY(-50%);
  }
  100% {
    transform: rotate(360deg) translateY(-50%);
  }
}
@font-face {
  font-family: "Repro";
  src: url("../fonts/ABCRepro-Regular.otf");
  font-weight: normal;
}
@font-face {
  font-family: "Repro";
  src: url("../fonts/ABCRepro-RegularItalic.otf");
  font-weight: normal;
  font-style: italic; /* Beachten Sie die Hinzufügung von font-style: italic für kursiven Text */
}
:root {
  --base-font-size: 36px;
  --font-size-xs: 0.5em;
  --font-size-s: 0.667em;
  --font-size-m: 1.7em;
  --font-size-l: 2.107em;
  --font-size-xl: 5em;
  --unit: 30px;
  --dark:#125c45;
  --light: #41fda2;
  --primary-font: "Repro", sans-serif;
  --line-height: 1.1em;
}

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
  transition-duration: 1s;
}

em, i {
  font-style: italic;
}

a {
  text-underline-offset: 5px;
}

html, body {
  overflow-x: hidden;
}

html {
  background: var(--light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
}
html.info-active .info-wrapper {
  transform: translateX(0);
}
html.info-active .form-wrapper {
  transform: translateX(100%);
}
html.info-active .information-bar.left {
  transform: translateX(100%);
  background: var(--light);
}
html.info-active .information-bar.left .text {
  opacity: 0;
}
html.form-active .info-wrapper {
  transform: translateX(-100%);
}
html.form-active .form-wrapper {
  transform: translateX(0);
}
html.form-active .information-bar.right {
  transform: translateX(calc(-100vw - 5px));
  background: var(--dark);
}
html.form-active .information-bar.right .text {
  opacity: 0;
}
html.form-active .information-bar.left {
  transform: translateX(calc(-100vw + 100% - 5px));
}
html.started .step-nav {
  opacity: 1;
  pointer-events: all;
}
html.started form {
  padding-top: 250px;
}
html.started.finished form {
  padding-top: 2rem;
}
html.started.finished .step-nav {
  opacity: 0;
  pointer-events: none;
}

body {
  font-family: var(--primary-font);
  font-size: 100%;
  box-sizing: border-box;
  hyphens: none;
  color: var(--dark);
  line-height: var(--line-height);
  background: var(--light);
}

.container {
  padding-left: 8.333%;
  padding-right: 8.333%;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr); /* 12 gleich breite Spalten */
  gap: 3rem;
}

[class^=col-].align-end {
  align-items: flex-end;
  text-align: right;
}

/* Spaltenbreiten definieren */
.col-1 {
  grid-column: span 1;
}

.col-2 {
  grid-column: span 2;
}

.col-3 {
  grid-column: span 3;
}

.col-4 {
  grid-column: span 4;
}

.col-5 {
  grid-column: span 5;
}

.col-6 {
  grid-column: span 6;
}

.col-7 {
  grid-column: span 7;
}

.col-8 {
  grid-column: span 8;
}

.col-9 {
  grid-column: span 9;
}

.col-10 {
  grid-column: span 10;
}

.col-11 {
  grid-column: span 11;
}

.col-12 {
  grid-column: span 12;
}

.information-bar {
  width: 80px;
  height: 100svh;
  background: var(--light);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 101;
  cursor: pointer;
  transition: all 0.5s ease, background 0.1s;
  will-change: transform;
}
.information-bar .text {
  pointer-events: none;
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: -217px;
  transform: rotate(90deg);
  width: 62px;
  white-space: nowrap;
  text-align: center;
  display: flex;
  flex: 0 0 100%;
  transform-origin: center;
}
.information-bar.right .text {
  margin-top: -162px;
}
.information-bar.left {
  background: var(--dark);
}
.information-bar.left .text {
  color: var(--light);
}

.form-wrapper {
  width: 100%;
  overflow: hidden;
  z-index: 99;
  position: relative;
  background: var(--light);
  transition: transform 0.5s ease, height 0.3s ease;
  will-change: transform, height;
}

#multiStepForm {
  display: flex;
  flex-wrap: nowrap;
  width: 400vw; /* Anzahl der Steps * 100 */
  position: relative;
  transition: transform 0.5s ease, padding 0.5s 0.3s ease;
  align-items: flex-start; /* verhindert unnötiges Strecken */
}

.finished-content {
  opacity: 0;
  transition: all 0.3s 1s;
}

.step {
  flex: 0 0 100vw;
  box-sizing: border-box;
  padding: 2rem 7rem 4rem;
  position: relative;
}
.step h2 {
  opacity: 0;
  transition: opacity 1s 0.25s;
}
.step .teaser-text {
  opacity: 0;
  transition: opacity 1s 0.5s;
}
.step article {
  opacity: 0;
  transition: opacity 1s 0.75s;
}
.step.active h2, .step.active .teaser-text, .step.active article {
  opacity: 1;
}
.step.active .finished-content {
  opacity: 1;
}

.puffer {
  height: 200px;
}

.spacing-top-large {
  padding-top: 290px;
}

.spacing-top-big {
  padding-top: 180px;
}

.spacing-top {
  padding-top: 120px;
}

.spacing-top-small {
  padding-top: 60px;
}

h1, .xl-text {
  font-size: var(--font-size-xl);
  line-height: 0.9em;
  letter-spacing: -0.03em;
}

.lx-text {
  font-size: 3em;
  line-height: 0.9em;
}

h2 {
  margin-bottom: 1rem;
}

.uppercased, h2 {
  text-transform: uppercase;
}

.nav-buttons {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.btn {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: var(--dark);
  transition: all 0.2s;
  cursor: pointer;
}
.btn:hover {
  transform: scale(1.1);
}
.btn.prev-btn {
  background: var(--dark) url(../img/arrow-light-left.svg) no-repeat center center/40%;
}
.btn.next-btn {
  background: var(--dark) url(../img/arrow-light-right.svg) no-repeat center center/40%;
}

.round-btn {
  width: 285px;
  height: 285px;
  border-radius: 50%;
  transition: all 0.3s;
  background: var(--dark);
  color: var(--light);
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  font-size: var(--base-font-size);
  text-transform: uppercase;
  cursor: pointer;
}
.round-btn:hover {
  transform: scale(1.1);
}

.teaser-text {
  font-size: var(--font-size-m);
  line-height: 1em;
}

form {
  padding-top: 2rem;
}

input[type=text], input[type=email], input[type=number], textarea {
  border-width: 0 0 3px 0;
  border-color: var(--dark);
  border-style: solid;
  padding: 12px 0;
  color: var(--dark);
  border-radius: 0;
  -webkit-appearance: none;
  text-transform: uppercase;
  font-size: var(--base-font-size);
  display: block;
  background: none;
  width: 100%;
  margin-bottom: 30px;
  font-family: var(--primary-font);
}
input[type=text]::placeholder, input[type=email]::placeholder, input[type=number]::placeholder, textarea::placeholder {
  opacity: 0.5;
  color: var(--dark);
}
input[type=text]:focus, input[type=email]:focus, input[type=number]:focus, textarea:focus {
  outline: 0;
}
input[type=text].invalid, input[type=email].invalid, input[type=number].invalid, textarea.invalid {
  border-color: #F56F6C;
}
input[type=text].invalid::placeholder, input[type=email].invalid::placeholder, input[type=number].invalid::placeholder, textarea.invalid::placeholder {
  opacity: 1;
  color: #F56F6C;
}
input[type=text]:-webkit-autofill, input[type=email]:-webkit-autofill, input[type=number]:-webkit-autofill, textarea:-webkit-autofill {
  box-shadow: 0 0 0px 1000px var(--light) inset; /* Hintergrundfarbe überschreiben */
  -webkit-text-fill-color: var(--dark); /* Textfarbe */
  transition: background-color 5000s ease-in-out 0s; /* Workaround für Safari */
  background-color: var(--light) !important;
  -webkit-box-shadow: 0 0 0 1000px var(--light) inset;
  -webkit-text-fill-color: var(--dark) !important;
}

/* Chrome, Safari, Edge */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

textarea {
  min-height: 250px;
  font-family: var(--primary-font);
  line-height: 1em;
}

button {
  border: 0;
  font-family: var(--primary-font);
  line-height: 1em;
}

/* Navigation oben */
.step-nav {
  position: absolute;
  top: 90px;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s 0.5s ease;
  pointer-events: none;
  z-index: 1000;
  padding-left: 7rem;
  padding-right: 6rem;
}

.step-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.step-nav ul:before {
  height: 3px;
  background: var(--dark);
  left: 0;
  top: 50%;
  margin-top: -1.5px;
  width: 100%;
  content: "";
  position: absolute;
}

.step-nav .dot {
  width: 75px;
  position: relative;
  align-self: center;
  height: 75px;
  border-radius: 50%;
  cursor: pointer;
  background-color: var(--dark);
  transition: all 0.3s;
  pointer-events: none;
}
.step-nav .dot span {
  opacity: 0;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: var(--light);
}
.step-nav .dot:hover {
  transform: scale(1.1);
}

.step-nav .dot.active {
  pointer-events: all;
  width: 120px;
  height: 120px;
}
.step-nav .dot.active span {
  opacity: 1;
}

.step-nav .dot.done {
  pointer-events: all;
  background: var(--dark) url(../img/check.svg) no-repeat center center/34px;
}

.hint {
  margin-bottom: 1rem;
}

.checkboxes {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.checkboxes .checkbox-wrapper {
  display: flex;
  flex-flow: row wrap;
}
.checkboxes .checkbox-container {
  width: 120px;
  height: 120px;
  position: relative;
}
.checkboxes .checkbox-container + .checkbox-container {
  margin-left: 15px;
}
.checkboxes input {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.checkboxes input:checked + span:after {
  opacity: 1;
}
.checkboxes span {
  border: 2px solid var(--dark);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.checkboxes span:after {
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background: var(--dark);
  border-radius: 50%;
  left: 4px;
  top: 4px;
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
}
.checkboxes .label {
  align-self: center;
  line-height: 1em;
}

.range-slider {
  width: 100%;
}
.range-slider .range-slider-skin {
  position: relative;
  height: 75px;
  padding: 37px 0;
}
.range-slider .range-slider-skin .bar {
  width: 100%;
  background: var(--dark);
  height: 3px;
  position: absolute;
  left: 0;
  top: 0;
}
.range-slider .range-slider-skin .knob {
  background: var(--dark);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  top: 0;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
  pointer-events: none;
}
.range-slider input {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(-50%);
  height: 100%;
  cursor: pointer;
}
.range-slider .labels {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.radios fieldset {
  display: flex;
  flex-flow: row wrap;
}
.radios fieldset + fieldset {
  margin-top: 45px;
}
.radios .radio-container {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  position: relative;
  border: 2px solid var(--dark);
  flex: 0 0 75px;
}
.radios span {
  position: absolute;
  left: 4px;
  top: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background: var(--dark);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}
.radios input {
  width: 75px;
  height: 75px;
  background: none;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.radios input:checked + span {
  opacity: 1;
}
.radios label {
  flex: 0 0 calc(100% - 75px);
  padding-left: 45px;
}

.numbers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  top: -60px;
  padding: 0 20px;
}
.numbers input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
  padding: 0;
  text-align: center;
  font-size: var(--font-size-xl);
  font-weight: 300;
  border-bottom: 0;
}
.numbers input::-webkit-inner-spin-button,
.numbers input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.numbers .arrow {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  transition: all 0.2s;
  cursor: pointer;
  flex: 0 0 75px;
  border: none;
  cursor: pointer;
  margin-top: -23px;
}
.numbers .arrow:hover {
  transform: scale(1.1);
}
.numbers .arrow.down {
  background: url(../img/arrow-dark-left.svg) no-repeat center center/40%;
}
.numbers .arrow.up {
  background: url(../img/arrow-dark-right.svg) no-repeat center center/40%;
}

.upload {
  min-height: 250px;
  border-bottom: 3px solid var(--dark);
  position: relative;
}
.upload:hover p {
  opacity: 1;
}
.upload p {
  opacity: 0.5;
  transition: all 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 12px;
}
.upload input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.send {
  width: 350px;
  height: 350px;
  background: var(--dark);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--base-font-size);
  color: var(--light);
  display: block;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}
.send:hover {
  transform: scale(1.05);
}

.d-map svg path {
  fill: var(--dark);
  stroke: var(--light);
  stroke-width: 1;
  transition: fill 0.2s;
  cursor: pointer;
}
.d-map .highlight {
  fill: rgba(18, 92, 69, 0.5) !important;
}
.d-map .custom-select-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  font-size: var(--base-font-size);
  color: var(--dark);
  border-bottom: 3px solid var(--dark);
}
.d-map .custom-select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='0,0 140,0 70,100' fill='%23125c45'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 0.35em;
  text-transform: uppercase;
  padding: 12px 0;
  font-size: inherit;
  width: 100%;
  color: inherit;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--primary-font);
}
.d-map .custom-select-wrapper select:focus {
  outline: 0;
}

.info-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  height: 100svh;
  background: var(--dark);
  transition: transform 0.5s ease;
  will-change: transform;
  color: var(--light);
  overflow: auto;
  scroll-behavior: smooth;
}
.info-wrapper article {
  position: relative;
  padding: 4rem calc(4rem + 60px + 192px) 2rem 4rem;
}

.circles {
  padding-right: 8.333%;
}
.circles li a {
  display: flex;
  flex-flow: row wrap;
  position: relative;
}
.circles li a:after {
  transition: all 1s 0.3s;
  transform-origin: top left;
}
.circles li:first-child {
  padding-left: 300px;
}
.circles li:first-child a:after {
  content: "";
  height: 3px;
  background: var(--light);
  width: 280px;
  position: absolute;
  bottom: 10px;
  left: 5px;
  transform: rotate(135deg) scaleX(0);
}
.circles li:nth-child(2) a:after {
  content: "";
  height: 3px;
  background: var(--light);
  width: 280px;
  position: absolute;
  bottom: 0;
  left: 104px;
  transform: rotate(44deg) scaleX(0);
}
.circles li:nth-child(3) {
  padding-left: 300px;
}
.circles li:nth-child(3) a:after {
  content: "";
  height: 3px;
  background: var(--light);
  width: 190px;
  position: absolute;
  bottom: -10px;
  left: 30px;
  transform: rotate(115deg) scaleX(0);
}
.circles li:nth-child(4) {
  padding-left: 150px;
}
.circles li:nth-child(4) a:after {
  content: "";
  height: 3px;
  background: var(--light);
  position: absolute;
  width: 580px;
  bottom: 20px;
  left: 120px;
  transform: rotate(29deg) scaleX(0);
}
.circles li:nth-child(5) {
  padding-left: 775px;
  margin-top: 180px;
}
.circles li .label {
  padding-left: 2rem;
  align-self: center;
}
.circles li + li {
  margin-top: 180px;
}
.circles li:first-child a.aos-animate:after {
  transform: rotate(135deg) scaleX(1);
}
.circles li:nth-child(2) a.aos-animate:after {
  transform: rotate(44deg) scaleX(1);
}
.circles li:nth-child(3) a.aos-animate:after {
  transform: rotate(115deg) scaleX(1);
}
.circles li:nth-child(4) a.aos-animate:after {
  transform: rotate(29deg) scaleX(1);
}

.circle {
  width: 120px;
  height: 120px;
  position: relative;
  align-self: center;
  border-radius: 50%;
  cursor: pointer;
  background-color: var(--light);
  transition: all 0.3s;
}
.circle span {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dark);
  transform-origin: center top;
  display: block;
}
.circle.start {
  min-width: 300px;
  height: 300px;
  transition: all 0.3s;
  text-transform: uppercase;
}
.circle.start:hover {
  transform: scale(1.1);
}
.circle.pulse {
  animation: pulse 1s infinite;
}

.description .title {
  display: flex;
  flex-flow: row wrap;
}
.description .title h2 {
  align-self: center;
  padding-left: 2em;
  margin-bottom: 0;
}
.description .title .circle {
  align-self: center;
}
.description .teaser-text {
  padding-left: 192px;
}
.description .teaser-text .more {
  position: relative;
  top: -10px;
}
.description .lx-text {
  padding-left: 192px;
}

.more {
  text-transform: uppercase;
  font-size: var(--font-size-xs);
  text-decoration: underline;
  display: inline-block;
  cursor: pointer;
}

.rotating-circles {
  display: flex;
  flex-flow: row wrap;
}
.rotating-circles .row {
  display: flex;
  width: 100%;
  justify-content: center;
}
.rotating-circles .row:first-child {
  margin-left: 10%;
}
.rotating-circles .row + .row {
  margin-top: -300px;
  margin-right: -10%;
}
.rotating-circles .row + .row .circle:nth-child(2) {
  margin-top: 500px;
}
.rotating-circles .row + .row .circle:nth-child(3) {
  margin-left: -50px;
}
.rotating-circles .row:last-child .circle {
  animation-delay: 2s;
  animation-direction: reverse !important;
}
.rotating-circles .circle {
  font-size: var(--font-size-xs);
  flex: 0 0 520px;
  padding-bottom: 520px;
  text-transform: uppercase;
  margin: 8px;
}
.rotating-circles .circle span {
  line-height: 1em;
  padding: 0 20px;
  font-size: var(--font-size-m);
}
.rotating-circles .circle:first-child {
  margin-top: 80px;
  transform: rotate(-20deg);
  animation: rotatePulse 4s infinite;
}
.rotating-circles .circle:nth-child(2) {
  margin-top: 380px;
  transform: rotate(20deg);
  animation: rotatePulse 5s infinite;
  animation-delay: 2s;
}
.rotating-circles .circle:nth-child(3) {
  margin-left: -20px;
  animation: rotatePulse 7s infinite;
  animation-direction: reverse;
}

.box {
  background: var(--light);
  color: var(--dark);
  border-radius: 50px;
  padding: 75px;
  cursor: pointer;
}
.box.active .columns {
  display: flex;
  flex-flow: row wrap;
}
.box .heading {
  text-align: center;
}
.box + .box {
  margin-top: 34px;
}
.box .columns {
  display: none;
  margin-left: -25px;
  margin-right: -25px;
}
.box .columns div {
  flex: 0 0 50%;
  padding: 0 25px;
}
.box ul {
  margin-top: -15px;
}
.box ul li {
  text-transform: uppercase;
  padding: 15px 0;
  hyphens: auto;
}
.box ul li + li {
  border-top: 2px solid var(--dark);
}
.box p {
  font-size: var(--font-size-s);
  line-height: 1.25em;
}
.box p span {
  font-size: 16px;
}

.indented-container {
  padding-left: 192px;
}

.timeline {
  text-align: center;
}
.timeline .heading {
  font-size: var(--font-size-m);
  line-height: 1em;
  margin-top: 36px;
}
.timeline li {
  position: relative;
}
.timeline li:after {
  content: "";
  width: 3px;
  height: 0;
  transition: all 1s 0.3s;
  background: var(--light);
  position: absolute;
  left: 50%;
  top: 220px;
  margin-left: -1.5px;
}
.timeline li + li {
  margin-top: 275px;
}
.timeline li:last-child:after {
  content: normal;
}
.timeline li.aos-animate:after {
  height: 185px;
}

label.invalid {
  border-color: #F56F6C;
  color: #F56F6C;
}
label.invalid::placeholder {
  opacity: 1;
  color: #F56F6C;
}

.more-text {
  display: none;
}

.apply {
  display: flex;
  flex-flow: row wrap;
}
.apply .teaser-text {
  flex: 0 0 66.666%;
  align-self: center;
  padding-right: 1rem;
}
.apply .big-button {
  flex: 0 0 33.333%;
  height: 0;
  padding-bottom: 33.333%;
  background: var(--light);
  align-self: center;
  transition: all 0.3s;
}
.apply .big-button:hover {
  transform: scale(1.1);
}

.arrow-list {
  font-size: var(--font-size-m);
  line-height: 1em;
}
.arrow-list li {
  position: relative;
  padding-left: 60px;
  transition: all 0.3s;
}
.arrow-list li:before {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--dark) url(../img/arrow-light-right.svg) no-repeat center center/100%;
  width: 45px;
  height: 60px;
  content: "";
}
.arrow-list li:hover {
  transform: translateX(60px);
}
.arrow-list.dark li:before {
  background: var(--light) url(../img/arrow-dark-right.svg) no-repeat center center/100%;
}

.footer {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.footer .links a:hover {
  text-decoration: underline;
}
.footer .links a + a {
  margin-left: 2em;
}

.rotate {
  animation: rotate 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media all and (max-width: 1792px) {
  html {
    font-size: 30px;
  }
  h1 {
    font-size: 115px;
    line-height: 1em;
  }
  .spacing-top-big {
    padding-top: 120px;
  }
  .spacing-top-small {
    padding-top: 30px;
  }
  .spacing-top-large {
    padding-top: 200px;
  }
  .info-wrapper article {
    padding: 3rem calc(3rem + 80px) 2rem 3rem;
  }
  .description .teaser-text {
    padding-left: 182px;
  }
  .description .lx-text {
    padding-left: 0;
    line-height: 1em;
  }
  .rotating-circles .row:first-child {
    margin-left: -8%;
  }
  .rotating-circles .row:first-child .circle:nth-child(3) {
    margin-left: 50px;
  }
  .rotating-circles .circle {
    width: 60px;
    height: 60px;
    flex: 0 0 360px;
    padding-bottom: 360px;
  }
  .rotating-circles .circle:first-child {
    margin-top: 10px;
  }
  .rotating-circles .circle:nth-child(2) {
    margin-top: 120px;
  }
  .apply .teaser-text {
    padding-left: 0;
  }
  .indented-container {
    padding-left: 182px;
  }
  .more-information.spacing-top-big {
    padding-top: 200px;
  }
  .more-information .indented-container {
    padding-left: 0;
  }
  .more-information .teaser-text {
    padding-left: 0;
  }
  .timeline li:after {
    top: 200px;
  }
  .description .teaser-text .more {
    top: -5px;
  }
  #who .indented-container {
    padding-right: 0;
    padding-left: 0;
  }
  .box {
    padding: 60px 50px;
  }
  .box .columns div {
    padding: 0 10px;
  }
  .box .spacing-top {
    padding-top: 60px;
  }
  .start-form.spacing-top {
    padding-top: 80px;
  }
  .step {
    padding-top: 1rem;
    padding-right: 4rem;
  }
  .step-nav .dot {
    width: 45px;
    height: 45px;
  }
  .step-nav .dot.done {
    background-size: 24px;
  }
  .step-nav .dot.active {
    width: 90px;
    height: 90px;
  }
  input[type=text], input[type=email], input[type=number], textarea {
    font-size: 30px;
  }
  .d-map .custom-select-wrapper {
    font-size: 30px;
  }
  .range-slider.spacing-top-small {
    padding-top: 50px;
  }
  .numbers {
    top: -55px;
    padding: 0 5px;
    min-width: 300px;
  }
  .numbers input[type=number] {
    font-size: 125px;
  }
  .information-bar .text {
    margin-top: -174px;
  }
  .information-bar.right .text {
    margin-top: -120px;
  }
}
@media all and (max-width: 1450px) {
  .step {
    padding-left: 5em;
  }
  .step-nav {
    padding-left: 5em;
  }
}
@media all and (max-width: 1250px) {
  html, body {
    overflow-x: hidden;
  }
  .step {
    padding: 30px 25px 2rem 55px;
    position: relative;
    overflow: hidden;
  }
  .step.one .spacing-top-big {
    padding-top: 35px;
  }
  .step.one .uppercased {
    text-transform: none;
  }
  .puffer {
    display: none;
  }
  form {
    padding-top: 0;
  }
  .grid-container {
    display: block;
  }
  h1 {
    font-size: 52px;
    line-height: 1em;
  }
  .spacing-top-big {
    padding-top: 50px;
  }
  .spacing-top {
    padding-top: 35px;
  }
  .spacing-top.mobile-no-spacing {
    padding-top: 0;
  }
  .spacing-top-small {
    padding-top: 12px;
  }
  .step-nav {
    top: 30px;
    padding-left: 57px;
  }
  .step-nav ul {
    gap: 0 7px;
  }
  .step-nav ul:before {
    height: 1px;
    margin-top: -0.5px;
  }
  .step-nav .dot {
    width: 12px;
    height: 12px;
  }
  .step-nav .dot.done {
    background-size: 18px;
    width: 20px;
    height: 20px;
    background: var(--dark) url(../img/check-fat.svg) no-repeat center center/10px;
  }
  .step-nav .dot.active {
    width: 42px;
    height: 42px;
  }
  .arrow-list {
    font-size: 22px;
  }
  .arrow-list.dark li:before {
    background-size: 22px;
    height: 19px;
    width: 25px;
  }
  .arrow-list.dark li + li {
    margin-top: 2px;
  }
  .arrow-list.spacing-top-small {
    padding-top: 25px;
  }
  input[type=text], input[type=email], input[type=number], textarea {
    font-size: 22px;
    margin-bottom: 10px;
    padding: 6px 0;
    text-transform: none;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
  }
  textarea {
    min-height: 180px;
    text-transform: none;
  }
  .d-map .custom-select-wrapper {
    border-bottom-width: 1px;
  }
  .d-map .custom-select-wrapper select {
    font-size: 22px;
    padding: 6px 0;
  }
  .hint {
    margin-bottom: 0;
  }
  html {
    font-size: 22px;
  }
  html.started form {
    padding-top: 63px;
  }
  html.started .form-wrapper {
    padding-bottom: 40px;
  }
  html.form-active .information-bar.left {
    transform: translateX(calc(-100vw + 100%));
    right: 0;
  }
  html.finished #multiStepForm {
    margin-top: -50px;
  }
  .btn {
    width: 60px;
    height: 60px;
  }
  .map-part {
    padding-top: 35px;
  }
  .map-part .hint {
    margin-bottom: 12px;
  }
  .round-btn {
    width: 260px;
    height: 260px;
    font-size: 22px;
  }
  [class^=col-].align-end {
    text-align: center;
  }
  .information-bar {
    width: 30px;
    right: 0;
    height: 100vh;
  }
  .information-bar .text {
    margin-top: -114px;
    font-size: 14px;
    left: -16px;
  }
  .information-bar.right {
    right: 0;
  }
  .information-bar.right .text {
    margin-top: -44px;
  }
  .information-bar.left {
    right: 0;
  }
  .information-bar.left .text {
    margin-top: -67px;
  }
  .start-form.spacing-top {
    padding-top: 40px;
  }
  .teaser-text {
    font-size: 22px;
  }
  .checkboxes span {
    border-width: 1px;
  }
  .checkboxes.spacing-top-small {
    padding-top: 30px;
  }
  .checkboxes .checkbox-container {
    width: 42px;
    height: 42px;
  }
  .checkboxes .checkbox-container + .checkbox-container {
    margin-left: 5px;
  }
  .checkboxes .label {
    margin-bottom: 6px;
  }
  .range-slider .range-slider-skin {
    height: 25px;
    padding: 8px 0;
  }
  .range-slider .range-slider-skin .bar {
    height: 1px;
  }
  .range-slider .range-slider-skin .knob {
    width: 25px;
    height: 25px;
  }
  .range-slider .labels div {
    text-transform: none;
    font-size: 16px;
    flex: 0 0 50%;
    line-height: 1em;
  }
  .range-slider .labels div + div {
    text-align: right;
  }
  .radios {
    padding-top: 30px;
  }
  .radios fieldset + fieldset {
    margin-top: 30px;
  }
  .radios label {
    padding-left: 15px;
    flex: 0 0 calc(100% - 42px);
  }
  .radios label.uppercased {
    text-transform: none;
  }
  .radios .radio-container {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-width: 1px;
  }
  .numbers {
    top: 0;
    padding: 20px 0;
    min-width: 260px;
    max-width: calc(100% - 100px);
  }
  .numbers input[type=number] {
    font-size: 42px;
    line-height: 1em;
  }
  .numbers .arrow {
    margin-top: -6px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
  }
  .numbers .arrow.down {
    background: var(--dark) url(../img/arrow-light-left.svg) no-repeat center center/30%;
  }
  .numbers .arrow.up {
    background: var(--dark) url(../img/arrow-light-right.svg) no-repeat center center/30%;
  }
  .numbers button {
    text-indent: -9999px;
  }
  .upload {
    margin-top: 12px;
    border-bottom-width: 1px;
  }
  .upload .uppercased {
    text-transform: none;
  }
  .send {
    width: 260px;
    height: 260px;
    font-size: 22px;
  }
  .info-wrapper article {
    padding: 25px 55px 15px 25px;
    overflow: hidden;
  }
  .circles {
    padding-right: 0;
  }
  .circles li a:after {
    height: 1px !important;
    bottom: -10px !important;
  }
  .circles li .circle {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
  }
  .circles li .circle.start {
    width: 260px;
    height: 260px;
    flex: 0 0 260px;
    margin: 0 auto;
    min-width: 260px;
  }
  .circles li .label {
    padding-left: 20px;
    flex: 0 0 calc(100% - 60px);
  }
  .circles li:first-child {
    padding-left: 0;
  }
  .circles li:first-child a:after {
    width: 40px;
    bottom: -15px;
    left: 31px;
    transform: rotate(90deg) scaleX(0);
  }
  .circles li:first-child a.aos-animate:after {
    transform: rotate(90deg) scaleX(1);
  }
  .circles li:nth-child(2) {
    padding-left: 0;
  }
  .circles li:nth-child(2) a:after {
    width: 40px;
    bottom: -15px;
    left: 31px;
    transform: rotate(90deg) scaleX(0);
  }
  .circles li:nth-child(2) a.aos-animate:after {
    transform: rotate(90deg) scaleX(1);
  }
  .circles li:nth-child(3) {
    padding-left: 0;
  }
  .circles li:nth-child(3) a:after {
    width: 40px;
    bottom: -15px;
    left: 31px;
    transform: rotate(90deg) scaleX(0);
  }
  .circles li:nth-child(3) a.aos-animate:after {
    transform: rotate(90deg) scaleX(1);
  }
  .circles li:nth-child(4) {
    padding-left: 0;
  }
  .circles li:nth-child(4) a:after {
    display: none;
  }
  .circles li:nth-child(4) a.aos-animate:after {
    display: none;
  }
  .circles li:nth-child(5) {
    padding-left: 0;
    margin-top: 50px;
  }
  .circles li + li {
    margin-top: 60px;
  }
  .description .circle {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
  }
  .description .circle:nth-child(2) {
    margin-left: -2.5%;
  }
  .description .title {
    display: flex;
    flex-flow: row wrap;
  }
  .description .title h2 {
    flex: 0 0 calc(100% - 60px);
    padding-left: 20px;
  }
  .description .teaser-text {
    padding-left: 0;
    padding-top: 20px;
  }
  .more {
    font-size: 14px;
    display: block;
    padding: 20px 0 0 0;
    text-underline-offset: 8px;
  }
  .lx-text {
    font-size: 42px;
    line-height: 1em;
    hyphens: auto;
  }
  #how {
    position: relative;
    overflow: hidden;
    margin-left: -25px;
    margin-right: -25px;
  }
  #how .title, #how .teaser-text {
    padding-left: 25px;
    padding-right: 25px;
  }
  .rotating-circles {
    width: 100vw;
    margin-left: 0;
  }
  .rotating-circles .row {
    width: 100vw;
    flex-flow: row wrap;
  }
  .rotating-circles .row + .row {
    margin-right: 0;
    margin-top: -290px;
  }
  .rotating-circles .row + .row .circle:first-child {
    margin-top: 100px;
  }
  .rotating-circles .row + .row .circle:nth-child(2) {
    margin-top: 520px;
    margin-left: -100px;
  }
  .rotating-circles .circle {
    width: 210px;
    height: 210px;
    flex: 0 0 210px;
    padding-bottom: 210px;
  }
  .rotating-circles .circle:nth-child(2) {
    margin-top: 0;
  }
  .rotating-circles .circle span {
    font-size: 14px;
  }
  .box {
    padding: 30px 20px;
  }
  .box p {
    font-size: 14px;
    line-height: 1.15em;
  }
  .box ul {
    margin-top: 25px;
  }
  .box ul li {
    text-transform: none;
    font-size: 14px;
    line-height: 1.15em;
  }
  .box ul li + li {
    border-top: 1px solid var(--dark);
  }
  .box .heading {
    font-size: 14px;
    line-height: 1.15em;
  }
  .box .columns {
    margin-left: 0;
    margin-right: 0;
  }
  .box .columns div {
    flex: 0 0 100%;
  }
  .box .spacing-top {
    padding-top: 30px;
  }
  .box + .box {
    margin-top: 25px;
  }
  .timeline.spacing-top {
    padding-top: 60px;
  }
  .timeline .subtitle {
    font-size: 14px;
    line-height: 1.15em;
  }
  .timeline .heading {
    font-size: 22px;
    margin-top: 12px;
  }
  .timeline li.aos-animate:after {
    height: 80px;
  }
  .timeline li:after {
    top: 80px;
  }
  .timeline li + li {
    margin-top: 130px;
  }
  .spacing-top-large {
    padding-top: 90px;
  }
  .apply {
    display: block;
  }
  .apply .big-button {
    margin-top: 40px;
  }
  .apply .big-button.circle {
    width: 260px;
    height: 260px;
    flex: 0 0 260px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0;
  }
  .more-information.spacing-top-big {
    padding-top: 90px;
  }
  .arrow-list li {
    padding-left: 40px;
  }
  .arrow-list li:before {
    width: 20px;
    height: 26px;
  }
  .arrow-list li:hover {
    transform: translateX(5px);
  }
  .arrow-list li + li {
    margin-top: 2px;
  }
  .arrow-list.dark li:before {
    background-size: 20px;
    height: 26px;
    width: 20px;
  }
  .arrow-list.dark li + li {
    margin-top: 2px;
  }
  .footer {
    font-size: 14px;
    line-height: 1.15em;
  }
  .footer .links {
    margin-top: 20px;
    width: 100%;
    justify-content: space-between;
    display: flex;
    flex-flow: row wrap;
    padding-right: 15px;
  }
  .footer .links a + a {
    margin-left: 5px;
  }
  input[type=text], input[type=email], input[type=number], textarea {
    border-width: 0 0 1px 0;
  }
}

/*# sourceMappingURL=base.css.map */
