@charset "UTF-8";
@import url("https://tiles.rheinmain-interactive.de/assets/leaflet/leaflet.css");
:root {
  --font-serif: Merriweather, serif;
  --font-sans: Merriweather Sans, sans-serif;
  --c-white: #FFFFFF;
  --c-bg: #243B49;
  --c-bg-light: #325164;
  --c-bg-dark: #1f343f;
  --c-signal: #FF7C0C;
  --c-font: rgba(255, 255, 255, 0.85);
  --angle: 18deg;
  --neg-angle: -18deg;
  --anglesm: 3deg;
  --neg-anglesm: -3deg;
  --box-shadow: -6px 0px 13px 0px rgba(12, 21, 27, 0.6);
  --header1: clamp(2.5rem, 3vw, 4rem);
  --header2: clamp(2rem, 2vw, 3rem);
  --text: clamp(1.5rem, 1.7vw, 1.7rem);
  --label: clamp(1rem, 2vw, 1.3rem);
}

@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 300;
  src: url("./fonts/merriweather-v30-latin-300.woff2") format("woff2"), url("./fonts/merriweather-v30-latin-300.woff") format("woff");
}
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/merriweather-v30-latin-regular.woff2") format("woff2"), url("./fonts/merriweather-v30-latin-regular.woff") format("woff");
}
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 700;
  src: url("./fonts/merriweather-v30-latin-700.woff2") format("woff2"), url("./fonts/merriweather-v30-latin-700.woff") format("woff");
}
@font-face {
  font-family: "Merriweather Sans";
  font-style: normal;
  font-weight: 300;
  src: url("./fonts/merriweather-sans-v22-latin-300.woff2") format("woff2"), url("./fonts/merriweather-sans-v22-latin-300.woff") format("woff");
}
@font-face {
  font-family: "Merriweather Sans";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/merriweather-sans-v22-latin-regular.woff2") format("woff2"), url("./fonts/merriweather-sans-v22-latin-regular.woff") format("woff");
}
@font-face {
  font-family: "Merriweather Sans";
  font-style: italic;
  font-weight: 400;
  src: url("./fonts/merriweather-sans-v22-latin-italic.woff2") format("woff2"), url("./fonts/merriweather-sans-v22-latin-italic.woff") format("woff");
}
@font-face {
  font-family: "Merriweather Sans";
  font-style: normal;
  font-weight: 600;
  src: url("./fonts/merriweather-sans-v22-latin-600.woff2") format("woff2"), url("./fonts/merriweather-sans-v22-latin-600.woff") format("woff");
}
@font-face {
  font-family: "Merriweather Sans";
  font-style: normal;
  font-weight: 700;
  src: url("./fonts/merriweather-sans-v22-latin-700.woff2") format("woff2"), url("./fonts/merriweather-sans-v22-latin-700.woff") format("woff");
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 67.5%;
}

ul {
  list-style: none;
}

body {
  background: #243B49;
  color: #FFFFFF;
}

body, button {
  font-size: clamp(1.5rem, 1.7vw, 1.7rem);
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 300;
}

h1, h2, h3, h4, h5 {
  font-family: "Merriweather", serif;
}

h1 {
  font-size: clamp(2.5rem, 3vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 2vw, 3rem);
  margin: 1rem 0;
  line-height: 1.5;
}

h3 {
  font-size: clamp(2rem, 2vw, 3rem);
}

h5 {
  font-size: clamp(1.7rem, 2vw, 2rem);
  font-weight: 400;
}

a {
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.25em;
}
a:hover {
  text-decoration-color: #FF7C0C;
}
a:hover[target=_blank]::after {
  color: #FF7C0C;
}
a[target=_blank]::after {
  content: "↗";
}

.strong {
  font-weight: 600;
  color: #FFFFFF;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.logo {
  position: relative;
}
.logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-bg);
  transform: skew(var(--neg-angle), 0deg);
  transform-origin: bottom right;
  left: -2em;
  z-index: -1;
}
.logo {
  position: absolute;
  height: clamp(50px, 10dvh, 100px);
  width: clamp(50px, 10dvh, 120px);
  z-index: 99;
  top: 0;
}
.logo-title {
  position: relative;
}
.logo-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-bg);
  transform: skew(var(--neg-angle), 0deg);
  transform-origin: bottom right;
  left: -2em;
  z-index: -1;
}
.logo-title::before {
  left: 0;
}
.logo-title {
  box-sizing: content-box;
  position: absolute;
  height: 100%;
  max-width: 11em;
  top: 0;
  left: clamp(50px, 10dvh, 100px);
  cursor: default;
  padding-left: 1.6rem;
  font-family: var(--font-serif);
  font-size: calc(clamp(50px, 10dvh, 100px) * 0.3);
  font-weight: 300;
  line-height: 1.1;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  transform-origin: left center;
  perspective: 20em;
}
body:not(.home) .logo:not(:hover) .logo-title {
  opacity: 0;
  transform: rotateY(90deg);
}
@media (max-width: 767px) {
  body:not(.home) .logo-title {
    display: none;
  }
}
@media (hover: none) {
  body:not(.home) .logo-title {
    display: none;
  }
}
.logo a {
  height: 100%;
  width: 100%;
}
.logo a img {
  position: relative;
  height: 60%;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: 0.5rem;
  margin-right: 1.8rem;
}

nav {
  position: absolute;
  height: clamp(50px, 10dvh, 100px);
  width: 100vw;
  top: 0;
  left: 0;
}

.nav-links {
  background: #243B49;
  width: 100vw;
  height: 100dvh;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.5s ease-out, box-shadow 1s ease-in-out;
}
.nav-links a {
  text-decoration: none;
}
@media (min-width: 800px) {
  .nav-links {
    width: 50vw;
  }
}
@media (min-width: 1200px) {
  .nav-links {
    width: 30vw;
  }
}

.nav-footer {
  position: absolute;
  width: 100%;
  height: clamp(50px, 10dvh, 100px);
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  z-index: 100;
  background: #243B49;
}
.nav-footer a {
  padding: 1rem;
  margin: 0 1rem;
}
.nav-footer a:hover, .nav-footer a.active {
  color: #243B49;
  background: #FFFFFF;
}

.menu {
  height: 100%;
  width: 100%;
  padding: clamp(50px, 10dvh, 100px) 0;
  overflow-y: scroll;
  scrollbar-width: none;
}
.menu ul {
  list-style: none;
}

.list-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.list-links li {
  width: 100%;
  margin: 0;
}
.list-links li > a {
  display: block;
  margin: 0;
  padding: 2rem;
}
.list-links li > a:hover {
  background: #FFFFFF;
  color: #243B49;
  text-decoration: none;
}
.list-links li.active a {
  background: #FFFFFF;
  color: #243B49;
  text-decoration: none;
}
.list-links button {
  padding: 2rem;
  width: 100%;
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
}
.list-links button:hover {
  color: #243B49;
  background: #FFFFFF;
}
.list-links button:hover i.arrow {
  border-color: #243B49;
}

.arrow {
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 0;
  margin-left: 5px;
  transform: rotate(45deg) translateY(-60%);
  transition: transform 0.5s ease;
  background: transparent;
  aspect-ratio: 1;
  width: 0.5em;
}
.arrow:hover {
  border-color: #243B49;
}
.arrow.dropdown-open {
  transform: rotate(-135deg) translateY(0%);
}

.dropdown {
  max-height: 0;
  width: 100%;
  background: #325164;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.dropdown li:first-child {
  margin-top: 1rem;
}
.dropdown li a {
  text-align: center;
  text-decoration: none;
  color: #FFFFFF;
  font-size: calc(clamp(1.5rem, 1.7vw, 1.7rem) * 0.9);
}
.dropdown-open {
  max-height: calc(100dvh - 22em);
  overflow-y: scroll;
  scrollbar-width: none;
}

.burger-menu {
  position: relative;
}
.burger-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-bg);
  transform: skew(var(--angle), 0deg);
  transform-origin: bottom left;
  right: -2em;
  z-index: -1;
}
.burger-menu {
  position: absolute;
  height: clamp(50px, 10dvh, 100px);
  width: clamp(50px, 10dvh, 100px);
  z-index: 100;
  cursor: pointer;
  right: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.burger {
  width: 50%;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.burger > span {
  display: block;
  position: relative;
  width: 100%;
  height: 10%;
  background-color: white;
  border-radius: 0.1rem;
}
.burger > span:nth-child(1) {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}
.burger > span:nth-child(2) {
  transition: transform 0.2s ease-in-out;
}
.burger > span:nth-child(3) {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}
.burger.burger-toggle > span:nth-child(1) {
  transform: rotate(45deg) translateY(25%);
}
.burger.burger-toggle > span:nth-child(2) {
  transform: scaleY(0);
}
.burger.burger-toggle > span:nth-child(3) {
  transform: rotate(-45deg) translateY(-25%);
}

.nav-open {
  transform: translateX(-100%);
  box-shadow: #1f343f 0 0 1em;
}

.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(31, 52, 63, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  z-index: 9999;
}
.modal > .inner {
  padding: 2em;
  background-color: #243B49;
  color: white;
  max-width: 40em;
  line-height: 1.5;
}
.modal > .inner > * {
  margin-bottom: 1em;
}
.modal button {
  display: block;
  position: relative;
  background: none;
  color: #FFFFFF;
  padding: 1rem;
  border: none;
  line-height: 1;
  cursor: pointer;
  margin-inline: auto;
  z-index: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.modal button, .modal button a {
  text-decoration: none;
}
.modal button::after {
  position: absolute;
  content: "";
  background: #FF7C0C;
  z-index: -1;
  transition: all 0.3s ease;
  inset: 0;
  border-radius: 0.2em;
}
.modal button:hover::after {
  transform: skew(-15deg, 0deg);
}

body.home {
  overflow-y: visible;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.8) #243B49;
}

.sticky {
  position: fixed;
  z-index: 10;
}

nav.sticky {
  background: #243B49;
}
nav.sticky .nav-links {
  z-index: 9;
}

.overflow-wrapper {
  position: absolute;
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
}
.overflow-wrapper > :not(nav) {
  animation: fade-in 2s ease-out;
}

.intro-wrapper {
  position: fixed;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  z-index: 1000 !important;
  pointer-events: none;
  background: #243B49;
  animation: intro-animation 1s 10s 1 linear forwards;
}
.intro-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .intro-wrapper {
    display: none;
  }
}

@keyframes intro-animation {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Leaflet map */
.map-hero {
  position: relative;
  margin-top: clamp(50px, 10dvh, 100px);
  display: block;
  background-color: #243B49;
}

.leaflet-container > .leaflet-map-pane {
  background-color: #243B49;
  position: relative;
}
.leaflet-container > .leaflet-map-pane > .leaflet-tile-pane {
  filter: url(#blue-multiply-filter);
}
.leaflet-container .leaflet-control-attribution {
  display: none;
}

.map {
  min-height: 20em;
  height: min(110em, 84dvh - 19em);
  width: 100%;
  z-index: 1;
}
.map .leaflet-bottom {
  bottom: 2rem;
}
.map .leaflet-control-zoom > a {
  background-color: var(--c-bg-dark);
  color: #FFF;
}
.map .leaflet-control-zoom > a:hover {
  background-color: var(--c-signal);
}
.map, .map > div {
  background-color: #243B49 !important;
}
.map .map-marker > div {
  font-size: 1.5rem;
  background-color: var(--c-signal);
  position: absolute;
  bottom: 50%;
  left: 50%;
  box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.5);
}
.map .map-marker > div::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  width: 1em;
  aspect-ratio: 2/1;
  transform-origin: 0 100%;
  transform: rotate(-45deg) skew(-45deg);
  background-color: #FF7C0C;
}
.map .map-marker > div::after,
.map .map-marker > div span {
  content: "";
  position: absolute;
  display: block;
  bottom: 0.5em;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 1.6em;
  min-height: 1.6em;
  padding: 0.3em;
  line-height: 1;
  background-color: var(--c-signal);
  color: var(--c-white);
}
.map .map-marker > div::after {
  background-image: url("/assets/img/logo.svg");
  background-size: auto 70%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.map .map-marker > div span {
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  padding: 0.3em 0.5em;
  transition: all 0.3s ease;
  max-width: 10em;
  overflow: hidden;
}
.map .map-marker.active {
  z-index: 998 !important;
}
.map .map-marker:hover {
  z-index: 999 !important;
}
.map .map-marker:not(:hover):not(.active) > div span {
  opacity: 0;
  max-width: 1.63em;
}

.slider {
  position: relative;
  z-index: 5;
  transform: translateY(-13%);
  max-height: 20vh;
}
.slider > * {
  overflow: visible;
}

.control-c {
  width: 36px;
  height: 36px;
}

.splide-prev,
.splide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.splide-prev img,
.splide-next img {
  display: block;
  width: 100%;
  height: 100%;
}

.splide-prev {
  left: clamp(0px, 1vw, 20px);
}

.splide-next {
  right: clamp(0px, 1vw, 20px);
}

.splide__slide {
  background-color: #325164;
  transform: skewX(-18deg);
  transition: transform 0.2s;
  overflow: hidden;
  position: relative;
  height: 20vh;
}
.splide__slide img {
  transform: skewX(18deg);
  width: 140%;
  height: 100%;
  margin: 0 -20%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s ease;
}
.splide__slide:hover {
  cursor: pointer;
}
.splide__slide.new::after {
  content: "Neu";
  position: absolute;
  left: 1em;
  top: 1em;
  background-color: white;
  color: black;
  padding: 0.2em 0.3em;
  border-radius: 0.1rem 0.2rem;
  font-weight: bold;
  mix-blend-mode: screen;
  text-transform: uppercase;
}
.splide__slide .slider-link {
  position: absolute;
  inset: 0;
  transform-origin: bottom;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.splide__slide .slider-link a {
  position: absolute;
  inset: 0;
}
.splide__slide .slider-link a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  background-color: #FF7C0C;
}
.splide__slide .slider-link a .slider-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: skew(18deg);
  font-size: clamp(1rem, 2vw, 1.3rem);
}
.splide__slide:not(.is-active):not(:hover) img {
  mix-blend-mode: luminosity;
  opacity: 0.66;
}
.splide__slide.is-active {
  transform: skewX(-18deg) scale(1.2);
  transition: all 0.5s ease-in-out;
  border-radius: 0.4rem;
  z-index: 10;
}
.splide__slide.is-active img {
  filter: brightness(1);
}
.splide__slide.is-active .slider-link {
  transform: translateY(0);
}

.tour-caption::before {
  content: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='' height='' viewBox='0 0 422 422'%3E%3Cdefs%3E%3CclipPath id='clip-icon-man-quadrat'%3E%3Crect width='422' height='422'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='icon-man-quadrat' clip-path='url(%23clip-icon-man-quadrat)'%3E%3Cpath id='icon-figure' d='M146.634,160.051c7.485,11.824,11.136,28.923,19.973,32.62,25.267,10.575,62.133,15.462,66.282,14.955,3.643-.447,8.348-4.92,9.127-9.292.772-4.33-2.531-10.668-6.912-12.221-11.011-3.908-49.67-7.317-54.267-16.744-4.8-9.832-5.4-11.022-8.422-23.1-8.995-35.97-24.57-52.166-63.585-52.056-12.8.034-76.878,26.129-83.334,37.32A19.2,19.2,0,0,0,23.6,135.9C18.426,154.286,12.369,172.5,8.76,191.2a11.936,11.936,0,0,0,8.132,13.478c6.256,1.941,10.746-1.882,13.451-6.845,4.688-8.592,9.841-48.621,18.678-52.951,18.977-9.292,20.487-10.212,31.955-13.1-.8,4.76-1.17,8.879-2.207,12.82-12.828,48.723-25.225,97.58-38.833,146.075-9.6,34.206-19.193,64.218-29.83,98.1-3.477,11.064-.788,21.167,3.593,24.636,5.51,4.355,16.554,6.321,22.727,3.553,6.3-2.819,11.426-12,13.882-19.487,13.227-40.291,25.433-80.937,38.07-121.431,1.46-4.667,3.41-9.174,5.51-14.744,4.24,3.8,7.053,6.119,9.659,8.668,15.832,15.462,31.9,30.67,47.2,46.672,3.626,3.8,5.452,10.077,6.588,15.546C162.068,355.067,166,378.116,170.69,401c3.02,14.77,14.637,23.26,26.76,20.466,11.932-2.743,17.616-13.731,14.687-28.9-4.929-25.547-9.393-51.221-15.367-76.514a53.91,53.91,0,0,0-12.447-23.024c-15.342-16.66-32.12-31.944-47.828-48.275-3.153-3.283-6.447-9.225-5.7-13.149,4.448-23.175,10.065-46.106,15.849-71.552Zm25.117-120.5C171.884,17.217,155.762.1,132.761,0,109.129-.1,93.371,17.462,93.579,39.886c.207,21.724,15.832,38.916,38.659,38.823,23.2-.1,39.389-16.9,39.514-39.16Z' transform='translate(85.679 0.001)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A");
  position: relative;
  width: 20px;
  height: 20px;
}

.slider-link:hover .tour-caption::before {
  transform: rotateY(360deg);
  transition: transform 0.5s ease-in-out;
}

body:not(.js) .map {
  display: none;
}
body:not(.js) .slider {
  max-height: unset;
  transform: translateY(0%);
}
body:not(.js) .locations {
  display: grid;
  position: relative;
  margin-top: clamp(5rem, 10vh, 10rem);
  width: 100vw;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 800px) {
  body:not(.js) .locations {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 550px) {
  body:not(.js) .locations {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}
body:not(.js) .locations .sliderimg {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body:not(.js) .locations img {
  width: 140%;
  height: 100%;
  transform-origin: bottom left;
  -o-object-fit: cover;
     object-fit: cover;
}
body:not(.js) .locations .slider-link {
  position: absolute;
  inset: 0;
  transform: scaleY(100%);
  transition: transform 0.3s ease;
  transform-origin: bottom;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body:not(.js) .locations .slider-link a {
  position: absolute;
  inset: 0;
}
body:not(.js) .locations .slider-link a .slider-title {
  background-color: #FF7C0C;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1rem, 2vw, 1.3rem);
}
body:not(.js) .locations .slider-link a:hover .slider-title::after {
  transform: translateY(-50%) rotateY(360deg);
  transition: transform 0.5s ease-in-out;
}

.home-about {
  min-height: 50vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  background-color: #243B49;
  padding: 2rem;
  gap: 1rem;
  z-index: 3;
  text-wrap: balance;
}
.home-about p {
  max-width: 800px;
  text-align: center;
  color: #FFFFFF;
  line-height: 2;
}
.home-about .logo-angeschnitten {
  height: 80%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 10%;
}
.home-about a {
  margin: 2rem 0;
  display: block;
  position: relative;
  background: none;
  color: #FFFFFF;
  padding: 1rem;
  border: none;
  line-height: 1;
  cursor: pointer;
  margin-inline: auto;
  z-index: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.home-about a, .home-about a a {
  text-decoration: none;
}
.home-about a::after {
  position: absolute;
  content: "";
  background: #FF7C0C;
  z-index: -1;
  transition: all 0.3s ease;
  inset: 0;
  border-radius: 0.2em;
}
.home-about a:hover::after {
  transform: skew(-15deg, 0deg);
}
.home-about.partner {
  background-color: #325164;
}
@media (max-width: 767px) {
  .home-about {
    padding-bottom: 20vw;
  }
  .home-about::before {
    background-color: #243B49;
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    transform: skewY(var(--neg-anglesm));
    min-height: 20vw;
    transform-origin: 100% 100%;
  }
  .home-about.partner {
    background-color: #325164;
  }
  .home-about.partner::before {
    background-color: #325164;
    top: -5rem;
  }
}

.home-lookout {
  line-height: 2;
}
.home-lookout .lined-text::before {
  background: #325164;
}

.lined-text:not(.animateb)::before {
  left: 0;
}

body.detail {
  overflow: hidden;
  --title-height: clamp(50px, 10dvh, 100px);
  --overlay-transform: calc(100dvh - var(--title-height));
}

.tour {
  height: var(--overlay-transform);
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.help-block {
  height: clamp(50px, 10dvh, 100px);
  width: 100%;
  position: absolute;
  background: #243B49;
  bottom: 0;
  display: none !important;
}

body.detail .info {
  height: 100vh;
  min-height: 100dvh;
  width: 100vw;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 59, 73, 0.6) 0%, rgb(36, 59, 73) 90%, rgb(36, 59, 73) 100%);
  backdrop-filter: blur(3px) saturate(0.2);
  transition: transform 0.7s ease;
  z-index: 7;
  animation: backgr 4.5s ease-in normal forwards;
}
body.detail .info > * {
  animation: fade-in 2s;
}

.info .title {
  background: #243B49;
  height: clamp(50px, 10dvh, 100px);
  width: 100vw;
  top: 0;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.info .title h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  margin: 0;
  max-width: calc(100vw - 16rem);
  text-align: center;
}
.info .title h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  margin: 0;
}
.info .title::after {
  content: "";
  height: 100%;
  aspect-ratio: 1;
  display: block;
  background-image: url("/assets/img/icon-info.svg");
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  background-position: center;
  position: absolute;
  right: 0;
}
.info .title img {
  position: absolute;
  right: 2.5rem;
  width: clamp(2rem, 3vw, 2.5rem);
}
.info .overlay {
  height: var(--overlay-transform);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: scroll;
  padding: min(8rem, 8vh) max(1em, 5vw);
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: #FFFFFF transparent;
}
.info .overlay::-webkit-scrollbar {
  width: 0.8rem;
}
.info .overlay::-webkit-scrollbar-track {
  background: none;
}
.info .overlay::-webkit-scrollbar-thumb {
  background-color: #FFFFFF;
}
.info .first-header {
  font-size: clamp(3rem, 3vw, 4.5rem);
  margin: 2rem 0;
}
.info .info-text {
  --marginal-width: clamp(28rem, 36%, 35rem);
  --marginal-gap: 2rem;
  position: relative;
  min-height: 100%;
  max-width: 80rem;
  margin: 0 auto;
  color: #FFFFFF;
  line-height: 1.7;
  transition: transform 1s ease;
}
@media (min-width: 80rem) and (max-width: 110rem) {
  .info .info-text {
    transform: translateX(calc((var(--marginal-width) + var(--marginal-gap)) / -2));
  }
}
.info .info-text > h2:first-child {
  font-size: clamp(3.5rem, 3vw, 4.5rem);
  font-weight: normal;
  line-height: min(1em + 2vw, 1.3em);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
.info .info-text p {
  margin: 0.5em 0 1em;
  color: rgba(255, 255, 255, 0.85);
}
.info .info-text .info-strong {
  font-weight: 600;
  color: #FFFFFF;
}
.info .info-text img {
  max-width: 100%;
}
.info .info-text:last-child {
  padding-bottom: 10rem;
}
.info .info-text .img-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
}
.info .info-text .img-container div {
  flex: 1 1 30rem;
}
.info .info-text .img-container img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.info .info-text .text-img-container {
  width: 100%;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.info .info-text .text-img-container .text-left {
  flex: 3 1 30rem;
  margin: 0;
}
.info .info-text .text-img-container .text-left p:last-child {
  margin-bottom: 0;
}
.info .info-text .text-img-container .img-right {
  flex: 1 1 30rem;
  width: 100%;
  height: 100%;
}
.info .info-text .text-img-container .img-right img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0;
}
.info .info-text .text-img-container .img-qf {
  max-width: 100%;
  margin-top: 3rem;
}
.info .info-text .text-img-container .img-qf img {
  min-width: 100%;
  margin-bottom: 0;
}
.info .info-text .text-img-container-hf {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.info .info-text .text-img-container-qf {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.info .highlight {
  width: 100%;
  padding: 5%;
  background: #FF7C0C;
  margin: 3rem 0;
  border-bottom: 8rem solid #243B49;
  border-radius: 0.2em;
}
.info .btn-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 3rem 0 4rem;
}
.info .btn-container .tour-start {
  transform: translateX(0);
  left: 0%;
  margin: 0;
}
.info .tour-start {
  display: block;
  position: relative;
  background: none;
  color: #FFFFFF;
  padding: 1rem;
  border: none;
  line-height: 1;
  cursor: pointer;
  margin-inline: auto;
  z-index: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.info .tour-start, .info .tour-start a {
  text-decoration: none;
}
.info .tour-start::after {
  position: absolute;
  content: "";
  background: #FF7C0C;
  z-index: -1;
  transition: all 0.3s ease;
  inset: 0;
  border-radius: 0.2em;
}
.info .tour-start:hover::after {
  transform: skew(-15deg, 0deg);
}
.info .tour-start::before {
  content: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='15' height='15' viewBox='0 0 422 422'%3E%3Cdefs%3E%3CclipPath id='clip-icon-man-quadrat'%3E%3Crect width='422' height='422'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='icon-man-quadrat' clip-path='url(%23clip-icon-man-quadrat)'%3E%3Cpath id='icon_männchen' d='M146.634,160.051c7.485,11.824,11.136,28.923,19.973,32.62,25.267,10.575,62.133,15.462,66.282,14.955,3.643-.447,8.348-4.92,9.127-9.292.772-4.33-2.531-10.668-6.912-12.221-11.011-3.908-49.67-7.317-54.267-16.744-4.8-9.832-5.4-11.022-8.422-23.1-8.995-35.97-24.57-52.166-63.585-52.056-12.8.034-76.878,26.129-83.334,37.32A19.2,19.2,0,0,0,23.6,135.9C18.426,154.286,12.369,172.5,8.76,191.2a11.936,11.936,0,0,0,8.132,13.478c6.256,1.941,10.746-1.882,13.451-6.845,4.688-8.592,9.841-48.621,18.678-52.951,18.977-9.292,20.487-10.212,31.955-13.1-.8,4.76-1.17,8.879-2.207,12.82-12.828,48.723-25.225,97.58-38.833,146.075-9.6,34.206-19.193,64.218-29.83,98.1-3.477,11.064-.788,21.167,3.593,24.636,5.51,4.355,16.554,6.321,22.727,3.553,6.3-2.819,11.426-12,13.882-19.487,13.227-40.291,25.433-80.937,38.07-121.431,1.46-4.667,3.41-9.174,5.51-14.744,4.24,3.8,7.053,6.119,9.659,8.668,15.832,15.462,31.9,30.67,47.2,46.672,3.626,3.8,5.452,10.077,6.588,15.546C162.068,355.067,166,378.116,170.69,401c3.02,14.77,14.637,23.26,26.76,20.466,11.932-2.743,17.616-13.731,14.687-28.9-4.929-25.547-9.393-51.221-15.367-76.514a53.91,53.91,0,0,0-12.447-23.024c-15.342-16.66-32.12-31.944-47.828-48.275-3.153-3.283-6.447-9.225-5.7-13.149,4.448-23.175,10.065-46.106,15.849-71.552Zm25.117-120.5C171.884,17.217,155.762.1,132.761,0,109.129-.1,93.371,17.462,93.579,39.886c.207,21.724,15.832,38.916,38.659,38.823,23.2-.1,39.389-16.9,39.514-39.16Z' transform='translate(85.679 0.001)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A");
  position: relative;
}

.info-hidden {
  transform: translateY(var(--overlay-transform));
}

.floorplan {
  margin-bottom: 3rem;
}
@media (max-width: 600px) {
  .floorplan {
    margin-bottom: 3rem;
  }
}
@media (max-width: 308px) {
  .floorplan {
    margin-bottom: 6rem;
  }
}

.floor-plan {
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  margin-bottom: 3rem;
  background: rgba(30, 50, 61, 0.8);
}
.floor-plan img.floor-plan-img {
  position: relative;
  margin-bottom: 0;
  max-height: 500px;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
}

.floor-plan-wrapper {
  padding: 2rem 0;
  position: relative;
}
.floor-plan-wrapper img {
  display: block;
}
@media (min-width: 560px) {
  .floor-plan-wrapper {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 460px) {
  .floor-plan-wrapper {
    margin: 0 min(-1em, -5vw);
  }
}

.bubble {
  position: absolute;
  color: #FFFFFF;
  text-align: center;
  z-index: 1;
  transform: translateY(calc(-100% - 10px));
}
.bubble a {
  text-decoration: none;
  padding: clamp(0.2rem, 0.7vw, 1rem) clamp(0.5rem, 1.3vw, 2rem);
  font-size: clamp(1rem, 2vw, 1.3rem);
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  white-space: nowrap;
}
.bubble a::before {
  content: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='15' height='15' viewBox='0 0 422 422'%3E%3Cdefs%3E%3CclipPath id='clip-icon-man-quadrat'%3E%3Crect width='422' height='422'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='icon-man-quadrat' clip-path='url(%23clip-icon-man-quadrat)'%3E%3Cpath id='icon_männchen' d='M146.634,160.051c7.485,11.824,11.136,28.923,19.973,32.62,25.267,10.575,62.133,15.462,66.282,14.955,3.643-.447,8.348-4.92,9.127-9.292.772-4.33-2.531-10.668-6.912-12.221-11.011-3.908-49.67-7.317-54.267-16.744-4.8-9.832-5.4-11.022-8.422-23.1-8.995-35.97-24.57-52.166-63.585-52.056-12.8.034-76.878,26.129-83.334,37.32A19.2,19.2,0,0,0,23.6,135.9C18.426,154.286,12.369,172.5,8.76,191.2a11.936,11.936,0,0,0,8.132,13.478c6.256,1.941,10.746-1.882,13.451-6.845,4.688-8.592,9.841-48.621,18.678-52.951,18.977-9.292,20.487-10.212,31.955-13.1-.8,4.76-1.17,8.879-2.207,12.82-12.828,48.723-25.225,97.58-38.833,146.075-9.6,34.206-19.193,64.218-29.83,98.1-3.477,11.064-.788,21.167,3.593,24.636,5.51,4.355,16.554,6.321,22.727,3.553,6.3-2.819,11.426-12,13.882-19.487,13.227-40.291,25.433-80.937,38.07-121.431,1.46-4.667,3.41-9.174,5.51-14.744,4.24,3.8,7.053,6.119,9.659,8.668,15.832,15.462,31.9,30.67,47.2,46.672,3.626,3.8,5.452,10.077,6.588,15.546C162.068,355.067,166,378.116,170.69,401c3.02,14.77,14.637,23.26,26.76,20.466,11.932-2.743,17.616-13.731,14.687-28.9-4.929-25.547-9.393-51.221-15.367-76.514a53.91,53.91,0,0,0-12.447-23.024c-15.342-16.66-32.12-31.944-47.828-48.275-3.153-3.283-6.447-9.225-5.7-13.149,4.448-23.175,10.065-46.106,15.849-71.552Zm25.117-120.5C171.884,17.217,155.762.1,132.761,0,109.129-.1,93.371,17.462,93.579,39.886c.207,21.724,15.832,38.916,38.659,38.823,23.2-.1,39.389-16.9,39.514-39.16Z' transform='translate(85.679 0.001)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A");
  position: relative;
}
.bubble a::after {
  position: absolute;
  content: "";
  background: #FF7C0C;
  transition: all 0.3s ease;
  inset: 0;
  z-index: -1;
  border-radius: 0.2em;
  transform-origin: bottom left;
}
.bubble a:hover::after {
  transform: skewX(-15deg);
}
.bubble::after {
  content: "";
  position: absolute;
  display: block;
  width: 1em;
  height: 1rem;
  z-index: -1;
  background-color: #FF7C0C;
  left: 0;
  transform-origin: bottom left;
  transition: all 0.3s ease;
  transform: skewY(-45deg);
}
.bubble.bubble-left {
  transform: translate(-100%, calc(-100% - 10px));
}
.bubble.bubble-left::after {
  left: auto;
  right: 0;
  transform-origin: bottom right;
  transform: skewY(45deg);
}
@media (max-width: 767px) {
  .bubble.mobile-bubble a::before {
    display: none;
  }
}

.bulletpoints {
  margin: 2rem 0;
  position: relative;
}
.bulletpoints ul {
  position: relative;
  margin: 0;
  list-style-position: outside;
  padding-left: 2rem;
}
.bulletpoints ul li {
  line-height: 1.5;
  margin-bottom: 0.6em;
}
.bulletpoints ul a {
  color: #FF7C0C;
}

.extern {
  top: 15vh;
}
.extern h2 {
  color: #FF7C0C;
}
.extern h2 p {
  color: #FFFFFF;
}

.external {
  margin-top: 31rem;
}

.flexext {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

@media (min-width: 80rem) {
  .bp-fixed {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: var(--marginal-width);
    top: 0;
    left: calc(100% + var(--marginal-gap));
    padding: 2rem;
    background: #243B49;
  }
  .bp-fixed .tour-start {
    left: 0;
    transform: translateX(0);
    order: 1;
    margin: 2rem 0 1rem;
  }
  .tour-start.externbt {
    margin: 0 0 2rem;
  }
}
.multi-floor {
  width: 100%;
  position: relative;
  display: block;
  margin-bottom: 3rem;
  background: rgba(30, 50, 61, 0.8);
}

.floor-0, .floor-1, .floor-2, .floor-3,
.floor-4, .floor-5, .floor-6, .floor-7 {
  width: 100%;
  height: 100%;
}
.floor-0 img, .floor-1 img, .floor-2 img, .floor-3 img,
.floor-4 img, .floor-5 img, .floor-6 img, .floor-7 img {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  margin-top: 2rem;
}

.tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  display: block;
  gap: 2px;
  right: 0;
  transform: translateY(calc(-100% + 4px));
  z-index: 1;
}
@media (max-width: 600px) {
  .tabs {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
}
@media (max-width: 308px) {
  .tabs {
    display: inline-block;
  }
}

.tab {
  cursor: pointer;
  padding: 0 1rem;
  display: inline-block;
  color: #FFFFFF;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}
@media (max-width: 600px) {
  .tab {
    padding: 0 0.5rem;
  }
}

.panels {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}

.panel {
  display: none;
  width: 90%;
  padding: 2rem 0;
  margin: 0 auto;
  animation: fadein 0.8s;
}

.panel-title {
  font-size: 1.5em;
  font-weight: bold;
}

.radio {
  display: none;
}

#floor-0:checked ~ .tabs #floor-0-tab,
#floor-1:checked ~ .tabs #floor-1-tab,
#floor-2:checked ~ .tabs #floor-2-tab,
#floor-3:checked ~ .tabs #floor-3-tab,
#floor-4:checked ~ .tabs #floor-4-tab,
#floor-5:checked ~ .tabs #floor-5-tab,
#floor-6:checked ~ .tabs #floor-6-tab,
#floor-7:checked ~ .tabs #floor-7-tab {
  border-bottom: solid 4px #FFFFFF;
}

#floor-0:checked ~ .panels #floor-0-panel,
#floor-1:checked ~ .panels #floor-1-panel,
#floor-2:checked ~ .panels #floor-2-panel,
#floor-3:checked ~ .panels #floor-3-panel,
#floor-4:checked ~ .panels #floor-4-panel,
#floor-5:checked ~ .panels #floor-5-panel,
#floor-6:checked ~ .panels #floor-6-panel,
#floor-7:checked ~ .panels #floor-7-panel {
  display: block;
}

@media (max-width: 405px) {
  #floor-6,
  #floor-7,
  #floor-6-tab,
  #floor-7-tab {
    display: none;
  }
}
@keyframes backgr {
  0% {
    opacity: 1;
    background-color: #243B49;
  }
  90% {
    opacity: 1;
    background-color: #243B49;
  }
  100% {
    background: linear-gradient(180deg, rgba(36, 59, 73, 0.6) 0%, #243b49 90%, #243b49 100%);
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body.about {
  overflow-y: visible;
  overflow-x: hidden;
}

.about .info {
  background: none;
}

.about {
  overflow: visible;
}

.about-title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #FF7C0C;
  z-index: 6;
  position: relative;
  height: clamp(30rem, 50vw, 45rem);
  padding: 0 2rem;
  text-wrap: balance;
}
.about-title::before {
  background-color: #FF7C0C;
  height: 60vw;
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  transform: skewY(var(--neg-anglesm));
  min-height: 78vw;
  transform-origin: 100% 100%;
}
@media (min-width: 767px) {
  .about-title {
    overflow: hidden;
  }
  .about-title::before {
    display: none;
  }
}

.about-tagline {
  max-width: 40em;
  line-height: 3.8rem;
}
@media (max-width: 767px) {
  .about-tagline {
    position: relative;
    z-index: 6;
    top: 0;
    padding-top: 70px;
  }
}

.hsrm-logo {
  height: clamp(20rem, 40vw, 40rem);
  position: absolute;
  right: 0;
  top: -7%;
  transform: rotate(270deg);
  opacity: 45%;
  pointer-events: none;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.lined {
  background-color: #243B49;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  overflow: hidden;
  font-family: "Merriweather", serif;
  height: clamp(45rem, 20vh, 65rem);
}
.lined > * {
  flex: 1 1 51%;
}

.lined-text {
  padding: 0 6rem 0 10rem;
  position: relative;
  z-index: 1;
  font-size: clamp(1.5rem, 1.7vw, 1.7rem);
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lined-text strong {
  font-weight: bold;
}
.lined-text p {
  margin-bottom: 1em;
}
.lined-text ul {
  list-style: none;
}
.lined-text ul li {
  margin-bottom: 0.4em;
}
.lined-text ul.team li::before,
.lined-text .walker::before {
  content: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='' height='' viewBox='0 0 422 422'%3E%3Cdefs%3E%3CclipPath id='clip-icon-man-quadrat'%3E%3Crect width='422' height='422'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='icon-man-quadrat' clip-path='url(%23clip-icon-man-quadrat)'%3E%3Cpath id='icon-figure' d='M146.634,160.051c7.485,11.824,11.136,28.923,19.973,32.62,25.267,10.575,62.133,15.462,66.282,14.955,3.643-.447,8.348-4.92,9.127-9.292.772-4.33-2.531-10.668-6.912-12.221-11.011-3.908-49.67-7.317-54.267-16.744-4.8-9.832-5.4-11.022-8.422-23.1-8.995-35.97-24.57-52.166-63.585-52.056-12.8.034-76.878,26.129-83.334,37.32A19.2,19.2,0,0,0,23.6,135.9C18.426,154.286,12.369,172.5,8.76,191.2a11.936,11.936,0,0,0,8.132,13.478c6.256,1.941,10.746-1.882,13.451-6.845,4.688-8.592,9.841-48.621,18.678-52.951,18.977-9.292,20.487-10.212,31.955-13.1-.8,4.76-1.17,8.879-2.207,12.82-12.828,48.723-25.225,97.58-38.833,146.075-9.6,34.206-19.193,64.218-29.83,98.1-3.477,11.064-.788,21.167,3.593,24.636,5.51,4.355,16.554,6.321,22.727,3.553,6.3-2.819,11.426-12,13.882-19.487,13.227-40.291,25.433-80.937,38.07-121.431,1.46-4.667,3.41-9.174,5.51-14.744,4.24,3.8,7.053,6.119,9.659,8.668,15.832,15.462,31.9,30.67,47.2,46.672,3.626,3.8,5.452,10.077,6.588,15.546C162.068,355.067,166,378.116,170.69,401c3.02,14.77,14.637,23.26,26.76,20.466,11.932-2.743,17.616-13.731,14.687-28.9-4.929-25.547-9.393-51.221-15.367-76.514a53.91,53.91,0,0,0-12.447-23.024c-15.342-16.66-32.12-31.944-47.828-48.275-3.153-3.283-6.447-9.225-5.7-13.149,4.448-23.175,10.065-46.106,15.849-71.552Zm25.117-120.5C171.884,17.217,155.762.1,132.761,0,109.129-.1,93.371,17.462,93.579,39.886c.207,21.724,15.832,38.916,38.659,38.823,23.2-.1,39.389-16.9,39.514-39.16Z' transform='translate(85.679 0.001)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A");
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 0.2em;
}
.lined-text::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #243B49;
  box-shadow: var(--box-shadow);
  top: 0;
  bottom: 0;
  left: 0;
  right: -100px;
  z-index: -1;
  transform: skew(var(--neg-angle));
  transition: all 1s;
}
.lined-text > * {
  position: relative;
}
@media (min-width: 767px) {
  .lined-text::before {
    height: 103%;
  }
}

.lined-img {
  position: relative;
}
.lined-img img {
  position: absolute;
  display: block;
  inset: 0;
  width: calc(100% + 8rem);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #1f343f;
}
.lined-img video {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -9%;
  height: 100%;
  width: 130%;
}

.lined:nth-child(2n) > .lined-text {
  order: -1;
  padding: 0 10rem 0 6rem;
}
.lined:nth-child(2n) > .lined-text::before {
  box-shadow: 6px 0px 13px 0px rgba(12, 21, 27, 0.6);
  left: -123px;
  right: 0;
  transform: skew(var(--angle));
}
.lined:nth-child(2n) > .lined-img img {
  left: -8rem;
}

.lined > .lined-text:not(.animateb)::before {
  left: -150%;
}

.lined:nth-child(2n) > .lined-text:not(.animateb)::before {
  right: -150%;
}

.flexalign {
  display: flex;
  justify-content: center;
  align-items: center;
}

.Teams {
  width: 100%;
}

.namen2 {
  z-index: 3;
  position: relative;
  text-align: center;
}

.name {
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.name::after {
  background-color: #FF7C0C;
  text-align: center;
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  z-index: -1;
}

.teambilder {
  display: flex;
  justify-content: center;
  width: 100%;
}
.teambilder .t1, .teambilder .t2, .teambilder .t3 {
  width: 138%;
  position: relative;
  left: -21%;
}
.teambilder .t2 {
  transform: skew(var(--angle));
  left: -17%;
}

.skewimg {
  transform: skew(var(--neg-angle));
  overflow: hidden;
  box-shadow: -14px 0px 10px 0px rgba(12, 21, 27, 0.5);
  clip-path: inset(0px -105px 2px -105px);
  z-index: 1;
  position: relative;
}
.skewimg::before {
  content: "";
  position: absolute;
  display: block;
  z-index: 6;
  width: 100%;
  height: 100%;
  box-shadow: inset -14px 0px 10px 0px rgba(12, 21, 27, 0.5);
  clip-path: polygon(95.97% -0.71%, 101.22% -1.76%, 100% 50%, 102.7% 101.41%, 63.88% 98.78%);
}

.home-about.partner {
  background-color: #325164;
}

.footer {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 3rem 0;
}

.social {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 30vw;
}
.social img {
  transition: 0.7s;
}
.social img:hover {
  transform: rotate(360deg);
}
.social a img {
  width: clamp(3rem, 9vh, 6rem);
}

.logofooter {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 1rem;
  width: 30vw;
}
.logofooter img {
  width: clamp(100px, 32vh, 130px);
}
@media (max-width: 992px) {
  .logofooter {
    display: none;
  }
}

.linksfooter {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 30vw;
  text-align: center;
}
.linksfooter a {
  min-width: 11rem;
  text-decoration: none;
}

.number1 {
  z-index: 5;
}

.number2 {
  z-index: 4;
}

.number3 {
  z-index: 3;
}

.number4 {
  z-index: 2;
}

.video-bg {
  -o-object-position: 80% 50%;
     object-position: 80% 50%;
  width: 150%;
  right: 0;
}

@media (min-width: 1100px) {
  .namem {
    margin-left: 4vw;
  }
}
@media (max-width: 767px) {
  .about h2 {
    padding: clamp(1rem, 5vw, 2rem);
    line-height: 3rem;
    font-size: 1.6rem;
  }
  .lined, .teambilder {
    flex-direction: column;
  }
  .skewimg,
  .teambilder .t2 {
    transform: skew(0deg);
    box-shadow: none;
  }
  .lined-img img,
  .lined-img video,
  .lined-img .team {
    position: relative;
    height: 60vh;
    -o-object-fit: cover;
       object-fit: cover;
    left: -10%;
  }
  .lined-text,
  .lined:nth-child(2n) > .lined-text {
    padding: 7rem 5rem;
  }
  .lined-text::before,
  .lined:nth-child(2n) > .lined-text::before {
    transform: skewY(var(--neg-anglesm));
    top: -25px;
    bottom: -25px;
    left: 0;
    right: 0;
  }
  .lined:nth-child(2n) > .lined-text {
    order: 1;
  }
  .lined, .lined > * {
    overflow: visible;
    height: 100%;
  }
  .img-left img,
  .teambilder img {
    clip-path: none;
  }
  .teambilder .t1,
  .teambilder .t2,
  .teambilder .t3 {
    margin: 0;
    left: 0;
    width: 100%;
  }
  .name {
    margin-top: -7px;
  }
  .namen2 h3 {
    transform: skewY(var(--neg-anglesm));
  }
  .name::after {
    box-shadow: 3px 0px 16px 12px rgba(16, 29, 37, 0.6);
    content: "";
    top: -12%;
    bottom: 0;
    left: 0;
    right: 0;
    height: 126%;
  }
  .footer {
    flex-direction: column;
  }
  .linksfooter {
    flex-direction: column;
  }
  .linksfooter a {
    padding-bottom: 3rem;
  }
  .social {
    padding-bottom: 4rem;
    width: 80vw;
    padding-top: 5rem;
  }
  .lined-text:not(.animateb)::before {
    top: -140vw;
  }
  .lined:nth-child(2n) > .lined-text:not(.animateb)::before {
    top: -140vw;
  }
  .number1 {
    z-index: 5 !important;
  }
}
:root {
  --f: 0.66;
}

.iframeani {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1000px;
  height: 1000px;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.dpnoneanimation {
  display: none;
}

svg {
  width: 90%;
  height: 80%;
}

.cls-2, .cls-4, .cls-5, .cls-6, .cls-7 {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
}

.cls-2 {
  stroke-width: 6px;
}

.cls-3 {
  fill: #fff;
}

.cls-4 {
  stroke-width: 32.914px;
}

.cls-5 {
  stroke-width: 15.191px;
}

.cls-6 {
  stroke-width: 6.624px;
}

.cls-7 {
  stroke-width: 5.57px;
}

.cls-1 {
  fill: #fff;
}

.kreis {
  fill: #fff;
  opacity: 0.88;
}

.circle-outline,
.circle-outline-inner,
.circle-outline-outer {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 8.94px;
}

.circle-outline-inner {
  stroke-width: 70px;
  opacity: 0.6;
}

#kreis,
#kontur {
  transform: scale(1.2);
  animation: kreisklickAnimationende calc(var(--f) * 0.5s) ease-in calc(var(--f) * 11s) normal forwards;
}

.cursor-circle {
  animation: showAnimation calc(var(--f) * 0.2s) ease-in calc(var(--f) * 6.5s) normal backwards, kreisPerspektiveAnimation calc(var(--f) * 2.4s) ease-in-out calc(var(--f) * 8.9s) normal forwards;
}

#Maus {
  transform-origin: center;
  perspective: 1200px;
  animation: mausAnimationrechts calc(var(--f) * 0.6s) ease-out calc(var(--f) * 2.2s) normal forwards, mausAnimationoben calc(var(--f) * 0.6s) ease-out calc(var(--f) * 3.2s) normal forwards, mausAnimationlinks calc(var(--f) * 0.6s) ease-out calc(var(--f) * 4.4s) normal forwards, mausAnimationunten calc(var(--f) * 0.6s) ease-out calc(var(--f) * 5.4s) normal forwards, mausAnimationmovekreis calc(var(--f) * 1.8s) ease-in-out calc(var(--f) * 6.9s) normal forwards, mausAnimationkreisklick calc(var(--f) * 1.3s) ease-in-out calc(var(--f) * 9s) normal forwards;
  transform: translate(-80px, 40px);
}

#Mauszeiger {
  animation: cursorDragAnimation calc(var(--f) * 0.04s) ease-in-out calc(var(--f) * 3s) normal forwards, cursorDragStopAnimation calc(var(--f) * 0.04s) ease-out calc(var(--f) * 3.9s) normal forwards, cursorDragAnimation calc(var(--f) * 0.04s) ease-out calc(var(--f) * 4.2s) normal forwards, cursorDragStopAnimation calc(var(--f) * 0.04s) ease-out calc(var(--f) * 5s) normal forwards, cursorDragAnimation calc(var(--f) * 0.04s) ease-out calc(var(--f) * 5.2s) normal forwards, cursorDragStopAnimation calc(var(--f) * 0.04s) ease-out calc(var(--f) * 6s) normal forwards, cursorClickAnimation calc(var(--f) * 0.4s) ease-in-out calc(var(--f) * 10.3s) normal forwards, hideAnimation calc(var(--f) * 0.2s) ease-in calc(var(--f) * 10.5s) normal forwards;
}

#Pfeile360 {
  animation: showAnimation calc(var(--f) * 0.5s) ease-in calc(var(--f) * 1s) normal backwards;
}

#nurPfeile {
  animation: hideAnimation calc(var(--f) * 0.5s) ease-in calc(var(--f) * 6s) normal forwards;
}

#Pfeil_rechts {
  animation: rpfeilAnimation calc(var(--f) * 1s) ease-in-out calc(var(--f) * 2.2s) normal backwards, showAnimation calc(var(--f) * 0.2s) ease-in calc(var(--f) * 2.1s) normal backwards, hideAnimation calc(var(--f) * 0.2s) ease-in calc(var(--f) * 3s) normal forwards;
}

#Pfeil_oben {
  animation: opfeilAnimation calc(var(--f) * 1s) ease-in-out calc(var(--f) * 3.4s) normal backwards, showAnimation calc(var(--f) * 0.4s) ease-in calc(var(--f) * 3.3s) normal backwards, hideAnimation calc(var(--f) * 0.2s) ease-in calc(var(--f) * 4.2s) normal forwards;
}

#Pfeil_links {
  animation: lpfeilAnimation calc(var(--f) * 1s) ease-in-out calc(var(--f) * 4.4s) normal backwards, showAnimation calc(var(--f) * 0.4s) ease-in calc(var(--f) * 4.3s) normal backwards, hideAnimation calc(var(--f) * 0.2s) ease-in calc(var(--f) * 5.2s) normal forwards;
}

#Pfeil_unten {
  animation: upfeilAnimation calc(var(--f) * 1s) ease-in-out calc(var(--f) * 5.6s) normal backwards, showAnimation calc(var(--f) * 0.4s) ease-in calc(var(--f) * 5.5s) normal backwards, hideAnimation calc(var(--f) * 0.2s) ease-in calc(var(--f) * 6.4s) normal forwards;
}

@keyframes showAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes hideAnimation {
  from {
    opacity: 1;
  }
  to {
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes kreisklickAnimationende {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(3);
  }
}
@keyframes kreisPerspektiveAnimation {
  0% {
    transform: none;
  }
  30% {
    transform: rotate3d(0, 1, 0, 60deg);
  }
  34% {
    transform: rotate3d(0, 1, 0, 60deg);
  }
  40% {
    transform: none;
  }
  80% {
    transform: rotate3d(1, 0, 0, 60deg);
  }
  84% {
    transform: rotate3d(1, 0, 0, 60deg);
  }
  90% {
    transform: none;
    opacity: 1;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
@keyframes mausAnimationmovekreis {
  0% {
    transform: translate(-140px, 30px);
  }
  30% {
    transform: translate(-400px, 90px);
  }
  34% {
    transform: translate(-390px, 90px);
  }
  60% {
    transform: translate(190px, 90px);
  }
  64% {
    transform: translate(180px, 90px);
  }
  80% {
    transform: translate(50px, 90px);
  }
  84% {
    transform: translate(40px, 90px);
  }
  100% {
    transform: translate(60px, 90px);
  }
}
@keyframes mausAnimationkreisklick {
  0% {
    transform: translate(60px, 90px);
  }
  20% {
    transform: translate(-130px, -10px);
  }
  50% {
    transform: translate(-130px, -10px);
  }
  70% {
    transform: translate(90px, -100px);
  }
  100% {
    transform: translate(90px, -100px);
  }
}
@keyframes cursorClickAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes cursorDragAnimation {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.98);
  }
}
@keyframes cursorDragStopAnimation {
  to {
    transform: scale(1);
  }
}
@keyframes mausAnimationrechts {
  0% {
    transform: translate(-80px, 40px);
  }
  60% {
    transform: translate(90px, 40px);
  }
  100% {
    transform: translate(80px, 40px);
  }
}
@keyframes mausAnimationoben {
  0% {
    transform: translate(80px, 40px);
  }
  60% {
    transform: translate(90px, -170px);
  }
  100% {
    transform: translate(90px, -160px);
  }
}
@keyframes mausAnimationlinks {
  0% {
    transform: translate(90px, -160px);
  }
  60% {
    transform: translate(-150px, -160px);
  }
  100% {
    transform: translate(-140px, -160px);
  }
}
@keyframes mausAnimationunten {
  0% {
    transform: translate(-140px, -160px);
  }
  60% {
    transform: translate(-140px, 40px);
  }
  100% {
    transform: translate(-140px, 30px);
  }
}
@keyframes rpfeilAnimation {
  0% {
    transform: translateX(-60px);
  }
  30% {
    transform: translateX(20px);
  }
  70% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(-3px);
  }
}
@keyframes upfeilAnimation {
  0% {
    transform: translateY(-60px);
  }
  30% {
    transform: translateY(30px);
  }
  70% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(3px);
  }
}
@keyframes opfeilAnimation {
  0% {
    transform: translateY(60px);
  }
  30% {
    transform: translateY(-20px);
  }
  70% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-3px);
  }
}
@keyframes lpfeilAnimation {
  0% {
    transform: translateX(60px);
  }
  30% {
    transform: translateX(-20px);
  }
  70% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(-3px);
  }
}
body.legal {
  overflow-y: visible;
  overflow-x: hidden;
}

.text-container {
  padding-bottom: 120px;
}
.text-container h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-family: "Merriweather", serif;
  margin: 2rem 0;
  line-height: 1.3;
}
.text-container h3 {
  font-size: clamp(1rem, 1.8vw, 2rem);
  font-family: "Merriweather", serif;
  margin: 2rem 0;
  line-height: 1.3;
}
.text-container ul {
  list-style: square inside;
}

.mleft {
  margin-left: 23px;
}

.mbottom {
  margin-bottom: 8px;
}

.mtop {
  margin-top: 8px;
}/*# sourceMappingURL=style.css.map */