/* ### -- general section -- ### */

@font-face { font-family: 'OpenSans';
	src: url('../fonts/OpenSans-Regular.ttf') format('truetype'); }

@font-face { font-family: 'OpenSans';
	src: url('../fonts/OpenSans-Italic.ttf') format('truetype');
	font-style: italic; }

@font-face { font-family: 'OpenSans';
	src: url('../fonts/OpenSans-Bold.ttf') format('truetype');
	font-weight: bold; }
@font-face { font-family: 'OpenSans';
	src: url('../fonts/OpenSans-BoldItalic.ttf') format('truetype');
	font-weight: bold;
	font-style: italic; }

body {
	font-family: 'OpenSans', sans-serif !important;

}

#navigation-container a, #navigation-container a:hover, #navigation-container a:visited,
#navigation-container p, #navigation-container p:hover, #navigation-container p:visited,
footer a, footer a:hover, footer a:visited{
	color: #fff;
}

/* ### -- header section -- ### */

header {
	background: #13306a;
	border-bottom: 3px solid #fff;
	color: #fff;
}

header, header a, header a:hover, header a:visited, #navigation-container a, #navigation-container p {
	text-decoration: none;
}

.logo-container {
	padding-top: 24px;
	padding-bottom: 24px;
	background-image: url(../img/siegel.svg);
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: 8% 24px;
	background-position-x: 8%; /* invalid IE 9 Stuff */
	background-position-y: 24px; /* invalid IE 9 Stuff */
	background-size: 180% 180%;
	position: relative;
}

#logo {
	height: 90px;
	width: 450px;
}

header span {
	font-size: 32px;
	margin: 8px 0;
	text-align: right;
	display: block;
	line-height: 1;
}

/* ### -- navigation section -- ### */

#navigation-container {
	font-size: 20px;
	text-transform: uppercase;
}

#navigation-container ol {
	margin: 0 auto;
	padding: 0;
}


#navigation-affix {
	width: 100%;
	z-index: 100;
	top: 0;
	border: 0;
	background: #8ab8cf;
	transition: all 0.3s ease 0s;
}

#navigation-affix.affix {
	box-shadow: 0 2px 4px rgba(0,0,0,.2);
}

#navigation-container ol, #breadcrumps > ol {
	list-style: none;
	margin-bottom: 0;
}

#navigation-container p {
	margin-bottom: 0;
}

#navigation-container a, #navigation-container p {
	padding: 6px 0;
	display: block;
}

#navigation-container #navigation-toggle, #navigation .search-form {
		display: none;
	}

/* ### -- footer section -- ### */

footer {
	color: #fff;
	background: #6f6f6e;
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 5px;
	padding-top: 5px;
	margin-top: 10;
}

footer h4 {
	text-transform: uppercase;
	font-weight: 400;
}

/* ### -- combined media queries (bootsrap breakpoint @screen-sm-min, replace values if changed) -- ### */

@media (min-width: 768px) {

	header .container-fluid, #navigation-container .container-fluid {
		max-width: 1200px;
	}

	header span {
		position: absolute;
		bottom: 0;
		right: 15px;
	}

	#navigation-container ol li, #breadcrumps > ol > li {
		display: inline-block;
	}

	#navigation-container a {
		position: relative;
	}

	#navigation-container ol li:not(:last-child) {
		margin-right: 12px;

	}

	#navigation-container a::before {
		content: "";
		background: #fff;
		width: 100%;
		position: absolute;
		height: 2px;
		bottom: 6px;
		left: 0;
		visibility: hidden;
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		-webkit-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}

	#navigation-container li:hover a::before {
		visibility: visible;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}

	#navigation {
		display: block !important;
	}
}

@media (max-width: 767px) {

	#logo {
		height: auto;
		width: 100%;
		max-width: 300px;
	}

	.logo-container {
		padding-top: 16px;
		padding-bottom: 8px;
	}

	header span {
		font-size: 24px;
	}

	.logo-container {
		background-position: 16% 16px;
	}

	#navigation-container a, #navigation-container p {
		padding: 8px 0;
	}

	#navigation-container #navigation-toggle, #navigation .search-form {
		display: block;
	}

	#navigation-container #navigation-toggle {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	#navigation-container ol li {
		border-top: 1px solid rgba(0,0,0,.2);
	}

}