/*
	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:400 11px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color:#444;
	font-family: 'Saira', sans-serif;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

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

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

/* wrapper */

.wrapper {
	width: 100%;
	font-size: 21px;
	padding-top: 200px;
}

article, .header_inner {
	max-width:1400px;
	width:95%;
	margin:0 auto;
	position:relative;
}
/* header */
.header {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #fff;
	padding-bottom: 10px;
	z-index: 5;
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
}

.header_row {
	display: flex;
	justify-content: space-between;
}

.head_addr {
	font-size: 0.76em;
	display: flex;
	padding-top: 30px;
	transition: all 0.5s;
	max-height: 70px;
	opacity: 1;
	transition: all 0.5s;
}

.scrld .head_addr {
	opacity: 0;
	pointer-events: none;
}

.head_addr span {
	margin-right: 2em;
}

.head_meta ul {
	display: flex;
	list-style: none;
	font-size: 0.76em;
	letter-spacing: 0.05em;
	margin: 0;
	padding: 0;
	padding-top: 30px;
	text-transform: uppercase;
}

.head_meta li {
	margin-left: 1em;
}

.header_row.row2 .head_meta {
	display: none;
}

.header_suche span {
	color: #C4B9A4;
	border-bottom: 1px dotted #C4B9A4;
	font-size: 1em;
	display: flex;
	align-items: center;
}
.header_suche span i {
	margin-right: 1em;
}

.header_suche span form {
	font-size: 0.9em;
}

input[type="search"] {
	border: none;
	outline: none !important;
	color: #C4B9A4;
	padding: 0;
}

	

.header_suche span form button {
	width: 1.5em;
	height: 1.5em;
	border-radius: 100%;
	display: inline-block;
	overflow: hidden;
	position: relative;
	border: none !important;
}

.header_suche span form button::before {
	content: '\f061';
	background-color: #fff;
	color: #C4B9A4;
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center; 
	align-items: center;
	top: 0;
	left: 0;
	font-family: "Font Awesome 5 Pro"; font-weight: 900;
	transition: all 0.5s;
}

.header_suche span form button:hover::before {
	color: #fff;
	background-color: #C4B9A4;
}

.search-results .search_item {
	padding-top: 1em;
	padding-bottom: 1em;
	border-bottom: 1px solid #d0c7b7;
}

.search_item .search_content p {
text-overflow:ellipsis;
  overflow:hidden;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}


/* logo */
.logo {
	padding: 10px 0 30px 0;
	height: 160px;
	transition: all 0.5s;
}

.scrld .logo {
	padding: 5px 0 10px 0;
	height: 70px;
}

.logo-img {
	height: 100%;
	width: auto;
}
/* nav */
.nav {

}

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

.nav > ul > li > a {
	display: flex;
	padding: 0.3em 1em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.9em;
	border-radius: 0.9em 0.3em;
}

.nav > ul > li  a:hover, .head_meta a:hover {
	color: #C4B9A4;
}


.nav > ul > li.current_page_item > a, .nav > ul > li.current_page_ancestor > a, .nav .sub-menu .current_page_item a { 
	background-color: #C4B9A4;
	color: #fff;
	font-weight: 700;
}

.nav > ul > li > .sub-menu {
	position: absolute;
	left: 0;
	top: calc(100% + 3em);
	display: none;
	flex-direction: column;
	background-color: #fff;
	width: 270px;
	z-index: 3;
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
	font-size: 0.85em;
	border-radius: 1.5em 0.5em;	
	padding: 1em 0;
}

.nav .current_page_item .sub-menu, .nav .current_page_ancestor .sub-menu {
	display: flex;
}

.nav .sub-menu a {
	padding: 0.3em 1em;
	display: inline-block;
	width: 100%;
}

.nav .sub-menu .sub-menu {
	position: relative;
	display: block;
	font-size: 0.9em;
}

.nav .sub-menu .sub-menu li a {
	padding-left: 2em;	
}

.nav .sub-menu .current_page_item .sub-menu a {
	/*background-color: rgba(208, 199, 183, 0.8);*/
	color: inherit;
	background-color: #fff;
	font-weight: 400;
}





 .menu_icon_ct {
	position: relative;
	padding: 0;
	z-index: 20;
	 display: none;
}

 .menu_icon {
	width: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 32px;
	cursor: pointer;
	position: relative;
}

 .menu_icon_line {
	width: 100%;
	height: 4px;
	background-color: #C4B9A4;
	opacity: 1;
	margin-top: 0;
	transform-origin: center center;
	position: absolute;
	display: inline-block;
	transition: all 0.5s;
}

 .menu_icon .line1 {
	top: auto;
	transform: translateY(10px);
}
 .menu_icon .line2 {
	top: auto;
}
 .menu_icon .line3 {
	top: auto;
	transform: translateY(-10px);
}


.menuopen .menu_icon .line1 {
	-moz-transform: rotate(45deg) translateY(0px);
	-webkit-transform: rotate(45deg) translateY(0px);
	-o-transform: rotate(45deg) translateY(0px);
	-ms-transform: rotate(45deg) translateY(0px);
	transform: rotate(45deg) translateY(0px);
	top: auto;
	margin-top: 0;
}

.menuopen .menu_icon .line2 {
	opacity: 0;
}

.menuopen .menu_icon .line3 {
	-moz-transform: rotate(-45deg) translateY(0px);
	-webkit-transform: rotate(-45deg) translateY(0px);
	-o-transform: rotate(-45deg) translateY(0px);
	-ms-transform: rotate(-45deg) translateY(0px);
	transform: rotate(-45deg) translateY(0px);
	top: auto;
	margin-top: 0;
}




/* sidebar */
.sidebar {

}
/* footer */
.footer {
	background-color: #C4B9A4;
	color: #fff;
	padding: 2em 0 4em 0;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/

main {
	/*padding-top: 3em;
	padding-bottom: 3em;*/
	min-height: calc(100vh - 300px);
	position: relative;
}

main article {
	padding-left: 320px;
	padding-right: 240px;	
	 -webkit-hyphens: auto;
       -moz-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
}

main article.content_wide {
	padding-right: 0;
}

.infobox {
	background-color: #E4DFD6;
	padding: 1em;
	font-size: 0.9em;
	border-radius: 1.5em 0.5em;	
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
}


.page_banner {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	height: 20vmax;
}

.sidebar_wrapper {
	position: absolute;
	left: calc(50% + 520px);
	top: 3em;
	z-index: 3;
}

.no_sidebar .sidebar_wrapper {
	display: none !important;
}

.sb_item {
	width: 180px;
	padding: 1em;
	background-color: #ccc;
	color: #fff;
	display: flex;
	flex-direction: column;
	margin-bottom: 2em;
	border-radius: 1.5em 0.5em;	
	align-items: center;
	font-size: 0.9em;
	font-weight: 700;
	text-align: center;
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
	cursor: pointer;
	transition: all 0.5s;
}

.sb_item i {
	font-size: 2em;
	margin-bottom: 10px;
}

.sb_item.termine {
	background-color: #4CBAB9;
}

.sb_item.telefon {
	background-color: #B20A0D;
}

.sb_item.feedback {
	background-color: #ffbf00;
}

.sb_item:hover {
	-webkit-box-shadow: 0 0 120px 0 rgba(0,0,0,0.5);
box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
}



/* Blocks */

.sec_bg_weiss {
	background-color: #fff;
}

.sec_bg_grau {
	background-color: #f4f4f4;
}

.sec_bg_beige {
	background-color: rgba(208, 199, 183, 0.3);
}

.sec_bg_blau {
	background-color: #4CBAB9;
	color: #fff !important;
}









/*------------------------------------*\
    KW Adjusts
\*------------------------------------*/


.hlt {
	color: rgb(76, 186, 185);
}


.teaser_block_wrapper {
	display: inline-block;
}


.teaser_block {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	position: relative;
}

.teaser_block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 320px;
	height: 4px;
	background-color: rgb(76, 186, 185);
}

.teaser_block ul, .inline_list, .kw_contentblock ul {
	padding: 0;
	margin: 0;
	padding-left: 1em;
}

.teaser_upper {
	display: flex;
	flex-direction: column;
}

.teaser_block .teaser_sec_titel {
	text-transform: uppercase;
	color: #21568c;
	letter-spacing: 0.08em;
	font-size: 1.2em;
	padding-top: 2em;
	font-weight: 600;
}

.teaser_titel {
	display: inline-block;
	font-size: 2em;
	padding-bottom: 1em;
	padding-top: 0.3em;
	font-weight: 700;
	line-height: 1.2;
	 -webkit-hyphenate-limit-before: 3; /* For Safari */
  -webkit-hyphenate-limit-after: 4; /* For Safari */
  -ms-hyphenate-limit-chars: 5 3 4;
  hyphenate-limit-chars: 5 3 4;
}



.cols2, .kw_cols2 {
	column-count: 2;
	column-gap: 4em;
}

.kw_cols3 {
	column-count: 3;
	column-gap: 4em;
}



.kw_contentblock > .wp-block-group {
	/*display: inline-block;*/
	width: 100%;
}

.kw_contentblock > .wp-block-group > div > *:first-child {
	margin-top: 0;
}

.def_btn {
	position: relative;
	display: inline-block;
	padding: 0.3em 1.2em;
	/*text-transform: uppercase;*/
	letter-spacing: 0.04em;
	font-weight: 600;
	/*background-color: rgb(76, 186, 185);*/
	color: #fff;
	border-radius: 0.4em;
	overflow: hidden;
	background-color: #C4B9A4;
}



.def_btn::before {
	content: '';
	position: absolute;
	width: 0%;
	height: 100%;
	z-index: 0;	
	background-color: rgb(76, 186, 185);
	top: 0;
	right: 0;
	transition: all 0.5s;
}



.bg_blau .def_btn, .sec_bg_blau .def_btn {
	background-color: rgba(255,255,255,0.25);
}

.bg_blau .def_btn::before, .sec_bg_blau .def_btn::before {
	background-color: #fff;
}

.def_btn:hover::before {
	width: 100%;
	left: 0;
}

.def_btn span {
	position: relative;
	z-index: 2;
	color: #fff;
	transition: all 0.5s;
}

.bg_blau .def_btn:hover span, .sec_bg_blau .def_btn:hover span {
	color: rgb(76, 186, 185);
}

.def_btn.dl_btn {
	padding: 0.5em 1.2em 0.5em 0.7em;
}

.def_btn.dl_btn span {
	display: flex;
	align-items: center;
}

.def_btn.dl_btn i {
	font-size: 1.8em;
	margin-right: 0.5em;
}

.flexcols2 {
	display: flex;
	justify-content: space-between;
}

.flexcols2 .flex_col {
	width: 45%;
}


/* Backoffice Adjusts */

.kw_pos_rel {
	position: relative;
}

.kw_cols2 > *:first-child, .kw_cols3 > *:first-child {
	margin-top: 0;
}

.delay05 {
	transition-delay: 0.5s !important;
}
.delay1 {
	transition-delay: 1s !important;
}
.delay2 {
	transition-delay: 2s !important;
}
.delay3 {
	transition-delay: 3s !important;
}
.delay4 {
	transition-delay: 4s !important;
}


.kw_section {
	position: relative;
	padding: 4em 0;
}

.kw_section.padding_big {
	padding: 6em 0;
}

.kw_section.padding_none {
	padding: 0em 0;
}


.kw_section.sec_intro_1 {
	margin-top: 140px;
	padding-top: 0;
}

.kw_section.sec_intro_1 .kw_section_inner {
	top: -100px;
}


.kw_contentblock {
	position: relative;
}

.kw_contentblock .btn_ct {
	margin-bottom: 1em;
	display: inline-block;
}

.p10 {
	padding-right: 10%;
}
.p20 {
	padding-right: 20%;
}
.p30 {
	padding-right: 30%;
}
.p40 {
	padding-right: 40%;
}
.p50 {
	padding-right: 50%;
}



.sec_split {
	display: flex;
}

.rev_split {
	flex-direction: row-reverse;
}

.sec_split .sec_col.col1 {
	background-image: url(/wp-content/uploads/2022/10/coronavirus-gfbf2608f2_1920.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	flex-basis: calc(((100% - 1240px) / 2) + 500px );
	transition: all 2s;
}



	

.sec_split .sec_col.col2 {
	display: flex;
	width: 95%;
	max-width:740px;
	justify-content: space-between;
	flex-basis: calc(((100% - 1240px) / 2) + 740px );
	padding-left: 60px;
}

.kw_section .sec_split .sec_col.col2 {
	display: block;
}

.sec_split.rev_split .sec_col.col2 {
	padding-left: 0;
	padding-right: 60px;
}

.sec_split .teaser_block {
	width: 45%;
	transition: all 1s;
}

.sec_split .teaser_block.fw_teaser {
	width: 100%;
}






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

article p a {
	border-bottom: 1px dotted;
}

article p a:hover {
	border-bottom: 1px solid;
}

h1 {
	font-family: 'Saira Extra Condensed', sans-serif;
	font-size: 3.2em;
	font-weight: 300;
	letter-spacing: 0.02em;
	margin: 0;
	padding: 0;
	line-height: 1.2;
	margin-bottom: 0.5em;
	color: #C4B9A4;
}

h2 {
	font-family: 'Saira Extra Condensed', sans-serif;
	font-size: 2.8em;
	font-weight: 400;
	letter-spacing: 0.02em;
	margin: 0;
	padding: 0;
	line-height: 1.2;
	margin-bottom: 0.5em;
	color: #C4B9A4;
}

h3 {
	font-family: 'Saira Extra Condensed', sans-serif;
	font-size: 2.1em;
	font-weight: 500;
	letter-spacing: 0.02em;
	margin: 0;
	padding: 0;
	line-height: 1.2;
	margin-bottom: 0.5em;
}

h4 {
	font-size: 1.5em;
	font-weight: 700;
	margin: 0;
	padding: 0;
	line-height: 1.2;
	margin-bottom: 0.5em;
}

h5 {
	font-size: 1.5em;
	font-weight: 700;
	margin: 0;
	padding: 0;
	color: #4CBAB9;
	line-height: 1.2;
	margin-bottom: 0.5em;
}

h6 {
	font-size: 1.3em;
	font-weight: 700;
	margin: 0;
	padding: 0;
	color: #C4B9A4;
	line-height: 1.2;
	margin-bottom: 0.5em;
}



.has-weiss-color {
	color: #ffffff;
} 
.has-weiss-background-color {
	background-color: #ffffff;
}
.has-beige-color {
	color: #C4B9A4;
} 
.has-beige-background-color {
	background-color: #C4B9A4;
}
.has-blau-color {
	color: #4CBAB9;
} 
.has-blau-background-color {
	background-color: #4CBAB9;
}
.has-anthrazit-color {
	color: #000;
} 
.has-anthrazit-background-color {
	background-color: #000;
}
.has-rot-color {
	color: #B20A0D;
} 
.has-rot-background-color {
	background-color: #B20A0D;
}
.has-grau-color {
	color: #f4f4f4;
} 
.has-grau-background-color {
	background-color: #f4f4f4;
}
.has-beige_03-color {
	color: rgba(208, 199, 183, 0.3);
} 
.has-beige_03-background-color {
	background-color: rgba(208, 199, 183, 0.3);
}


h1.has-background, h2.has-background, h3.has-background, h4.has-background, h5.has-background, h6.has-background {
	padding: 0.5em;
	border-radius: 0.45em 0.15em;
}

.single main article {
	padding-left: 0;
	padding-right: 420px;
}

article ul {
	padding: 0;
	list-style: none;
}

article ul li {
	margin: 0.7em 0;
	padding-left: 1.2em;
	position: relative;	
}

article .kw_section_inner ul {
	display: grid;
	padding-left: 0;
	grid-gap: 0.5em;
}

article .kw_section_inner ul li {
	margin: 0;
	display: grid;
	hyphens: none;
	margin-bottom: 1em;
}

article ul li::before {
	content: "";
	position: absolute;
	width: 0.7em;
	height: 0.7em;
	background-color: #444;
	left: 0;
	top: 0.4em;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.sec_bg_blau article ul li::before {
	background-color: #fff;
}

.personen_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 2em;
	font-size: 0.86em;
	hyphens: none;
}

.person_box_ct {
	background-color: #fff;
	width: 100%;
	z-index: 3;
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
	font-size: 0.85em;
	border-radius: 1.5em 0.5em;
	display: flex;
	overflow: hidden;
}

.person_img {
	height: 15em;
	width: 10em;
	flex-shrink: 0;
}

.person_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.person_content {
	padding: 1em;
	display: flex;
	flex-direction: column;
}

.person_funktion {
	font-weight: 600;
	padding-bottom: 0.5em;
}

.news_grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 2em;
	/*font-size: 0.86em;*/
	hyphens: none;
}

.news_grid .person_img {
	height:100%;
	width: 16em;
	flex-shrink: 0;
}

.fbox_title {
	border-bottom: 1px solid rgb(208, 199, 183);
	padding-bottom: 0.5em;
	margin-bottom: 0em;
	margin-top: 1em;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	cursor: pointer;
	hyphens: none;
}

.fbox_wrp {

}

.fbox_content {
	padding: 0.5em calc(10px + 1em);
	background-color: rgba(208, 199, 183, 0.2);
}

.fbox_content:first-child {
	margin-top: 0;
}

.fbox_content:last-child {
	margin-bottom: 0;
}


.oci {
	display: flex;
	width: 20px;
	height: 20px;
	-webkit-border-radius: 100px;
	border-radius: 100px;
	border: 2px solid rgb(50,134,160);
	margin-right: 0.5em;
	justify-content: center;
	align-items: center;
	transition: all 0.5s;
	flex-shrink: 0;
	position: relative;
	top: 0.2em;
}

div.active .oci, .oci.active {
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.oci::before {
	content: "";
	position: absolute;
	width: 10px;
	height: 2px;
	background-color: rgb(50,134,160);
}

.oci::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 2px;
	background-color: rgb(50,134,160);
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}


.wpcf7-text {
	width: 100%;
}

.form_rows {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.form_rows p, .form_rows br {
	display: contents;
}

.form_rows label {
	width: 48%;
	padding: 0.5em 0;
}

.wpcf7-textarea {
	width: 100%;
	height: 4em;
}


/*------------------------------------*\
	IMAGES
\*------------------------------------*/

main > .wp-block-image img {
	height: 70vmin;
	width: 100%;
	object-fit: cover;
	object-position: center center;
}

figure figcaption {
	display: none;
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) {
	padding-top: 100%;
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img {
	position: absolute;
	top: 0;
	left: 0;
}


.fancybox__caption {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.wp-block-gallery.has-nested-images.columns-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 1em;
}

.wp-block-gallery.has-nested-images.columns-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1em;
}

.wp-block-gallery.has-nested-images.columns-5 {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 1em;
}

.wp-block-gallery.has-nested-images.columns-6 {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 1em;
}

.wp-block-gallery.has-nested-images .wp-block-image {
	width: 100% !important;
	/*overflow: hidden;*/
	
}

.wp-block-gallery.has-nested-images .wp-block-image img {
	-webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0);
box-shadow: 0 0 10px 0 rgba(0,0,0,0);
	transition: all 0.5s;
}

.wp-block-gallery.has-nested-images .wp-block-image:hover img {
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.3);
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.3);
}







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

@media only screen and (max-width : 1520px)  
{
	
	.nav .current_page_item .sub-menu, .nav .current_page_ancestor .sub-menu {
		display: none;
	}
	
	.nav .menu-item {
		position: relative;
	}
	
	.nav .menu-item:hover .sub-menu {
		display: flex;
	}
	
	.nav > ul > li > .sub-menu {
		top: 100%;
	}
	
	main article {
		padding-left: 0;
	}
	
	.sidebar_wrapper {
		left: auto;
		right: 1em;
	}
	
	
}


@media only screen and (max-width : 1200px)  
{
	
	body.menuopen {
		overflow-y: hidden;
	}
	
	.header {
		padding-bottom: 0;
	}
	
	.header_row.row1 .head_meta {
		display: none;
	}
	
	.header_row.row1 {
		align-items: center;
	}
	
	.header_row.row2 {
		position: fixed;
		width: 20em;
		height: calc(100vh - 60px);
		left: auto;
		right: 0;
		transform: translateX(21em);
		background-color: #fff;
		display: flex;
		flex-direction: column;
		overflow-y: auto;
		padding: 2em 1em;
		border-left: 5px solid #C4B9A4;
		transition: transform 0.5s;
	}
	
	.menuopen .header_row.row2 {
		transform: translateX(0em);
	}
	
	.header_row.row2 .head_meta {
		display: flex;
	}
	
	.header_row.row2 .head_meta ul {
		display: flex;
		flex-direction: column;
	}
	
	.head_meta li {
		margin-bottom: 1em;
	}
	
	.nav ul {
		flex-direction: column;
	}
	
	.nav > ul > li > .sub-menu {
		display: flex !important;
		position: relative;
		-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0);
		box-shadow: 0 0 20px 0 rgba(0,0,0,0);
		padding-top: 0;
	}
	
	.header_suche {
		padding-left: 1em;
		padding-bottom: 2em;
		padding-top: 2em;
	}
	
	.scrld .logo, .logo {
		height: 60px;
		padding: 5px 0 5px 0;
	}
	
	.menu_icon_ct {
		display: flex;
	}
	
	.wrapper {
		padding-top: 60px;
	}
	
	
}


@media only screen and (max-width : 900px)  
{
	
	.sidebar_wrapper {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		display: flex;
		background-color: rgba(208, 199, 183, 0.3);
		padding: 2.5%;
		justify-content: space-between;
	}
	
	.sb_item {
		margin-bottom: 0;
	}
	
	.kw_section {
		padding: 2em 0;
	}
	
	main article {
		padding-right: 0;
	}
	
	.cols2, .kw_cols2 {
		column-count: 1;
	}
	
	.nav .sub-menu .current_page_item a {
		background-color: transparent;
		color: inherit;
	}
	
}


@media only screen and (max-width : 760px)  
{
	
	.wrapper {
		font-size: 18px;
	}
	
	.sidebar_wrapper a {
		display: contents;
	}
	
	.sb_item {
		padding: 1em 0.5em;
		max-width: 32%;
		font-size: 0.7em;
		line-height: 1.2;
	}
	
	.sb_item i {
		font-size: 1.6em;
	}
	
	.def_btn {
		letter-spacing: normal;
	}
	
	h4 {
		font-size: 1.3em;
	}
	
	.personen_grid {
		grid-template-columns: 1fr;
	}
	
	.person_box_ct {
		font-size: 1em;
	}
	
	.aktuelles .person_box_ct {
		flex-direction: column;
	}
	
	.news_grid .person_img {
		width: 100%;
		height: 12em;
	}
	
	
}














/*------------------------------------*\
    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;
	}
}
