div#modul-wrapper {
    max-width: 1920px;
}

.small-space{margin-bottom:60px !important;}
.middle-space{margin-bottom:120px !important;}
.big-space{margin-bottom:180px !important;}

div#modul-wrapper.seitenabstand  {
    padding-top: 120px;
}
.seitenabstand-an header#head {
   width: 100%;
    height: auto;
    position: absolute;
    z-index: 10000;
    top: 7px;
}
.background-grey{background-color:#e5e8ea;}


.back-btn-wrapper{margin-left:0px;margin-bottom:50px;}

.anchor {
    clear: both;
    overflow: hidden;
    display: block;
position: relative;
    top: -60px;
}

@media screen and (max-width:1340px){
.hide-on-mobile {
    display: none;
}	
	
	.back-btn-wrapper{margin-left:30px;}

	
.small-space{margin-bottom:30px !important;}
.middle-space{margin-bottom:60px !important;}
.big-space{margin-bottom:120px !important;}
}

@media screen and (max-width:768px){
.hide-on-mobile {
    display: none;
}	
	
.small-space{margin-bottom:30px !important;}
.middle-space{margin-bottom:60px !important;}
.big-space{margin-bottom:80px !important;}
}





/*stöerer*/

.stoerer-el {
    color: #fff;
    background: linear-gradient(180deg, #1782be, #1fb4b6) !important;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 100%;
    font-weight: 600;
    position: absolute;
    overflow: hidden; /* Wichtig für das runde ::before */
    z-index: 1;
}

/* Der Hover-Verlauf als Overlay */
.stoerer-el::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1fb4b6, #1782be) !important;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: -1;
}

/* Bei Hover wird das Overlay sichtbar */
.stoerer-el:hover::before {
    opacity: 1;
}

/* Inhalt über dem Background halten */
.storer-text, a.storer-link {
    z-index: 2;
}





@media screen and (max-width:1660px){
	.stoerer-el {
		width: 150px;
		height: 150px;
	}
	.storer-text {
		font-size: 1.3rem;
	}
}
@media screen and (max-width:1340px){
	.storer-text {
		font-size: 1.9rem;
	}
}
@media screen and (max-width:768px){
	.stoerer-el {
		width: 100px;
		height: 100px;
	}
	.storer-text {
		font-size: 1rem;
		padding-top: 10px;
	}
}






@media screen and (max-width:1340px){}
@media screen and (max-width:1080px){}
@media screen and (max-width:768px){}









/*\\\\\\\\\\\\\\\\\\\\ REFERNZEN ////////////////////*/
a.link-ref {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

section.referenzen_wrapper.con {
    width: 100%;
    background: #f2f2f2;
    padding: 120px 0px;
}

.referenzen_inner_wrapper {
    margin: 0 auto;
    width: 1600px;
}

.referenzen-inner_wrapper{
	display:grid;
	grid-template-columns:repeat(4, 1fr);
	gap:20px;
}

/* Quadrat */
.referenzen-el {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
    background: #fff;
    color: #000 !important;
    padding: 15px 15px 150px 15px;
}

/* Bild füllt das Quadrat komplett */

.referenzen-bild img {
    width: 50%;
    float: left;
    margin: 0 15px 10px 0;
    border-radius: 10px;
    position: absolute;
    bottom: 5px;
    left: 15px;
}
.referenzen-name {
    font-weight: 600;
}
.referenzen-text {
    font-size: 18px;
    line-height: 120%;
    padding-top: 20px;
}

/* Link über gesamte Box */
.link-ref{
	position:absolute;
	inset:0;
	z-index:5;
}

.referenzen-bild img {
    border: 1px solid #cccccc;
}






/* "Mehr anzeigen" ButtonStyling */
.btn-read-more , .btn-read-more:hover{
    background: none;
    border: none;
    color: #000; /* Oder deine Wunschfarbe */
    text-decoration: none;
    font-weight: 600;
    padding: 0;
    margin-top: 5px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    z-index: 10; /* Wichtig: Überlagert den vollflächigen .link-ref */
    background: linear-gradient(to right, #1782be, #1fb4b6); -webkit-background-clip: text; background-clip: text; color: transparent;
    font-size: 16px;
}

/* Lightbox Grundgerüst */
.ref-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.ref-lightbox[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.ref-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

/* Lightbox Box - Responsive */
.ref-lightbox-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: 12px;
    padding: 40px 30px 30px 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    overflow-y: auto;
    z-index: 1;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.ref-lightbox[aria-hidden="false"] .ref-lightbox-content {
    transform: translateY(0);
}

/* Schließen Button */
.ref-lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: #333 !important;
    padding: 0;
    background: #fff !important;
}
.ref-lightbox-name {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 15px;
}

.ref-lightbox-text {
    font-size: 18px;
    line-height: 140%;
}

@media(max-width:1660px){

.referenzen_inner_wrapper {
    width: 100%;
}
	
    .referenzen_inner_wrapper {
        width: 100%;
        padding: 0 30px;
    }
    span.teaser-text {
    font-size: 16px;
    line-height: 100%;
}
.referenzen-name {
    font-size: 18px;
    line-height: 120%;
}
}


@media(max-width:1340px){
    .referenzen-text {
        padding-top: 5px;
    }
}
@media(max-width:1240px){
    .referenzen-text {
        padding-top: 5px;
    }
    .referenzen-bild img{display:none;}
}
@media(max-width:1140px){
    .referenzen-bild img{display:block;}
	.referenzen-inner_wrapper{
		grid-template-columns:repeat(2, 1fr);
	}

}

@media(max-width:768px){
	.referenzen-inner_wrapper{
		grid-template-columns:1fr;
	}

    .referenzen-el {
        aspect-ratio: auto;
    }
    .referenzen-bild img {
        position: static;
        width: 100%;
        margin-top:10px;
    }

    .referenzen-el {
    padding: 15px 15px 15px 15px;
}


}





/*//////////////////////////////////////////////////////////////////////////
///////////////////////////////////// MITARBEITER MODUL /////////////////////////////////////
////////////////////////////////////////////////////////////////////////// */





.mitarbeiter-bild img { width: 100%; display: block; }

/* ===============================
   MITARBEITER GRID
   =============================== */


section.mitarbeiter_wrapper { width: 1800px; margin: 0 auto; }
.mitarbeiter_inner_wrapper { width: 1600px; }

.mitarbeiter-inner_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.mitarbeiter_einleitung { padding: 0 0 30px; }
section.mitarbeiter_wrapper.zentrieren .mitarbeiter_inner_wrapper { margin: 0 auto; text-align: center; }


/* Grid Item */
.mitarbeiter-el {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* verhindert Konflikte mit alten Float-Systemen */
.mitarbeiter-el.c03 {
  width: auto;
}

/* ===============================
   BILD (Quadratisch)
   =============================== */

.mitarbeiter-bild {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
	    border-radius: 15px;
}

.mitarbeiter-bild picture,
.mitarbeiter-bild img {
  width: 100%;
  height: 100%;
  display: block;
}

.mitarbeiter-bild img {
  object-fit: cover;
}

/* ===============================
   NAME OVERLAY
   =============================== */

.mitarbeiter-name { position: absolute; left: 12px; bottom: 12px; color: #fff; font-weight: 600; font-size: 1rem; padding: 10px 15px; background: #142f64; backdrop-filter: blur(3px); border-radius: 5px; }

/* ===============================
   TEXT UNTER DEM BILD
   =============================== */

.mitarbeiter-text { margin-top: 10px; font-size: 0.9rem; line-height: 1.4; flex-grow: 1; padding: 30px; }





.mitarbeiter-zitat {
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background-color:#1782be;
    color:#fff;
    opacity:0;
    transition:1s ease-in-out all;
    padding:120px 30px 0;

    background-image:
        url(../images/zitat01_white.png),
        linear-gradient(45deg, #1782be, #1fb4b6);

    background-position:
        top 30px left 30px,
        center;

    background-repeat:
        no-repeat,
        no-repeat;

    background-size:
        60px,
        cover;
}.mitarbeiter-el.c03:hover .mitarbeiter-zitat{ opacity: 1;}
/* ===============================
   RESPONSIVE
   =============================== */



@media screen and (max-width:1840px){
   .mitarbeiter_inner_wrapper {
        padding: 0 30px;
    }
    section.mitarbeiter_wrapper {
        width: 100%;
        margin: 0 auto;
    }
}

@media screen and (max-width:1640px){
    .mitarbeiter_inner_wrapper {
        width: 100% !important;
    }
    .mitarbeiter-inner_wrapper {
        gap: 30px;
    }
}
@media screen and (max-width:1340px){

.mitarbeiter-text {
    padding: 30px 0;
}
.mitarbeiter-zitat {
    font-size: 16px;
    line-height: 120%;
    padding-top: 100px;
}
}

@media (max-width: 1024px) {
  .mitarbeiter-inner_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

.mitarbeiter-zitat{
        padding: 80px 30px 60px 30px;
}

.mitarbeiter-zitat {
    background-size: 30px, cover;
}
}
@media (max-width: 500px) {
  .mitarbeiter-inner_wrapper {
    grid-template-columns: 1fr;
  }
}

/*//////////////////////////////////////////////////////////////////////////
///////////////////////////////////// BOX MIT HOCHFORMAT MODUL /////////////////////////////////////
////////////////////////////////////////////////////////////////////////// */


	
	.box_mit_hochformat_inner-wrapper {
    background: #1782be;
    height: auto;
    border-radius: 25px;
    padding: 60px;
    position: relative;
		width: 1800px;
		margin:0 auto;
		color:#fff;
}
.bild_hochformat_text { width: 55%; }
.bild_hochformat_text ul li{
    background-image: url(../images/check-icon-white.svg);
}
.box_mit_hochformat_inner-wrapper h2, .box_mit_hochformat.middle-space h3 {color:#fff;}

.bild_hochformat_bild img {
    width: 100%;
    display: block;
}
.bild_hochformat_bild {
    position: absolute;
    top: -100px;
    right: 100px;
    width: 33%;
    border-radius: 10px;
    overflow: hidden;
}


@media screen and (max-width:1880px){
	.box_mit_hochformat_inner-wrapper {
			width: 100%;
	}
    .box_mit_hochformat {
    padding: 0 30px;
}
}


/*//////////////////////////////////////////////////////////////////////////
///////////////////////////////////// INTRO MODUL /////////////////////////////////////
////////////////////////////////////////////////////////////////////////// */



section.intro-modul { background: #e7e8ee; float: left;     width: 100%;}
.startseite-on .intro-modul-wrapper {     padding-top: 135px; }
.intro-text-element { float: left; width: 55%; padding-left: 95px; }
.intro-bild-element { width: 45%; position: relative; float: left; }
img.wappen { z-index: 2; position: absolute; top: -20px; width: 15%; left: 100px; display:none;}
img.logo-intro-modul { width: 450px; padding: 0 0 100px; display:none;}
.startseite-on img.logo-intro-modul, .startseite-on img.wappen { display:block;}

.intro-modul-wrapper h1, .intro-modul-wrapper h2 { background: linear-gradient(to right, #1782be, #1fb4b6); -webkit-background-clip: text; background-clip: text; color: transparent; }
img.intro_img { border-top-left-radius: 20px; border-bottom-left-radius: 20px; position: relative; display: block; z-index: 1; bottom: -190px;     float: right;}
.page-id-187 img.intro_img {
    bottom: -60px;
}
.startseite-on img.intro_img {  bottom: -60px;     float: right;}
img.intro_img {
    width: 100%;
}

.intro_modul_bullet {     font-weight: 500;background-image: url(../images/check-icon.svg); padding-left: 35px; background-position: left center; background-size: 20px; background-repeat: no-repeat; float: left; padding-right: 15px; font-size: .8rem; }
.intro-icon-wrapper { padding-bottom: 120px; }

a.intro_newsletter_btn { position: absolute; bottom: -160px; right: 160px; z-index: 100; }
a.intro_newsletter_btn.btn.button img { position: absolute; right: -70px; width: 50px; }

.intro_modul_text01{padding-top:160px ;}
.startseite-on .intro_modul_text01{padding-top:0px ;}
.intro_modul_text01, .intro_modul_text02{padding-right:120px;}


@media screen and (max-width: 2160px) {
section.intro-modul.middle-space {
    margin-bottom: 260px !important;
}
}
@media screen and (max-width: 1870px) {
img.intro_img {
    width: 100%;
}
section.intro-modul.middle-space {
    margin-bottom: 80px!important;
}
}

@media screen and (max-width: 1660px) {
  .intro-text-element {
    width: 50%;
    padding-left: 60px;
    padding-right: 40px;
  }
  .intro-bild-element {
    width: 50%;
  }

}




@media screen and (max-width: 1340px) {
img.intro_img {
    width: 100%;
}
.intro_modul_text01, .intro_modul_text02 {
    padding-right: 0;
}

.startseite-on .intro-modul-wrapper {
    padding-top: 74px;
}

img.logo-intro-modul {
    width: 350px;
    padding: 0 0 80px;
    display: none;
    margin-top: -30px;
}

}

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

.bild_hochformat_bild {
    top: -50px;
    right: 30px;
}
}
@media screen and (max-width: 768px) {
    .box_mit_hochformat_inner-wrapper {

    padding: 30px;
    }
        .bild_hochformat_bild {
        top: -50px;
        right: 30px;
        clear: both;
        overflow: hidden;
        width: 100%;
        position: static;
    }
.bild_hochformat_text {
    width: 100%;
}
  .intro-modul-wrapper {
    padding-top: 80px;
  }
  .intro-text-element,
  .intro-bild-element {
    width: 100%;
    float: none;
  }
  .intro-text-element {
    padding: 0 30px 40px;
  }
  .intro-bild-element {
    padding: 0 30px;
  }
  img.intro_img, .startseite-on img.intro_img {
    bottom: 0;
    border-radius: 20px;
  }
  .page-id-187 img.intro_img {
    bottom: 0px;
}
  .intro_modul_text01,
  .intro_modul_text02 {
    padding-right: 0;
  }
  .intro-icon-wrapper {
    padding-bottom: 60px;
  }
  a.intro_newsletter_btn {
    position: relative;
    right: auto;
    bottom: auto;
    display: inline-block;
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .startseite-on .intro-modul-wrapper {
    padding-top: 80px;
  }
  .intro_modul_text01 {
    padding-top: 40px;
  }
  img.logo-intro-modul {
    width: 320px;
    padding-bottom: 60px;
  }
}

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

    .intro-text-element p a.btn:last-child {
    margin: 0;
}
  section.intro-modul {
    padding-bottom: 40px;
  }
  .intro-text-element {
    padding: 0 20px 30px;
  }
  .intro-bild-element {
    padding: 0 20px;
  }
  img.intro_img {
    border-radius: 16px;
  }
  .intro_modul_bullet {
    width: 100%;
    margin-bottom: 10px;
  }
  .intro-icon-wrapper {
    padding-bottom: 30px;
  }
  img.logo-intro-modul {
    width: 240px;
    padding-bottom: 40px;
  }
      img.logo-intro-modul {
        width: 180px;
        padding-bottom: 40px;
    }
}


@media screen and (max-width: 400px) {
   img.logo-intro-modul {
        width: 150px;
    }
}
/*//////////////////////////////////////////////////////////////////////////
///////////////////////////////////// ZAHLEN MODUL /////////////////////////////////////
////////////////////////////////////////////////////////////////////////// */

img.zahl-icon { width: 70px; float: left; padding-right: 30px; }
.zahlen-rechts.c02 { background: #142f64; color: #fff; padding:60px; /* box-sizing: border-box; */ border-top-left-radius: 25px; border-bottom-left-radius: 25px; }
.zahlen-icon-links.c02 {
    padding: 100px 80px 30px 120px;
}
section.con.zahlen_modul { width: 100%; }
.zahlen-icon-text strong { color: #209d9f; }

.zahl-zahlenmodul { background: linear-gradient(
  to right,
  #1782be 10%,
  #1fb4b6 50%
);
 -webkit-background-clip: text; background-clip: text; color: transparent; font-size: 3rem; line-height: 140%; font-weight: 600; }

.zahl-zahlenmodul { position: relative; } 
.zahl-zahlenmodul span { color: #fff; font-size: 1.8rem; position: relative; top: -40px; right: 0px; }
.counter-value { display: inline-block; }
.zahl-wrapper.c03 { text-align: center; }
.con {
    margin-left: 0;
}
.zahlen-icon-text p {
    font-size: 1.2rem;
    margin: 15px 0px;
}
.zahlen-icon-links.c02 { padding-left: 120px; }

.text-zahlenmodul { padding: 0 10px; font-size: .8rem; }

@media screen and (max-width: 1660px) {
  .zahlen-rechts.c02 {
    padding: 50px;
  }
  .zahlen-icon-links.c02 {
    padding: 80px 60px 30px 80px;
  }

  .zahl-zahlenmodul {
        font-size: 2.3rem;
    }
}

@media screen and (max-width: 1340px) {
      .zahl-zahlenmodul {
        font-size: 1.8rem;
    }
  .zahlen-rechts.c02 {
    padding: 40px;
  }
  .zahlen-icon-links.c02 {
    padding: 60px 40px 30px 60px;
  }
  img.zahl-icon {
    width: 60px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 1080px) {
  .zahlen-rechts.c02 {
    border-radius: 20px;
  }
  .zahlen-icon-links.c02 {
    padding: 40px 25px 25px 40px;
  }
  .zahlen-icon-text p {
    font-size: 1.05rem;
  }
    .zahl-zahlenmodul {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 768px) {
      .zahl-zahlenmodul {
        font-size: 2.3rem;
    }
  .zahlen-rechts.c02 {
    padding: 25px 20px;
  }
  .zahlen-icon-links.c02 {
    padding: 20px 15px 20px 20px;
  }
  img.zahl-icon {
    float: none;
    display: block;
    width: 50px;
    padding-right: 0;
    margin: 0 auto 15px;
  }
  .zahl-zahlenmodul {
    font-size: 2.2rem;
  }
  .zahl-zahlenmodul span {
    font-size: 1.2rem;
    top: -18px;
    display: block;
  }
  .zahl-wrapper.c03 {
    margin-bottom: 20px;
  }
  .text-zahlenmodul {
    padding: 0;
  }
  section.con.zahlen_modul {
    width: 100%;
    padding-right: 30px;
    padding-left: 30px;
}
}

/*//////////////////////////////////////////////////////////////////////////
///////////////////////////////////// HEAD / SLIDER MODUL /////////////////////////////////////
////////////////////////////////////////////////////////////////////////// */

h2.head-slider-headline span:last-child { background: #142f64; color: #fff; }
.head-slider-headline {
    display: inline-block;
    padding: 0;
    font-weight: bold;
    position: absolute;
    line-height: 100%;
    bottom: 0%;
    z-index: 100;
    left: 0;
	opacity: 0;
	-webkit-transition:1s ease-in-out all;
	transition:1s ease-in-out all;
}

.ani .head-slider-headline{
	bottom: 10%;
	opacity: 1;
}
.head-slider-headline span {
    background-color: #ffffff;
    display: inline-block;
    margin-bottom: 5px;
    padding: 20px 30px 20px 100px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.kontrast01 .head-slider-headline span {
    background: #000;
}

section#head-slider-modul {
    width: 100%;
    padding-left: 100px;
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition:1s ease-in-out all;
	transition:1s ease-in-out all;
}
section#head-slider-modul.ani {
	top: 0px;
	opacity: 1;
}
.head-slider-modul-inner-wrapper {
 position: relative;
  width: 100%;         /* oder z. B. max-width: 1366px */
  height: 700px;       /* Feste Höhe */
  overflow: hidden;
	border-bottom-left-radius: 30px;
}

.head-slider-modul-inner-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  right:0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1);
  transition: transform 6s ease-in-out, opacity 1.5s ease-in-out;
}

.head-slider-modul-inner-wrapper img.active {
  opacity: 1;
  transform: scale(1.1); /* Zoom leicht rein */
}


.stoerer-headbild-el.stoerer-el {
    right: 14%;
    bottom: -12%;
	z-index: 10;
}

a.img-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

section.head-modul a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


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

	.head-slider-modul-inner-wrapper {
		height: 600px;
	}


	
}
@media screen and (max-width:1440px){
	section#head-slider-modul {
		padding-left: 30px;
	}
	.head-slider-modul-inner-wrapper {
		height: 500px;
	}
	.head-slider-headline span {
		padding: 20px 30px 15px 30px;
	}
	.head-slider-headline {
		font-size: 2rem;
	}
	
}
@media screen and (max-width:1080px){
	.ani .head-slider-headline{
		bottom: 5%;
	}
}


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

.head-slider-headline {
    font-size: 1.6rem;
    bottom: 0;
	position:static;
    left: 0;
	
}
#head-slider-modul	.head-slider-headline {

	margin-left: -30px;
}
	
	section#head-slider-modul {
    padding-left: 30px;
}
    .head-slider-headline span {
        display: inline-block;
        margin-bottom: 5px;
        padding: 20px 20px 20px 30px;
        width: 80%;
    }
	
	.head-slider-modul-inner-wrapper {

    height: 300px;
}

    .stoerer-headbild-el.stoerer-el {
        position: relative;
        float: right;
        margin-top: -67px;
    }
}

/*\\\\\\\\\\\\\\\\\\\\ HEAD SLIDER MODUL END ////////////////////*/






/*//////////////////////////////////////////////////////////////////////////
///////////////////////////////////// HEAD MODUL /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////*/



section.head-modul {
    padding:0px;
	position: relative;
	top:100px;
	opacity: 0;
	-webkit-transition:1s ease-in-out all;
	transition:1s ease-in-out all;
}
section.head-modul.ani {
    top:0;
	opacity: 1;
}
.headbild{
	width:100%;
	display:block;
}

.head-modul-wrapper {
  /*  height: 720px;*/
    overflow: hidden;
	position: relative;
}




@media screen and (max-width:768px){
.head-modul-wrapper {
    height: auto;
}
}

/*\\\\\\\\\\\\\\\\\\\\ HEAD MODUL END ////////////////////*/




/*//////////////////////////////////////////////////////////////////////////
///////////////////////////////////// PARALLAX MODUL /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////*/


h2.parallax-headline span:last-child{background-color:#142f64; color:#fff;}
section.parallax-modul .parallax-modul-wrapper {
    height: 300px;
    background-attachment: fixed;
    background-size: cover;
    background-position: top center;
	background-repeat: no-repeat;
    position: relative;
	-webkit-transition:1s ease-in-out all;
	transition:1s ease-in-out all;
	opacity: 0;
}
section.parallax-modul.ani .parallax-modul-wrapper {
    height: 600px;
	opacity: 1;
	
}
h2.parallax-headline {
    top: 25%;
    position: absolute;
    left: 0;
	font-size: 2rem;
}

.parallax-modul-wrapper span {
    background-color: #ffffff;
    display: inline-block;
    margin-bottom: 5px;
    padding: 15px 30px 20px 100px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
	
}
.stoerer-parallax-el.stoerer-el {
    position: absolute;
    right: 10%;
    bottom: -100px;
}
section.parallax-modul {
    position: relative;
}



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

section.parallax-modul.ani .parallax-modul-wrapper {
    height: 400px;
	opacity: 1;
	
}
}


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

    section.parallax-modul .parallax-modul-wrapper {
    background-attachment: unset;
    background-size: 100%;
}

h2.parallax-headline {
    left: 0;
    font-size: 1rem;
    bottom: 10px;
    top: inherit;
    width: 80%;
}
	.stoerer-parallax-el.stoerer-el {
    position: absolute;
    right: 10px;
    bottom: -50px;
}
.parallax-modul-wrapper span {
    padding: 10px;
}
}

/*\\\\\\\\\\\\\\\\\\\\ PARALLAX MODUL END ////////////////////*/






/*//////////////////////////////////////////////////////////////////////////
///////////////////////////////////// STANDARD CONTENT MODUL /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////*/

.standard_content_modul-wrapper.con .c01, .sliding-top-layer .c01 {
    width: 100%;
}

.standard_content_modul-wrapper.con, .sliding-top-layer.con {
    padding: 0px 30px 30px 100px;
	margin: 0;
}
section.standard_content_modul.zentrieren .c01, section.standard_content_modul.zentrieren .con, .sliding-top-layer .con  {
     padding: 30px 30px 30px 30px;
    float: none;
	margin:0 auto;
}
.standard_content_modul-wrapper.con .wpcf7-form div, .sliding-top-layer .wpcf7-form div {
    padding-right: 10px;
	
}


.standard_content_modul-wrapper.con .c02, .sliding-top-layer .c02 {
   /* font-size: .8rem;*/
    line-height: 140%;
}
.standard_content_modul-wrapper.con .c03, .sliding-top-layer .c03 {
  /*  font-size: .7rem;*/
    line-height: 140%;
}

.standard_content_modul-wrapper.standard_content_modul-wrapper_spalten.con, .sliding-top-layer.con {
    margin-top: 30px;
}

.standard_content_modul-wrapper.con h2, .sliding-top-layer h2{
	margin:0px 0 0px 0;
	}



.small-width{widht:960px;}
.normal-width{width:1280px;}
.big-width{width:1600px;}
.full-width{width:100%;}





section.standard_content_modul.zweipartner_leistungen .c02 {
    background-color: #e7e8ee;
    padding: 30px;
    border-radius: 30px;
    min-height: 700px;
}
section.standard_content_modul.zweipartner_leistungen .c02 img {
    mix-blend-mode: multiply;
}


@media screen and (max-width:1660px){ .big-width{width:100%;}}
@media screen and (max-width:1340px){ .normal-width{width:100%;} section.standard_content_modul .con {
    width: 100% !important;
} }
@media screen and (max-width:1024px){ .small-width{widht:100%;}}


@media screen and (max-width:768px){ 
section.standard_content_modul.zweipartner_leistungen .c02 {
    margin-bottom:30px;    
    min-height: 0;
}
}

/*kontakt*/


.kontakt-element.kontakt-element_headbild {
    position: absolute;
    right: -4%;
    top: 0;
    width: 35%;
	overflow: hidden;
}
.kontakt-element{position:relative;}
.kontakt-daten {
    position: absolute;
    color: #fff;
    font-size: 1rem;
    line-height: 140%;
    top: 17%;
    left: 19%;
}
img.kontakt-el-img {
    border-radius: 100%;
    width: 285px;
    float: right;
    display: block;
    position: relative;
    right: 25%;
    border: 15px solid #1fb3b6;
    margin-top: -50px;
    z-index: -1;
}
img.kontakt-el-bg {
    width: 100%;
    display: block;
}
 .ke-telefon {
    background-image: url(../images/tel-icon_white.svg);
     padding-left: 50px;
    font-weight: 600;
    background-repeat: no-repeat;
    background-size: 35px;
	margin-bottom:10px;
    background-position: left center;
	 height:37px;
}
 .ke-e-mail {
    background-image: url(../images/mail-icon_white.svg);
    padding-left: 50px;
    font-weight: 600;
    background-repeat: no-repeat;
    background-size: 40px;
	margin-bottom:10px;
    background-position: left center;
	 	 height:37px;
}
.ke-name {
    font-weight: 600;
}

.ke-heading {
    font-size: .5rem;
}

.ke-position {
    margin-top: -7px;
    margin-bottom: 15px;
}





/*ani*/

section.standard_content_modul{
	position: relative;
	top:200px;
	opacity: 0;
	-webkit-transition:1s ease-in-out all;
	transition:1s ease-in-out all;
	clear: both;
}
section.standard_content_modul.ani{
	top:0px;
	opacity: 1;
}


.standard-modul-btn-wrapper{text-align: center;padding-top:30px;}

.kontakt-element.kontakt-element_headbild.hochsetzen {
    top: -300px;
	    z-index: 100;
}

.stoerer-s-con-el.stoerer-el {
    position: absolute;
    top: -9%;
    right: 25%;
}

@media screen and (max-width:1760px){
	.kontakt-daten {
		font-size: .6rem;
		top: 13%;
	}
}


@media screen and (max-width:1660px){
	
        .standard_content_modul-wrapper.con {
        padding: 0 30px 0 60px;
    }
	.standard_content_modul-wrapper.con {
    width: 70%;
}
	img.kontakt-el-img {
    width: 200px;
    margin-top: -22px;
}
}


@media screen and (max-width:1340px){
	.standard_content_modul-wrapper.con {
		padding: 0 30px;
	}
	
		.standard_content_modul-wrapper.con {
    width: 60%;
}
	.kontakt-element.kontakt-element_headbild{width:45%;}
	
	.kontakt-daten {
		font-size: 1.1rem;
	}
		.ke-heading {
		font-size: .8rem;
	}
	
}


@media screen and (max-width:1140px){
	.standard_content_modul-wrapper.con .c01 {
		width: 100%;
	}
	.footer-telefon, .ke-telefon, .footer-mail, .ke-e-mail {
    padding-left: 33px;
    background-size: 20px;
		height:28px;
}
		.kontakt-daten {
		font-size: .9rem;
	}
		.ke-heading {
		font-size: .6rem;
	}
}


@media screen and (max-width:768px){
	.standard_content_modul-wrapper.con div {
		padding-right: 0;
	}
	.kontakt-element.kontakt-element_headbild.hochsetzen {
		top: 0px;
	}
	    .standard_content_modul-wrapper.con {
        width: 100%;
			        padding: 0 30px;
    }
	.kontakt-element.kontakt-element_headbild{
		width:90%;
		position: relative;
	}
	.kontakt-daten {
		font-size: .7rem;
		top: 13%;
	}
	


	.stoerer-s-con-el.stoerer-el {
    position: relative;
    left: 0;
    top: 0;
    margin: 30px auto;
}


}

/*\\\\\\\\\\\\\\\\\\\\ STANDARD MODUL END ////////////////////*/








/*//////////////////////////////////////////////////////////////////////////
///////////////////////////////////// Ansprechpartner MODUL /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////*/



section.con.ansprechpartner_modul{
	position:relative;
	top:100px;
	opacity: 0;
	-webkit-transition:1s ease-in-out all;
	transition:1s ease-in-out all;
}
section.con.ansprechpartner_modul.ani{
	top:0px;
	opacity: 1;
}
section.con.ansprechpartner_modul .kontakt-element .kontakt-daten {
    font-size: .8rem;
    top: 14%;
}

section.con.ansprechpartner_modul .kontakt-element {
    width: 500px;
    float: left;
	text-align: left;
}
section.con.ansprechpartner_modul img.kontakt-el-img {
    width: 200px;
    margin-top: 0;
}

section.con.ansprechpartner_modul .ke-telefon {
    background-size: 25px;
}
section.con.ansprechpartner_modul .ke-e-mail {

    background-size: 30px;
}

section.con.ansprechpartner_modul.zentrieren {
    text-align: center;
    margin: 0 auto;
    width: 100%;
}
section.con.ansprechpartner_modul .kontakt-element {
    width: 500px;
    float: none;
    display: inline-block;
}
section.con.ansprechpartner_modul .c01 {
    width: 1280px;
}
section.con.ansprechpartner_modul {
    width: 100%;
}
.ansprechpartner-inner-wrapper {
    clear: both;
    width: 100%;
}


@media screen and (max-width:1340px){
	section.con.ansprechpartner_modul .c01 {
		width: 100%;
	}
	section.con.ansprechpartner_modul .kontakt-element {
    width: 400px;
}
}
@media screen and (max-width:768px){
	.teaser_buttons-inner-wrapper .stoerer-s-con-el.stoerer-el {
		margin: 0px auto;
	}
	    section.con.ansprechpartner_modul .kontakt-element {
        width: 100%;
    }
}


/*\\\\\\\\\\\\\\\\\\\\ ansprechpartner END ////////////////////*/






/*//////////////////////////////////////////////////////////////////////////
///////////////////////////////////// MITGLIED WERDEN MODUL /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////*/


section.mitglied_werden_modul h2 {
    margin: 0;
}
section.mitglied_werden_modul {
    width: 1600px;
    background: #1782be;
    margin: 0 auto;
    padding: 60px 120px;
	text-align: center;
	position: relative;
}
a.btn.button.mitglied_werden_btn {
    position: absolute;
    margin: 0 auto;
    width: 350px;
    display: block;
    left: 50%;
    margin-left: -175px;
    box-sizing: border-box;
	    bottom: -26px;
}
.kontrast01 section.mitglied_werden_modul {
    background: #222222;
}
.kontrast01 .galerie_modul_wrapper li {
    border-color: #000;
}
section.con.galerie_modul.zentrieren .galerie_modul_einleitung {
    margin: 0 auto;
    /* float: none; */
}

@media screen and (max-width:1660px){
	section.mitglied_werden_modul {
		width: 100%;
		border-left: 30px solid #fff;
		border-right: 30px solid #fff;
	}
	section.mitglied_werden_modul {
		padding: 30px 30px 60px;
	}
}



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

	a.btn.button.mitglied_werden_btn {
		width: 266px;
		margin-left: -133px;
	}

}

/*\\\\\\\\\\\\\\\\\\\\ MITGLIED WERDEN MODUL END ////////////////////*/


.news-slider h3.entry-title {
    min-height: 80px;
}

.con.mm.news-grid {
    margin: 0;
    width: 100%;
}
div#content.wrapper-news {
    width: 100%;
    margin: 0;
    padding: 160px 100px 0 100px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* zwei Spalten */
  gap: 2rem;
  align-items: stretch;
}

article.news-entry {
  display: flex;
  flex-direction: column;
  height: 100%;
	position: relative;
}

article.news-entry img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  border-radius: 0.5rem;
}

article.news-entry h3 {
  margin-top: 1rem;
  flex-grow: 1;
}

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

.news-grid {
  grid-template-columns: repeat(2, 1fr); /* zwei Spalten */
}
	div#content.wrapper-news {
    width: 100%;
    margin: 0;
    padding: 120px 30px 0 30px;
}

}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   NEWS MODUL
   ========================================================= */

.blog #content .con {
  width: 100%;
  margin: 0;
}

section.news-modul {
  position: relative;
  top: 100px;
  opacity: 0;
  -webkit-transition: 1s ease-in-out all;
  transition: 1s ease-in-out all;
}
section.news-modul.ani {
  top: 0;
  opacity: 1;
}

section.news-modul h2 {
  padding: 0 150px 30px 0;
}

.news-modul-intro {
  padding: 0 30px 0 120px;
}
a.news-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Slider-Wrapper = direkt Flex-Container */
.news-slider {
  padding: 0 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  box-sizing: border-box;
}

/* Einzelne Karte — 50% Breite */
.news-slider article {
  width: 50%;
  box-sizing: border-box;
  padding: 20px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Bild */
.news-slider article img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Titel */
.news-slider article h3.entry-title {
  font-size: 1.2rem;
  line-height: 1.4;
  padding: 30px 0 10px 0;
  margin: 0;
}



/* Absoluter Link über die ganze Karte */
.news-slider article .btn.button {
    width: 200px !important;
}



/* After-Content */
.con.news-after-content {
  clear: both;
  overflow: hidden;
  padding: 120px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}



/* ── Responsive ── */
@media screen and (max-width: 1340px) {
  .news-slider {
    padding: 0 40px;
  }
  .news-slider article {
    padding: 0 10px;
}
.news-slider {
        padding: 0 20px;
    }
}

@media screen and (max-width: 768px) {
    
  .news-slider {
    padding: 0 20px;
  }
  .news-slider article {
    width: 100%;
    padding: 15px 20px;
  }
  .news-modul-intro {
    padding: 0 20px;
  }
  .con.news-after-content {
    padding: 40px 20px;
  }
    .news-slider article {
        width: 100%;
        padding: 0px 0 30px;
    }
}

/*//////////////////////////////////////////////////////////////////////////
///////////////////////////////////// 	TERMIN MODUL/////////////////////////////////////
//////////////////////////////////////////////////////////////////////////*/
.con.termin-einleitung h1 {
    color: #fff;
}
.termin-kategorie {
    position: absolute;
    bottom: 0;
    right: 30px;
    font-size: .8rem;
    background: #fff;
    padding: 0px 10px 0;
    border-radius-top-right: 4px;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}
.con.termin-einleitung {
    margin: 0 auto;
    padding: 0 80px;
}
.con.termin-einleitung h2{
    color:#ffffff;
}
section.termin-modul h2.monat-jahr-heading {
    font-size: 1.5rem;
    padding: 60px 0 5px 0;
    opacity: 1;
    text-align: right;
    color: #fff;
}
.post-type-archive-termine section.termin-modul {
    background-image: none;
}


article.termin-point .date-wrapper, article.termin-point h3 {
    color: #fff;
}
article.termin-point {
    color: #000000;
}
section.termin-modul {
    background: #1782be;
       padding: 40px 0 80px;
	clear: both;
	position: relative;
	top:100px;
	opacity: 0;
	-webkit-transition:1s ease-in-out all;
	transition:1s ease-in-out all;
}
section.termin-modul.ani {
	top:0px;
	opacity: 1;
}
.termine-inner-wrapper {
    width: 1280px;
    margin: 0 0 0 150px;
}
.kontrast01 section.termin-modul {
    background: #222;
}
.event_meta_daten {
    padding: 30px;
    background: #f2f2f2;
    border-radius: 15px;
    margin-bottom: 30px;
	    position: relative;
}
.termine-inner-wrapper article {
    padding: 0 0 10px 300px;
    position: relative;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.date-wrapper {
    position: absolute;
    left: 0;
    top: 30px;
    text-align: right;
    width: 267px;
    font-weight: 600;
    line-height: 180%;
}
.termin-adresse-filter {
    font-size: 18px;
}

.top-date {
    font-size: 2rem;
}
.bottom-date {
    font-size: 1.2rem;
}
.termin-point_infos {
    padding: 30px 60px 30px 60px;
    border:1px #fff solid;
    border-radius: 8px;
		-webkit-transition:1s ease-in-out all;
	transition:1s ease-in-out all;
	position: relative;
}
.kontrast01 .termin-point_infos {
    background: #000;
}
.termine-inner-wrapper article:hover .termin-point_infos {
      background: linear-gradient(90deg, #1782be, #1fb4b6, #1782be);
  background-size: 200% 200%;
  background-position: left center;
}
img.termin-pfeil {
    position: absolute;
    right: 30px;
    width: auto;
    top: 50%;
    margin-top: -15px;
    height: 30px;
}
section.termin-modul h2 {
    padding:0 150px 30px 0;
}

.termine-inner-wrapper article a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.con.termin-alle-btn {
    margin: 0 auto;
    padding-left: 300px;
    padding-top: 60px;
}


.termin-p-step{
	background-image: url("../images/pfeil.svg");
	background-position: right 10px center;
	background-repeat: no-repeat;
	background-size: 10px;
	float: left;
	padding-right:30px;
	width: auto;
}
.termin-p-step:last-child{background-image: none;}
.termin-con {
    padding-top: 80px;
}


.preis-termin-wrapper {
    position: absolute;
    top: -24px;
    right: 30px;
    background: #142f64;
    width: auto;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
	-webkit-transition:1s ease-in-out all;
	transition:1s ease-in-out all;
}

.preis-termin-info {
    position: absolute;
    top: 60px;
    font-size: 12px;
    color: #000;
    line-height: 120%;
    width: 400px;
    right: 0;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
	opacity: 0;
}
.preis-termin-wrapper .preis-termin:hover .preis-termin-info {
   opacity: 1;
}


.event_meta_daten_wrapper .c66 {
    margin: -40px 0 0 0px;
}

.prozess-steps {
    width: 100%;
    font-size: 20px;
}
section#content.termin-content {
    padding: 0;
}

.referenten-termine { padding: 30px; }
.referenten-termine img { width: 100%; border-radius: 15px; }
.reg-termin-bild { width: 40%;     float: left;}

.ref-termin-text { float: left; width: 60%; padding: 30px; }

.referenten { clear: both; }

.ref-termin-text p { margin: 0; }

.event_meta_daten_wrapper .c03 { position: absolute; right: -30px; }

.event_meta_daten_wrapper { padding-left: 100px; position: relative; }

section#content.termin-content, section#content.termin-content .con {
    padding: 0;
    width: 59.666%;
}
 section#content.termin-content .con {

    width: 100%;
}



.termine-filter.con {
    margin: 0 auto;
    padding: 0 0 30px;
}

.term-filter-buttons .btn {
    background: #fff;
    color: black;
    margin-right: 10px;
    padding: 10px 30px;
    font-size: .8rem;
	cursor: pointer;
}


span.btn.termin-filter-btn.active_termin_cat {
    background: #1fb4b6;
	color:#fff;
}
h3.termin-month {
    font-size: .8rem;
    color: #fff;
    text-align: right;
    padding: 0 0 10px;
}




.prozess-steps {
    width: 100%;
    font-size: 20px;
    padding-bottom: 30px;
    overflow: hidden;
}


.single-termine #content div.wpcf7 {
    padding-top: 20px;
    display: none;
}
div.kontakt-name {
    width: 50%;
    height: auto;
    float: left;
    padding-right: 4%;
}
div.kontakt-email {
    width: 50%;
    height: auto;
	    padding-right: 4%;
    float: left;
}
.weitere-anmeldung, .rechnungsadresse {
    display: none;
}
.kontakt-name.long, .kontakt-name.long select, .kontakt-name.long input {
    width: 100%;
	
}
.c01.article-detail {
    padding-bottom: 120px;
}

a.button.btn.b-anmelden.ticketlink {
    cursor: pointer;
}
.rechnungsadresse-button,.weitere-anmeldung-button{
	    background: linear-gradient(to right, #1782be, #1fb4b6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
	cursor: pointer;
}
section.termin-modul h2.termin-year {
    padding: 0;
    color: #fff;
    text-align: right;
    font-size: 40px;
}

.termine-filter.con {
    margin: 0 auto;
    padding: 0 0 0px 80px;
}

.termin-con ul {
    padding-bottom: 60px !important;
}


@media screen and (max-width:1640px){
.termine-inner-wrapper {
    margin: 0 0 0 0px;
}
}



@media screen and (max-width:1440px){
	.termine-inner-wrapper {
		width: 1000px;
		padding:0 30px;
		margin:0;
	}
	section.termin-modul h2 {
		padding: 0 30px 30px 0;
	}
	.date-wrapper {
		width:150px;
	}
	.termine-inner-wrapper article {
    padding: 0 0 10px 200px;
}
.termin-con {
    padding: 0px 30px 30px;
}
.event_meta_daten_wrapper .c03 {
    position: absolute;
    right: 0;
}

.ref-termin-text {
    float: left;
    width: 100%;
    padding: 0;
}
.reg-termin-bild {
    width: 70%;
    float: left;
}
.event_meta_daten_wrapper {
    padding-left: 30px;
    position: relative;
}
}
@media screen and (max-width:1080px){
	.termine-inner-wrapper {
		width: 100%;
		padding:0 30px;
		margin:0;
	}

}


@media screen and (max-width:768px){
.referenten {
    clear: both;
    overflow: hidden;
    padding-bottom: 30px;
}
    .date-wrapper div {
    display: inline-block;
    font-size: 18px !important;
}
h3.termin-month {
    padding: 0;
}

    .event_meta_daten_wrapper .c03 {
        position: static;
        right: 0;
        padding: 0;
    }
    .referenten-termine {
    padding: 0 30px 0 0;
}
section#content.termin-content, section#content.termin-content .con {
    padding: 0;
    width: 100%;
    padding-top: 30px;
}
.event_meta_daten {
  
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.event_meta_daten_wrapper .c66 {
        margin: 0px 0 0 0px !important;
        padding: 0 0 30px 0;
        clear: both;
        float: left;
    }
        .event_meta_daten_wrapper {
        padding-left: 30px;
        position: relative;
        padding: 0 30px;
    }
    
    .event_meta_daten {
        padding: 30px;
    }
.single-termine section.single-headbild {
    padding-top: 125px;
}
	.termine-inner-wrapper article {
		padding: 0;
		position: relative;
		width: 100%;
		display: block;
		box-sizing: border-box;
		margin-bottom: 30px;
	}
	.date-wrapper {
		position: static;
		width: 100%;
		text-align: left;
	}
    .termin-point_infos {
        padding: 15px 30px 30px 15px;
        font-size: .8rem;
        line-height: 140%;
    }
    .bottom-date {
    margin-left: -3px;
}
.termin-point_infos h3.entry-title {
    margin-bottom: 10px;
}
    .con.termin-einleitung {
    margin: 0 auto;
    padding: 0 30px;
}
section.termin-modul {
    padding: 50px 0 80px;
}
	.con.termin-alle-btn {
    margin: 0 auto;
    padding-left: 30px;
    padding-top: 0px;
}
	img.termin-pfeil {
    right: 10px;
    top: 50%;
    margin-top: -15px;
    height: 30px;
}
.termine-filter.con {
    
    padding: 0 0 30px 30px;
}
}

/*\\\\\\\\\\\\\\\\\\\\TERMIN MODUL END ////////////////////*/	









/*//////////////////////////////////////////////////////////////////////////
///////////////////////////////////// HINTERGRUND BILD MODUL PANORAMA /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////*/	

div.bild_modul_panorama {
    width: 100%;
    position: relative;
	float:left;
	-webkit-transition:1s ease-in-out all;
	transition:1s ease-in-out all;
	

		top:100px;
	opacity: 0;
	-webkit-transition:1s ease-in-out all;
	transition:1s ease-in-out all;
}

div.bild_modul_panorama.ani {
		top:0px;
	opacity: 1;
}
div.bild_modul_panorama img {
    width: 100%;
	display: block;
}
div.bild_modul_panorama .bild_modul_panorama_headline-wrapper {
    position: absolute;
    width: 100%;
    text-align: left;
bottom:15%;
	opacity: 1;
	-webkit-transition:1s ease-in-out all;
	transition:1s ease-in-out all;
}
.bild_modul_panorama_headline-wrapper h2 {

	
	    background-color: #ffffff;
    display: inline-block;
    margin-bottom: 5px;
    padding: 20px 30px 20px 100px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.kontrast01 .bild_modul_panorama_headline-wrapper h2 {
    background: #000;
}

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


.bild_modul_panorama_headline-wrapper h2 {
    font-size: 1.5rem;
}

}


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


.bild_modul_panorama_headline-wrapper h2 {
    
    padding: 10px 30px;
}

}

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


.bild_modul_panorama_headline-wrapper h2 {
    font-size: 1.2rem;
    
	
}

}

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


div.bild_modul_panorama .bild_modul_panorama_headline-wrapper {
    position: static;
}
	    .bild_modul_panorama_headline-wrapper h2 {
        font-size: 1rem;
        padding: 10px 30px 6px;
    }

}
/*\\\\\\\\\\\\\\\\\\\\ BILD MODUL PANORAMA END ////////////////////*/

  

/*//////////////////////////////////////////////////////////////////////////
///////////////////////////////////// ZITAT MODUL /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////*/
img.zitat01 {
    position: absolute;
    top: 0px;
    left: 61px;
}
img.zitat02 {
    position: absolute;
    right: -60px;
    bottom: 110px;
    transform: rotate(180deg);
}
section.zitat_modul{
	position: relative;
	top: 200px;
	opacity: 0;
	-webkit-transition:1s ease-in-out all;
	transition:1s ease-in-out all;
	clear:both;
}
section.zitat_modul.ani{
	position: relative;
	top: 0px;
	opacity: 1;
	clear: both;
    overflow: hidden;
}
.zitat_modul-wrapper.con {
   
    padding-left: 60px;
    padding-right: 60px;
   
}
.zitat_modul-wrapper.con .c01 {
    width: 1080px;
    position: relative;
    padding: 0 120px;
	 padding-bottom: 80px;
}
.zitat_modul-wrapper.con .autor {
    position: absolute;
    bottom: 0;
    font-size: .6rem;
    font-weight: 600;
}
.rechts .zitat_modul-wrapper.con {
    margin: 0;
	float: right;
}
 .zentrieren .zitat_modul-wrapper.con .autor {
    text-align: center;
	     width: 100%;
    left: 0;
}
 .rechts .zitat_modul-wrapper.con .autor {
  right: 0;
    text-align: right;
    padding-right: 120px;
}

section.zitat_modul.zentrieren .c01 {
    margin: 0 auto;
    float: none;
}
section.zitat_modul.links .c01 {
    float: left;
}
section.zitat_modul.rechts .c01 {
    float: right;
}
.zitat_modul-wrapper.con .zitat01 {
    left: 0;
    width: 80px;
}
.zitat_modul-wrapper.con .zitat02 {
    right: 0;
    bottom: 60px;
    width: 80px;
}
.zitat_modul-wrapper.con {
    margin: 0 ;
}
.zitat_modul-wrapper.con {
    font-size: 1.4rem;
    line-height: 140%;
}

.zitat_modul-wrapper.con .c01 {
    width: 100%;
}

.zentrieren .zitat_modul-wrapper.con {
    margin: 0 auto;
}
.zitat_modul-wrapper.con h2 {
    padding: 30px 0;
}
@media screen and (max-width:1660px){
	.zitat_modul-wrapper.con {
		padding: 0 30px;
	}

}





@media screen and (max-width:1340px){
    .zitat_modul-wrapper.con {
        padding: 0 30px;
        width: 800px;
    }
	.zentrieren .zitat_modul-wrapper.con {
    margin: 0 auto !important;
}
}

@media screen and (max-width:1140px){
	.zitat_modul-wrapper.con .c01 {
		width: 100%;
	}
}

@media screen and (max-width:768px){
.zitat_modul-wrapper.con {
        padding: 0 30px;
        width: 100%;
    }
}

@media screen and (max-width:480px){
.zitat_modul-wrapper.con .c01 {
    padding: 50px 0px 80px 0;
}
	.zitat_modul-wrapper.con .zitat01 {
    width: 60px;
}

	.zitat_modul-wrapper.con .zitat02 {
    width: 60px;
		bottom: 30px;
}
}
/*\\\\\\\\\\\\\\\\\\\\ ZITAT MODUL END ////////////////////*/





/*//////////////////////////////////////////////////////////////////////////
/////////////////////////////////////  BILD / TEXT REPEATER MODUL /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////*/
.bild_text_repeater_modul h2 {
    margin: 0;
}
.bild_text_repeater_modul_teaser.con.trennlinie {
    padding: 40px 0 40px 0;
    border-bottom: 5px solid #f2f2f2;
}
.bild_text_repeater_modul_einleitung {
    width: 960px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 50px;
    position: relative;
    z-index: 10;
	opacity: 0;
	top:200px;
    margin-bottom: 60px;
	-webkit-transition:1s ease-in-out all;
	transition:1s ease-in-out all;
}
.bild_text_repeater_modul_wrapper.con, .bild_text_repeater_modul_wrapper.con img {
    width: 100%;
}
img.overlay-repeater {
    position: absolute;
    top: 0;
    left: 0;
    width: 80.1% !important;
    box-sizing: border-box;
}
.bild_text_repeater_modul_teaser.con:nth-child(even) img.overlay-repeater {
    -webkit-transform: scale(-1);
    transform: scale(-1);
       right: 1px;
    left: inherit;
}
.bild_text_repeater_modul_wrapper.con img {
    width: 100%;
	display: block;
}
 .bild_text_repeater_modul_wrapper.con #t1 img {
    margin-top: 0px;
}
.bild_text_repeater_modul_teaser.con {
    padding: 40px 0 0px 0;
    clear: both;
}
.bild_text_repeater_modul_teaser.con:nth-child(even) div {
    float: right;
}
.bild_text_repeater_modul_text.c02 {
	padding: 50px 0px 30px 100px;
}
.bild_text_repeater_modul_teaser.con:nth-child(odd) .bild_text_repeater_modul_text.c02 {
	padding: 50px 100px 30px 0px;
}

.bild_text_repeater_modul_wrapper.con, .bild_text_repeater_modul_wrapper.con .con {
    margin: 0;
}

.bild_text_repeater_modul .bild_text_repeater_modul_teaser:first-child {
    padding-top: 0;
}
.bild_text_repeater_modul .bild_text_repeater_modul_teaser:last-child {
    padding-bottom: 0;
    border: none;
}

.bild_text_repeater_modul_teaser-bild.c02 {
    padding-right: 5%;
	position: relative;
	left:-1000px;
	opacity: 0;
	-webkit-transition:1s ease-in-out all;
	transition:1s ease-in-out all;
}
.bild_text_repeater_modul div:nth-child(even) .bild_text_repeater_modul_teaser-bild.c02 {
    padding-left: 5%;
    padding-right: 0;
	position: relative;
	right:-1000px;
	opacity: 0;
	-webkit-transition:1s ease-in-out all;
	transition:1s ease-in-out all;
}


.bild_text_repeater_modul_text.c02 img {
    width: auto;
}
.bild_text_repeater_modul div:nth-child(odd) img{
	border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
.bild_text_repeater_modul div:nth-child(even) img{
	border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
	border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
/*ani*/
.ani .bild_text_repeater_modul_einleitung{
	top:0;
	opacity: 1;
}
.bild_text_repeater_modul_teaser.ani .bild_text_repeater_modul_teaser-bild{
	left: 0px;
	opacity: 1;
}
.bild_text_repeater_modul div.ani:nth-child(even) .bild_text_repeater_modul_teaser-bild.c02{
	left:inherit;
	right: 0px;
	opacity: 1;
}



@media screen and (max-width:2180px){
.bild_text_repeater_modul_teaser-bild.c02 {
    padding-right: 10%;
}
.bild_text_repeater_modul div:nth-child(even) .bild_text_repeater_modul_teaser-bild.c02 {
    padding-left: 10%;
}
}


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

.bild_text_repeater_modul_text.c02 {
	padding: 30px 0px 30px 30px;
}
.bild_text_repeater_modul_teaser.con:nth-child(odd) .bild_text_repeater_modul_text.c02 {
	padding: 30px 30px 30px 0px;
}

}


@media screen and (max-width:1040px){
	.bild_text_repeater_modul_einleitung {
    width: 100%;
	padding: 30px;
}
.bild_text_repeater_modul_text.c02 {
	padding: 0px 30px 30px 30px;
}
.bild_text_repeater_modul_teaser.con:nth-child(odd) .bild_text_repeater_modul_text.c02 {
	padding: 0px 30px 30px 30px;
}
}

@media screen and (max-width:768px){
	
	.bild_text_repeater_modul_text.c02, .bild_text_repeater_modul_teaser.con:nth-child(odd) .bild_text_repeater_modul_text.c02 {
    padding-top: 30px;
}
.bild_text_repeater_modul_teaser-bild.c02 {
    padding-right: 0;
}
	.bild_text_repeater_modul div:nth-child(even) .bild_text_repeater_modul_teaser-bild.c02 {
    padding-left: 0;
    padding-right: 0;
}
	.bild_text_repeater_modul_teaser.con.trennlinie {
    padding: 0;
    border-bottom: none;
}
	
.bild_text_repeater_modul div:nth-child(even) img{
	float:right;
}

.bild_text_repeater_modul_wrapper.con img {
    width: 95%;
}
	img.overlay-repeater {
    position: absolute;
    top: 0;
    left: 0;
    width: 100.1% !important;
    box-sizing: border-box;
}
	.bild_text_repeater_modul_teaser.con {
    /* padding: 40px 0 0px 0; */
    clear: both;
    margin-top: -42px;
}
	.home div#neue_studios_modul {
    margin-bottom: 0 !important;
}
.bild_text_repeater_modul_einleitung {

    margin-bottom: 0px;
}	
	
}





/*\\\\\\\\\\\\\\\\\\\\ BILD / TEXT REPEATER MODUL END ////////////////////*/





/*//////////////////////////////////////////////////////////////////////////
///////////////////////////////////// BUTTON SLIDER BILD / TEXT REPEATER MODUL /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////*/


/*//////////////////////// BUTTON SLIDER BILD / TEXT REPEATER MODUL – RESPONSIVE ////////////////////////*/

.btn-slider_bild-text_slider {
	position: relative;
	margin-bottom: 40px;
}

.btn-slider-track {
	position: relative;
	display: flex;
	flex-wrap: nowrap !important;
	border-radius: 10px;
	background: linear-gradient(90deg, #1782be, #1fb4b6);
	overflow-x: auto !important;
	overflow-y: hidden !important;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	user-select: none;
	cursor: grab;
	color: #e7e8ee;
	padding:  4px; /* Abstand links/rechts im Track */
	touch-action: pan-x;
	overscroll-behavior-x: contain;

}

/* Scrollbar optisch ausblenden, Funktion bleibt erhalten (Wischen/Scrollen weiterhin möglich) */
.btn-slider-track {
	scrollbar-width: none; /* Firefox */
}
.btn-slider-track::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Edge */
}

a.btn-slider-buttons_button.btn.button {
	margin-bottom: 5px;
}

.btn-slider-track:active {
	cursor: grabbing;
}

.btn-slider_bild-text_slider .btn-slider-track .btn-slider-item {
	flex: 1 1 auto !important;
	flex-shrink: 0 !important; /* nicht quetschen -> stattdessen scrollen, wenn nicht genug Platz */
	min-width: 100px !important; /* Untergrenze für sehr kurze Labels */
	white-space: nowrap !important; /* Text bleibt einzeilig statt umzubrechen und sich zu quetschen */
	text-align: center;
	padding: 14px 18px;
	cursor: grab;
	position: relative;
	z-index: 2;
	font-weight: 500;
	font-size: clamp(0.8rem, 0.65rem + 0.4vw, 1rem);
	line-height: 1.25;
	transition: color 0.3s ease;
}

.btn-slider-item:active {
	cursor: grabbing;
}

.btn-slider-item.is-active {
	color: #464646;
}

.btn-slider-button {
	position: absolute;
	top: 4px;
	bottom: 4px;
	left: 4px;
	/* Breite wird dynamisch per JS gesetzt – bleibt unverändert responsive */
	background: #fff;
	border-radius: 10px;
	transition: left 0.35s ease;
	z-index: 1;
	pointer-events: none;
}

.btn-slider-track.is-mobile .btn-slider-button {
	display: none;
}

.btn-slider-track.is-mobile .btn-slider-item.is-active {
	background: #fff;
	color: #142f64;
	border-radius: 10px;
}

.btn-slider-button.is-dragging {
	transition: none;
}

/* Teaser */
.btn-slider_bild-text_modul_teaser {
	display: none;
}

.btn-slider_bild-text_modul_teaser.is-active {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 60px;
}

.btn-slider_bild-text_modul_teaser-bild.c02 img {
	border-radius: 10px;
	width: 100%;
	height: auto;
	display: block;
}

section.btn-slider_bild-text_modul_wrapper {
	width: 100%;
	max-width: 1800px;
	background: #e7e8ee;
	padding: 60px 60px 120px;
	margin: 0 auto;
	border-radius: 25px;
	box-sizing: border-box;
	clear: both;
}

.btn-slider_bild-text_modul_teaser-bild.c02 img {
	border-radius: 10px;
	width: 100%;
}

.btn-slider_bild-text_modul_text.c02 h3 {
	color: #737978;
	font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.3rem);
}

section.btn-slider_bild-text_modul_wrapper strong {
	background: linear-gradient(to right, #1782be, #1fb4b6);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.btn-slider_bild-text_modul_einleitung {
	padding-bottom: 40px;
}

/* Text- und Bildspalte als flexible Kinder statt festem padding-right,
   damit sie sauber umbrechen und stapeln können */
.btn-slider_bild-text_modul_text.c02,
.btn-slider_bild-text_modul_teaser-bild.c02 {
	flex: 1 1 420px;
	min-width: 0;
	padding-right: 0; /* fixer 130px-Abstand ersetzt durch "gap" oben */
}

.btn-slider_bild-text_modul_text.c66 {
	flex: 1 1 100%;
}

.btn-slider_bild-text_box-inner h4,
.btn-slider_bild-text_box-inner h3,
.btn-slider_bild-text_box h2 {
	color: #fff;
}

.btn-slider_bild-text_box {
	background: #142f64;
	color: #fff;
	width: 100%;
	max-width: 1280px;
	border-radius: 25px;
	padding: 60px 80px;
	margin: -180px auto 160px;
	position: relative;
	box-sizing: border-box;
}

.blauebox-weiter-runter.btn-slider_bild-text_box {
	margin: -100px auto 160px;
}

.btn-slider_bild-text_box-inner .c01 {
	float: none;
}

a.btn-slider_bild-text_box-button.btn.button {
	position: absolute;
	bottom: -30px;
	left: 80px;
	margin-left: 0;
}

/* ================= BREAKPOINTS ================= */

/* ≤1660px */
@media screen and (max-width: 1660px) {
	section.btn-slider_bild-text_modul_wrapper {
		padding: 50px 40px 100px;
	}
	.btn-slider_bild-text_box {
		padding: 50px 60px;
		margin: -150px auto 140px;
	}
	a.btn-slider_bild-text_box-button.btn.button {
		left: 60px;
	}
	.btn-slider_bild-text_modul_teaser.is-active {
		gap: 45px;
	}
    section.btn-slider_bild-text_modul_wrapper {
    width: 95%;
}
}

/* ≤1340px */
@media screen and (max-width: 1340px) {
	section.btn-slider_bild-text_modul_wrapper {
		padding: 40px 30px 90px;
		border-radius: 18px;
	}
	.btn-slider_bild-text_box {
		padding: 40px 50px;
		margin: -130px auto 120px;
		border-radius: 18px;
	}
	.btn-slider_bild-text_modul_teaser.is-active {
		gap: 32px;
	}
	a.btn-slider_bild-text_box-button.btn.button {
		left: 50px;
	}
       .btn-slider_bild-text_box {
    width: 90%;
}
}

/* ≤1140px */
@media screen and (max-width: 1140px) {
	section.btn-slider_bild-text_modul_wrapper {
		padding: 35px 25px 30px;
	}
	.btn-slider_bild-text_box {
		padding: 35px 40px;
		margin: -110px auto 100px;
	}
	.btn-slider_bild-text_modul_text.c02,
	.btn-slider_bild-text_modul_teaser-bild.c02 {
		flex: 1 1 340px;
	}
}

/* ≤960px */
@media screen and (max-width: 960px) {
	section.btn-slider_bild-text_modul_wrapper {
		padding: 30px 20px 70px;
	}
	.btn-slider_bild-text_box {
		padding: 30px 30px;
		margin: -90px auto 90px;
	}
	.btn-slider-item {
		padding: 12px 6px;
	}
	a.btn-slider_bild-text_box-button.btn.button {
		left: 30px;
		bottom: -25px;
	}
	.btn-slider_bild-text_modul_teaser.is-active {
		gap: 24px;
	}
}

/* ≤768px – Text/Bild stapeln sauber untereinander, Button-Box passt sich an */
@media screen and (max-width: 768px) {
	section.btn-slider_bild-text_modul_wrapper {
		padding: 30px;
	}
	.btn-slider_bild-text_modul_teaser.is-active {
		flex-direction: column;
		align-items: stretch;
		gap: 20px;
	}
	.btn-slider_bild-text_modul_text.c02,
	.btn-slider_bild-text_modul_teaser-bild.c02 {
		flex: 1 1 100%;
		width: 100%;
	}
	.btn-slider_bild-text_box {
		padding: 30px;
	}
    .btn-slider_bild-text_box {
    width: 90%;
}
	/* absolute Position sprengt bei wenig Padding das Layout -> normaler Flow */
	a.btn-slider_bild-text_box-button.btn.button {
		position: static;
		display: inline-block;
		margin-top: 15px;
	}
	.btn-slider_bild-text_slider .btn-slider-track .btn-slider-item {
		padding: 15px 12px;
		min-width: 90px !important;
	}
}


/*//////////////////////// BUTTON SLIDER BILD / TEXT REPEATER MODUL ENDE ////////////////////////*/







section#blaue-box_modul{
	padding:0 100px;
	margin: 0 auto;
	float: left;
}

.blaue-box_modul-con {
    clear: both;
    float: left;
	
	    background: #142f64;
    color: #fff;
    width: 1280px;
    border-radius: 25px;
    padding: 60px 80px;
    margin: 0px auto 0px;
    position: relative;
	top:-100px;
	opacity: 0;
	-webkit-transition:1s ease-in-out all;
	transition:1s ease-in-out all;
}

section#blaue-box_modul.ani .blaue-box_modul-con{
   opacity: 1;
	top:0;
}



.blaue-box_modul-con h2 {
    color: #fff;
}





.zentrieren .blaue-box_modul-con {
    margin: 0 auto;
    float: none;
    clear: both;
    overflow: hidden;
}

.zentrieren .blaue-box_modul-con {
    margin: 0 auto;
    float: none;
    clear: both;
    overflow: hidden;
}
.rechts .blaue-box_modul-con {
    float: right;
}


@media screen and (max-width:1640px){
section#blaue-box_modul {
    padding: 0 30px;
}
}


@media screen and (max-width:1340px){
	.blaue-box_modul-con { width: 100%;  padding: 30px;}
	section#blaue-box_modul {
    padding:0 30px;
}
}


/*//////////////////////////////////////////////////////////////////////////
///////////////////////////////////// GRID MODUL /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////*/

.grid-modul {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  max-width: 1800px;
  margin: 0 auto 30px;
	color:#fff;
}
.grid-modul .btn {
    background: #fff;
    color: #464646 !important;
}
.grid-modul p {
    margin: 0;
    line-height: 120%;
}
.grid-modul h2, .grid-modul h3{color:#fff;     line-height: 120%;}

.grid-modul .btn,
.grid-modul a.btn,
.grid-modul a.btn:link,
.grid-modul a.btn:visited,
.grid-modul a.btn:hover,
.grid-modul a.btn:active {
    /* 1. Den Text-Clip der normalen Links komplett deaktivieren */
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    
    /* 2. Den Hintergrund des gesamten Buttons auf weiß setzen */
    background: #fff !important;
    background-image: none !important; /* Löscht eventuelle Verläufe */
    
    /* 3. Die Textfarbe auf das Grau zwingen */
    color: #464646 !important;
}


/* Quadrat - definiert die Höhe */
.grid-item-a {
  aspect-ratio: 1 / 1;
  background-color: #1fb3b6;
	border-radius: 25px;
	    padding: 60px;
	position: relative;
}

/* grid-item-b passt sich der Höhe von grid-item-a an */
.grid-item-b {
  background: #1782be;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Wichtig! */
	border-radius: 25px;
	    padding: 60px;
	position: relative;
}

a.grid-a-button.btn.button, a.grid-b-button.btn.button {
    position: absolute;
    bottom: 60px;
}

/* Umgedrehtes Layout für gerade Repeater */
.grid-modul.is-reversed {
  grid-template-columns: 2fr 1fr;
}

.grid-modul.is-reversed .grid-item-a {
  order: 2; /* Einfacher als grid-column */
}

.grid-modul.is-reversed .grid-item-b {
  order: 1;
}

.grid-modul img {
  width: 80px;
  height: auto;
}

/* Bild in grid-item-b soll responsive sein */
.grid-modul .grid-item-a-bild img {
  width: 100%;
  height: auto;
}

.termin-point a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.grid-item-a-bild {
    position: absolute;
    bottom: 0;
    display: block;
    width: 39%;
    right: 8%;
}
.grid-item-a-bild { border-top-right-radius: 15px; overflow: hidden; border-top-left-radius: 15px; }
.grid-item.grid-item-a ::marker, .grid-item.grid-item-b ::marker { color: #fff; }
.grid-item.grid-item-a ul, .grid-item.grid-item-b ul { padding-left: 20px; }
.grid-item-a-bild img { display: block; }
.grid-item-b-text.grid-item-b-has-img { width: 40%; }


section#blauer-balken-modul {
    background-color: #142f64;
    padding: 80px 120px;
    overflow: hidden;
    color: #fff;
}

section#blauer-balken-modul img{
    border-radius: 10px;
	width: 75%;
}
.bbm-con02-left.c02, .bbm-con02-right.c02 {
    text-align: center;
	padding:0 30px;
}
section#blauer-balken-modul h2{color:#fff;}
/* Mobile: alles untereinander */

section#blauer-balken-modul h3 {
    color: #fff;
}

.bbm-con01.c02 {
    padding-right: 120px;
}


.grid-modul .date-wrapper {
    position: absolute;
    left: 0;
    top: 30px;
    text-align: right;
    width: 155px;
    font-weight: 600;
    line-height: 180%;
}
.grid-modul article {
    padding: 0 0 10px 180px;
    position: relative;
    width: 100%;
    display: block;
    box-sizing: border-box;
}


.grid-modul img.termin-pfeil {
    position: absolute;
    right: 30px;
    width: auto;
    top: 50%;
    margin-top: -15px;
    height: 30px;
}

.grid-modul .termin-point_infos {
    padding: 20px 40px;
    font-size: .8rem;
    margin-top: 30px;
}

.grid_einleitung {
    width: 100%;
    padding: 30px 120px;
}


@media (max-width: 1840px) {

    section#grid-modul {
        padding: 0 30px;
    }
}
/* 1660px bis 1341px */
@media (max-width: 1660px) {
    .grid-item-b,  .grid-item-a {
    padding: 30px;
}
.grid_einleitung {
    width: 100%;
    padding: 30px;
}
.grid-modul img {
    width: 40px;
    height: auto;
}
a.grid-a-button.btn.button, a.grid-b-button.btn.button {
    position: absolute;
    bottom: 10px;
}
    section#grid-modul {
        padding: 0 30px;
    }
}

/* 1340px bis 1141px */
@media (max-width: 1340px) {

    section#blauer-balken-modul {
        padding: 50px;
    }
    .bbm-con01.c02 {
    padding-right: 30px;
}
.bbm-con02-left.c02, .bbm-con02-right.c02 {
    padding: 0 15px;
}
}

/* 1140px bis 769px */
@media (max-width: 1140px) {
     .grid-modul,
  .grid-modul.is-reversed {
        font-size: 16px;
  }
  .grid-modul .date-wrapper {

    top: 10px;
  }
  .grid-modul h2 {
    font-size: 24px;
}

.grid-modul {
    font-size: 14px;
}
    a.grid-a-button.btn.button, a.grid-b-button.btn.button {
        position: absolute;
        bottom: 10px;
        padding: 10px;
        font-size: 13px;
    }
}

@media (max-width: 960px) {
        section#blauer-balken-modul {
        padding: 50px 30px;
    }

  .grid-modul,
  .grid-modul.is-reversed {
    grid-template-columns: 1fr;
    
  }
  
  .grid-item-a,
  .grid-item-b {
    order: unset; /* Reihenfolge zurücksetzen */
  }
      a.grid-a-button.btn.button, a.grid-b-button.btn.button {
        position: static;
        margin-top: 30px;
    }
    .grid-item-a-bild {
    position: static;
    bottom: 0;
    display: block;
    width: 100%;
    right: 8%;
}
.grid-item-b-text.grid-item-b-has-img {
    width: 100%;
}
.grid-item-a-bild {
    overflow: visible;
}
.grid-modul .grid-item-a-bild img {
    width: 100%;
    height: auto;
    position: relative;
    bottom: -30px;
}
.grid-modul article {
    padding: 0 0 10px 56px;
}
.bottom-date {
    font-size: .8rem;
}
.top-date {
    font-size: 1rem;
}
.grid-modul .date-wrapper {
    top: 0;
    line-height: 120%;
    width: 50px;
}
.grid-modul .termin-point_infos {
    padding: 20px;
    font-size: .8rem;
    margin-top: 30px;
}
.grid-modul img.termin-pfeil {
    position: absolute;
    right: 10px;
    width: auto;
    top: 50%;
    margin-top: -15px;
    height: 23px;
}
    .bbm-con02-left.c02, .bbm-con02-right.c02 {
        padding: 30px 0 30px;
    }

      .grid-modul h2 ,.grid-modul , a.grid-a-button.btn.button, a.grid-b-button.btn.button {
      
        font-size: inherit;
    }

}


@media (max-width: 768px) {
    .grid-modul article {
        padding: 0 0 0 0;
    }
  .grid-modul .date-wrapper {
    position: static;
    width: 100%;
    padding-top: 30px;
}
.grid-modul .termin-point_infos {
    margin-top: 5px;
}
}
/*//////////////////////////////////////////////////////////////////////////
///////////////////////////////////// GALERIE MODUL /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////*/	
div.galerie_modul {
    width: 100%;
    border-left: 15px solid #fff;
    border-right: 15px solid #fff;
}
.galerie_modul_einleitung {
    width: 1280px;
    margin: 0 0 0 100px;
    text-align: left;
    padding-bottom: 50px;
    opacity: 0;
    position: relative;
    top: 200px;
    -webkit-transition: 1s ease-in-out all;
    transition: 1s ease-in-out all;
}
.galerie_modul_wrapper ul {
    padding: 0;
    margin: 0;
}
main .galerie_modul_wrapper li {
    width: 20%;
    display: block;
    border-left: 15px solid #fff;
    border-right: 15px solid #fff;
    float: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 30px solid #fff;
    position: relative;
    top: 200px;
    padding:0;
    opacity: 0;
    background-image:none;
    -webkit-transition: 1s ease-in-out all;
    transition: 1s ease-in-out all;
}
.galerie_modul_wrapper img {
    width: 100%;
    display: block;
	    border-radius: 15px;
}
section.con.galerie_modul {
    margin: 0;
}
section.con.galerie_modul {
    margin: 0;
    width: 100%;
}
/*ani*/
.galerie_modul.ani .galerie_modul_einleitung {

	opacity: 1;
	top:0px;
}
.galerie_modul.ani .galerie_modul_wrapper li {
	top:0px;
	opacity: 1;
}
.galerie_modul_wrapper {
    clear: both;
    overflow: hidden;
    padding: 0 15px;
}
@media screen and (max-width:1340px){
.galerie_modul_einleitung {
    width: 100%;
    margin: 0 0 0 30px;
}

}


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

.galerie_modul_wrapper li {
    width: 33.33%;
}
.galerie_modul_einleitung {
    width: 100%;
    margin: 0 auto;
    padding: 0px 30px 0px 30px;
    text-align: center;
    padding-bottom: 50px;
}	
}



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

.galerie_modul_wrapper li {
    border-left: 7.5px solid #fff;
    border-right: 7.5px solid #fff;
    border-bottom: 15px solid #fff;
}

.grid-modul {
    display: block;
}
.grid-item.grid-item-a {
    margin-bottom: 30px;
}
section#grid-modul {
    padding: 0 30px;
}
}
/*\\\\\\\\\\\\\\\\\\\\ GALERIE MODUL END ////////////////////*/










/*//////////////////////////////////////////////////////////////////////////
/////////////////////////////////////  TIMELINE MODUL /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////*/

.rot .point-timeline{border:3px solid #F42555 !important;}
.blau .point-timeline{border:3px solid #218EE8 !important;}
.orange .point-timeline{border:3px solid #ff8815 !important;}
.gruen .point-timeline{border:3px solid #666666 !important;}
.schwarz .point-timeline{border:3px solid #492507 !important; color:#fff !important;}
.weiss .point-timeline{border:3px solid #fff !important;}

.timeline-con.con .c01 {
   /* margin-top: -15px;*/
}
.timeline_modul {position: relative; top:200px; opacity: 0; -webkit-transition:1s ease-in-out all; transition:1s ease-in-out all;}
.timeline_modul.ani {position: relative; top:0px; opacity: 1; }

#timeline{background-color:transparent !important;}

 h2.timeline-headline {
    padding-bottom: 80px;
}

.timeline-con.con {
    border-left: 1px solid #ccc;
    padding-left: 3%;
	min-height:50px;
	padding-bottom: 50px;
	    margin: 0;
}
.timeline-con.con .c02:last-child{
	padding-left:50px;
}
.timeline-date {
    position: absolute;
    left: 0;
    top: -3px;
    width: 14%;
    text-align: right;
    font-size: 1.2rem;
    font-weight: 700;
}
.timeline > .con {
    position: relative;
    padding-left: 224px;
	    clear: both;
}
.timeline.timeline_modul {
    font-size: 1rem;
    line-height: 140%;
	clear: both;
}

.point-timeline {
    position: absolute;
    background-color: #fff;
    border: 3px solid #1fb4b6;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    left: 16.4%;
    z-index: 2;
}

.timeline-con.con p:first-child {
    margin-top: 0;
}
.timeline-con.con .c02:last-child {
    font-size: .8rem;
    line-height: 140%;
}

.outro-text-event.con {
    background: #1782be;
    padding: 30px;
	color:#fff;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}


.kontrast01 .outro-text-event.con, .outro-text-event.con h2 {
   color: #fff;
}

.kontrast01 .parallax-modul-wrapper span {
    background: #000;
}

/*IFRAME*/
.iframe-event-wrapper {
    padding-top: 250px;
}

.iframe-event-wrapper iframe {

		width: 100%;
		height: 10000px;

    background: transparent;
    border: none;
}


.outro-text-event.con h3 {
    color: #fff;
}

@media screen and (max-width:1660px){
.batch-wrapper {
    width: 20%;
}

	.timeline.timeline_modul .con {
    width: 100%;
}
	.timeline {
    width: 960px;
}
	.point-timeline {
    left: 21.8%;
}
	.timeline-con.con {
    padding-left: 6%;
}
	.timeline-date {
    width: 19%;
}
div#timeline .con:first-child {
    padding-left: 0;
    text-align: center;
}
	section.timeline.timeline_modul .con {
    margin: 0;
}
}

@media screen and (max-width:1080px){
.batch-wrapper {
    width: 100%;
    text-align: center;
    position: static;
}
	.con.unternehmen-event {
    width: 100%;
}
	.con.unsere-partner img {
    width: 100%;
}
}
@media screen and (max-width:1024px){
.timeline {
    width: 690px;
}
	.timeline > .con {
    padding-left: 165px;
}
}


@media screen and (max-width:960px){
.con.formular-event {
    width: 100%;
    text-align: center;
    padding: 80px 30px 80px;
}
}

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

     section.timeline.timeline_modul .con:first-child h2 {
        padding-left: 0;
        margin-left: -30px;
    }
.timeline.timeline_modul {
    padding-left: 30px !important;
}
.timeline {
    width: 100%;
}
.timeline > .con {
    padding-left: 30px;
}
.point-timeline {
    left: 15px;
}
	.con.unsere-partner {
    text-align: center;
    padding: 80px 30px 0;
}
.timeline-date {
    width: 100%;
    position: static;
    padding-left: 50px;
    padding-bottom: 15px;
    border-left: 1px solid #ccc;
    /* border-bottom: 1px solid #ccc; */
    font-weight: 600;
    padding-right: 30px;
}
.timeline-con.con {
    padding-left: 50px;
	border-left: 1px solid #ccc;
    min-height: 50px;
    padding-bottom: 50px;
    padding-right: 30px;
}
	.timeline-con.con .c02:last-child {
    padding-left: 0px;
}
	.timeline-con.con ul {
    padding-left: 20px;
		    margin: 0 0 30px 0;

}

	
	
	
	/*iframe*/
	.iframe-event-wrapper {
    padding-top: 0px;
}
	.iframe-event-wrapper iframe {
    width: 100%;
    height: 88%;
    background: transparent;
    border: none;
    position: fixed;
}

.outro-text-event.con {
    width: 90% !important;
}


}





/*//////////////////////////////////////////////////////////////////////////
/////////////////////////////////////  AKKORDEON MODUL /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////*/


.akkordeon_plus div:last-child {
    transform: rotate(90deg);
}
.akkordeon_plus div {
    background: #1fb3b6;
    width: 20px;
    height: 4px;
    border-radius: 100px;
    position: absolute;
    top: 8px;
    right: 8px;
		-webkit-transition: 1s ease-in-out all;
	transition: 1s ease-in-out all;
}

.akkordeon_plus {
    position: absolute;
    right: 17px;
    top: 24px;
    width: 20px;
    height: 20px;
}

.akkordeon-active .akkordeon_plus div{background-color:#fff; transform: rotate(315deg)}
.akkordeon-active .akkordeon_plus div:last-child{background-color:#fff; transform: rotate(400deg)}



section.con.akkordeon_wrapper > .c02:first-child {
    padding-top: 60px;
    padding-left: 120px;
	padding-right: 60px;
}
.field-name, .field-message {
    padding-right: 30px;
}

.akkordeon-title.akkordeon-headline {
    text-align: center;
    margin-bottom: 30px;
}

.con.akkordeon_wrapper {
    width: 100%;
    padding: 0 120px;
}

.con.akkordeon_wrapper {
	-webkit-transition: 1s ease-in-out all;
	transition: 1s ease-in-out all;
	position: relative;
	top:100px;
	opacity: 0;
}
.con.akkordeon_wrapper.ani {
	top:0px;
	opacity: 1;
}
.kontrast01 .akkordeon > .akkordeon-title {
    color: #fff;
    background: #222222;
}
.kontrast01 .akkordeon.akkordeon-active > .akkordeon-title {
    background: #000000 !important;
}

.con.akkordeon_wrapper > .c01 > .akkordeon-title {
    text-align: center;
    padding: 80px 0px 20px;
}

.akkordeon_wrapper li{ 
    list-style-type: disc;
    margin-left:20px;
}
.akkordeon > .akkordeon-title {
    background-color: #f2f2f2;
    padding: 15px 50px 15px 20px;
    color: #000000;
    margin-top: 5px;
    cursor: pointer;
    margin-bottom: 5px;
    position: relative;
	    border-radius: 15px;
}

img.akkordeon_arrow {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 15px;
    transform: rotate(180deg);
	-webkit-transition: 1s ease-in-out all;
	transition: 1s ease-in-out all;
}
.akkordeon.akkordeon-active img.akkordeon_arrow {
    transform: rotate(90deg);
}
.akkordeon .akkordeon_content h3 {
    margin: 30px 0 10px 0;
}
.akkordeon h5{
    font-weight:bold;
    margin-top:15px;
    
}
.akkordeon h3 img {
    width: 30px;
        padding-right: 0;
    margin-right: 10px;
	-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
	    top: -2px;
	position: relative;
}

.akkordeon.akkordeon-active h3 img {
	-moz-transform: rotate(-0deg);
-ms-transform: rotate(-0deg);
-o-transform: rotate(-0deg);
-webkit-transform: rotate(-0deg);
transform: rotate(-0deg);
}

.akkordeon_content{
    display: none;
    padding:30px;
}
.light{
    color:#ccc;
}
.bewerbungslink{
    padding:10px 0 0 0 ;
}
.akkordeon.akkordeon-active > .akkordeon-title, .page-fragen-besucher .akkordeon.akkordeon-active > .akkordeon-title{
  background: linear-gradient(90deg, #1782be, #1fb4b6, #1782be);
}
.akkordeon.akkordeon-active > .akkordeon-title h3, .page-fragen-besucher .akkordeon.akkordeon-active > .akkordeon-title h3{
   color : #fff;
}
.akkordeon-title h3 {
    margin: 0;
    font-size: 1rem;
    padding: 5px 10px;
}
.subheadline{
	margin:0 0 8px 0;
	display:block;
}




.akkordeon, .akkordeon-headline{
    padding:0px 0 0px 0px;
	position: relative;
	top:400px;
	opacity: 0;
	-webkit-transition:1s ease-in-out all;
	transition:1s ease-in-out all;
}
.akkordeon, .akkordeon-headline{
	top:0px;
	opacity: 1;
}
.akkordeon:nth-child(odd){
	top:0px;
	opacity: 1;
	transition-delay: .5s;
}
.akkordeon p{
    margin-top:0;
}
.akkordeon button {
    margin-top: 20px;
    /* width: 250px; */
    /* padding: 5px 10px; */
    /* height: 50px !important; */
    margin: 50px 0 0 0;
    outline: none;
    border: none;
}
#content .akkordeon ul {
    margin: 5px 0 10px 0;
    padding: 0 ;
}

.con.akkordeon_wrapper {
    width: 100%;
    padding-bottom: 120px;
}

.akkordeon_mit_bild .akkordeon-title {
	    padding: 15px 50px 15px 140px;
}
img.akkordeon_modul-img {
    width: 113px;
    position: absolute;
    top: 0;
    left: 0;
}
@media screen and (max-width:1440px){
section.con.akkordeon_wrapper > .c02:first-child {
    padding-top: 60px;
    padding-left: 0px;
    padding-right: 60px;
}
}

@media screen and (max-width:1340px){
.con.akkordeon_wrapper {
    width: 100%;
}
	

.con.akkordeon_wrapper {
    width: 100%;
	padding: 30px 30px 120px 30px;
        margin: 0;
}
	section.con.akkordeon_wrapper > .c02:first-child {

	padding: 30px;
}
}

@media screen and (max-width:1140px){
section.con.akkordeon_wrapper > .c02:first-child {
    padding-top: 60px;
    padding-left: 0;
    padding-right: 60px;
}
  
}

@media screen and (max-width:768px){
      section.con.akkordeon_wrapper > .c02:first-child {
        padding-top: 0px;
        padding-left: 0;
        padding-right: 0px;
    }
.page-kontakt .con, .page-contact .con {
    width: 100%;
}
	.subheadline{
	display:none;
    margin: 0 0 8px 0;
    display: none;
}
    .akkordeon > .akkordeon-title {
        min-height: inherit;
    }
.akkordeon.akkordeon_mit_bild.akkordeon-active .subheadline {
    display: block;
}
}
@media screen and (max-width:460px){
img.akkordeon_modul-img {
    width: 85px;
}
    .akkordeon > .akkordeon-title {
        min-height: inherit;
    }
	.akkordeon_mit_bild .akkordeon-title {
    padding: 15px 50px 15px 99px;
}
	.akkordeon-title h3 {
    margin: 0;
}

}





/*//////////////////////////////////////////////////////////////////////////
///////////////////////////////////// DOWNLOADS /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////*/


.downloads_inner_wrapper{
	display:grid;
	grid-template-columns:repeat(4, 1fr);
	gap:24px;
}

/* Einzelnes Element */
.download_el{
	background:#e7e8ee;
	border-radius:15px;
	padding:25px;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
	height:100%;
	min-height:250px;
	position:relative;
}

/* Textbereich */
.download_text{
	flex:1;
	margin-bottom:20px;
}

/* Button unten ausrichten */
.download_link{
	align-self:flex-start;
	margin-top:auto;
}
.download_el{
	transition:0.3s ease;
}

.download_el:hover{
	transform:translateY(-5px);
	box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
.downloads_inner_wrapper{
	align-items:stretch;
}

.download-inner-wrapper {
    width: 1600px;
    margin: 0 auto;
}
.downloads_einleitung{
	width:100%;
	float:none;
}

.downloads_einleitung .c66{
	width:100%;
	float:none;
	box-sizing:border-box;
}
.downloads_einleitung .c66{
	float:none;
	width:66.666%;
	max-width:100%;
}
.downloads_einleitung {
    padding: 0 0 30px 0;
}
@media(max-width:1660px){
	.download-inner-wrapper {
    width: 100%;
    margin: 0 auto;

}
section.downloads_wrapper {
    padding: 0 30px;
}

}
@media(max-width:1340px){

    .downloads_einleitung {
        padding: 0 0 30px 0;
    }
    .downloads_einleitung .c66 {
        width:100%;
    }
	.downloads_inner_wrapper{
		grid-template-columns:repeat(2, 1fr);
	}

}
@media(max-width:768px){
.download_text {
    font-size: 16px;
    line-height: 120%;
}
	.downloads_inner_wrapper{
		grid-template-columns:1fr;
	}

}


/* =====================================================
   BGF Handlungsfelder – Flexible Content Element
   bgf-handlungsfelder.css
   ===================================================== */
/* ---------- Design Tokens ---------- */
:root {
    --bgf-clr-bg:         #f2f2f2;
    --bgf-clr-primary:    #1782be;
    --bgf-clr-accent:     #1fb4b6;
    --bgf-clr-white:      #ffffff;
    --bgf-clr-card-bg:    #ffffff;
    --bgf-clr-card-back:  #2a5c45;


    --bgf-space-xs:  0.5rem;
    --bgf-space-sm:  1rem;
    --bgf-space-md:  1.75rem;
    --bgf-space-lg:  3rem;
    --bgf-space-xl:  5rem;

    --bgf-radius:    1rem;
    --bgf-shadow:    0 4px 24px rgba(42, 92, 69, 0.10);
    --bgf-shadow-hover: 0 16px 48px rgba(42, 92, 69, 0.22);

    --bgf-transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

section.bgf-handlungsfelder {
    clear: both;
}

h3.bgf-kachel__titel.bgf-kachel__titel--back {

    color: #fff;
    font-weight: 400;
}
.bgf-kachel__text {

    line-height: 140% !important;
}
h3.bgf-kachel__titel.bgf-kachel__titel--back {
    font-size: 14px;
    font-weight: 900;
}

/* ---------- Section Wrapper ---------- */
.bgf-handlungsfelder {
    background: var(--bgf-clr-bg);
    padding: var(--bgf-space-xl) 0;
    position: relative;
    overflow: hidden;
}

/* Dekorative Hintergrund-Ellipse */
.bgf-handlungsfelder::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -180px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--bgf-clr-accent2) 0%, transparent 70%);
    opacity: 0.55;
    pointer-events: none;
}
/*
.bgf-handlungsfelder::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--bgf-clr-accent) 0%, transparent 70%);
    opacity: 0.18;
    pointer-events: none;
}*/

/* ---------- Container ---------- */
.zentrieren  .bgf-container {
    margin: 0 auto;
    padding: 0 var(--bgf-space-md);
    position: relative;
    z-index: 1;
}
.bgf-container {
    max-width: 100%;
    margin: 0 ;
    padding: 0 var(--bgf-space-md);
	    padding-left: 100px;
    position: relative;
    z-index: 1;
        padding-right: 100px;
}

/* ---------- Intro-Bereich ---------- */


.bgf-intro {
    max-width: auto;
    margin: 0 auto var(--bgf-space-lg);
    text-align: left;
}

.bgf-headline {
    font-family: var(--bgf-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--bgf-clr-primary);
    line-height: 1.2;
    margin: 0 0 var(--bgf-space-sm);
    letter-spacing: -0.02em;
}

.bgf-intro-text {
    
    color: var(--bgf-clr-text-light);
    line-height: 1.7;
}

.bgf-intro-text p { margin: 0; }
.bgf-intro-text p + p { margin-top: 0.75em; }

/* ---------- Animate-In: Intro ---------- */
[data-bgf-animate="intro"] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--bgf-transition),
                transform 0.7s var(--bgf-transition);
}
[data-bgf-animate="intro"].bgf-visible {
    opacity: 1;
    transform: none;
}

/* ---------- Grid ---------- */
.bgf-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--bgf-space-md);
    list-style: none;
    margin: 0;
    clear: both;
    padding: 0 ;
}

.bgf-grid ul li{
    background-image: url(../images/check-icon-white.svg);
}


.bgf-intro.bgf-visible {
    width: 1600px;
    float: left;
}
/* ---------- Kachel – Flip-Card Perspektive ---------- */
.bgf-kachel {
    perspective: 1000px;
    /* Quadratisch über aspect-ratio */
    aspect-ratio: 1 / 1;
    /* Animate-In State */
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.6s var(--bgf-transition),
                transform 0.6s var(--bgf-transition);
}

.bgf-kachel.bgf-visible {
    opacity: 1;
    transform: none;
}

/* Delay-Staffelung per data-delay (0–7) */
.bgf-kachel[data-delay="0"] { transition-delay: 0.05s; }
.bgf-kachel[data-delay="1"] { transition-delay: 0.12s; }
.bgf-kachel[data-delay="2"] { transition-delay: 0.19s; }
.bgf-kachel[data-delay="3"] { transition-delay: 0.26s; }
.bgf-kachel[data-delay="4"] { transition-delay: 0.33s; }
.bgf-kachel[data-delay="5"] { transition-delay: 0.40s; }
.bgf-kachel[data-delay="6"] { transition-delay: 0.47s; }
.bgf-kachel[data-delay="7"] { transition-delay: 0.54s; }

/* ---------- Inner: Flip-Container ---------- */
.bgf-kachel__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: var(--bgf-radius);
}

.bgf-kachel:hover .bgf-kachel__inner,
.bgf-kachel:focus-within .bgf-kachel__inner,
.bgf-kachel.bgf-flipped .bgf-kachel__inner {
    transform: rotateY(180deg);
}

/* ---------- Vorderseite ---------- */
.bgf-kachel__front,
.bgf-kachel__back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--bgf-radius);
    padding: var(--bgf-space-md);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    overflow: hidden;
}

.bgf-kachel__front {
    background: var(--bgf-clr-card-bg);
    box-shadow: var(--bgf-shadow);
    border: 1.5px solid rgba(42, 92, 69, 0.08);
}

/* Grüner Akzentstreifen oben */
.bgf-kachel__front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bgf-clr-primary), var(--bgf-clr-accent));
    border-radius: var(--bgf-radius) var(--bgf-radius) 0 0;
}

/* ---------- Icon-Bereich (Vorderseite) ---------- */
.bgf-kachel__icon-wrap {
    position: absolute;
    top: var(--bgf-space-md);
    left: var(--bgf-space-md);
    width: 60px;
    height: 60px;
    background: var(--bgf-clr-accent2);
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.bgf-kachel:hover .bgf-kachel__icon-wrap {
    transform: scale(1.08) rotate(-4deg);
    background: var(--bgf-clr-accent);
}

.bgf-kachel__icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.bgf-kachel__icon-fa {
    font-size: 1.4rem;
    color: var(--bgf-clr-primary);
}

/* ---------- Titel (Vorderseite) ---------- */
.bgf-kachel__titel {
    font-weight: 700;
    color: var(--bgf-clr-text);
    line-height: 1.3;
    margin: 0 0 var(--bgf-space-xs);
}

p.bgf-kachel__subtitel {
    margin: 0 0 5px;
}
p.bgf-kachel__subtitel.bgf-kachel__subtitel--back {
    color: #fff;
}


/* ---------- Pfeil-Icon (Vorderseite) ---------- */
.bgf-kachel__arrow {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--bgf-clr-accent);
    transition: transform 0.3s ease;
}

.bgf-kachel:hover .bgf-kachel__arrow {
    transform: translateX(5px);
}

/* ---------- Rückseite ---------- */
.bgf-kachel__back {
  background: linear-gradient(90deg, var(--bgf-clr-primary), var(--bgf-clr-accent));
    transform: rotateY(180deg);
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: var(--bgf-shadow-hover);
}

/* Dezenter Kreis-Ornament Rückseite */
.bgf-kachel__back::after {
    content: '';
    position: absolute;
    bottom: -17px;
    right: 5%;
    width: 200px;
    height: 200px;
    /* border-radius: 50%; */
    opacity: .5;
    pointer-events: none;
    background-image: url(../images/haken-weiss.png);
    background-repeat: no-repeat;
    background-position: right 5% bottom 0;
    background-size: contain;
}


.bgf-kachel__titel--back {
    color: var(--bgf-clr-accent2);
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    margin: 0 0 var(--bgf-space-sm);
}

/* ---------- Text (Rückseite) ---------- */
.bgf-kachel__text {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    overflow: hidden;
}

.bgf-kachel__text p { margin: 0; }
.bgf-kachel__text p + p { margin-top: 0.5em; }

/* =====================================================
   RESPONSIVE
   ===================================================== */




   .kleine_kacheln .bgf-grid {    grid-template-columns: repeat(5, 1fr);}

.kleine_kacheln .bgf-container {    max-width: 100%;}
.kleine_kacheln h3.bgf-kachel__titel {    font-size: 22px;}
.kleine_kacheln p.bgf-kachel__subtitel{ font-size: 18px;}
.kleine_kacheln .bgf-kachel__text {     font-size: 16px; }
.kleine_kacheln  p.bgf-kachel__subtitel.bgf-kachel__subtitel--back {    font-size: 18px; }
section.bgf-handlungsfelder.kleine_kacheln {
    background: #fff !important;
    padding: 0 0 30px;
}
.kleine_kacheln  h3.bgf-kachel__titel.bgf-kachel__titel--back {
        font-size: 14px;
        margin-bottom: 10px;
    }
@media screen and (max-width: 2560px) {
.bgf-grid {
    grid-template-columns: repeat(4, 1fr);
}
.bgf-container {
        padding-right: 30px;
}
}
@media screen and (max-width: 2180px) {
.bgf-grid {
    grid-template-columns: repeat(3, 1fr);
}
.bgf-grid {width:1660px;}
.kleine_kacheln  .bgf-grid {width:1820px;}
}
@media (max-width: 1880px) {
.kleine_kacheln .bgf-kachel__front,
.kleine_kacheln  .bgf-kachel__back {
    padding: 20px;
}
.kleine_kacheln  .bgf-grid {width:100%;}
}

@media (max-width: 1660px) {


    .bgf-grid {width:100%;}

    .bgf-intro.bgf-visible {
    width: 100%;
    float: left;
}
  
    .kleine_kacheln .bgf-kachel__icon-wrap {
        left: 20px;
        top: 20px;
        width: 40px;
        height: 40px;
    }
   .kleine_kacheln  .bgf-kachel__icon-img{    width: 40px;
        height: 40px;
    }
    .kleine_kacheln .bgf-kachel__text {
    font-size: 13px;
}
.kleine_kacheln p.bgf-kachel__subtitel.bgf-kachel__subtitel--back {
    font-size: 16px;
}
   .bgf-container {
        padding-left: 30px;
    }
   
        .bgf-kachel__text {
        font-size: 18px;
        line-height: 120%;
    }
    .kleine_kacheln h3.bgf-kachel__titel {
    font-size: 20px;
    margin-bottom: 10px;
}
}
@media (max-width: 1340px) {
   .kleine_kacheln .bgf-grid {    grid-template-columns: repeat(4, 1fr);}
.bgf-kachel__titel {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
}
 .bgf-kachel__text {
        font-size: 14px;
        line-height: 120%;
    }
}

/* Tablet: 2 Spalten */
@media (max-width: 1024px) {
    .bgf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
       .kleine_kacheln .bgf-grid {    grid-template-columns: repeat(3, 1fr);}

  
}

/* Mobile: 1 Spalte, kein Flip – stattdessen Tap-Toggle */
@media (max-width: 768px) {

   .kleine_kacheln .bgf-grid {    grid-template-columns: repeat(1, 1fr);}
    h3.bgf-kachel__titel, p.bgf-kachel__subtitel {
    font-size: 18px;
}
    .bgf-grid {
        grid-template-columns: 1fr;
        gap: var(--bgf-space-sm);
    }

    .bgf-handlungsfelder {
        padding: var(--bgf-space-lg) 0;
    }

    .bgf-kachel {
        aspect-ratio: 1 / 1;
    }

    /* Auf Mobile etwas kleineres Padding */
    .bgf-kachel__front,
    .bgf-kachel__back {
        padding: var(--bgf-space-sm);
    }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    .bgf-kachel,
    [data-bgf-animate="intro"],
    .bgf-kachel__inner,
    .bgf-kachel__icon-wrap,
    .bgf-kachel__arrow {
        transition: none !important;
        animation: none !important;
    }
}



/*//////////////////////////////////////////////////////////////////////////
///////////////////////////////////// POPUP /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////*/	






.kljb-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
    top: 0;
    padding: 130px 20% 0;
    left: 0;
    text-align: center;
    z-index: 100000000000;
	opacity: 0;
	-webkit-transition:1s ease-in-out all;
	transition:1s ease-in-out all;
}
.js .kljb-popup{opacity:1;}
img.pop-close {
    position: absolute;
    width: 40px;
    top: 30px;
    right: 30px;
    cursor: pointer;
}
.kljb-popup-img img {
    width: 100%;
    display: block;
}


.kljb-popup-img{position:relative;}
a.popup-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/*\\\\\\\\\\\\\\\\\\\\ POPUP END ////////////////////*/












form#optin_form {
    width: 100% !important;
}

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

    .nl-form-body {
        margin-left: 0 !important;
    }

}


@media screen and (max-width:768px){
    div#fa_6, div#fa_5, div#fa_7 {
        width: 100% !important;
    }
}









/* Fachbereiche Grid */



/* =========================================================
   BGM THEMEN - MODUL (3-SPALTER IM NEWS-STYLE)
   ========================================================= */

/* 1. Das Grid-System (entspricht .news-slider) */
.bgm-posts-grid {
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  box-sizing: border-box;
}

/* 2. Die einzelnen BGM-Karten (entspricht .news-slider article) */
.bgm-post-card {
  width: 33.333%; /* 3-Spalter statt 50% */
  box-sizing: border-box;
  padding: 30px 15px; /* Leicht reduziertes Padding für 3 Spalten */
  position: relative;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* 3. Bilder innerhalb der Karten (entspricht .news-slider article img) */
/* 1. Im normalen Zustand (kann so bleiben, nur top weglassen) */
.bgm-post-card .post-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  /* transition auf transform optimieren */
  -webkit-transition: transform 1s ease;
  transition: transform 1s ease;
}

/* 2. Der korrigierte Hover-Effekt */
.bgm-post-card:hover .post-image img {
  /* Verschiebt das Bild butterweich um 20px nach oben */
  transform: translateY(-20px); 
}

/* 4. Titel (entspricht .news-slider article h3.entry-title) */
.bgm-post-card .post-content h3 {
  font-size: 1.2rem;
  line-height: 1.4;
  padding: 0px 0 10px 0;
  margin: 0;
}
span.bgm-post-category  {
    font-weight: 600;
    background: linear-gradient(to right, #1782be, #1fb4b6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 10px 0 0;
    display: block;
        font-size: 16px;
}
span.bgm-single-meta-item.bgm-single-category{
      background: linear-gradient(to right, #1782be, #1fb4b6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
span.featured-trenner {
    padding: 0 20px;
}
.bgm-post-card .post-content h3 a {
  text-decoration: none;
  color: inherit;
}

/* 5. Text-Auszug */
.bgm-post-card .post-content p {
  margin: 0 0 15px 0;
  line-height: 1.6;
}



/* ── Responsive Anpassungen (Exakt an deine Breakpoints angepasst) ── */

/* 1. Desktop & große Tablets (Wechsel auf 2 Spalten ab 1340px) */
@media screen and (max-width: 1340px) {
  .bgm-posts-grid {
    padding: 0 40px;
  }
  .bgm-post-card {
    width: 50%; /* Auf mittleren Screens wird es zum gemütlichen 2-Spalter */
    padding: 15px 15px;
  }
}

/* 2. Smartphones & kleine Tablets (Wechsel auf 1 Spalte ab 768px) */
@media screen and (max-width: 768px) {
  .bgm-posts-grid {
    padding: 0 20px;
  }
  .bgm-post-card {
    width: 100%; /* Volle Breite untereinander gestapelt */
    padding: 0 0 30px 0; /* Abstand nach unten zum nächsten Beitrag */
  }
}

.aktuelle-fachbeitraege-headline {
    padding: 30px 30px 0;
}

section.bgm-ajax-module {
    padding-top: 120px;
}
.fachbereich-icon {
    width: 50px;
    margin: 0 auto;
}
h4.fachbereich-title {
    font-size: .8rem;
    min-height: 50px;
}
.fachbereich-desc {
    font-size: .7rem;
    line-height: 120%;
}
section.bgm-ajax-module {
    clear: both;
}
.bgm-fachbereiche-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
        padding: 0 30px;
}

.fachbereich-card {
    background: #e7e8ee;
    border: 1px solid transparent;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
    position: relative;
}
.fachbereich-icon {
        width: auto;
    margin: 0 auto;
    height: 50px;
    margin-bottom: 10px;
}
.fachbereich-icon img {
    width: auto;
    height: 100%;
}
.fachbereich-card:hover {
    background: #ffffff;
    transform: translateY(-2px);
    
}

.fachbereich-card.is-active {
    background: #fff;
    border-color: #007cba; /* Deine Markenfarbe */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Empfohlener Beitrag */
.bgm-featured-post {
    margin-bottom: 0px;
    background: #fff;
    border-radius: 8px;
    /*box-shadow: 0 4px 20px rgba(0,0,0,0.05);*/
    overflow: hidden;
    position: relative;
    width: 1600px;
    margin: 0 auto;
}
.lesezeit {
    padding-left: 37px;
    background-image: url(../images/uhr-icon.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: top 3px left;
    font-size: 15px;
        min-height: 27px;
}
span.bgm-single-meta-item.bgm-single-reading-time {
    padding-left: 37px;
    background-image: url(../images/uhr-icon.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: top 1px left 4px;
    padding-bottom: 5px;
}
.bgm-featured-post .lesezeit {
    background-image: url(../images/uhr-icon.svg);
}

/* Ajax Lade-Indikator */
#bgm-posts-target {
    transition: opacity 0.25s ease;
}

#bgm-posts-target.is-loading {
    opacity: 0.5;
    pointer-events: none; /* Klicks während des Ladens blockieren */
}


.bgm-featured-inner {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    clear: both;
    overflow: hidden;
}
.featured-image {
    width: 43%;
    float: left;
}
.featured-content {
    width: 57%;
    float: left;
    padding: 30px;
}
.featured-image img {
    display: block;
        border-radius: 8px;
}

.bgm-featured-inner {
}
.bgm-featured-inner h3, .bgm-featured-inner h3 a:link, .bgm-featured-inner h3 a:visited, .bgm-featured-inner h3 a:hover, .bgm-featured-inner h3 a:active {
    color:#464646;
    background:none;
}
div#bgm-featured-wrapper {
    padding: 0 30px;
}
.featured-badge{    font-weight: 600; background: linear-gradient(to right, #1782be, #1fb4b6); -webkit-background-clip: text; background-clip: text; color: transparent;}

.bgm-pagination {
    text-align: center;
}
.bgm-pagination * {
    width: 40px;
    display: inline-block;
    border: 1px solid #ccc;
    text-align: center;
    padding: 10px;
}

a.btn.read-more-bgm {
    position: absolute;
       bottom: 10px;
    right: 17px;
    padding: 5px 15px;
    font-size: 18px;
    border-radius: 5px;
}

a.bgm-post-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        z-index: 100;
}
p.no-posts {
    padding: 0 30px 30px;
}






svg.fachbereich-link-pfeil {
    rotate: 90deg;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 5px;
    bottom: 5px;
}

/* Beim Hovern wird die ID des zweiten Verlaufs geladen */
.fachbereich-card:hover .fachbereich-link-pfeil path, .is-active .fachbereich-link-pfeil path {
  stroke: url(#pfeil-verlauf-hover);
}


.bgm-single-meta {
    font-weight: 500;
    padding: 15px 0 0;
}










/* Variablen für einfache Anpassung an das Kundendesign */
:root {
  --bgm-primary: #005a9c; /* Hauptfarbe */
  --bgm-text-dark: #333333;
  --bgm-text-light: #ffffff;
  --bgm-shadow: rgba(0, 0, 0, 0.15);
}

/* Container-Setup */
.bgm-sticky-banner {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: inherit;
}

/* Der schwebende Button */
.bgm-sticky-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--bgm-primary);
  color: var(--bgm-text-light);
  border: none;
  padding: 12px 18px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--bgm-shadow);
  transition: all 0.3s ease;
}

.bgm-icon {
  width: 20px;
  height: 20px;
}

.bgm-trigger-text {
  font-weight: 600;
  font-size: 14px;
}

/* Das versteckte Info-Panel */
.bgm-sticky-content {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 320px;
  background: var(--bgm-text-light);
  color: var(--bgm-text-dark);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bgm-sticky-content h3 {
  margin: 0 0 10px 0;
  font-size: 15px;
  line-height: 1.3;
  background: linear-gradient(to right, #1782be, #1fb4b6); -webkit-background-clip: text; background-clip: text; color: transparent;
}

.bgm-sticky-content p {
  margin: 0 0 15px 0;
  font-size: 13px;
  line-height: 1.4;
}

.bgm-cta-button {
  display: inline-block;
  background: var(--bgm-primary);
  color: var(--bgm-text-light);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.con.bgm-back-button-container {
    padding: 0 0 0 100px;
}
@media screen and (max-width:1660px){
.con.bgm-back-button-container {
    padding: 0 0 0 30px;
}

.bgm-featured-post {
    width: 100%;
}

}
/* DESKTOP HOVER EFFEKT */
@media (min-width: 769px) {
  .bgm-sticky-banner:hover .bgm-sticky-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .bgm-sticky-trigger:hover {
    transform: scale(1.03);
  }
}

/* MOBILE OPTIMIERUNG (Smartphones & Tablets) */
@media (max-width: 768px) {
  .bgm-sticky-banner {
    bottom: 15px;
    right: 15px;
    left: 15px; /* Dehnt sich leicht aus */
    align-items: center;
  }

  .bgm-sticky-trigger {
    width: auto;
    padding: 10px 16px;
    border-radius: 20px;
  }

  /* Auf Mobile verstecken wir den Text im Button standardmäßig für weniger Unruhe */
  .bgm-trigger-text {
    font-size: 13px;
  }

  /* Das Info-Panel verhält sich auf Mobile wie ein modales Overlay oberhalb des Buttons */
  .bgm-sticky-content {
    left: 0;
    right: 0;
    width: auto;
    bottom: 55px;
  }

  /* Aktivierungsklasse für Mobile per Klick/Tap */
  .bgm-sticky-banner.is-active .bgm-sticky-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  span.bgm-post-category {
    padding: 10px 0 0;
}
    .bgm-post-card {
        width: 100%;
        padding: 30px 0 30px 0;
    }

    .featured-image, .featured-content {
    width: 100%;
}
}





/* =========================================================
   TAB MODULE (LINKS NAVIGATION, RECHTS CONTENT)
   ========================================================= */




.wrap-tab-content-left {
    max-width: 1920px;
    margin: 0 0 0 120px;
}
  .tab-header{
    margin-bottom:clamp(26px, 4vw, 40px);
  }
  .eyebrow{
    font-family:'IBM Plex Mono', monospace;
    font-size:12px; letter-spacing:0.08em; text-transform:uppercase;
    color:var(--primary); display:flex; align-items:center; gap:8px; margin-bottom:14px;
  }
  .eyebrow::before{ content:""; width:16px; height:1px; background:var(--primary); display:inline-block; }
 

  
  .intro{ max-width:600px; color:var(--muted); font-size:15.5px; margin:0; }

  /* ---------- layout ---------- */



  .panel{
    display:grid;
    grid-template-columns:600px 1fr;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    overflow:hidden;
	    border: 1px solid #f2f2f2;
		    border-radius: 15px;
			background-color:#e7e8ee;
  }

  div#tabnav{
    background:#e7e8ee;
    border-right:1px solid var(--border);
    padding:10px;
    display:flex;
    flex-direction:column;
    gap:2px;
  }
button.nav-item {
    background: #fff !important;
    color: #000 !important;
}
button.nav-item.active {
	border-color: #1fb4b6;
	font-weight: 600 !important;
		 }
  .nav-item{
    display:flex;
    align-items:center;
    gap:12px;
    width:100%;
    text-align:left;
    background:none;
    border:none;
    border-left:2.5px solid transparent;
    padding:11px 12px;
    border-radius:8px;
    cursor:pointer;
    font-family:'Inter', sans-serif;
    font-size:13.5px;
    font-weight:500;
    color:var(--muted);
    transition:background .15s ease, color .15s ease, border-color .15s ease;
  }
  .nav-item:hover{ background:#EEF3F1; color:var(--ink); }
  .nav-item:focus-visible{ outline:2px solid var(--primary); outline-offset:-2px; }
  .nav-item.active{
    background:#EEF3F1;
    color:var(--primary-deep);
    border-left-color:var(--accent);
    font-weight:600;
  }
  .nav-item .n-icon{
    flex:none; width:20px; height:20px; color:inherit; opacity:0.85;
  }
  .nav-item .n-icon svg{ width:100%; height:100%; }
  .nav-item span.label{ line-height:1.3; }

  /* ---------- content ---------- */
  .content-tab-content-left{
    padding:clamp(28px, 4vw, 44px);
    display:flex;
    flex-direction:column;
    justify-content:top;
  }

  .c-inner{
    animation:fadeIn .28s ease;
  }
  @keyframes fadeIn{
    from{ opacity:0; transform:translateY(6px); }
    to{ opacity:1; transform:translateY(0); }
  }

  .c-icon{
    width:46px; height:46px; border-radius:5px;
     color:var(--primary-deep);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:18px;
	    background: #fff;
  }
  .c-icon svg{ width:24px; height:24px; }

  .content-tab-content-left h2{
    font-family:'Space Grotesk', sans-serif;
    font-size:clamp(20px, 2.4vw, 25px);
    font-weight:600;
    margin:0 0 10px 0;
    letter-spacing:-0.005em;
  }
  .content p.desc{
    font-size:15px; color:var(--muted); margin:0 0 22px 0; max-width:480px;
  }

  .disc-label{margin:0 0 10px 0;
  }
  .disc-list{
    display:flex; flex-wrap:wrap; gap:8px;
  }
  .disc-tag{
    font-size:13px; font-weight:500; color:var(--primary-deep);
    background:#F1F5F3; border:1px solid var(--border-soft);
    padding:6px 12px; border-radius:8px;
  }

    @media (max-width:2160px){

          .wrap-tab-content-left {
    max-width: 1280px;
    margin: 0 0 0 120px;
}
  .panel {
    grid-template-columns: 280px 1fr;}

    }

@media (max-width:1660px){
        .wrap-tab-content-left {
        margin: 0 0 0 60px;
    }
}
  @media (max-width:1340px){
  .wrap {
    max-width:  100%;
            margin: 0 30px;
}
		 }
  /* ---------- mobile ---------- */
  @media (max-width:768px){
	.wrap-tab-content-left {
    clear: both;
    padding: 0 30px;
    margin: 0;
}
button.nav-item {
    width: auto;
}
div#tabnav {
	
    gap: 7px;
    height: 89px;
}
    .panel{ grid-template-columns:1fr; }
    div#tabnav{
      flex-direction:row;
      overflow-x:auto;
      border-right:none;
      border-bottom:1px solid var(--border);
      -webkit-overflow-scrolling:touch;
    }
    .nav-item{
      flex:none;
      border-left:none;
      border-bottom:2.5px solid transparent;
      white-space:nowrap;
    }
    .nav-item.active{ border-bottom-color:var(--accent); }
    .nav-item span.label{ max-width:150px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
  }

  @media (prefers-reduced-motion: reduce){ *{ animation:none !important; transition:none !important; } }