/* The fonts referenced herein are copyright (c) SoftMaker Software GmbH and its licensors, 1991-2014 */
@font-face {
    font-family: 'Belfort Pro Light';
    src: url('webfonts/belfort-pro-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Belfort Pro Demi';
    src: url('webfonts/belfort-pro-demi-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Stafford Pro Light';
    src: url('webfonts/stafford-pro-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Stafford Pro';
    src: url('webfonts/stafford-pro-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'FrontPage Pro';
    src: url('webfonts/frontpage-pro-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'FrontPage Pro';
    src: url('webfonts/frontpage-pro-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: 'FrontPage Pro Light';
    src: url('webfonts/frontpage-pro-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'FrontPage Pro Light';
    src: url('webfonts/frontpage-pro-lightitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

/* Colors */
:root {
  --orange: #f9a116;
  --schrift: #04070c;
}

/* Basis */
body {
	background: #3D7FA2;
	color: var(--schrift);
	font-family: 'FrontPage Pro';
	font-size: 20px;
	line-height: 140%;
	margin: 0; 
	padding: 0;
}
div {
	box-sizing: border-box;
}
.wrapper {
	background: #DCFFE2;
	margin: 24px auto;
	max-width: 960px;
	padding: 24px;
	width: 100%;
}
article {
	border-bottom: 4px solid var(--orange);
}
article:last-of-type {
	border-bottom: none;
}

/* Images */
img {
	height: auto;
	max-width: 100%;
}
figure {
	margin-left: 0;
}
figcaption {
	font-size: 16px;
}

/* Flexbox */
.row {
	display: flex; /* or inline-flex */
	flex-wrap: wrap;
	width: 100%;
}
.col-left {
	flex: 2;
	padding-right: 12px;
}
.col-right {
	flex: 1;
	padding-left: 12px;
}
.column {
	margin-right: 24px;
	margin-bottom: 24px;
}
.column:last-of-type {
	margin-right: 0;
}
.col-1 {
	flex: 1;
}
.col-2 {
	flex: 2;
}
.col-3 {
	flex: 3;
}
.col-4 {
	flex: 4;
}
.col-5 {
	flex: 5;
}
.col-6 {
	flex: 6;
}
.col-7 {
	flex: 7;
}
.col-8 {
	flex: 8;
}
.col-9 {
	flex: 9;
}
.col-10 {
	flex: 11;
}
.col-11 {
	flex: 11;
}
.col-12 {
	flex: 12;
}

/* Hyperlinks */
a {
	color: var(--schrift);
}

/* Navigation */
nav {
	display: block;
	width: 100%;
}
nav ul {
	padding-left: 0;
	text-align: center;
}
nav li {
	display: inline-block;
	margin-right: 24px;
}
nav li:last-of-type {
	margin-right: 0;
}
nav li.active a {
	font-weight: bold;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Belfort Pro Demi';
	font-weight: normal;
}
h1 {
	font-size: 185%;
}
small,
.small {
	font-size: 18px;
}
header {
	border-bottom: solid 8px var(--orange);
}
footer {
	border-top: solid 8px var(--orange);
	font-size: 16px;
	text-align: center;
	margin-top: 24px;
}

/* Klappbox */
#klappbox {
	display: none;
	overflow: hidden;
}
#mehr {
	display: inline;
}
#weniger {
	display: none;
}

@media only screen and (max-width: 560px) {
	.col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
	.col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
		flex: 1;
	}
	.col-left,
	.col-right {
		flex: 1;
		/* padding: 0; */
		width: 100%;
	}
}
