/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

main {
  display: block;
}

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

b,
strong {
  font-weight: bold;
}

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  display: inline-block;
}

/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input {
  /* 1 */
  overflow: visible;
}

button,
select {
  /* 1 */
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul li {
  padding: 0;
  margin: 0;
}

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

figure {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  display: flex;
}

:root {
  --color-black: #0a0a0a;
  --color-white: #ffffff;
  --color-gray: #f1f1f1;
  --color-text-gray: #c2c2c2;
  --color-small-text-gray: #8f8f8f;
  --site-padding: 30px;
  --gap: 18px;
  --button-height: 42px;
  --radius: 1rem;
  --radius-full: 100vmax;
  --stroke-width: 1.5px;
  --font-primary: "Inter Variable", sans-serif;
  --font-secondary: "Inter Display", sans-serif;
  --fw-base: 400;
}

@media (prefers-contrast: more) {
  :root {
    --color-text-gray: #6b6b6b;
    --color-small-text-gray: #575757;
  }
}
@font-face {
  font-family: "Inter Variable";
  src: url("../fonts/InterVariable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Variable";
  src: url("../fonts/InterVariable-Italic.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("../fonts/InterDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Display";
  src: url("../fonts/InterDisplay-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gap);
  width: 100%;
  padding-inline: var(--site-padding);
}

.grid-view {
  position: fixed;
  z-index: 9999999;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
}
.grid-view * {
  pointer-events: none;
}
.grid-view .container,
.grid-view .row {
  height: 100%;
}
.grid-view .col {
  height: 100%;
  transform: scaleY(0);
  transition: transform var(--transition-smooth);
  transform-origin: top;
  background: rgba(255, 0, 0, 0.1);
}
.grid-view .col:nth-of-type(2) {
  transition-delay: 0.025s;
}
.grid-view .col:nth-of-type(3) {
  transition-delay: 0.05s;
}
.grid-view .col:nth-of-type(4) {
  transition-delay: 0.075s;
}
.grid-view .col:nth-of-type(5) {
  transition-delay: 0.1s;
}
@media (max-width: 767px) {
  .grid-view .col:nth-of-type(5) {
    display: none;
  }
}
.grid-view .col:nth-of-type(6) {
  transition-delay: 0.125s;
}
@media (max-width: 767px) {
  .grid-view .col:nth-of-type(6) {
    display: none;
  }
}
.grid-view .col:nth-of-type(7) {
  transition-delay: 0.15s;
}
@media (max-width: 767px) {
  .grid-view .col:nth-of-type(7) {
    display: none;
  }
}
.grid-view .col:nth-of-type(8) {
  transition-delay: 0.175s;
}
@media (max-width: 767px) {
  .grid-view .col:nth-of-type(8) {
    display: none;
  }
}
.grid-view .col:nth-of-type(9) {
  transition-delay: 0.2s;
}
@media (max-width: 767px) {
  .grid-view .col:nth-of-type(9) {
    display: none;
  }
}
.grid-view .col:nth-of-type(10) {
  transition-delay: 0.225s;
}
@media (max-width: 767px) {
  .grid-view .col:nth-of-type(10) {
    display: none;
  }
}
.grid-view .col:nth-of-type(11) {
  transition-delay: 0.25s;
}
@media (max-width: 767px) {
  .grid-view .col:nth-of-type(11) {
    display: none;
  }
}
.grid-view .col:nth-of-type(12) {
  transition-delay: 0.275s;
}
@media (max-width: 767px) {
  .grid-view .col:nth-of-type(12) {
    display: none;
  }
}

[data-grid-status=active] .grid-view .col {
  transform: scaleY(1);
  transform-origin: bottom;
}

html {
  scroll-behavior: smooth;
  font-size: 112.5%;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--fw-base);
  font-size: 1rem;
  line-height: 1;
  color: var(--color-black);
  font-feature-settings: "liga" 1, "calt" 1;
}
@media (min-width: 1200px) {
  body:not(.dsgvo-page) {
    height: 100vh;
  }
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
}

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

body :target {
  scroll-margin-top: 1rem;
}

body.disable-scroll {
  overflow: hidden;
}

*:focus-visible {
  outline-color: var(--color-red);
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 4px;
}

svg * {
  stroke-width: var(--stroke-width);
}

.parallax-image {
  position: relative;
  overflow: hidden;
}

.parallax-inner {
  width: 100%;
  height: 120%;
  position: absolute;
}

.transition-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
  width: 100vw;
  height: 100lvh;
}
.transition-screen .bg {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: var(--color-gray);
  clip-path: inset(0 0 0 0);
  will-change: clip-path;
}
.transition-screen .bg--left {
  left: 0;
}
.transition-screen .bg--right {
  right: 0;
}
.transition-screen .title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  line-height: 120%;
}
.transition-screen .title .outer {
  display: flex;
  overflow: hidden;
}
.transition-screen .title .outer .inner {
  display: flex;
}
.transition-screen .title--left {
  right: 0.25ch;
}
.transition-screen .title--left .inner {
  transform: translateY(100%);
}
.transition-screen .title--right {
  left: 0.25ch;
}
.transition-screen .title--right .inner {
  transform: translateY(-100%);
}

.btn {
  cursor: pointer !important;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  align-items: center;
  padding-inline: 1.125em;
  height: var(--button-height);
  font-size: 16px;
  font-weight: var(--fw-base);
  line-height: 1;
  position: relative;
  overflow: hidden;
  border-radius: 100vmax;
  background-color: var(--color-black);
  color: var(--color-white);
}
.btn:has(svg) {
  padding-inline: 1em 1.3em;
}
.btn:has(svg) svg {
  width: 1.5em;
  height: 1.5em;
}

.underline-link {
  color: var(--color-black);
  font-size: 1em;
  line-height: 1.25;
  text-decoration: none;
  position: relative;
  max-width: max-content;
  cursor: pointer;
}

.underline-link::before,
.underline-link.is--alt::before,
.underline-link.is--alt::after {
  content: "";
  position: absolute;
  bottom: 0em;
  left: 0;
  width: 100%;
  height: 0.0625em;
  background-color: var(--color-black);
  transition: transform 0.735s cubic-bezier(0.625, 0.05, 0, 1);
  transform-origin: right;
  transform: scaleX(0) rotate(0.001deg);
}

.underline-link:hover::before {
  transform-origin: left;
  transform: scaleX(1) rotate(0.001deg);
}

section.startseite-section {
  height: max-content;
}
@media (min-width: 1200px) {
  section.startseite-section {
    height: 100vh;
  }
}
section.startseite-section .container {
  padding-block: var(--site-padding) 1rem;
  height: 100%;
}
section.startseite-section .row {
  height: 100%;
}
section.startseite-section .title-wrapper {
  grid-column: 1/span 12;
}
@media (max-width: 1199px) {
  section.startseite-section .title-wrapper {
    margin-bottom: 5rem;
  }
}
@media (min-width: 1200px) {
  section.startseite-section .title-wrapper {
    grid-column: 1/span 6;
  }
}
section.startseite-section .title-wrapper h1 {
  opacity: 0;
  font-family: var(--font-secondary);
  font-size: clamp(34px, 2.5vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1em;
  text-wrap-style: balance;
}
section.startseite-section .title-wrapper h1 em {
  color: var(--color-text-gray);
  font-style: normal;
  font-weight: var(--fw-base);
}
section.startseite-section .right {
  grid-column: 1/span 12;
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
}
@media (max-width: 1199px) {
  section.startseite-section .right {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1200px) {
  section.startseite-section .right {
    grid-column: 11/span 2;
    flex-direction: column;
  }
}
section.startseite-section .right .image-wrapper {
  --op: 0;
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
}
section.startseite-section .right .image-wrapper::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  transition: opacity 0.735s cubic-bezier(0.625, 0.05, 0, 1);
  opacity: var(--op);
}
section.startseite-section .right .image-wrapper::after {
  content: "Was wird das?";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  height: max-content;
  color: var(--color-black);
  line-height: 100%;
  text-align: center;
  background-color: var(--color-white);
  border-radius: 100vmax;
  padding: 0.5em 1em;
  transition: opacity 0.735s cubic-bezier(0.625, 0.05, 0, 1);
  opacity: var(--op);
}
section.startseite-section .right .image-wrapper picture {
  position: relative;
  z-index: 0;
  display: flex;
}
section.startseite-section .right .image-wrapper picture img {
  width: 100%;
  height: auto;
}
section.startseite-section .right .contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
section.startseite-section .right .contact .contact__item {
  display: flex;
  flex-direction: column;
}
section.startseite-section .right .contact .contact__item p,
section.startseite-section .right .contact .contact__item a {
  line-height: 120%;
}
section.startseite-section .right .contact .contact__item p {
  color: var(--color-small-text-gray);
}
section.startseite-section .copyright {
  grid-column: 1/span 12;
  grid-row: 5;
}
@media (max-width: 1199px) {
  section.startseite-section .copyright {
    font-size: 0.778rem;
  }
}
@media (min-width: 1200px) {
  section.startseite-section .copyright {
    grid-column: 1/span 3;
    grid-row: 2;
    align-self: end;
  }
}
section.startseite-section .copyright p {
  color: var(--color-small-text-gray);
}
section.startseite-section .socials {
  grid-column: 1/span 12;
  grid-row: 3;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
@media (max-width: 1199px) {
  section.startseite-section .socials {
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1200px) {
  section.startseite-section .socials {
    grid-column: 4/span 6;
    grid-row: 2;
    align-self: end;
    gap: 1rem;
  }
}
section.startseite-section .socials li {
  display: flex;
}
@media (max-width: 1199px) {
  section.startseite-section .socials li a {
    font-size: 0.875rem;
    color: var(--color-white);
    background-color: var(--color-black);
    padding: 0.5em 1em;
    border-radius: 100vmax;
  }
}
section.startseite-section .dsgvo {
  grid-column: 1/span 12;
  grid-row: 4;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1199px) {
  section.startseite-section .dsgvo {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1200px) {
  section.startseite-section .dsgvo {
    grid-column: 10/span 3;
    grid-row: 2;
    align-self: end;
    justify-self: end;
    flex-direction: row;
    gap: 1rem;
  }
}
section.startseite-section .dsgvo li {
  display: flex;
}

.dsgvo-page {
  padding-block: var(--site-padding) 1rem;
}
.dsgvo-page .header {
  grid-column: 1/span 12;
  max-height: max-content;
  padding-bottom: 1rem;
}
@media (min-width: 1200px) {
  .dsgvo-page .header {
    grid-column: 1/span 6;
  }
}
.dsgvo-page .content {
  grid-column: 1/span 12;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1200px) {
  .dsgvo-page .content {
    grid-column: 7/span 6;
  }
}
.dsgvo-page .content .block {
  position: relative;
  display: flex;
  flex-direction: column;
}
.dsgvo-page .content .block::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1em;
  width: 1px;
  height: 100%;
  background-color: var(--color-black);
}
.dsgvo-page .content h1,
.dsgvo-page .content h2,
.dsgvo-page .content h3,
.dsgvo-page .content h4,
.dsgvo-page .content h5,
.dsgvo-page .content h6 {
  font-family: var(--font-primary);
  line-height: 1.1;
  margin-bottom: 0.5em;
  letter-spacing: -0.02em;
  text-wrap-style: balance;
}
.dsgvo-page .content p {
  line-height: 1.3;
}
.dsgvo-page .content a {
  text-decoration: underline;
}
.dsgvo-page .content h1 {
  font-size: clamp(34px, 2.5vw, 42px);
  font-weight: 900;
}
.dsgvo-page .content h2 {
  font-size: clamp(30px, 2.02381vw, 34px);
  font-weight: 700;
  margin-top: 1em;
}
.dsgvo-page .content h3 {
  font-size: clamp(26px, 1.785714vw, 30px);
  font-weight: 700;
  margin-top: 1.5em;
}
.dsgvo-page .content h4 {
  margin-top: 1.5em;
}
.dsgvo-page .content ul {
  margin-block: 1rem;
  list-style: disc;
  padding-left: 1em;
}
.dsgvo-page .content li {
  margin-bottom: 0.5em;
  line-height: 1.3;
}

.whatsapp-modal {
  z-index: 100;
  pointer-events: none;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}
.whatsapp-modal__card {
  transition: all 0.6s cubic-bezier(0.625, 0.05, 0, 1);
  grid-column-gap: 1.667rem;
  grid-row-gap: 1.667rem;
  pointer-events: auto;
  background-color: var(--color-white);
  border-radius: 1.444rem;
  flex-flow: column;
  align-items: center;
  width: 90vw;
  max-width: 378px;
  padding: 4.667rem 1.667rem 3.222rem;
  display: flex;
  position: relative;
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
}
.whatsapp-modal__qr-canvas {
  background-color: rgba(0, 0, 0, 0.1);
  width: 9.889rem;
  height: 9.889rem;
}
.whatsapp-modal__text {
  flex-flow: column;
  align-items: center;
  padding-top: 1rem;
  display: flex;
}
.whatsapp-modal__text--h2 {
  text-align: center;
  margin-top: 0;
  font-size: 1.667rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 0.5em;
}
.whatsapp-modal__text--p {
  color: var(--color-small-text-gray);
  text-align: center;
  font-size: 0.889rem;
  line-height: 130%;
}
.whatsapp-modal__btn {
  position: relative;
}
.whatsapp-modal__overlay-link, .whatsapp-modal__overlay-toggle {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.whatsapp-modal__close {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 1.444rem;
  height: 1.444rem;
  display: flex;
  position: absolute;
  top: 1.444rem;
  right: 1.444rem;
}
.whatsapp-modal__close--bar {
  background-color: var(--color-black);
  width: 1.222rem;
  height: var(--stroke-width);
  position: absolute;
  transform: rotate(-45deg);
}
.whatsapp-modal__close--bar.is--duplicate {
  transform: rotate(45deg);
}
.whatsapp-modal__dark {
  transition: all 0.6s cubic-bezier(0.625, 0.05, 0, 1);
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(0.222rem);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

[data-whatsapp-modal-status=active] .whatsapp-modal__card {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

[data-whatsapp-modal-qr-canvas]:has(svg) {
  background-color: transparent;
}

[data-whatsapp-modal-qr-canvas] svg rect {
  fill: transparent;
}

[data-whatsapp-modal-status=active] .whatsapp-modal__dark {
  opacity: 1;
  visibility: visible;
}

/* Hide link on non-touch devices */
[data-whatsapp-modal-btn] [data-whatsapp-modal-link] {
  display: none;
}

/* Hide modal on touch devices, and open link directly */
@media (hover: none) and (pointer: coarse) {
  [data-whatsapp-modal] {
    display: none;
  }
  /* Hide toggle button on touch devices */
  [data-whatsapp-modal-trigger] [data-whatsapp-modal-toggle] {
    display: none;
  }
  /* Show link on touch devices */
  [data-whatsapp-modal-trigger] [data-whatsapp-modal-link] {
    display: block;
  }
}/*# sourceMappingURL=styles.css.map */