body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul,.content-gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li,.content-gallery>ul li{float:left}.ce_gallery>ul li.col_first,.content-gallery>ul li.col_first{clear:left}.float_left,.media--left>figure{float:left}.float_right,.media--right>figure{float:right}.block{overflow:hidden}.media{display:flow-root}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
@media (max-width:767px){#wrapper{margin:0;width:auto}#container{padding-left:0;padding-right:0}#main,#left,#right{float:none;width:auto}#left{right:0;margin-left:0}#right{margin-right:0}}img{max-width:100%;height:auto}.audio_container audio{max-width:100%}.video_container video{max-width:100%;height:auto}.aspect,.responsive{position:relative;height:0}.aspect iframe,.responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%}.aspect--16\:9,.responsive.ratio-169{padding-bottom:56.25%}.aspect--16\:10,.responsive.ratio-1610{padding-bottom:62.5%}.aspect--21\:9,.responsive.ratio-219{padding-bottom:42.8571%}.aspect--4\:3,.responsive.ratio-43{padding-bottom:75%}.aspect--3\:2,.responsive.ratio-32{padding-bottom:66.6666%}
	/* -------------------------------------- */
	/* Fonts */
	/* -------------------------------------- */
	
/* eb-garamond-regular - latin */
	@font-face {
	  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	  font-family: 'EB Garamond';
	  font-style: normal;
	  font-weight: 400;
	  src: url('../../files/theme/fonts/eb-garamond-v31-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	}
	/* eb-garamond-italic - latin */
	@font-face {
	  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	  font-family: 'EB Garamond';
	  font-style: italic;
	  font-weight: 400;
	  src: url('../../files/theme/fonts/eb-garamond-v31-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	}
		
	/* roboto-regular - latin */
	@font-face {
	  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	  font-family: 'Roboto';
	  font-style: normal;
	  font-weight: 400;
	  src: url('../../files/theme/fonts/roboto-v48-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	}
	/* roboto-italic - latin */
	@font-face {
	  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	  font-family: 'Roboto';
	  font-style: italic;
	  font-weight: 400;
	  src: url('../../files/theme/fonts/roboto-v48-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	}
	/* roboto-600 - latin */
	@font-face {
	  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	  font-family: 'Roboto';
	  font-style: normal;
	  font-weight: 600;
	  src: url('../../files/theme/fonts/roboto-v48-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
	}

	/* -------------------------------------- */
	/** Color Variables **/
	/* -------------------------------------- */
	:root {
		--bg-color: #fcfdff;
		/*light general background color */
		--medium-color: #fcfdff; 
		/*medium color, darker background */
		--bgdark-color: #015C3B;
		/*darker background color */
		--dark-color: #A41201;
		/*dark color for headlines etc*/
		--outline-color: #76ac73;
		/*spot color a little darker*/
		--text-color: #000;
		/* text color */
	}

	/* -------------------------------------- */
	/* General CSS-Styles */
	/* -------------------------------------- */
	
	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

	body {
		font-family: 'Roboto', Helvetica, sans-serif;
		font-size: 18px;
		line-height: 1.5;
		color: var(--text-color);
		background-color: var(--bg-color);
	}
	
	header {
		position: relative;
		width: 100%;
		margin-bottom: 2em;
		/* height: 4em; */
		background-color: var(--bgdark-color);
		color: var(--bg-color);
		padding: 0;
		border-bottom: 1px solid var(--outline-color);
		box-shadow: 0 5px 5px rgb(0 0 0 / 20%);
		z-index: 1000;
	}
	
	header .inside {
		max-width: 1200px;
		margin: 0 auto;
		padding: 1em 1em 0.7em 1em;
	}
	
	header .head {
		display: flex;
		justify-content: space-between;
	}
	
	header a.name {
		display: inline-block; /* to set line-height lower than 1 */
		font-family: 'EB Garamond', Garamond, Georgia, serif;
		line-height: .9;
		font-size: 3rem;
		font-weight: 400;
		text-transform: uppercase; 
		letter-spacing: 1px;
		color: var(--bg-color);
		text-decoration: none; 
		border: none;
	}
	
	header h3.quote {
		padding-top: 0.7em;
		font-family: 'EB Garamond', Garamond, Georgia, serif;
		font-size: 1.8rem;
		font-style: italic;
		font-weight: normal;
	}
	
	header .logo img {
		margin-top: .6rem;
		height: 4em;
		width: auto
	}
	
	#container {
		border-bottom: 1 px solid var(--outline-color);
		box-shadow: 0 5px 5px rgb(0 0 0 / 20%);
		z-index: 500;
	}
	
	#main .inside {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0.5em 1em;
	}
	
	.mod_changelanguage {
		font-size: 0.9rem;
		margin-bottom: 2em;
	}
	
	.mod_changelanguage ul li {
		display: inline;
		padding-right: 0.5em;
	}
	
	#main .columns {
			display: flex;
			justify-content: center;
			text-align: left;
			margin-left: -1.5em;
			margin-right: -1.5em;
		}
		
	#main .column {
			width: 50%;
			margin: 0 1.5em;
	}
	
	#main .column.left {
		margin-top: 3em;
	}
	
	#main .column p {
		hyphens: auto;
	}
	
	#main .columns p strong::before {
	  content: '';
	  display: inline-block;
	  height: 1rem;
	  width: 1rem;
	  background-image: url('../../files/theme/img/check_round.svg');
	  background-size: contain;
	  background-repeat: no-repeat;
	  margin: 0 0.5em 0 0;
	}
	
	#main .names {
		display: flex;
		justify-content: space-between;
		margin: 0 auto;
		max-width: 900px;
		margin-top: .5em;
		margin-bottom: 2em;
	}
	
	#main .names .content-hyperlink {
		text-align: center;
	}
	
	#main .names a {
		font-family: 'EB Garamond', Garamond, Georgia, serif;
		font-size: 1.3rem;
	}
		
	#main figure {
		text-align: center;
	}
	
	#main .content {
		padding-bottom: 1em;
	}
	
	#contact {
		padding: 2em 1em 2em 1em;
		text-align: center;
	}

	footer {
		position: relative;
		font-family: 'EB Garamond', Garamond, Georgia, serif;
		background-color: var(--bgdark-color);
		color: var(--bg-color);
		text-align: center;
		z-index: 1;
	}
		
	footer .inside {
			max-width: 1200px;
			margin: 0 auto;
			padding: 1em 1em;
		}
	
	footer .copyright {
		letter-spacing: 1px;
		text-transform: uppercase;
		font-size: .95rem;
	}
	
	footer ul {
		display: flex;
		justify-content: center;
		/* font-size: 1rem; */
		list-style: none;
	}
	
	footer ul a {
		font-family: 'EB Garamond', Garamond, Georgia, serif;
	}

	h1,
	h2 {
		color: var(--text-color);
		font-family: 'EB Garamond', Garamond, Georgia, serif;
		text-transform: uppercase; 
		font-weight: 400;
		line-height: 1.1;
		text-align: center;
	}

	h1 {
		font-size: 3rem;
		margin-bottom: 1.5rem;
	}

	h2 {
		font-size: 2.5rem;
		margin-bottom: 2rem;
	}
	
	a {
		color: var(--text-color);
		border-bottom: 1px dotted var(--outline-color);
		text-decoration: none; 
	}
	
	a:hover {
		border-bottom: 1px dotted var(--bgdark-color);
	}
	
	
	footer a {
		font-family: 'Roboto', Helvetica, sans-serif;
		text-transform: none;
		letter-spacing: 0;
		color: var(--bg-color);
		margin: 0 1em;
	}
	
	footer a:hover {
		border-bottom: 1px dotted var(--text-color);
	}

	p {
		margin-bottom: 0.6em;
	}


	/* Barrierefreiheit: Focus-Styles */
	a:focus,
	button:focus {
		outline: 2px solid #007bff;
		outline-offset: 2px;
	}

	/* Skip-Link für Screenreader */
	/* .skip-link {
		position: absolute;
		top: -50px;
		left: 6px;
		background: #000;
		color: #fff;
		padding: 8px;
		text-decoration: none;
		z-index: 1000;
	}

	.skip-link:focus {
		top: 6px;
	} */

	/* -------------------------------------- */
	/* MEDIA QUERIES */
	/* -------------------------------------- */


@media screen and (max-width: 900px) {
		
		h1 {
			font-size: 2.5rem;
			margin-bottom: 1.5rem;
		}
		
		header {
			margin-bottom: 1em;
		}
		
		header a.name {
			line-height: .9;
			font-size: 2.5rem;
		}
		
		header h3.quote {
			font-size: 1.2rem;
			padding-top: 0.6em;
		}
		
		header .logo img {
			margin-top: .5rem;
			height: 3.4em;
			width: auto
		}

	}
	
@media screen and (max-width: 768px) {

		body {
			font-size: .95rem;
		}
		
		header {
			margin-bottom: 0;
		}
		
		header a.name {
			font-size: 2rem;
		}
		
		header h3.quote {
			font-size: 1.1rem;
			padding-top: 0.6em;
		}
		
		header .logo img {
			margin-top: .3rem;
			height: 3.2em;
			width: auto
		}
		
		footer ul {
			font-size: .95rem;
		}
	
		#main .inside {
			padding: 2em 1em 1em 1em;
		}

		#main .columns {
			flex-wrap: wrap;
			padding-left: 1.5em;
			padding-right: 1.5em;
			/* margin-left: 0;
			margin-right: 0; */
		}

		#main .column {
			width: 100%;
			padding: 0;
			margin: 0;
		}
		
		#main .column.left {
			margin-top: 1em;
		}
		
		h1 {
			font-size: 2.2rem;
			margin-bottom: 1.5rem;
		}
	}
	
	@media screen and (max-width: 600px) {
		
		header a.name {
			font-size: 1.4rem;
		}
		
		header h3.quote {
			font-size: 1rem;
			padding-top: 0.6em;
		}
		
		header .logo img {
			height: 2.2em;
			width: auto
		}
		
		h1 {
			font-size: 2rem;
			margin-bottom: 1.5rem;
		}
		
		#main .names a {
			font-size: 1.1rem;
		}
	}
	
	@media screen and (max-width: 500px) {
		
		header .inside {
			padding: 0.5em 1em 0.3em 1em;
		}
		
		header h3.quote {
			line-height: 1.2;
			text-align: center;
			padding-top: 0;
			max-width: 200px;
		}
		
		h1, h2 {
		line-height: 1;
		
		}
		
		h1 {
			font-size: 2.3rem;
			margin-bottom: 1.5rem;
		}
		
		h2 {
			font-size: 1.8rem;
		}
		
		.circle figure img {
			height: 140px;
		}
		
		.ampersand p {
			padding-top: 3rem;
			font-size: 3rem;
			font-family: 'EB Garamond', Garamond, Georgia, serif;
		}
}
		
	@media screen and (max-width: 400px) {
		
		body {
			font-size: .9rem;
		}
		
		header h3.quote {
			display: none;
		}
		
		footer ul {
			font-size: .9rem;
		}
		
		h1 {
			font-size: 2.1rem;
			margin-bottom: 1.5rem;
		}
		
		h2 {
			font-size: 1.7rem;
		}
		
		.circle figure img {
			height: 130px;
		}
		
		footer p {
			font-size: .9rem;
		}

	}

