/* 1. Die normale (aufrechte) Version */
@font-face {
  font-family: 'Inter';
  src: url('/static/fonts/Inter/InterVariable.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* 2. Die kursive Version */
@font-face {
  font-family: 'Inter';
  src: url('/static/fonts/Inter/InterVariable-Italic.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: italic;
  /* Wichtig: Hier auf italic setzen */
  font-display: swap;
}
h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}
h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.25;
}
h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
}
h4 {
  font-size: 1.25rem;
}
p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
body ul {
  padding: 0 18px;
}
body ul li {
  font-weight: 400;
  line-height: 1.6;
}
#menucontainer {
  display: none;
}
/***** desktop *****/
@media only screen and (min-width: 1200px) {
  #menucontainer {
    display: block;
    position: fixed;
    z-index: 600;
    top: 2rem;
    right: 6rem;
  }
  #menu {
    display: block;
  }
  #menu .normal a {
    color: #d9d9d9;
    font-weight: 400;
  }
  #menu ul {
    padding: 0;
    margin: 0;
  }
  #menu li {
    float: left;
    list-style: none;
  }
  #menu a,
  #menu span {
    padding: 0 0.75rem 0.275rem 0.75rem;
    font-size: 1.1rem;
    display: block;
    text-transform: uppercase;
    margin: 0 5px;
    color: #d9d9d9;
    font-weight: 400;
  }
  #menu span {
    cursor: default;
  }
  #menu .active a,
  #menu .ancestor a,
  #menu .active span,
  #menu .ancestor span {
    color: #d9d9d9 !important;
  }
  #menu .firstlevel {
    position: relative;
  }
  #menu .firstlevel > li {
    padding-bottom: 40px;
  }
  #menu .firstlevel > a:hover,
  #menu .firstlevel > span:hover {
    color: #fff;
  }
  #menu .firstlevel > a:before,
  #menu .firstlevel > span:before,
  #menu .firstlevel > a:after,
  #menu .firstlevel > span:after {
    content: "";
    position: absolute;
    bottom: 40px;
    width: 0px;
    height: 4px;
    margin: 5px 0 0;
    transition: all 0.2s ease-in-out;
    transition-duration: 0.25s;
    opacity: 0;
    background-color: #d9d9d9;
  }
  #menu .firstlevel a::before,
  #menu .firstlevel span::before {
    left: 0%;
  }
  #menu .button a:hover::before,
  #menu .firstlevel a:hover::before,
  #menu .firstlevel.hassub:hover > span::before,
  #menu .firstlevel.active a::before,
  #menu .firstlevel.hassub.active > span::before,
  #menu .firstlevel.ancestor a::before,
  #menu .firstlevel.ancestor span::before {
    width: 100%;
    opacity: 1;
  }
  #menu .firstlevel li:hover > .secondlevel {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -0.5rem);
  }
  #menu .firstlevel li:last-child > .secondlevel {
    right: 0;
  }
  #menu .secondlevel {
    position: absolute;
    min-width: 10.9rem;
    visibility: hidden;
    opacity: 0;
    background: #000000;
    top: 60px;
    transition: transform 0.5s;
    white-space: nowrap;
    padding: 0.5rem 0.5rem 0.25rem 0.5rem;
  }
  #menu .secondlevel li {
    float: none;
  }
  #menu .secondlevel a {
    padding: 0.9rem 0.5rem 0.75rem 0.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
  }
  #menu .secondlevel a:hover {
    border-bottom-color: #454b54;
  }
  #menu .secondlevel li.active a {
    border-bottom-color: #454b54;
    color: #fff !important;
  }
  #menu .secondlevel a:hover,
  #menu .secondlevel a.active {
    background-size: 0 3px, auto;
    color: #fff !important;
    font-weight: 400;
  }
}
#menubutton {
  position: absolute;
  top: 26px;
  right: 0.5rem;
}
.background-black {
  background-color: #000;
}
label {
  display: flex;
  flex-direction: column;
  width: 50px;
  cursor: pointer;
}
label span {
  background: #fff;
  border-radius: 10px;
  height: 3px;
  margin: 3px 0;
  transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
span:nth-of-type(1) {
  width: 35%;
}
span:nth-of-type(2) {
  width: 70%;
}
span:nth-of-type(3) {
  width: 55%;
}
/* Menu open animation */
label.is-active span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotate(45deg) translate(3px, 0px);
}
label.is-active span:nth-of-type(2) {
  transform-origin: top;
  transform: rotate(-45deg);
  width: 68%;
}
label.is-active span:nth-of-type(3) {
  transform-origin: bottom;
  width: 40%;
  transform: translate(12px, -5px) rotate(45deg);
}
#menucontainer-mobile {
  background: #000;
  position: fixed;
  width: 350px;
  right: -350px;
  height: calc(100vh - var(--header-height));
  top: var(--header-height);
  transition: right 0.25s linear;
}
#mobile_menu {
  position: fixed;
  font-size: 1rem;
  width: 300px;
  margin-left: 25px;
  text-transform: uppercase;
}
#mobile_menu .navLevel {
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
  z-index: 100;
  width: 300px;
  right: -350px;
  position: absolute;
  height: calc(100vh - 100px);
  padding-bottom: 20rem;
  top: 0;
  background: #000;
  transition: right 0.25s linear;
}
#mobile_menu ul {
  margin: 0;
  padding: 0;
}
#mobile_menu li {
  list-style-type: none;
  border-top: 1px solid #454b54;
}
#mobile_menu li:last-child {
  border-bottom: 1px solid #454b54;
}
#mobile_menu a,
#mobile_menu span {
  color: #fff;
  display: block;
  padding: 1rem 2rem 1rem 2rem;
}
#mobile_menu .parentLink span {
  padding-left: 1rem;
  color: #AAB4C0;
}
#mobile_menu .back span::before,
#mobile_menu .hassub > span::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-right: 0.1em solid #fff;
  border-top: 0.1em solid #fff;
  transform-origin: 70% 30%;
}
#mobile_menu .back span::before {
  margin-left: -1rem;
  transform: rotate(-135deg);
  margin-top: 10px;
}
#mobile_menu .hassub > span::before {
  transform: rotate(45deg);
  right: 1.5rem;
  margin-top: 10px;
}
.isRightOpen {
  right: 0 !important;
}
#contactpanel-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  position: fixed;
  bottom: 35px;
  width: 90%;
}
#contactpanel-mobile .call {
  background-image: url('/static/images/contact-panel/pik_call_neg.svg');
}
#contactpanel-mobile .chat {
  background-image: url('/static/images/contact-panel/pik_chat_inaktiv.svg');
}
#contactpanel-mobile .contactform {
  background-image: url('/static/images/contact-panel/pik_mail_neg.svg');
}
#contactpanel-mobile .call,
#contactpanel-mobile .chat,
#contactpanel-mobile .contactform {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#contactpanel-mobile a {
  width: 2.25rem;
  height: 3rem;
  margin: 0.5rem 1.75rem;
}
#contactpanel-mobile img {
  margin-left: 5px;
  margin-top: 20px;
  width: 40px;
  position: relative;
}
#rechtliches {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  position: fixed;
  bottom: 0;
  height: 35px;
  width: 90%;
}
#rechtliches a {
  padding: 0 0.5rem;
  margin-bottom: 10px;
  color: #fff;
  font-size: 0.8rem;
}
/***** tablet *****/
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  #menubutton {
    position: absolute;
    top: 25px !important;
    right: 2.5rem;
  }
  label span {
    height: 5px;
    margin: 4px 0;
  }
  span:nth-of-type(1) {
    width: 50%;
  }
  span:nth-of-type(2) {
    width: 100%;
  }
  span:nth-of-type(3) {
    width: 75%;
  }
  /* Menu open animation */
  label.is-active span:nth-of-type(1) {
    transform: rotate(45deg) translate(5px, -1px);
  }
  label.is-active span:nth-of-type(2) {
    transform: rotate(-45deg);
    width: auto;
  }
  label.is-active span:nth-of-type(3) {
    width: 50%;
    transform: translate(22px, -6px) rotate(45deg);
  }
  #menucontainer-mobile {
    top: var(--header-height);
  }
  #contactpanel {
    display: none;
  }
  #contactpanel-mobile,
  #rechtliches {
    width: 350px;
  }
}
wagtail-userbar {
  display: none;
}
/***** desktop *****/
@media only screen and (min-width: 1200px) {
  #menubutton {
    display: none;
  }
}
#breadcrumb-container {
  margin-top: var(--header-height);
  padding: 0.5rem 0;
  padding-left: 96px;
  position: relative;
  z-index: 550;
  width: fit-content;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: #000;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  padding: 0;
}
.breadcrumb-list li + li::before {
  content: "/";
  margin: 0 0.75rem;
  color: #454b54;
}
.breadcrumb-list a {
  display: inline;
  /* ÄNDERUNG: Link nur auf Textbreite begrenzen */
  color: #000;
  transition: color 0.25s ease-out;
}
.breadcrumb-list a:hover {
  color: #d9d9d9;
}
.breadcrumb-list .active span {
  color: #000 !important;
  font-weight: 500;
  cursor: default;
}
@media only screen and (max-width: 768px) {
  .breadcrumb-list {
    font-size: 0.6rem;
  }
  .breadcrumb-list li + li::before {
    margin: 0 0.4rem;
  }
}
@media only screen and (max-width: 768px) {
  #breadcrumb-container {
    margin-top: var(--header-height);
    padding: 0.4rem 0;
    padding-left: 15px;
  }
}
.animate {
  opacity: 0;
}
.animate.title,
.animate.subtitle,
.animate.closing-text,
.animate.card,
.animate.h1 {
  transform: translateY(24px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}
.animate.textbox {
  transition: opacity 2.5s ease;
}
.animate.is-visible {
  opacity: 1;
}
.animate.is-visible.title,
.animate.is-visible.textbox,
.animate.is-visible.subtitle,
.animate.is-visible.closing-text {
  transform: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  min-width: fit-content;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 5px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  margin: 0px;
  line-height: normal !important;
  transition: color 0.25s ease-out, background 0.25s ease-out, border-color 0.25s ease-out;
}
.button.light {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.button.dark {
  background-color: #000;
  color: #fff;
  border-color: #fff;
}
.button.dark:hover {
  color: #000;
}
.button.transparent {
  background: transparent;
  color: #000;
  border-color: #000;
  border-width: 2px;
}
.button.transparent:hover {
  color: #fff;
  background: #000;
  border-color: #000;
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .button {
    padding: 12px 22px;
  }
}
@media only screen and (min-width: 577px) and (max-width: 768px) {
  .button {
    padding: 11px 22px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 576px) {
  .button {
    padding: 11px 17px;
    font-size: 0.85rem;
  }
}
@media only screen and (max-width: 480px) {
  .button {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .buttons .button {
    min-width: auto;
    width: auto;
    text-align: left;
    align-self: flex-start;
  }
}
footer {
  width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  background-color: #000;
  color: #d9d9d9;
  border-top: 2px solid #343636;
}
footer a,
footer p {
  font-size: 15px;
  color: #d9d9d9;
}
footer a:hover,
footer p:hover {
  color: #fff;
}
footer #copyright {
  color: #d9d9d9;
}
footer .footer-wrapper {
  display: flex;
  align-items: center;
}
footer .footermenu {
  display: flex;
  margin-left: 3rem;
  list-style-type: none;
}
footer .footermenu li {
  padding: 0 1rem;
}
@media only screen and (max-width: 1200px) {
  .footer {
    display: none;
  }
}
html,
body {
  font-family: 'Inter';
  font-size: 16px;
  font-weight: normal;
  height: 100%;
  margin: 0;
  color: #000;
  -webkit-text-size-adjust: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow-y: scroll;
  overflow-x: hidden;
}
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar,
#contentarea::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
body,
#contentarea {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
h1 {
  word-wrap: normal;
}
#menu a,
#menu span,
#menu li {
  hyphens: none;
  word-wrap: normal;
}
a,
img {
  border: none;
  outline: none;
  text-decoration: none;
  color: #000;
}
img {
  max-width: 100%;
  height: auto;
}
.dark-layer {
  position: absolute;
  z-index: 100;
  top: 0px;
  left: 0px;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  background: #000;
  opacity: 0;
}
:root {
  --header-height: 90px;
}
#header-background {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  background-color: #000;
  z-index: 400;
  opacity: 0.875;
}
header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  z-index: 500;
  transition: background-color 0.2s linear;
}
header:hover {
  background-color: #000;
}
#header-line {
  position: absolute;
  right: 0;
  width: calc(100vw - 350px);
  height: 60px;
  border-bottom: 1px solid #333333;
}
@media only screen and (max-width: 768px) {
  #header-line {
    display: none;
  }
}
#logo {
  position: absolute;
  z-index: 500;
}
#logo img {
  position: relative;
  z-index: 500;
  left: 77px;
  top: 6px;
  width: 260px;
  height: auto;
}
#contactpanel {
  position: fixed;
  width: 80px;
  right: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 999;
  background-color: #000;
  border-style: solid;
  border-right-style: none;
  border-color: #343636;
  border-width: 2px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
#contactpanel a {
  width: 50px;
  height: 75px;
  display: block;
  margin: 0 auto;
  border-bottom: 2px solid #343636;
}
#contactpanel a:last-child {
  border-bottom: none;
}
#contactpanel img {
  margin-left: 5px;
  margin-top: 20px;
  width: 40px;
  position: relative;
}
#wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
}
.teaser-container {
  max-width: 750px;
  z-index: 100;
  position: relative;
  left: 10%;
  top: 20%;
  width: auto;
  max-width: calc(100% - 4rem);
}
.teaser-container a {
  color: #000;
  text-decoration: none;
}
.teaser-container h1 {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .teaser-container {
    left: 5%;
    top: 12%;
    max-width: calc(100% - 2rem);
  }
}
@media only screen and (min-width: 1200px) {
  .teaser-container {
    left: 10%;
    top: 20%;
  }
}
.section-box {
  width: auto;
  max-width: 1000px;
  padding-bottom: 14rem;
  font-size: 1.1rem;
  line-height: 2;
}
.slogan {
  font-size: 1.5rem;
  font-weight: 100;
  cursor: pointer;
}
.slogan .slogan {
  position: relative;
  display: inline;
  /* Ensure the text and pseudo-element are inline */
}
.slogan::after {
  content: "";
  display: inline-block;
  /* Ensures the arrow stays in line with the text */
  margin-left: 0.5rem;
  /* Adds spacing between the text and the arrow */
  width: 10px;
  height: 10px;
  border-right: 0.15em solid #fff;
  border-top: 0.15em solid #fff;
  transform: rotate(45deg);
  /* Rotates the arrow to point right */
  vertical-align: middle;
  /* Aligns the arrow with the text's baseline */
}
.buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  text-transform: uppercase;
}
.buttons a {
  font-size: 14px;
}
.buttons a:hover {
  background: #d9d9d9;
  border-color: #d9d9d9;
}
#content {
  flex: 1 0 auto;
}
.fade-in {
  animation: fadeIn 4s;
  -webkit-animation: fadeIn 4s;
  -moz-animation: fadeIn 4s;
  -o-animation: fadeIn 4s;
  -ms-animation: fadeIn 4s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Preload hover images by setting them in an invisible pseudo-element */
#contactpanel::before {
  content: url('/static/images/contact-panel/pik_call_neg.svg') url('/static/images/contact-panel/pik_chat_neg.svg') url('/static/images/contact-panel/pik_mail_neg.svg');
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
#contactpanel .call,
#contactpanel .chat,
#contactpanel .contactform {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.25s linear;
}
#contactpanel .call {
  background-image: url('/static/images/contact-panel/pik_call_light.svg');
}
#contactpanel .call:hover {
  background-image: url('/static/images/contact-panel/pik_call_neg.svg');
}
#contactpanel .chat {
  background-image: url('/static/images/contact-panel/pik_chat_inaktiv.svg');
}
#contactpanel .chat:hover {
  cursor: wait;
}
#contactpanel .contactform {
  background-image: url('/static/images/contact-panel/pik_mail_light.svg');
}
#contactpanel .contactform:hover {
  background-image: url('/static/images/contact-panel/pik_mail_neg.svg');
}
.scroll-to-top {
  position: fixed;
  bottom: 50px;
  right: 30px;
  padding: 12px;
  cursor: pointer;
  border-style: solid;
  border-radius: 12px;
  border-color: #343636;
  background: #111111;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: #7d8282;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  z-index: 50;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top svg {
  display: block;
  transition: transform 0.3s ease;
}
.scroll-to-top:hover svg {
  transform: scale(1.15);
  color: #a0a5a5;
}
/***** small phones (e.g. iphone5)) *****/
@media only screen and (max-width: 480px) {
  .teaser-container {
    left: 5%;
    top: 15%;
    padding: 0 1rem;
  }
  h1 {
    font-size: 1.75rem;
  }
}
/***** smartphone *****/
@media only screen and (max-width: 768px) {
  :root {
    --header-height: 80px;
  }
  header {
    height: var(--header-height);
    position: fixed;
  }
  #logo {
    left: -1rem;
  }
  #logo img {
    top: 2px;
    width: 200px;
    height: auto;
  }
  h1 {
    font-size: 2rem;
  }
  #header-background {
    height: var(--header-height);
  }
  #header-line {
    display: none;
  }
  #contactpanel {
    display: none;
  }
  .teaser-container {
    left: 5%;
    right: 5%;
    top: 12%;
    max-width: none;
  }
  .section-box {
    padding-bottom: 5rem;
    font-size: 1rem;
  }
  .slogan {
    font-size: 1.25rem;
  }
  .buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  .buttons .button {
    min-width: 100%;
    text-align: center;
  }
  #scrolling-content {
    height: calc(100vh - 80px) !important;
  }
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
  }
}
/***** tablet *****/
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  #contactpanel {
    display: none;
  }
  #logo {
    left: 1rem;
    width: 300px;
    top: 35px;
  }
  #logo img {
    top: -30px;
    left: 40px;
    width: 220px;
    height: auto;
  }
  .teaser-container {
    left: 5%;
    top: 15%;
  }
}
/***** tablet and greater *****/
@media only screen and (min-width: 768px) {
  #logo img {
    top: -50px;
    left: -30px;
    width: 320px;
  }
}
/***** desktop *****/
@media only screen and (min-width: 1200px) {
  #logo img {
    top: -28px;
    left: -35px;
    width: 400px;
  }
  .teaser-container {
    left: 10%;
    top: 20%;
  }
}
