@font-face {
    font-family: 'Herculanum';
    font-weight: normal;
    font-style: normal;
    src: url('/layout/fonts/Herculanum.eot');
    src: url('/layout/fonts/Herculanum.eot?#iefix') format('embedded-opentype'),
        url('/layout/fonts/Herculanum.woff2') format('woff2'),
        url('/layout/fonts/Herculanum.woff') format('woff'),
        url('/layout/fonts/Herculanum.ttf') format('truetype'),
        url('/layout/fonts/Herculanum.svg#Herculanum') format('svg');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: url('/layout/fonts/source-sans-pro-v13-latin-regular.eot');
  src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'),
       url('/layout/fonts/source-sans-pro-v13-latin-regular.eot?#iefix') format('embedded-opentype'),
       url('/layout/fonts/source-sans-pro-v13-latin-regular.woff2') format('woff2'),
       url('/layout/fonts/source-sans-pro-v13-latin-regular.woff') format('woff'),
       url('/layout/fonts/source-sans-pro-v13-latin-regular.ttf') format('truetype'),
       url('/layout/fonts/source-sans-pro-v13-latin-regular.svg#SourceSansPro') format('svg');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  src: url('/layout/fonts/source-sans-pro-v13-latin-700.eot');
  src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'),
       url('/layout/fonts/source-sans-pro-v13-latin-700.eot?#iefix') format('embedded-opentype'),
       url('/layout/fonts/source-sans-pro-v13-latin-700.woff2') format('woff2'),
       url('/layout/fonts/source-sans-pro-v13-latin-700.woff') format('woff'),
       url('/layout/fonts/source-sans-pro-v13-latin-700.ttf') format('truetype'),
       url('/layout/fonts/source-sans-pro-v13-latin-700.svg#SourceSansPro') format('svg');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: url('/layout/fonts/source-sans-pro-v13-latin-300.eot');
  src: local('Source Sans Pro Light'), local('SourceSansPro-Light'),
       url('/layout/fonts/source-sans-pro-v13-latin-300.eot?#iefix') format('embedded-opentype'),
       url('/layout/fonts/source-sans-pro-v13-latin-300.woff2') format('woff2'),
       url('/layout/fonts/source-sans-pro-v13-latin-300.woff') format('woff'),
       url('/layout/fonts/source-sans-pro-v13-latin-300.ttf') format('truetype'),
       url('/layout/fonts/source-sans-pro-v13-latin-300.svg#SourceSansPro') format('svg');
}

/* ################# LAYOUT ################# */

* {
  box-sizing: border-box;
}
body {
  background-color: rgba(var(--farbe),0.2);
  font-family: 'Source Sans Pro';
  padding: 0;
  margin: 0;
  color: #565655;
}

#limit {
	margin:auto;
	width:100%;
	max-width: 1280px;
	background-color: white;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
}
#inhalt {
/* 	padding-top: 2%; */
	padding-bottom: 2%;
/* 	padding: 2%; */
}
/* ################# Kopfzeile ################# */

#header {
	position: relative;
	text-align: center;
}
#logo {
	text-align: center;
	padding: 0px 0 20px 0px;
}
#logo img {
	width:90%;
	max-width: 800px;
	margin-top: 20px;
}

/* ################# Fusszeile ################# */

#footer {
	margin-top: 20px;
/* 	background-color: rgba(var(--farbe),0.2); */
	padding: 20px;
	display: flex;
	justify-content: space-between;
}
#footer .text {
	display: inline-block;
}
.spalte1 {
	width:50%;
	padding-right: 1%;
	text-align: right;
}
.spalte2 {
	width:50%;
	padding-left: 1%;
}
#footer a {
	color: #565655;
}
	
/* ################# Headlines ################# */

.headline {
	padding: 0 2%;
}
h1 {
	font-size: 32px;
	font-weight: 300;
	margin-bottom: 30px;
	color: rgb(var(--farbe));
	margin-top: 4%;
}
h2 {
	font-size: 28px;
	font-weight: 300;
/* 	text-transform: uppercase; */
	margin-bottom: 30px;
}
h3 {
	font-family: 'Herculanum';
	display: inline-block;
	padding: 5px 4%;
	background-color: rgba(var(--farbe),0.2);
	color: rgb(var(--farbe));
}

/* ################# Text ################# */

.text {
	
	clear: both;
	width:100%;
		line-height: 150%;
		letter-spacing: 0.75px;
	display: flex;
}
.silbentrennung {	
	-webkit-hyphens: auto;
    -webkit-hyphenate-limit-before: 3;
    -webkit-hyphenate-limit-after: 3;
    -webkit-hyphenate-limit-chars: 8 4 4;
    -webkit-hyphenate-limit-lines: 2;
    -webkit-hyphenate-limit-last: always;   
    -webkit-hyphenate-limit-zone: 8%;

    -moz-hyphens: auto;
    -moz-hyphenate-limit-chars: 8 4 4;
    -moz-hyphenate-limit-lines: 2;  
    -moz-hyphenate-limit-last: always;
    -moz-hyphenate-limit-zone: 8%;

    -ms-hyphens: auto;
    -ms-hyphenate-limit-chars: 8 4 4;
    -ms-hyphenate-limit-lines: 2;
    -ms-hyphenate-limit-last: always;   
    -ms-hyphenate-limit-zone: 8%;

    hyphens: auto;
    hyphenate-limit-chars: 8 4 4;
    hyphenate-limit-lines: 2;
    hyphenate-limit-last: always;   
    hyphenate-limit-zone: 8%;
}
.spalte_links {
	padding: 0 1% 0 2%;
	width:50%;
	background-position: center top;
	background-repeat: no-repeat;
}
.cover {
	background-size: cover;
}
.contain {
	background-size: contain;
}
.zweihundert {
	min-height: 200px;
}
.dreihundert {
	min-height: 300px;
}
.vierhundert {
	min-height: 400px;
}

a.anklickbar {
	display: block;
	width: 100%;
	height: 100%;
}
.spalte_rechts {
	padding: 0 2% 0 1%;
	width:50%;
	background-position: center top;
	background-repeat: no-repeat;
}

.text.normal {
	column-width: 48%;
	column-count: 2;
	column-gap: 2%;
	padding: 0 2%;
}
.text p:first-child {
	margin-top: 0;
}
.text a {
	color: rgb(var(--farbe));
	text-decoration: none;
}

.text a:hover {
	color: rgb(var(--farbe));
	text-decoration: underline;
	text-decoration-skip: ink;
}

.text ul, -text ol {
    margin: 0.75em 0;
    padding: 0 1em;
    list-style: none;
}
.text li:before { 
    content: "";
    border-color: transparent rgb(var(--farbe));
    border-style: solid;
    border-width: 0.35em 0 0.35em 0.45em;
    display: block;
    height: 0;
    width: 0;
    left: -1em;
    top: 1.1em;
    position: relative;
}

/* ################# Pfad als Titel ################# */

.breadcrumb ul {
	display: flex;
	list-style: none;
	margin-bottom: 30px;
	margin-top: 4%;
	padding-left: 2%;
}

.breadcrumb ul li.level_1.hidden {
	display:none;
}

.breadcrumb ul li h1,
.breadcrumb ul li h2 {
	font-size: 32px;
	font-weight: 300;
	margin: 0px;
	color: #565655;	
}
.breadcrumb ul li h2 span {
	padding: 0px	 10px;	
}
.breadcrumb ul li h2 a {
	text-decoration: none;
	color: rgb(var(--farbe));
}
.breadcrumb ul li h2 a:hover {
	color: rgb(var(--farbe));
	text-decoration: underline;
}

/* ################# PHP HTML ################# */

.phphtml {
	padding: 0 2%;
}

/* ################# fotogalerie  ################# */

div.fotogalerie {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	line-height: 0;
	padding: 0 2%;
}
.fotoabstand {
	margin: 2% 0;
}
a.fotogalerie.raster {
	width:25%;
}
a.fotogalerie.zweierraster {
	width:50%;
}
a.fotogalerie.fotoabstand {
	width:100%;
	display: block;
}
a.fotogalerie.fotoabstand.foto {
	width:100%;
	display: block;
	padding: 0 2%;
}
a.fotogalerie:hover img {
	opacity: 0.5;
	cursor: crosshair;
	cursor: move;
	cursor: zoom-in;
}
a.fotogalerie img {
	max-width:100%;
	height: auto;
	transition: all linear 0.3s;
}
a.fotogalerie.raster img,
a.fotogalerie.zweierraster img {
	border: 2px solid transparent;
}



/* ################# KACHELN ################# */

.kachel {
	position: relative;
	width:22.5%;
	height: auto;
	display: inline-block;
	margin: 0 0 1% 2%;
}
.kachel img {
	width:100%;
	height:auto;
}

.kachel_foto {
	display: block;
}

.kachel a.kachel_text {
	position: absolute;
	top:auto;
	left:0;
	right:0;
	bottom:0px;
	height:auto;
	padding: 10px;
/* 	background-color: rgba(255, 255, 255, 0.8); */
	background-color: rgba(var(--farbe),0.8);
	text-decoration: none;
	font-family: 'Herculanum';
	font-size: 18px;
/*
	color: var(--dunkel);
	color: #565655;
*/
	color:white;
	transition-property: padding;
	transition-duration: 0.5s;
}
.kachel:hover a.kachel_text {
	padding-bottom: 20px;
}
.kachel a.kachel_text span.titel {
	font-weight: 700;
}
.kachel a.kachel_text.farbe {
	background-color: rgba(255, 255, 255, 0.0);
}
.kachel a.kachel_text.farbe span.titel {
	font-size: 18px;
	font-weight: 400;
}

/* ################# FANCYBOX  ################# */

.fancybox-thumbs {
	background-color: rgba(var(--farbe),0.95);
	background-color: rgba(30,30,30,.6);
}
.fancybox-button--share,
.fancybox-button--play {
	display: none;
}
.fancybox-caption-wrap {
	text-align: center;
}

.fancybox-is-open .fancybox-bg {
/* 	opacity: 0.95; */
	background-color: #006d8f;
	background-color: rgba(var(--farbe),0.95);
}

/* ################# Mehr INFOS zum Aufklappen ################# */

.aufklappbox {
	padding: 0 2%;
}
span.mehr {
	color: #006d8f;
	cursor: pointer;
}
div.mehr.balken {
	color: rgb(var(--farbe));
	cursor: pointer;
/* 	border-top:1px solid black; */
	display: block;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 1% 2% 1% 2%;
	background-color: rgba(var(--farbe),0.2);
}
div.mehr.balken::after {
	border-style: solid;
	border-width:  0 0 3px 3px;
	content: '';
	display: inline-block;
	height: 8px;
	left: 0.15em;
	position: relative;
	top: 4px;
	transform: rotate(-45deg);
	vertical-align: top;
	width: 8px;
	float: right;
	margin-right: 0;
}
div.mehr.balken.open::after {
	top: 8px;
	transform: rotate(135deg);

}
div.mehr.mehrinfo.text  {
	background-color: rgba(var(--farbe),0.1);
	padding: 2%;
}
div.mehr.mehrinfo.text p:first-of-type {
	margin-top: 0;
}
.mehr.mehrinfo.text.hidden {
	display: none;
}
.mehr.mehrinfo.text {
	display: block;
	padding: 0 2%;
}
.mehr.mehrinfo.text .fotogalerie {
	padding: 0;
}

/* ################# Trennlinie ################# */

.trennlinie {
	display: block;
	margin: 30px 0 20px 0;
	height: 1px;
	line-height: 1px;
	background-color: #006d8f;
}
.trennlinie-nach-mehr {
	display: block;
	margin: 0px 0 20px 0;
	height: 1px;
	line-height: 1px;
	background-color: black;
}

/* ################# SLICK SLIDER  ################# */

.slick-prev {
	left:2%;
	z-index: 99999;
}
.slick-next {
	right:2%;
	z-index: 99999;
}
