@charset "UTF-8";
* {
  box-sizing: border-box;
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 140%;
}

html {
  height: 100%;
  width: 100%;
}

body {
  font-family: "Urbanist";
}

/* Variables */
:root {
  --primary: #164194;
  --tonebeige: #cac8c4;
  --tonebeigedark: #767676;
  --tonered: #e30613;
  --tonewhite: #ffffff;
  --sidepadding: 70px;
}
@media only screen and (max-width: 834px) {
  :root {
    --sidepadding: 20px;
  }
}

p {
  line-height: 140%;
  font-family: "Urbanist";
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--primary);
}
p strong {
  font-size: 1em;
}

h2 {
  font-family: "Urbanist";
  font-size: 100px;
  font-weight: 600;
  color: var(--primary);
  line-height: 100%;
}

.h2-right {
  font-family: "Urbanist";
  font-size: 28px;
  font-weight: 600;
  color: var(--tonewhite);
}

@media only screen and (max-width: 834px) {
  h2 {
    font-size: 50px;
  }
  a {
    font-size: 16px;
  }
}
h4 {
  font-size: 20px;
  font-family: "Urbanist";
  letter-spacing: 0.02em;
  padding-bottom: 0.8em;
  font-weight: 800;
}

button {
  font-family: "Urbanist";
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  font-weight: 600;
}

.btn-filled {
  background-color: var(--primary);
  border: var(--primary);
  width: fit-content;
}

.js-scroll-contact {
  cursor: pointer;
}

.heading-2clum {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.heading-2clum div {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.heading-2clum div p {
  color: var(--tonewhite);
}
.heading-2clum button {
  height: fit-content;
  width: fit-content;
}

@media only screen and (max-width: 834px) {
  .heading-2clum {
    flex-direction: column;
  }
  .heading-2clum button {
    align-self: flex-end;
  }
}
@keyframes navSlideIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes navSlideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
.scrolled {
  animation: navSlideOut 0.3s ease-in-out forwards;
}

nav {
  z-index: 99;
  padding: 25px var(--sidepadding);
  display: flex;
  position: fixed;
  top: 0;
  width: 100%;
  animation: navSlideIn 0.3s ease-in-out forwards;
  background-color: var(--primary);
}
nav div {
  width: 50%;
  display: flex;
  align-items: center;
}
nav .nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Urbanist;
  font-weight: 600;
  font-style: Semibold;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 2%;
}
nav .nav-links a {
  color: var(--tonewhite);
  text-decoration: none;
  padding: 10px 15px;
  display: inline-block;
}
nav .nav-links #menu {
  padding: 7px 20px 2px 20px;
  border: solid 1px var(--tonewhite);
  border-radius: 30px;
  width: fit-content;
  color: var(--tonewhite);
  cursor: pointer;
}
nav .nav-links .mobile-menu {
  /* display: none; */
  cursor: pointer;
  color: #164194;
  border: 1px solid #164194;
  width: 82.2671127319;
  border-radius: 20px;
  padding-top: 7px;
  padding-right: 20px;
  padding-bottom: 7px;
  padding-left: 20px;
  width: 83px;
  font-family: "Urbanist";
  font-weight: 600;
  font-style: Semibold;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 2%;
}
@media (max-width: 768px) {
  nav .nav-links .mobile-menu {
    /* display: block; */
    font-size: 18px;
    padding: 10px 15px;
  }
}

@media only screen and (max-width: 834px) {
  nav {
    padding: 20px var(--sidepadding);
  }
  nav .logo {
    display: flex;
    align-self: end;
  }
  nav .nav-links {
    place-content: end;
  }
  nav .nav-links #menu {
    font-size: 18px;
  }
  nav .nav-links #headline,
  nav .nav-links #nav-contact {
    display: none;
  }
}
button {
  border: 2px solid #ffffff;
  border-radius: 30px;
  background-color: transparent;
  color: #ffffff;
  padding: 10px 20px;
  font-family: "Urbanist";
  font-weight: 600;
  font-style: Semibold;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 2%;
}

/* Menü-Liste */
/* Dropdown Menü Animation */
#dropdown-menu {
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--primary);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  z-index: 999;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  display: flex;
  /* Close Button */
}
#dropdown-menu #close-menu {
  position: absolute;
  top: 45px;
  right: 70px;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  color: var(--primary);
  z-index: 1000;
}
#dropdown-menu ul {
  list-style: none;
  padding: 45px 70px 90px 70px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#dropdown-menu ul li {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeSlide 0.4s forwards;
  width: 340px;
}
#dropdown-menu ul li button {
  border: 1px solid;
}
#dropdown-menu ul li button a {
  font-size: 20px;
}
#dropdown-menu ul li a {
  font-family: "Urbanist";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 100% */
  letter-spacing: 0.8px;
  color: var(--tonewhite);
  text-decoration: none;
}
#dropdown-menu ul li a span {
  font-size: 1em;
}
#dropdown-menu ul li a:hover {
  color: var(--tonered);
}
@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 834px) {
  #dropdown-menu ul li button a {
    font-size: 18px;
  }
}
#dropdown-menu .nav-menu {
  padding-left: 140px;
}
#dropdown-menu .nav-menu button {
  margin-bottom: 30px;
  padding: 5px 20px 0px 20px;
}
#dropdown-menu .nav-contact {
  width: 40vw;
}
#dropdown-menu .nav-contact button {
  padding-left: 60px;
  border: none;
  padding-top: 55px;
}
#dropdown-menu .nav-contact button a {
  text-decoration: none;
  color: var(--tonebeige);
  color: var(--beige, #cac8c4);
  font-family: "Urbanist";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 25.2px */
  letter-spacing: 0.36px;
}
#dropdown-menu .nav-contact .contact-nav-menu {
  margin-top: 60px;
  border-left: solid 1px var(--tonebeige);
  padding-left: 60px;
  height: 240px;
}
#dropdown-menu .nav-contact .contact-nav-menu p,
#dropdown-menu .nav-contact .contact-nav-menu a {
  color: var(--tonewhite, #fff);
  font-family: "Urbanist";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 25.2px */
  letter-spacing: 0.36px;
  text-decoration: none;
}

/* 3D-Flip: gleicher Text klappt von unten rein (kein leerer Zustand) */
.flip-link {
  display: inline-block; /* Hover nur über dem Wort */
  width: fit-content;
  text-decoration: none;
  perspective: 700px;
  color: var(--tonewhite);
}

.flip-inner {
  position: relative;
  display: inline-block;
  width: fit-content;
  height: fit-content; /* etwas Luft gegen Abschneiden */
  line-height: 1.35em;
  overflow: hidden;
}

/* Front bleibt im Flow und bestimmt die Breite */
.flip-front {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  transform-origin: bottom;
  transform: translate3d(0, 0, 1px) rotateX(0deg);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  backface-visibility: hidden;
}

.flip-front-right {
  position: relative;
  display: inline-block;
  transform-origin: right center;
  transform: translate3d(0, 0, 1px) rotateY(0deg);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  backface-visibility: hidden;
}

/* Back liegt darüber und startet "von unten" + gekippt */
.flip-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  white-space: nowrap;
  transform-origin: top;
  transform: translate3d(0, 100%, 1px) rotateX(-90deg);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  backface-visibility: hidden;
}

.flip-back-right {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: left center;
  transform: translate3d(-100%, 0, 1px) rotateY(-90deg);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  backface-visibility: hidden;
}

/* Hover: Front klappt hoch weg, Back klappt von unten rein */
.flip-link:hover .flip-front {
  transform: translate3d(0, -100%, 1px) rotateX(90deg);
}

.flip-link:hover .flip-back {
  transform: translate3d(0, 0, 1px) rotateX(0deg);
}

/* Hover: tauschen */
.flip-link:hover .flip-front-right {
  transform: translate3d(100%, 0, 1px) rotateY(90deg);
}

.flip-link:hover .flip-back-right {
  transform: translate3d(0, 0, 1px) rotateY(0deg);
}

/***** FRONT: klappt nach links weg *******/
.flip-front-left {
  position: relative;
  display: inline-block;
  transform-origin: left center;
  transform: translate3d(0, 0, 1px) rotateY(0deg);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  backface-visibility: hidden;
}

/* BACK: kommt von rechts rein */
.flip-back-left {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: right center;
  transform: translate3d(100%, 0, 1px) rotateY(90deg);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  backface-visibility: hidden;
}

/* Hover-Zustand */
.flip-link:hover .flip-front-left {
  transform: translate3d(-100%, 0, 1px) rotateY(-90deg);
}

.flip-link:hover .flip-back-left {
  transform: translate3d(0, 0, 1px) rotateY(0deg);
}

#dropdown-menu.show {
  max-height: 100vh;
  opacity: 1;
}
#dropdown-menu.show ul li:nth-child(1) {
  animation-delay: 0.5s;
}
#dropdown-menu.show ul li:nth-child(2) {
  animation-delay: 0.6s;
}
#dropdown-menu.show li:nth-child(3) {
  animation-delay: 0.7s;
}
#dropdown-menu.show ul li:nth-child(4) {
  animation-delay: 0.8s;
}
#dropdown-menu.show ul li:nth-child(5) {
  animation-delay: 1s;
}

@media only screen and (max-width: 834px) {
  #dropdown-menu {
    flex-direction: column;
    /* Close Button */
  }
  #dropdown-menu #close-menu {
    position: absolute;
    top: 23px;
    right: 20px;
  }
  #dropdown-menu ul {
    gap: 1em;
  }
  #dropdown-menu ul li a {
    font-size: 26px;
  }
  #dropdown-menu .nav-menu {
    padding: 23px var(--sidepadding) 40px var(--sidepadding);
  }
  #dropdown-menu .nav-contact {
    border-top: solid 1px var(--tonebeige);
    margin: 0rem 20px 2rem 20px;
    width: 100%;
  }
  #dropdown-menu .nav-contact button {
    padding-left: 0px;
  }
  #dropdown-menu .nav-contact .contact-nav-menu {
    border: none;
    padding-left: 0px;
    height: auto;
    margin-top: 20px;
  }
  #dropdown-menu .nav-contact .contact-nav-menu p {
    font-size: 16px;
  }
  #dropdown-menu .nav-contact .contact-nav-menu a {
    font-size: 16px;
  }
}
/* Overlay initial unsichtbar */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 998;
}

/* Overlay sichtbar */
#overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* Close-Button Menu */
#close-menu {
  position: absolute;
  top: 45px;
  right: 70px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tonewhite);
  /* feiner Kreis */
  border-radius: 50%;
  background: transparent;
  padding: 0;
  transition: transform 0.3s ease;
}

/* Linien des X */
#close-menu::before,
#close-menu::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 1px;
  /* Linien 1px dick */
  background-color: var(--tonewhite);
  top: 50%;
  left: 50%;
  transform-origin: center;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

#close-menu::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#close-menu::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Hover Effekt: X klappen + fade + Kreis pulsiert */
#close-menu:hover::before {
  transform: translate(-50%, -80%) rotate(45deg);
  /* nach oben klappen */
  opacity: 0.3;
  /* leicht transparent */
}

#close-menu:hover::after {
  transform: translate(-50%, -80%) rotate(-45deg);
  /* nach oben klappen */
  opacity: 0.3;
}

#close-menu:hover {
  animation: pulseCircle 0.3s ease;
}

/* Kreis pulsiert leicht */
@keyframes pulseCircle {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.hero {
  background-color: var(--tonewhite);
  width: 100%;
  gap: 60px;
  display: flex;
  flex-direction: column;
  position: relative;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero .hero-content {
  padding-bottom: 30rem;
  background: linear-gradient(180deg, #164194 25%, rgba(22, 65, 148, 0) 56.73%);
}
.hero .hero-text {
  display: grid;
  flex-direction: row;
  padding: 0px var(--sidepadding);
  gap: 16px;
  align-items: flex-end;
  grid-template-columns: 50% 50%;
  padding-top: 105px;
}
.hero .hero-text span {
  font-family: "Urbanist";
  font-weight: 500;
  font-style: Bold;
  font-size: 45px;
  line-height: 60px;
  letter-spacing: 2%;
  color: var(--tonewhite);
  padding-top: 10%;
}
.hero .hero-text p,
.hero .hero-text .hidden-on-mobile {
  font-family: "Urbanist";
  font-weight: 500;
  font-style: Bold;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 2%;
  color: var(--tonewhite);
  padding-bottom: 5px;
}
.hero .hero-bigletter {
  width: 100%;
  height: 604px;
  max-width: 523px;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  bottom: 126px;
  left: 34px;
  z-index: 0;
}
.hero img,
.hero .hero-img {
  width: 100%;
  height: 520px;
  max-width: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero .hero-hotspots {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero .hero-hotspots .hero-hotspot {
  position: absolute;
  border: 0;
  background: transparent;
  border-radius: 24px;
  cursor: pointer;
  pointer-events: auto;
}
.hero .hero-hotspots .hero-hotspot-2 {
  left: 0%;
  top: 48%;
  width: 100%;
  height: 50%;
}
@media only screen and (max-width: 834px) {
  .hero {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
  }
  .hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    flex: 1;
  }
  .hero .hero-content .hero-text {
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    padding: 0px;
    gap: 20px;
    padding-top: 60px;
  }
  .hero .hero-content .hero-text span {
    font-size: 56px;
  }
  .hero .hero-content .hero-text p {
    font-size: 16px;
  }
  .hero .hero-content .hero-text .hidden-on-mobile {
    display: none;
  }
  .hero .hero-img {
    margin-top: auto;
    width: 100%;
    max-height: 45vh;
    max-width: auto;
    object-fit: cover;
    z-index: 1;
  }
  .hero .hero-bigletter {
    max-height: 240px;
    max-width: 208px;
    -o-object-fit: cover;
    bottom: 25vh;
    object-fit: contain;
    position: absolute;
    z-index: 0;
    left: 20px;
  }
  .hero .hero-hotspots {
    display: none;
  }
}

.sections-wrapper {
  background-color: #122c5e;
  display: flex;
  flex-direction: column;
  padding: 110px var(--sidepadding) 67px var(--sidepadding);
  gap: 60px;
}
.sections-wrapper .heading-2clum button {
  font-family: "Urbanist";
  font-weight: 600;
  font-style: Semibold;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 2%;
  color: #ffffff;
  margin-left: 10vw;
}
.sections-wrapper .sections-gallery .slide-data {
  display: none;
}
.sections-wrapper .sections-gallery .slide-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}
.sections-wrapper .sections-gallery .slide-item .Slide {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
}
.sections-wrapper .sections-gallery .slide-item .Slide img {
  width: 100%;
  height: 594px;
  object-fit: contain;
  z-index: 1;
}
.sections-wrapper .sections-gallery .slide-item .Slide img.slide-in-left {
  animation: slideInLeft 0.5s ease-in-out forwards;
}
.sections-wrapper .sections-gallery .slide-item .Slide img.slide-in-right {
  animation: slideInRight 0.5s ease-in-out forwards;
}
.sections-wrapper .sections-gallery .slide-item .Slide img.slide-out-left {
  animation: slideOutLeft 0.5s ease-in-out forwards;
}
.sections-wrapper .sections-gallery .slide-item .Slide img.slide-out-right {
  animation: slideOutRight 0.5s ease-in-out forwards;
}
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
.sections-wrapper .sections-gallery .slide-item .Slide #slideimgnext {
  display: none;
}
.sections-wrapper .sections-gallery .slide-item .Slide .hover-circle {
  position: absolute;
  height: 29px;
  width: 29px;
  border: #fff 2px solid;
  border-radius: 50%;
  opacity: 0;
  z-index: 2;
}
.sections-wrapper .sections-gallery .slide-item .Slide .hover-text {
  position: absolute;
  color: #fff;
  opacity: 0;
  z-index: 2;
}
.sections-wrapper .sections-gallery .slide-item .prev-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 165px;
  gap: 66px;
}
.sections-wrapper .sections-gallery .slide-item .prev-container .prev-wrapper {
  display: flex;
  width: 230px;
  gap: 20px;
  align-items: center;
  z-index: 10;
}
.sections-wrapper .sections-gallery .slide-item .prev-container .prev-wrapper p {
  font-family: "Urbanist";
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 4%;
  color: #fff;
}
.sections-wrapper .sections-gallery .slide-item .prev-container #slidetext {
  width: 100px;
  height: 60px;
  font-family: "Urbanist";
}
.sections-wrapper .sections-gallery .slide-item .prev-btn,
.sections-wrapper .sections-gallery .slide-item .next-btn {
  cursor: pointer;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--tonewhite);
  border-radius: 50%;
}
.sections-wrapper .sections-gallery .slide-item .prev-btn img,
.sections-wrapper .sections-gallery .slide-item .next-btn img {
  margin-top: 7px;
}
.sections-wrapper .sections-gallery .slide-item .next-number {
  height: 200px;
}
.sections-wrapper .sections-gallery .slide-item .next-container {
  display: flex;
  gap: 20px;
  align-items: center;
}
.sections-wrapper .sections-gallery .slide-item .next-container p {
  font-family: "Urbanist";
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 4%;
  text-align: right;
  color: #ffffff;
}
.sections-wrapper .sections-gallery .slide-item .next-container .next-btn img {
  rotate: 180deg;
  margin-top: 7px;
}
.sections-wrapper .sections-gallery .slide-item .count-slide {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0px;
  bottom: 0px;
}
.sections-wrapper .sections-gallery .slide-item .count-slide span {
  font-family: Koulen;
  font-weight: 400;
  font-style: Regular;
  font-size: 180px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 4%;
  text-transform: uppercase;
  color: #ffffff;
}
.sections-wrapper .sections-gallery .slide-item .count-slide p {
  font-family: "Urbanist";
  font-weight: 800;
  font-style: Black;
  font-size: 28px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 3%;
  text-transform: uppercase;
  color: #ffffff;
}
.sections-wrapper .mobile-view-number {
  display: none;
}
@media only screen and (max-width: 834px) {
  .sections-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    /* 
    .slide-item {
      width: 80%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
    }




    .slide {
      grid-column: 1/-1;
      justify-self: center;
    } */
    /* 
    .prev-btn {
      width: 10px
    }

    .slide-item {
      width: 100%;
      padding: 50px;
    } */
    /*     #number {
      font-size: 20px
    }


    #slidetext {
      width: 50px;
      height: 30px;
      font-size: 14px;
    } */
  }
  .sections-wrapper .mobile-view-number {
    display: flex;
    flex-direction: column;
  }
  .sections-wrapper .mobile-view-number #numberMobile {
    font-family: Koulen;
    font-weight: 400;
    font-size: 100px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.04em;
    padding: 0;
    height: 140px;
  }
  .sections-wrapper .mobile-view-number #slidetextMobile {
    font-size: 20px;
    font-family: "Urbanist";
    font-weight: 800;
    font-style: Black;
    font-size: 20px;
    letter-spacing: 0.03;
    text-transform: uppercase;
    color: #fff;
  }
  .sections-wrapper .heading-2clum div {
    width: 100%;
    gap: 20px;
  }
  .sections-wrapper .heading-2clum button {
    font-size: 16px;
  }
  .sections-wrapper .heading-2clum p {
    font-size: 16px;
  }
  .sections-wrapper .heading-2clum .h2-right {
    font-size: 24px;
    line-height: 130%;
  }
  .sections-wrapper .sections-gallery {
    position: relative;
  }
  .sections-wrapper .sections-gallery .slide-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .sections-wrapper .sections-gallery .slide-item .next-container {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
    min-width: 0;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 8px;
    /*         width: auto;
    max-width: 230px; */
  }
  .sections-wrapper .sections-gallery .slide-item .next-container #nexttext {
    font-size: 16px;
    max-width: 100%;
    text-align: center;
    height: 38.4px;
  }
  .sections-wrapper .sections-gallery .slide-item .next-container .next-btn {
    width: 36px;
    height: 36px;
  }
  .sections-wrapper .sections-gallery .slide-item .next-container .next-btn img {
    width: 9px;
    height: 15px;
  }
  .sections-wrapper .sections-gallery .slide-item .prev-container {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    margin: 0;
    margin-right: 0px;
  }
  .sections-wrapper .sections-gallery .slide-item .prev-container .prev-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: auto;
    max-width: 90px;
    align-items: flex-start;
  }
  .sections-wrapper .sections-gallery .slide-item .prev-container .prev-wrapper .prev-btn {
    width: 36px;
    height: 36px;
  }
  .sections-wrapper .sections-gallery .slide-item .prev-container .prev-wrapper .prev-btn img {
    width: 9px;
    height: 15px;
  }
  .sections-wrapper .sections-gallery .slide-item .prev-container .prev-wrapper #prevtext {
    font-size: 16px;
    text-align: center;
    height: 38.4px;
  }
  .sections-wrapper .sections-gallery .Slide {
    grid-column: 1/-1;
    width: 100%;
    grid-row: 1;
    min-width: 0;
  }
  .sections-wrapper .sections-gallery .Slide .hover-circle,
  .sections-wrapper .sections-gallery .Slide .hover-text {
    display: none;
  }
  .sections-wrapper .sections-gallery .Slide img {
    height: auto;
    max-height: 340px;
    width: 100%;
    max-width: 385px;
  }
  .sections-wrapper .sections-gallery .count-slide #number,
  .sections-wrapper .sections-gallery .count-slide #slidetext {
    display: none;
  }
}

.facts-wrapper {
  display: flex;
  flex-direction: column;
  padding: 100px var(--sidepadding);
  background-color: #ffffff;
  gap: 70px;
}
.facts-wrapper .h2-left {
  font-family: "Urbanist";
  font-weight: 600;
  font-size: 100px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--primary);
  max-width: 80%;
}
.facts-wrapper .facts {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  gap: 15px;
}
.facts-wrapper .facts .fact {
  width: 33.33%;
  height: 400px;
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border: 3px solid var(--tonebeige, #cac8c4);
}
.facts-wrapper .facts .fact .fact-number {
  font-family: "Koulen";
  font-weight: 400;
  font-size: 120px;
  line-height: 100%;
  letter-spacing: 4%;
  text-transform: uppercase;
  color: var(--primary);
}
.facts-wrapper .facts .fact #color {
  font-family: "Koulen";
  font-weight: 400;
  font-size: 120px;
  line-height: 100%;
  letter-spacing: 4%;
  text-transform: uppercase;
  color: var(--tonered);
}
.facts-wrapper .facts .fact hr {
  border: var(--tonebeige) 2px solid;
  width: 90px;
}
.facts-wrapper .facts .fact .fact-text h4 {
  font-family: "Urbanist";
  font-weight: 800;
  font-style: Black;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 2%;
  color: var(--primary);
}
.facts-wrapper .facts .fact .fact-text p {
  font-family: "Urbanist";
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: var(--primary);
}
@media only screen and (max-width: 1200px) {
  .facts-wrapper .h2-left {
    font-size: 80px;
  }
  .facts-wrapper .facts .fact .fact-number {
    font-size: 80px;
  }
  .facts-wrapper .facts .fact #color {
    font-size: 80px;
  }
  .facts-wrapper .facts .fact .fact-text p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 934px) {
  .facts-wrapper .h2-left {
    font-size: 50px;
    max-width: 100%;
  }
  .facts-wrapper .facts {
    flex-direction: column;
  }
  .facts-wrapper .facts .fact {
    width: 100%;
    height: 362px;
    padding: 20px;
  }
  .facts-wrapper .facts .fact .fact-number {
    font-size: 100px;
  }
  .facts-wrapper .facts .fact .fact-number span {
    font-size: 100px;
  }
  .facts-wrapper .facts .fact hr {
    width: 82px;
  }
  .facts-wrapper .facts .fact .fact-text h4 {
    font-size: 20px;
  }
  .facts-wrapper .facts .fact .fact-text p {
    font-size: 16px;
  }
}

#color {
  font-family: Urbanist;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: 2%;
  color: var(--primary);
}

#color-red {
  color: var(--tonered);
}

.map-wrapper {
  padding: 100px var(--sidepadding);
  background-color: var(--tonebeige);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.map-wrapper .map-heading {
  width: 300px;
}
.map-wrapper .map-heading span {
  font-family: "Koulen";
  font-weight: 400;
  font-style: Regular;
  font-size: 180px;
  line-height: 100%;
  letter-spacing: 4%;
  text-transform: uppercase;
  color: var(--tonewhite);
}
.map-wrapper .map-heading h3 {
  font-family: "Urbanist";
  font-weight: 700;
  font-style: Bold;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 2%;
  color: var(--tonewhite);
}
.map-wrapper .map-text {
  display: flex;
  align-items: end;
  width: 350px;
  padding-left: 20px;
}
.map-wrapper .map-text p {
  color: var(--tonewhite);
  font-family: Urbanist;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 834px) {
  .map-wrapper .map-heading span {
    font-size: 80px;
  }
  .map-wrapper .map-heading h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 834px) {
  .map-wrapper {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .map-wrapper .map-heading {
    padding: 40px 20px;
  }
  .map-wrapper .map-heading span {
    font-size: 100px;
  }
  .map-wrapper #map {
    padding: 0px 20px;
    width: 100%;
    height: 100%;
  }
  .map-wrapper .map-text {
    padding: 40px 20px;
  }
}

.bottom-block {
  background-color: var(--tonewhite);
  color: var(--tonebeige);
  font-family: "Urbanist";
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14vw;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
}

.bottom-block-color {
  background-color: var(--tonebeige);
  color: var(--tonewhite);
}

.footer-wrapper {
  padding: 70px var(--sidepadding);
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-wrapper .footer-content {
  display: flex;
  flex-direction: row;
  gap: clamp(6rem, 16vw, 15rem);
}
.footer-wrapper div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-wrapper div a {
  color: var(--primary, #164194);
  font-family: "Urbanist";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.28px;
  text-decoration: none;
}
.footer-wrapper div a p {
  font-size: 14px;
  font-family: "Urbanist";
  font-weight: 400;
}
.footer-wrapper .footer-up-button {
  cursor: pointer;
}
@media only screen and (max-width: 834px) {
  .footer-wrapper {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
  }
  .footer-wrapper img {
    grid-area: 1/1/2/2;
  }
  .footer-wrapper .footer-links {
    grid-area: 2/1/3/2;
  }
  .footer-wrapper .footer-contact {
    grid-area: 2/2/2/3;
    justify-self: start;
  }
  .footer-wrapper .footer-up-button {
    grid-area: 1/2/3/3;
    justify-self: end;
    width: 30px;
  }
  .footer-wrapper .footer-content {
    justify-content: space-between;
    gap: 3rem;
  }
}

.footer-color {
  background-color: var(--primary);
}
.footer-color div a {
  color: var(--tonewhite);
}
.footer-color div a p {
  color: var(--tonewhite);
}

.last-links {
  background-color: var(--primary);
  padding: 20px var(--sidepadding);
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
.last-links a {
  color: #fff;
  font-family: "Urbanist";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.28px;
  text-decoration: none;
}

.links-color {
  background-color: var(--tonewhite);
}
.links-color a {
  color: var(--primary);
}

.hero-unterseiten {
  background: radial-gradient(41.88% 22.1% at 17.19% 74.64%, #ebeff7 2.81%, #cac8c4 100%);
  padding-top: 200px;
  display: flex;
  justify-content: flex-end;
}
.hero-unterseiten .hero-img {
  width: 50%;
  max-height: 21rem;
  display: flex;
  justify-content: center;
}
.hero-unterseiten .hero-img img {
  width: 100%;
  max-width: 650px;
}
.hero-unterseiten .hero-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding-right: var(--sidepadding);
  padding-bottom: 40px;
}
.hero-unterseiten .hero-text h3 {
  font-family: "Urbanist";
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: var(--primary);
  font-size: 40px;
  padding-bottom: 1em;
  max-width: 400px;
}
.hero-unterseiten .hero-text h3 strong {
  font-weight: 700;
  font-size: 1em;
}
.hero-unterseiten .hero-text p {
  color: var(--primary);
  font-size: 18px;
  font-family: "Urbanist";
  padding-bottom: 4em;
  max-width: 400px;
  font-weight: 600;
}
.hero-unterseiten .hero-text p #color {
  color: var(--tonewhite);
}
.hero-unterseiten .hero-text button {
  align-self: flex-end;
}

.hero-unterseiten-2 {
  background: var(--tonebeige);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 30rem;
  justify-content: flex-start;
}
.hero-unterseiten-2 .hero-text {
  width: 100%;
  padding: var(--sidepadding);
  padding-bottom: 0rem;
  align-items: center;
  text-align: center;
}
.hero-unterseiten-2 .hero-text h3 {
  max-width: 600px;
}
.hero-unterseiten-2 .hero-text p {
  max-width: 600px;
}
.hero-unterseiten-2 .hero-contact {
  display: flex;
  width: 57rem;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.hero-unterseiten-2 .hero-contact .contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-unterseiten-2 .hero-contact .contact-link p {
  font-weight: 600;
  color: var(--tonewhite);
}

@media only screen and (max-width: 834px) {
  .hero-unterseiten {
    padding-top: 150px;
    flex-direction: column;
    background: radial-gradient(41.88% 10.1% at 18.19% 40.64%, #ebeff7 2.81%, #cac8c4 100%);
  }
  .hero-unterseiten .hero-text {
    width: 100%;
    padding-left: var(--sidepadding);
  }
  .hero-unterseiten .hero-text h3 {
    max-width: max-content;
  }
  .hero-unterseiten .hero-text p {
    max-width: max-content;
  }
  .hero-unterseiten-2 {
    background: var(--tonebeige);
    height: auto;
  }
  .hero-unterseiten-2 .hero-text {
    padding-bottom: 2rem;
  }
}
.accordion-wrapper .acc-section {
  padding: 100px var(--sidepadding);
  /* Wenn Accordion aktiv → Minus */
}
.accordion-wrapper .acc-section .acc-section-title {
  width: 100%;
  border-bottom: solid 2px var(--tonebeige);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
  cursor: pointer;
}
.accordion-wrapper .acc-section .acc-section-title h3 {
  font-family: "Urbanist";
  font-weight: 700;
  font-size: 40px;
  color: var(--primary);
}
.accordion-wrapper .acc-section .acc-section-title .plus {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  padding: 20px;
}
.accordion-wrapper .acc-section .acc-section-title .plus::before,
.accordion-wrapper .acc-section .acc-section-title .plus::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 1px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.accordion-wrapper .acc-section .acc-section-title .plus::before {
  width: 20px;
  height: 2px;
}
.accordion-wrapper .acc-section .acc-section-title .plus::after {
  width: 2px;
  height: 20px;
}
.accordion-wrapper .acc-section .active .plus {
  background: var(--primary);
  border-color: var(--primary);
}
.accordion-wrapper .acc-section .active .plus::after,
.accordion-wrapper .acc-section .active .plus::before {
  background: #fff;
}
.accordion-wrapper .acc-section .acc-section-title.active .plus::after {
  transform: rotate(90deg) scaleX(0);
}
.accordion-wrapper .acc-section .acc-section-content {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  padding: 40px 0px 60px 0px;
}
.accordion-wrapper .acc-section .acc-section-content .acc-flex {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.accordion-wrapper .acc-section .acc-section-content .acc-flex div ul {
  margin-left: 2rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.accordion-wrapper .acc-section .acc-section-content .acc-flex div ul li {
  color: var(--primary);
  font-size: 18px;
}
.accordion-wrapper .acc-section .acc-section-content .acc-flex-50 {
  width: 50%;
}
.accordion-wrapper .acc-section .acc-section-content div h4 {
  color: var(--tonered);
}
.accordion-wrapper .acc-section .acc-3-colm {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
.accordion-wrapper .acc-section .acc-3-colm .acc-colm {
  display: flex;
  width: 100%;
  height: 140px;
  align-items: flex-start;
  gap: 20px;
}
.accordion-wrapper .acc-section .acc-subtext p {
  font-weight: 700;
}
.accordion-wrapper .acc-section .acc-2colm {
  flex-direction: column;
}
.accordion-wrapper .acc-section .acc-2colm .acc-2colm-wrapper {
  display: flex;
  gap: 40px;
}
.accordion-wrapper .acc-section .acc-2colm .numb-big {
  justify-content: space-between;
  max-width: 1200px;
}
.accordion-wrapper .acc-section .acc-2colm .numb-big .acc-flex div {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.accordion-wrapper .acc-section .acc-2colm .numb-big .acc-flex div h4 {
  color: var(--tonered);
  font-family: "Koulen";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
  padding-bottom: 0px;
  width: 120px;
}
.accordion-wrapper .acc-section .acc-2colm .numb-big .acc-flex div p {
  color: var(--primary);
  font-family: "Urbanist";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 36px */
  letter-spacing: 0.72px;
}

@media only screen and (max-width: 834px) {
  .accordion-wrapper .acc-section .acc-section-title h3 {
    font-size: 28px;
  }
  .accordion-wrapper .acc-section .acc-section-content {
    flex-direction: column;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px;
  }
  .accordion-wrapper .acc-section .acc-section-content .acc-flex-50 {
    width: 100%;
  }
  .accordion-wrapper .acc-section .acc-2colm .acc-2colm-wrapper {
    flex-direction: column;
  }
  .accordion-wrapper .acc-section .acc-3-colm .acc-colm {
    flex-direction: column;
    height: auto;
  }
}
.img-gallery-wrapper {
  padding: 0 0em 6em 0em;
}
.img-gallery-wrapper .img-navi {
  padding: 7em 0 2.5em 0;
}
.img-gallery-wrapper .img-navi .dots-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
}
.img-gallery-wrapper .img-navi .dots-wrapper .dot {
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background-color: var(--tonebeige);
  padding: 0px;
}
.img-gallery-wrapper .img-navi .dots-wrapper .dot.is-active,
.img-gallery-wrapper .img-navi .dots-wrapper #active {
  background-color: var(--primary);
}
.img-gallery-wrapper .gallery-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  scroll-behavior: smooth;
  /* Optional: Scrollbar verstecken */
}
.img-gallery-wrapper .gallery-wrapper .gallery-content-wrapper {
  flex: 0 0 auto;
  width: 500px;
  scroll-snap-align: start;
}
.img-gallery-wrapper .gallery-wrapper .gallery-content-wrapper img,
.img-gallery-wrapper .gallery-wrapper .gallery-content-wrapper p,
.img-gallery-wrapper .gallery-wrapper .gallery-content-wrapper button {
  width: 100%;
  max-width: 100vw;
}
.img-gallery-wrapper .gallery-wrapper .gallery-content-wrapper img {
  cursor: zoom-in;
  display: block;
}
.img-gallery-wrapper .gallery-wrapper::-webkit-scrollbar {
  height: 6px;
  display: none;
}
.img-gallery-wrapper .gallery-wrapper::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(22, 65, 148, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.gallery-lightbox .gallery-lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 1200px);
  height: min(100%, 90vh);
}
.gallery-lightbox .gallery-lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.gallery-lightbox .gallery-lightbox-close,
.gallery-lightbox .gallery-lightbox-nav {
  position: absolute;
  border: 0;
  color: var(--tonewhite);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox .gallery-lightbox-close {
  top: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 0;
}
.gallery-lightbox .gallery-lightbox-close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery-lightbox .gallery-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 0;
}
.gallery-lightbox .gallery-lightbox-nav img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery-lightbox .gallery-lightbox-prev {
  left: 24px;
}
.gallery-lightbox .gallery-lightbox-next {
  right: 24px;
}

@media only screen and (max-width: 834px) {
  .img-gallery-wrapper {
    padding: 10px 0em 9em;
  }
  .img-gallery-wrapper ::-webkit-scrollbar {
    display: none;
  }
  .img-gallery-wrapper .img-navi {
    padding: 0em 0 2.5em 0;
  }
  .img-gallery-wrapper .gallery-wrapper .gallery-content-wrapper {
    width: 100%;
    padding: 0px var(--sidepadding);
  }
  .gallery-lightbox {
    padding: 20px;
  }
  .gallery-lightbox .gallery-lightbox-nav {
    width: 44px;
    height: 44px;
  }
  .gallery-lightbox .gallery-lightbox-prev {
    left: 12px;
  }
  .gallery-lightbox .gallery-lightbox-next {
    right: 12px;
  }
  .gallery-lightbox .gallery-lightbox-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }
}
.parallax {
  position: relative;
  height: 50vh;
  background-image: url("../img/parallax.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Parallax Effekt */
  overflow: hidden;
}

.parallax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: var(--tonewhite);
  clip-path: polygon(0 0, 100% 70%, 100% 0);
  /* Schräge definieren */
  z-index: 2;
}

.parallax::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: var(--primary);
  clip-path: polygon(0 30%, 100% 100%, 0 100%);
  z-index: 2;
}

.contact-form {
  background-color: var(--primary);
  padding: 80px 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-form form {
  padding-top: 140px;
  width: 100%;
  display: flex;
  max-width: 800px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
}
.contact-form form div {
  width: 100%;
  display: flex;
  gap: 16px;
}
.contact-form form div input {
  display: flex;
  min-height: 44px;
  padding: 12px;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0);
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  font-family: "Urbanist";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 111.111% */
}
.contact-form form input,
.contact-form form textarea {
  display: flex;
  min-height: 44px;
  padding: 12px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0);
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  font-family: "Urbanist";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 111.111% */
}
.contact-form form #text {
  display: block;
  min-height: 124px;
  padding: 12px;
  width: 100%;
  resize: vertical;
}
.contact-form form input[type=submit] {
  display: flex;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: #fff;
  width: fit-content;
  color: #164194;
  /* Button/button */
  font-family: "Urbanist";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 25.2px */
  letter-spacing: 0.36px;
}

.career-form form {
  gap: 2rem;
}
.career-form form .form-sections {
  display: flex;
  flex-direction: column;
}
.career-form form .form-sections .form-row {
  display: flex;
  flex-direction: row;
}
.career-form form .form-sections .form-row p {
  color: var(--tonewhite);
  font-size: 14px;
}
.career-form form .form-sections .form-row .form-column {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.career-form form .form-sections .form-row .form-column .form-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 16px;
  width: 100%;
}
.career-form form .form-sections .form-row .form-column .form-box {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--tonewhite);
}
.career-form form .form-sections .form-row .form-column .form-box input[type=radio],
.career-form form .form-sections .form-row .form-column .form-box input[type=checkbox] {
  width: 24px;
  height: 24px;
  border: 0.15em solid currentColor;
  border-radius: 50%;
  flex: none;
}
.career-form form .form-sections h4 {
  color: var(--tonewhite);
  font-family: "Urbanist";
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 1.26rem */
  letter-spacing: 0.018rem;
  padding-bottom: 0px;
}

@media only screen and (max-width: 834px) {
  .contact-form {
    padding: 80px var(--sidepadding);
  }
  .contact-form .heading-2clum {
    flex-direction: column-reverse;
  }
  .contact-form .heading-2clum div {
    padding-bottom: 40px;
    width: 100%;
  }
  .contact-form .heading-2clum div p {
    padding-top: 40px;
  }
  .contact-form form {
    padding-top: 40px;
  }
  .career-form form .form-sections .form-row {
    flex-direction: column;
  }
}
.section-text-wrapper {
  padding: 150px var(--sidepadding);
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: auto;
}
.section-text-wrapper button {
  color: var(--primary);
  font-family: "Urbanist";
  padding: 20px 0px;
  text-align: start;
}
.section-text-wrapper p {
  font-family: "Urbanist";
  font-size: 28px;
  line-height: 140%;
  color: var(--tonebeigedark);
}
.section-text-wrapper p span {
  font-size: 1em;
  color: var(--primary);
}

@media only screen and (max-width: 834px) {
  .section-text-wrapper p {
    font-size: 20px;
  }
}
.historie-wrapper {
  background-color: #122c5e;
  padding: 100px 0px;
}
.historie-wrapper .heading-2clum {
  padding: 0px var(--sidepadding) 100px 20%;
}
.historie-wrapper .gallery-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: scroll;
  width: 100%;
  scroll-snap-type: x mandatory;
  scroll-snap-align: start;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.historie-wrapper .gallery-wrapper .slide {
  flex-direction: column;
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  height: auto;
  scroll-snap-align: start;
  width: 380px;
  padding: 50px 40px;
}
.historie-wrapper .gallery-wrapper .slide h4 {
  color: var(--primary);
  padding-bottom: 35px;
}
.historie-wrapper .gallery-wrapper .light {
  background-color: var(--tonewhite);
}
.historie-wrapper .gallery-wrapper .dark {
  background-color: var(--tonebeige);
}
.historie-wrapper .gallery-wrapper .img-slide {
  width: auto;
  height: 441px;
  padding: 0px;
}
.historie-wrapper .gallery-wrapper .img-slide img {
  height: 100%;
}

@media only screen and (max-width: 834px) {
  .historie-wrapper .heading-2clum {
    padding: 0px var(--sidepadding) 60px var(--sidepadding);
  }
  .historie-wrapper .heading-2clum button {
    margin-bottom: 40px;
  }
  .historie-wrapper .heading-2clum div {
    width: 100%;
  }
  .historie-wrapper .gallery-wrapper {
    margin: 0px var(--sidepadding);
    gap: 15px;
    width: auto;
  }
  .historie-wrapper .gallery-wrapper .slide {
    padding: 40px 30px;
    max-width: 100%;
    width: 320px;
  }
  .historie-wrapper .gallery-wrapper .img-slide {
    width: calc(100% - var(--sidepadding) * 2);
    height: fit-content;
    padding: 0px;
  }
}
.team-wrapper {
  padding-top: 100px;
}
.team-wrapper .heading {
  padding: 0px var(--sidepadding) 100px var(--sidepadding);
  display: flex;
}
.team-wrapper .heading h2 {
  width: 50%;
}
.team-wrapper .heading div {
  width: 50%;
}
.team-wrapper .heading div h3 {
  font-family: "Urbanist";
  font-size: 40px;
  line-height: 120%;
  color: var(--primary);
  padding-bottom: 20px;
  width: 70%;
}
.team-wrapper .heading div p {
  color: #767676;
}
.team-wrapper .gallery-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: scroll;
  width: 100%;
  scroll-snap-type: x mandatory;
  scroll-snap-align: start;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.team-wrapper .gallery-wrapper .slide {
  flex-direction: column;
  display: flex;
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  height: auto;
  scroll-snap-align: start;
  width: 160px;
}
.team-wrapper .gallery-wrapper .slide img {
  z-index: 1;
}
.team-wrapper .gallery-wrapper .slide .hover-div {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 2;
}
.team-wrapper .gallery-wrapper .slide .hover-div p {
  color: #fff;
}

@media only screen and (max-width: 834px) {
  .team-wrapper .heading {
    flex-direction: column;
  }
  .team-wrapper .heading h2 {
    width: 100%;
  }
  .team-wrapper .heading div {
    width: 100%;
  }
  .team-wrapper .heading div h3 {
    width: 100%;
    font-size: 24px;
    padding-top: 40px;
  }
}
.impressum-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  background-color: var(--tonebeige);
  padding: var(--sidepadding);
  padding-top: 200px;
}
.impressum-hero h2 {
  font-family: "Urbanist";
  font-weight: 600;
  font-size: 90px;
  line-height: 80%;
  color: #164194;
}
.impressum-hero .impressum-contact h3 {
  font-family: "Urbanist";
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.02em;
  color: #164194;
}
.impressum-hero .impressum-contact p,
.impressum-hero .impressum-contact a,
.impressum-hero .impressum-contact span {
  font-family: Urbanist;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #164194;
}
.impressum-hero .impressum-contact a {
  text-decoration: none;
  color: #164194;
}
.impressum-hero .impressum-contact span {
  color: #e30613;
}
@media only screen and (max-width: 834px) {
  .impressum-hero {
    display: flex;
    flex-direction: column;
  }
  .impressum-hero h2 {
    font-size: 50px;
    padding-bottom: 10px;
  }
  .impressum-hero .impressum-contact h3 {
    font-size: 24px;
  }
  .impressum-hero .impressum-contact p,
  .impressum-hero .impressum-contact a,
  .impressum-hero .impressum-contact span {
    font-size: 14px;
  }
}

.impressum-text {
  width: 53%;
  margin-left: auto;
  padding: 150px var(--sidepadding);
}
.impressum-text h3 {
  font-family: "Urbanist";
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #164194;
  padding: 30px 0;
}
.impressum-text h2 {
  font-family: "Urbanist";
  font-weight: 700;
  font-size: 50px;
  line-height: 110%;
  letter-spacing: 0.02em;
  color: #164194;
  padding: 50px 0 10px;
}
.impressum-text h4 {
  font-family: "Urbanist";
  font-weight: 700;
  font-size: 22px;
  line-height: 130%;
  letter-spacing: 0.02em;
  color: #164194;
  padding: 18px 0 4px;
}
.impressum-text p {
  max-width: 800px;
  font-family: "Urbanist";
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: #767676;
  text-align: justify;
}
.impressum-text ul {
  max-width: 800px;
  margin: 0;
  padding: 0 0 0 22px;
}
.impressum-text li {
  font-family: "Urbanist";
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: #767676;
  text-align: justify;
  padding-bottom: 8px;
}
.impressum-text a {
  color: #164194;
}
@media only screen and (max-width: 834px) {
  .impressum-text {
    margin-left: 0;
    width: 100%;
  }
  .impressum-text h2 {
    font-size: 30px;
  }
  .impressum-text h3 {
    font-size: 24px;
  }
  .impressum-text h4 {
    font-size: 18px;
  }
  .impressum-text p,
  .impressum-text a,
  .impressum-text span,
  .impressum-text li {
    font-size: 14px;
  }
}

.datenschutz-hero {
  display: block;
  grid-template-columns: 1fr;
}

.datenschutz-text {
  width: 100%;
  margin-left: 0;
}
.datenschutz-text p,
.datenschutz-text ul,
.datenschutz-text li {
  max-width: none;
}

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