@import "fonts.css";
@import "formular.css";
* {
	box-sizing: border-box;
	border: 0px;
	padding: 0px;
}
html {
	height: 100%;
	font-size: 14px;
	line-height: 1.6;
}
body {
	margin: 0px;
	padding: 0px;
	height: 100%;
	font-family: 'Open sans', sans-serif;
}
h3 {
	font-size: 1.2rem;
}
.container {
	display: grid;
	max-width: 1400px;
	margin: 0px auto;
}
.header {
	display: block;
	position: fixed;
	width: 100%;
	flex: none;
	padding: 0.5em;
	padding-top: 0px;
	z-index: 100;
	background-image: url("../images/headerbg.png");
	background-size: auto 100%;
	background-position: top left;
	background-repeat: repeat-x;
}
.headercontainer {
	position: relative;
	width: 100%;
	height: 120px;
}
.menuetoggle {
	width: fit-content;
	position: absolute;
	cursor: pointer;
	top: 15px;
	right: 15px;
	display: none
}
.invisiblecontrols {
	display: none;
}
.hero {
	display: block;
	position: relative;
	width: 100%;
	height: clamp(100px, 36vw, 500px);
	margin: 1em 0px;
	background-image: url("../images/HeroSky.jpg");
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 2em;
}
.herocontainer {
	display: block;
	position: relative;
	height: 100%;
}
.herocontainer img {
	height: 100%;
	display: block;
	margin: 0px auto;
}
.mainlogo {
	position: absolute;
	left: 0px;
	bottom: 10px;
	width: 334px;
}
.mainlogo img {
	width: 100%;
	height: auto;
	border: 0px;
	margin: 0px;
}
.mainmenu {
	position: absolute;
	right: 0px;
	top: 0px;
	padding: 0px;
	margin-top: 0.5em;
}
.mainmenu li {
	display: inline-block;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
.mainmenu a:link,
.mainmenu a:visited {
	color: rgb(0, 0, 0);
	text-decoration: none;
	padding: 0.5em;
	font-weight: bold;
	margin: 0px;
	background-color: transparent;
	transition: all 0.2s ease-in-out;
}
.mainmenu a:hover {
	background-color: rgb(128, 175, 255);
	color: rgb(255, 255, 255);
}
.mainmenu a.current {
	background-color: rgb(128, 175, 255);
	color: rgb(255, 255, 255);
	cursor: default;
}
.page {
	height: 100%;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	padding-top: 120px;
}
.bgimage {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 100vh;
	z-index: -1;
	background-image: url("../images/bg.jpg");
	background-size: cover;
	background-position: center top;
}
.main {
	flex: 1;
	padding: 0.5em;
	flex-basis: auto;
	flex-shrink: 0;
}
.maincontainer {
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 2em;
}
.maincontainer img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0px;
	border: 0px;
}
.maincontainer h1 {
	margin: 0px;
}
.maincontainer p {
	hyphens: auto;
	font-size: 1.2rem;
}
.features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 2em;
}
.features li,
.inlineliste li {
	font-size: 1.2rem;
	line-height: 1.6;
	margin-left: 1.2em;
}
.angebotserstellung {
	width: 300px;
	border-radius: 10px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
	background-color: rgb(212, 239, 251);
	padding: 1em;
	margin: 5em auto 2em auto;
}
.angebotserstellung h3 {
	margin: 0px;
	width: 100%;
	text-align: center;
}
.angebotserstellung ul {
	padding-left: 4.5em;
	margin: 0.25em 0px;
}
.angebotserstellung p {
	font-size: 1rem;
	margin: 0px;
	width: 100%;
	text-align: center;
}
.kontakttabelle {
	display: grid;
	grid-template-columns: 150px 1fr;
	column-gap: 1em;
}
.kontakttabelle h4 {
	font-size: 1.2rem;
	grid-column: 1 / -1;
	margin: 0px;
}
.kontakttabelle p {
	margin: 0px;
}
.kontakttabelle a:link,
.kontakttabelle a:visited {
	text-decoration: none;
	color: rgb(33, 72, 122);
}
.kontakttabelle a:hover,
.kontakttabelle a:active {
	color: rgb(128, 175, 255);
}
.footer {
	flex: none;
	position: relative;
	padding: 10px;
	background-color: rgba(0, 0, 0, 0.75);
}
.footercontainer {
	width: 100%;
	position: relative;
	max-width: 1400px;
	height: 40px;
	display: block;
	margin: 0px auto;
}
.footercontainer a {
	position: absolute;
	right: 0px;
	display: block;
	height: 100%;
	width: auto;
}
.footercontainer a img {
	display: block;
	width: auto;
	height: 100%;
	margin: 0px;
}
@media only screen and (max-width: 900px) {
	.features {
		grid-template-columns: 1fr;
	}
}
@media only screen and (max-width: 750px) {
	.maincontainer {
		grid-template-columns: 1fr;
	}
	.headercontainer {
		height: 84px;
	}
	.mainlogo {
		width: 200px;
	}
	.menuetoggle {
		display: block;
	}
	.mainmenu {
		position: absolute;
		right: -1em;
		top: 45px;
		background-color: rgba(255, 255, 255, 0.85);
		z-index: 100;
		transform: translateX(110%);
		transition: all 0.2s ease-in-out;
	}
	.mainmenu li {
		display: block;
		padding: 0px;
	}
	.mainmenu li a {
		display: block;
		min-width: 150px;
		padding: 1rem 2.5rem;
	}
	#menueradio:checked ~ .mainmenu {
		transform: translateX(0);
	}
	.page {
		padding-top: 84px;
	}
}