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

/* vars */

:root {
	--fancybox-bg: rgba(0,0,0,0.5) !important;
}







/* 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%;*/
	font-size: 16px;
}
body {
	font:300 11px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color:#000;
	 font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

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

.wp-block-image a {
	display: unset;
}

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

/* wrapper */
.wrapper {
	position:relative;
	/*font-size: 1.3vw;*/
	/*font-size: 1.1vw;*/
	font-size: calc(0.5vw + 0.75rem);
}

main {
	/*padding-top: 3em;*/
	overflow: hidden;
}

section article {
	padding: 0 10em;
}

.wp-block-columns > div:nth-of-type(1) section article {
	padding-right: 3em;
}

.wp-block-columns > div:nth-of-type(2) section article {
	padding-left: 3em;
}

/* header */
.header {
	/*background-color: #000646;*/
	position: fixed;
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
	z-index: 20;
	backdrop-filter: blur(0em) brightness(1);
	-webkit-box-shadow: 0px 0px 0.5em 0 rgba(0,0,0,0);
	box-shadow: 0px 0px 0.5em 0 rgba(0,0,0,0);
	background-color: rgba(120, 163, 104, 0);
	transition: all 0.5s;
}

.scrld .header, .page-template-template-subsite .header {
	backdrop-filter: blur(0.5em) brightness(0.9);
	-webkit-box-shadow: 0px 0px 0.5em 0 rgba(0,0,0,0.3);
	box-shadow: 0px 0px 0.5em 0 rgba(0,0,0,0.3);
	background-color: rgba(120, 163, 104, 0.5);
}


.header_inner {
	display: flex;
	align-items: center;
	padding: 0 5em;
	justify-content: space-between;
	opacity: 0;
	transition: all 1s;
	transition-delay: 1s;
}

.doc_ready .header_inner {
	opacity: 1;
}

/* logo */
.logo {
	height: 4em;
	width: 18em;
	padding: 0.7em 0;
	display: flex;
	align-items: center;
}
.logo-img {
	height: 100%;
	width: auto;
	/*filter: brightness(0);*/
}

.logo-txt {
	color: #fff;
	font-weight: 900;
	letter-spacing: 0.04em;
	font-size: 2em;
}

.logo-img:hover {
	/*filter: brightness(1);*/
}

/* nav */
.nav {
	width: 85%;
}

.nav ul {
	list-style: none;
	display: flex;
	justify-content: flex-end;
	padding: 0;
	margin: 0;
	font-weight: 300;
}

.nav ul li {
	margin-left: 3em;
	display: inline-block;
}

.nav ul a {
	letter-spacing: 0.05em;
	font-size: 0.8em;
	color: #fff;
	opacity: 1;
	display: inline-block;
	text-shadow: 0.1em 0.1em 0.2em rgba(0,0,0,0.5);
	font-size: 1.3em;
	font-weight: 700;
	transition: all 0.5s;
	transform: scale(1);
	position: relative;
}

.nav ul a::after {
	content: '';
	position: absolute;
	bottom: -0.25em;
	left: 0;
	width: 0%;
	height: 0.12em;
	background-color: #fff;
	box-shadow: 0.1em 0.1em 0.2em rgba(0,0,0,0.5);
	transition: all 0.5s;
}

.nav ul a.active::after {
	width: 100%;
}

.nav ul a:hover {
	/*color: #1F5865;*/
	/*opacity: 0.8;*/
	/*font-family: "adelle", serif;
	letter-spacing: unset;*/
	transform: scale(1.05);
}

.current_page_item a {
	/*color: #1f5865;
	font-weight: 700;
	font-family: "adelle-sans", sans-serif !important;
	letter-spacing: 0.05em !important;*/
}



.menu_ico_ct {
	display: inline-block;
	position: relative;
	cursor: pointer;
	background-color: rgba(255,255,255,0);
	padding: 0px;
	z-index: 10;
	transition: all 0.5s;
	display: none;
}

.menuopen .menu_ico_ct {
	background-color: rgba(255,255,255,0);
}



.menu_icon {
	position: relative;
	width: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 40px;
}

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

.menuopen .menu_icon_line {
	background-color: #fff;
}

.menu_ico_ct:hover .menu_icon_line {
	background-color: #fff;
}

.menu_icon .line1 {
	transform: translateY(-10px);
}

.menu_icon .line2 {
	
}

.menu_icon .line3 {
	transform: translateY(10px);
}

.menuopen .menu_icon .line1 {
	transform: translateY(0px)rotate(45deg);
}

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

.menuopen .menu_icon .line3 {
	transform: translateY(0px) rotate(-45deg);
}


/* sidebar */
.sidebar {

}
/* footer */
.footer {
	padding: 1em 0;
	border-top: 1px solid rgba(0,0,0,0.12);
	color: #fff;
	background: #78A368;
background: linear-gradient(90deg, rgba(120, 163, 104, 1) 0%, rgba(167, 180, 155, 1) 100%);
	font-weight: 700;
	font-size: 1.2em;
}

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

.footer article > div {
	font-size: 0.8em;
}

.footer_links a {
	display: inline-block;
	margin-right: 3em;
	color: #fff;
}

.footer_links a:hover {
	color: #fff;
}



/*------------------------------------*\
    LAYOUT
\*------------------------------------*/

:where(.wp-block-columns) {
	margin-bottom: 0;
}

.page_head_wrapper {
	display: flex;
	height: 34vw;
}

.page_head_wrapper.imgpos_links {
	flex-direction: row-reverse;
}

.page_head_content {
	width: 34%;	
	height: 100%;
	padding: 2em 1em 1.5em 5em;
	display: flex;
	align-items: flex-end;
	color: #fff;
}

.page_head_img {
	width: 66%;
	height: 100%;
}

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

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

.txt_col p {
	margin-bottom: 0;
}

.wp-block-columns > div.txt_col:nth-of-type(1) {
	padding-left: 5em;
}

.wp-block-columns > div.txt_col:nth-of-type(2) {
	padding-right: 5em;
}

.w3_col figure {
	display: flex;
	justify-content: flex-end;
	padding-right: 2em;
}

.w3_col img {
	max-width: none;
	height: 25em;
	width: auto;
}

.wp-block-columns > div.w3_col:nth-of-type(2) figure {
	justify-content: flex-start;
	padding-right: 0;
	padding-left: 8em;
}

.titel_col {
	height: 34vw;
	padding: 1em 2em;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.no_gap {
	gap: 0;
}

.hide {
	display: none !important;
}



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

/* Home */

.home_head_wrapper {
	position: relative;
	width: 100%;
	height: 100vh;
}

.home_head_bg {
	height: 100%;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transition: all 2s;
}

.doc_ready .home_head_bg {
	opacity: 1;
}

.home_head_bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transform: scale(1.3);
	transition: all 12s;
}

.doc_ready .home_head_bg img {
	transform: scale(1);
}

.home_head_bg video {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center center;
}

.home_logo_wrapper {
	position: absolute;
	z-index: 3;
	width: 100%;
	height: 10em;
	bottom: 0;
	left: 0;
	background: #000000;
	background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
	background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
	opacity: 0;
	transition: all 1s;
	transition-delay: 2s;
}

.doc_ready .home_logo_wrapper {
	opacity: 1;
}


.home_logo_inner {
	padding: 3em;
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	text-align: center;
	justify-content: center;
}

.home_logo_wrapper span {
	font-size: 2.4em;
	text-shadow: 0.1em 0.1em 0.2em rgba(0,0,0,0.5);
	color: #fff;
	font-weight: 700;
}

.home_logo_inner img {
	width: 100%;
	height: auto;
	filter: brightness(0) invert(1);
}

.home_logo_arrow {
	position: absolute;
	width: 1em;
	height: 1em;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	cursor: pointer;
	bottom: 0em;
	left: 50%;
	transform: translateX(-50%);
}

.home_logo_arrow::before {
	content: '';
	display: inline-block;
	width: 70%;
	height: 70%;
	border-bottom: 0.1em solid #fff;
	border-right: 0.1em solid #fff;
	transform: rotate(45deg);
	position: absolute;
	top: -0.4em;
	transition: all 0.5s;
	pointer-events: none;
}

.home_logo_arrow:hover::before {
	top: -0.1em;
}

.home_news_teaser {
	padding: 1em 2em 1em 1em;
	background-color: #000646;
	color: #fff;
	position: absolute;
	right: 0;
	top: calc(50% - 17vw);
	text-align: right;
	line-height: 1.6;
	cursor: pointer; 
	transition: all 0.5s;
}

.home_news_teaser:hover {
	background-color: #61B4D1;
}

.home_news_teaser .teaser_text {
	padding-bottom: 0.4em;
	display: inline-block;
}

/* Aktuelles */

section#aktuelles article {
	padding: 0 5em;
}

.aktuelles_wrapper {
	display: grid;
	/*grid-template-columns: 1fr 1fr 1fr;*/
	grid-template-columns: 1fr 1fr;
	grid-gap: 3em;
}

.aktuelles_wrapper > a {
	
}

.aktuelles_img {
	width: 100%;
	position: relative;
}

.aktuelles_img_inner {
	position: relative;
	width: 100%;
	padding-top: 56%;
	perspective: 20em;
	overflow: hidden;
}

.aktuelles_img_inner img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center center;
	transition: all 0.5s;
	/*transform: rotate3d(-1,1,0,0deg)*/
	/*filter: grayscale(0.5);*/
	transform: scale(1);
}

.aktuelles_item:hover .aktuelles_img_inner img {
	/*transform: rotate3d(-1,1,0,-25deg);*/
	/*filter: grayscale(0);*/
	
	/*transform: scale(1.1);*/
}

.aktuelles_content {
	padding: 0.8em 0;
}

.aktuelles_text {
	padding-bottom: 0.5em;
}

.read_more {
	font-weight: 700;
	display: inline-block;
	padding: 0 1.5em 0 0;
	position: relative;
	transition: all 0.5s;
	display: none;
}

.aktuelles_item:hover .read_more, .read_more_wrapper:hover .read_more {
	padding: 0 0 0 1.5em;
}

.read_more::after {
	font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    content: "\f061";
	position: absolute;
	right: 0;
	top: 0.1em;
	color: #fff;
	pointer-events: none;
	opacity: 1;
	transition: all 0.5s;
}

.aktuelles_item:hover .read_more::after, .read_more_wrapper:hover .read_more::after {
	right: -1.0em;
	opacity: 0;
}
    
.read_more::before {
	font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    content: "\f061";
	position: absolute;
	left: -1.0em;
	top: 0.1em;
	color: #fff;
	pointer-events: none;
	opacity: 0;
	transition: all 0.5s;
}

.aktuelles_item:hover .read_more::before, .read_more_wrapper:hover .read_more::before {
	left: 0em;
	opacity: 1;
}


/* Zeitstrahl */

.zs_wrapper {
	position: relative;
}

.zs_wrapper::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 1px;
	background-color: rgba(255,255,255,0.6);
	left: calc(50% - 1px);
	top: 0;
}

.zs_wrapper p {
	display: inline-block;
	width: 50%;
	position: relative;
}

.zs_wrapper p:nth-of-type(even) {
	margin-right: 50%;
	text-align: right;
	padding-right: 2em;
}

.zs_wrapper p:nth-of-type(even)::before {
	content: '';
	position: absolute;
	width: 1.5em;
	height: 1.5em;
	border: 3px solid #fff;
	border-radius: 100%;
	right: 0;
	top: 0;
	transform: translateX(50%) translateY(40%);
	background-color: #000646;
	z-index: 2;
}

.zs_wrapper p:nth-of-type(odd) {
	margin-left: 50%;
	padding-left: 2em;
}

.zs_wrapper p:nth-of-type(odd)::before {
	content: '';
	position: absolute;
	width: 1.5em;
	height: 1.5em;
	border: 3px solid #fff;
	border-radius: 100%;
	left: 0;
	top: 0;
	transform: translateX(-50%) translateY(40%);
	background-color: #000646;
	z-index: 2;
}


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

.img_ds img {
	position: relative;
	z-index: 2;
}

.img_ds.img2 img {
	object-position: center bottom;
}

.img_map_p1 {
	padding-right: 10em;
	padding-left: 10em;
}


.img_ds::before {
	/*content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 1em;
	left: -1em;
	background-color: #1F5865;*/
}

.img_mltp img {
	mix-blend-mode: multiply;
}

.img_fh {
	height: 100%;
}

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





figure {
	position: relative;
}

figcaption {
	/*position: absolute;
	text-align: right;
	right: 1.5em;
	bottom: 0.1em;
	color: #fff;
	font-size: 0.6em;
	font-weight: 400;
	text-shadow: 1px 1px 0 #000000;
	z-index: 2;*/
}

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

/* Slick Slider */

.slick_slider.slick-dotted.slick-slider {
	margin-bottom: 0;
	font-size: 0;
	line-height: 0;
}

.slick_slider .slick-dots {
	bottom: 1em;
	text-align: right;
}

.slick_slider .slick-dots {
	font-size: 1vw;
	max-width: 20%;
	right: 4.5vw;
	bottom: 0.5vw;
}

.slick_slider .slick-dots li {
	width: auto;
	height: auto;
	display: inline-block;
	margin: 0 0.2em;
}

.slick_slider .slick-dots li button {
	width: 1em;
	height: 1em;
	font-size: 1em;
	display: inline-block;
	background-color: rgba(97, 180, 209,0.4);
	border: 2px solid #fff;
}

.slick_slider .slick-dots li.slick-active button {
	background-color: rgba(97, 180, 209,1);
}

.slick_slider .slick-dots li button::before {
	display: none;
}
.slick_slider .slick-prev {
	top: auto;
	bottom: 0;
	left: 0;
	width: 3em;
	height: 3em;
	background-color: #000 !important; 
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.3vw;
	z-index: 4;
	transform: none;
	padding-left: 0.5em;
	transition: all 0.5s;
}

.slick_slider .slick-prev:hover {
	background-color: #000646 !important;
	padding-left: 0em;
}

.slick_slider .slick-prev::before {
	display: none;
}

.slick_slider .slick-prev::after {
	content: '';
	position: absolute;
	width: 1.2em;
	height: 1.2em;
	border-bottom: 0.15em solid #fff;
	border-left: 0.15em solid #fff;
	transform: rotate(45deg);
}

.slick_slider .slick-next {
	top: auto;
	bottom: 0;
	left: auto;
	right: 0;
	width: 3em;
	height: 3em;
	background-color: #000 !important; 
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.3vw;
	z-index: 4;
	transform: none;
	padding-right: 0.5em;
	transition: all 0.5s;
}

.slick_slider .slick-next:hover {
	background-color: #000646 !important;
	padding-right: 0em;
}

.slick_slider .slick-next::before {
	display: none;
}

.slick_slider .slick-next::after {
	content: '';
	position: absolute;
	width: 1.2em;
	height: 1.2em;
	border-bottom: 0.15em solid #fff;
	border-right: 0.15em solid #fff;
	transform: rotate(-45deg);
}

.slick_slider .slick_item {
	position: relative;
}

.slick_slider .slick_item img {
	height: 40vw;
}

.slider_wide_format .slick_slider .slick_item img {
	height: 34vw;
}

.img_info_wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 5vw;
	height: calc(3.9vw - 1px);
	background-color: rgba(255,255,255,0.8);
	font-size: 1vw;
	line-height: normal;	
	position: absolute;
	width: 100%;
	padding-right: 25%;
	bottom: 0;
	left: 0;
	line-height: 1.2;
}





/* fancybox */


.fancybox__backdrop {
	opacity: 0.75 !important;
}



/* maps */

#map_rw {
	height: 70vmin;
}


/* foldbox */




.foldbox_wrapper {
	border-bottom: 1px solid rgba(0,0,0,0.2);
	padding-top: 1em;
}

.main_content .hide {
	display: none;
}

.foldbox_head {
	cursor: pointer;
	position: relative;
	padding-right: 2.5em;
}

.foldbox_rot .foldbox_head {
	color: #000646;
}

.foldbox_gruen .foldbox_head {
	color: #61B08A;
}

.foldbox_blau .foldbox_head {
	color: #61b4d1;
}

.foldbox_blau_invers .foldbox_head {
	background-color: #61b4d1;
	color: #fff;
	padding: 0.25em 1em;
}

.foldbox_blau_invers .foldbox_wrapper {
	border-bottom: none;
}

.foldbox_blau_invers .foldbox_content_inner {
	border-bottom: 2px solid #61b4d1;
}

.foldbox_gruen_invers .foldbox_head {
	background-color: #61B08A;
	color: #fff;
	padding: 0.25em 1em;
}

.foldbox_gruen_invers .foldbox_wrapper {
	border-bottom: none;
}

.foldbox_gruen_invers .foldbox_content_inner {
	border-bottom: 2px solid #61B08A;
}


.foldbox_rot_invers .foldbox_head {
	background-color: #000646;
	color: #fff;
	padding: 0.25em 1em;
}

.foldbox_rot_invers .foldbox_wrapper {
	border-bottom: none;
}

.foldbox_rot_invers .foldbox_content_inner {
	border-bottom: 2px solid #000646;
}


.foldbox_head_inner {
	/*padding: 0.5em 0;*/
	
}

.foldbox_head h5 {
	margin: 0.5em 0;
	transition: all 0.5s;
}

.foldbox_head:hover h3 {
	/*color: rgba(98, 198, 233, 1);*/
}

.foldbox_head::after {
	content: '\f054';
	font-family: "Font Awesome 6 Pro"; 
	font-weight: 400;
	position: absolute;
	width: 2em;
	height: 2em;
	display: flex;
	justify-content: center;
	align-items: center;
	right: 0;
	top: 50%;
	margin-top: -1em;
	font-size: 1.5em;
	/*color: #000;*/
	transition: all 0.5s;
	transform: rotate(0deg);
}

.foldbox_head:hover::after {
	transform: rotate(90deg);
	/*color: #61B08A;*/
}

.active .foldbox_head:hover::after, .active .foldbox_head::after {
	transform: rotate(-90deg);
}

.foldbox_content {
	display: none;
}

.foldbox_content > div {
	padding-bottom: 1em;
}

.foldbox_content p, .foldbox_content ul {
	margin-top: 0;
}

.foldbox_content a {
	text-decoration: underline;
	text-decoration-thickness: auto;
}

.foldbox_content a:hover {
	/*color: hsl(200, 30%, 30%);
	border-bottom: 2px solid;*/
}

.has-background .foldbox_content_inner {
	padding: 1em;
	background-color: #fff;
}




/* Formulare */

.contact_form_wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 1em;
	font-size: 0.85em;
}

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

.contact_form_wrapper .form_checkbox_wrapper, .contact_form_wrapper [data-name='Mitteilung'], .contact_form_wrapper [data-name='Datenschutz_akzeptiert'], .submit_btn_wrapper, .full_row {
	grid-column: span 2;
}

.contact_form_wrapper [data-name='Datenschutz_akzeptiert'] .wpcf7-list-item, .contact_form_wrapper [data-name='Interessentenliste_Eigentum'] .wpcf7-list-item, .contact_form_wrapper [data-name='Interessentenliste_Miete'] .wpcf7-list-item {
	margin-left: 0;
}

.contact_form_wrapper input[type="checkbox"] {
	display: none;
}

.contact_form_wrapper input[type="checkbox"] + span::before {
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	background-color: #e4e4e4;
	margin-right: 0.25em;
	margin-bottom: -0.1em;
}

.contact_form_wrapper input[type="checkbox"]:checked + span::before {
	background-color: #fff;
	background-image: url(/wp-content/uploads/2024/10/bb_ico_check.svg?v=2);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.contact_form_wrapper input[type='text'], .contact_form_wrapper textarea  {
	background-color: #f4f4f4;
	width: 100%;
	padding: 0.7em 0.75em 0.5em 0.75em;
	border: none;
	outline: none;
	font-weight: 400;
	border-bottom: 3px solid #ffffff;
	font-family: "Barlow", sans-serif;
}

.contact_form_wrapper input[type='text']:focus, .contact_form_wrapper textarea:focus  {
	background-color: #f8f8f8;
	border-bottom: 3px solid #000646;
}



.contact_form_wrapper textarea  {
	height: 8em;
}

.contact_form_wrapper input[type='submit'] {
	background-color: #fff;
	color: #000646;
	margin-top: 1em;
	border: 1.5px solid #000646;
	outline: none;
	letter-spacing: 0.1em;
	font-weight: 300;
	border-radius: 0;
	padding: 0.8em 1.2em 0.8em 1.2em;
	font-family: "Barlow", sans-serif;
}

.contact_form_wrapper input[type='submit']:hover {
	background-color: #000646;
	color: #fff;
}

.msdrop .wpcf7-select {
	width: 100%;
	appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
	border: none;
	background-color: rgba(0,0,0,0.05);
	padding: 0.5em;
	font-family: "Barlow", sans-serif;
}

.msdrop .wpcf7-form-control-wrap::after {
	 content: "";
    justify-self: end;
    width: 0.8em;
    height: 0.5em;
    background-color: #333;
    clip-path: polygon(100% 0%, 0 0%, 50% 100%);
	position: absolute;
	top: 0.25em;
	right: 0.5em;
	pointer-events: none;
}

.msdrop_label {
	display: inline-block;
	padding-bottom: 0.4em;
}

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

.row_suche {
	border-bottom: 1px solid #f4f4f4;
}

.row_checkboxes > p > span {
	display: inline-block;
	padding-bottom: 0.5em;
}

.row_suche .wpcf7-list-item.first {
	margin-left: 0;
}

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

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

.wpcf7-not-valid-tip {
	font-size: 0.6em;
	position: absolute;
}

.form_row_anrede {
	padding-top: 1em;
}

.form_row_anrede .wpcf7-checkbox span.first {
	margin-left: 0;
}


.wpcf7 form.sent .wpcf7-response-output {
	border: none !important;
	background-color: #61B08A;
	margin: 1em 0;
	color: #fff;
	font-weight: 700;
	font-size: 1.3em;
	grid-column: span 2;
	padding: 1em;
}

.row_datenschutz {
	padding-top: 1em;
}

/* site templates */

.page-template-template-subsite main {
	padding-top: 8em;
}

body.datenschutz h4 {
	font-size: 1.5em;
	line-height: normal;
	margin-top: 3em;
}

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


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

h1 {
	font-size: 2.8em;
	letter-spacing: 0.03em;
}

h2 {
	font-size: 1.2em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 300;
	color: #000646;
}

h3 {
	font-size: 4.6em;
	letter-spacing: 0.02em;
	margin-top: 0em;
	margin-bottom: 0.25em;
	padding-bottom: 0.25em;
	font-weight: 800;
	line-height: 1;
	background: #78A368;
background: linear-gradient(90deg, rgba(120, 163, 104, 1) 0%, rgba(167, 180, 155, 1) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}

#downloads h3 {
	background: none;
	color: #fff !important;
	 -webkit-background-clip: unset;
            background-clip: unset;
    -webkit-text-fill-color: unset;
}


h4 {
	font-size: 1.8em;
	letter-spacing: 0.03em;
	margin: 0.4em 0;
}

h5 {
	font-size: 1.5em;
	letter-spacing: 0.01em;
	margin-top: 0em;
	margin-bottom: 0.5em;
}

.tx_large {
	font-size: 1.6em;
}

.wp-block-buttons {
	gap: 0;
}

.wp-block-button__link {
	color: inherit;
	background: none;
	/*background-color: rgba(0,255,0,0.1);*/
	font-size: 1em;
	font-weight: 700;
	border-radius: 0;
	position: relative;
	padding: 0.25em 1.5em 0.25em 0em;
	transition: all 0.5s;
}

.wp-block-button__link:hover {
	color: #000646;
	padding: 0.25em 0em 0.25em 1.5em;
}

.has-white-color .wp-block-button__link:hover {
	color: #fff;
}

.wp-block-button__link::after {
	font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    content: "\f061";
	position: absolute;
	right: 0;
	top: 0.25em;
	/*color: #000;*/
	pointer-events: none;
	opacity: 1;
	transition: all 0.5s;
}

.wp-block-button__link[href$=".pdf"]::after {
	content: "\f1c1";
}

.wp-block-button__link:hover::after {
	right: -1.0em;
	opacity: 0;
	/*color: #1f5865;*/
}

    
.wp-block-button__link::before {
	font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    content: "\f061";
	position: absolute;
	left: -1.0em;
	top: 0.25em;
	/*color: #000;*/
	pointer-events: none;
	opacity: 0;
	transition: all 0.5s;
}

.wp-block-button__link[href$=".pdf"]::before {
	content: "\f1c1";
}


.wp-block-button__link:hover::before {
	left: 0em;
	opacity: 1;
	/*color: #1f5865;*/
}

.zitat_col {
	padding-top: 0.5em;
}

.zitat_col p {
	margin-top: 0;
	font-size: 1em;
	margin-bottom: 2em;
}

.zitat_col p:last-of-type {
	font-size: 0.8em;
}

.zitat_col strong {
	display: block;
	padding: 0 2em 0 2em;
	font-size: 1.0em;
}

.wp-block-columns > div:first-of-type.zitat_col {
	padding-left: 5em;
}

.wp-block-columns > div:last-of-type.zitat_col {
	padding-right: 5em;
}

/*
.wp-block-columns > div:first-of-type.zitat_col strong {
	padding: 0 2em 0 2em;
}*/

.zitat_col_x strong::before {
	content: '«';
	display: block;
	font-size: 3em;
	line-height: 0;
	font-weight: normal;
	position: absolute;
	margin-left: -0.5em;
}

.wp-block-columns > div:first-of-type.zitat_col strong::before {
	text-align: left;
	margin-left: -0.15em;	
}

.zitat_col_x strong::after {
	content: '»';
	display: inline-block;
	text-align: right;
	font-size: 3em;
	line-height: 0;
	font-weight: normal;
	position: absolute;
	margin-top: 0.3em;
	margin-left: 0.1em;
}

.wp-block-columns > div:first-of-type.zitat_col strong::after {
	margin-top: 0.28em;
	margin-left: 0.08em;
}

article p a {
	/*border-bottom: 2px dotted;*/
	text-decoration: underline;
	text-decoration-thickness: auto;
}

article p a:hover {
	/*border-bottom: 2px solid;*/
}







/* DOWNLOADS */

.download_wrapper .wp-block-group__inner-container{
	display: flex;
	flex-wrap: wrap;
}

.download_wrapper figure {
	display: flex;
	flex-direction: column-reverse;
	margin-bottom: 4em;
	margin-right: 2em;
}

.download_wrapper figcaption {
	/*text-transform: uppercase;*/
	letter-spacing: 0.03em;
	font-weight: 500;
}

.download_wrapper  img {
	width: auto;
	max-width: unset;
	height: 12em;
	-webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
	transform: scale(1);
	transition: all 0.5s;
}

.download_wrapper img:hover {
	transform: scale(1.05);
	-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.4);
box-shadow: 0 0 15px 0 rgba(0,0,0,0.4);
}




/* Kontaktformular */

.wpcf7-form p {
	margin: 0;
}

.wpcf7-text, .wpcf7-textarea, .cfrow {
	width: 100%;
	border: none;
	margin: 0.5em 0;
	padding: 0.5em 0.25em;
	outline: none !important;
	font-family: "Barlow", sans-serif;
	font-weight: 300;
	letter-spacing: 0.05em;
	border-bottom: 1px solid rgba(0,0,0,0.3);
}

.wpcf7-textarea {
	height: 8em;	
}

.wpcf7-text:focus, .wpcf7-textarea:focus {
	border: none;
	border-bottom: 1px solid rgba(0,0,0,1) !important;
	outline: none !important;
}

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



.wpcf7-list-item-label::before, #ct_filter label::before {
	content: "";
	position: relative;
	width: 1em;
	height: 1em;
	border: 1px solid;
	display: inline-block;
	margin-right: 0.25em;
	margin-bottom: -0.1em;
}

.wpcf7-list-item input[type="checkbox"], #ct_filter input[type="checkbox"] {
	display: none;
}

input[type="checkbox"]:checked + .wpcf7-list-item-label::before, #ct_filter input[type="checkbox"]:checked + label::before  {
	background-image: url(/wp-content/themes/html5blank-stable/img/ico_check.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.interesse_ct .wpcf7-form-control {
	display: flex;
	flex-direction: column;
	line-height: 1.8;
	padding: 0.5em 0;
}

.wpcf7-not-valid-tip {
	font-size: 0.8em;
	margin-top: -0.4em;
}

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

.pf_txt {
	font-size: 0.8em;
	order: 1;
}

.wpcf7-submit {
	border: 2px solid #78A368;
	background-color: #fff;
	color: #78A368;
	padding: 0.5em 1.5em;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-weight: 600;
	order: 4;
}

.wpcf7-submit:hover, .wpcf7-submit:focus {
	background-color:#78A368;
	border: 2px solid #78A368 !important;
	color: #fff;
}

.ajax-loader {
	order: 2;
}

.wpcf7-spinner {
	position: absolute;
}




/*------------------------------------*\
    COLORS
\*------------------------------------*/

.has-wasserschloss-blau-background-color {
	background-color: #61b4d1;
}

.has-wasserschloss-gruen-background-color {
	background-color: #61B08A;
}

.has-wasserschloss-orange-background-color {
	background-color: #1f5865;
}

.has-wasserschloss-grau-background-color {
	background-color: #f6f6f6;
}


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




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

	
	#lage article {
		display: contents;
	}
	
}

@media only screen and (min-width : 782px)  {
	
	.mob_spacer {
		display: none;
	}
	

	
	/* anim */
	
	/*
	.wp-block-columns .wp-block-column:first-of-type {
		opacity: 0;
		transform: translateX(-5em);
		transition: all 1s;
	}
	
	.wp-block-columns .wp-block-column.inview:first-of-type {
		opacity: 1;
		transform: translateX(0em);
	}
	
	.wp-block-columns .wp-block-column:nth-of-type(n+2) {
		opacity: 0;
		transform: translateX(5em);
		transition: all 1s;
	}
	
	.wp-block-columns .wp-block-column.inview:nth-of-type(n+2) {
		opacity: 1;
		transform: translateX(0em);
	}
	
	.page_head_wrapper {
		opacity: 0;
		transition: all 1s;
	}
	
	.page_head_wrapper.inview {
		opacity: 1;
	}
	*/
	
	
	
}


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

	
	.nav ul li {
		margin-left: 1.5em;
	}
	
}



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

	
	.menu_ico_ct {
		display: inline-block;
	}
	
	.nav {
		position: absolute;
		top: 100%;
		background-color: #fff;
		border-bottom: 1px solid #ccc;
		overflow-x: hidden;
		transition: all 0.5s;
		width: 0;
		right: 0;
		pointer-events: none;
		opacity: 0;
		word-break: keep-all;
	}
	
	.menuopen .nav {
		width: 100%;
		pointer-events: auto;
		opacity: 1;
		background: #78A368;
background: linear-gradient(45deg, rgba(120, 163, 104, 1) 0%, rgba(167, 180, 155, 1) 100%);
	}
	
	.nav ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 1em 0;
		min-width: 50vmin;
	}
	
	.nav ul li {
		text-align: center;
		padding: 0.3em 0;
		margin-left: 0;
		color: #fff;
	}
	
	.logo {
		height: 3em;
		padding: 0.5em 0;
	}
	
	
	
	.header_inner {
		padding: 0 3%;
	}
	

	.img_map_p1 {
		padding-right: 5em;
		padding-left: 0em;
	}
	
	.home_logo_wrapper {
		height: 16em;
	}

	
}



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

	
	.tab_no {
		display: none;
	}
	

	.content_cols .wp-block-column {
		flex-basis: 100% !important;
	}
	
	section article {
		padding: 0 5em;
	}
	


	
}


@media only screen and (max-width : 781px)  {
	
	.mob_no {
		display: none;
	}
	
	.wrapper {
		font-size: 21px;
	}
	
	
	
	.home_head_wrapper {
		height: 100vmin;
	}
	

	
	.home_logo_arrow {
		display: none;
	}
	
	.home_logo_inner {
		padding: 5vmin;
	}
	
	.home_logo_arrow {
		bottom: 0.5em;
	}
	
	section article {
		padding: unset;
	}
	
	section > *, main > .wp-block-columns {
		padding: 0 3% !important;
	}
	
	main > article > div article {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	
	.img_col img {
		height: 52vmin;
	}
	
	.w3_col figure {
		/*justify-content: center !important;*/
		padding-right: 0;
	}
	
	.w3_col img {
		/*object-fit: contain;
		object-position: right center;
		height: 34vmin;
		transform: scale(1.3);*/
	}
	
	.has-text-align-right {
		text-align: left;
	}
	
	.img_break img {
		height: 52vmin;
	}
	
	h1 {
		font-size: 2.4em;
	}
	
	h2 {
		font-size: 0.9em;
	}
	
	h3 {
		font-size: 1.6em;
	}
	
	h4 {
		font-size: 1.4em;
	}
	
	h5 {
		font-size: 1.25em;
	}
	

	
	.wp-block-columns > div:first-of-type.zitat_col {
		padding-left: 0;
	}
	
	.wp-block-columns > div.w3_col:nth-of-type(2) figure {
		padding-right: 0;
		padding-left: 0;
		padding-bottom: 4em;
	}
	
	
	.wp-block-columns > div:first-of-type.zitat_col {
		padding-left: 0em;
	}
	
	.zitat_col strong {
		padding: 0;
		font-size: 1em;
	}
	
	.zitat_col {
		padding: 0 3em !important;
	}
	
	.zitat_col p:last-of-type {
		text-align: right;
	}
	
	.wp-block-columns > div:first-of-type.zitat_col strong::before {
		margin-left: -0.55em;
	}
	
	
	section#aktuelles article {
		padding: 0 3vmin;
	}
	
	.aktuelles_wrapper {
		grid-template-columns: 1fr;
	}
	
	.wp-container-core-buttons-is-layout-1.wp-container-core-buttons-is-layout-1, .wp-container-core-buttons-is-layout-3.wp-container-core-buttons-is-layout-3, .wp-container-core-buttons-is-layout-2.wp-container-core-buttons-is-layout-2, .wp-block-buttons.is-content-justification-right.is-vertical {
		justify-content: flex-start !important;
		align-items: flex-start !important;
	}
	
	
	
	.footer_links {
		display: flex;
		flex-direction: column;
		line-height: 1.8;
	}
	
	.footer_copy {
		display: flex;
		align-items: flex-end;
	}
	
	.page_head_wrapper {
		flex-direction: column-reverse;
		height: auto;
	}
	
	.page_head_wrapper.imgpos_links {
		flex-direction: column-reverse;
	}
	
	
	.page_head_content {
		padding: 0 3vmin;
		width: 100%;
		height: auto;
	}
	
	.page_head_img {
		width: 100%;
		height: 36vmin;
	}
	
	.wp-block-columns > div.txt_col:nth-of-type(1), .wp-block-columns > div.txt_col:nth-of-type(2) {
		padding-left: 0;
		padding-right: 0;
	}
	
	
	.slider {
		margin-top: 1em;
		margin-bottom: 1em;
	}
	
	
	.slider_wide_format .slick_slider .slick_item img, .slick_slider .slick_item img {
		height: 60vmin;
	}
	
	.img_info_wrapper {
		padding-left: 50px;
		padding-right: 50px;
		height: 36px;
		font-size: 12px;
		line-height: 1;
	}
	
	
	.slick_slider .slick-prev, .slick_slider .slick-next {
		font-size: 12px;
	}
	
	.slick_slider .slick-dots {
		display: none !important;
	}
	
	
	.wp-block-columns > div:nth-of-type(2) section article {
		padding-left: 0;
	}
	
	.mob_reverse {
		flex-direction: column-reverse;
	}
	
	.mob_hide {
		display: none !important;
	}
	
	
	.titel_col {
		height: auto;
		padding: 1em;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}
	
	.wpcf7-form-control-wrap {
		grid-column: span 2;
	}
	
	.zs_wrapper p {
		font-size: 3.6vw;
	}
	
	.home_logo_wrapper {
		height: auto;
	}
	
	.home_logo_wrapper span {
		font-size: 1.6em;
	}
	
}

@media only screen and (max-width : 560px)  {
	
	.img_map_p1 {
		padding-right: 0;
	}
	
	h3 br {
		display: none;
	}
	
	.page_head_img {
		height: 56vmin;
	}
	
	.contact_form_wrapper {
		font-size: inherit;
	}
	
	.form_checkbox_wrapper {
		display: flex;
		flex-direction: column;
	}
	
	.row_suche .wpcf7-list-item {
	margin-left: 0;
}
	
}


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