/* - - - - - - - - - - - - - - - - - - - - */
/* dechent Medienkommunikation             */
/* dechent.co                              */
/* - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - */
/* farben                                  */
/* - - - - - - - - - - - - - - - - - - - - */
.bg-schwarz {
	background: #333333;
}

.bg-tiefschwarz {
	background: #000000;
}

.bg-rot {
	background: #EF313D;
}

.bg-dunkelrot {
	background: #64171f;
}

.bg-tuerkis {
	background: #114544;
}

.bg-hellgruen {
	background: #B9C055;
}

.bg-gelb {
	background: #EBBF4A;
}

.schwarz {
	color: #333333;
}

.tiefschwarz {
	color: #000000;
}

.rot {
	color: #a62534;
}

.tuerkis {
	color: #114544;
}

.hellblau {
	color: #114544;
}

.dunkelblau {
	color: #405159;
}

.beige {
	color: #f3e7b5;
}

.weiss {
	color: rgba(255, 255, 255, 0.8);
}

.leichtweiss {
	color: rgba(255, 255, 255, 0.4);
}

/* - - - - - - - - - - - - - - - - - - - - */
/* webfonts                                */
/* - - - - - - - - - - - - - - - - - - - - */
@font-face {
	font-family: webfont;
	src: url("../fonts/webfont.woff") format("woff");
	font-weight: normal;
}
@font-face {
	font-family: webfontBold;
	src: url("../fonts/webfontBold.woff") format("woff");
	font-weight: bold;
}
@font-face {
	font-family: webfontScript;
	src: url("../fonts/script.woff") format("woff");
	font-weight: normal;
}
html {
	font: 20px/25px "webfont", Arial, Helvetica, sans-serif;
	/* %%% */
	font-weight: 400;
}

/* - - - - - - - - - - - - - - - - - - - - */
/* box sizing fix and some resets          */
/* - - - - - - - - - - - - - - - - - - - - */

*, *:after, *:before {
	box-sizing: border-box;
}

* {
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	font-weight: normal;
}

html {
	overflow-y: scroll;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	-ms-interpolation-mode: bicubic;
}

ul, ol {
	/* list-style-position: inside; */
	list-style-position: outside;
}

li {
	/* line-height: 1.75em; */
	margin-bottom: 1em;
}
li::before {
/*
	content: "";
	width: 0.25em;
	display: inline-block;
*/
}

/* - - - - - - - - - - - - - - - - - - - - */
/* html                                    */
/* - - - - - - - - - - - - - - - - - - - - */

@media screen and (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}
body {
	text-align: center;
	background: white;
	color: #405159;
}

a, a:visited {
	color: inherit;
	text-decoration: underline;
}

p {
	margin-bottom: 1em;
}

strong {
	font-family: webfontBold;
	font-weight: normal;
}

h1 {
	font-weight: bold;
}

h1, h2, h3 {
	font-size: 40px;
	/* %%% */
	line-height: 110%;
	font-weight: 700;
	/* text-transform: uppercase; */
	margin-bottom: 1em;
}
@media (max-width: 400px) {
	h1, h2, h3 {
		font-size: 30px;
	}
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 26px;
	text-transform: none;
}

/* - - - - - - - - - - - - - - - - - - - - */
/* struktur                                */
/* - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - */
/* header                                  */
/* - - - - - - - - - - - - - - - - - - - - */

header {
	padding: 40px 0;
}

header a {
	display: inline-block;
	/* text-decoration: none; */
	/* height: 220px; */
}

header a img {
	height: 100%;
	width: auto;
}

/* - - - - - - - - - - - - - - - - - - - - */
/* sections                                */
/* - - - - - - - - - - - - - - - - - - - - */

section {
	position: relative;
	padding: 2rem 0;
	width: 100%;
}

article {
	width: 60%;
	padding: 2rem 0.25rem;
	margin: 0 auto;
}

@media (max-width: 1400px) {
	article {
		width: 80%;
	}
}
@media (max-width: 700px) {
	article {
		width: 95%;
	}
}
@media (max-width: 400px) {
	article {
		width: 100%;
	}
}

img.schatten {
	border-radius: 7px;
	box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.75);
}

div.boxes {
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
}
div.boxes div.box1-2, div.boxes div.box2-2 {
	width: 50%;
}
@media (max-width: 999px) {
	div.boxes div.box1-2, div.boxes div.box2-2 {
		width: 97%;
		padding-bottom: 1rem;
	}
}

div.box {
	padding: 0 1rem;
}

.links {
	text-align: left;
}

.mitte {
	text-align: center;
}

.rechts {
	text-align: right;
}
@media (max-width: 999px) {
	.rechts {
		text-align: left !important;
	}
}

section.cover-image {
	display: block;
	padding: 0;
	max-height: 500px;
	overflow: hidden;
	text-align: center;
}
section.cover-image img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}
@media (max-width: 1280px) {
	section.cover-image {
		max-height: 400px;
	}
}
@media (max-width: 550px) {
	section.cover-image {
		height: 250px;
	}
	section.cover-image img {
		height: 100%;
	}
}

.color01 {
	background: #617c7e;
	color: #405159;
}

/* - - - - - - - - - - - - - - - - - - - - */
/* FOOTER                                  */
/* - - - - - - - - - - - - - - - - - - - - */

footer {
	color: rgba(255, 255, 255, 0.8);
	background: #222;
	padding: 80px;
}
footer img {
	height: 200px;
}
@media (max-width: 400px) {
	footer {
		padding: 10px;
	}
}

/* - - - - - - - - - - - - - - - - - - - - */
/* buttons                                 */
/* - - - - - - - - - - - - - - - - - - - - */
.button {
	font-family: webfontBold;
	color: #333333;
	display: block;
	margin: 0 auto;
	width: 10em;
	padding: 1em 2em;
	border: 3px solid #333333;
	border-radius: 1.2em;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
}
.button.invers {
	color: rgba(255, 255, 255, 0.8);
	background: #333333;
	border: 3px solid rgba(255, 255, 255, 0.8);
}

.button:hover {
	color: rgba(255, 255, 255, 0.8);
	background: #333333;
}
.button:hover.invers {
	color: #333333;
	background: rgba(255, 255, 255, 0.8);
	border-color: #333333;
}

.link-hell {
	font-family: webfontBold;
	color: rgba(255, 255, 255, 0.8);
	display: block;
	margin: 0 auto;
	padding: 0.5em 1em;
	border: 2px solid rgba(255, 255, 255, 0.8);
	border-radius: 0.3em;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
}
.link-hell:hover {
	background: rgba(255, 255, 255, 0.5);
}

/* - - - - - - - - - - - - - - - - - - - - */
/* spezielle Gestaltung                    */
/* - - - - - - - - - - - - - - - - - - - - */
.cloud {
	display: inline-block;
	padding: 0.1em 0.5em;
	margin: 4px 2px;
	color: #405159;
	border: 2px #405159 solid;
	border-radius: 7px;
}

table {
	margin: 0 auto;
	text-align: center;
}

table tbody {
	display: block;
	margin: 0 auto;
}

table td {
	padding: 0.2em;
}

.handschrift {
	font-family: webfontScript;
	font-size: 1.8rem;
	line-height: 105%;
}

/* - - - - - - - - - - - - - - - - - - - - */
/* tooltip                                 */
/* - - - - - - - - - - - - - - - - - - - - */

.tooltip {
	position: relative;
	cursor: grab;
	background: rgba(255, 255, 255, 0.15);
}

/* Tooltip text */
.tooltip .tooltiptext {
	visibility: hidden;
	width: 400px;
	background-color: #405159;
	color: rgba(255, 255, 255, 0.8);
	text-align: center;
	padding: 5px 5px 10px 5px;
	border-radius: 7px;
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.75);
	/* Position the tooltip text */
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -200px;
	opacity: 0;
	transition: opacity 0.5s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -10px;
	border-width: 10px;
	border-style: solid;
	border-color: #405159 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}

/* - - - - - - - - - - - - - - - - - - - - */
/* Bilder                                  */
/* - - - - - - - - - - - - - - - - - - - - */

img.small {
	width: 230px;
	height: auto;
	margin: 10px;
}

/* - - - - - - - - - - - - - - - - - - - - */
/* animations                              */
/* - - - - - - - - - - - - - - - - - - - - */

.zoom {
	transition: transform 0.8s;
}
.zoom:hover {
	transform: scale(1.1);
	transition: transform 0.2s;
}

/*# sourceMappingURL=styles.css.map */
