/***** VARIABLES *****/
:root {
	--green: #3b8616;
	--darkgreen: #29650d;
	--yellow: #ffed00;
	--grey: #34393b;
	--white: #fff;
}

html, body {
	display: block;
	width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
	font-family: Verdana, Arial, Helvetica, Geneva, sans-serif;font-style:normal;
	padding: 0;
	margin: 0;
	font-size: 18px;
	line-height: 1.5em;
	background-color: var(--green);
	color: var(--white);

}

h1, h2, h3, h4 {
	color: var(--white);
	line-height: 1.5em;
	margin: 0 0 20px 0;
}

h4 {
	color: var(--yellow);
}

h1 {
	font-size: 2em;
}

p {
	margin: 0 0 1em 0
}

a {
	color: #fff;
	outline: none;
	text-decoration: none;
}

a:focus {
	outline-style: solid;
	outline-width: 3px;
	outline-color: var(--yellow);
}

a:hover {
	color: var(--yellow);
	text-decoration: underline;
}

.button {
	display: inline-block;
	background: var(--green);
	color: #FFF;
	font-size: 18px;
	font-weight: 700;
	border: 0px;
	border-radius: 4px;
	padding: 18px 0;
	text-align: center;
	opacity: 1;
	-moz-transform: scale(1.0);
	-webkit-transform: scale(1.0);
	transform: scale(1.0);
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.button:hover {
	color: #FFF;
	-moz-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	opacity: 0.9;
}

.centered {
	text-align: center;
}

.align-right {
	text-align: right;
}

.align-left {
	text-align: left;
}

.align-center {
	text-align: center;
}

.font-size-175 {
	font-size: 175%;
	line-height: 1.5;
}

.font-size-200 {
	font-size: 200%;
	line-height: 1.5;
}

.page-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: absolute;
	height: 100%;
	width: 100%;
}

@media screen and (max-width: 991px) {
	.align-right, .align-left {
		text-align: center;
	}
}

.boxed {
	width: 100%;
	max-width: 1200px;
	left: 0;
	right: 0;
	margin: auto;
	padding-left: 40px;
	padding-right: 40px;
	box-sizing: border-box;
}

@media screen and (max-width: 767px) {
	.boxed {
		padding-left: 20px;
		padding-right: 20px;
	}
}


.row {
	position: relative;
	margin-right: -20px;
	margin-left: -20px;
	padding: 15px 0;
}

.row:after {
	content: '';
	display: table;
	clear: both;
}

main article {
	margin: 30px 0;
}

article {
	border-bottom: 1px solid var(--yellow);
}

article:last-child {
	border-bottom: none;
}

.col {
	position: relative;
	float: left;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}

.col25 {
	width: 25%;
}

.col50 {
	width: 50%;
}

.col50.centered {
	left: 25%;
}

.col100 {
	width: 100%;
	float: none;
}

@media screen and (max-width: 1199px) {
	.col25 {
		width: 50%;
	}

	.col50.centered {
		left: 0%;
	}
}

@media screen and (max-width: 991px) {
	.col25 {
		width: 100%;
		float: none;
	}

	.col50 {
		width: 100%;
		float: none;
	}

	.col50:first-child {
		margin-bottom: 2em;
	}

}

.header {
	background: white;
}

.content {
	padding: 0 0 50px 0;
}

.logo {
	position: relative;
	padding: 2em 0 2em 0;
	margin: 0 0 2em 0;
	text-align: center;
}

.logo a {
	display: inline-block;
	width: 70%;
	max-width: 300px;
}

object img {
}

.logo object {
	display: block;
	max-width: 300px;
	height: auto;
	pointer-events: none;
	margin: 0 auto;
}

.logo img {
	display: block;
	width: 100%;
	height: auto;
	pointer-events: none;
}

.adresse {
	left: 50%;
	transform: translateX(-50%);
}

.adresse .icon {
	display: inline-block;
	min-width: 20px;
	float: left;
	margin: 6px 10px 0 0;
	text-align: center;
	color: #fff;
	font-size: 0.9em;
}

.adresse span {
	display: inline-block;
}

.kontaktformular {
	margin-top: 2em;
}

.kontaktformular label {
	font-size: 14px;
}

.form-control {
	box-sizing: border-box;
	width: 100%;
	padding: 0px 15px;
	border-style: solid;
	border-width: 1px;
	border-color: #999;
	border-radius: 4px;
	outline: 0px;
}

.form-control:focus {
	border-color: var(--green);
}

.form-control:not(textarea) {
	height: 50px;
}

textarea.form-control {
	padding: 15px;
	resize: vertical;
}

.checkbox-label a {
	font-weight: 700;
}

.footer {
	padding: 0;
	background: var(--yellow);
	color: var(--darkgreen);
	font-size: 14px;
}

.footer .row {
	padding: 10px 0;
}

.footer a {
	color: var(--darkgreen)
}

.footer a:hover {
	color: #000;
	text-decoration: underline;
}

.footer a:focus {
	outline-color: var(--green);
}

.warnhinweis {
	font-size: 16px;
}

.error,
.success {
	border-radius: 4px;
	font-size: 14px;
	padding: 10px 20px;
}

.error {
	background: #f7ebeb;
	border: 1px solid #d5b5b5;
	color: #5d0e13;
	margin: 0 0 30px;
}

.error li {
	list-style: inside;
}

.success {
	background: #eef6ec;
	border: 1px solid #d6ecd2;
	color: #519839;
	margin: 30px 0 0;
}

.success p {
	margin: 0;
}

.button {
	cursor: pointer;
	width: 100%;
}

.button#send-message {
	float: right;
	padding: 18px 40px;
	width: auto;
}

img.responsive.full-width {
	width: 100%;
}