﻿@charset "utf-8";

:root {
	font-size: 16px;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
}
	
body {
	font-family: Helvetica, Arial, 'Lato', sans-serif;
	font-weight: 400;
	line-height: 1.5882352941;
	font-size: 1rem;
	color: #000;
}

#wrapper {
	background-color: #fff;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.2);
	margin: 2rem auto;
	max-width: 64rem;
	overflow: hidden;
	padding: 0.75rem 5.9375rem 1.25rem;
	position: relative;
}

p + p {
	margin: 1rem 0 0 0;
}

h1 {
	margin: 0;
	margin-top: 2rem;
	font-size: 2.074em;
	text-align: center;
	color:rgba(51,51,51,0.9);
}

h1 span {
	font-weight: normal;
}

h2 {
	font-family: Helvetica, Arial, 'Lato', sans-serif;
	margin-top: 2rem;
	margin-bottom: .75rem;
	font-weight: 700;
	line-height: 1.2;
	color: #72B65F;
}

a:link, a:active, a:visited {
	color: #007bff;
	text-decoration: none;
}

a:hover {
	color: #039BE5;
}

a:link h6, a:active h6, a:visited h6 {
	font-size: 1rem;
	width:13rem;
	margin: 1.5rem auto 3rem;
	text-align: center;
	background-color: #424242;
	font-weight: normal;
	color: #fff;
	text-transform: uppercase;
	border-radius: 0.188em;
	padding: 1em 1.5em;
}
a:hover h6 {
	background-color: #000;
	color: #aaa;
}

footer aside a:link, footer aside a:active, footer aside a:visited {
	color: rgba(51,51,51,0.9);
	text-decoration: none;
}

footer aside a:hover {
	color: rgba(51,51,51,0.9);
}


img {
	display: block;
	height: auto;
	max-width: 100%;
	border: none;
}

hr {
	border: none;
	border-top: 0.063rem solid #000;
}

ul {
	padding-left: 1rem;
}

li {
	padding-bottom: 0.2rem;
}

header {
	margin-bottom: 1rem;	
}
header > a > img {
	margin-bottom: 2rem;
}

header p {
	font-weight: normal;
	font-size: 1.125rem;
}
header > p {
	font-size: 0.983rem;
}

header aside {
	display: flex;
	justify-content: center;
	padding-bottom: 2.5rem;

}
header aside p {
	margin: 0;
	color:rgba(51,51,51,0.9);
}
header aside p:nth-of-type(2),
header aside p:nth-of-type(3) {
	padding-left: 1rem;
}
header aside p img {
	display: inline;
	margin-bottom: -0.125rem;
	padding-right: 0.25rem;
}

article aside {
	border-top: thin solid #ddd;
	border-bottom: thin solid #ddd;
	margin: 2rem -5.9375rem;
	padding: 2rem 5.9375rem;
}
article aside h2 {
	margin-top: 0;
}

article aside p:last-of-type {
	padding-left: 26.75rem;
}

footer aside {
	display: flex;
	justify-content: center;
}
footer aside p {
	margin: 0;
	font-weight: bold;
}
footer aside p:nth-of-type(2),
footer aside p:nth-of-type(3) {
	padding-left: 1rem;
}
footer aside img {
	display: inline;
	margin-bottom: -0.125rem;
	padding-right: 0.125rem;
}


.clearfix:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}



/* Responsive */
@media only screen and (max-width:50rem) {
#wrapper {
	border: none;
	margin: 0 auto;
	padding: 0.625rem;
}
a:link, a:active, a:visited {
	font-size: 1rem;
}
a:hover {
	text-decoration: none;
}

header aside {
	flex-direction: column;	
	margin-top: 1rem;
}
header aside p {
	text-align: center;
}

article aside p:last-of-type {
	padding-left: 0;
}

footer aside {
	flex-direction: column;
	margin-top:-1rem;
}
footer aside p {
	text-align: center;
}
footer aside p:nth-of-type(2),
footer aside p:nth-of-type(3) {
	padding-left: 0rem;
}

}

/* Ende Responsive */