@charset "utf-8";
* {
	margin:0;
	padding:0;
}
@font-face {
	font-family: "Open Sans";
	src:url(../fonts/Open_Sans/OpenSans-Regular.ttf);
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: "Baumans";
	src:url(../fonts/Baumans/Baumans-Regular.ttf);
	font-weight: normal;
	font-style: normal;
}
body {
	font: normal normal normal 100%/180% "Open Sans", Arial; /* font: font-style font-variant font-weight font-size/line-height font-family */
	background: rgb(63,64,150);
	/* background:#43658a; die alte Hintergrundfarbe, war doch schöner, oder? */
	box-sizing:border-box;
}
h1 {
	font-size:2.0rem;
	font-weight:normal;
	letter-spacing:0.18rem;
	line-height:2.5rem;
	margin:0 0 0.3rem 0;
}
h2 {
	font-size:2.5rem;
	font-weight:normal;
	line-height:2.5rem;
	margin-bottom:1.5rem;
}
p {
	margin: 1rem 0rem;
	font-style: normal;
	font-weight: normal;
}

/*----------------------------HEADER----------------------------*/
header {
	position:relative;
	color:#f1f1f1;
	padding:1rem 0rem 1rem 8rem;
}
header img {
	position:absolute;
	top:0.6rem;
	left:0.8rem;
	width:100px; /* ausnahmsweise in Pixel, da Grafik */
	height:auto;
}

/*----------------------- MAIN -----------------------*/
div.main {
	color:#333;
	overflow:hidden;
	/* background:#fff; der alte Hintergrund */
	background: linear-gradient(180deg, rgba(44,144,183,1) 0%,rgba(255,255,255,1) 100%);
	padding:5rem 2rem 2rem 2rem;
}
/*--------------- die gelbe Box ----------------------*/
div.main section#tele {
	margin:0 auto 2rem auto;
	width:14rem;
	background:#ffd900;
	padding:1rem;
	border-radius:0.4rem;
	box-shadow:1px 1px 7px #000;
}
div.main section#tele .bereich {
	display:block;
	margin:0; padding:0;
	color:#777;
	font-size:0.8rem;
	line-height:1rem;
}
div.main section#tele .bereich:before {
	content:"Bereich ";
}
div.main section#tele .bereich:after {
	content:":";
}
div.main section#tele .telefon {
	font-size:1.2rem;
	margin:0 0 0 3rem;
}
div.main section#tele p.grau {
	font-size:0.8rem;
	line-height:1rem;
	color:#777;
}
div.main a {
	text-decoration:none;
	color:#777;
}
div.main figure.dickerButton {
	display:inline-block;
	background: #43658a;
	padding:0.8rem 1.2rem;
	margin:1rem 0;
	border-radius:0.4rem;
	font-size:1.2rem;
}
.dickerButton, .dickerButton a {
	color:#E5E091;
}
div.main figure.aerzte {
	float:left;
	margin:0 2rem 0 0;
}
/*----------------------------FOOTER----------------------------*/
footer {
	clear:both;
	overflow:hidden;
	background: rgb(63,64,150);
	color:#f1f1f1;
	padding:2rem;
}
footer section {
	border-bottom: 1px dotted #ddd;
}
footer section:last-child {
	border-bottom: none; /* die letzte Section soll keinen Border haben */
}
footer h2 {
	color:#ffd900;
}
footer a {
	text-decoration:none;
	color:#E5E091;
}
footer a:hover {
	color:#fff;
}

@media only screen and (min-width: 500px) {
	div.main section#tele {
		float:right;
		margin:0rem 0rem 1rem 1rem;
	}
}

@media only screen and (min-width: 800px) {
	header {
		padding:2rem 0rem 2rem 15rem;
	}
	header img {
		top:1.2rem;
		left:1.2rem;
		width:180px; /* ausnahmsweise in Pixel, da Grafik */
	}
	h1 {
		font-size:4rem;
		font-weight:normal;
		letter-spacing:0.2rem;
		line-height:4.5rem;
		margin:0 0 1rem 0;
	}
	footer section {
		float: left;
		width: 50%;
		margin:0;
		padding:0;
	}
}

@media only screen and (min-width: 1100px) {
	div.main {
		padding:5rem 5rem 2rem 5rem;
	} 
	div.main section:last-child {
		-webkit-column-count: 2; /* Chrome, Safari, Opera */
		-moz-column-count: 2; /* Firefox */
		column-count: 2;
	}
	footer {
		padding:2rem 7.5rem;
	}
	footer section {
		width: 33%;
		border:none;
	}
}

@media only screen and (min-width: 1800px) {
	main section:last-child {
	-webkit-column-count: 3; /* Chrome, Safari, Opera */
    -moz-column-count: 3; /* Firefox */
    column-count: 3;
}
}

