@charset "UTF-8";
/* CSS Document */

em {
  font-family: headline-italic !important;
}


/* LEISTUNGEN UNTERSEITEN 
  Beispiel: Design, Programmierung, Marketing -----------
*/

/*Breadcrumbs Leistungen White*/
.leistung-unterseite-breadcrumbs {
  font-family: "proxima-nova";
  padding-top: 60px;
  width: 100%;
  position: absolute;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,1.00);
  padding-right: 5%;
  padding-left: 5%;
  z-index: 5;
  display: flex;
  top: 0;
}

.leistung-unterseite-breadcrumbs img {
  height: 10px;
  width: auto;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 3px;
  opacity: 0.8;
}

.leistung-unterseite-breadcrumbs a {
  color: rgba(0,0,0,1.00);
  text-decoration: none;
  cursor: pointer;
  opacity: 0.3;
  font-weight: 600;
  text-transform: uppercase;
  height: auto;
  padding-bottom: 3px;
  -webkit-transition: all 300ms ease-in;
  -moz-transition: all 300ms ease-in;
  -ms-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}

.leistung-unterseite-breadcrumbs a:hover {
  opacity: 0.9;
}

.leistung-unterseite-breadcrumbs-active {
  opacity: 1 !important;
  text-decoration: underline !important;
  text-decoration-style: solid !important; 
  text-decoration-color: rgba(0,0,0,1.00) !important;
  text-decoration-thickness: 2px !important;
  text-decoration-skip: none !important;
  text-underline-position: under !important;
  text-underline-offset: -1px !important;
}

/*Breadcrumbs Leistungen Dark*/
.leistung-unterseite-breadcrumbs-dark {
  padding-top: 60px;
  width: 100%;
  position: absolute;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,1.00);
  padding-right: 5%;
  padding-left: 5%;
  z-index: 1;
  display: flex;
}

.leistung-unterseite-breadcrumbs-dark img {
  height: 10px;
  width: auto;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 1px;
  opacity: 0.8;
}

.leistung-unterseite-breadcrumbs-dark a {
  font-size: 16px;
  color: rgba(255,255,255,1.00);
  text-decoration: none;
  cursor: pointer;
  opacity: 0.3;
  font-weight: 600;
  text-transform: uppercase;
  height: auto;
  padding-bottom: 3px;
  -webkit-transition: all 300ms ease-in;
  -moz-transition: all 300ms ease-in;
  -ms-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}

.leistung-unterseite-breadcrumbs-dark a:hover {
  opacity: 0.9;
}

.leistung-unterseite-breadcrumbs-dark-active {
  opacity: 1 !important;
  text-decoration: underline !important;
  text-decoration-style: solid !important; 
  text-decoration-color: rgba(255,255,255,1.00) !important;
  text-decoration-thickness: 2px !important;
  text-decoration-skip: none !important;
  text-underline-position: under !important;
}


/* Stage */


.leistungen-unterseite-stage-intro {
  position: absolute;
  top: 105px;
  left: 5%;
  font-size: 16px;
  line-height: 26px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  width: 28%;
  margin: 0;
  text-align: left;
  z-index: 1;
}


.leistungen-unterseite-stage-scroll-icon {
  left: 5%;
  z-index: 1;
}

.leistungen-unterseite-stage-picture-container {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  position: absolute;
  z-index: 0;
  top: 0;
} 

.leistungen-unterseite-stage-picture-container video {
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  object-fit: cover;
}

.leistungen-unterseite-stage-picture {
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

.leistungen-unterseite-stage-content-container {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
  animation-name: height-leistungen-stage;
  animation-delay: 1s;
  animation-duration: 3000ms;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes height-leistungen-stage {
  from {
    height: calc(var(--vh, 1vh) * 100);
  }

  to {
    height: calc(var(--vh, 1vh) * 70);
  }
}

.leistungen-unterseite-stage-content {
  width: 50%;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  text-align: center;
  animation-name: opacity;
  animation-delay: 400ms;
  animation-duration: 2s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  padding-top: 30px;
}


.leistungen-unterseite-stage-content h1 {
  font-family: headline;
  font-size: 40px;
  line-height: 44px;
  color: rgba(255,255,255,0.95);
}

.leistungen-unterseite-stage-content h1 span {
  text-decoration: underline;
  text-decoration-style: solid; 
  text-decoration-color: rgba(227,249,82,1.0);
  text-decoration-thickness: 4px;
}

.leistungen-unterseite-stage-overlay-blur {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
  opacity: 0;
  animation-name: opacity;
  animation-delay: 1s;
  animation-duration: 3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes opacity {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.leistungen-unterseite-stage-overlay-gradient-100 {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.leistungen-unterseite-stage-overlay-gradient-50 {
  height: 50%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
  z-index: 1;
}

.leistungen-unterseite-cards {
  width: 100%;
  height: auto;
  position: relative;
  padding: 0 5% 120px 5%;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.leistungen-unterseite-cards a {
  position: relative;
  width: 100%;
  height: calc(var(--vh, 1vh) * 70);
  border-radius: 10px;
  padding: 20px;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 600ms ease-in;
  -moz-transition: all 600ms ease-in;
  -ms-transition: all 600ms ease-in;
  -o-transition: all 600ms ease-in;
  transition: all 600ms ease-in;
  cursor: pointer;
  background-color: rgba(255,255,255,0.15);
}

.leistungen-unterseite-cards a:hover {
  background-color: rgba(255,255,255,0.5);
}

.leistungen-unterseite-cards-picture {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.leistungen-unterseite-cards-sternchen {
  width: 15px;
  position: relative;
  animation-name: spin;
  animation-duration: 10000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  opacity: 0.95;
  display: inline;
}

.leistungen-unterseite-cards a h3 {
  color: rgba(255,255,255,0.95);
  font-size: 20px;
  font-family: "proxima-nova";
  font-weight: 600;
  position: relative;
  margin-left: 10px;
  display: inline;
}

.leistungen-unterseite-cards-hashtag-container {
  display: flex;
  flex-flow: wrap;
  gap: 5px;
  justify-content: flex-start;
  width: 70%;
  position: relative;
  padding-top: 50px;
}

.leistungen-unterseite-cards-hashtag {
  color: rgba(0, 0, 0, 0.9);
  font-size: 16px;
  font-family: "proxima-nova";
  font-weight: 600;
  background-color: rgb(227, 249, 82);
  border-radius: 50px;
  padding: 10px 14px;
}

.leistungen-unterseite-cards a p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 17px;
  font-family: "proxima-nova";
  font-weight: 500;
  width: 30%;
  padding-top: 20px;
}
  
.leistungen-unterseite-cards-button {
  position: absolute;
  bottom: 20px;
}
  
.leistungen-unterseite-intro {
  width: 100%;
  height: auto;
  padding: 0 5% 150px 5%;
  background-color: rgba(0,0,0,1.00);
}

.leistungen-unterseite-intro-intro {
  font-size: 16px;
  line-height: 26px;
  font-family: proxima-nova, sans-serif;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  width: 35%;
  padding-top: 80px;
  padding-bottom: 140px;
  margin: 0;
}

.leistungen-unterseite-intro h2 {
  font-family: headline;
  font-size: 40px;
  line-height: 44px;
  color: rgba(255,255,255,0.95);
  width: 80%;
  margin: 0;
}

.leistungen-unterseite-intro p {
  font-family: "proxima-nova";
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  width: 80%;
  padding-top: 35px;
  text-align: left;
}

.leistungen-unterseite-vorteile-headline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0px;
  text-decoration: underline 2px rgba(255, 255, 255, 0.95);
  text-underline-position: under;
  padding-bottom: 40px;
  padding-left: 5%;
}
  
.leistungen-unterseite-vorteile {
  background-color: rgba(0,0,0,1.00) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 30px;
}

.leistungen-unterseite-team-intro {
  font-size: 16px;
  line-height: 26px;
  font-family: proxima-nova, sans-serif;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  width: 35%;
  padding-top: 80px;
  padding-bottom: 140px;
  margin: 0;
}

  
  
/* LEISTUNGEN UNTERSEITEN SUB 
  Beispiel: Webdesign, Grafikdesign ---------------------
*/


/* Stage */


.leistungen-unterseite-sub-stage {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.leistungen-unterseite-sub-stage h2 {
  position: absolute;
  left: 5%;
  top: 0;
  transform: translateY(105px); 
  font-size: 16px;
  line-height: 26px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.3);
  margin: 0;
  text-align: left;
  z-index: 1;
  max-width: 400px;
}



.leistungen-unterseite-sub-stage-scroll-icon {
  left: 5%;
  z-index: 5;
}


.leistungen-unterseite-sub-stage-content {
  width: 50%;
  text-align: center;
}

.leistungen-unterseite-sub-stage-content img {
  height: 125px;
  margin-bottom: 20px;
  width: auto;
}

#hero-frist {
  font-size: 16px;
  color: rgba(0,0,0,0.75);
  font-weight: 600;
  text-transform: uppercase;
	font-family: proxima-nova, sans-serif;
  padding-bottom: 15px;
}



.leistungen-unterseite-sub-stage-content h1 {
  font-family: headline;
  font-size: 40px;
  line-height: 44px;
  color: rgba(0,0,0,1.00);
  position: relative;
  z-index: 5;
}

.leistungen-unterseite-sub-stage-content h1 span {
  text-decoration: underline;
  text-decoration-style: solid; 
  text-decoration-color: rgba(227,249,82,1.0);
  text-decoration-thickness: 4px;
}

.leistungen-unterseite-sub-stage-content-hashtags {
  display: flex;
  flex-direction: row;
  column-gap: 5px;
  flex-wrap: wrap;
  row-gap: 5px;
  justify-content: center;
  width: 70%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 30px;
}

.leistungen-unterseite-sub-stage-content-hashtags p {
  color: rgba(0,0,0,0.90);
  font-size: 16px;
  font-family: "proxima-nova";
  font-weight: 600;
  background-color: rgba(227,249,82,1.0);
  border-radius: 50px;
  padding: 10px 14px;
}

.leistungen-unterseite-sub-stage-content-hashtags li {
  color: rgba(0,0,0,0.90);
  font-size: 16px;
  font-family: "proxima-nova";
  font-weight: 600;
  background-color: rgba(227,249,82,1.0);
  border-radius: 50px;
  padding: 10px 14px;
}

.leistungen-unterseite-sub-stage-content-hashtags a {
  color: rgba(0,0,0,0.90);
  font-size: 16px;
  font-family: "proxima-nova";
  font-weight: 600;
  background-color: rgba(227,249,82,1.0);
  border-radius: 50px;
  padding: 10px 14px;
}

/* Stage Background */

.leistungen-unterseite-sub-stage-background {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  position: absolute;
  z-index: 0;
  top: 0;
	left: 0;
  background-color: rgba(255,255,255,1.00);
}

.webdesign-body .leistungen-unterseite-sub-stage-background--webdesign {
  overflow: hidden;
  background-image: url("../images/leistungen/webdesign/video-stage-poster.jpg");
  background-image: image-set(
    url("../images/leistungen/webdesign/video-stage-poster.avif") type("image/avif"),
    url("../images/leistungen/webdesign/video-stage-poster.jpg") type("image/jpeg")
  );
  background-position: center;
  background-size: cover;
}

.leistungen-unterseite-sub-stage-background video {
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  object-fit: cover;
}

.webdesign-body .leistungen-unterseite-sub-stage-background--webdesign video {
  display: block;
  opacity: 0;
  position: relative;
  z-index: 1;
  transition: opacity 450ms ease-out;
}

.webdesign-body .leistungen-unterseite-sub-stage-background--webdesign.is-video-ready video {
  opacity: 1;
}

.webdesign-body .leistungen-unterseite-sub-stage-background--webdesign .leistungen-unterseite-sub-stage-overlay-blur,
.webdesign-body .leistungen-unterseite-sub-stage-background--webdesign .leistungen-unterseite-sub-stage-overlay-gradient-100,
.webdesign-body .leistungen-unterseite-sub-stage-background--webdesign .leistungen-unterseite-sub-stage-overlay-gradient-50 {
  pointer-events: none;
  z-index: 2;
}

.webdesign-body .leistungen-unterseite-sub-stage-content,
.webdesign-body .leistung-unterseite-breadcrumbs {
  position: relative;
  z-index: 3;
}

.webdesign-body .leistungen-unterseite-sub-stage h2 {
  z-index: 3;
}

@media (max-width: 766px) {
  .webdesign-body .leistungen-unterseite-sub-stage-background--webdesign {
    background-image: url("../images/leistungen/webdesign/video-stage-small-poster.jpg");
    background-image: image-set(
      url("../images/leistungen/webdesign/video-stage-small-poster.avif") type("image/avif"),
      url("../images/leistungen/webdesign/video-stage-small-poster.jpg") type("image/jpeg")
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  .webdesign-body .leistungen-unterseite-sub-stage-background--webdesign video {
    transition: none;
  }
}

.leistungen-unterseite-sub-stage-picture {
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  object-fit: cover;
}

.leistungen-unterseite-sub-stage-overlay-blur {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 0;
  opacity: 0;
  animation-name: opacity;
  animation-delay: 1s;
  animation-duration: 3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes opacity {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.leistungen-unterseite-sub-stage-overlay-gradient-100 {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.5) 100%);
  z-index: 0;
}

.leistungen-unterseite-sub-stage-overlay-gradient-100-dark {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
  z-index: 0;
}

.leistungen-unterseite-sub-stage-overlay-gradient-50 {
  height: 50%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
  z-index: 0;
}

.leistungen-unterseite-sub-stage-overlay-gradient-50-dark {
  height: 50%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
  z-index: 0;
}



/* Intro */

.leistungen-unterseite-sub-intro {
  width: 100%;
  height: auto;
  padding: 150px 0;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(255,255,255,1.00);
}

.leistungen-unterseite-sub-intro a {
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.leistungen-unterseite-sub-intro h3 {
  font-family: headline;
  font-size: 28px;
  line-height: 32px;
  color: rgba(0,0,0,0.95);
  margin: 0;
  width: 50%;
}

.leistungen-unterseite-sub-intro h2 {
  font-family: headline;
  font-size: 28px;
  line-height: 32px;
  color: rgba(0,0,0,0.95);
  margin: 0;
  width: 50%;
}

.leistungen-unterseite-sub-intro p {
  font-size: 16px;
  line-height: 26px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  color: rgba(0,0,0,0.7);
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  width: 50%;
}

.leistungen-unterseite-sub-intro-link-text {
  margin-top: 0px !important;
  background: no-repeat;
  border: none;
	font-size: 16px;
  line-height: 26px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  color: rgba(0,0,0,0.7);
	cursor: pointer;
	text-decoration: underline;
}

.leistungen-unterseite-sub-intro button {
  width: fit-content;
  margin-top: 40px;
}



/* Quickcheck */


.leistung-unterseite-sub-quickcheck-container {
	width: 100%;
  height: auto;
  background-color: rgba(255,255,255,1.0);
	padding: 20px 5% 100px 5%;
}


.quickcheck-wrapper {
  display: flex;
  background: rgb(247, 247, 247);
  border-radius: 10px;
  align-items: stretch;
	position: relative;
}

.quickcheck-box {
	position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  border-radius: 10px;
  min-height: 520px;
}

.quickcheck-intro-box {
      
}
 
.quickcheck-quiz-box {
	background-color: rgba(227,249,82,1.00);;
}

.quickcheck-intro-box h3 {
	font-size: 22px;
  line-height: 28px;
  font-family: "proxima-nova";
  font-weight: 600;
  color: rgba(0,0,0,0.95);
  padding-bottom: 20px;
	width: 50%;
}

.quickcheck-intro-box p {
	color: rgba(0,0,0,0.5);
  font-size: 13px;
  line-height: 19px;
  font-family: "proxima-nova";
  font-weight: 600;
  width: 50%;
}

.quickcheck-intro-box .quickcheck-button {
	display: inline-block;
	width: fit-content;
	position: absolute;
	bottom: 25px;
	left: 2rem;
}


/* Quiz-Stile */
.quickcheck-quiz-box h3 {
	font-size: 22px;
  line-height: 28px;
  font-family: "proxima-nova";
  font-weight: 600;
  color: rgba(0,0,0,0.95);
  padding-bottom: 20px;
  width: 50%;
}

.quickcheck-progress {
	color: rgba(0,0,0,0.5);
  font-size: 13px;
  line-height: 19px;
  font-family: "proxima-nova";
  font-weight: 600;
}

.quickcheck-step {
	display: none;
}

.quickcheck-step.active {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 200px;
}

.quickcheck-options {
	margin: 1rem 0;
}

.quickcheck-step p {
	position: absolute;
	bottom: 25px;
	color: rgba(0,0,0,0.5);
  font-size: 13px;
  line-height: 19px;
  font-family: "proxima-nova";
  font-weight: 600;
  width: 45%;
}

.quickcheck-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background-color: rgba(0,2,0,0.30);
  height: 35px;
  width: 35px;
  border-radius: 100%;
  background-image: url("../images/icon-close.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40%;
  z-index: 9;
	cursor: pointer;
	border: none;
}

.quickcheck-open-container {
	background-color: rgba(255,255,255,1.00);
	display: flex;
	justify-content: center;
}

.quickcheck-open {
  display: none;
}

.quickcheck-options button {
  color: rgba(0,0,0,0.95);
  font-size: 10px;
  font-family: "proxima-nova";
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  padding: 17px 20px;
  background-color: rgba(255,255,255,0.95) !important;
  text-decoration: none;
  cursor: pointer;
}
    

/* Ergebnis */
.quickcheck-result {
	text-align: left;
	margin-top: 2rem;
}

.quickcheck-result-text {
	font-family: "proxima-nova";
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: rgba(0,0,0,0.95);
	padding-bottom: 30px;
}

.quickcheck-result a,
.quickcheck-result button {
  color: rgb(0,0,0,0.90);
  font-size: 10px;
  font-family: "proxima-nova";
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 17px 20px;
  background-color: transparent;
  text-decoration: none;
  cursor: pointer;
  border-color: rgb(0,0,0,0.90);
  border-style: solid;
  border-width: 1px;
}



/* Vorteile */

.leistungen-unterseite-sub-vorteile {
  background-color: rgba(255,255,255,1.00);
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 30px;
}

.leistungen-unterseite-sub-vorteile-intro {
  font-size: 16px;
  line-height: 26px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  color: rgba(0,0,0,0.5);
  width: 33%;
  padding: 100px 0 100px 5%;
}

.leistungen-unterseite-sub-vorteile-intro span {
	color: rgba(0,0,0,0.95);
}

.leistungen-unterseite-sub-vorteile-slide {
  margin-left: -27%;
  width: 88%;
  background-color: rgba(26,26,26,1.0);
  padding: 20px;
  border-radius: 10px;
  position: relative;
  min-height: 400px;
  overflow: hidden;
	display: flex;
  flex-direction: column;
  justify-content: end;
}

.leistungen-unterseite-sub-vorteile-slide-video {
  width: 100%;
  height: 100%;
  border-radius: 10;
  object-fit: cover;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.4;
	display: none;
}

.leistungen-unterseite-sub-vorteile-slide-video-overlay-gradient-50 {
  height: 50%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  background: linear-gradient(to bottom, rgba(26,26,26,0) 0%,rgba(26,26,26,1) 100%);
  z-index: 1;
  left: 0;
	display: none;
}

.leistungen-unterseite-sub-vorteile-slide-number {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-family: "proxima-nova";
  font-weight: 600;
  z-index: 2;
  position: absolute;
  background-color: rgba(247,247,247,0.1);
  padding: 15px;
  aspect-ratio: 1 / 1;
  border-radius: 5px;
  top: 20px;
}

.leistungen-unterseite-sub-vorteile-slide h3 {
  color: rgba(255,255,255,0.95);
  font-size: 22px;
  line-height: 28px;
  font-family: "proxima-nova";
  font-weight: 600;
	padding-bottom: 10px;
}

.leistungen-unterseite-sub-vorteile-slide p {
	width: 75%;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 19px;
  font-family: "proxima-nova";
  font-weight: 600;
  padding-right: 20px;
}


/* Unterleistungen */

.leistungen-unterseite-sub-unterleistungen {
  width: 100%;
  background-color: rgba(255,255,255,1.00);
  padding: 100px 5% 100px 5%;
}

.leistungen-unterseite-sub-unterleistungen h2 {
  font-family: headline;
  font-size: 40px;
  line-height: 44px;
  color: rgba(0,0,0,1.00);
  width: 80%;
}

.leistungen-unterseite-sub-unterleistungen h4 {
  font-family: headline;
  font-size: 40px;
  line-height: 44px;
  color: rgba(0,0,0,1.00);
  width: 80%;
}

.leistungen-unterseite-sub-unterleistungen-info {
  color: rgba(0,0,0,0.5);
  font-size: 16px;
  font-family: "proxima-nova";
  font-weight: 600;
  padding-top: 55px;
  padding-bottom: 25px;
  width: 25%;
  line-height: 26px;
}


/* Unterleistungen-Panel */

.leistungen-unterseite-sub-unterleistungen-panels {
  padding-top: 20px;
}

.panels {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.panel-button {
  font-family: "proxima-nova";
  font-size: 16px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: underline;
  text-decoration-style: solid; 
  text-decoration-color: rgba(0,0,0,1.00);
  text-decoration-thickness: 2px;
  text-decoration-skip: none;
  text-underline-position: under;
  color: rgba(0,0,0,1.00);
  font-weight: 600;
  text-transform: uppercase;
  height: auto;
  padding-bottom: 6px;
  margin-right: 20px;
  opacity: 0.4;
  margin-bottom: 10px;
  border: none;
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  -webkit-transition: all 300ms ease-in;
  -moz-transition: all 300ms ease-in;
  -ms-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}

.panel-button:hover {
  opacity: 0.8;
}

.panel-button.active {
  opacity: 1;
}

.panel-content {
  display: none;
  border: none;
}

.panel-content.active {
  display: block;
}


.leistungen-unterseite-sub-unterleistungen-panels-content {
  width: 80%;
  padding-top: 15px;
  text-align: left;
}

.leistungen-unterseite-sub-unterleistungen-panels-content p {
  font-family: "proxima-nova";
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: rgba(0, 0, 0, 1);
}



/* Textblock */

.leistungen-unterseite-sub-text {
  width: 100%;
  background-color: rgba(255,255,255,1.00);
  padding: 100px 5% 100px 5%;
}

.leistungen-unterseite-sub-text h2 {
  font-family: headline;
  font-size: 40px;
  line-height: 44px;
  color: rgba(0,0,0,1.00);
  width: 80%;
}

.leistungen-unterseite-sub-text h4 {
  font-family: headline;
  font-size: 40px;
  line-height: 44px;
  color: rgba(0,0,0,1.00);
  width: 80%;
}

.leistungen-unterseite-sub-text-info {
  color: rgba(0,0,0,0.5);
  font-size: 16px;
  font-family: "proxima-nova";
  font-weight: 600;
  padding-top: 55px;
  padding-bottom: 25px;
  width: 25% !important;
  line-height: 26px;
}

.leistungen-unterseite-sub-text h3 {
  font-family: "proxima-nova";
  font-size: 16px;
  overflow: hidden;
  text-decoration: underline;
  text-decoration-style: solid; 
  text-decoration-color: rgba(0,0,0,1.00);
  text-decoration-thickness: 2px;
  text-decoration-skip: none;
  text-underline-position: under;
  color: rgba(0,0,0,1.00);
  font-weight: 600;
  text-transform: uppercase;
  height: auto;
  padding-bottom: 7px;
  margin-right: 20px;
  opacity: 1;
  margin-bottom: 10px;
  border: none;
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.leistungen-unterseite-sub-text h5 {
  font-family: "proxima-nova";
  font-size: 16px;
  overflow: hidden;
  text-decoration: underline;
  text-decoration-style: solid; 
  text-decoration-color: rgba(0,0,0,1.00);
  text-decoration-thickness: 2px;
  text-decoration-skip: none;
  text-underline-position: under;
  color: rgba(0,0,0,1.00);
  font-weight: 600;
  text-transform: uppercase;
  height: auto;
  padding-bottom: 7px;
  margin-right: 20px;
  opacity: 1;
  margin-bottom: 10px;
  border: none;
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.leistungen-unterseite-sub-text p {
  font-family: "proxima-nova";
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
	width: 65%;
}


/* Shortcuts Dark */

.leistungen-unterseite-sub-bfsg-shortcuts-dark-container {
  width: 100%;
  background-color: rgba(0,0,0,1.00);
  padding: 0px 5% 100px 5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 6px;
}


.leistungen-unterseite-sub-bfsg-shortcuts-dark-whitepaper {
  width: calc(50% - 3px);
  height: 375px;
  background-color: rgba(26,26,26,1.00);
  border-radius: 10px;
  padding: 25px;
  position: relative;
}

.leistungen-unterseite-sub-bfsg-shortcuts-dark-whitepaper-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
}

.leistungen-unterseite-sub-bfsg-shortcuts-dark-whitepaper-content h2 {
  font-size: 22px;
  line-height: 28px;
  font-family: "proxima-nova";
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  padding-bottom: 20px;
}

.leistungen-unterseite-sub-bfsg-shortcuts-dark-whitepaper-content p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  line-height: 19px;
  font-family: "proxima-nova";
  font-weight: 600;
  width: 45%;
}

.leistungen-unterseite-sub-bfsg-shortcuts--darkwhitepaper-content-button {
  position: absolute;
  bottom: 25px;
  right: 25px;
}

.leistungen-unterseite-sub-bfsg-shortcuts-dark-video {
  width: calc(50% - 3px);
  height: 375px;
  border-radius: 10px;
}

.leistungen-unterseite-sub-bfsg-shortcuts-dark-video video {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.leistungen-unterseite-sub-bfsg-shortcuts-dark-video img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.leistungen-unterseite-sub-bfsg-shortcuts-dark-whitepaper-content-button {
  position: absolute;
  bottom: 25px;
  right: 25px;
}

/* Textblock Dark */

.leistungen-unterseite-sub-text-dark {
  width: 100%;
  background-color: rgba(0,0,0,1.00);
  padding: 100px 5% 100px 5%;
}

.leistungen-unterseite-sub-text-dark h2 {
  font-family: headline;
  font-size: 40px;
  line-height: 44px;
  color: rgba(255,255,255,0.95);
  width: 80%;
}

.leistungen-unterseite-sub-text-dark-info {
  color: rgba(255,255,255,0.4);
  font-size: 16px;
  font-family: "proxima-nova";
  font-weight: 600;
  padding-top: 55px;
  padding-bottom: 25px;
  width: 25%;
  line-height: 26px;
}

.leistungen-unterseite-sub-text-dark h3 {
  font-family: "proxima-nova";
  font-size: 16px;
  overflow: hidden;
  text-decoration: underline;
  text-decoration-style: solid; 
  text-decoration-color: rgba(255,255,255,0.70);
  text-decoration-thickness: 2px;
  text-decoration-skip: none;
  text-underline-position: under;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  text-transform: uppercase;
  height: auto;
  padding-bottom: 7px;
  margin-right: 20px;
  opacity: 1;
  margin-bottom: 10px;
  border: none;
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.leistungen-unterseite-sub-text-dark p {
  font-family: "proxima-nova";
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  width: 65%;
}


	


/* Kundenstimmen */

.leistungen-unterseite-sub-kundenstimmen {
  width: 100%;
  /*background-color: rgba(255,255,255,1.00);*/
  padding: 100px 5% 200px 5%;
  background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);

}

.leistungen-unterseite-sub-kundenstimmen-intro {
  font-size: 16px;
  line-height: 26px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  color: rgba(0,0,0,0.5);
  width: 28%;
}

.leistungen-unterseite-sub-kundenstimmen-intro span {
	color: rgba(0,0,0,0.95);
}

.leistungen-unterseite-sub-kundenstimmen-content {
  display: flex;
  column-gap: 15px;
  padding-top: 100px;
}

.leistungen-unterseite-sub-kundenstimmen-content a {
  width: calc(50% - 7.5px);
  height: 380px;
  background-color: rgba(227,249,82,1.00);
  border-radius: 10px;
  padding: 20px;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

.leistungen-unterseite-sub-kundenstimmen-content-stars {
  width: auto;
}

.leistungen-unterseite-sub-kundenstimmen-content-stars img {
  height: 10px;
  margin-right: 5px;
  width: auto;
}

.leistungen-unterseite-sub-kundenstimmen-content a p {
  color: rgba(0,0,0,0.95);
  font-size: 22px;
  line-height: 28px;
  font-family: "proxima-nova";
  font-weight: 600;
  position: absolute;
  bottom: 50px;
  padding-right: 20px;
  z-index: 2;
}

.leistungen-unterseite-sub-kundenstimmen-content-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 130px;
  height: auto;
}


.leistungen-unterseite-sub-kundenstimmen-content-name {
  color: rgba(0,0,0,0.95);
  font-size: 13px;
  font-family: "proxima-nova";
  font-weight: 600;
  display: inline-block;
  z-index: 2;
  position: absolute;
  bottom: 20px;
}

.leistungen-unterseite-sub-kundenstimmen-content-name span {
  color: rgba(0,0,0,0.5) !important;
  display: inline-block;
  margin-left: 10px;
}

/* Kundenstimmen Dark  */

.leistungen-unterseite-sub-kundenstimmen-dark {
  width: 100%;
  /*background-color: rgba(255,255,255,1.00);*/
  padding: 150px 5% 0px 5%;
  background: rgba(0,0,0,1.00);

}

.leistungen-unterseite-sub-kundenstimmen-dark-intro {
  font-size: 16px;
  line-height: 26px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  width: 28%;
}




/* Steps */


.leistungen-unterseite-sub-steps {
  width: 100%;
  height: 100vh;
  position: relative;
  scroll-snap-align: start;
}

.leistungen-unterseite-sub-steps-video {
  position: fixed;
  z-index: -1;
  height: calc(100vh - 50px);
  width: 100%;
  top: 50px;
}

.leistungen-unterseite-sub-steps-video video {
  object-fit: cover;
  height: 100%;
  width: 100%;
}


.leistungen-unterseite-sub-steps-video-overlay-gradient-100 {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.5) 100%);
  z-index: 2;
}

.leistungen-unterseite-sub-steps-video-overlay-gradient-50 {
  height: 50%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
  z-index: 1;
}


/* Sections */

.sections-container {
  /*margin-top: 50px;*/
}

.section {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  clip-path: inset(0);
  /*scroll-snap-align: start;*/
}

.section .fixed {
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  text-align: center;
}
.section .white {
  color: #fff;
}

.section:nth-child(1) {
  color: #000;
  margin-top: 0;
  z-index: 1;
}
.section:nth-child(1) .fixed {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.section:nth-child(2) {
  color: #fff;
  margin-top: 100vh;
  z-index: 2;
  /*
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);*/
}
.section:nth-child(2) .fixed {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);

}

.section:nth-child(3) {
  color: #fff;
  margin-top: 200vh;
  z-index: 3;
}
.section:nth-child(3) .fixed {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}


.section:nth-child(4) {
  color: #fff;
  margin-top: 300vh;
  z-index: 4;
}
.section:nth-child(4) .fixed {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}


.section:nth-child(5) {
  color: #fff;
  margin-top: 400vh;
  z-index: 5;
}
.section:nth-child(5) .fixed {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}


.leistungen-unterseite-sub-steps-headline-intro {
  position: fixed;
  top: 80px;
  left: 5%;
  font-size: 16px;
  line-height: 26px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  color: rgba(0,0,0,0.5);
  width: 28%;
  margin: 0;
  text-align: left;
}

.leistungen-unterseite-sub-steps-headline-intro span {
	color: rgba(0,0,0,0.95);
}


.leistungen-unterseite-sub-steps-stage-1-headline {
  color: rgba(0,0,0,0.95);
  font-family: headline;
  font-size: 40px;
  line-height: 44px;
  text-align: center;
  width: 65vw;
  margin-left: auto;
  margin-right: auto;
}

.leistungen-unterseite-sub-steps-stage-1-info {
  color: rgba(0,0,0,0.5);
  font-size: 13px;
  line-height: 19px;
  font-family: "proxima-nova";
  font-weight: 600;
  padding-top: 40px;
  width: 35%;
  margin-left: auto;
  margin-right: auto;
}


.leistungen-unterseite-sub-section-stage-2 {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-color: rgba(255,255,255,0.1);
}



.leistungen-unterseite-sub-section-stage-2-headline {
  width: 40%;
  display: flex;
  flex-direction: row;
  column-gap: 5px;
  flex-wrap: wrap;
  row-gap: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: center;
  text-align: center;
	font-family: headline;
  font-size: 28px;
  line-height: 32px;
  color: rgba(0,0,0,0.95);
	z-index: 2;
}

.leistungen-unterseite-sub-section-stage-2-headline span {
	text-decoration: underline;
  text-decoration-style: solid; 
  text-decoration-color: rgba(227,249,82,1.0);
  text-decoration-thickness: 4px;
}


.leistungen-unterseite-sub-section-stage-2-headline p {
  font-family: headline;
  font-size: 28px;
  line-height: 32px;
  color: rgba(0,0,0,0.95);
}

.leistungen-unterseite-sub-section-stage-2-headline p span {
  text-decoration: underline;
  text-decoration-style: solid; 
  text-decoration-color: rgba(227,249,82,1.0);
  text-decoration-thickness: 4px;
}

.leistungen-unterseite-sub-section-stage-2-button {
  position: fixed;
  left: 5%;
  bottom: 40px;
}

.leistungen-unterseite-sub-section-stage-2-content {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: center;
  width: 30%;
  flex-direction: column;
  align-items: center;
}

.leistungen-unterseite-sub-section-stage-2-content-tag {
  color: rgba(0,0,0,0.90);
  font-size: 16px;
  font-family: "proxima-nova";
  font-weight: 600;
  background-color: rgba(227,249,82,1.0);
  border-radius: 50px;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leistungen-unterseite-sub-section-stage-2-content p {
  color: rgba(0,0,0,0.5);
  font-size: 13px;
  line-height: 19px;
  font-family: "proxima-nova";
  font-weight: 600;
  padding-top: 230px;
}

.leistungen-unterseite-sub-section-stage-2-content p a {
  text-decoration: underline;
  color: rgba(0,0,0,1.0);
}

/* Floating */
.leistungen-unterseite-sub-floating {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: rgba(0,0,0,1.00);
  margin-top: 400vh;
  overflow: hidden;
}

.leistungen-unterseite-sub-floating-intro {
  position: absolute;
  top: 80px;
  left: 5%;
  font-size: 16px;
  line-height: 26px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  width: 28%;
  margin: 0;
  text-align: left;
}

.leistungen-unterseite-sub-floating-content {
  width: 40%;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: center;
  text-align: center;
  z-index: 3;
}

.leistungen-unterseite-sub-floating-content p {
  font-family: headline;
  font-size: 28px;
  line-height: 32px;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
}



.leistungen-floating-animatedtext {
  display: grid;
}

.leistungen-floating-animatedtext-sizer,
.leistungen-floating-animatedtext-static,
.leistungen-floating-animatedtext-dynamic {
  grid-area: 1 / 1;
}

.leistungen-floating-animatedtext-sizer {
  visibility: hidden;
  pointer-events: none;
}

.leistungen-floating-animatedtext-static,
.leistungen-floating-animatedtext-dynamic {
  align-self: center;
}

.leistungen-floating-animatedtext-dynamic {
  display: none;
}

.leistungen-floating-animatedtext--is-enhanced .leistungen-floating-animatedtext-static {
  visibility: hidden;
}

.leistungen-floating-animatedtext--is-enhanced .leistungen-floating-animatedtext-dynamic {
  display: inline;
}

.leistungen-floating-animatedtext--is-enhanced:not(.leistungen-floating-animatedtext--is-static) .leistungen-floating-animatedtext-dynamic::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.88em;
  margin-left: 0.08em;
  transform: translateY(0.08em);
  background-color: currentColor;
  animation: leistungenFloatingAnimatedTextCaret 1s steps(1, end) infinite;
}

.leistungen-floating-animatedtext-accessible,
.leistungen-floating-animatedtext-source {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@keyframes leistungenFloatingAnimatedTextCaret {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .leistungen-floating-animatedtext-dynamic::after {
    animation: none;
  }
}

.leistungen-unterseite-sub-floating-button {
  position: absolute;
  left: 5%;
  bottom: 40px;
  z-index: 3;
}


.leistungen-unterseite-sub-floating-overlay-gradient-50 {
  height: 50%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
  z-index: 1;
}



/* Floating Background */

.floatingbg-container {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  animation-delay: 200ms;
}

.floatingbg-image-basic {
  height: 230px;
  width: auto;
  animation-name: floatingbg-image;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  position: absolute;
  opacity: 0.95;
  border-radius: 5px;
  /*-webkit-box-shadow: 15px 15px 25px 0 rgba(0,0,0,0.3);
  box-shadow: 15px 15px 25px 0 rgba(0,0,0,0.3);*/
}

.floatingbg-image-1 {
  animation-duration: 25s;
  animation-delay: 0s;
  animation-fill-mode: backwards;
  right: -10%;
}

.floatingbg-image-2 {
  animation-duration: 15s;
  animation-delay: -2s;
  animation-fill-mode: backwards;
  right: 10%;
}

.floatingbg-image-3 {
  animation-duration: 20s;
  animation-delay: 1s;
  animation-fill-mode: backwards;
  right: 18%;
}

.floatingbg-image-4 {
  animation-duration: 30s;
  animation-delay: 5s;
  animation-fill-mode: backwards;
  right: 15%;
}

.floatingbg-image-5 {
  animation-duration: 12s;
  animation-delay: 1s;
  animation-fill-mode: backwards;
  right: 30%;
}

.floatingbg-image-6 {
  animation-duration: 20s;
  animation-delay: 5s;
  animation-fill-mode: backwards;
  right: 42%;
}

.floatingbg-image-7 {
  animation-duration: 35s;
  animation-delay: 0s;
  animation-fill-mode: backwards;
  right: 46%;
}

.floatingbg-image-8 {
  animation-duration: 15s;
  animation-delay: 15s;
  animation-fill-mode: backwards;
  right: 34%;
}




@-webkit-keyframes floatingbg-image {
  0% {
    top: 100vh;    
  }
  80% {
    top: -230px;    
  }
  100% {
    top: -230px;
  }
}



/* weitere leistungen */

.leistungen-unterseite-sub-weitere-leistungen {
  width: 100%;
  background-color: rgba(0,0,0,1.00);
  padding: 50px 5% 150px 5%;
}




.leistungen-unterseite-sub-weitere-leistungen-intro {
  font-size: 16px;
  line-height: 26px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  width: 35%;
  padding-top: 80px;
  padding-bottom: 140px;
  margin: 0;
}

.leistungen-unterseite-sub-weitere-leistungen-headline {
  font-family: "proxima-nova";
  font-size: 16px;
  color: rgba(255,255,255,0.95);
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  text-decoration: underline;
  text-decoration-style: solid; 
  text-decoration-color: rgba(255,255,255,0.95);
  text-decoration-thickness: 2px;
  text-decoration-skip: none;
  text-underline-position: under;
  padding-bottom: 40px;
}


.leistungen-unterseite-sub-weitere-leistungen-tabs {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 5px;
}

.leistungen-unterseite-sub-weitere-leistungen-tabs a {
  position: relative;
  width: calc(33.33333% - 3.333333px);
  height: 235px;
  border-radius: 10px;
  padding: 20px;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 600ms ease-in;
  -moz-transition: all 600ms ease-in;
  -ms-transition: all 600ms ease-in;
  -o-transition: all 600ms ease-in;
  transition: all 600ms ease-in;
  cursor: pointer;
  background-color: rgba(255,255,255,0.15);

}

.leistungen-unterseite-sub-weitere-leistungen-tabs a img {
  width: 15px;
  position: absolute;
  left: 20px;
  top: 20px;
  animation-name: spin;
  animation-duration: 10000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  opacity: 0.95;
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

.leistungen-unterseite-sub-weitere-leistungen-tabs h3 {
  color: rgba(255,255,255,0.95);
  font-size: 20px;
  font-family: "proxima-nova";
  font-weight: 600;
  position: absolute;
  margin-left: 30px;
  margin-top: -3px;
}

.leistungen-unterseite-sub-weitere-leistungen-tabs a p {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  line-height: 17px;
  font-family: "proxima-nova";
  font-weight: 500;
  position: absolute;
  bottom: 20px;
  width: 80%;
}


.leistungen-unterseite-sub-weitere-leistungen-tabs a:hover {
  background-color: rgba(255,255,255,0.5);
}

.leistungen-unterseite-sub-weitere-leistungen-buttons {
  margin-top: 20px;
  font-size: 0px;
  padding-top: 100px;
}

.leistungen-unterseite-sub-weitere-leistungen-tabs span {
  position: relative;
  width: calc(33.33333% - 3.333333px);
  height: 235px;
  border-radius: 10px;
  padding: 20px;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 600ms ease-in;
  -moz-transition: all 600ms ease-in;
  -ms-transition: all 600ms ease-in;
  -o-transition: all 600ms ease-in;
  transition: all 600ms ease-in;
  cursor: pointer;
  background-color: rgba(255,255,255,0.15);

}

.leistungen-unterseite-sub-weitere-leistungen-tabs span img {
  width: 15px;
  position: absolute;
  left: 20px;
  top: 20px;
  animation-name: spin;
  animation-duration: 10000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  opacity: 0.95;
}

.leistungen-unterseite-sub-weitere-leistungen-tabs span p {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  line-height: 17px;
  font-family: "proxima-nova";
  font-weight: 500;
  position: absolute;
  bottom: 20px;
  width: 80%;
}



/* Referenzen */

.leistungen-unterseite-sub-referenzen {
  width: 100%;
  background-color: rgba(0,0,0,1.00);
  padding: 0px 0 100px 0;
}


.leistungen-unterseite-sub-referenzen-intro {
  font-size: 16px;
  line-height: 26px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  width: 35%;
  padding-left: 5%;
  padding-bottom: 100px;
  margin: 0;
}

.leistungen-unterseite-sub-referenzen-swiper {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 30px;
}

.swiper-slide:link {
  color: rgba(255,255,255,0.8) !important;
}

.product__description {
  color: rgba(255,255,255,0.80) !important;
}

/* Agency */

.leistungen-unterseite-sub-agency {
  background-color: rgba(0,0,0,1.00);
  padding: 0 5% 150px 5%;
}

.leistungen-unterseite-sub-agency h2 {
  font-family: headline;
  font-size: 40px;
  line-height: 44px;
  color: rgba(255,255,255,0.95);
  width: 80%;
  margin: 0;
}

.leistungen-unterseite-sub-agency h4 {
  font-family: headline;
  font-size: 40px;
  line-height: 44px;
  color: rgba(255,255,255,0.95);
  width: 80%;
  margin: 0;
}

.leistungen-unterseite-sub-agency p {
  font-family: "proxima-nova";
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  width: 80%;
  padding-top: 35px;
  text-align: left;
}


.leistungen-unterseite-sub-agency-buttons {
  font-size: 0px;
  padding-top: 80px;
}


/* Ansprechpartner - Team */

.leistungen-unterseite-sub-team {
  width: 100%;
  height: auto;
  background-color: rgba(0,0,0,1.00);
  padding: 0 5% 150px 5%;
}

.leistungen-unterseite-sub-team-headline {
	font-family: "proxima-nova";
  font-size: 16px;
  color: rgba(255,255,255,0.95);
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  text-decoration: underline;
  text-decoration-style: solid; 
  text-decoration-color: rgba(255,255,255,0.95);
  text-decoration-thickness: 2px;
  text-decoration-skip: none;
  text-underline-position: under;
  padding-bottom: 40px;
}

.leistungen-unterseite-sub-team-container {
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
}

.leistungen-unterseite-sub-team-content {
  position: relative;
  width: 42.5%;
  left: 52.5%;
}

.leistungen-unterseite-sub-team-content h3 {
  font-family: headline;
  font-size: 28px;
  line-height: 32px;
  color: rgba(255,255,255,0.95);
  width: 95%;
  padding-bottom: 20px;
}

.leistungen-unterseite-sub-team-content h3 span {
  text-decoration: underline;
  text-decoration-style: solid; 
  text-decoration-color: rgba(227,249,82,1.0);
  text-decoration-thickness: 4px;  
}

.leistungen-unterseite-sub-team-content h4 {
  font-family: headline;
  font-size: 28px;
  line-height: 32px;
  color: rgba(255,255,255,0.95);
  width: 95%;
  padding-bottom: 20px;
}

.leistungen-unterseite-sub-team-content h4 span {
  text-decoration: underline;
  text-decoration-style: solid; 
  text-decoration-color: rgba(227,249,82,1.0);
  text-decoration-thickness: 4px;  
}

.leistungen-unterseite-sub-team-content p {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  line-height: 17px;
  font-family: "proxima-nova";
  font-weight: 500;
  width: 60%;
  padding-bottom: 45px;
}

.leistungen-unterseite-sub-team-content-headline {
  font-family: "proxima-nova";
  font-size: 16px;
  color: rgba(255,255,255,0.95);
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  text-decoration: underline;
  text-decoration-style: solid; 
  text-decoration-color: rgba(255,255,255,0.95);
  text-decoration-thickness: 2px;
  text-decoration-skip: none;
  text-underline-position: under;
  padding-bottom: 15px;
}

.leistungen-unterseite-sub-team-content-buttons {
  display: flex;
  flex-direction: column;
}



.leistungen-unterseite-sub-team-content-button {
  padding: 10px 0px;
  background-color: rgba(0,0,0,0) !important;
  
  color: rgba(255,255,255,0.95);
  font-size: 10px;
  font-family: "proxima-nova";
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  backdrop-filter: blur(80px);
  -webkit-backdrop-filter: blur(80px);
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}

.leistungen-unterseite-sub-team-content-buttons-termin {
  font-size: 0px;
  padding-top: 80px;
  position: absolute;
  bottom: 0px;
}


.leistungen-unterseite-sub-team-picture {
  width: 47.5%;
  display: flex;
  align-content: center;
  align-items: center;
  right: 42.5%;
  position: relative;
}


.leistungen-unterseite-sub-team-picture img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Kundenlogos */

.leistungen-unterseite-sub-logos {
  background-color: rgba(0,0,0,1.00) !important;
  margin: 0;
  padding-top: 50px;
  padding-bottom: 70px;
}




  
/* FAQ */

.leistungen-unterseite-sub-faq-container {
  padding: 100px 5% 35px 5%;
  width: 100%;
  background-color: rgba(0,0,0,1.00);
}
/*
.leistungen-unterseite-sub-faq-container h2 {
  font-family: headline;
  font-size: 40px;
  line-height: 44px;
  color: rgba(255,255,255,0.95);
  width: 80%;
}

*/

.leistungen-unterseite-sub-faq-container-headline {
  width: 35%;
  padding-bottom: 100px;
  margin: 0;
	padding-top: 55px;
}

.leistungen-unterseite-sub-faq-container-headline h2 {
  font-size: 16px;
  line-height: 26px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  display: inline;
}

.leistungen-unterseite-sub-faq-container-headline p {
  font-size: 16px;
  line-height: 26px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  display: inline;
}

.leistungen-unterseite-sub-faq-accordion {
  display: block !important;
}

.leistungen-unterseite-sub-faq-accordion-headline {
  color: rgba(255,255,255,0.95) !important;
  border-bottom-color: rgba(255,255,255,0.5) !important;
}

.leistungen-unterseite-sub-faq-accordion-headline::after {
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255,255,255,0.5) !important;
  border-bottom: 2px solid rgba(255,255,255,0.5) !important;
  position: absolute;
  left: 0px;
  content: " ";
  top: 25px;
  transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.leistungen-unterseite-sub-faq-accordion-content {
  color: rgba(255,255,255,0.7) !important;
  font-family: "proxima-nova";
}

.leistungen-unterseite-sub-faq-accordion-content-headline {
  margin: 0;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  padding-bottom: 30px;
}

.leistungen-unterseite-sub-faq-accordion button,
.leistungen-unterseite-sub-faq-accordion h3.leistungen-unterseite-sub-faq-accordion-headline {
  background: none;
  border: none;
  width: 100%;
  display: block;
  cursor: pointer;
  user-select: none;
  border-bottom-style: solid;
  border-bottom-color: rgba(0,0,0,1.00);
  border-bottom-width: 0px;
  padding-bottom: 4px;
  padding-top: 15px;
  padding-left: 20px;
  text-align: left;
	font-size: 22px;
  line-height: 28px;
  font-family: "proxima-nova";
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin: 0;
}

.leistungen-unterseite-sub-faq-accordion button:hover,
.leistungen-unterseite-sub-faq-accordion h3.leistungen-unterseite-sub-faq-accordion-headline:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #fff;
}

.leistungen-unterseite-sub-faq-accordion button::after {
  /* Stile für das Pseudo-Element bleiben gleich */
}



/* Vorteile Agency */

.leistungen-unterseite-sub-vorteile-agency {
  background-color: rgba(0,0,0,1.00);
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 30px;
  padding-top: 100px;
}

.leistungen-unterseite-sub-vorteile-agency h2 {
  font-family: "proxima-nova";
  font-size: 16px;
  color: rgba(227,249,82,0.95);
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  text-decoration: underline;
  text-decoration-style: solid; 
  text-decoration-color: rgba(227,249,82,0.95);
  text-decoration-thickness: 2px;
  text-decoration-skip: none;
  text-underline-position: under;
  padding-bottom: 60px;
  padding-left: 5%;
}

.leistungen-unterseite-sub-vorteile-agency h4 {
  font-family: "proxima-nova";
  font-size: 16px;
  color: rgba(227,249,82,0.95);
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  text-decoration: underline;
  text-decoration-style: solid; 
  text-decoration-color: rgba(227,249,82,0.95);
  text-decoration-thickness: 2px;
  text-decoration-skip: none;
  text-underline-position: under;
  padding-bottom: 60px;
  padding-left: 5%;
}

.leistungen-unterseite-sub-vorteile-agency-slide {
  margin-left: -27%;
  width: 88%;
  background-color: rgba(227,249,82,1);
  padding: 20px;
  border-radius: 10px;
  position: relative;
  min-height: 400px;
  overflow: hidden;
}


.leistungen-unterseite-sub-vorteile-agency-slide-number {
  color: rgba(0,0,0,0.5);
  font-size: 13px;
  font-family: "proxima-nova";
  font-weight: 500;
  display: inline-block;
  margin-right: 10px;
  z-index: 2;
  position: relative;
}

.leistungen-unterseite-sub-vorteile-agency-slide h3 {
  color: rgba(0,0,0,0.8);
  font-size: 13px;
  font-family: "proxima-nova";
  font-weight: 500;
  display: inline-block;
  z-index: 2;
  position: relative;
}

.leistungen-unterseite-sub-vorteile-agency-slide p {
  color: rgba(0,0,0,0.95);
  font-size: 22px;
  line-height: 28px;
  font-family: "proxima-nova";
  font-weight: 600;
  position: absolute;
  bottom: 20px;
  padding-right: 20px;
  z-index: 2;
}



/* BFSG Kacheln */

.leistungen-unterseite-sub-bfsk-kacheln-container {
  width: 100%;
  background-color: rgba(255,255,255,1.00);
  padding: 100px 5% 100px 5%;
}

.leistungen-unterseite-sub-bfsk-kacheln-subtitel {
  font-size: 16px;
  line-height: 26px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  color: rgba(0,0,0,0.5);
  width: 28%;
  margin-bottom: 100px;
}

.leistungen-unterseite-sub-bfsk-kacheln-container h2 {
  font-size: 16px;
  color: rgba(0,0,0,0.95);
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  text-decoration: underline;
  text-decoration-style: solid; 
  text-decoration-color: rgba(0,0,0,0.95);
  text-decoration-thickness: 2px;
  text-decoration-skip: none;
  text-underline-position: under;
  padding-bottom: 40px;
	font-family: "proxima-nova";
}


.leistungen-unterseite-sub-bfsk-kacheln {
  width: 100%;
}

.leistungen-unterseite-sub-bfsk-kacheln-big {
  width: 100%;
  height: auto;
  background-color: rgba(92,222,62,0.15);
  border-radius: 10px;
  padding: 25px;
  background-image: url("../images/icon-check-green.svg");
  background-size: auto 25px;
  background-position: 25px 25px;
  background-repeat: no-repeat;
  margin-bottom: 4px;
}

.leistungen-unterseite-sub-bfsk-kacheln-big h3 {
  font-size: 22px;
  line-height: 28px;
  font-family: "proxima-nova";
  font-weight: 600;
  padding-left: 55px;
}

.leistungen-unterseite-sub-bfsk-kacheln-big p {
  color: rgba(0,0,0,0.6);
  font-size: 13px;
  line-height: 19px;
  font-family: "proxima-nova";
  font-weight: 600;
  width: 60%;
  padding-top: 60px;
  padding-bottom: 60px;
}


.leistungen-unterseite-sub-bfsk-kacheln-small {
  width: calc(33.33333% - 3.333333px);
  height: 245px;
  border-radius: 10px;
  padding: 25px;
  display: inline-block;
  background-color: rgba(247,247,247,1.0);
  position: relative;
}


.leistungen-unterseite-sub-bfsk-kacheln-small img {
  width: 15px;
  animation-name: spin;
  animation-duration: 10000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  opacity: 0.85;
  position: absolute;
  left: 25px;
  top: 29px;
}

.leistungen-unterseite-sub-bfsk-kacheln-small h3 {
  font-size: 22px;
  font-family: "proxima-nova";
  font-weight: 600;
  padding-left: 30px;
}

.leistungen-unterseite-sub-bfsk-kacheln-small p {
  color: rgba(0,0,0,0.5);
  font-size: 13px;
  line-height: 19px;
  font-family: "proxima-nova";
  font-weight: 600;
  width: 80%;
  position: absolute;
  bottom: 25px;
  left: 25px;
}



.leistungen-unterseite-sub-bfsg-shortcuts-container {
  width: 100%;
  background-color: rgba(255,255,255,1.00);
  padding: 100px 5% 100px 5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 6px;
}

.leistungen-unterseite-sub-bfsg-shortcuts-countdown {
  width: calc(50% - 3px);
  height: 375px;
  background-color: rgba(26,26,26,1.0);
  border-radius: 10px;
  padding: 25px;
  position: relative;
}

#countdown {
  display: flex;
  gap: 40px;
}

.time-box {

}

.time-box span {
  font-family: headline;
  font-size: 52px;
  display: block;
  color: rgba(92,222,62,1);
}

.label {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-family: "proxima-nova";
  font-weight: 600;
}

.leistungen-unterseite-sub-bfsg-shortcuts-countdown-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
}

.leistungen-unterseite-sub-bfsg-shortcuts-countdown-content h2 {
  font-size: 22px;
  line-height: 28px;
  font-family: "proxima-nova";
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  padding-bottom: 20px;
}

.leistungen-unterseite-sub-bfsg-shortcuts-countdown-content p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  line-height: 19px;
  font-family: "proxima-nova";
  font-weight: 600;
  width: 50%;
}

.leistungen-unterseite-sub-bfsg-shortcuts-countdown-content-button {
  position: absolute;
  bottom: 25px;
  right: 25px;
}


.leistungen-unterseite-sub-bfsg-shortcuts-whitepaper {
  width: calc(50% - 3px);
  height: 375px;
  background-color: rgba(227,249,82,1.00);
  border-radius: 10px;
  padding: 25px;
  position: relative;
}

.leistungen-unterseite-sub-bfsg-shortcuts-whitepaper-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
}

.leistungen-unterseite-sub-bfsg-shortcuts-whitepaper-content h2 {
  font-size: 22px;
  line-height: 28px;
  font-family: "proxima-nova";
  font-weight: 600;
  color: rgba(0,0,0,0.95);
  padding-bottom: 20px;
}

.leistungen-unterseite-sub-bfsg-shortcuts-whitepaper-content p {
  color: rgba(0,0,0,0.5);
  font-size: 13px;
  line-height: 19px;
  font-family: "proxima-nova";
  font-weight: 600;
  width: 45%;
}

.leistungen-unterseite-sub-bfsg-shortcuts-whitepaper-content-button {
  position: absolute;
  bottom: 25px;
  right: 25px;
}

.leistungen-unterseite-sub-bfsg-shortcuts-video {
  width: calc(50% - 3px);
  height: 375px;
  border-radius: 10px;
}

.leistungen-unterseite-sub-bfsg-shortcuts-video video {
  object-fit: cover;
  height: 100%;
  width: 100%;
}


.leistungen-unterseite-sub-bfsg-shortcuts-text {
  width: calc(50% - 3px);
  height: 375px;
  border-radius: 10px;
  padding: 25px;
  position: relative;
}

.leistungen-unterseite-sub-bfsg-shortcuts-text-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
}

.leistungen-unterseite-sub-bfsg-shortcuts-text-content h2 {
  font-size: 22px;
  line-height: 28px;
  font-family: "proxima-nova";
  font-weight: 600;
  color: rgba(0,0,0,0.95);
  padding-bottom: 20px;
}

.leistungen-unterseite-sub-bfsg-shortcuts-text-content p {
  color: rgba(0,0,0,0.5);
  font-size: 13px;
  line-height: 19px;
  font-family: "proxima-nova";
  font-weight: 600;
  width: 50%;
}

.leistungen-unterseite-sub-bfsg-risiken-container {
  background-color: rgba(0,0,0,1.00);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 100px 5% 100px 5%;
  margin-top: -20px;
  width: 100%;
}

.leistungen-unterseite-sub-bfsg-risiken-container h2 {
  font-family: headline;
  font-size: 40px;
  line-height: 44px;
  color: rgba(255,255,255,0.95);
}

.leistungen-unterseite-sub-bfsg-risiken-content-container {
  width: 100%;
  display: flex;
  column-gap: 30px;
  padding-top: 30px;
  padding-bottom: 80px;
  justify-content: space-between;
}

.leistungen-unterseite-sub-bfsg-risiken-content {

}

.leistungen-unterseite-sub-bfsg-risiken-content-wrapper {
  display: flex;
  align-items: center;
}

.leistungen-unterseite-sub-bfsg-risiken-content img {
  height: 25px;
  margin-right: 10px;
}

.leistungen-unterseite-sub-bfsg-risiken-content h3 {
  font-size: 16px;
  color: rgba(255,255,255,255.95);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
	font-family: "proxima-nova";
}

.leistungen-unterseite-sub-bfsg-risiken-content h3 span {
  color: rgba(92,222,62,1);
}

.leistungen-unterseite-sub-bfsg-risiken-content p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  line-height: 19px;
  font-family: "proxima-nova";
  font-weight: 600;
  padding-top: 10px;
}







/* Overlay Whitepaper Main */

.overlay-kontakt-whitepaper-pop-up {
  position: fixed;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 9999999999;
  background-color: rgba(0,0,0,0.20);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  width: 100%;
  height: 100%;
	top: 0;
}

.overlay-kontakt-whitepaper-pop-up .content {
  width: 97%;
  overflow: hidden;
  position: relative;
  min-height: calc(100vh - 150px);
  background-color: rgba(227,249,82,0.80);
  margin-left: auto;
  margin-right: auto;
  top: 150px;
  -webkit-border-radius: 10px 10px 0 0;
	border-radius: 10px 10px 0 0;
	padding-bottom: 50px;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}

.overlay-kontakt-whitepaper-pop-up-container {
  display: flex;
  max-width: none;
}

.overlay-kontakt-whitepaper-pop-up-colum {
  width: 50%;
}


.overlay-kontakt-whitepaper-pop-up-headline {
	font-size: 40px;
  line-height: 44px;
  padding-left: 5%;
	padding-top: 50px;
	padding-bottom: 20px;
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
	color: rgba(0,0,0,0.95);
}

.overlay-kontakt-whitepaper-pop-up-text {
	width: 80%;
  padding-bottom: 30px;
  font-family: "proxima-nova";
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
	color: rgba(0,0,0,0.90);
	padding-left: 5%;
}

.overlay-kontakt-whitepaper-pop-up-form {
	padding-left: 5%;
}

.overlay-kontakt-whitepaper-pop-up-field {
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom-color: rgba(0,0,0,0.30);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  background-color: rgba(0,0,0,0.00);
  -webkit-border-radius: 0px;
  border-radius: 0px;
  width: 100%;
  color: rgba(0,0,0,1.00);
  font-size: 18px;
  letter-spacing: 0.01em;
  font-family: "proxima-nova";
  font-weight: 600;
  height: 40px;
}

.overlay-kontakt-whitepaper-pop-up-field-info {
  font-family: "proxima-nova";
  font-size: 14px;
  font-weight: 600;
  color: rgba(0,0,0,0.50);
	padding-top: 5px;
	padding-bottom: 5px;
  display: inline-block;
}

.overlay-kontakt-whitepaper-pop-up-success {
	padding-left: 5%;
}

.overlay-kontakt-whitepaper-pop-up-success h3 {
	font-size: 40px;
  line-height: 44px;
  padding-bottom: 20px;
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  color: rgba(0,0,0,0.95);
}

.overlay-kontakt-whitepaper-pop-up-success p {
	font-family: "proxima-nova";
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: rgba(0,0,0,0.90);
}

.overlay-kontakt-whitepaper-pop-up-field-datenschutz {
  font-family: "proxima-nova";
  font-size: 12px;
  font-weight: 500;
  color: rgba(0,0,0,0.50);
  padding-bottom: 5px;
  padding-top: 50px;
  width: 60%;
  line-height: 16px;
}

.overlay-kontakt-whitepaper-pop-up-field-datenschutz a {
  color: rgba(0,0,0,0.50);
	text-decoration: underline;
}



.overlay-kontakt-whitepaper-pop-up-send {
  color: rgba(0,0,0,1.00);
  font-size: 10px;
  font-family: "proxima-nova";
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  padding: 5px 18px;
  background-color: rgba(0,0,0,0.20) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-block;
  text-decoration: none;
  margin-top: 20px;
  cursor: pointer;
  height: 40px;
}



.overlay-kontakt-whitepaper-pop-up-shortcuts {
  padding-right: 5%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 130px;
}

.overlay-kontakt-whitepaper-pop-up-shortcuts a {
  position: relative;
  width: 54.6%;
  height: 125px;
  border-radius: 10px;
  padding: 5px;
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  display: inline-block;
  text-decoration: none;
  background-color: rgba(0,0,0,0.10);
  border-width: 0.5px;
  border-color: rgba(0,0,0,0.1);
  border-style: solid;
  background-image: url("../images/icon-star-mainfont-white-trans.svg");
  background-size: 15px;
  background-position: calc(100% - 10px) 10px;
  background-repeat: no-repeat;
  -webkit-transition: all 600ms ease-in;
  -moz-transition: all 600ms ease-in;
  -ms-transition: all 600ms ease-in;
  -o-transition: all 600ms ease-in;
  transition: all 600ms ease-in;
  cursor: pointer;
  margin-bottom: 15px;
}

.overlay-kontakt-whitepaper-pop-up-shortcuts a:hover {
  background-color: rgba(0,0,0,0.30);;
}


.overlay-kontakt-whitepaper-pop-up-shortcuts a h2 {
  color: rgba(0,0,0,0.5);
  font-size: 13px;
  font-family: "proxima-nova";
  font-weight: 500;
  padding-left: 15px;
  padding-top: 15px;
}

.overlay-kontakt-whitepaper-pop-up-shortcuts a h3 {
  color: rgba(0,0,0,0.95);
  font-size: 22px;
  font-family: "proxima-nova";
  font-weight: 500;
  position: absolute;
  margin-left: 15px;
  bottom: 15px;
  padding-right: 20px;
}



.overlay-kontakt-whitepaper-pop-up-container .close {
  position: absolute;
  top: 50px;
  right: 2.5%;
  font-size: 1.1rem;
  letter-spacing: 0.05rem;
  color: #3e4146;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  background-color: rgba(0,0,0,0.30);
  height: 35px;
  width: 35px;
  border-radius: 100%;
	background-image: url("../images/icon-close-black.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 40%;
	border: none;
}

.overlay-kontakt-whitepaper-pop-up .content .close:hover {
  cursor: pointer;
  color: #f66867;
}

.overlay-kontakt-whitepaper-pop-up.open {
  visibility: visible;
  opacity: 1;
}


.mergeRow {
  font-family: "proxima-nova";
  font-size: 14px;
  line-height: 19px;
  font-weight: 600;
  color: rgba(0,0,0,0.60);
  padding-top: 5px;
  padding-bottom: 5px;
}

.label-mailchimp-subheadline {
  font-family: "proxima-nova";
  font-size: 16px;
  font-weight: 500;
  color: rgba(0,0,0,0.90);
  padding-top: 15px;
  padding-bottom: 10px;
  display: block;
}

.mc_fieldset {
  border: none !important;
  margin: 0 !important;
  padding: 15px 0 !important;
}

.content__gdprLegal a {
	color: inherit;
	text-decoration: underline;
}

.content__gdpr a {
	color: inherit;
	text-decoration: underline;
}

/* Entfernt Pfeile in Chrome, Edge, Safari */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Entfernt Pfeile in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.refferal_badge {
  display: none !important;
}

#mc-embedded-subscribe {
  color: rgba(255,255,255,0.95) !important;
  margin-top: 20px;
}




@media only screen and (max-width: 766px) {

  .overlay-kontakt-whitepaper-pop-up .content {
    top: 100px;
    padding-bottom: 15px;
  }  
  
  .overlay-kontakt-whitepaper-pop-up-container {
    flex-direction: column;
  }
  
  .overlay-kontakt-whitepaper-pop-up-headline {
    font-size: 37px;
    line-height: 40px;
    padding-left: 0;
    padding-top: 50px;
    padding-bottom: 20px;
    width: 80%;
  }
  
  .overlay-kontakt-whitepaper-pop-up-text {
    width: 90%;
    font-size: 16px;
    line-height: 26px;
    padding-left: 0;
  }
  
  .overlay-kontakt-whitepaper-pop-up-form {
    padding-left: 0;
  }

  .overlay-kontakt-whitepaper-pop-up-container .close {
    top: 10px;
    right: 10px;
  }
  
  .overlay-kontakt-whitepaper-pop-up-colum {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
  
  .overlay-kontakt-whitepaper-pop-up-shortcuts-whatsapp {
    flex-direction: row;
    justify-content: flex-start;
    padding-top: 60px;
    padding-right: 0;
  }
  
  .overlay-kontakt-whitepaper-pop-up-shortcuts-whatsapp a {
    width: 49%;
    height: 105px;
    background-color: rgba(30,215,121,0.05);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    left: 0;
  }
  
  .overlay-kontakt-whitepaper-pop-up-shortcuts-whatsapp a img {
    width: 25px;
    left: 10px;
    top: 10px;
    position: relative;
  }
  
  .overlay-kontakt-whitepaper-pop-up-shortcuts-whatsapp a h3 {
    font-size: 18px;
    margin-left: 10px;
    bottom: 10px;
    padding-right: 10px;
    line-height: 20px;
  }
  
  .overlay-kontakt-whitepaper-pop-up-shortcuts {
    padding-left: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 0;
    flex-wrap: wrap;
  }
  
  .overlay-kontakt-whitepaper-pop-up-shortcuts a {
    width: 49%;
    margin-bottom: 15px;
    height: 105px;
    background-size: 10px;
  }
  
  .overlay-kontakt-whitepaper-pop-up-shortcuts a h2 {
    padding-left: 5px;
    padding-top: 5px;
    font-size: 10px;
  }
  
  .overlay-kontakt-whitepaper-pop-up-shortcuts a h3 {
    font-size: 18px;
    margin-left: 5px;
    padding-right: 5px;
    line-height: 20px;
    bottom: 10px; 
  }
  
}













.leistungen-hauptseite-stage {
  width: 100%;
  height: 300px;
  background-color: rgba(255,255,255,1.00);
  position: relative;
}

.leistungen-hauptseite-stage h1 {
  font-size: 16px;
  line-height: 26px;
  padding-left: 5%;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  color: rgba(0,0,0,0.85);
  width: 35%;
  padding-top: 80px;
  margin: 0;
  padding-bottom: 120px;
}

.leistungen-hauptseite-stage h2 {
  cursor: pointer;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-color: rgba(0,0,0,1.00);
  text-decoration-thickness: 2px;
  text-decoration-skip: none;
  text-underline-position: under;
  color: rgba(0,0,0,1.00);
  font-weight: 600;
  text-transform: uppercase;
  height: auto;
  padding-bottom: 3px;
  border: none;
  background-color: transparent;
  padding-left: 5%;
  padding-right: 0;
  padding-top: 0;
  position: absolute;
  bottom: 0;
  -webkit-transition: all 600ms ease-in;
  -moz-transition: all 600ms ease-in;
  -ms-transition: all 600ms ease-in;
  -o-transition: all 600ms ease-in;
  transition: all 600ms ease-in;
  margin-bottom: 0px;
  display: inline-block;
  overflow: visible;
  z-index: 3;
}

.leistungen-hauptseite-intro {
  width: 100%;
  position: relative;
}

.leistungen-hauptseite-intro  p {
  top: 50%;
  transform: translate(0, -50%);
  position: absolute;
  left: 5%;
  color: rgba(0,0,0,0.95);
  font-family: headline;
  font-size: 40px;
  line-height: 44px;
  width: 60%;
  z-index: 3;
}


.leistungen-hauptseite-intro a {
  position: absolute;
  left: 5%;
  bottom: 65px;
  z-index: 3;
}

.leistungen-hauptseite-intro video {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.leistungen-hauptseite-intro-overlay-gradient-100 {
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.5) 100%);
  z-index: 2;
}

.leistungen-hauptseite-intro-overlay-gradient-50 {
  height: 50%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
  z-index: 1;
}


.leistung-hauptseite-text {
  width: 100%;
  height: auto;
  background-color: rgba(255,255,255,1.00);
  padding: 100px 5% 130px 5%;
}



.leistung-hauptseite-text h4 {
  font-family: headline;
  font-size: 40px;
  line-height: 44px;
  color: rgba(0,0,0,1.00);
  width: 80%;
}

.leistung-hauptseite-text p {
  font-family: "proxima-nova";
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: rgba(0, 0, 0, 1);
  width: 80%;
  padding-top: 35px;
  text-align: left;
}


.home-kundenlogos-mobil-container {
  display: none;
}





.slider-nav-white-background {
  background-color: rgba(255, 255, 255, 1) !important;
}






/* MOBILE ---------------------------------------- */




@media only screen and (max-width: 766px) {
  
  
  .leistungen-hauptseite-stage h1 {
    font-size: 14px;
    line-height: 22px;
    width: 80%;
  }

  .leistungen-hauptseite-intro {
    min-height: 100vh;
  }  

  .leistungen-hauptseite-intro p {
    font-size: 30px;
    line-height: 36px;
    width: 85%;
    top: 0;
    transform: none;
    padding-top: 85px;
  }

  .leistungen-hauptseite-intro video {
    position: absolute;
  }  

  .leistung-hauptseite-text h4 {
    font-size: 22px;
    line-height: 26px;
  }  

  .leistung-hauptseite-text p {
    font-size: 14px;
    line-height: 24px;
    width: 90%;
    font-weight: 500;
    color: rgba(0,0,0,0.7)
  }
  
  /* Leistungen Unterseite Sub */
  
  .leistung-unterseite-breadcrumbs a {
    font-size: 10px;
  }
  
  .leistung-unterseite-breadcrumbs {
    padding-top: 75px;
  }
  
  .leistung-unterseite-breadcrumbs img {
    height: 10px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: -1px;
  }  
  
  .leistung-unterseite-breadcrumbs-active {
    text-decoration: none !important;
  }
  
  
  .leistung-unterseite-breadcrumbs-dark {
    padding-top: 75px;
  }

  .leistung-unterseite-breadcrumbs-dark img {
    height: 10px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: -1px;
  }

  .leistung-unterseite-breadcrumbs-dark a {
    font-size: 10px;
  }


  .leistung-unterseite-breadcrumbs-dark-active {
    text-decoration: none !important;
  }

  @keyframes height-leistungen-stage {
  from {
    height: 100vh;
  }
  to {
    height: 90vh;
  }
}

  .leistungen-unterseite-stage-intro {
    font-size: 14px;
    line-height: 22px;
    width: 70%;
    opacity: 0.6;
  }
  
  .leistungen-unterseite-stage-content {
    width: 90%;
    padding-top: 100px;
  }
  
  .leistungen-unterseite-stage-content h1 {
    font-size: 30px;
    line-height: 36px;
    margin: 0;
    width: 100%;
  }
  
  .leistungen-unterseite-cards a {
    height: 90vh;
  }
  
  .leistungen-unterseite-cards-hashtag-container {
    width: 100%;
  }
  

  
  .leistungen-unterseite-cards a p {
    width: 65%;
  }
  
  .leistungen-unterseite-intro-intro {
    font-size: 14px;
    line-height: 22px;
    width: 70%;
    opacity: 0.6;
    padding-top: 20px;
    padding-bottom: 100px;
  }
  
  .leistungen-unterseite-intro h2 {
    font-size: 30px;
    line-height: 36px;
  }
  
  .leistungen-unterseite-intro p {
    font-size: 14px;
    line-height: 24px;
    width: 90%;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
  }
  
  .leistungen-unterseite-team-intro {
    font-size: 14px;
    line-height: 22px;
    width: 70%;
    opacity: 0.6;
    padding-top: 0px;
    padding-bottom: 100px;
  }
  
  
  
  
  .leistungen-unterseite-sub-stage-content {
    width: 90%;
    padding-top: 100px;
  }
  
  .leistungen-unterseite-sub-stage h2 {
    font-size: 14px;
    line-height: 22px;
    width: 70%;
    opacity: 0.6;
  }
  
  .leistungen-unterseite-sub-stage-content img {
    height: 80px;
  }
  
  .leistungen-unterseite-sub-stage-content h1 {
    font-size: 30px;
    line-height: 36px;
    margin: 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
		hyphens: auto;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  
  .leistungen-unterseite-sub-stage-content-hashtags {
    width: 80%;
    padding-top: 20px;
  }
  
  .leistungen-unterseite-sub-stage-content-hashtags a {
    font-size: 14px;
    padding: 6px 10px;
  }
  
  .leistungen-unterseite-sub-stage-content-hashtags p {
    font-size: 14px;
    padding: 6px 10px;
  }
	
  .leistungen-unterseite-sub-stage-content-hashtags li {
    font-size: 14px;
    padding: 6px 10px;
  }	
  
  
  .leistungen-unterseite-sub-stage-scroll-icon {
    bottom: 20px;
  }
  
  
.leistungen-unterseite-sub-intro h3 {
  font-size: 22px;
  line-height: 28px;
  width: 80%;
}
	
.leistungen-unterseite-sub-intro h2 {
  font-size: 22px;
  line-height: 28px;
  width: 80%;
}	

.leistungen-unterseite-sub-intro p {
  width: 90%;
}
  
  .leistungen-unterseite-sub-vorteile-intro {
    font-size: 14px;
    line-height: 22px;
    width: 80%;
    padding-top: 0;
  }

  
  .leistungen-unterseite-sub-vorteile-slide {
    width: 95%;
    min-height: 375px;
    margin-left: 0;
  }
  
  
  .leistungen-unterseite-sub-unterleistungen {
    padding-top: 0; 
  }
  
  .leistungen-unterseite-sub-unterleistungen h4 {
    font-size: 30px;
    line-height: 36px;
    hyphens: auto;
  }
	
  .leistungen-unterseite-sub-unterleistungen h2 {
    font-size: 30px;
    line-height: 36px;
    hyphens: auto;
  }	

  .panels {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  
  .leistungen-unterseite-sub-unterleistungen-panels-content p {
    font-size: 14px;
    line-height: 24px;
    width: 90%;
    font-weight: 500;
    color: rgba(0,0,0,0.7);
  }
  
  .leistungen-unterseite-sub-unterleistungen-panels-content {
    width: 90%;
  }
  
  .leistungen-unterseite-sub-kundenstimmen {
    padding-top: 0;
  }
  
  .leistungen-unterseite-sub-kundenstimmen-intro {
    font-size: 14px;
    line-height: 22px;
    width: 80%;
  }
  
  .leistungen-unterseite-sub-kundenstimmen-content {
    row-gap: 15px;
    padding-top: 80px;
    flex-wrap: wrap;
  }
  
  .leistungen-unterseite-sub-kundenstimmen-content a {
    width: 100%;
  }
  
  .leistungen-unterseite-sub-kundenstimmen-content a p {
    font-size: 18px;
    line-height: 24px;
  }
  
  .leistungen-unterseite-sub-kundenstimmen-content-logo {
    height: 20px;
    width: auto;
  }
  
  .leistungen-unterseite-sub-steps-headline-intro {
    font-size: 14px;
    line-height: 22px;
    width: 80%;
  }
  
  .leistungen-unterseite-sub-steps-stage-1-headline {
    font-size: 22px;
    line-height: 28px;
    width: 80vw;
  }
  
  .leistungen-unterseite-sub-steps-stage-1-info {
    width: 70vw;
  }

  
  .leistungen-unterseite-sub-section-stage-2-headline {
    width: 80%;
  }
  
  .leistungen-unterseite-sub-section-stage-2-content {
    width: 65%;
  }
  
  .leistungen-unterseite-sub-section-stage-2-content p {
    padding-top: 170px;
  }
  
  .leistungen-unterseite-sub-section-stage-2-headline p {
    font-size: 22px;
    line-height: 28px;
  }
  
  .leistungen-unterseite-sub-floating-intro {
    font-size: 14px;
    line-height: 22px;
    width: 80%;
    padding-top: 0;
    top: 20px;
  }
  
  .floatingbg-image-basic {
    height: 80px;
    width: auto;
  }

  @-webkit-keyframes floatingbg-image {
    0% {
      top: 100vh;    
    }
    80% {
      top: -80px;    
    }
    100% {
      top: -80px
    }
  } 
  
  .leistungen-unterseite-sub-floating-content {
    width: 70%;
  }
  
  .leistungen-unterseite-sub-floating-content p {
    font-size: 22px;
    line-height: 28px;
  }
  
  .leistungen-unterseite-sub-weitere-leistungen {
    padding-bottom: 40px;
  }
  
  .leistungen-unterseite-sub-weitere-leistungen-intro {
    font-size: 14px;
    line-height: 22px;
    width: 80%;
    padding-top: 40px;
    padding-bottom: 80px;
  }
  
  .leistungen-unterseite-sub-weitere-leistungen-tabs a {
    position: relative;
    width: calc(50% - 2.5px);
    padding: 15px;
    height: 275px;
  }
  
  .leistungen-unterseite-sub-weitere-leistungen-tabs h3 {
    font-size: 18px;
    line-height: 21px;
    margin-left: 22px;
    margin-top: -5px;
    hyphens: auto;
    padding-right: 10px;
  }
  
  .leistungen-unterseite-sub-weitere-leistungen-tabs a img {
    left: 15px;
    top: 15px;
    width: 12px;
  }
  
  .leistungen-unterseite-sub-weitere-leistungen-tabs a p {
    width: 90%; 
    padding-right: 15px;
  }
  
  .leistungen-unterseite-sub-weitere-leistungen-tabs span {
    position: relative;
    width: calc(50% - 2.5px);
    padding: 15px;
    height: 275px;
  }
  
  .leistungen-unterseite-sub-weitere-leistungen-tabs span img {
    left: 15px;
    top: 15px;
    width: 12px;
  }
  
  .leistungen-unterseite-sub-weitere-leistungen-tabs span p {
    width: 90%; 
    padding-right: 15px;
  }
  
  .leistungen-unterseite-sub-referenzen-intro {
    font-size: 14px;
    line-height: 22px;
    width: 80%;
    padding-top: 40px;
    padding-bottom: 80px;
  }
  
  .leistungen-unterseite-sub-agency {
      padding: 0 5% 80px 5%;
    }
  
  .leistungen-unterseite-sub-agency h4 {
    font-size: 30px;
    line-height: 36px;
  }
	
	  .leistungen-unterseite-sub-agency h2 {
    font-size: 30px;
    line-height: 36px;
  }
  
  .leistungen-unterseite-sub-agency p {
    font-size: 14px;
    line-height: 24px;
    width: 90%;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
  }
  
  .leistungen-unterseite-sub-agency-buttons {
    display: none;
  }
  
  .leistungen-unterseite-sub-team-container {
    flex-wrap: wrap;
  }
  
  .leistungen-unterseite-sub-team {
    padding-bottom: 40px;
  }
  
  .leistungen-unterseite-sub-team-content {
    width: 100%;
    left: 0;
    order: 2;
    padding-top: 20px;
  }
	
	  .leistungen-unterseite-sub-team-content h3 {
    font-size: 22px;
    line-height: 28px;
    width: 80%;
  }
  
  
  .leistungen-unterseite-sub-team-content h4 {
    font-size: 22px;
    line-height: 28px;
    width: 80%;
  }
  
  .leistungen-unterseite-sub-team-picture {
    width: 100%;
    right: 0;
    order: 1;
  }
  
  .leistungen-unterseite-sub-team-content p {
    width: 80%;
  }
  
  .leistungen-unterseite-sub-team-content-buttons-termin {
    position: relative;
    padding-top: 40px;
  }
	
	  .leistungen-unterseite-sub-vorteile-agency hh2 {
    line-height: 26px;
  }
  
  .leistungen-unterseite-sub-vorteile-agency h4 {
    line-height: 26px;
  }

  .leistungen-unterseite-sub-vorteile-agency-slide {
    width: 95%;
    min-height: 375px;
    margin-left: 0;
  }
  
  .leistungen-unterseite-sub-vorteile-agency-slide p {
    font-size: 18px;
    line-height: 24px;
  }
  
  .leistungen-unterseite-sub-faq-container {
    padding: 0px 5% 35px 5%;
  }
  
  .leistungen-unterseite-sub-faq-container-intro {
    font-size: 14px;
    line-height: 22px;
    width: 80%;
    padding-bottom: 50px !important;
  }
  
  .accordion li p {
    font-size: 14px !important;
    line-height: 24px !important;
    font-weight: 500 !important;
  }
  
  
  
  
  
  
  
  
.home-kundenlogos-mobil-container {
  display: block;
  width: 100%;
  overflow: hidden;
  padding-top: 0px;
  padding-bottom: 80px;
}
  
.leistungen-footer-container h5 {
  font-size: 30px;
  line-height: 36px;  
}
  
.leistungen-footer-container p {
  font-size: 14px;
  line-height: 22px;
  width: 80%;
}

  
 #hero-frist {
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
	padding-bottom: 10px; 
} 
  
.leistungen-unterseite-sub-intro h2 {
  font-size: 22px;
  line-height: 28px;
  width: 80%;
}	  
  
.leistungen-unterseite-sub-bfsk-kacheln-subtitel {
  font-size: 14px;
  line-height: 22px;
  width: 80%;
}  
  
.leistungen-unterseite-sub-bfsk-kacheln-container {
  padding: 50px 5% 100px 5%;
}  
  
.leistungen-unterseite-sub-bfsk-kacheln-container h2 {
  line-height: 30px;
	hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}	
	
	
.leistungen-unterseite-sub-bfsk-kacheln-big h3 {
  font-size: 18px;
  line-height: 21px;
	padding-left: 45px;
}	
	
.leistungen-unterseite-sub-bfsk-kacheln-big {
  background-size: auto 20px;	
	margin-bottom: 15px;
}
	
.leistungen-unterseite-sub-bfsk-kacheln-small {
  width: 100%;
  margin-bottom: 15px;
}	
	
.leistungen-unterseite-sub-bfsk-kacheln-small h3 {
  font-size: 18px;
  padding-left: 25px;
}	
	
.leistungen-unterseite-sub-bfsk-kacheln-small img {
  width: 11px;
}
	
.leistungen-unterseite-sub-bfsk-kacheln-big p {
  width: 90%;
}	

.leistungen-unterseite-sub-unterleistungen h2 {
	font-size: 30px;
  line-height: 36px;
}	
	
	
.leistungen-unterseite-sub-unterleistungen-info {
  font-size: 14px;
  line-height: 22px;
  width: 80%;
	padding-bottom: 50px !important;
}	
	
.panel-button {
  margin-bottom: 20px;	
}
	
.leistungen-unterseite-sub-bfsg-shortcuts-container {
  flex-direction: column;
}	
	
.leistungen-unterseite-sub-bfsg-shortcuts-countdown {
  width: 100%;
  height: 435px;
}
	
.time-box span {
  font-size: 30px;
}	
	
#countdown {
  gap: 20px;
}	
	
.leistungen-unterseite-sub-bfsg-shortcuts-countdown-content h2 {
  font-size: 18px;
  line-height: 21px;
}	
	
.leistungen-unterseite-sub-bfsg-shortcuts-countdown-content p {
  width: 80%;
}	
	
.leistungen-unterseite-sub-bfsg-shortcuts-countdown-content-button {
  left: 25px;
}	
	
.leistungen-unterseite-sub-bfsg-shortcuts-countdown-content {
  position: absolute;
  bottom: 90px;
}	
	
.leistungen-unterseite-sub-bfsg-shortcuts-whitepaper {
  width: 100%;
	height: auto;
}
	
.leistungen-unterseite-sub-bfsg-shortcuts-whitepaper-content {
  position: relative;
  bottom: 0;
  left: 0;
}	

.leistungen-unterseite-sub-bfsg-shortcuts-whitepaper-content h2 {
  font-size: 18px;
  line-height: 21px;
	padding-bottom: 50px;
}	
	
.leistungen-unterseite-sub-bfsg-shortcuts-whitepaper-content p {
  width: 80%;
}
	
.leistungen-unterseite-sub-bfsg-shortcuts-whitepaper-content-button {
  position: relative;
  bottom: 0;
  right: 0;
  margin-top: 20px;
}	
	
.leistungen-unterseite-sub-bfsg-shortcuts-video {
  width: 100%;
  height: 345px;
}
	
.leistungen-unterseite-sub-bfsg-shortcuts-text {
  width: 100%;
  height: auto;
  padding: 0;
	padding-left: 25px;
}	

.leistungen-unterseite-sub-bfsg-shortcuts-text-content {
  position: relative;
  bottom: 0;
  left: 0;
}	
	
.leistungen-unterseite-sub-bfsg-shortcuts-text-content h2 {
  padding-top: 30px;
  width: 60%;
	font-size: 18px;
  line-height: 21px;
}	
	
.leistungen-unterseite-sub-bfsg-shortcuts-text-content p {
  width: 75%;
}	
	
.leistungen-unterseite-sub-text {
  padding: 0px 5% 100px 5%;
}	
	
.leistungen-unterseite-sub-text h2 {
  font-size: 30px;
  line-height: 36px;
	width: 85%;
}	

	
.leistungen-unterseite-sub-text p {
  font-size: 14px;
  line-height: 22px;
  width: 80% !important;
  padding-bottom: 50px !important;
}	
	
.leistungen-unterseite-sub-text h3 {
  line-height: 30px;
}
	
.leistungen-unterseite-sub-bfsg-risiken-container {
  padding: 100px 5% 20px 5%;
}
	
.leistungen-unterseite-sub-bfsg-risiken-content-container {
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 40px;
}	
	
.leistungen-unterseite-sub-bfsg-risiken-container h2 {
  font-size: 30px;
  line-height: 36px;
}
	
.leistungen-unterseite-sub-bfsg-risiken-container h2 {
  font-size: 30px;
  line-height: 36px;
}	
	
.leistungen-unterseite-sub-bfsg-shortcuts-dark-container {
  flex-direction: column;
}	
	
.leistungen-unterseite-sub-bfsg-shortcuts-dark-video {
  width: 100%;
	height: 345px;
	margin-bottom: 15px;
}
	
.leistungen-unterseite-sub-bfsg-shortcuts-dark-whitepaper {
  width: 100%;
	height: auto;
}
	
.leistungen-unterseite-sub-bfsg-shortcuts-dark-whitepaper-content {
  position: relative;
  bottom: 0;
  left: 0;
}
	
.leistungen-unterseite-sub-bfsg-shortcuts-dark-whitepaper-content h2 {
  font-size: 18px;
  line-height: 21px;
}
	
.leistungen-unterseite-sub-bfsg-shortcuts-dark-whitepaper-content p {
  width: 80%;
}	
	
.leistungen-unterseite-sub-bfsg-shortcuts-dark-whitepaper-content-button {
  position: relative;
  bottom: 0;
  right: 0;
  margin-top: 80px;
}
	
.leistungen-unterseite-sub-text-dark {
  padding: 0 5% 100px 5%;
}	
	
.leistungen-unterseite-sub-text-dark h2 {
  font-size: 30px;
  line-height: 36px;
}	
	
.leistungen-unterseite-sub-text-dark-info {
  font-size: 14px;
  line-height: 22px;
  width: 80%;
  padding-bottom: 50px !important;
}	

.leistungen-unterseite-sub-faq-container-headline {
  width: 50%;
}
	
.leistungen-unterseite-sub-faq-container h2 {
	font-size: 14px;
  line-height: 22px;
}	

.leistungen-unterseite-sub-faq-container p {
	font-size: 14px;
  line-height: 22px;
}	
	
.leistungen-unterseite-sub-faq-accordion button,
.leistungen-unterseite-sub-faq-accordion h3.leistungen-unterseite-sub-faq-accordion-headline {
  font-size: 18px;
  line-height: 21px;
}
	
.leistungen-unterseite-sub-faq-accordion-headline::after {
  top: 21px;
}
	
.leistungen-unterseite-sub-faq-accordion button,
.leistungen-unterseite-sub-faq-accordion h3.leistungen-unterseite-sub-faq-accordion-headline  {
  padding-top: 14px;
  padding-left: 24px;
}	

	
.leistungen-unterseite-sub-faq-accordion-content-headline {
  font-size: 15px;
}	
	
.leistungen-unterseite-sub-kundenstimmen-dark-intro {
	font-size: 14px;
  line-height: 22px;
  width: 80%;
  padding-bottom: 50px !important;
}	
	
.leistungen-unterseite-sub-text-dark h3 {
	line-height: 30px;
}	
	
.leistungen-unterseite-sub-text-dark p {
  font-size: 14px;
  line-height: 22px;
  width: 80% !important;
}	
	
	
	
.leistungen-unterseite-sub-intro {
  padding: 50px 0;
}	
	
.quickcheck-wrapper {
	flex-direction: column;
 }
	
.quickcheck-box {
	min-height: auto;
	padding: 20px;
}
	
.quickcheck-box h3 {
	width: 80%;
	padding-bottom: 115px;
}
	
.quickcheck-intro-box p {
  width: 80%;
}	
	
.quickcheck-button {
		
}
	
.quickcheck-step p,
.quickcheck-intro-box {
	width: 100%;
	position: static;
	margin-bottom: 15px;
}
	
.quickcheck-step p {
	padding-top: 10px;
}	
	
.quickcheck-close {
  display: none;
}	
	
.quickcheck-result a, .quickcheck-result button {
  display: inline-block;
  margin-bottom: 10px;
}	
	
.leistungen-unterseite-sub-vorteile-slide h3 {
	font-size: 18px;
  line-height: 21px;
}




}


/* ---- barrierefreie-webseiten: Yellow-Blend (Footer nähert sich) ---- */

.barrierefreie-body {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.barrierefreie-body.is-footer-approaching--yellow {
  background-color: rgba(227,249,82,1.00);
}

/* Vorteile-Slider-Section bg (weiß → gelb) */
.leistungen-unterseite-sub-vorteile {
  transition: background-color 500ms ease;
}
.barrierefreie-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile {
  background-color: rgba(227,249,82,1.00);
}

/* Vorteile slide boxes: dunkelgrau → schwarz, Texte → gelb */
.leistungen-unterseite-sub-vorteile-slide {
  transition: background-color 500ms ease;
}
.leistungen-unterseite-sub-vorteile-slide-number {
  transition: color 500ms ease;
}
.leistungen-unterseite-sub-vorteile-slide h3 {
  transition: color 500ms ease;
}
.leistungen-unterseite-sub-vorteile-slide p {
  transition: color 500ms ease;
}

.barrierefreie-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide {
  background-color: rgba(0,0,0,1.00);
}
.barrierefreie-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide-number {
  color: rgba(227,249,82,0.85);
}
.barrierefreie-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide h3 {
  color: rgba(227,249,82,0.95);
}
.barrierefreie-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide p {
  color: rgba(227,249,82,0.5);
}

/* Kundenlogos-Sektion bg (schwarz → gelb) */
.leistungen-unterseite-sub-logos {
  transition: background-color 500ms ease;
}
.barrierefreie-body.is-footer-approaching--yellow .leistungen-unterseite-sub-logos {
  background-color: rgba(227,249,82,1.00) !important;
}

/* Mobile Marquee-Container bg (schwarz → gelb) */
.kundenlogos-mobil-container {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.barrierefreie-body.is-footer-approaching--yellow .kundenlogos-mobil-container {
  background-color: rgba(227,249,82,1.00);
}

/* Team-Sektion (direkt über Kundenlogos): schwarz → gelb */
.leistungen-unterseite-sub-team {
  transition: background-color 500ms ease;
}
.barrierefreie-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team {
  background-color: rgba(227,249,82,1.00);
}

/* Agency Vorteile-Sektion bg (schwarz → gelb) */
.leistungen-unterseite-sub-vorteile-agency {
  transition: background-color 500ms ease;
}
.barrierefreie-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency {
  background-color: rgba(227,249,82,1.00);
}

/* Beide swiper-navs: weiße Basis-Bg (swiper-home-v2.css) auf schwarz setzen + Transition */
.barrierefreie-body .swiper-nav--vorteile,
.barrierefreie-body .swiper-nav--agency {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.barrierefreie-body.is-footer-approaching--yellow .swiper-nav--vorteile,
.barrierefreie-body.is-footer-approaching--yellow .swiper-nav--agency {
  background-color: rgba(227,249,82,1.00) !important;
}

/* Agency Überschriften: gelb → schwarz */
.leistungen-unterseite-sub-vorteile-agency h2,
.leistungen-unterseite-sub-vorteile-agency h4 {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.barrierefreie-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency h2,
.barrierefreie-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency h4 {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}

/* Agency slides: gelber Bg + schwarze Schrift → schwarzer Bg + gelbe Schrift */
.leistungen-unterseite-sub-vorteile-agency-slide {
  transition: background-color 500ms ease;
}
.leistungen-unterseite-sub-vorteile-agency-slide-number {
  transition: color 500ms ease;
}
.leistungen-unterseite-sub-vorteile-agency-slide h3 {
  transition: color 500ms ease;
}
.leistungen-unterseite-sub-vorteile-agency-slide p {
  transition: color 500ms ease;
}

.barrierefreie-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide {
  background-color: rgba(0,0,0,1.00);
}
.barrierefreie-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide-number {
  color: rgba(227,249,82,0.5);
}
.barrierefreie-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide h3 {
  color: rgba(227,249,82,0.95);
}
.barrierefreie-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide p {
  color: rgba(227,249,82,0.95);
}


/* ============================================================
   webdesign-body: Footer-Blend gelb (site-footer--yellow)
   ============================================================ */

/* Seiten-Hintergrund: schwarz → gelb */
.webdesign-body {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.webdesign-body.is-footer-approaching--yellow {
  background-color: rgba(227,249,82,1.00);
}

/* Vorteile-Sektion Hintergrund → gelb */
.webdesign-body .leistungen-unterseite-sub-vorteile {
  transition: background-color 500ms ease;
}
.webdesign-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile {
  background-color: rgba(227,249,82,1.00);
}

/* Vorteile-Slides: schwarzer Hintergrund + gelbe Schrift */
.webdesign-body .leistungen-unterseite-sub-vorteile-slide {
  transition: background-color 500ms ease;
}
.webdesign-body .leistungen-unterseite-sub-vorteile-slide-number,
.webdesign-body .leistungen-unterseite-sub-vorteile-slide h3,
.webdesign-body .leistungen-unterseite-sub-vorteile-slide p {
  transition: color 500ms ease;
}
.webdesign-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide {
  background-color: rgba(0,0,0,1.00);
}
.webdesign-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide-number {
  color: rgba(227,249,82,0.85);
}
.webdesign-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide h3 {
  color: rgba(227,249,82,0.95);
}
.webdesign-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide p {
  color: rgba(227,249,82,0.5);
}

/* Swiper-Navs: weiße Basis-Bg (swiper-home-v2.css) → schwarz → gelb */
.webdesign-body .swiper-nav--vorteile,
.webdesign-body .swiper-nav--agency {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.webdesign-body.is-footer-approaching--yellow .swiper-nav--vorteile,
.webdesign-body.is-footer-approaching--yellow .swiper-nav--agency {
  background-color: rgba(227,249,82,1.00) !important;
}

/* Agency-Sektion Hintergrund → gelb */
.webdesign-body .leistungen-unterseite-sub-vorteile-agency {
  transition: background-color 500ms ease;
}
.webdesign-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency {
  background-color: rgba(227,249,82,1.00);
}

/* Agency Überschrift + Unterstrich: gelb → schwarz */
.webdesign-body .leistungen-unterseite-sub-vorteile-agency h2,
.webdesign-body .leistungen-unterseite-sub-vorteile-agency h4 {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.webdesign-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency h2,
.webdesign-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency h4 {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}

/* Agency-Slides: schwarzer Hintergrund + gelbe Schrift */
.webdesign-body .leistungen-unterseite-sub-vorteile-agency-slide {
  transition: background-color 500ms ease;
}
.webdesign-body .leistungen-unterseite-sub-vorteile-agency-slide-number,
.webdesign-body .leistungen-unterseite-sub-vorteile-agency-slide h3,
.webdesign-body .leistungen-unterseite-sub-vorteile-agency-slide p {
  transition: color 500ms ease;
}
.webdesign-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide {
  background-color: rgba(0,0,0,1.00);
}
.webdesign-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide-number {
  color: rgba(227,249,82,0.5);
}
.webdesign-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide h3 {
  color: rgba(227,249,82,0.95);
}
.webdesign-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide p {
  color: rgba(227,249,82,0.95);
}

/* FAQ-Sektion: schwarzer Hintergrund → gelb */
.webdesign-body .leistungen-unterseite-sub-faq-container {
  transition: background-color 500ms ease;
}
.webdesign-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-container {
  background-color: rgba(227,249,82,1.00);
}

/* FAQ Headline-Texte: weiß → schwarz */
.webdesign-body .leistungen-unterseite-sub-faq-container-headline h2,
.webdesign-body .leistungen-unterseite-sub-faq-container-headline p {
  transition: color 500ms ease;
}
.webdesign-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-container-headline h2 {
  color: rgba(0,0,0,0.9) !important;
}
.webdesign-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-container-headline p {
  color: rgba(0,0,0,0.5) !important;
}

/* FAQ Accordion Buttons: weiß → schwarz */
.webdesign-body .leistungen-unterseite-sub-faq-accordion-headline {
  transition: color 500ms ease, border-bottom-color 500ms ease;
}
.webdesign-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-headline {
  color: rgba(0,0,0,0.95) !important;
  border-bottom-color: rgba(0,0,0,0.3) !important;
}

/* FAQ Accordion Icons (::after Chevron): weiß → schwarz */
.webdesign-body .leistungen-unterseite-sub-faq-accordion-headline::after {
  transition: border-right-color 500ms ease, border-bottom-color 500ms ease;
}
.webdesign-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-headline::after {
  border-right-color: rgba(0,0,0,0.5) !important;
  border-bottom-color: rgba(0,0,0,0.5) !important;
}

/* FAQ Accordion Content: weiß → schwarz */
.webdesign-body .leistungen-unterseite-sub-faq-accordion-content {
  transition: color 500ms ease;
}
.webdesign-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-content {
  color: rgba(0,0,0,0.7) !important;
}
.webdesign-body .leistungen-unterseite-sub-faq-accordion-content-headline {
  transition: color 500ms ease;
}
.webdesign-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-content-headline {
  color: rgba(0,0,0,0.95);
}


/* ============================================================
   branding-body: Footer-Blend gelb (site-footer--yellow)
   ============================================================ */

/* Seiten-Hintergrund: schwarz → gelb */
.branding-body {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.branding-body.is-footer-approaching--yellow {
  background-color: rgba(227,249,82,1.00);
}

/* Vorteile-Sektion Hintergrund → gelb */
.branding-body .leistungen-unterseite-sub-vorteile {
  transition: background-color 500ms ease;
}
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile {
  background-color: rgba(227,249,82,1.00);
}

/* Vorteile-Slides: schwarzer Hintergrund + gelbe Schrift */
.branding-body .leistungen-unterseite-sub-vorteile-slide {
  transition: background-color 500ms ease;
}
.branding-body .leistungen-unterseite-sub-vorteile-slide-number,
.branding-body .leistungen-unterseite-sub-vorteile-slide h3,
.branding-body .leistungen-unterseite-sub-vorteile-slide p {
  transition: color 500ms ease;
}
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide {
  background-color: rgba(0,0,0,1.00);
}
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide-number {
  color: rgba(227,249,82,0.85);
}
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide h3 {
  color: rgba(227,249,82,0.95);
}
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide p {
  color: rgba(227,249,82,0.5);
}

/* Swiper-Navs: weiße Basis-Bg → schwarz → gelb */
.branding-body .swiper-nav--vorteile,
.branding-body .swiper-nav--agency {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.branding-body.is-footer-approaching--yellow .swiper-nav--vorteile,
.branding-body.is-footer-approaching--yellow .swiper-nav--agency {
  background-color: rgba(227,249,82,1.00) !important;
}

/* Team-Sektion: schwarz → gelb */
.branding-body .leistungen-unterseite-sub-team {
  transition: background-color 500ms ease;
}
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team {
  background-color: rgba(227,249,82,1.00);
}

/* Team Überschrift (Ansprechpartner) + Unterstrich: weiß → schwarz */
.branding-body .leistungen-unterseite-sub-team-headline {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-headline {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}

/* Team Content Texte: weiß → schwarz */
.branding-body .leistungen-unterseite-sub-team-content h4,
.branding-body .leistungen-unterseite-sub-team-content h3 {
  transition: color 500ms ease;
}
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h4,
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h3 {
  color: rgba(0,0,0,0.95);
}

/* Team Content h4 span (gelber Unterstrich → schwarz) */
.branding-body .leistungen-unterseite-sub-team-content h4 span,
.branding-body .leistungen-unterseite-sub-team-content h3 span {
  transition: text-decoration-color 500ms ease;
}
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h4 span,
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h3 span {
  text-decoration-color: rgba(0,0,0,0.95);
}

/* Team Content p: weiß → schwarz */
.branding-body .leistungen-unterseite-sub-team-content p {
  transition: color 500ms ease;
}
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content p {
  color: rgba(0,0,0,0.55);
}

/* Team Name + Unterstrich: weiß → schwarz */
.branding-body .leistungen-unterseite-sub-team-content-headline {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content-headline {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}

/* Team Buttons: weiß → schwarz */
.branding-body .leistungen-unterseite-sub-team-content-button {
  transition: color 500ms ease;
}
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content-button {
  color: rgba(0,0,0,0.7);
}

/* Kundenlogos-Sektion bg: schwarz → gelb (Logos via JS getauscht) */
.branding-body .leistungen-unterseite-sub-logos {
  transition: background-color 500ms ease;
}
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-logos {
  background-color: rgba(227,249,82,1.00) !important;
}

/* Mobile Marquee-Container bg: schwarz → gelb */
.branding-body .kundenlogos-mobil-container {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.branding-body.is-footer-approaching--yellow .kundenlogos-mobil-container {
  background-color: rgba(227,249,82,1.00);
}

/* Agency-Sektion Hintergrund → gelb */
.branding-body .leistungen-unterseite-sub-vorteile-agency {
  transition: background-color 500ms ease;
}
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency {
  background-color: rgba(227,249,82,1.00);
}

/* Agency Überschrift + Unterstrich: gelb → schwarz */
.branding-body .leistungen-unterseite-sub-vorteile-agency h2,
.branding-body .leistungen-unterseite-sub-vorteile-agency h4 {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency h2,
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency h4 {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}

/* Agency-Slides: schwarzer Hintergrund + gelbe Schrift */
.branding-body .leistungen-unterseite-sub-vorteile-agency-slide {
  transition: background-color 500ms ease;
}
.branding-body .leistungen-unterseite-sub-vorteile-agency-slide-number,
.branding-body .leistungen-unterseite-sub-vorteile-agency-slide h3,
.branding-body .leistungen-unterseite-sub-vorteile-agency-slide p {
  transition: color 500ms ease;
}
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide {
  background-color: rgba(0,0,0,1.00);
}
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide-number {
  color: rgba(227,249,82,0.5);
}
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide h3 {
  color: rgba(227,249,82,0.95);
}
.branding-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide p {
  color: rgba(227,249,82,0.95);
}


/* ============================================================
   online-marketing-body: Footer-Blend gelb (site-footer--yellow)
   ============================================================ */

.online-marketing-body {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow {
  background-color: rgba(227,249,82,1.00);
}

/* Vorteile-Sektion */
.online-marketing-body .leistungen-unterseite-sub-vorteile {
  transition: background-color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile {
  background-color: rgba(227,249,82,1.00);
}
.online-marketing-body .leistungen-unterseite-sub-vorteile-slide {
  transition: background-color 500ms ease;
}
.online-marketing-body .leistungen-unterseite-sub-vorteile-slide-number,
.online-marketing-body .leistungen-unterseite-sub-vorteile-slide h3,
.online-marketing-body .leistungen-unterseite-sub-vorteile-slide p {
  transition: color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide {
  background-color: rgba(0,0,0,1.00);
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide-number {
  color: rgba(227,249,82,0.85);
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide h3 {
  color: rgba(227,249,82,0.95);
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide p {
  color: rgba(227,249,82,0.5);
}

/* Swiper-Navs: weiße Basis-Bg → schwarz → gelb */
.online-marketing-body .swiper-nav--vorteile,
.online-marketing-body .swiper-nav--agency {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .swiper-nav--vorteile,
.online-marketing-body.is-footer-approaching--yellow .swiper-nav--agency {
  background-color: rgba(227,249,82,1.00) !important;
}

/* Team-Sektion */
.online-marketing-body .leistungen-unterseite-sub-team {
  transition: background-color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team {
  background-color: rgba(227,249,82,1.00);
}
.online-marketing-body .leistungen-unterseite-sub-team-headline {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-headline {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}
.online-marketing-body .leistungen-unterseite-sub-team-content h4,
.online-marketing-body .leistungen-unterseite-sub-team-content h3 {
  transition: color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h4,
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h3 {
  color: rgba(0,0,0,0.95);
}
.online-marketing-body .leistungen-unterseite-sub-team-content h4 span,
.online-marketing-body .leistungen-unterseite-sub-team-content h3 span {
  transition: text-decoration-color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h4 span,
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h3 span {
  text-decoration-color: rgba(0,0,0,0.95);
}
.online-marketing-body .leistungen-unterseite-sub-team-content p {
  transition: color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content p {
  color: rgba(0,0,0,0.55);
}
.online-marketing-body .leistungen-unterseite-sub-team-content-headline {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content-headline {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}
.online-marketing-body .leistungen-unterseite-sub-team-content-button {
  transition: color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content-button {
  color: rgba(0,0,0,0.7);
}

/* Kundenlogos */
.online-marketing-body .leistungen-unterseite-sub-logos {
  transition: background-color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-logos {
  background-color: rgba(227,249,82,1.00) !important;
}
.online-marketing-body .kundenlogos-mobil-container {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .kundenlogos-mobil-container {
  background-color: rgba(227,249,82,1.00);
}

/* Agency-Sektion */
.online-marketing-body .leistungen-unterseite-sub-vorteile-agency {
  transition: background-color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency {
  background-color: rgba(227,249,82,1.00);
}
.online-marketing-body .leistungen-unterseite-sub-vorteile-agency h2,
.online-marketing-body .leistungen-unterseite-sub-vorteile-agency h4 {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency h2,
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency h4 {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}
.online-marketing-body .leistungen-unterseite-sub-vorteile-agency-slide {
  transition: background-color 500ms ease;
}
.online-marketing-body .leistungen-unterseite-sub-vorteile-agency-slide-number,
.online-marketing-body .leistungen-unterseite-sub-vorteile-agency-slide h3,
.online-marketing-body .leistungen-unterseite-sub-vorteile-agency-slide p {
  transition: color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide {
  background-color: rgba(0,0,0,1.00);
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide-number {
  color: rgba(227,249,82,0.5);
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide h3 {
  color: rgba(227,249,82,0.95);
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide p {
  color: rgba(227,249,82,0.95);
}

/* FAQ-Sektion */
.online-marketing-body .leistungen-unterseite-sub-faq-container {
  transition: background-color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-container {
  background-color: rgba(227,249,82,1.00);
}
.online-marketing-body .leistungen-unterseite-sub-faq-container-headline h2,
.online-marketing-body .leistungen-unterseite-sub-faq-container-headline p {
  transition: color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-container-headline h2 {
  color: rgba(0,0,0,0.9) !important;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-container-headline p {
  color: rgba(0,0,0,0.5) !important;
}
.online-marketing-body .leistungen-unterseite-sub-faq-accordion-headline {
  transition: color 500ms ease, border-bottom-color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-headline {
  color: rgba(0,0,0,0.95) !important;
  border-bottom-color: rgba(0,0,0,0.3) !important;
}
.online-marketing-body .leistungen-unterseite-sub-faq-accordion-headline::after {
  transition: border-right-color 500ms ease, border-bottom-color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-headline::after {
  border-right-color: rgba(0,0,0,0.5) !important;
  border-bottom-color: rgba(0,0,0,0.5) !important;
}
.online-marketing-body .leistungen-unterseite-sub-faq-accordion-content {
  transition: color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-content {
  color: rgba(0,0,0,0.7) !important;
}
.online-marketing-body .leistungen-unterseite-sub-faq-accordion-content-headline {
  transition: color 500ms ease;
}
.online-marketing-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-content-headline {
  color: rgba(0,0,0,0.95);
}


/* ============================================================
   seo-body: Footer-Blend gelb (site-footer--yellow)
   ============================================================ */

.seo-body {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.seo-body.is-footer-approaching--yellow {
  background-color: rgba(227,249,82,1.00);
}

/* Vorteile-Sektion */
.seo-body .leistungen-unterseite-sub-vorteile {
  transition: background-color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile {
  background-color: rgba(227,249,82,1.00);
}
.seo-body .leistungen-unterseite-sub-vorteile-slide {
  transition: background-color 500ms ease;
}
.seo-body .leistungen-unterseite-sub-vorteile-slide-number,
.seo-body .leistungen-unterseite-sub-vorteile-slide h3,
.seo-body .leistungen-unterseite-sub-vorteile-slide p {
  transition: color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide {
  background-color: rgba(0,0,0,1.00);
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide-number {
  color: rgba(227,249,82,0.85);
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide h3 {
  color: rgba(227,249,82,0.95);
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-slide p {
  color: rgba(227,249,82,0.5);
}

/* Swiper-Navs: weiße Basis-Bg → schwarz → gelb */
.seo-body .swiper-nav--vorteile,
.seo-body .swiper-nav--agency {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .swiper-nav--vorteile,
.seo-body.is-footer-approaching--yellow .swiper-nav--agency {
  background-color: rgba(227,249,82,1.00) !important;
}

/* Team-Sektion */
.seo-body .leistungen-unterseite-sub-team {
  transition: background-color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team {
  background-color: rgba(227,249,82,1.00);
}
.seo-body .leistungen-unterseite-sub-team-headline {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-headline {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}
.seo-body .leistungen-unterseite-sub-team-content h4,
.seo-body .leistungen-unterseite-sub-team-content h3 {
  transition: color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h4,
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h3 {
  color: rgba(0,0,0,0.95);
}
.seo-body .leistungen-unterseite-sub-team-content h4 span,
.seo-body .leistungen-unterseite-sub-team-content h3 span {
  transition: text-decoration-color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h4 span,
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h3 span {
  text-decoration-color: rgba(0,0,0,0.95);
}
.seo-body .leistungen-unterseite-sub-team-content p {
  transition: color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content p {
  color: rgba(0,0,0,0.55);
}
.seo-body .leistungen-unterseite-sub-team-content-headline {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content-headline {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}
.seo-body .leistungen-unterseite-sub-team-content-button {
  transition: color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content-button {
  color: rgba(0,0,0,0.7);
}

/* Kundenlogos */
.seo-body .leistungen-unterseite-sub-logos {
  transition: background-color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-logos {
  background-color: rgba(227,249,82,1.00) !important;
}
.seo-body .kundenlogos-mobil-container {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .kundenlogos-mobil-container {
  background-color: rgba(227,249,82,1.00);
}

/* Agency-Sektion */
.seo-body .leistungen-unterseite-sub-vorteile-agency {
  transition: background-color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency {
  background-color: rgba(227,249,82,1.00);
}
.seo-body .leistungen-unterseite-sub-vorteile-agency h2,
.seo-body .leistungen-unterseite-sub-vorteile-agency h4 {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency h2,
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency h4 {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}
.seo-body .leistungen-unterseite-sub-vorteile-agency-slide {
  transition: background-color 500ms ease;
}
.seo-body .leistungen-unterseite-sub-vorteile-agency-slide-number,
.seo-body .leistungen-unterseite-sub-vorteile-agency-slide h3,
.seo-body .leistungen-unterseite-sub-vorteile-agency-slide p {
  transition: color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide {
  background-color: rgba(0,0,0,1.00);
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide-number {
  color: rgba(227,249,82,0.5);
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide h3 {
  color: rgba(227,249,82,0.95);
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide p {
  color: rgba(227,249,82,0.95);
}

/* FAQ-Sektion */
.seo-body .leistungen-unterseite-sub-faq-container {
  transition: background-color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-container {
  background-color: rgba(227,249,82,1.00);
}
.seo-body .leistungen-unterseite-sub-faq-container-headline h2,
.seo-body .leistungen-unterseite-sub-faq-container-headline p {
  transition: color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-container-headline h2 {
  color: rgba(0,0,0,0.9) !important;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-container-headline p {
  color: rgba(0,0,0,0.5) !important;
}
.seo-body .leistungen-unterseite-sub-faq-accordion-headline {
  transition: color 500ms ease, border-bottom-color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-headline {
  color: rgba(0,0,0,0.95) !important;
  border-bottom-color: rgba(0,0,0,0.3) !important;
}
.seo-body .leistungen-unterseite-sub-faq-accordion-headline::after {
  transition: border-right-color 500ms ease, border-bottom-color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-headline::after {
  border-right-color: rgba(0,0,0,0.5) !important;
  border-bottom-color: rgba(0,0,0,0.5) !important;
}
.seo-body .leistungen-unterseite-sub-faq-accordion-content {
  transition: color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-content {
  color: rgba(0,0,0,0.7) !important;
}
.seo-body .leistungen-unterseite-sub-faq-accordion-content-headline {
  transition: color 500ms ease;
}
.seo-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-content-headline {
  color: rgba(0,0,0,0.95);
}


/* ============================================================
   design-agentur-body: Footer-Blend gelb (site-footer--yellow)
   ============================================================ */

.design-agentur-body {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow {
  background-color: rgba(227,249,82,1.00);
}

/* Swiper-Nav Agency: weiße Basis-Bg → schwarz → gelb */
.design-agentur-body .swiper-nav--agency {
  background-color: rgba(0,0,0,1.00) !important;
  transition: background-color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow .swiper-nav--agency {
  background-color: rgba(227,249,82,1.00) !important;
}

/* Team-Sektion */
.design-agentur-body .leistungen-unterseite-sub-team {
  transition: background-color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team {
  background-color: rgba(227,249,82,1.00);
}
.design-agentur-body .leistungen-unterseite-sub-team-headline {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-headline {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}
.design-agentur-body .leistungen-unterseite-sub-team-content h4,
.design-agentur-body .leistungen-unterseite-sub-team-content h3 {
  transition: color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h4,
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h3 {
  color: rgba(0,0,0,0.95);
}
.design-agentur-body .leistungen-unterseite-sub-team-content h4 span,
.design-agentur-body .leistungen-unterseite-sub-team-content h3 span {
  transition: text-decoration-color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h4 span,
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h3 span {
  text-decoration-color: rgba(0,0,0,0.95);
}
.design-agentur-body .leistungen-unterseite-sub-team-content p {
  transition: color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content p {
  color: rgba(0,0,0,0.55);
}
.design-agentur-body .leistungen-unterseite-sub-team-content-headline {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content-headline {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}
.design-agentur-body .leistungen-unterseite-sub-team-content-button {
  transition: color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content-button {
  color: rgba(0,0,0,0.7);
}

/* Kundenlogos */
.design-agentur-body .leistungen-unterseite-sub-logos {
  transition: background-color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-logos {
  background-color: rgba(227,249,82,1.00) !important;
}
.design-agentur-body .kundenlogos-mobil-container {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow .kundenlogos-mobil-container {
  background-color: rgba(227,249,82,1.00);
}

/* Agency-Sektion */
.design-agentur-body .leistungen-unterseite-sub-vorteile-agency {
  transition: background-color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency {
  background-color: rgba(227,249,82,1.00);
}
.design-agentur-body .leistungen-unterseite-sub-vorteile-agency h2,
.design-agentur-body .leistungen-unterseite-sub-vorteile-agency h4 {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency h2,
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency h4 {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}
.design-agentur-body .leistungen-unterseite-sub-vorteile-agency-slide {
  transition: background-color 500ms ease;
}
.design-agentur-body .leistungen-unterseite-sub-vorteile-agency-slide-number,
.design-agentur-body .leistungen-unterseite-sub-vorteile-agency-slide h3,
.design-agentur-body .leistungen-unterseite-sub-vorteile-agency-slide p {
  transition: color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide {
  background-color: rgba(0,0,0,1.00);
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide-number {
  color: rgba(227,249,82,0.5);
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide h3 {
  color: rgba(227,249,82,0.95);
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide p {
  color: rgba(227,249,82,0.95);
}

/* FAQ-Sektion */
.design-agentur-body .leistungen-unterseite-sub-faq-container {
  transition: background-color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-container {
  background-color: rgba(227,249,82,1.00);
}
.design-agentur-body .leistungen-unterseite-sub-faq-container-headline h2,
.design-agentur-body .leistungen-unterseite-sub-faq-container-headline p {
  transition: color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-container-headline h2 {
  color: rgba(0,0,0,0.9) !important;
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-container-headline p {
  color: rgba(0,0,0,0.5) !important;
}
.design-agentur-body .leistungen-unterseite-sub-faq-accordion-headline {
  transition: color 500ms ease, border-bottom-color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-headline {
  color: rgba(0,0,0,0.95) !important;
  border-bottom-color: rgba(0,0,0,0.3) !important;
}
.design-agentur-body .leistungen-unterseite-sub-faq-accordion-headline::after {
  transition: border-right-color 500ms ease, border-bottom-color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-headline::after {
  border-right-color: rgba(0,0,0,0.5) !important;
  border-bottom-color: rgba(0,0,0,0.5) !important;
}
.design-agentur-body .leistungen-unterseite-sub-faq-accordion-content {
  transition: color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-content {
  color: rgba(0,0,0,0.7) !important;
}
.design-agentur-body .leistungen-unterseite-sub-faq-accordion-content-headline {
  transition: color 500ms ease;
}
.design-agentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-content-headline {
  color: rgba(0,0,0,0.95);
}


/* ============================================================
   webagentur-body: Footer-Blend gelb (site-footer--yellow)
   ============================================================ */

.webagentur-body {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow {
  background-color: rgba(227,249,82,1.00);
}

/* Swiper-Nav Agency: weiße Basis-Bg → schwarz → gelb */
.webagentur-body .swiper-nav--agency {
  background-color: rgba(0,0,0,1.00) !important;
  transition: background-color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow .swiper-nav--agency {
  background-color: rgba(227,249,82,1.00) !important;
}

/* Team-Sektion */
.webagentur-body .leistungen-unterseite-sub-team {
  transition: background-color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team {
  background-color: rgba(227,249,82,1.00);
}
.webagentur-body .leistungen-unterseite-sub-team-headline {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-headline {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}
.webagentur-body .leistungen-unterseite-sub-team-content h4,
.webagentur-body .leistungen-unterseite-sub-team-content h3 {
  transition: color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h4,
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h3 {
  color: rgba(0,0,0,0.95);
}
.webagentur-body .leistungen-unterseite-sub-team-content h4 span,
.webagentur-body .leistungen-unterseite-sub-team-content h3 span {
  transition: text-decoration-color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h4 span,
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h3 span {
  text-decoration-color: rgba(0,0,0,0.95);
}
.webagentur-body .leistungen-unterseite-sub-team-content p {
  transition: color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content p {
  color: rgba(0,0,0,0.55);
}
.webagentur-body .leistungen-unterseite-sub-team-content-headline {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content-headline {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}
.webagentur-body .leistungen-unterseite-sub-team-content-button {
  transition: color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content-button {
  color: rgba(0,0,0,0.7);
}

/* Kundenlogos */
.webagentur-body .leistungen-unterseite-sub-logos {
  transition: background-color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-logos {
  background-color: rgba(227,249,82,1.00) !important;
}
.webagentur-body .kundenlogos-mobil-container {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow .kundenlogos-mobil-container {
  background-color: rgba(227,249,82,1.00);
}

/* Agency-Sektion */
.webagentur-body .leistungen-unterseite-sub-vorteile-agency {
  transition: background-color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency {
  background-color: rgba(227,249,82,1.00);
}
.webagentur-body .leistungen-unterseite-sub-vorteile-agency h2,
.webagentur-body .leistungen-unterseite-sub-vorteile-agency h4 {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency h2,
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency h4 {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}
.webagentur-body .leistungen-unterseite-sub-vorteile-agency-slide {
  transition: background-color 500ms ease;
}
.webagentur-body .leistungen-unterseite-sub-vorteile-agency-slide-number,
.webagentur-body .leistungen-unterseite-sub-vorteile-agency-slide h3,
.webagentur-body .leistungen-unterseite-sub-vorteile-agency-slide p {
  transition: color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide {
  background-color: rgba(0,0,0,1.00);
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide-number {
  color: rgba(227,249,82,0.5);
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide h3 {
  color: rgba(227,249,82,0.95);
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide p {
  color: rgba(227,249,82,0.95);
}

/* FAQ-Sektion */
.webagentur-body .leistungen-unterseite-sub-faq-container {
  transition: background-color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-container {
  background-color: rgba(227,249,82,1.00);
}
.webagentur-body .leistungen-unterseite-sub-faq-container-headline h2,
.webagentur-body .leistungen-unterseite-sub-faq-container-headline p {
  transition: color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-container-headline h2 {
  color: rgba(0,0,0,0.9) !important;
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-container-headline p {
  color: rgba(0,0,0,0.5) !important;
}
.webagentur-body .leistungen-unterseite-sub-faq-accordion-headline {
  transition: color 500ms ease, border-bottom-color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-headline {
  color: rgba(0,0,0,0.95) !important;
  border-bottom-color: rgba(0,0,0,0.3) !important;
}
.webagentur-body .leistungen-unterseite-sub-faq-accordion-headline::after {
  transition: border-right-color 500ms ease, border-bottom-color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-headline::after {
  border-right-color: rgba(0,0,0,0.5) !important;
  border-bottom-color: rgba(0,0,0,0.5) !important;
}
.webagentur-body .leistungen-unterseite-sub-faq-accordion-content {
  transition: color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-content {
  color: rgba(0,0,0,0.7) !important;
}
.webagentur-body .leistungen-unterseite-sub-faq-accordion-content-headline {
  transition: color 500ms ease;
}
.webagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-content-headline {
  color: rgba(0,0,0,0.95);
}


/* ============================================================
   werbeagentur-body: Footer-Blend gelb (site-footer--yellow)
   ============================================================ */

.werbeagentur-body {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow {
  background-color: rgba(227,249,82,1.00);
}

/* Swiper-Nav Agency: weiße Basis-Bg → schwarz → gelb */
.werbeagentur-body .swiper-nav--agency {
  background-color: rgba(0,0,0,1.00) !important;
  transition: background-color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow .swiper-nav--agency {
  background-color: rgba(227,249,82,1.00) !important;
}

/* Team-Sektion */
.werbeagentur-body .leistungen-unterseite-sub-team {
  transition: background-color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team {
  background-color: rgba(227,249,82,1.00);
}
.werbeagentur-body .leistungen-unterseite-sub-team-headline {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-headline {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}
.werbeagentur-body .leistungen-unterseite-sub-team-content h4,
.werbeagentur-body .leistungen-unterseite-sub-team-content h3 {
  transition: color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h4,
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h3 {
  color: rgba(0,0,0,0.95);
}
.werbeagentur-body .leistungen-unterseite-sub-team-content h4 span,
.werbeagentur-body .leistungen-unterseite-sub-team-content h3 span {
  transition: text-decoration-color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h4 span,
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content h3 span {
  text-decoration-color: rgba(0,0,0,0.95);
}
.werbeagentur-body .leistungen-unterseite-sub-team-content p {
  transition: color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content p {
  color: rgba(0,0,0,0.55);
}
.werbeagentur-body .leistungen-unterseite-sub-team-content-headline {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content-headline {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}
.werbeagentur-body .leistungen-unterseite-sub-team-content-button {
  transition: color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-team-content-button {
  color: rgba(0,0,0,0.7);
}

/* Kundenlogos */
.werbeagentur-body .leistungen-unterseite-sub-logos {
  transition: background-color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-logos {
  background-color: rgba(227,249,82,1.00) !important;
}
.werbeagentur-body .kundenlogos-mobil-container {
  background-color: rgba(0,0,0,1.00);
  transition: background-color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow .kundenlogos-mobil-container {
  background-color: rgba(227,249,82,1.00);
}

/* Agency-Sektion */
.werbeagentur-body .leistungen-unterseite-sub-vorteile-agency {
  transition: background-color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency {
  background-color: rgba(227,249,82,1.00);
}
.werbeagentur-body .leistungen-unterseite-sub-vorteile-agency h2,
.werbeagentur-body .leistungen-unterseite-sub-vorteile-agency h4 {
  transition: color 500ms ease, text-decoration-color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency h2,
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency h4 {
  color: rgba(0,0,0,0.95);
  text-decoration-color: rgba(0,0,0,0.95);
}
.werbeagentur-body .leistungen-unterseite-sub-vorteile-agency-slide {
  transition: background-color 500ms ease;
}
.werbeagentur-body .leistungen-unterseite-sub-vorteile-agency-slide-number,
.werbeagentur-body .leistungen-unterseite-sub-vorteile-agency-slide h3,
.werbeagentur-body .leistungen-unterseite-sub-vorteile-agency-slide p {
  transition: color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide {
  background-color: rgba(0,0,0,1.00);
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide-number {
  color: rgba(227,249,82,0.5);
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide h3 {
  color: rgba(227,249,82,0.95);
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-vorteile-agency-slide p {
  color: rgba(227,249,82,0.95);
}

/* FAQ-Sektion */
.werbeagentur-body .leistungen-unterseite-sub-faq-container {
  transition: background-color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-container {
  background-color: rgba(227,249,82,1.00);
}
.werbeagentur-body .leistungen-unterseite-sub-faq-container-headline h2,
.werbeagentur-body .leistungen-unterseite-sub-faq-container-headline p {
  transition: color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-container-headline h2 {
  color: rgba(0,0,0,0.9) !important;
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-container-headline p {
  color: rgba(0,0,0,0.5) !important;
}
.werbeagentur-body .leistungen-unterseite-sub-faq-accordion-headline {
  transition: color 500ms ease, border-bottom-color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-headline {
  color: rgba(0,0,0,0.95) !important;
  border-bottom-color: rgba(0,0,0,0.3) !important;
}
.werbeagentur-body .leistungen-unterseite-sub-faq-accordion-headline::after {
  transition: border-right-color 500ms ease, border-bottom-color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-headline::after {
  border-right-color: rgba(0,0,0,0.5) !important;
  border-bottom-color: rgba(0,0,0,0.5) !important;
}
.werbeagentur-body .leistungen-unterseite-sub-faq-accordion-content {
  transition: color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-content {
  color: rgba(0,0,0,0.7) !important;
}
.werbeagentur-body .leistungen-unterseite-sub-faq-accordion-content-headline {
  transition: color 500ms ease;
}
.werbeagentur-body.is-footer-approaching--yellow .leistungen-unterseite-sub-faq-accordion-content-headline {
  color: rgba(0,0,0,0.95);
}




















