@charset "utf-8";

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-v30-latin-300.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v30-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v30-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v30-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v30-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v30-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v30-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v30-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v30-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v30-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}

* {
	box-sizing:border-box;
}

html {
	min-height: 100%;
	}
	
body {
	color: #888888;
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 10pt;
	line-height: 1.431em;
	font-weight: 400;
}

#wrapper {
	position:relative;
	max-width:840px;
	margin: 1rem auto;
	border:solid thin #000;	
	background-color:#fff;
	overflow:hidden;	
}

header p {
    color: #000;
    font-size: 1.6em;
	line-height:1.321em;
    font-weight: 300;
    position: absolute;
    top: 8.5%;
    left: 21%;
	z-index:555;
}

header p span {
    color: #41A62A;
}

article {
	padding: 1rem 3.5rem 2rem;	
}

footer {
	color:#000;
	padding: 0.5rem 3.5rem 1rem;
	background: linear-gradient(#eee, #fff);
	display: flex;
    justify-content: space-between;
	gap: 2.5rem;
}

section {
	width:50%
}

p {
	text-align:justify;
}

h1 {
	font-size:2.3em;
	line-height:1.1em;
	font-weight:300;
	hyphens: none;
}

h2 {
	font-size:1.292em;
	line-height:1.1em;
	color:#000;
	font-weight: 700;
}

h2 span {
	font-size:0.731em;
}

h3 {
	font-size:1.231em;
	line-height:1.231em;
	color: #42A62A;
	font-weight: 700;
}

h3 + p, h3 + ul {
	margin-top:-0.6rem;
}

h4 {
	font-size:1.231em;
	line-height:1.231em;
	font-weight: 700;
	color:#888888;
}

h4 + p {
	margin-top:-0.6rem;
}

a:link,a:active,a:visited {
	color: #42A62A;
	text-decoration: none;
	font-weight: bold;
}

a:hover {
	text-decoration:underline;
}

a.link-mail:link, a.link-mail:visited {
	text-decoration:underline;
	color: #000;
	font-weight: normal;
}

a.link-tel:link, a.link-tel:visited {
	text-decoration:none;
	color: #000;
	font-weight: normal;
}

a.link-bewerben:link, a.link-bewerben:visited {
	text-decoration:underline;
}


img {
	max-width:100%;
	height:auto;
	display:block;
}

ul {
	padding-left: 1.73rem;
}

li {
	padding:0 0 0.2rem;
	list-style-type:none;
}

li:before {
	content: "\25A0";
	color: #828282;
	float: left;		
	margin: -0.05rem 0 0 -1.7rem;
	font-size:12px;
}

aside {
	display: flex;
    justify-content: space-between;
	gap: 2.5rem;
}

@media only screen and (max-width:839px) {
	#wrapper {
		border:none;
		margin:0 auto;
		hyphens: auto;
	}
}

@media only screen and (max-width:828px) {
	h1 {
		text-align:center;
	}		
}
	
@media only screen and (max-width:765px) {
	header p {
    	position: relative;
    	top: 0;
    	left:0;
		padding:0 1rem;
	}
	
	article {
		padding: 0rem 1rem;		
	}
			
	footer {
		padding: 1rem;		
	}
	
	p {
		text-align:left;
	}
	
	article aside {
		display: block;
	}
}

@media only screen and (max-width:610px) {
	footer {
		display: block;
	}	
}