/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

/* HTML5 display-role reset for older browsers */
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;
}

button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  outline: none;
}

/* Remove excess padding and border in Firefox 4+ */
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

:root {
  --max-width: 1200px;
  --padding-side: 1rem;
  --font-size-p-lrg: 40px;
  --font-size-p-sml: 30px;
  --font-size-headline-mobile: min(60px, 8vw);
}
@media (max-width: 768px) {
  :root {
    --font-size-p-lrg: 35px;
    --font-size-p-sml: 20px;
    --padding-side: 0.75rem;
  }
}
@media (max-width: 560px) {
  :root {
    --font-size-p-lrg: 30px;
    --font-size-headline-mobile: 48px;
  }
}
@media (max-width: 420px) {
  :root {
    --font-size-p-lrg: 28px;
    --font-size-p-sml: 18px;
    --padding-side: 0.66rem;
    --font-size-headline-mobile: 10vw;
  }
}
@media (max-width: 375px) {
  :root {
    --font-size-p-lrg: 26px;
  }
}
@media (max-width: 360px) {
  :root {
    --font-size-p-lrg: 22px;
  }
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}
body {
  background: #9999FF url("background.png") center repeat-y;
  background-size: 100%;
  position: relative;
  width: 100%;
  color: white;
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  body {
    background-size: 150%;
  }
}
@media (max-width: 480px) {
  body {
    background-size: 175%;
  }
}

main {
  padding: var(--padding-side);
  max-width: var(--max-width);
  margin: 0 auto;
  box-sizing: border-box;
}

.headline {
  display: block;
  text-transform: uppercase;
  font-family: "owners-xxwide", sans-serif;
  font-style: normal;
}
.headline.h1 {
  position: relative;
}
.headline.h1 .rotate {
  position: relative;
  z-index: 1;
}
.headline.h1 .hero-band {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  display: block;
}
.headline.h1 .hero-band img {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 769px) {
  .headline.h1 {
    font-size: min(90px, 7.4vw);
    padding-top: 5em;
    padding-bottom: 4.75em;
    padding-left: var(--padding-side);
    margin: 0 auto;
    margin-top: -0.5em;
  }
  .headline.h1 .hero-band {
    aspect-ratio: 2.16;
    width: 100%;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    max-width: 1900px;
  }
  .headline.h1 .hero-band img {
    object-fit: contain;
  }
}
@media (min-width: 769px) and (max-width: 1900px) {
  .headline.h1 .hero-band {
    aspect-ratio: auto;
    height: 100%;
  }
  .headline.h1 .hero-band img {
    object-fit: cover;
  }
}
@media (min-width: 1900px) {
  .headline.h1 {
    font-size: 4.75vw;
  }
  .headline.h1 .hero-band {
    aspect-ratio: 2.16;
    translate: calc((-100vw - 1200px) / 2 + 33vw) -50%;
    height: 100%;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .headline.h1 .rotate {
    height: 10em;
    width: 10em;
    position: relative;
    top: 10em;
    left: calc(var(--padding-side) - 0.075em);
    margin-top: 3.5em;
    margin-bottom: 2em;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
    transform-origin: left top;
    rotate: -90deg;
    font-size: max(68px, 10.7vw);
    z-index: 1;
  }
  .headline.h1 .rotate span {
    padding: 0;
  }
  .headline.h1 .hero-band {
    width: 100%;
    aspect-ratio: 0.58;
    min-height: 1100px;
    left: calc(0% + var(--padding-side));
    top: min(-14em, -35vw);
    translate: 0 0;
  }
  .headline.h1 .hero-band img {
    object-fit: cover;
    object-position: left top;
  }
}
@media (max-width: 560px) and (max-aspect-ratio: 1) {
  .headline.h1 {
    --max-size: 6.5vh;
  }
  .headline.h1 .rotate {
    font-size: max(var(--max-size), 30px);
  }
  .headline.h1 {
    min-height: 100vw;
    height: max(var(--max-size) * 12, 130vw);
  }
  .headline.h1 .hero-band {
    left: calc(0% + var(--padding-side));
    min-height: 0;
    height: min(var(--max-size) * 16);
    max-width: max(60lvh, var(--max-size) * 9);
    max-height: max(var(--max-size) * 16, 210vw);
    top: min(var(--max-size) * -3.25, -10%);
  }
}
.headline span {
  display: block;
  margin: 0 auto;
  max-width: var(--max-width);
  box-sizing: border-box;
}
.headline span.lrg {
  margin-left: 0;
  font-weight: 700;
}
.headline span.med {
  font-weight: 500;
  padding-left: 0.125em;
  margin-left: 0;
  font-size: max(12px, 0.25em);
}
.headline.h2 {
  font-size: var(--font-size-headline-mobile);
  margin-bottom: 1em;
}
.headline.h2 span:first-child {
  position: relative;
  width: fit-content;
  max-width: none;
}
.headline.h2 span:first-child:after, .headline.h2 span:first-child:before {
  content: "";
  position: absolute;
  top: 10%;
  height: 75%;
}
.headline.h2 span:first-child:before {
  left: 10em;
  width: 10%;
  background: url("face-small.png") left center no-repeat;
  background-size: contain;
  background-position: 40%;
}
.headline.h2 span:first-child:after {
  left: calc(10em + 7%);
  background: white;
  width: 100vw;
}
@media (max-width: 560px) {
  .headline.h2 {
    position: absolute;
    rotate: 90deg;
    right: var(--padding-side);
    transform-origin: right top;
  }
  .headline.h2 span:first-child:after {
    width: calc(var(--font-size-headline-mobile) * 2);
  }
}

.block {
  display: block;
}

p {
  max-width: 18em;
  text-wrap: balance;
  font-weight: 400;
  margin-bottom: 1em;
  line-height: 1.2;
  font-size: var(--font-size-p-lrg);
}
p.snd {
  margin-bottom: 3em;
}
@media (max-width: 768px) {
  p.snd {
    margin-bottom: min(80vw, 10em);
  }
}
p.trd {
  margin-bottom: 4em;
}
p.sml {
  font-size: var(--font-size-p-sml);
  margin-bottom: 1.5em;
}

.uppercase {
  text-transform: uppercase;
}

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

.logo {
  max-width: min(400px, 55vw);
}

a {
  color: inherit;
}

@media (min-width: 769px) {
  footer {
    margin-right: -50vw;
  }
}
.footer-nav {
  margin-top: 3em;
  margin-bottom: 1em;
  color: black;
  font-size: 16px;
  line-height: 1.2;
}
@media (max-width: 640px) {
  .footer-nav {
    font-size: 15px;
    margin-bottom: 1em;
  }
}
@media (max-width: 560px) {
  .footer-nav {
    margin-bottom: -1em;
  }
}
.footer-nav a {
  margin: 0.5em 0;
}
.footer-nav span.divider {
  padding: 0.5em;
}
.footer-nav .last-line {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  text-wrap: balance;
  max-width: calc(100% - var(--font-size-headline-mobile) * 1.25);
}

@media (max-width: 560px) {
  .mobile-hidden {
    display: none;
  }
  footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: calc(var(--font-size-headline-mobile) * 11.75);
  }
  footer .spacer {
    flex-grow: 1;
  }
  .logo {
    max-width: min(340px, 65vw);
  }
}
@media (min-width: 561px) {
  .mobile-visible {
    display: none;
  }
}
a.white {
  color: white;
}

main.imprint {
  margin: 0 auto;
  max-width: 660px;
}
main.imprint .back-button {
  padding: 1em 0;
}
main.imprint > h2#datenschutz,
main.imprint > h1 {
  color: white;
  font-family: "tt-commons-pro", sans-serif;
  font-size: 36px;
  padding-top: 2em;
  margin-bottom: 1em;
  hyphens: auto;
  text-wrap: balance;
}
main.imprint > h3 {
  text-transform: uppercase;
  hyphens: auto;
  text-wrap: balance;
}
main.imprint > h2:not(.headline), main.imprint > h3, main.imprint > p {
  color: black;
  font-size: 18px;
  display: block;
  line-height: 1.2;
  max-width: 100%;
}
@media (max-width: 560px) {
  main.imprint > h2:not(.headline), main.imprint > h3, main.imprint > p {
    font-size: 16px;
  }
}
main.imprint > p {
  margin-bottom: 1.2em;
}
main.imprint > p.mb-2 {
  margin-bottom: 2.4em;
}
main.imprint footer {
  margin-top: 5em;
}

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