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

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

img {
  width: 100%;
  max-width: 100%;
}

@font-face {
  font-family: "Century Schoolbook Mono";
  src: url("/assets/CentSchbookMonoBTWXXRg.woff2") format("woff2");
}
.uppercase {
  text-transform: uppercase;
}

.font-size-large {
  font-size: 39px;
}
@media screen and (max-width: 699px) {
  .font-size-large {
    font-size: 30px;
  }
}

.font-size-medium {
  font-size: 24px;
}

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

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  --padding-xl: 50px;
  --padding-l: 20px;
  --padding-s: 15px;
  --header-height: 182px;
}
@media screen and (max-width: 1199px) {
  html {
    --header-height: 170px;
  }
}
@media screen and (max-width: 1023px) {
  html {
    --header-height: 158px;
  }
}
@media screen and (max-width: 699px) {
  html {
    --padding-l: 18px;
    --header-height: 98px;
  }
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Century Schoolbook Mono", monospace;
  line-height: 1.1;
  scroll-behavior: smooth;
  --swiper-theme-color: #000;
  --swiper-pagination-color: black;
  --swiper-pagination-bullet-size: 12px;
  --swiper-pagination-bullet-inactive-opacity: 1;
  padding-top: var(--header-height);
}
body.nav-down {
  --header-height: 120px;
}
@media screen and (max-width: 699px) {
  body.nav-down {
    --header-height: 104px;
  }
}

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

a {
  cursor: pointer;
  text-decoration: none;
}
a:link, a:visited, a:hover, a:active {
  color: inherit;
}

#skip-to-content-link {
  position: fixed;
  top: 0;
  background: black;
  color: white;
  height: 30px;
  left: 50%;
  padding: 8px;
  transform: translate(-50%, -100%);
  transition: transform 0.3s;
  z-index: 100;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
#skip-to-content-link:focus {
  transform: translate(-50%, 0);
}

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 5;
  padding: var(--padding-l);
  transition: transform 0.2s ease-out;
}
.nav-up #main-header {
  transform: translateY(-100%);
}
#main-header h1 {
  min-height: 45px;
}
@media screen and (max-width: 699px) {
  #main-header h1 {
    min-height: 30px;
  }
}
#main-header nav {
  overflow: hidden;
  height: 60px;
  transition: max-height 0.4s ease-out;
}
@media screen and (max-width: 1199px) {
  #main-header nav {
    height: 50px;
  }
}
@media screen and (max-width: 699px) {
  #main-header nav {
    max-height: 0;
  }
}
#main-header nav ul {
  margin-top: 45px;
}
@media screen and (max-width: 1199px) {
  #main-header nav ul {
    display: flex;
    gap: 1em;
    margin-top: 25px;
  }
}
#main-header nav ul li:last-child {
  grid-column-end: -1;
  text-align: right;
}
@media screen and (max-width: 1199px) {
  #main-header nav ul li:last-child {
    flex: 1;
  }
}
.nav-down #main-header nav {
  max-height: 0;
}
.nav-down #main-header #menu-button {
  display: block;
}
#main-header #menu-button {
  width: 25px;
  height: 25px;
  position: absolute;
  top: var(--padding-l);
  right: var(--padding-l);
}
#main-header #menu-button .line {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: black;
  transition: transform 0.4s ease-out;
  top: 50%;
  left: 0;
}
#main-header #menu-button .line:last-child {
  transform: rotate(90deg);
}

.open-nav #main-header nav {
  max-height: 60px;
}
@media screen and (max-width: 1199px) {
  .open-nav #main-header nav {
    height: 50px;
  }
}
.open-nav #main-header #menu-button .line {
  transform: rotate(45deg);
}
.open-nav #main-header #menu-button .line:last-child {
  transform: rotate(135deg);
}

.main-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.main-grid .twelve-cols {
  grid-column-end: span 12;
}
.main-grid .ten-cols {
  grid-column-end: span 10;
}
.main-grid .six-cols {
  grid-column-end: span 6;
}
.main-grid .five-cols {
  grid-column-end: span 5;
}
.main-grid .four-cols {
  grid-column-end: span 4;
}
.main-grid .three-cols {
  grid-column-end: span 3;
}
.main-grid .two-cols {
  grid-column-end: span 2;
}
.main-grid .one-cols-offset {
  grid-column-start: 2;
}
.main-grid .two-cols-offset {
  grid-column-start: 3;
}
@media screen and (max-width: 1023px) {
  .main-grid .tablet-three-cols {
    grid-column-end: span 3;
  }
}
@media screen and (max-width: 1023px) {
  .main-grid .tablet-nine-cols {
    grid-column-end: span 9;
  }
}
@media screen and (max-width: 1023px) {
  .main-grid .tablet-offset-three-cols {
    grid-column-start: 4;
  }
}
@media screen and (max-width: 699px) {
  .main-grid .smartphone-full {
    grid-column-start: 1;
    grid-column-end: -1;
  }
}
@media screen and (max-width: 699px) {
  .main-grid .smartphone-four-cols {
    grid-column-end: span 4;
  }
}
@media screen and (max-width: 699px) {
  .main-grid .smartphone-six-cols {
    grid-column-end: span 6;
  }
}
@media screen and (max-width: 699px) {
  .main-grid .smartphone-eight-cols {
    grid-column-end: span 8;
  }
}
@media screen and (max-width: 699px) {
  .main-grid .smartphone-four-cols-offset {
    grid-column-start: 5;
  }
}

section {
  scroll-margin-top: 3rem;
  border-top: 1px solid black;
}

.border-top {
  border-top: 1px solid black;
}

.border-bottom {
  border-bottom: 1px solid black;
}

.border-right {
  border-right: 1px solid black;
}

.padding-l {
  padding: var(--padding-l);
}

.padding-s {
  padding: var(--padding-s);
}

.padding-s-l {
  padding: var(--padding-s) var(--padding-l);
}

.padding-bottom-xl {
  padding-bottom: var(--padding-xl);
}

.padding-top-l {
  padding-top: var(--padding-l);
}

.padding-right-l {
  padding-right: var(--padding-l);
}

.padding-bottom-l {
  padding-bottom: var(--padding-l);
}

.padding-left-l {
  padding-left: var(--padding-l);
}

.padding-top-s {
  padding-top: var(--padding-s);
}

.padding-right-s {
  padding-right: var(--padding-s);
}

.padding-bottom-s {
  padding-bottom: var(--padding-s);
}

.padding-left-s {
  padding-left: var(--padding-s);
}

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

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

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

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

@media screen and (max-width: 699px) {
  .smartphone-margin-bottom-m {
    margin-bottom: 130px;
  }
}

@media screen and (max-width: 699px) {
  .smartphone-margin-bottom-l {
    margin-bottom: 200px;
  }
}

#kontakt .main-grid {
  align-items: end;
  row-gap: 4px;
}

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

.video-wrapper {
  position: relative;
}
.video-wrapper button.play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease-in-out 0.3s;
  width: 80px;
  height: 100px;
  padding: 20px;
  box-sizing: content-box;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .video-wrapper button.play-video {
    width: 64px;
    height: 80px;
  }
}
@media screen and (max-width: 699px) {
  .video-wrapper button.play-video {
    width: 48px;
    height: 60px;
  }
}
.video-wrapper.playing button.play-video {
  opacity: 0;
  transition-delay: 0s;
}

#intro video {
  max-height: calc(100vh - var(--header-height));
  width: 100%;
  object-fit: cover;
}

.querformat-video {
  display: none;
}
@media screen and (orientation: landscape) {
  .querformat-video {
    display: block;
  }
}

.hochformat-video {
  display: none;
}
@media screen and (orientation: portrait) {
  .hochformat-video {
    display: block;
  }
}

button {
  background-color: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

video {
  cursor: pointer;
}

.word-break {
  word-break: break-all;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

@media screen and (max-width: 699px) {
  .smartphone-hidden {
    display: none;
  }
}

@media screen and (max-width: 699px) {
  .smartphone-block {
    display: block;
  }
}

@media screen and (max-width: 699px) {
  .smartphone-grid {
    display: grid;
  }
}

.two-slides {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.swiper-slide {
  width: 100%;
  aspect-ratio: 16/9;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.swiper-slide img.portrait {
  object-position: center left;
}
.swiper-slide img.cover {
  object-fit: cover;
}

.swiper-pagination {
  position: static;
  margin-top: 10px;
}

.swiper-pagination-bullet {
  border: 1px solid black;
  background-color: white;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: black;
}

.impressum-content {
  width: 90%;
  max-width: 1200px;
  margin: 3rem auto;
  min-height: 80vh;
}
.impressum-content h3, .impressum-content h4 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}
.impressum-content h3 {
  font-size: 1.2em;
}
.impressum-content p:not(:last-child) {
  margin-bottom: 1em;
}

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