/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:300 11px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color:#000;
	font-family: "barlow", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: clamp(18px, 1.1vw, 2.4rem);
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#000;
	text-decoration:none;
}
a:hover {
	color:#000;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

.wp-block-image img {
	width: 100%;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/


/* wrapper */
.wrapper {
	width: 100%;
	margin:0 auto;
	position:relative;
	overflow-x: hidden;
}


section{
	position: relative;
	
}

.section_inner{
	max-width: 68em;
    padding: 3em 1em;
	margin: 0 auto;
	position: relative;
	width: 95%;
}


/* header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.66);
	backdrop-filter: blur(8px);
}

.nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    padding-bottom: 0.5em;
}
.header_inner.section_inner {
    padding-bottom: 0em;
    padding-top: 0.5em;
}

.logo-img {
    height: 2.4em;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav .menu-item {
    font-size: 0.9em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0 0 2.9em;
}

.nav .menu-item a {
	border-bottom: 2px solid rgba(0,0,0,0);
}

.nav .menu-item a:hover {
	border-bottom: 2px solid rgba(0,0,0,1);
}

.nav .current-menu-item a {
	font-weight: 700;
	border-bottom: 2px solid rgba(0,0,0,1);
}



#mobmenu_ct {
    display: none;
    top: 1.6em;
    position: fixed;
    right: 0.1em;
    background-color: unset;
    z-index: 25;
}



.mobmenu_line {
    display: inline-block;
    background-color: #000;
    width: 29px;
    height: 3px;
    margin-bottom: 4px;
    float: left;
    transition: all 0.5s;
	opacity: 1;

}

.menuon	.mobmenu_line {

	box-shadow: none;

}

.mobmenu_line:nth-child(1) { 
	top:0px;
}
.mobmenu_line:nth-child(2) { 
	top: 20px;
	    margin-top: 1px;
}
.mobmenu_line:nth-child(3) { 
	top: 40px; 
	margin: 0;
	margin-top: 1px;
}

.mobmenu_ct_inner {
    position: absolute;
    right: 1.4em;
    top: 0;
    width: 34px;
    height: 35px;
    z-index: 30;
    cursor: pointer;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    opacity: 1;
    justify-content: center;
    align-items: center;
    align-content: center;
    display: flex;
    flex-direction: column;
    border-radius: 40px;
    transition: 0.5s all;

}


.menuon .mobmenu_line1 {
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
       margin-top: 3px;
	

}


.menuon .mobmenu_line2 {
    opacity: 0;
}


.menuon .mobmenu_line3 {
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -15px;


}


.mob_nav {
    width: 400px;
    background-color: rgba(255, 255, 255, 0.75);
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	box-shadow: -10px 0 10px rgba(0, 0, 0, 0.4);
	transform: translateX(430px);
	transition: 0.5s all;
	backdrop-filter: blur(8px);
}

.menuon .mob_nav{
	transform: translateX(0);
}

.mob_nav a{
	font-size: 1.35em;
	margin: 0.5em 0 0;
}

.mob_nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 1.1em;
    line-height: 2.1;
}



/* logo */
.logo {

}
.logo-img {

}
/* nav */
.nav {

}
/* sidebar */
.sidebar {

}
/* footer */
.footer {
	border-top: 1px solid rgba(0, 0, 0, 0.6);
}




/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

h1 {
    font-size: 2em;
    margin: 0 0 0.7em;
    font-weight: 400;
}

h2, .h2 {
	font-size: 0.9em;
	color: #5BAFBD;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

h3, .h3 {
    font-size: 1.8em;
    margin: 0 0 0.7em;
    font-weight: 300;
	line-height: 1.2;
}

h4, .h4 {
    font-size: 1.5em;
	line-height: normal
    margin: 0 0 0.8em;
	font-weight: 500;
}



.title_color_green h2, .title_color_green .h2, .title_color_green .facts_box_wrapper em, .title_color_green .year_box_item > div > p em {
	color: #9AC4A6;
}

.txt_white p, p.txt_white, .txt_white p a, a.txt_white, 
.txt_white h2, h2.txt_white, .txt_white h1, h1.txt_white, 
.txt_white h3, h3.txt_white, .txt_white h4, h4.txt_white, .txt_white {
	color: #fff;
}

.txt_black p, p.txt_black, .txt_black p a, a.txt_black, 
.txt_black h2, h2.txt_black, .txt_black h1, h1.txt_black, 
.txt_black h3, h3.txt_black, .txt_black h4, h4.txt_black, .txt_black {
	color: #000;
}



.txt_center{
	text-align: center;
}


.txt_block p{
	margin: 0 0 1em;
}

strong{
	font-weight: 600;
}

.facts_box_wrapper > div {
	display: grid;
	grid-template-columns: 1fr 1fr;
	color: rgba(0,0,0,0.5);
	font-size: 0.9em;
	gap: 2em 4em;
}

.facts_box_wrapper em {
	font-style: normal;
	font-size: 2em;
	font-weight: 600;
	color: #5BAFBD;
}

.facts_box p {
	margin: 0;
}

.year_box_item {
	padding: 1em 0;
}

.year_box_item:not(:last-of-type) {
	border-bottom: 1px solid rgba(0,0,0,0.3);
}

.year_box_item p {
	margin: 0.15em 0;
}

.year_box_item > div {
	display: grid;
	grid-template-columns: 5em auto;
}

.year_box_item > div > p em {
	font-style: normal;
	font-size: 1.25em;
	font-weight: 600;
	color: #5BAFBD;
}

.year_box_item strong {
	font-size: 1.25em;
	font-weight: 500;
}


/*------------------------------------*\
    PAGES
\*------------------------------------*/
h1.h1_intro {
    font-size: 2.3em;
}


.wp-block-button__link, .btn, .nl_send {
	color: #000;
    background-color: unset;
    border-radius: 0;
    box-shadow: none;
    text-decoration: none;
    padding: 1em 1em 1em 2.3em;
    font-size: 1em;
	position: relative;
}
.btn{
	display: block;
}



.wp-block-button__link::before, .btn::before, .nl_send::before {
    content: '';
	height: 1.5em;
	width: 1.5em;
	background-size: contain;
	background-image: url(/wp-content/uploads/2024/10/arrow_right_rund.svg);
	position: absolute;
	top: 0.9em;
	left: 0em;
	transition: all 0.5s;
	filter: contrast(2) invert(0);
}

.wp-block-button__link:hover::before, .btn:hover::before, .nl_send:hover::before {
    left: 0.4em;
	filter: contrast(2) invert(1);
}




.ext_box_mehr, .ext_box_weniger {
    font-weight: 600;
    letter-spacing: 0.05em;
    opacity: 1;
    cursor: pointer;
    transition: all 0.5s;
    color: #000;
	border-bottom: 2px solid rgba(0,0,0,0);
}

.ext_box_mehr:hover, .ext_box_weniger:hover {
	border-bottom: 2px solid rgba(0,0,0,1);

}

.ext_box_wrapper.active .ext_box_mehr {
	opacity: 0;
	pointer-events: none;
}

.ext_box_extra {
	display: none;
}

hr.has-black-color.is-style-default {
    border-top: 1px solid rgba(0, 0, 0, 0.5) !important;
}





.news_datum {
	margin: 0;
}

.news_img {
    width: 100%;
    padding-top: 55%;
    position: relative;
}

.news_img img{
    width: 100%;
    height: 100%;
    position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: 50% 50%;
	border-radius: 0.75em;
}

.news_post .section_inner {
    max-width: 1150px;
}
/*
.news_teaser_wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    grid-gap: 1.2em;
}*/

.news_teaser_wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    grid-gap: 4.5em 1.2em;
}

.news_line {
    width: 1px;
    background-color: #000;
    height: 100%;
}

.news_teaser_box {
    display: flex;
    flex-direction: column;
	justify-content: space-between;
	height: 100%;
	    justify-content: flex-start;
}

.news_teaser_box .news_teaser_content strong {
	font-size: 1.1em;
}

.news_teaser_box .news_date {
	font-size: 0.9em;
	opacity: 0.9;
}

.news_teaser_img {
    width: 100%;
   aspect-ratio: 3/2;
    position: relative;
	overflow: hidden;
	margin: 0 0 1.6em;
}

.news_teaser_img img{
    width: 100%;
    height: 100%;
    position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: 50% 50%;
	transition: 0.5s all;
}

.news_teasser_btn {
    margin: 0em 0 1.5em;
}

.news_teaser_img:hover img{
	transform: scale(1.1);
}

/*
#news_teaser .section_inner {
    border-top: 1px solid rgba(0, 0, 0, 0.8);
}
*/


#teaser .section_inner {
	padding-bottom: 0;
}
.footer_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
	
	
	border-top: 1px solid rgba(0, 0, 0, 0);
}

.footer_wrapper .foo{
	padding-top: 1.6em;
	border-right: 1px solid rgba(0, 0, 0, 0.8);
	padding: 1.6em 1.8em 1.4em;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	line-height: 2.2;
}


.footer_wrapper .foo4{
	border-right: 1px solid rgba(0, 0, 0, 0);;
}
.footer_wrapper .foo1{
	padding-left: 0;
	line-height: 1.2;
	    margin: 0 0 0.3em;
}


.footer_inner {
    padding-top: 0.5em;
    padding-bottom: 1.6em;
    margin: 0 auto 2.2em;
    /* border-top: 1px solid rgba(0, 0, 0, 0.8); */
}

.foo_logo img {
    height: 2em;
    margin: 0 0 1.8em;
}

.txt_foo1 p:last-child {
    margin-bottom: 0;
}

.foo2 .page_item {
	
}

.foo2 ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.foo a:hover{
	text-decoration: underline;
}

/*
#intro .section_inner{
    padding-top: 1em;
}*/

.team_wrapper_inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 1.9em;
	    padding: 0 3.5em;
}

.team_item_img {
    width: 100%;
    height: 18em;
	position: relative;
}
.team_item{
	font-size: 0.8em;
	cursor:pointer;
}

.team_item_txt {
    margin: 0.7em 0 0;
}


.team_item_img img{
    width: 100%;
    height: 100%;
    position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: 50% 50%;
}


.team_popup_img {
    width: 13em;
}
.team_popup_txt {
    width: calc(100% - 17.5em);
	margin: -0.5em 0 0;
}


.team_popup_link_ct {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
	margin: 2em 0 0;
}

.team_popup_link1 {
    margin: 0 4em 0 0px;
}

.team_popup_link p {
    margin: 0 0 0.3em;
    font-size: 0.7em;
}

.team_popup_link a:hover{
	text-decoration: underline;
}

.team_popup_wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
	z-index: 5;
	pointer-events: none;
	height: 100vh;
    width: 100vw;
    background-color: rgba(255, 255, 255, 0);
	transition: 0.5s all;
}


.popup_on .team_popup_wrapper{
	pointer-events: all;
	 background-color: rgba(255, 255, 255, 0.5);
}

.popup_on{
	overflow: hidden;
}

.team_popup_item {
    width: 100%;
    max-width: 1400px;
    border-top: 1px solid rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    z-index: 3;
    margin: 0;
	padding: 2em 3.5em;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
	position: absolute;
		opacity: 0;
	transition: 0.5s all;
	height: auto;
	max-height: calc(100vh - 10em);
	overflow: scroll;

}


.team_popup_item.active{
	opacity: 1;
	z-index: 5;
	transform: translate(-50%, -50%) scale(1);
}

.team_item {
    display: none;
    grid-template-rows: 18em 1fr auto;
}

.team_wrapper1 .team_item_management{
	display: grid;
}

.team_wrapper2 .team_item_directors{
	display: grid;
}

.team_wrapper3 .team_item_sci{
	display: grid;
}

.team_wrapper4 .team_item_ophtha{
	display: grid;
}

.team_wrapper {
    padding: 3em 0;
   /* border-bottom: 1px solid rgba(0, 0, 0, 0.7);*/
}

.team_wrapper4 {
    border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.team_popup_nav {
    display: flex;
    position: absolute;
    top: 1em;
    right: 1em;
}

.popup_nav_close {
    margin: 0 0 0 2.2em;
}

.popup_nav_weiter {
    margin: 0 0 0 0.7em;
}

.popup_nav_item{
	height: 1.6em;
	transition: 0.5s all;
	cursor: pointer;
}

.popup_nav_item:hover{
	transform: scale(1.1);
}

.popup_nav_item img{
	height: 100%;
}

.science_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
	position: relative;
}
.sci_nav {
    width: 500px;
}

.sci_content{
	width: calc(100% - 500px);
}


.sci_nav_item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.7em 0;
    border-top: 1px solid #5BAFBD;
	cursor: pointer;
	
}

.sci_item{
	display: none;
	
}

.sci_item.active{
	display: block;
	
}

.sci_nav_item:last-child {
    border-bottom: 1px solid #5BAFBD;
}

.sci_item_inner {
    padding: 3em 0 4em 4em;
    background-color: #5BAFBD;
}


.sci_nav_item.active {
	color: #fff;
    background-color: #5BAFBD;
}


.bg_science_wrapper{
	width: 50vw;
	height: 100%;
	position: absolute;
	left: 50%;
	background-color: #5BAFBD;
	z-index: -1;
	
}


.sci_nav_img img {
    height: 1.9em;
    width: 1.9em;
    object-fit: contain;
    margin: 0 1em 0 1em;
	filter: invert(1);
	opacity: 0.8;
}

.sci_nav_item.active .sci_nav_img img {
    filter: unset;
	opacity: 1;
}

.sci_item img {
    border-radius: 24px;
    margin: 2em 0 1em;
}


#impressum h3, #datenschutz h3{
	font-weight: 400;
}


.ext_box_mehr, .ext_box_weniger {
	font-weight: 500;
	letter-spacing: 0.05em;
	opacity: 1;
	cursor: pointer;
	transition: all 0.5s;
		color: #000;
}

.ext_box_mehr:hover, .ext_box_weniger:hover {
	border-bottom: 2px solid #000;

}

.ext_box_wrapper.active .ext_box_mehr {
	opacity: 0;
	pointer-events: none;
}

.ext_box_extra {
	display: none;
}

.ext_box_base p, .ext_box_extra p {
    margin-bottom: 0;
}


.line_news_vert {
    grid-column: span 5;
    height: 1px;
    width: 100%;
    background-color: unset;
    margin: 1em 0;
}


.news_teaser_wrapper .line_news_vert:last-child{
	 background-color: #fff;
	margin: 0;
}


.intro_img_item img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	object-fit: cover;
	object-position: 50% 50%;
	z-index: -1;
}
/*
#intro_img .section_inner{
	position: unset;
	height: 86vh;
	min-height: 600px;
} */

#intro_img .section_inner{
	position: absolute;
}
#intro_img h1 {
    font-size: 2.3em;
   /* position: absolute;
    bottom: 1.5em;*/
    text-shadow: 0 0 20px rgba(0, 0, 0, 2.6);
    color: #fff;
	line-height: 1.2;
}

.wp-block-separator {
    border: none;
    border-top: 1.25px solid;
    border-color: rgba(0,0,0,0.5);
	margin: 0;
}

.line_left_right {
    position: relative;
}
.line_left_right::after {
    position: absolute;
	content: '';
	width: 0.9px;
	height: 100%;
	top: 0;
	left: -1em;
	background-color: rgba(0,0,0,0.5);
}

.line_left_right::before {
    position: absolute;
	content: '';
	width: 0.9px;
	height: 100%;
	top: 0;
	right: -1em;
	background-color: rgba(0,0,0,0.5);
}

iframe {
    width: 100%;
    height: 50vh;
    min-height: 600px;
}




/*- Kontaktformular / contactform-*/

label span {
    color: rgba(0,0,0,1);
}


.wpcf7-list-item input {
    display: none;
}

label input[type="checkbox"] + span::before, label input[type="radio"] + span::before {
    content: " ";
    width: 15px;
    height: 15px;
	border-radius: 0%;
    background-color: #f8f8f2;
	border: 1px solid #000;
    display: inline-block;
    margin-left: 0px;
    margin-right: 5px;
    margin-bottom: 8px;
    margin-top: 5px;
    vertical-align: middle;
}




label input[type="checkbox"]:checked + span::before, label input[type="radio"]:checked + span::before {
    content: " ";
    /* background-image: url(ico_check.jpg); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #000;
    -webkit-box-shadow: inset 0 0 0 2px #f8f8f2;
    box-shadow: inset 0 0 0 3px #f8f8f2;
}


span.wpcf7-form-control.wpcf7-acceptance {
    font-size: 0.7em;
}


input[type='email'], input[type='text'], input[type='tel'], textarea, .Kurs select, .dropdown_kurs select {
    height: 2.4em;
    padding: 0 15px;
    width: 100%;
    border: unset;
    font-size: 0.9em;
    background-color: rgba(255, 255, 255, 1);
    margin: 0.5em 0 0;
	border: 1px solid rgba(0, 0, 0, 0.7);
}

textarea{
	height: 7em;
	padding: 10px 15px;
}

::placeholder{
	color: #000;
}


.Datenschutz{
	margin-left: -14px;
}



::placeholder {
  color: rgba(0,0,0,0.75) !important;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: rgba(0,0,0,0.75) !important;
	opacity: 1; 
}

::-ms-input-placeholder { /* Microsoft Edge */
 color: rgba(0,0,0,0.75) !important;
	opacity: 1; 
}

input[type="submit"]:hover {
   
}


.formular_left .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
	
}



.wpcf7-list-item {
    margin: 0 0 0;
}


.wpcf7-submit::after{
/*	content: '';
  display: inline-block;
  height: 30px;
  width: 30px;
  background-image: url(/wp-content/uploads/2022/08/arrow_right.svg);
*/	
}
.nl_send {
    width: max-content;
}


.wpcf7 form.sent .wpcf7-response-output {
    border: none;
    background-color: #000;
    background: linear-gradient(174deg, rgb(222, 190, 135) 2%, rgb(209, 164, 87) 100%);
    color: #000;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 1em 0 1.5em 0;
    padding: 1em 1.1em;
    max-width: 480px;
}



.wpcf7-not-valid-tip {
    color: #D63E36;
    font-weight: normal;
    display: block;
}

.wpcf7-submit{
	border: unset;
	background-color: unset;
}


.wpcf7-spinner {
    position: absolute;
}


.cf7-anfrage-wrap {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2em;
}

.cf7-anfrage-left,
.cf7-anfrage-right {
  width: 100%;
}

span.wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    flex-direction: column;
}

.cf7-checkboxes, .cf7-subtitle{
	font-size: 0.9em;
}

.cf7-subtitle {
    margin: -1.2em 0 0;
    font-size: 0.8em;
}

.cf7-group {
    margin: 0 0 2.3em;
}


.cf7-row p {
    margin: 0;
}

.cf7-row.cf7-consent {
    margin: 1.3em 0 0;
}
input.wpcf7-form-control.wpcf7-submit{
    color: #000;
}





.wpcf7 form.sent .wpcf7-response-output {
    border: none;
    background-color: #000;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 1em 0 1.5em 0;
    padding: 1em 1.1em;
    max-width: 100%;
    width: 46%;
    margin-left: 46%;
}


p a:hover{
	text-decoration: underline;
}

section.news_post {
    margin: 4em 0 0;
}

.news_post h1 {
        margin: 0 0 0.6em;
    }
/*------------------------------------*\
    IMAGES
\*------------------------------------*/
figure.wp-block-image.size-full.icon_patient {
    filter: invert(1);
    margin: 1em 0 0.5em;
}



.autoblend_wrapper {
    width: 100%;
    aspect-ratio: 2.2;
    position: relative;
}

.autoblend_wrapper img{
    
}
.autoblend_item {
    opacity: 0;
    transition: opacity 1s ease;
    width: 100%;
    height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
    position: absolute;
}

.autoblend_item.active {
    opacity: 1;

    z-index: 10;
}




.galerie_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1.5em;
}
.gal_item {
    padding-top: 68%;
	position: relative;
	overflow: hidden;
}

.gal_item img{
    position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s all;
}

.gal_item img:hover{
    transform: scale(1.05);
}





.slick_ct {
    width: 100%;
    margin-left: 0;
    position: relative;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}


.slick_nav_ct {
    display: flex;
    justify-content: center;
    align-items: center;
	margin-top: 1em;
	width: 300px;
}




 .slick_item {
	height: auto;
	    /* height: 100%; */
    /* width: 100%; */
   /* padding-top: 68.75%;*/
	 aspect-ratio: 2.2;
    object-fit: cover;
    background-size: cover;
	    background-position: center bottom;
	/*position: relative; */
	overflow: hidden;
}

.slick_ct_intro_slider{
	
}


.slick_nav {
    width: max-content;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background-color: #fff;
    cursor: pointer;
    padding: 0.4em;
}

.slick_nav img{
	height: 1.5em;
	transition: 0.5s all;
	
}


.slick_nav img:hover{
	transform: scale(1.1);
}

.slick_next {
    right: 1.5em;
}

.slick_prev {
    left: 1.5em;
	transform: translateY(-50%) rotate(180deg);
}


.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #fff;
}


.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 13px !important;
    height: 13px !important;
    padding: 2px !important;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    position: relative;
}


.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(255,255,255,0) !important;
 	opacity: 1 !important;
	content: '' !important;
	border-radius: 100%;
	border: 2px solid #fff;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 0 !important;
    padding: 0;
    cursor: pointer;
}

.slick-dots li.slick-active button:before {
    opacity: 1 !important;
    background-color: #fff !important;
}

.slick-dots {
    bottom: 1em !important;
	z-index: 2;
	    right: 2em;
	text-align: end !important;
}


.slick_ct_intro_slider .slick_nav{
	display: none !important;
}
























/*------------------------------------*\
    Anpassungen 2026
\*------------------------------------*/




.def_round_corners {
	border-radius: 0.75em;
}


.def_extra_padding {
	padding: 1.5em;
}



.pipeline_row {
	display: grid !important;
	grid-template-columns: 0.4fr 1fr 1fr;
	color: rgba(0,0,0,0.7);
	align-items: flex-start;
}

.pipeline_row p {
	margin: 0.2em 0;
}

.pipeline_row.head_row {
	font-size: 0.86em;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(0,0,0,0.5);
}


.pipeline_row.item_row {
	padding: 1em 0;
	border-bottom: 1px solid rgba(0,0,0,0.5);
}

.pipeline_row.item_row .col1 {
	font-size: 1.8em;
}

.pipeline_row.footer_row {
	font-size: 0.86em;
	text-transform: uppercase;
	padding-top: 0.4em;
}

.pipeline_row.footer_row .sub_grid > div {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}


.def_icon_box {
	width: 3.2em;
	height: 2.4em;
	display: flex;
	justify-content: center;
	align-items: center;
}

.def_icon_box img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center bottom;
}



.news_teaser_box_a1 {
    grid-column: 1 / -1;
}


.news_teaser_box1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2.5em;
    justify-content: center;
    align-items: center;
}

.news_teaser_box1 .news_teaser_img {
    grid-row-start: 1;
	margin: 0;
	border-radius: 14px;
}


.news_teaser_content .btn {
    position: absolute;
    bottom: 0;
	margin: 0;
}

.news_teaser_box {
	flex-start;
    padding-bottom: 3em;
    position: relative;
}


.news_teaser_box1.news_teaser_box {
    padding-bottom: 0;
   
}

.news_teaser_box1 .news_teaser_content .btn {
    position: relative;
    bottom: unset;
	margin: 0;
}

.displaynone{
	display: none;
}

.news_subintro_block .btn{
	color: #fff;
}

.news_subintro_block {
    padding: 2em 0 3em;
}

.subintro_txt_inner {
    max-width: 850px;
}

.news_subintro_block .section_inner {
  
    align-items: center;
    
}

#intro_img .section_inner {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
	z-index: 5;
	pointer-events: none;
}

.section_inner.padding_bottom0{
	padding-bottom: 0;
}

#intro .wp-block-columns {
    margin: 0;
}

.team_popup_item {
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.page-id-200 img.subintro_icon {
    opacity: 0.3;
}




.cky-overlay.cky-hide, .cky-btn-revisit-wrapper{
	display: none !important;
}

.cky-consent-container .cky-consent-bar{
	    padding: 10px 16px 10px !important;
}

.cky-notice .cky-title {
  	display: none !important;
}

.cookie_link {
	text-decoration: underline;
}

.cky-notice-des p {
    line-height: 1.3;
}

@media only screen and (max-width:900px) {
	.cky-consent-bar br{
		display: none;
	}	
}

@media only screen and (max-width:576px) {
.cky-custom-brand-logo-wrapper, .cky-notice .cky-title, .cky-notice-des, .cky-notice-btn-wrapper {
  padding: 0 0px !important;
}
}

.cky-btn-accept {
    background: #5BAFBD;
    border: 2px solid #5BAFBD;
}


.page-id-8 .cky-consent-container {
  
    opacity: 0 !important;
    transition: opacity 1s !important;
    transition-delay: 0s !important;

}
.page-id-8.scrld .cky-consent-container {
    opacity: 1 !important;
}


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:1500px) {
	.news_teaser_box {
		display: grid;
		/*grid-template-rows: 2.3fr 0.1fr 17em;*/
		font-size: 0.9em;
	}
	
	.team_wrapper_inner {
    	grid-template-columns: 1fr 1fr 1fr 1fr;
	}
	
	.team_item {
    grid-template-rows: 25vw 1fr auto;
	}
	
	.team_item_img {
    height: 25vw;
	}
	
	.team_popup_img.team_item_img {
    height: 30vw;
	}


}
@media only screen and (max-width:1100px) {
	.nav {
		display: none;
	}
	
	#mobmenu_ct {
    display: block;
	}
	
	.wp-block-columns {
        flex-direction: column;
        margin: 0;
        gap: 1em;
    }
	
	h1{
		margin: 0;
	}
	
	.wp-block-column:empty {
    display: none;
	}
	
	
	.box_wrapper {
    min-height: unset;
    flex-direction: column;
	}
	
	.box_wrapper.box_wrapper_img_right {
    flex-direction: column;
	}
	
	.box_wrapper .box {
    width: 100%;
	}
	
	.box_wrapper .box1 {
    width: 100%;
    padding-top: 70%;
    position: relative;
	}
	
	.box_wrapper .box1 img {
    width: 100%;
	}
	
	.box_txt_wrapper {
    padding: 0;
	}
	
	.textbild {
    margin: 0 0 2em;
	}
	
	.textbild h1 {
        margin: 1em 0 0.5em;
    }
	
	.news_teaser_wrapper {
    grid-template-columns: 1fr 1fr;
    grid-gap: 5em 2em;
	}
	
	.news_line, .line_news_vert {
    display: none;
	}
	
	
	
	.news_teaser_box {
		/*display: grid;
		grid-template-rows: auto 0.1fr 17em;*/
		font-size: 0.9em;
	}
	
	.news_teaser_box1{
		grid-template-rows: unset !important;
	}
	
	.page-id-8 .news_teaser_box_a3{
		display: none;
	}
	
	.team_wrapper_inner {
    padding: 2em 0 0;
	}
	
	.team_popup_img.team_item_img {
    height: 35vw;
		min-height: 17em;
	}
	
	.team_popup_txt {
    width: calc(100% - 15.5em);
    margin: 1.3em 0 0;
	}
	
	
	.science_wrapper {
		flex-direction: column;
	}
	
	.bg_science_wrapper {
    display: none;
	}
	
	.sci_nav {
    width: 100%;
	}
	
	.sci_content {
    width: 100%;
	}
	
	.sci_item_inner {
    padding: 2em;

	}
	
	    .sci_nav {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    	}
	
	.sci_nav_item {
    display: grid;
    grid-template-columns: 0.25fr 1fr;
	}
	
	.sci_nav_img img {
    height: 1.3em;
    width: 1.3em;
    margin: 0 0.5em 0 0.5em;
	}
	
	.sci_nav_txt {
    padding-right: 0.6em;
	}
	.page-id-203 hr{
		display: none;
	}
	
	.line_left_right::before {
    display: none;
	}
	.line_left_right::after {
    display: none;
	}
	
	.tabl_none{
		display: none;
	}
}
@media only screen and (max-width:900px) {
	body {
   	 font-size: 1.8rem;
	}
	
	.footer_wrapper {
    grid-template-columns: 1fr 1fr;
	}
	
	.footer_wrapper .foo {
    border-right: unset;
		 padding: 1.6em 2em 1.4em 0;
	}
	
	.team_wrapper_inner {
        grid-template-columns: 1fr 1fr 1fr;
    }
	
	.team_item_img {
        height: 36vw;
    }
	
	.team_item {
        grid-template-rows: 36vw 1fr auto;
    }
	
	.sci_nav {
        grid-template-columns: 1fr;
    }
	
	.sci_nav_item {
        grid-template-columns: 4em 1fr;
    }
	
	    .sci_nav_img img {
        height: 1.9em;
        width: 2.4em;
        margin: 0 0.5em 0 0.5em;
    }
	
	.pipeline_row.head_row, .pipeline_row.footer_row {
		display: none !important;
	}
	
	.pipeline_row.item_row {
		grid-template-columns: 1fr;
	}
	
	section#intro_img {
    margin: 3.6em 0 0;
	}
	
}
@media only screen and (max-width:700px) {
	    .news_teaser_wrapper {
        grid-template-columns: 1fr;
        grid-gap: 2em;
    }
	

	
	.news_teaser_img {
    height: unset;
    padding-top: 60%;
	}
	
	.zitat_txt {
    width: 80%;
	}
	
	.zitat_bg_dunkel {
    background: rgb(0, 0, 0);
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5452556022408963) 0%, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0) 100%);
    background: -o-linear-gradient(bottom, rgba(0,0,0,0.5452556022408963) 0%, rgba(0,0,0,0) 36%, rgba(0,0,0,0) 100%);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5452556022408963) 0%, rgba(0, 0, 0, 0.5) 36%, rgba(0, 0, 0, 0) 100%);
	}
	
	.subintro_icon {
    height: 9em;
    width: 9em;
    right: 1em;
    bottom: 1em;
		position: absolute;
	}
	
	.subintro_txt {
    width: 100%;
	}
	
	.zitat_wrapper::before {
    height: 100%;
    width: 100%;
    content: '';
    background-color: rgba(255, 255, 255, 0.4);
    top: 0;
    left: 0;
    position: absolute;
	}
	
	.team_wrapper_inner {
    grid-gap: 1.3em;
	}
	
	.team_popup_item {
    flex-direction: column;
	}
	
	.team_popup_img.team_item_img {
        height: unset;
        min-height: unset;
        padding-top: 77%;
        width: 100%;
        max-width: 300px;
        margin: 1.8em auto 0;
    }
	
	.team_popup_txt {
        width: 100%;
        margin: 1.3em 0 0;
		
    }
	
	.team_popup_item {
	top: 1.4em;
		max-width: unset;
    max-height: calc(100vh - 2em);
    overflow: scroll;
		padding: 1em 1.5em;
	}
	
	.team_popup_item.active {
    opacity: 1;
    z-index: 5;
    transform: translate(-50%, 2em) scale(1);
	}
	
	.page-id-200 .subintro_icon {
        opacity: 0.4;
    }
	
	.mob_none{
		display: none;
	}
	.wp-block-column:empty {
  display: none;
}
	
	.news_teaser_box1 {
    grid-template-columns: 1fr;
	}
	
	.news_teaser_box1 .news_teaser_img {
    border-radius: unset;
	}
	
	.news_teaser_box1 .news_teaser_content .btn {
    position: absolute;
    bottom: 0;
    margin: 0;
	}
	
	.news_teaser_box1.news_teaser_box {
    padding-bottom: 3em;
		    grid-gap: 1.5em;
	}

}

@media only screen and (max-width:600px) {
	
	#intro_img .section_inner {
    position: relative;
    left: unset;
    transform: unset;
    bottom: unset;
    padding-bottom: 0;
		padding-top: 2em;
	}
	
	#intro_img h1 {
    font-size: 1.8em;
    text-shadow: unset;
    color: #000;
    line-height: 1.2;
		margin: 0;
	}
	
	.slick_item {
    aspect-ratio: 1.5;
    background-position: 50% 0%;

}
	
}
	
@media only screen and (max-width:500px) {
	h1 {
		font-size: 1.6em;
	}
	

	
	.footer_wrapper {
        grid-template-columns: 1fr;
    }
	
	.foo.foo2 {
    display: none;
	}
	
	    .footer_wrapper .foo {
        border-right: unset;
        padding: 0 0 1em;
    }
	
	
	    .team_wrapper_inner {
        grid-template-columns: 1fr;
    }
	
	    .team_item_img {
        height: 100vw;
    }
	
	    .team_item {
        grid-template-rows: 100vw 1fr auto;
    }
	
	    .team_popup_img.team_item_img {
 
        padding-top: 110%;
    	}
	
	    .team_popup_img.team_item_img {
        margin: 3.8em auto 0;
    	}
	
	    .sci_item_inner {
        padding: 1em;
    }
	.mob_nav {
    width: 100%;
    transform: translateX(110%);
	}
	
	.text_bild_last{
		margin-bottom: 0;
	}
	
	.section_inner {
    padding: 2.3em 1em;
	}
	
	    .team_popup_img.team_item_img {
        padding-top: 80%;
    }
	
	    .team_popup_img.team_item_img {
        max-width: 200px;
    }
	
	.team_wrapper4 {
    padding-bottom: 0;
	}
	
	.team_wrapper.team_wrapper1 {
    padding-top: 0;
	}
	
	iframe {
		width: 100%;
		height: 50vh;
		min-height: 400px;
	}
	
}

@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
