@font-face {
  font-family: "Code Next";
  src: url("../fonts/codenext-light-webfont.woff2") format("woff2"),
    url("../fonts/codenext-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Code Next";
  src: url("../fonts/codenext-regular-webfont.woff2") format("woff2"),
    url("../fonts/codenext-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Code Next";
  src: url("../fonts/codenext-regularitalic-webfont.woff2") format("woff2"),
    url("../fonts/codenext-regularitalic-webfont.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Code Next";
  src: url("../fonts/codenext-bold-webfont.woff2") format("woff2"),
    url("../fonts/codenext-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Code Next";
  src: url("../fonts/codenext-bolditalic-webfont.woff2") format("woff2"),
    url("../fonts/codenext-bolditalic-webfont.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Code Next";
  src: url("../fonts/codenext-extrabold-webfont.woff2") format("woff2"),
    url("../fonts/codenext-extrabold-webfont.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: opacity 2s ease-in;
}

.loader .logo {
  z-index: 10;
  opacity: 1;
  transition: transform 0.5s ease-in-out, clip-path 0.5s ease-in-out;
  /* Transition for opacity and clipping */
  clip-path: inset(0 0 0 0);
  /* Initially, no clipping */
  transform: translateY(0%);
}

.loader .curtain {
  position: absolute;
  width: 100%;
  height: 50%;
  z-index: 9;
  background: linear-gradient(90deg, #7f00ff 0.25%, #9907e1 99.74%);
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader .curtain.top {
  top: 0;
  transform: translateY(0%);
}

.loader .curtain.bottom {
  bottom: 0;
  transform: translateY(0%);
}

.loaded .logo {
  clip-path: inset(0 0 100% 0);
  transform: translateY(100%);
}

.curtains-open .curtain.top {
  transform: translateY(-100%);
}

.curtains-open .curtain.bottom {
  transform: translateY(100%);
}

.curtains-open .loader {
  opacity: 1;
  pointer-events: none;
}

.curtains-open .loader.hidden {
  display: none;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 50px;
}

h2 small {
  font-size: 20px;
}

h3 {
  font-size: 40px;
}

h1,
h2 {
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 72px */
  background: linear-gradient(92deg, #fff 0.28%, rgb(100, 100, 100) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

h3 {
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 72px */
  background: linear-gradient(92deg, #fff 0.28%, rgb(100, 100, 100) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

h1.primary,
h2.primary {
  background: linear-gradient(90deg, #9907e1 0%, #7f00ff 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description {
  color: #808085;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 20px;
}

.description.sm {
  font-size: 18px;
}

.description.light {
  color: #fff;
}

.description2 {
  color: #808085;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.picture-description {
  color: #808085;
  text-align: right;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 14px */
}

.subPageSpacing {
  margin-top: 150px !important;
}

.projekteSubPageCard {
  margin-bottom: 120px !important; 
}

.projekteSubPageCard:first-child{
  margin-top: 120px !important;
}

body {
  background-color: #000;
  transition: background-color 0.2s;
  --bs-body-line-height: 1;
  font-family: "Code Next", sans-serif;
}

body header {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
}

/* 
body header .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  max-height: 300px;
} */

body header .overlay {
  position: absolute;
  inset: 0;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  z-index: -1;
  width: 100%;
  max-height: 300px;
  left: 0;
  right: 0;
}

body header .overlay img {
  position: absolute;
  top: -5px;
  right: -40%;
  width: 75%;
  height: 100%;
  object-fit: contain;
}

body .content-carousel .carousel-menu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

body .content-carousel .carousel-menu .btn {
  --bs-btn-padding-x: 22px;
  --bs-btn-padding-y: 18px;
  font-size: 18px;
}

body footer {
  position: relative;
  width: 100%;
  /* height: 600px; */
  overflow: hidden;
}

body footer .overlay {
  position: absolute;
  width: 100%;
  height: 100%;

  position: absolute;
  inset: 0;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  z-index: -1;
  width: 100%;
  left: 0;
  right: 0;
}

body footer .overlay img {
  position: absolute;
  bottom: 0;
  left: -40%;
  width: 100%;
  /* height: 100%; */
  object-fit: contain;
}

body footer .footer-container {
  border-radius: 50px 50px 0 0;
  border-top: 1px solid #b1b1b1;
  border-right: 1px solid #b1b1b1;
  border-left: 1px solid #b1b1b1;
  background: linear-gradient(
    93deg,
    rgba(255, 255, 255, 0.1) 29.22%,
    rgba(255, 255, 255, 0.1) 66.78%
  );
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-height: 400px;
  padding: 55px 69px;
}

.footerDesktopTopWrap {
  margin-bottom: 32px;
}

body footer .footer-container .social {
  display: flex;
  align-items: end;
  flex-direction: column;
  text-align: right;
  color: #fff;
}

body footer .footer-container .social .topText {
  font-size: 20px;
  font-weight: normal;
  line-height: 26px;
  margin-bottom: 18px;
}

body footer .footer-container .social .btn {
  margin-bottom: 26px;
  transition: 0.3s all ease !important;
}

body footer .footer-container .social .btn:hover {
  background: linear-gradient(218deg, #9907e1 11.83%, #7f00ff 97.54%);
  color: #fff;
  transition: 0.3s all ease !important;
}

body footer .footer-container .social .socilaMediaText {
  font-size: 20px;
  font-weight: normal;
  line-height: 26px;
  margin-bottom: 7px;
}

body footer .footer-container .social .social-icons a {
  text-decoration: none;
}

body footer .footer-container .social .social-icons a:hover svg circle,
body footer .footer-container .social .social-icons a:hover svg path {
  transition: 0.3s all ease;
}

body footer .footer-container .social .social-icons a:hover svg circle {
  fill: #7f00ff;
}

body footer .footer-container .social .social-icons a:hover svg path {
  fill: #fff;
}

body footer .footer-container .contact-details {
  font-size: 18px;
  font-family: "Code Next", sans-serif;
}

body footer .footer-container .contact-details img {
  display: block;
  margin-bottom: 19px;
}

body footer .footer-container .contact-details .footer-label-p {
  font-size: 20px;
  font-weight: normal;
  line-height: 26px;
  margin-bottom: 3px;
  color: #fff;
  opacity: 75%;
}

body footer .footer-container .contact-details a {
  display: block;
  width: fit-content;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 17px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s all ease;
}

body footer .footer-container .contact-details a:hover {
  background: linear-gradient(90deg, #9907e1 0%, #7f00ff 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Optional for better compatibility */
  background-clip: text;
  color: transparent;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

body footer .footer-container .contact-details .footer-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 26px */
  font-family: "Inter", sans-serif;
}

body footer .footer-links {
  color: #fff;
}

body footer .nav {
  --bs-nav-link-color: #fff;
  --bs-navbar-active-color: #fff;
  --bs-nav-link-hover-color: rgba(255, 255, 255, 0.9);
  gap: 40px;
}

body footer .nav .nav-link {
  --bs-nav-link-font-size: 18px;
  padding: 0;
  transition: 0.3s all ease;
}

/* body footer .nav .nav-link:hover {
  color: #000;
  transform: translateY(-5px);
} */

.das-erfolgsrezept {
  background: url("../img/das-erfolgsrezept-background.png") no-repeat center
    center;
  background-position-y: -85px;
  padding-bottom: 100px;
}

.hero-shadow {
  padding-bottom: 0;
  background: url("../img/hero-shadow.png") no-repeat center
    center;
  background-position-y: -70px;
}

.get-started-container {
  border-radius: 30px;
  background: url("../img/bg-side.png") no-repeat center right,
    linear-gradient(218deg, #9907e1 11.83%, #7f00ff 97.54%);
  padding: 75px 180px;
  text-align: center;
}

.get-started-container h3 {
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 72px */
  margin-bottom: 0;
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  color: #fff;
}

.get-started-container .description {
  margin-bottom: 0;
}

.btn {
  --bs-btn-line-height: 1;
}

/* === NAVBAR BASE === */
.navbar {
  border-radius: 75px;
  border: 1px solid #b1b1b1;
  background: linear-gradient(
    93deg,
    rgba(255, 255, 255, 0.1) 29.22%,
    rgba(255, 255, 255, 0.1) 66.78%
  );
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 20px;
  margin-top: 14px;
  --bs-navbar-nav-link-padding-x: 0px;
  --bs-navbar-toggler-focus-width: 0;
}

@media (max-width: 991.98px) {
  .navbar {
    border-radius: 20px;
    margin-left: 5px;
    margin-right: 5px;
  }
}

/* DESKTOP Navigation */
.navbar .navbar-nav {
  --bs-nav-link-color: #fff;
  --bs-navbar-active-color: #fff;
  --bs-nav-link-hover-color: rgba(255, 255, 255, 0.9);
  gap: 40px;
}

.navbar .nav-link {
  --bs-nav-link-font-size: 18px;
  padding: 14px 32px;
}

.navbar .nav-link.active {
  border-radius: 50px;
  border: 1px solid #b1b1b1;
  background: rgba(177, 177, 177, 0.5);
  padding-left: 24px !important;
  padding-right: 24px !important;
}
.nav-link.active {
  border-radius: 50px;
  border: 1px solid #b1b1b1;
  background: rgba(177, 177, 177, 0.5);
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* .navbar-collapse.collapse.show {
  height: 87vh;
} */

/* Kontakt-Button (für beide) */
.contact-button {
  background-color: white;
  color: black;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  font-size: 20px;
}
.contact-button:hover {
  opacity: 0.9;
}

/* === MOBILE Menü === */
@media (max-width: 991.98px) {
  .menu-item {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
  }

  .menu-item:hover {
    color: rgba(255, 255, 255, 0.9);
  }

  .burger-divider {
    border: none;
    border-top: 2px solid rgba(255, 255, 255, 1);
    width: 100%;
  }

  .contact-info p {
    margin: 0;
    font-size: 25px;
    margin-top: 10px;
  }

  .contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
  }

  .contact-info p:first-child {
    margin-bottom: 20px;
  }

  /* Kontakt-Button im Burger-Menü: volle Breite */
  .navbar-collapse .contact-button {
    width: 100%;
    max-width: 100%;
    padding: 16px 24px;
    font-size: 30px;
    margin-bottom: 30px;
    border-radius: 50px;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  body header .overlay {
    max-height: 150px;
  }

  .navbar .container-fluid {
    --bs-gutter-x: 0;
  }

  body > .container-xl {
    --bs-gutter-x: 20px;
  }

  .about .image {
    max-width: 250px;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .d-flex.gap-5 {
    gap: 20px !important;
  }
}

.footer-desktop {
  display: block;
}

.footer-mobile {
  display: none;
}

.footer-mobile {
}

body footer .footer-container .footer-mobile .social .topText {
  font-size: 15px;
  line-height: 21px;
  margin: 0 auto;
  margin-bottom: 25px;
  text-align: center;
}

body footer .footer-container .footer-mobile .social .btn {
  margin-bottom: 78px;
}

body footer .footer-container .footer-mobile .contact-details .footer-label-p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 6.7px;
}

body footer .footer-container .footer-mobile .contact-details a {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 20px;
}

body footer .footer-container .footer-mobile .socilaMediaText {
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  margin-bottom: 10px;
  color: #fff;
}

body footer .footer-container .footer-mobile .social-icons a:hover svg circle {
  fill: #7f00ff;
}

body footer .footer-container .footer-mobile .social-icons a:hover svg path {
  fill: #fff;
}

body footer .footer-container .footer-mobile .social-icons a:hover svg circle,
body footer .footer-container .footer-mobile .social-icons a:hover svg path {
  transition: 0.3s all ease;
}

body footer .footer-mobile .nav .nav-link {
  font-size: 14px;
}

/* @media (max-width: 991.98px) { */
@media only screen and (max-width: 767px) {
  .footer-desktop {
    display: none;
  }

  .footer-mobile {
    display: block;
    max-width: 100vw;
  }

  body footer .footer-container {
    border-radius: 25px 25px 0 0;
    max-width: 100vw;
    width: 100%;
    position: relative;
    bottom: -2px;
  }

  body footer .footer-container .contact-details .footer-label {
    font-size: 14px;
  }

  body footer .footer-container .contact-details {
    font-size: 14px;
  }

  .footer-links.nav-item {
    font-size: 14px;
  }

  .paket-info h2 br {
    display: none;
  }
}

.gap-lg-10 {
  gap: 140px !important;
}

@media (max-width: 1560px) {
  body header .overlay img {
    height: auto;
  }
}

.navbar-toggler {
  --bs-border-width: 0;
}

/* Bootstrap Burger-SVG abschalten */
.navbar-toggler-icon {
  background-image: none !important;
}

/* Custom Burger-Icon */
.navbar-toggler-icon {
  display: block;
  position: relative;
  width: 28px;
  height: 2px;
  background-color: white;
  margin: 0 auto;
  transition: background-color 0.3s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 2px;
  background-color: white;
  transition: all 0.3s;
  left: 0;
}

.navbar-toggler-icon::before {
  top: -9px;
}

.navbar-toggler-icon::after {
  top: 9px;
}

/* X-Animation */
.custom-toggler.open .navbar-toggler-icon {
  background-color: transparent;
}

.custom-toggler.open .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.custom-toggler.open .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Navbar default state - hidden until animation triggers */
nav.navbar.homeonlyslide {
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

nav.navbar.navbar-slide-in {
  transform: translateY(0);
  opacity: 1;
}

.contact-button {
  --bs-btn-active-bg: #fff;
  --bs-btn-color: #000;
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-color: #000;
  --bs-btn-active-color: #000;
  border-radius: 50px;
  background: #fff;
  color: #000;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  padding: 16px 25px;
}

.white {
  color: #fff;
}

.btn {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.btn-primary {
  --bs-btn-padding-x: 34px;
  --bs-btn-padding-y: 16px;
  --bs-border-radius: 50px;
  --bs-btn-color: #fff !important;
  --bs-btn-bg: linear-gradient(90deg, #9907e1 0%, #7f00ff 100%);
  background: linear-gradient(90deg, #9907e1 0%, #7f00ff 100%);
  --bs-btn-border-color: #9907e1;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.46) 0%,
      rgba(0, 0, 0, 0.46) 100%
    ),
    linear-gradient(90deg, #9907e1 0%, #7f00ff 100%);
  --bs-btn-hover-border-color: #9907e1;
  --bs-btn-active-bg: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.46) 0%,
      rgba(0, 0, 0, 0.46) 100%
    ),
    linear-gradient(90deg, #9907e1 0%, #7f00ff 100%);
  --bs-btn-active-border-color: #9907e1;
}

.btn-primary:hover {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.46) 0%,
      rgba(0, 0, 0, 0.46) 100%
    ),
    linear-gradient(90deg, #9907e1 0%, #7f00ff 100%);
}

.btn-white-outline {
  --bs-btn-padding-x: 34px;
  --bs-btn-padding-y: 16px;
  --bs-border-radius: 50px;
  --bs-btn-color: #fff !important;
  --bs-btn-bg: transparent;
  background: transparent;
  --bs-btn-border-color: #f7f6f3;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-active-bg: #fff;
  --bs-btn-active-color: #000;
  --bs-btn-active-border-color: #fff;
}

.btn-black-outline {
  --bs-btn-padding-x: 34px;
  --bs-btn-padding-y: 16px;
  --bs-border-radius: 50px;
  --bs-btn-color: #000 !important;
  --bs-btn-bg: transparent;
  background: transparent;
  --bs-btn-border-color: #000;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: #000;
  --bs-btn-active-bg: transparent;
  --bs-btn-active-color: #000;
  --bs-btn-active-border-color: #000;
}

.flex-1 {
  flex: 1;
}

.divider-20 {
  margin-bottom: 20px;
}

.divider-35 {
  margin-bottom: 35px;
}

.divider-45 {
  margin-bottom: 45px;
}

.divider-60 {
  margin-bottom: 60px;
}

.divider-120 {
  margin-bottom: 120px;
}

.divider-190 {
  margin-bottom: 190px;
}

.max-width-900 {
  max-width: 900px;
}

.progress-value {
  background: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card {
  padding: 28px 35px;
  max-width: 350px;
  border-radius: 40px;
}

.card h4 {
  color: #000;
  text-align: center;
  font-family: "Code Next", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 24px */
}

.card .sub-heading {
  color: #000;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
}

.card ul.list {
  padding: 30px 0;
  margin: 0;
  list-style: none;
}

.card ul.list li {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  /* 18.2px */
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
}

.card ul.list li:last-child {
  margin-bottom: 0;
}

.card .btn {
  --bs-btn-padding-x: 28px;
  --bs-btn-padding-y: 15px;
  font-size: 16px;
}

.card.bg-primary h4 {
  color: #fff;
}

.card.bg-primary .sub-heading {
  color: #fff;
}

.card.bg-primary ul.list li {
  color: #fff;
}

.card.bg-black h4 {
  color: #fff;
}

.card.bg-black .sub-heading {
  color: #fff;
}

.card.bg-black ul.list li {
  color: #fff;
}

.gallery {
  gap: 40px;
}

.gallery img {
  width: 400px;
  height: 400px;
  border-radius: 40px;
  object-fit: cover;
}

.galleryContainer {
  position: relative;
  padding-bottom: 50px;
}

.scroll-btn {
  position: absolute;
  bottom: -20px;
  transform: translateY(-50%);
  z-index: 8;
  background-color: transparent;
  border: none;
  /* padding: 10px; */
  font-size: 24px;
  cursor: pointer;
  display: block;
  color: #fff;
  /* Hidden by default for desktop */
}

.scroll-btn.left {
  right: 64px;
  bottom: -12px;
  transform: rotate(180deg);
}

.scroll-btn.right {
  bottom: -35px;
  right: 10px;
}

@media (max-width: 768px) {
  .scroll-btn {
    display: block;
  }
}

.collab {
  padding: 120px 0;
}

.collab h3 {
  color: #fff;
  text-align: center;
  font-family: "Code Next", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  /* 52px */
}

.collab .collab-item {
  max-width: 250px;
  align-self: center;
}

.collab .collab-item img {
  width: 100%;
}

.bg-primary {
  background: linear-gradient(180deg, #9907e1 0%, #7f00ff 100%);
}

.bg-black {
  background: black;
}

.w-content {
  width: max-content !important;
}

.h-content {
  height: max-content !important;
}

.card-print {
  padding: 28px 38px;
  padding-bottom: 29px;
  padding-top: 29px;
  min-width: 66%;
  border-radius: 40px;
}

.card-print.bg-black h4 {
  color: #fff;
}

.card-print.bg-black .sub-heading {
  color: #fff;
}

.card-default {
  position: relative;
  background-color: rgb(0, 0, 0) !important;
  color: #ffffff !important;
  border-radius: 20px !important;
  box-shadow: none !important;
  overflow: hidden;
}

/* Gradient-Rahmen mit ::before */
.card-default::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1px;
  /* 1px Rahmen */
  background: linear-gradient(
    92deg,
    rgba(255, 255, 255, 0.5) 0.28%,
    rgba(153, 153, 153, 0.5) 100%
  );
  border-radius: 20px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
}

.card-default .card-body {
  position: relative;
  padding: 25px 25px 0 25px;
  /* oben, rechts, unten (wird separat), links */
  z-index: 1;
}

.card-default .card-text {
  color: #808085 !important;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 20px;
}

.card-default .btn {
  --bs-btn-padding-x: 28px;
  --bs-btn-padding-y: 15px;
  font-size: 16px;
  margin-bottom: 25px;
}

.card-default .btn:hover {
  background-color: #ffffff !important;
  color: rgb(0, 0, 0) !important;
}

.card-default h2 {
  color: #fff;
  font-family: "Code Next", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  /* 52px */
  margin-bottom: 15px;
}

.btn-glass {
  border-radius: 50px;
  border: 1px solid #b1b1b1;
  background: linear-gradient(
    93deg,
    rgba(255, 255, 255, 0.1) 29.22%,
    rgba(255, 255, 255, 0.1) 66.78%
  );
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  color: #fff;
  font-size: 16px;
  padding: 12px 24px;
  transition: all 0.3s ease;
  display: inline-block;
}

.square-img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 30px;
  /* optional, wie bei .rounded-4 */
}

/* --- Horizontales Scrollen für Tab-Buttons --- */
.carousel-menu {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Scrollbar ausblenden */
.hide-scrollbar {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.gallery-scroll-wrapper {
  width: 100%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.gallery-scroll-wrapper .gallery {
  gap: 40px;
}

.gallery-scroll-wrapper img {
  flex-shrink: 0;
  width: 400px;
  height: 400px;
  border-radius: 40px;
  object-fit: cover;
}

/* Scrollbar ausblenden */
.hide-scrollbar {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.carousel-menu .btn {
  border: 1px solid white;
  border-radius: 50px;
  margin-right: 10px;
  color: white;
  background-color: transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.carousel-menu .btn:hover,
.carousel-menu .btn.active {
  background-color: white;
  color: black;
}

/* Slide-in Effekt */
.tab-pane {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.4s ease;
}

.tab-pane.active.show {
  opacity: 1;
  transform: translateX(0);
}

.tab-pane h3 {
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 72px */
  background: linear-gradient(92deg, #fff 0.28%, #999 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.tab-pane p {
  font-size: 1.1rem;
  max-width: 700px;
}

.tab-pane-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: nowrap;
  max-height: 450px;
  position: relative;
}

.tab-pane-content::before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url("../img/startBg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  z-index: -1;
}

@media only screen and (max-width: 991px) {
  .tab-pane-content::before {
    display: none;
  }
}

.tab-text {
  max-width: 300px;
  flex-shrink: 0;
  margin-top: -50px;
}

.tab-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group .btn {
  opacity: 0.5;
  font-weight: 700;
  padding: 18px 22px;
  width: 100%;
  text-align: left;
  font-size: 20px !important;
  line-height: 120%;
  font-weight: 500;
}

.form-group label {
  border-radius: 15px;
  text-align: left;
}

.form-group input {
  display: none;
}

.form-group .btn-check:checked + .btn,
.form-group :not(.btn-check) + .btn:active,
.form-group .btn:first-child:active,
.form-group .btn.active,
.form-group .btn.show,
.form-group label:hover {
  background-color: transparent;
  color: #ffffff;
  opacity: 1;
}

.form-group input[type="radio"]:checked + label {
  background-color: transparent;
  color: #ffffff;
  opacity: 1;
  border: 1px solid #ffffff;
  box-shadow: inset 0 0 0 1px #ffffff;
}

form .form-label {
  color: #fff;
  font-family: "Code Next";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 20px;
}

.budget .form-label {
  max-width: 200px;
}

.form-group label small {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

form .error-message {
  color: #f014a1;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  display: none;
}

form .error-message.show {
  display: block;
}

form .chosen-container .chosen-single {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 15px;
  padding: 21px 22px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  height: 65px;
  text-align: left;
  padding-right: 53px;
}

form .chosen-container-single .chosen-single span {
  margin-right: 12px;
}

form .chosen-container .chosen-single div b {
  background: url(../img/arrow-select.svg) no-repeat 0 10px !important;
}

form .chosen-container-active.chosen-with-drop .chosen-single {
  background-image: none;
  box-shadow: inset 0 0 0 1px #ffffff !important;
  border: 1px solid #ffffff !important;
  border-bottom: 0 !important;
}

form .chosen-container-active.chosen-with-drop .chosen-single div b {
  transform: rotate(180deg);
  background-position: 10px 11px !important;
}

form .chosen-container.chosen-with-drop .chosen-drop {
  background: #000000;
  border: 2px solid #ffffff !important;
  box-shadow: none;
  border-top: 0 !important;
}

form .chosen-container .chosen-results {
  margin: 0;
  padding: 0 22px;
  text-align: left;
}

form .chosen-container .chosen-results li {
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  padding: 10px 0;
}

form .chosen-container .chosen-results li:first-child {
  padding-top: 0;
}

form input[type="text"],
form input[type="email"],
form textarea {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 15px;
  padding: 16px 22px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  width: 100%;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    outline: none;
    border: 1px solid #ffffff !important;
    box-shadow: inset 0 0 0 1px #ffffff !important;
}

form .chosen-container-single .chosen-search {
  padding: 0;
}

form .chosen-container .chosen-results li.highlighted {
  background: transparent;
}

form .chosen-container .chosen-single div {
  width: 53px;
}

header.kontakt-header {
  min-height: auto;
  overflow: visible;
}

/* .hero-video-wrapper {
  z-index: -1;
  margin-top: -150px;
  width: 500px;
  top: 80px;
} */

@keyframes zoomIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hero-video-wrapper {
  z-index: -1;
  margin-top: -150px;
  width: 670px;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: center;
  transition: opacity 1s ease-out, transform 1s ease-out;
  margin: 0;
  position: absolute;
  top: 40px;
}

.hero-video-wrapper.to-show-mid {
  margin-top: -460px;
  padding-bottom: 100px;
}

.hero-video-wrapper.zoom-in {
  animation: zoomIn 1s ease-out forwards;
}

.hero-video-wrapper.zoom-in-simple {
  animation: zoomIn 0ms ease-out forwards;
}
.hero-logo-video {
  width: 100%;
  height: auto;
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.py-lg-5 {
  padding-top: 3rem !important;
  padding-bottom: 2rem !important;
}

.card-service, .kontakt-service {
  border-radius: 75px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(
    93deg,
    rgba(255, 255, 255, 0.1) 29.22%,
    rgba(255, 255, 255, 0.1) 66.78%
  );
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 26px 30px 22px;
  margin-top: 0px;
  --bs-navbar-nav-link-padding-x: 0px;
  --bs-navbar-toggler-focus-width: 0;
}

.kontakt-service {
  margin-bottom: 20px;
}

.kontakt-service.desktop {
  display: block;
}

.kontakt-service.mobile {
  display: none;
  margin-bottom: 90px;
}

.card-service h4, .kontakt-service h4 {
  font-size: 0 !important;
}

.card-service h4 img {
  height: 50px;
}

.kontakt-service h4 img {
  height: 60px;
}

.card-service h3, .kontakt-service h3 {
  font-size: 28px;
  color: #ffffff;
  padding-bottom: 16px;
  padding-top: 25px;
}

.card-service p, .kontakt-service p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
}

#service-cards {
  background-image: url("../img/circle-bg-service.png");
  background-repeat: no-repeat;
  /* background-position: center center; */
  background-position: 50% 57%;
  background-size: 180px 180px;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.bgRecSection {
  background-image: url("../img/bgRec.png");
  background-repeat: no-repeat;
  background-position: center top;
  margin: 100px 0;
  padding: 50px 0;
}

.cardsSec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* Print Page */

.printableSec {
  margin-top: 50px;
}

.printableSec .plItem {
  margin-bottom: 70px;
}

.printableSec .plItem .title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 24px;
}

.printableSec .plItem .desc {
  font-size: 18px;
  color: #808085;
  margin-bottom: 0px;
  line-height: 20px;
}

.printableSec .plItem.mblast {
  margin-bottom: 0;
}

.printableSec .lastItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 30px 42px;
  width: 100%;
}

.printableSec .lastItem .text {
  font-size: 18px;
  color: #fff;
  margin-bottom: 0px;
  width: 60%;
  line-height: 24px;
}

.printableSec .lastItem a {
  font-size: 18px;
}

/* Custom Dropdowns */
nav.navbar {
  z-index: 9;
}

/* Position and style dropdown */
.dropdown-custom {
  cursor: pointer;
}

.navbar-nav .dropdown-custom .nav-link.menu-item {
  padding-left: 15px;
  padding-right: 15px;
}

.navbar-nav .dropdown-custom .nav-link.menu-item:hover {
  background: linear-gradient(90deg, #9907e1 0%, #7f00ff 100%);
  color: #fff;
  border-color: #9907e1;
}

.dienste-dropdown {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  background: #111;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  z-index: 9999999;
  min-width: 180px;
  border-radius: 10px;
  background: rgba(33, 33, 33, 1);
  /* border-radius: 16px; */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 30px;
  backdrop-filter: blur(65px);
  border: 1px solid rgba(33, 33, 33, 0.3);
}

.dienste-dropdown li {
  margin-bottom: 10px;
  /* padding: 0 15px; */
}

.dienste-dropdown li a {
  display: block;
  padding: 0.5rem 1rem;
  color: white;
  text-decoration: none;
}

.dienste-dropdown li a:hover {
  background: #222;
}

/* Rotate icon */
.arrow-icon {
  transition: transform 0.3s ease;
}

.dropdown-open .arrow-icon {
  transform: rotate(180deg);
}

/* Morphism Background */

.MorphismBg {
  background: linear-gradient(
    93deg,
    rgba(255, 255, 255, 0.1) 29.22%,
    rgba(255, 255, 255, 0.1) 66.78%
  );
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border-top: 1px solid #b1b1b1;
  border-bottom: 1px solid #b1b1b1;
}

/* Button CSS Update */
.withBgWhite:hover {
  background-color: #000;
  color: #fff;
}

/* Section Spacing */
.startSec {
  padding: 100px 0 20px;
}

.intoSec {
  padding: 0px 0 100px 0;
}

.successSec {
  padding-bottom: 120px;
}

.packagesSec {
  position: relative;
  padding-bottom: 100px;
}

.packagesSec .ganzheitlichSection {
  padding-bottom: 120px;
}

.packagesSec .spacerBg {
  display: block;
  width: 100%;
  height: 50px;
}

.packagesSec .spacerBg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-image: url("/img/pkgbg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: -1;
}

.projectSec {
  padding-bottom: 100px;
}

.collaborationSec {
  margin-bottom: 100px;
  background: linear-gradient(
    93deg,
    rgba(255, 255, 255, 0.1) 29.22%,
    rgba(255, 255, 255, 0.1) 66.78%
  );
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  /* border-top: 1px solid #B1B1B1;
  border-bottom: 1px solid #B1B1B1; */
}

.readySec {
  /* padding-top: 200px; */
  padding-bottom: 100px;
}

@media only screen and (max-width: 991px) {
  /* .intoSec {
    padding: 0px 0 10px 0;
  } */

  .successSec {
    padding-bottom: 110px;
  }

  .packagesSec {
    padding-bottom: 80px;
  }

  .projectSec {
    margin-bottom: 50px;
  }

  .readySec {
    /* padding-top: 100px; */
    padding-bottom: 100px;
  }
}

.read-more,
.read-more2 {
  color: #fff;
}

.ServicePageImg {
  opacity: 0.3;
}

@media only screen and (max-width: 767px) {
  .ServicePageImg {
    opacity: 0.25;
  }
}

.hero-text h1,
.hero-text h2,
.hero-text .description,
.hero-text .btn {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 4s ease, transform 4s ease;
}

.hero-text h1.slide-down,
.hero-text h2.slide-down,
.hero-text .description.slide-down,
.hero-text .btn.slide-down {
  opacity: 1;
  transform: translateY(0);
}

.hero-text .img-container {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 4s ease, transform 4s ease;
}

.hero-text .img-container.slide-down {
    opacity: 1;
    transform: translateY(0);
}

.homeOverlay {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.overlay.slide-down {
  opacity: 1;
  transform: translateY(0);
}
.change-color {
  background-color: black; /* Target color */
}

.target-element {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  /* transition: all 0.3s ease-in-out;
  /* background: linear-gradient(93deg, rgba(255, 255, 255, 0.1) 29.22%, rgba(255, 255, 255, 0.1) 66.78%); */
  /* backdrop-filter: blur(65px); */
  position: unset !important;
  border-top: 1px solid #b1b1b1;
  border-bottom: 1px solid #b1b1b1;

  list-style: none;
  margin: 0;
  padding: 0.625rem 0;
  margin: 1.5rem 0 0.2rem;
  min-width: 180px;
  /* border-radius: 10px;
  /* border-radius: 16px; */
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 30px;
  border: 1px solid rgba(33, 33, 33, 0.3); */
}

.target-element.is-open {
  display: block;
  opacity: 1;
  /* transform: translateY(0); */
}
.target-element li::marker {
  list-style: none;
  content: none;
}

.sep-mar {
  margin-top: 50px !important;
  margin-bottom: 0px !important;
}

.custome-container .title {
  font-size: 30px;
}

.custome-container .description.sm {
  font-size: 18px;
}

.ProzessColumn {
  margin-top: 6rem;
}

.ProzessColumn h3 {
  font-size: 50px !important;
  color: #808085;
  background: transparent;
  -webkit-text-fill-color: #808085;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.ProzessColumn h4 {
  font-size: 30px !important;
}

.ProzessColumn .description {
  font-size: 18px !important;
}

.person-container {
  margin-top: 80px;
}

.contact-form-container {
  margin-top: 100px;
}

.contact-submit-btn {
  margin: 36px 0 90px;
}

.row_gap_24 {
  row-gap: 24px !important;
}

@media screen and (max-width: 678px) {
  .sep-mar {
    margin-top: 20px !important;
    margin-bottom: 0px !important;
  }
}

@media (max-width: 991.98px) {
  /* .custome-container h1{
margin-top: 0px !important;
  } */

  /* .custome-container h2{
    font-size: 30px !important;
      }
      .custome-container h3{
        font-size: 24px !important;
          }


          .get-started-container{
            padding: 40px 20px;
          } */
}


.klaro .cookie-notice {
  background: #1a1a1a !important;
  border: 1px solid rgba(247, 246, 243, 0.5) !important;
  border-radius: 15px !important;
  --notice-max-width: 500px;
}

.klaro .cookie-notice .cn-body {
  padding: 18px 22px !important;
  line-height: 130%;
}

.klaro .cookie-notice .cn-body #id-cookie-notice {
  margin: 0;
}

.klaro .cookie-notice .cm-btn {
  padding: 16px 28px !important;
  font-size: 16px;
  color: #fff !important;
  border-radius: 50px !important;
  background-color: transparent !important;
  border: 1px solid #fff !important;
}

.klaro .cookie-notice .cm-btn-success {
  background: linear-gradient(218deg, #9907e1 11.83%, #7f00ff 97.54%);
  border: 0 !important;
}

.klaro {
  display: none;
}

.klaro-show {
    display: block;
}








.custom-info-content-trigger {
    width: 12px;
    height: 12px;
    color: #434343;
    margin-left: 4px;
}

.custom-info-content {
    display: none;
}

.tippy-box {
    border-radius: 20px;
    border: 1px solid #FFF;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(153, 153, 153, 0.15) 100%);
    backdrop-filter: blur(12.600000381469727px);
}

.tippy-content {
    color: #000000;
    box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.20);
    padding: 36px;
    border-radius: 5px;
}

.tippy-content .custom-info-content {
    display: block;
    line-height: normal;
}

.tippy-content .custom-info-content > b, .tippy-content .custom-info-content li > b {
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    font-family: "Raleway", sans-serif;
}

.tippy-content .custom-info-content .spacing {
    margin-bottom: 12px;
}
.tippy-content .custom-info-content span {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    display: block;
    text-align: left;
}

.tippy-content .custom-info-content ul {
    margin: 0;
    font-size: 12px;
}

.tippy-content .custom-info-content ul li {
    line-height: 16px;
    margin-top: 0;
}

.tippy-arrow {
    color: var(--nv-site-bg);
    display: none;
}

.tippy-content p {
    margin: 0;
}

.tippy-content a {
    text-decoration: underline;
}

.impressum-header, .datenschutz-header {
  min-height: 330px;
}

.impressum-header h1, .datenschutz-header h1 {
  font-size: 80px;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.92);
  color: rgba(255, 255, 255, 0.92);
}

.impressumSec {
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.92);
}

.impressumSec b {
  font-size: 30px;
  font-weight: 700;
}


.datenschutzSec {
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.92);
}

.datenschutzSec b {
  font-size: 30px;
  font-family: "Code Next", sans-serif;
  font-weight: 700;
}

#thank_you_container {
  position: relative;
}

#thank_you_container:before {
content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 133px;
  height: 133px;
  flex-shrink: 0;
    border-radius: 83px;
  background: radial-gradient(50% 50% at 50% 50%, #9907E1 0%, #7F00FF 100%);
  box-shadow: 0px 0px 16.007px 0px #FFF inset;
  backdrop-filter: blur(0.64px);
}

#thank_you_container:after {
content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
width: 215px;
height: 215px;
flex-shrink: 0;
  border-radius: 107.5px;
background: radial-gradient(50% 50% at 50% 50%, #9907E1 0%, #7F00FF 100%);
box-shadow: 0px 0px 20.732px 0px #FFF inset;
backdrop-filter: blur(0.80px);
z-index: -1;
}