@charset "utf-8";
/* copyright 2024 webQ GmbH */
* {
	margin:0px;
	padding:0px;
	border:0;
	box-sizing: border-box;
}
html {
	scroll-padding-top: 5em; /* height of sticky header */
	scroll-behavior: smooth;
}
html, body {
	width: 100%;
	touch-action: pan-x pan-y;
	-ms-touch-action: pan-x pan-y; /* Für Internet Explorer */
  	-webkit-touch-action: pan-x pan-y; /* Für WebKit-basierte Browser wie Chrome und Safari */
  	-moz-touch-action: pan-x pan-y; /* Für Mozilla Firefox */
  	-o-touch-action: pan-x pan-y;
	/*overflow:auto;*/
	outline: none;
}
body {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 16px;
	line-height: 150%;
	color: #000;
	background-color: #D7EDBE;
}
img {
	/*width: 100%;*/
	max-width:100%;
	height:auto;	
}
.icon {
	vertical-align:bottom;
	margin-right: 8px;
}
p, input, textarea {
	font-size: 1em;
}
.lineheight {
	margin-top:2em;
	line-height:200%;
	
}
h1, h2, h3 {
	font-size: 24px;
	margin: 1em 0 0.5em 0;
	line-height: 1.2em;
	color: #79b41e;
}
h3 {
	font-size: 18px;
}
p, input, textarea, ul, span {
	font-family: "Open Sans", Arial, sans-serif;
	text-align: left;
	line-height: 150%;
	color: #5d6363;
}
@media only screen and (max-width: 460px){
	h1, h2, h3 {
		font-size: 1.7em;
	}
}
a {
	text-decoration: none;
}
main {
	/*margin-top: 4em;*/
	min-height: 75vh;
}
ul {
	list-style-position: outside;
	margin-left: 1rem;
}
td{
	border-bottom: 0px solid #fff;
	padding: 0 1.5rem 0 0;
}
.invisible{
	display: none;
}
/* ---------------------------------- Layout Grid ---------------------------------- */
.container{
	/*max-width: 1080px;*/
	max-width: 1260px; /*rz 17.07.2024  */
	margin: 0em auto;
  	padding: 1em;
}
.flexbox{
	display: flex;
}
.arrowFlexbox{
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	margin-top: 1em;
}
.arrowFlexbox p{
	padding-top: 0.25em;
	margin-right: 1em;
	font-weight: 700;
  	font-size: 1.25em;
}
.row{
	flex-direction: row;
}
.col-70{
	width: 70%;
}
.col-50{
	width: 50%;
}
.col-30{
	width: 30%;
}
.col-15{
	width: 15%;
}
@media only screen and (max-width: 810px){
	.col-70, .col-30{
		width: 50%;
	}
	#forum .col-70, #forum .col-30{
		width: 100%;
	}
	.col-15{
		width: 25%;
	}
	#forum.row{
		flex-direction: column;
	}
}
@media only screen and (max-width: 460px){
	.row{
		flex-direction: column;
	}
	.col-70, .col-50, .col-30, .col-15{
		width: 100%;
	}
}
.distanceBottom{
	margin-bottom: 2em;
}
/* ---------------------------------- Colors ---------------------------------- */
.greenBg{
	background-color: #79b41e;
	color: #fff;
}
.whiteText{
	color: #fff;
}
.greenText{
	color: #79b41e;
}
td.greenText{
	font-weight: 700;
}
/* ---------------------------------- Buttons ---------------------------------- */
.btn, p.btn, button.btn {
	border-radius: 8px;
	font-size: 1em;
	text-align: center;
	width: 250px;
	height: 35px;
	padding: 0.25em;
	border: 2px solid #79b41e;
	cursor: pointer;
	margin-right: 2em;
}
.btn-dark, .btn-light:hover{
	color: #fff;
	background-color: #79b41e;
	border: 2px solid #fff;
}
.btn-dark:hover, .btn-light{
	color:  #79b41e;
	background-color: #fff;
	border: 2px solid #79b41e;
}
.goToBtn{
	background: transparent url("/layout/arrow-right.svg") no-repeat center left;
	background-size: contain;
	width: 40px;
	height: 30px;
	cursor: pointer;
	margin-left: 1.5em;
}
/* ---------------------------------- to top button ---------------------------------- */
.totop {
	margin-top: 3em;
}
.scrollToTop {
	position: fixed;
	z-index: 100;
	bottom: 0.5rem;
	right: 1rem;
	width: 3rem;
	height: 3rem;
	padding: 1em;
	border-radius: 50%;
	border: 1px solid #fff;
	transition: all 0.5s ease 0s;
	font-size: 0;
	text-align: center;
	text-decoration: none;
	background: #79b41e url(/layout/top-icon.svg) no-repeat center center;
	background-size: 28px 26px;
	opacity: 0;
	cursor: pointer;
}
/* ---------------------------------- Header ---------------------------------- */
header {
	position: absolute;
	top: 0;
	width: 100%;
	height: 200px;
	z-index: 150;
	-webkit-transition: .5s ease-in-out;
 	 -moz-transition: .5s ease-in-out;
  	-o-transition: .5s ease-in-out;
  	transition: .5s ease-in-out;
	/*background-color: #79b41e;*/
	background: linear-gradient(180deg, rgba(0,157,224, 0.8) 0% , rgba(255,255,255, 0) 65%);
    color: #fff;
}
header>div.container{
	position: relative;
}
.logo {
	width: 300px;
	height: 5em;
	background: transparent url("/layout/avr-energie-ohne-claim_gruen.svg") no-repeat left center;
	background-size: contain;
	cursor: pointer;
}

/* ---------------------------------- Main ---------------------------------- */
input#goToMap {
	color: transparent;
	font-size: 0;
	line-height: 0;
}
/* ---------------------------------- Footer ---------------------------------- */
footer {
	position: relative;
	z-index: 90;
	width: 100%;
	padding: 1em 0;
	background-color: #79b41e;
}
footer, footer p, footer a, footer li.active {
	color: #fff;
}
footer li.active{
	font-weight: 700;
	font-size: 1.25em;
}
.footerBottom, .footerLogos, .footerLinks{
	flex-direction: row;
	width: 100%;
}
.footerBottom {
	padding: 0;
}
.footerLogos{
	justify-content: flex-start;
}
.footerLogos a {
	margin-right: 1em;
}
.footerLogos a img {
	width: 170px;
}
.footerLinks{
	justify-content: flex-end;
}
.footerLinks a {
	padding: 0 0.25em;
}
@media only screen and (max-width: 810px){
	.footerBottom/*, .footerNavi*/{
		flex-direction: column;
	}
	.footerLogos, .footerLinks {
		justify-content: center;
	}
	.footerLogos {
		margin-top: 1.5em;
		order: 2;
	}
	.footerLinks {
		text-align: center;
		order: 1;
	}
}
@media only screen and (max-width: 460px){
	.footerLinks{
		flex-direction: column;
	}
	.footerLinks p {
		display: none;
	}
	.footerLinks a{
		margin-bottom: 1em;
	}
	.footerLogos{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.footerLogos a {
		margin-right: 0;
		margin-bottom: 0;;
	}
}
/* ---------------------------------- accordion ---------------------------------- */
.accordion p {
    display: block;
	padding: 0.5em  3em 1.0em 1em;
	font-size: 0.875em;
    cursor: pointer;
    border-bottom: 1px dashed #666;
	position: relative;
	margin-bottom: 0.5em;
}
.accordion p::after {
	font-size: 1.5em;
	position: absolute;
	right: 1em;
	content: "+";
}
.accordion p.slactive::after {
	font-size: 1.0em;
	right: 1.5em;
	content: "—";
}
.accordion .slactive {
    border-bottom: 0px solid #666;
}
.accordion ul {
    padding-bottom: 1em;
	margin: 0em;
    display: none;
    font-size: 1em;
	float: none;
    border-bottom: 1px dashed #666;
}
.accordion ul li {
	margin: 0 3em 0 1rem;
	font-size: 0.875em;
	display: block;
}
/* ---------------------------------- Termine-Box ---------------------------------- */
#termine{
	position: relative;
	width: 100%;
	height: 100%;
	/*min-height: 500px;*/
	padding: 2em 0;
	margin: -2em 0 0 0;
	/*background-color: #79b41e;
	background:url(/images/home/en.webp) no-repeat;
	background-position: center;
	background-size: cover;*/
	z-index: 1;
}
#termine:after{
	content: ' ';
  	display: block;
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
  	opacity: 0.7;
	/*background:url(/images/home/en.webp) no-repeat;*/
	background: #D7EDBE; 
	background-image: url(/images/home/AVR_Header.jpg);
	background-image: url(/images/home/sinsheim.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.termin{
	padding: 1em 2.5em 2em 2.5em;
	margin-top: 5em;
	margin-bottom: 2rem;
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 10;
}
/*.termin{
	border-radius: 1em;
	border: 2px solid #fff;
	padding: 1em 2.5em 2em 2.5em;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background-color: #79b41e;
	margin: 6em 0;
}
.termin h1, .termin p, .termin ul  {
	color: #fff;
	text-align: left;
	margin-bottom: 1em;
}*/
.termin h1{
	margin-top: 0.25em;
	margin-bottom: 1em;
	font-size: 2.5rem;
	color: #fff;
	text-shadow: 0px 0px 26px #093301;
}
@media only screen and (max-width: 960px){
	.termin h1{
		font-size: 2rem;
	}
}
/* ---------------------------------- Home ---------------------------------- */
section#home,section#home>div{
	width: 100%;
	max-width: 100vw;
}
section#home{
	overflow-x: hidden;
	position: relative;
}
section#home>div{
	position: relative;
	height: 100%;
	padding: 2em 0;
	margin-bottom: 1em;
}
section#home>div.last {
	margin-bottom: 0;
}
section#home>div>div>img{
	width: 35%;
	height: auto;
	border-radius: 50%;
	margin-top: -6em;
	display:flex;
	justify-content: center;
	border: 2px solid #fff;
}
section#home>div#homeFernwaerme, section#home>div#homeInfo, section#home>div#homeFAQ{
	background-color: transparent;
}
section#home>div#homeFernwaerme>div>img, section#home>div#homeInfo>div>img, section#home>div#homeFAQ>div>img{
	margin-right: -5%;
	margin-left: 5%;
}
section#home>div#vorteile, section#home>div#homeNews, section#home>div#homeKontakt, section#home>div#Jahre{
	background-color: #fff;
}

section#home>div#homeNews>div>img, section#home>div#vorteile>div>img, section#home>div#homeKontakt>div>img{
	margin-right: 5%;
	margin-left: -5%;
}
section#home>div>div{
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	max-width: 1080px;
	margin: 0em auto 2em auto;
  	padding: 1em;
	z-index: 7;
	justify-content: space-between;
}
section#home>div>div.accordion{
	display: block;
	padding: 0;
}
section#home div#rechenbeispiel div.accordion p{
	font-size: 24px;
	color: #79b41e;
	padding-left: 0;
}
section#home div#rechenbeispiel div.accordion ul li{
	padding-left: 0;
	margin-left: 0;
}
section#home>div>div>div{
	width: 65%;
	height: 100%;
}
section#home>div>div>div>h2{
	margin-top: 0;
	margin-bottom: 0.25em;
}
section#home > div > div.fullwidth {
	display: block;
	width: 100%;
	margin-top: -1em;
	margin-bottom: -1em;
}
section#home > div > div.fullwidth > div {
	width: 100%;
}
section#home > div > div.fullwidth > div.flexbox{
	align-content: center;
	align-items: center;
}
section#home > div > div.fullwidth > div.homeNews{
	height: 100%;
	min-height: 350px;
}
section#home > div > div.fullwidth > div.flexbox > div.home{
	transform: rotate(0deg);
	margin-left: 0;
	margin-right: 2em;
}
section#home > div > div.fullwidth > div.flexbox > p:first-child{
	padding-left: 0;
}
section#home > div#vorteile, section#home > div#vorteile > div {
	margin-bottom: 0;
}
#benefits, #Jahre{
	margin-top: -1rem;
	background-color:  #fff;
}
#Jahre{
	margin-bottom: -1rem !important;
}
#benefits .container{
	border-radius: 0.8rem;
	padding: 1rem 2rem;
}
#benefits .container p{
	color:  #fff;
}
.mapInput{
	width: 250px;
	border: 1px solid #79b41e;
	border-radius: 8px;
	padding: 0.25em;
	margin-right: 1em;
}
#mapAdressField{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}
.goTo, .TextgoTo{
	width: 40px;
	height: 30px;
	object-fit: contain;
	margin-left: 2em;
}
.TextgoTo {
  	margin-left: 0;
	margin-top: 1em;
}
#vorschlaege{
	display: none;
  	padding: .15em .25em;
  	border-radius: 3px;
  	cursor: pointer;
  	line-height: 1em;
	background-color: #fff;
  	border: 1px solid #c3c3c3;
  	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
	max-height: 170px;
  	overflow-y: scroll;
}
#vorschlaege strong {
  	font-weight: inherit;
  	background-color: rgba(121, 180, 30, 0.5);
}
.vorschlaege-item{
	margin: 0.5em 0;
	padding: 0.25em;
}
.vorschlaege-item:hover{
	background-color: #79b41e;
	color: #fff;
}
section#home #rechenbeispiel{
	max-width: 1080px;
  	margin: 0em auto 4em auto;
  	padding: 1em;
}
section#home > div#ergebnis{
	margin-top: -2em;
	margin-bottom: 0;
	padding-bottom: 3em;
	display: none;
}
#ergebnis .container{
	flex-direction: column;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: flex-start;
	margin-bottom: 1em;
	margin-top: 2rem;
}
section#home div#homeFernwaerme, section#home div#homeFernwaerme > div{
	margin-bottom: 0;
	padding-bottom: 0;
}
#ergebnis h3, #ergebnis p{
	color: #fff;
}
#ergebnis h3{
	margin-top: 0;
}

#bonus {
	margin-bottom: -4em !important;
}
.contact{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	padding-left: 0;
}
.contact a{
	width: 160px;
	display: inline-block;
	border: solid 2px #fff;
	background-color: #79b41e;
	color: #fff;
	border-radius: 8px;
	padding: 0.5em 1em;
	text-align: center;
}
section#home > div#ergebnis .contact{
	flex-direction: row;
	margin-bottom: 2.5em;
}
.contact a, #ergebnis .contact a{
	margin-right: 0.5em;
}
.contact a:last-of-type, #ergebnis .contact a:last-of-type {
	margin-right: 0;
}
@media only screen and (max-width: 820px){
	section#home > div > div.fullwidth > div.homeNews>div:nth-child(2){
		display: none;
	}
	section#home > div > div.fullwidth > div.flexbox > div.home{
		margin-right: 0;
	}
	section#home > div#ergebnis {
  		margin-top: -3em;
	}
	section#home>div>div{
		flex-direction: column;
	}

	.contact a{
		min-width: 100%;
		width: 100%;
		margin-bottom: 1em;
	}

	section#home>div#homeFernwaerme>div>img, section#home>div#homeInfo>div>img, section#home>div#homeFAQ>div>img, section#home>div#vorteile>div>img, section#home>div#homeNews>div>img, section#home>div#homeKontakt>div>img{
		margin-right: 0;
		margin-left: 0;
		width: 50%;
	}
	/*section#home>div>div{
		flex-direction: column;
	}*/
	section#home>div>div>div>h2{
		margin-top: 1em;
	}
	section#home>div>div>div, section#home>div>div>a{
		width: 100%;
	}
	section#home>div#homeFernwaerme>div>img, section#home>div#homeInfo>div>img, section#home>div#homeFAQ>div>img, section#home>div#vorteile>div>img, section#home>div#homeNews>div>img, section#home>div#homeKontakt>div>img{
		order: 1;
	}
	section#home>div#homeFernwaerme>div>div, section#home>div#homeInfo>div>div, section#home>div#homeFAQ>div>div, section#home>div#vorteile>div>div, section#home>div#homeNews>div>div, section#home>div#homeKontakt>div>div{
		order: 2;
	}
	section#home>div>div>a>img{
		width: 70%;
	}
	p.btn {
		width: 100%;
	}
	section#home > div > div.fullwidth{
		margin-bottom: 2em;
	}
	#ergebnis .contact a:first-of-type{
		margin-right: 0;
		margin-bottom: 1em;
	}
}
/* ---------------------------------- Kontaktformular ---------------------------------- */
form#contact_form input{
  	border: 1px solid #79b41e;
  	border-radius: 1px;
  	font-size: 1rem;
  	padding: 5px 10px;
  	margin: 0.25rem 0 1.5rem 0;
  	width: calc(100% - 120px);
	min-width: 320px;
	background: #eee;
}
form#contact_form button{
	border: solid 2px #fff;
  	background-color: #79b41e;
  	color: #fff;
  	border-radius: 8px;
  	padding: 0.5em 1em;
  	text-align: center;
	width: 100%;
	height: 35px;
	margin-top: 2rem;
	cursor: pointer;
}
form#contact_form fieldset{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
}
form#contact_form a{
	color: #79b41e;
	font-weight: 700;
}
label{
	color: #79b41e;
	width: 120px;
	margin: 0.25rem 0 1.5rem 0;
}
#kontaktform strong{
	display: inline-block;
	margin: 2rem 0;
}
#send_success, #send_error {
	display: none;
}
@media only screen and (max-width: 535px){
	label{
		margin-bottom: 0.25rem;
	}
	form#contact_form input{
		width: 100%;
		min-width: 280px;
	}

}
/* ---------------------------------- Checkbox ---------------------------------- */
label.check{
	width: 100%;
}
label.check small{
	display: inline-block;
	width: calc(100% - 25px - 1rem);
	margin-left: calc(25px + 1rem);
}
.check {
    display: inline-block;
	top: 1rem;
	position: relative;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.check input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border: 1px solid #7AB51D;
    border-radius: 3px;
}
.check:hover input ~ .checkmark {
	background-color: #eee;
}
.check input:checked ~ .checkmark {
	background-color: #79b41e;
}
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.check input:checked ~ .checkmark:after {
	display: block;
}
.check .checkmark:after {
	left: 8px;
	top: 3px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
#element15 {
  width: 35%;
  height: auto;
  border-radius: 0 !important;
}
.aside {
  width: 30%!important;
  margin-top: 2em;
}
#special{
	justify-content: space-between;
  	align-content: flex-start;
  	align-items: flex-start!important;
	flex-wrap: wrap;
}
@media only screen and (max-width: 820px){
	.aside {
  		width: 100%!important;
		margin-bottom: 2rem;
	}
}

section#home div#special-text{
	width: calc(100% - 315px - 2rem);
}
#special .aside{
	width: 30%;
	min-width: 315px;
}

#topbox, #midbox, #botbox {
	border: 0px solid #79b41e;
	border-radius: 20px;
	margin-bottom:2em;
	padding: 20px 25px;
	min-width: 315px;
}
#topbox {
	background-color: #94be52;
	margin-bottom: 2em;
}
#topbox h2  {
	color:#1c3b10;
	font-size: 31px;
	margin:0;
	text-align: center;
  	line-height: 1.1;
}
#midbox {
	background-color: #e6eed7;
	color: #1c3b10;
}
#midbox td, #botbox td {
	font-size:0.8em;
	vertical-align: bottom;
}
#midbox span {
	color: #455f35;
}

#botbox {
	background-color: #2C4623;
	color:#FFF;
	margin-bottom: 1rem;
}
#botbox h2  {
	color:#fff;
	font-size: 25px;
	margin:0;
}

table th {
	text-align:left;
}
table tr {
	line-height: 2em;
}
span.large {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 0.8em;
}
span.larger {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 0.8em;
	color: #fff;
}

.strike {
  position: relative;
  display: inline-block;
  color:#FFF;
}
.strike::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: red;
  transform: rotate(-20deg);
  transform-origin: left bottom;
}
.small {
	max-width: 1080px;
	margin: 0em auto 2em auto;
	padding: 1em;
	font-size:0.8em;
	padding-bottom:0 !important;
	line-height: 1.4em;
}
.floatright {
	float: right;
}
#Jahre .small{
	margin-bottom: 4rem;
}

.textRight{
	text-align: right;
	width: 100%;
  	display: inline-block;
}
header {
	height: 112px;
	background: #fff;
}
#headerImage{
	width: 100%;
	background-color: #fff;
	margin-top: 112px;
	padding: 1rem;
}
#headerImage .container{
	position: relative;
  	padding: 2rem;
	background-image: url("/images/home/sinsheim.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center 42%;
	border-radius: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	min-height: 400px;
	overflow: hidden; 
	max-width: 1080px;
}
#headerImage .container::after{
	content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
	z-index: 0;
	/*background: linear-gradient(to bottom right, rgba(46, 204, 113, 0.9), rgba(39, 174, 96, 0.9));
	-webkit-mask-image: url("/layout/wave-mask.svg");
    mask-image: url("/layout/wave-mask.svg");*/
	background: transparent url("/layout/wave.png") no-repeat center top;
    background-size: cover;
    
    
   /* -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;*/
}
#headerImage .container > * {
    position: relative;
    z-index: 1;
}
#headerImage .container h1{
	font-size: 2.5rem;
	text-align: center;
	text-shadow: 0px 0px 26px #fff;
	font-weight: 900;
	width: 100%;
	margin-top: 0;
}
#headerImage .container h1 span{
	color: #79b41e;
	font-weight: 700;
}
#headerImageText{
	width: calc(100% - 150px - 2rem);
	display: flex;
  	flex-direction: column;
  	justify-content: flex-end;
}
#headerImageText p, #headerImageText h2{
	color: #fff;
	font-weight: 700;
}
#headerImageText h2{
	text-transform: uppercase;
	margin: 0;
}
#headerImageText p{
	font-size: 19px;
}
#headerImageBubble{
	position: relative;
	width: 150px;
	height: 115px;
	background-color: #fff;
	border-radius: 20px 20px 0 0;
	padding: 1rem 1.5rem;
	z-index: 100;
}
#headerImageBubble::before{
	content: "";
  	position: absolute;
  	top: 0;
  	left: 0;
  	right: 0;
  	bottom: -20px; /* Wie weit es unten rausstehen soll */
  	background: #fff;
  	border-radius: 20px;
	transform: skewY(5deg); 
  	transform-origin: bottom left;
  	z-index: -1;
}
#headerImageBubble p{
	color: #79b41e;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}
#header .container{
	max-width: 1080px;
}
@media only screen and (max-width: 820px){
	 section#home > #Jahre > div  {
		flex-direction: column;
	}
	#Jahre > div > div {
		flex-direction: column;
		width: 100%!important;
	}
	#midbox tbody, #botbox tbody{
		display: flex;
		flex-wrap: wrap;
	}
	#midbox tbody tr:first-of-type, #botbox tbody tr:first-of-type{
		width: 100%;
		display: flex;
		justify-content: center;
	}
	#midbox tbody{
		justify-content: center;
	}
	#botbox tbody{
		justify-content: space-around;
	}
	#special .aside{
		order: 1;
		margin-top: 0;
	}
	#special-text{
		order: 2;
		margin-bottom: 3rem;
	}
	#Jahre .small {
	  	margin-bottom: 3rem;
	}
}
@media only screen and (max-width: 765px){
	#headerImage .container{
		padding: 1.5rem 2rem;
	}
	#headerImage .container h1 span{
		line-height: 1.1;
	}
	#headerImageText{
		width: 100%;
		order: 3;
	}
	#headerImageBubble{
		margin-left: calc(100% - 150px);
	}
}
@media only screen and (max-width: 640px){
	#headerImage .container{
		padding: 1.5rem 1rem;
	}
	#headerImageBubble{
		margin-bottom: 3.5rem;
	}
	#headerImage .container h1{
		font-size: 2rem;
	}
	#headerImage .container h2{
		font-size: 1.25rem;
	}
	#headerImageText p {
	  	font-size: 1rem;
		line-height: 1.1;
	}
}
@media only screen and (max-width: 590px){
	#botbox{
		display: flex;
		justify-content: center;
	}
	#botbox tbody, #botbox tbody tr:first-of-type{
		display: inline-block;
	}
}
@media only screen and (max-width: 556px){
	#midbox{
		display: flex;
		justify-content: center;
	}
	#midbox tbody, #midbox tbody tr:first-of-type{
		display: inline-block;
	}
}
@media only screen and (max-width: 385px){
	#headerImage .container::after{
		height: 60%;
	}
	#topbox, #midbox, #botbox{
		min-width: 300px;
		padding: 20px 1rem;
	}
	
}

a[href$=".pdf"]{
	color:#79b41e;
	font-weight:bold;
	display: inline-block;
	margin: 0 0 0.5rem 0;
	padding: 0 0 0 1.5rem;
	background: url(/layout/pdf-icon.svg) no-repeat left 1px;
	background-size: auto;
	background-size: 16px 20px;
}