/* composer */

.columns {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: stretch;
	align-items: stretch;
	
	margin: 0 auto;
	max-width: calc(100% - var(--page-margin) - var(--page-margin) + 2em);
}


@media (min-width: 1600px) {
	.columns {
		max-width: 51.5em;
	}
}



.column {
	-webkit-flex: 1 1 auto;
	flex: 1 1 auto;
	
	width: 100%;
	padding: 0 1em;
	box-sizing: border-box;
}

.column[data-size="1/5"] { width: 20%; }
.column[data-size="1/4"] { width: 25%; }
.column[data-size="1/3"] { width: 33.333%; }
.column[data-size="2/5"] { width: 40%; }
.column[data-size="1/2"] { width: 50%; }
.column[data-size="3/5"] { width: 60%; }
.column[data-size="2/3"] { width: 66.666%; }
.column[data-size="3/4"] { width: 75%; }
.column[data-size="4/5"] { width: 80%; }


/* section fullwidth */

.fullwidth > .columns {
	max-width: 100%;
}

.fullwidth > .columns > .column:first-child {
	padding-left: 0;
}
.fullwidth > .columns > .column:last-child {
	padding-right: 0;
}


/* column padding */

.no-column-padding > .columns > .column,
.column.no-column-padding {
	padding: 0 !important;
}


/* column vertical align */

.align-flex-start {
	-webkit-align-self: flex-start;
	align-self: flex-start;
}
.align-flex-center {
	-webkit-align-self: center;
	align-self: center;
}
.align-flex-end {
	-webkit-align-self: flex-end;
	align-self: flex-end;
}


/* vertical align of contents in streched column */

.column-contents-center {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}


/* strech content to column */

.strech-to-column {
	position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
	-webkit-align-items: stretch;
	align-items: stretch;
}
.strech-to-column > * {
	width: 100%;
	min-height: 100%;
	box-sizing: border-box;
}


/* fit content to column */

.fit-content-to-column {
	position: relative;
}

.fit-content,
.fit-content .fit-object {
	position: absolute !important;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.fit-object {
	position: relative;
	overflow: hidden;
}

@media (max-width: 999px) {
	.mobile-column-ratio {
		position: relative;
		padding-top: 66.666%;
	}
}


/* mobile column collapse */

@media (max-width: 999px) {
	section:not(.custom-wrap-rule) > .columns {
		display: block;
	}
	section:not(.custom-wrap-rule) > .columns > .column {
		width: 100%;
	}
	
	section:not(.custom-wrap-rule):not(.mobile-flex-reverse) > .columns > .column:not(:first-child) {
		margin-top: 3em;
	}
	section:not(.custom-wrap-rule).mobile-flex-reverse > .columns > .column:not(:last-child) {
		margin-top: 3em;
	}

	.mobile-flex-reverse > .columns,
	.mobile-flex-reorder > .columns {
		display: -webkit-flex !important;
		display: flex !important;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.mobile-flex-reverse > .columns {
		-webkit-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.mobile-flex-reverse > .columns > .column,
	.mobile-flex-reorder > .columns > .column {
		-webkit-flex: 1 0 auto;
		flex: 1 0 auto;
	}

	.mobile-order-1 {
		-webkit-order: 1;
		order: 1;
	}
	.mobile-order-2 {
		-webkit-order: 2;
		order: 2;
	}
	.mobile-order-3 {
		-webkit-order: 3;
		order: 3;
	}
	.mobile-order-4 {
		-webkit-order: 4;
		order: 4;
	}
	.mobile-order-5 {
		-webkit-order: 5;
		order: 5;
	}
}

@media (max-width: 719px) {
	.wrap-below-720 > .columns {
		display: block;
	}
	.wrap-below-720 > .columns > .column {
		width: 100% !important;
	}
}

@media (max-width: 511px) {
	.wrap-below-512 > .columns {
		display: block;
	}
	.wrap-below-512 > .columns > .column {
		width: 100% !important;
	}
}


/* collapse 4 cols to 2x2 */

@media (max-width: 999px) {
	.wrap-4-to-2x2 .columns {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.wrap-4-to-2x2 .column {
		width: 50% !important;
	}
	/* or .wrap-4-to-2x2 .column:nth-child(1) {width: ... } */
	
	.wrap-4-to-2x2 .column:nth-child(3),
	.wrap-4-to-2x2 .column:nth-child(4) {
		margin-top: 2em;
	}
}



/* flex cols */

.flex-cols-2 > div {
	width: calc( (100% - 1.3em) / 2 );
}
.flex-cols-3 > div {
	width: calc( (100% - 2.6em) / 3 );
}



@media (max-width: 999px) {
	.flex-cols-4 > div {
		width: calc( (100% - 2.6em) / 3 );
	}

}

@media (max-width: 719px) {
	.flex-cols-3 > div,
	.flex-cols-2 > div {
		width: 100%;
	}
}


.flex-fill {
	height: 0px;
	padding: 0;
	margin: 0 !important;
}.content-box {
	position: relative;
	box-sizing: border-box;
	z-index: 1;
}

/*
.video-position-links,
.video-position-rechts,
.content-box {
	position: relative;
	width: 50em;
	max-width: calc(100% - var(--page-margin));
	box-sizing: border-box;
	z-index: 1;
}

@media (max-width: 511px) {
	.video-position-links,
	.video-position-rechts,
	.content-box {
		max-width: calc(100vw - var(--page-margin));
		
	}

}
*/

.box-in	{
	position: relative;
	z-index: 1;
	background-color: black;
	color: white;
	padding: 3em 3em 4em 3em;
	clip-path: var(--box-clip);
	font-size: 1em;
	transition: padding-bottom 0.25s ease, font-size 0.25s ease;
	/*transform: translate3d(0px, 0px, 0px);*/
}

/* safari render bugfix */
.box-expanded .box-in {
	font-size: 0.999em;
}




/*


.color-box .box-in {
	background-color: var(--highlight-color);
}

.video-position-links,
.content-box:not(.right-box) {
	margin-left: calc(var(--page-margin) * -1);
}
.video-position-rechts,
.right-box {
	margin-right: calc(var(--page-margin) * -1);
	margin-left: auto;
}
.right-box .box-in {
	padding-left: calc(var(--page-margin) * 1.75);
	padding-right: var(--page-margin);
}

*/

.text-cols {
	padding-top: 2em;
}

@media (min-width: 1000px) {
	.text-cols {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: flex-start;
		padding-right: 10%;
	}
	.text-cols .content-text {
		width: calc((100% - 3em) / 2);
	}
}

@media (max-width: 999px) {
	.text-cols .content-text + .content-text {
 		margin-top: 2em;
	}
	.box-in {
		padding: 2em 2em 7em 2em;
	}
	
	h1{
		font-size: 2.3em !important;
	}
}


.content-box + .content-box {
	margin-top: 2em;
}


.box-expand {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 3.6em;
	height: 3.6em;
	background: black url("../assets/images/plus.svg") center center no-repeat;
	background-size: 52% auto;
	cursor: pointer;
	z-index: 1;
	    font-size: 0.35em;
}
.box-expanded .box-expand {
	background-image: url("../assets/images/minus.svg");
}

.box-expand::before {
	content: "Mehr";
    font-size: 0.85rem;
    position: absolute;
    top: -1.85em;
    right: 0;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}
.box-expanded .box-expand::before {
	content: "Weniger";
}

html[lang^="en"] .box-expand::before {
	content: "More";
}
html[lang^="en"] .box-expanded .box-expand::before {
	content: "Less";
}


.box-in .more-text {
	display: none;
	padding-top: 0.25em;
}
/* FORMS */

.send-progress {
cursor: wait;

}
.send-progress .form-composer {
pointer-events: none;
opacity: 0.6;
}

.content-form .columns {
	padding-left: 0;
	padding-right: 0;
	max-width: 36em;
}

.content-form form {
padding: 0;
margin: 0 -0.5em;
transition: opacity 0.2s ease;
}
.content-form .column {
padding: 0 0.5em;
}

.form-input {
padding: 0.5em 0;
}

.minimal-input {
display: block;
background-color: white;
color: currentColor;
border: 1px #333 solid; /* fix color because .select-placeholder */
box-sizing: border-box;
outline: 0;
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
appearance: none;
border-radius: 0px;
height: 2em;
line-height: 2em;
padding: 0px 0.2em;
margin: 0;
width: 100%;
}

.minimal-input option {
color: #333; /* fix color because .select-placeholder */
}

textarea.minimal-input { 
max-width: 100%; /* no horizontal resize */
line-height: 1.5em;
padding-top: 0.25em;
}
select.minimal-input {
cursor: pointer;
}

.input-label {
min-height: 2em;
line-height: 150%;
box-sizing: border-box;
padding-top: 0.2em;
}

.input-select-wrapper {
position: relative;
}
.input-select-button {
position: absolute;
top: 0;
right: 0;
background: currentColor none 50% 54% no-repeat;
background-image: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNMCA3LjMzbDIuODI5LTIuODMgOS4xNzUgOS4zMzkgOS4xNjctOS4zMzkgMi44MjkgMi44My0xMS45OTYgMTIuMTd6Ii8+PC9zdmc+);
background-size: 0.8em 0.8em;
display: block;
width: 2em;
height: 2em;
line-height: 2em;
text-align: center;
pointer-events: none;
}

.input-button {
background: #000;
color: white;
text-align: center;
border: 0;
cursor: pointer;
	font-weight: bold;
	display: inline-block;
	width: auto;
	padding-left: 1em;
	padding-right: 1em;
	margin-top: 0.5em;
}

.minimal-input:-moz-input-placeholder {
color: #999;
}
.minimal-input::-moz-input-placeholder {
color: #999;
}
.minimal-input:-ms-input-placeholder {
color: #999;
}
.minimal-input::-ms-input-placeholder {
color: #999;
}
.minimal-input::-webkit-input-placeholder {
color: #999;
}
.minimal-input::placeholder {
color: #999;
}

.select-placeholder,
select.minimal-input option[value=""] {
color: #999;
}


.checkbox,
.radio {
min-height: 2em;
line-height: 150%;
display: inline-block;
position: relative;
color: inherit;
text-decoration: none;
padding-left: 3em;
padding-top: 0.2em;
box-sizing: border-box;
-webkit-user-select: none;
user-select: none;
cursor: pointer;
}

.checkbox > span,
.radio > span {
position: absolute;
top: 0px;
left: 0px;
border: 1px currentColor solid;
box-sizing: border-box;
width: 2em;
height: 2em;
background: transparent none center center no-repeat;
background-size: 1em 1em;
}
.checkbox.checked span {
background-image: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjMzMzIiBkPSJNMjAuMjg1IDJsLTExLjI4NSAxMS41NjctNS4yODYtNS4wMTEtMy43MTQgMy43MTYgOSA4LjcyOCAxNS0xNS4yODV6Ii8+PC9zdmc+);
}

.radio > span {
border-radius: 50%;
}
.radio > span > span {
position: absolute;
top: 22%;
left: 22%;
width: 56%;
height: 56%;
background-color: currentColor;
border-radius: 50%;
display: none;
}
.radio.checked > span > span {
display: block;
}

@media (min-width: 1000px) {
	.option-align-h .checkbox + .checkbox,
	.option-align-h .radio + .radio {
	margin-left: 1em;
	}
}
@media (max-width: 999px) { /* same like v */
	.option-align-h .checkbox,
	.option-align-h .radio {
	display: block;
	}
	.option-align-h .checkbox + .checkbox,
	.option-align-h .radio + .radio {
	margin-top: 1em;
	}
}

.option-align-v .checkbox,
.option-align-v .radio {
display: block;
}
.option-align-v .checkbox + .checkbox,
.option-align-v .radio + .radio {
margin-top: 1em;
}

@media (max-width: 511px) {
	.content-form .columns {
		display: block;
	}
	.content-form .columns > .column {
		width: 100%;
	}
}


.input-checkbox-wrapper {
	font-size: 0.7em;
}


/* form errors */

.content-form .columns.form-error {
display: none;
}
.form-error-response::before {
	content: "Bitte füllen Sie alle erforderlichen Felder aus.";
	display: block;
	color: red;
	font-size: 1rem;
	line-height: 1.5rem;
}
html[lang="en"] .form-error-response::before {
	content: "Please fill in all required fields.";
}

.form-error-response {
border: 1px red solid;
color: white;
font-size: 0.1px;
padding: 1rem;
text-align: center;
margin-top: 0.5rem;
}
.invalid input,
.invalid textarea,
.invalid select,
.invalid .checkbox > span, 
.invalid .radio > span {
border-color: red;
}

/* GALLERY */

.content-gallery {
	position: relative;
		
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
}


.content-gallery > div {
	margin: 0.65em 0;
}
.content-image {
	position: relative;
}

.fit-object img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.object-fit-fill img {
  object-fit: fill;
}

.object-fit-contain img {
  object-fit: contain;
}

.object-fit-cover img {
  object-fit: cover;
}

.object-fit-none img {
  object-fit: none;
}

.object-fit-scale-down img {
  object-fit: scale-down;
}

.fit-content .image-caption {
	position: absolute;
	bottom: 2em;
	left: 1em;
	right: 1em;
	text-align: center;
	color: white;
	z-index: 1;
}


/* overlay */

.image-overlay {
	position: absolute;
	top: 25%;
	left: var(--content-offset);
	right: var(--page-margin);
	color: white;
}

.image-overlay > .content-text {
	
}.content-imagegallery > .content-image {
	margin: 0.65em 0;
}.content-linktile {
	position: relative;
	aspect-ratio: 4 / 3;
}
.content-linktile a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	color: white;
	display: block;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	transition: background-color 0.25s ease, color 0.25s ease; 
}

@media (pointer: fine) {
	.content-linktile a:hover {
		background-color: var(--blau);
	}

}


.content-linktile strong {
	display: block;
	padding: 1.5em;
	text-align: center;
}	.news-in {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: flex-start;
	}

@media (min-width: 1000px) {



	.content-news .content-text,
	.content-news .content-image {
		width: calc((100% - 3em) / 2);
	}


	.content-news:nth-child(even) .news-in {
		flex-direction: row-reverse;
	}

}

.content-news {
	padding: 2em 0;
}


.content-newslist::before {
	content: "";
	display: block;
	height: 2.5em;
}

@media (max-width: 999px) {
	.content-news .content-text,
	.content-news .content-image {
		width: 100%;
	}
	.news-in {

		flex-wrap: wrap;
		flex-direction: column-reverse !important;
	}

	.content-news .content-image {
		margin-bottom: 2em;
	}
}.scroll-container {
    cursor: grab;
    overflow: auto;
	
	user-select: none;
	
	/* ff */
    scrollbar-width: thin;
	scrollbar-color: currentColor transparent;
	
	color: transparent;
	
	transition: color 0.25s ease;

	margin-bottom: -1.6rem;
}

.no-overflow {
	cursor: default !important;
}


.scroll-container > div,
.scroll-container.scrolling,
.scroll-container:hover {
	color: #707070;
}

section.bg-dark .scroll-container > div,
section.bg-dark .scroll-container.scrolling,
section.bg-dark .scroll-container:hover {
	color: #fff;
}


.scroll-container::-webkit-scrollbar {
    height: .4rem;
	transition: background-color 0.25s ease;
}
.scroll-container::-webkit-scrollbar-track {
    background-color: transparent;
}
.scroll-container::-webkit-scrollbar-thumb {
    background-color: currentColor;
    border-radius: 1rem;
}
.scroll-container a {
	-webkit-user-drag: none;
}


/* SLIDER */

.content-slider {
	position: relative;
}

.content-slider .ratio {
	position: relative;
}

.swiper-slide:not(.swiper-slide-active) {
	opacity: 0 !important;
}

.swiper-slide > .content,
.content-slider .swiper-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.swiper-pagination {
	width: 2em !important;
	left: auto !important;
	right: -0.5em !important;
	bottom: -0.5em !important;
	font-size: 0.5em;
}
.content-slider .swiper-pagination-bullet {
	margin: 0 !important;
	position: relative;
	background: none;
	width: 2em;
	height: 2em;
	opacity: 1 !important;
}
.content-slider .swiper-pagination-bullet::before {
	content: "";
	position: absolute;
    left: 0.45em;
    top: 0.45em;
    width: 1.3em;
    height: 1.3em;
	box-sizing: border-box;
	border-radius: 50%;
	border: 0.3em black solid;
	background-color: white;
}
.content-slider .swiper-pagination-bullet-active::before {
	border-color: var(--blau);
}

.swiper-container[data-count="0"] ~ .swiper-pagination,
.swiper-container[data-count="1"] ~ .swiper-pagination,
.swiper-container[data-count="0"] .swiper-pagination,
.swiper-container[data-count="1"] .swiper-pagination {
	display: none !important;
}


.content-slider .swiper-button-next::after,
.content-slider .swiper-button-prev::after {
	content: none !important;
}

.content-slider .swiper-button-next,
.content-slider .swiper-button-prev {
	background-size: 1em auto;
	background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTYuNjcgMGwyLjgzIDIuODI5LTkuMzM5IDkuMTc1IDkuMzM5IDkuMTY3LTIuODMgMi44MjktMTIuMTctMTEuOTk2eiIvPjwvc3ZnPg) center center no-repeat;
	background-size: contain;
	left: auto;
	right: 1.75em;
	top: calc(100% + 1.5em);
}
.content-slider .swiper-button-next {
	transform: scaleX(-1);
	right: -0.15em;
}

/* pagnation outside of slider */
.content-slider > .swiper-pagination {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2em;
}



/* HERO */

.slider-type-hero-slider .ratio {
	box-sizing: border-box;
	min-height: 26em;
}
/* TEASERLIST */

.content-teaserlist {
	position: relative;
	margin: -0.5em 0;
	
    -webkit-display: flex;
    -webkit-flex-direction: row;
    -webkit-flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -webkit-align-content: flex-start;
    -webkit-align-items: flex-start;
	
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
}


.content-teaserlist > div {
	margin: 0.5em 0;
}


/* text */

[data-color=highlight] {
	color: var(--highlight-color);
}

.content-text p,
.content-text ul,
.content-text ol {
	line-height: 150%;
	padding: 1.375em 0;
	margin: 0;
	font-size: 0.66rem;
}

@media (min-width: 1400px) {
	.content-text p,
	.content-text ul,
	.content-text ol {
		font-size: 0.7rem;
	}
}
@media (max-width: 1199px) {
	.content-text p,
	.content-text ul,
	.content-text ol {
		font-size: 0.75rem;
	}
}
@media (max-width: 719px) {
	.content-text p,
	.content-text ul,
	.content-text ol {
		font-size: 0.85rem;
	}
}
@media (max-width: 511px) {
	.content-text p,
	.content-text ul,
	.content-text ol {
		font-size: 1rem;
	}
}


.content-text p[style*="center"] {
	max-width: 40em;
	margin: 0 auto;
}

.content-text ol {
	padding-left: 1em;
}

.content-text ul {
	list-style-type: none;
}
.content-text ul li {
	position: relative;
	padding-left: 0.65em;
}
.content-text ul li::before {
	content: ""; /* \2013 ndash \00B7 middot \2022 bull */
	position: absolute;
    left: 0;
    top: 0.45em;
    width: 0.3em;
    height: 0.3em;
	background-color: currentColor;
}


h1, h2, h3, h4 {
	font-weight: bold;
	padding: 0;
	margin: 0;
	line-height: 120%;
}

h1 {
	font-size: 4.08em;
	line-height: 100%;
}

h2 {
	font-size: 2em;
	padding-top: 1.5rem;
	padding-bottom: 0.5rem;
	line-height: 100%;
}
h2[data-size=largeh2] {
	font-size: 2.6em;
}


h3 {
	font-size: 1.3em;
	padding-top: 1.5rem;
	padding-bottom: 0.5rem;
}

h4 {
	font-size: 1em;
	padding-top: 1.5rem;
	padding-bottom: 0.5rem;
}


p[data-size=small] {
	font-size: 0.66em;
}
p[data-size=large] {
	font-size: 1em;
}

@media (max-width: 999px) {
	h1 {
		font-size: 2.8em;
	}
	h2 {
		font-size: 1.9em;
	}
	h2[data-size=largeh2] {
		font-size: 2.2em;
	}
}

@media (max-width: 511px) {
	h1 {
		font-size: 2.25em;
	}
	h2 {
		font-size: 1.75em;
	}
	h2[data-size=largeh2] {
		font-size: 1.9em;
	}
}



[data-padding=none] {
	padding-top: 0 !important;
}


.content-text + .two-column-text {
	margin-top: 1.5em;
}

@media (min-width: 1000px) {
	.two-column-text {
		column-count: 2;
		column-gap: 3em;
	}
	.two-column-text p {
		max-width: 100% !important;
    padding: 0 !important;
    margin: 0.05em 0 !important;
	}

	[data-break="before"] {
		break-before: column;
	}
}


.text-table {
	font-family: inherit;
	font-size: 1em;
	margin: 0.75em 0;
}
.text-table td {
	line-height: 150%;
	vertical-align: top;
}
.text-table td:not(:last-child) {
	padding-right: 1em;
}

@media (max-width: 999px) {
	.mobile-collapse td {
		display: block;
		padding: 0 !important;
	}
	.mobile-collapse td:last-child {
		padding-bottom: 1em !important;
	}
}


.content-text > :first-child {
	padding-top: 0;
	margin-top: -0.3em; /* font white-space */
}
.content-text > :last-child {
	padding-bottom: 0;
	margin-bottom: -0.3em; /* font white-space */
}



.content-text > h1:first-child,
.content-text > h2:first-child {
	margin-top: -0.11em; /* font white-space */
}
.content-text > h1:last-child,
.content-text > h2:last-child {
	margin-bottom: -0.11em; /* font white-space */
}


.button-link {
    color: white;
	background-color: var(--highlight-color);
    padding: 0.7em 1.25em;
    margin: 0.5em 0;
    box-sizing: border-box;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
	transition: filter 0.25s ease;
}
.button-link + .button-link {
	margin-left: 0.95em;
}

.button-link:hover {
	filter: brightness(1.1);
}

/*
.content-box .button-link {
    background-color: white;
    color: #000;
}

.content-box .button-link:hover {
	background-color: var(--highlight-color);
	color: white;
}
.content-box.color-box .button-link:hover {
	background-color: #000;
}
*/

/* inline images */

img.alignnone {
	max-width: 100%;
	height: auto;
	margin: 0.4em 0;
}
img.alignright {
	float: right;
	max-width: 50%;
	height: auto;
	margin: 0.4em 0 1em 2em;
}
img.alignleft {
	float: left;
	max-width: 50%;
	height: auto;
	margin: 0.4em 2em 1em 0;
}
img.aligncenter {
	float: none;
	clear: both;
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0.4em auto 0.4em auto;
}

@media (max-width: 719px) {
	img.alignleft,
	img.alignright {
		float: none;
		margin: 1.5em auto;
		max-width: 100%;
	}
}

.content-video {
	position: relative;
	
}
.content-video::before {
	content: "";
	display: block;
	padding-top: 56.25%;
}

video {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

.video-play {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	cursor: pointer;
	    background: #0005;
}

.video-play::before {
	content: "";
    position: absolute;
    height: 7em;
    max-height: 35%;
    top: 50%;
    left: 50%;
    background: white url("../assets/images/play.svg") center center no-repeat;
    background-size: 40% auto;
    font-size: 1em;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
}

.playing .video-play::before {
	content: none;
}
/* ACCORDION */

.accordion-title {
display: block;

padding-top: 0.5em; /* overwrite headline padding */
}


/* hide element till init 
h4:not(.accordion-title),
h4:not(.accordion-title) ~ :not(.no-accordion) {
	display: none;
}
*/

/* hide till grouped */
.accordion-title:not(.accordion-ready),
.accordion-title:not(.accordion-ready) ~ :not(.no-accordion) {
display: none;
}


.accordion-title {
cursor: pointer;
display: block;
}

.accordion-ready::before {
content: " ";
position: relative;
width: 0.75em;
height: 0.75em;
margin-right: 0.25em;
display: inline-block;
background: transparent none center center no-repeat;
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjMzMzMzMzIiBkPSJNNSAzbDMuMDU3LTMgMTEuOTQzIDEyLTExLjk0MyAxMi0zLjA1Ny0zIDktOXoiLz48L3N2Zz4=);
background-size: contain;
transition: transform 0.3s ease;
}

.accordion-open {
	color: inherit;
	text-decoration: none;
}
.accordion-open::before {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}


.accordion-content {
display: none;
padding-left: 1em;
}

.accordions {
padding-bottom: 0.5em;
}

.accordion-content:not(:last-child) {
padding-bottom: 0.5em;
}

.accordion-content > :first-child {
padding-top: 0;
margin-top: 0;
}
html.ready .fade-in,
html.ready .fade-in-left,
html.ready .fade-in-right {
	transition: opacity 0.5s ease, transform 0.6s ease !important;
	transition-delay: 0.45s;
}

.appear.fade-in {
	visibility: hidden;
	opacity: 0;
	transform: translateY(2em);
	transition: none !important;
}

.appear.fade-in-left {
	visibility: hidden;
	opacity: 0;
	transform: translateX(-50%);
	transition: none !important;
}

.appear.fade-in-right {
	visibility: hidden;
	opacity: 0;
	transform: translateX(50%);
	transition: none !important;
}

/* LIGHTBOX */

#lightbox {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1019;
background-color: RGB(0,0,0);
overflow: auto;
overflow-x: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}

#lightbox > div {
position: relative;
min-height: 100%;
width: 100%;

    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;

}

#lightbox > div > div {
width: calc(100% - 2em);
position: relative;
    max-width: 125svh;
}

#lightbox > div > div > .image {
background-size: contain;
}



#lightbox-close {
z-index: 1020;
position: absolute;
    right: -0.5em;
    top: -2.25em;
	width: 2em;
	height: 2em;
	background: url("../assets/images/close.svg") center center no-repeat;
	background-size: 0.9em auto;
	filter: invert(1) brightness(10);
display: none;
}



.slider-type-lightbox-slider .image-wrap,
.slider-type-lightbox-slider img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.slider-type-lightbox-slider .swiper-wrapper {
    overflow: hidden;
}
.slider-type-lightbox-slider {
	max-height: 80svh;
}

@media (max-height: 599px) {
	.slider-type-lightbox-slider {
		max-height: calc(100svh - 5em);
	}
}

.slider-type-lightbox-slider .content-image {
	pointer-events: none;
}



#slider-lightbox,
.lightbox-content,
.lightbox-sub-content {
display: none;
}
#lightbox #slider-lightbox,
#lightbox .lightbox-content,
#lightbox .lightbox-sub-content {
display: block;
}


#slider-lightbox {
	max-width: 80em;
	margin: 0 auto;
	background: #000;
}

.show-more ~ * {
	display: none;
}
/* PRELOAD */

.preload,
.preload-all {
opacity: 0;
transition: opacity 0.3s ease;
}
.preload-ready,
.preload-all-ready {
opacity: 1;
}


/* EFFECT: PROGRESS */

.progress {
border: 1px #333 solid;
width: 2em;
height: 2em;
border-radius: 50%;
position: absolute;
top: 49%;
left: 50%;
z-index: 1000;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
box-sizing: border-box;
animation-name: progresspulse;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
pointer-events: none;
transition: opacity 0.15s ease;
opacity: 0;
}

@keyframes progresspulse {
	0%   { border-width: 1px; }
	38%  { border-width: 10px; }
	100% { border-width: 1px; }
}

/* fadein when doc is ready */
.doc-ready .progress {
opacity: 1;
}

/* fadeout when loaded */
.preload-all-ready + .progress,
.preload-ready + .progress {
opacity: 0 !important;
animation-play-state: paused;
}


#primary-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100svh;
	height: 100dvh;
	z-index: 999;
	background-color: white;
	color: white;
	overflow: auto;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

#primary-menu > nav {
	min-height: 100vh;
	min-height: 100svh;
	min-height: 100dvh;
	box-sizing: border-box;
	
	background-color: black;
	
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	
	padding: 5em var(--content-offset) 2em var(--content-offset);
	
	
	
}


#primary-menu ul,
#primary-menu li {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: block;
}

#primary-menu a {
	text-decoration: none;
	display: inline-block;
	padding: 0.15em 0;
	font-size: 1.4em;
	font-weight: bold;
}


@media (min-width: 1000px) {
		
	#primary-menu .menu-item-has-children > a {
		padding-right: 1.1em;
		background: url("../assets/images/submenu.svg") right center no-repeat;
		background-size: 0.5em auto;
	}
	.menu-item-has-children {
		position: relative;
	}
	.sub-menu {
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.25s ease;
		position: absolute;
		left: calc(100% - 1px);
		padding-left: 1.7em !important;
		top: 0.38em;
		width: 60vw;
	}

	.sub-menu:hover,
	#primary-menu:not(.mouseover-submenu) .current_page_ancestor > .sub-menu,
	#primary-menu:not(.mouseover-submenu) .current_page_item >  .sub-menu,
	li:hover > .sub-menu {
		opacity: 1;
		pointer-events: all;
	}
	
	#primary-menu .sub-menu a {
        font-size: 0.8rem;
        line-height: 150%;
	}
}

@media (max-width: 999px) {
	.sub-menu {
        padding-left: 2em !important;
        padding-bottom: 0.5em !important;
        width: calc(100vw - 6rem);
	}
	#primary-menu .sub-menu a {
		font-size: 1.3rem;
		line-height: 150%;
	}
}




footer a:hover,
#primary-menu a:hover,
.current-lang,
#primary-menu .current_page_ancestor > a,
#primary-menu .current_page_item > a {
	color: var(--blau);
}





#menu-social {
	padding-top: 5vh;
	cursor: default;
	letter-spacing: 0.05em;
}
#menu-social a {
	font-size: 1rem !important;
	display: inline !important;
	padding: 0 !important;
}
#menu-social img {
	display: inline-block;
}

@media (max-width: 511px) {
	#menu-social {
		letter-spacing: 0.2em;
	}
	.footer-social-col a,
	#menu-social a {
		font-size: 1.5rem !important;
	}

	
	#menu-primary-menu {
		font-size: 1.2em;
	}
	
}