@charset "utf-8";
/* copyright 2023 webQ GmbH */

/* titillium-web-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/titillium-web-v15-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* reset */
* {
	margin:0px;
	padding:0px;
	outline:none;
	border:0;
	box-sizing: border-box;
}
body {
	font-family: "Titillium Web", Arial, sans-serif;
	font-size: 20px;
	line-height: 150%;
	color: #333;
	background-color: #fff;
}
html {
	scroll-padding-top: 15vh; /* height of sticky header */
}
html, body {
	scroll-behavior: smooth;
	width: 100%;
}
img {
	max-width:100%;
	height:auto;	
}
h1, h2, h3 {
	line-height: 1.2em;
	margin-bottom:1em;
}
h1 {
	font-size: 4em;
	margin: 0 0 0.5em 0;
	color:#FFF;
	font-style: italic;
}
h2, h3 {
	font-size: 2em;
	font-weight:100;
}
a {
	color: #333;
	text-decoration: none;
}
p {
	font-size: 1em;
}
#top {
	height:0vh;
}
header {
	position:relative;
	height:90vh;
	background-image:url(../images/header_bgr.jpg);
	background-repeat:no-repeat;
	background-size:cover;
}
.headline {
	width: 90vw;
	max-width: 1440px;
	margin:0 auto;
	padding-top: 20vh;
}
.termin {
	position:absolute;
	bottom:0;
	right: 10vw;
	background-color: #eee;
	padding:2em;
}
main { 
	/*display: flex;
	flex-wrap: wrap;
*/
}
section {
	position: relative;
	border:0px solid red;
	padding: 3em;
}
.content {
	max-width: 1120px;
	margin:0 auto;
	text-align:center;
}


#bilder, #gudrun {
	background-color: #EEEAEA;
}
.imgwrap, .footerwrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom:2em;
}
.footerwrap {
	margin:0;
	padding:1em;
}
figure { 
	border:0px solid red;
	width:32.00%;
	margin:0.5%;
}
figcaption {
	margin-bottom:1em;
}
#leistungen figure img { 
	height: 4em;
}
.col_4_4 {
	width:24%;
	text-align:left;
	color:#FFF;
	margin-right:1%;
}

.col_4_4 a {
	color:#FFF;
	text-decoration:none;
}
footer {
	background-color: #564C49;
}

.button {
	width:100%;
	text-align: center;
	background-color: #564C49;
	border:1px solid #fff;
	border-radius:0px;
	padding:0.5em 1em;
}
.button a {
	color:#fff;
	text-decoration:none;
}

@media screen and (orientation:portrait) {
	header {
		height: 77vh;
		background-size: 210%;
		background-position:center top;
	}
	h1 {
		  font-size: 3em;
	}
	.headline {
		padding-top: 5vh;
	}
	.termin {
		position: relative;
		background-color: #eee;
		padding: 1em;
		width:80vw;
		right: 10vw;
		left: 10vw;
	}
}
@media only screen and (max-width: 1024px) {
	body {
		font-size: 16px;
	}
}
@media only screen and (max-width: 768px) {
	figure { 
		width:49%;
	}
	.col_4_4 { 
		width:49%;
		margin-bottom:1em;
	}
}
@media only screen and (max-width: 480px) {
	figure { 
		width:75.00%;
	}
}


.backToTop {
	opacity: 0;
	border: 1px solid #564C49;
	background-color: #564C49;
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.2s ease-out;
}

#overlay {
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: 10em;
	left: 0;
	height: 0;
	width: 0;
	background-color: rgba(255, 255, 255, 1.0);
	padding: 0rem;
	z-index: 1000;
	-webkit-overflow-scrolling: touch;
	overflow: hidden;
	scroll-behavior: smooth;
}
.overlay_media {
	height: 100%;
	width: 100%;
	position: relative;
	text-align: center;
}
#overlay.open {
	top: 0em;
	height: 100%;
	width: 100%;
	opacity: 1;
	pointer-events: all;
	transition: all 0.5s ease;
}
#overlay .close {
	position: fixed;
	top: 2rem;
	right: 2rem;
	display: block;
	height: 50px;
	width: 50px;
	background: url(/images/close.svg) no-repeat center center;
	background-size: 100%;
	text-indent: 1000em;
	z-index: 100000;
}