@import url("https://fonts.verwaltungsportal.de/import/?family=Urbanist:400,700");
body {
	font-family: "Urbanist";
	color: #252525;
	background: #ffffff;
	font-size: 1rem;
	/* 1rem = 16px */
	line-height: 1.5;
}

@media (min-width: 768px) {
	body {
		font-size: 1.125rem;
	}
}

a {
	color: #b53e26;
}

a:hover,
a:focus {
	color: #b53e26;
	text-decoration: underline;
}

b,
strong {
	font-weight: 700;
}

#overflow {
	overflow: hidden;
}

/* ------------------------------------------------- logo ------------------------------------------------ */

#logo {
	display: inline-block;
}

.logos {
	overflow: hidden;
}

.logo2 {
	padding-right: -0px;
}

#logo img {
	display: block;
}

@media (max-width: 991px) {
	#logo img {
		max-width: 210px;
		width: 100%;
	}
	.logos {
		margin-top: 10px;
		margin-bottom: 10px;
	}
}

.footerLogo img {
	max-height: 94px;
}
/* --------------------------------------- navigation --------------------------------------- */

/* burgermenu for tablet */

@media (max-width: 991px) {
	#burgerButton {
		font-size: 0;
		border: none !important;
		position: relative;
		z-index: 1002;
		display: block;
		width: 46px;
		height: 40px;
		border-radius: 2px;
		cursor: pointer;
		background-color: #ffffff;
		padding: 3px;
	}
	#burgerButton:before,
	#burgerButton:after,
	#burgerButtonInner {
		background-color: #b53e26;
		border-radius: 2px;
		position: absolute;
		width: 40px;
		height: 3px;
		left: 2px;
		-webkit-transition:
			transform 200ms linear,
			opacity 200ms linear;
		-moz-transition:
			transform 200ms linear,
			opacity 200ms linear;
		-ms-transition:
			transform 200ms linear,
			opacity 200ms linear;
		-o-transition:
			transform 200ms linear,
			opacity 200ms linear;
		transition:
			transform 200ms linear,
			opacity 200ms linear;
	}
	#burgerButton[aria-expanded="true"] #burgerButtonInner {
		-webkit-transform: rotate(-45deg) translate(-6px, 6px);
		transform: rotate(-45deg) translate(-6px, 6px);
	}
	#burgerButton[aria-expanded="true"]:before {
		opacity: 0;
	}
	#burgerButton[aria-expanded="true"]:after {
		-webkit-transform: rotate(45deg) translate(-4px, -6px);
		transform: rotate(45deg) translate(-4px, -6px);
	}
	#burgerButtonInner {
		top: 10px;
	}
	#burgerButton:before {
		top: 18px;
	}
	#burgerButton:after {
		top: 26px;
	}
	#burgerButton:before,
	#burgerButton:after {
		content: "";
		display: block;
	}
	.navbar-nav {
		margin: 20px 0;
	}
	.navbar-collapse {
		top: 0;
		background: #f8f3e6;
		position: fixed;
		left: -100%;
		bottom: 0;
		z-index: 100;
		height: auto !important;
		-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
		opacity: 0;
		pointer-events: none;
		overflow-y: auto;
		-webkit-transition:
			left 300ms linear,
			opacity 300ms linear;
		-moz-transition:
			left 300ms linear,
			opacity 300ms linear;
		-ms-transition:
			left 300ms linear,
			opacity 300ms linear;
		-o-transition:
			left 300ms linear,
			opacity 300ms linear;
		transition:
			left 300ms linear,
			opacity 300ms linear;
	}
	.navbar-collapse.collapse.in {
		left: 0;
		opacity: 1;
		pointer-events: auto;
	}
	.navbar-header {
		height: 50px;
		width: 60px;
		border-radius: 2px;
		padding: 6px 8px;
		background-color: #ffffff;
		position: fixed;
		top: 15px;
		right: 15px;
		z-index: 101;
		-webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
		box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
	}
	.navbar-collapse.in:after {
		content: "";
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: -1;
		display: block;
		width: 90px;
		background-color: rgba(0, 0, 0, 0.5);
	}
}

@media (min-width: 575px) and (max-width: 991px) {
	.navbar-collapse {
		width: 60%;
	}
	.navbar-collapse.collapse.in:after {
		width: 40%;
	}
}

/* menu desktop */

@media (min-width: 992px) {
	nav.horizontally {
		background-color: #f8f3e6;
		z-index: 9;
		position: relative;
	}
	nav.horizontally .navbar-nav {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
		flex-wrap: wrap;
	}
	nav.horizontally .navbar-nav > li {
		flex-grow: 1;
	}
	nav.horizontally .dropdown-menu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1000;
	}
	nav.horizontally .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
		position: absolute;
		left: 100%;
		top: 0;
	}
	nav.horizontally .navbar-nav > li,
	nav.horizontally .navbar-nav > li > .dropdown-menu > li {
		position: relative;
	}
	/* Fade in Hover Start */
	.navbar-default .navbar-nav li[class*="toplevel"] > ul,
	.navbar-default .navbar-nav li[class*="secondlevel"] > ul {
		display: block !important;
		pointer-events: none;
		opacity: 0;
		-webkit-transition: opacity 300ms linear;
		-moz-transition: opacity 300ms linear;
		-ms-transition: opacity 300ms linear;
		-o-transition: opacity 300ms linear;
		transition: opacity 300ms linear;
	}
	.navbar-default .open > .dropdown-menu,
	.navbar-default .navbar-nav li[class*="toplevel"]:hover > ul,
	.navbar-default .navbar-nav li[class*="secondlevel"]:hover > ul,
	.navbar-default .navbar-nav li[class*="secondlevel"] > ul[style*="block"] {
		pointer-events: auto !important;
		opacity: 1 !important;
	}
	.navbar-default .navbar-nav li[class*="toplevel"]:focus-within > ul,
	.navbar-default .navbar-nav li[class*="secondlevel"]:focus-within > ul {
		pointer-events: auto !important;
		opacity: 1 !important;
	}
	.navbar-default .nav .open > .dropdown-menu {
		pointer-events: none !important;
		opacity: 0 !important;
	}
	/* Pseudo */
	.navbar-default .navbar-nav > li > .dropdown-menu::before {
		content: "";
		position: absolute;
		display: block;
		height: 30px;
		left: 0;
		right: 0;
		top: -20px;
	}
	/* 3rd */
	.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu::before {
		content: "";
		position: absolute;
		display: block;
		width: 10px;
		top: 0;
		bottom: 0;
		left: -10px;
	}
	/* Fade in Hover End */
}

/* ---------------------------------------------- toplevel ---------------------------------------------- */

.navbar-default .navbar-nav > li > a {
	color: #252525;
	font-weight: 700;
	padding: 10px 35px 10px 35px;
	position: relative;
	font-size: 1.375rem;
	line-height: 1.2;
	text-decoration: none;
	text-align: left;
}

@media (max-width: 991px) {
	.navbar-default .navbar-nav > li {
		border-bottom: 1px solid rgba(46, 60, 72, 0.2);
	}
}

@media (min-width: 992px) {
	.navbar-default .navbar-nav > li + li {
		margin-left: 0;
	}
	.navbar-default .navbar-nav > li > a {
		padding: 40px 0;
		display: flex;
		align-content: center;
		align-items: center;
		justify-content: center;
		height: 100%;
		text-align: center;
	}
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (min-width: 992px) {
	.navbar-default .navbar-nav > li > a {
		display: block;
	}
}

/* -------------------------------------------- toplevel-over ------------------------------------------- */

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus,
.navbar-nav > li.open > a,
.navbar-nav > li.open > a:hover,
.navbar-nav > li.open > a:focus,
.navbar-nav > li[class$="_over"] > a,
.navbar-nav > li[class$="_over"] > a:hover,
.navbar-nav > li[class$="_over"] > a:focus {
	color: #252525;
	background-color: rgba(250, 225, 221, 0.5);
}

.navbar-nav > li > a:hover::before,
.navbar-nav > li > a:focus::before,
.navbar-nav > li.open > a::before,
.navbar-nav > li.open > a:hover::before,
.navbar-nav > li.open > a:focus::before,
.navbar-nav > li[class$="_over"] > a::before,
.navbar-nav > li[class$="_over"] > a:hover::before,
.navbar-nav > li[class$="_over"] > a:focus::before {
	opacity: 1;
}

/* -------------------------------------- secondlevel + thirdlevel dropdown-box -------------------------------------- */

.navbar-default .navbar-nav > li > .dropdown-menu,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
	background-color: rgba(250, 225, 221, 0.8);
	-webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
	.navbar-default .navbar-nav > li > .dropdown-menu {
		padding: 15px;
	}
}

@media (min-width: 992px) {
	.navbar-default .navbar-nav > li > .dropdown-menu,
	.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
		padding-top: 18px;
		padding-bottom: 18px;
		margin-top: 18px;
		margin-bottom: 18px;
	}
	.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
		margin-top: -18px;
		margin-left: 10px;
	}
}

/* --------------------------------------------- secondlevel + thirdlevel -------------------------------------------- */

.navbar-default .navbar-nav > li > .dropdown-menu > li > a,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a {
	color: #252525;
	font-weight: 400;
	text-align: left;
	padding: 9px 35px;
	font-size: 1.25rem;
	line-height: 1.2;
	text-decoration: none;
}

/* ------------------------------------------ secondlevel + thirdlevel over ------------------------------------------ */

.navbar-default .navbar-nav > li > .dropdown-menu > li > a::before,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a::before {
	content: "\203A";
	position: absolute;
	left: 25px;
	opacity: 0;
	display: block;
	bottom: 10px;
}

.navbar-nav > li > .dropdown-menu > li > a:hover,
.navbar-nav > li > .dropdown-menu > li > a:focus,
.navbar-nav > li > .dropdown-menu > li.open > a,
.navbar-nav > li > .dropdown-menu > li.open > a:hover,
.navbar-nav > li > .dropdown-menu > li.open > a:focus,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:hover,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:focus {
	background-color: rgba(250, 225, 221, 0.5);
	color: #252525;
}

.navbar-nav > li > .dropdown-menu > li:hover > a::before,
.navbar-nav > li > .dropdown-menu > li > a:hover::before,
.navbar-nav > li > .dropdown-menu > li > a:focus::before,
.navbar-nav > li > .dropdown-menu > li.open > a::before,
.navbar-nav > li > .dropdown-menu > li.open > a:hover::before,
.navbar-nav > li > .dropdown-menu > li.open > a:focus::before,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a::before,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:hover::before,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:focus::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:hover::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:focus::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:hover::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:focus::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:hover::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:focus::before {
	opacity: 1;
}

/* ----------------------------------------------- banner ----------------------------------------------- */

#slider {
	max-height: 300px;
	overflow: hidden;
	position: relative;
}

@media (min-width: 992px) {
	#slider {
		max-height: 400px;
	}

	#headerpic a.nivo-prevNav {
		left: 65px;
	}
	#headerpic a.nivo-nextNav {
		right: 65px;
	}
	#headerpic {
		position: relative;
		width: 100%;
	}
}

@media (max-width: 991px) {
	#headerpic {
		margin: 0 auto;
		position: relative;
		width: 100%;
	}
}

.slider-wrapper,
#slider {
	height: 100%;
}

.slider-mask {
	display: none;
}

/* ------------------------------------------------ content ----------------------------------------------- */

main {
	text-align: left;
	padding: 0;
}

@media (min-width: 992px) {
	main {
		padding: 0;
	}
	#content {
		padding-top: 60px;
		padding-bottom: 60px;
		background-color: #e9edc9;
		background-image: url("../img/3135375_content.png");
		background-position: left top;
		background-repeat: no-repeat;
	}
}

#content {
	padding-top: 40px;
	padding-bottom: 40px;
	background-color: #e9edc9;
}

/* ------------------------------------------------ news ----------------------------------------------- */

#news {
	background: transparent;
	padding-top: 50px;
	padding-bottom: 50px;
	margin-top: -200px;
}

@media (min-width: 768px) {
	#news .tab_link_entries {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

#news .tab_link_entry {
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
	background: #ffffff;
	position: relative;
	width: 100%;
	padding: 160px 30px 30px 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

@media (min-width: 768px) and (max-width: 991px) {
	#news .tab_link_entry {
		width: calc(50% - 15px);
	}
	#news .tab_link_entry:nth-child(2n + 1) {
		margin-right: 15px;
	}
	#news .tab_link_entry:nth-child(2n + 2) {
		margin-left: 15px;
	}
	#news .tab_link_entry + .tab_link_entry {
		margin-left: 15px;
		margin-right: 15px;
	}
}

@media (min-width: 992px) {
	#news .tab_link_entry {
		width: calc(33.33% - 20px);
	}
	#news .tab_link_entry:nth-child(3n + 1) {
		margin-right: 15px;
	}
	#news .tab_link_entry:nth-child(3n + 2) {
		margin-right: 15px;
		margin-left: 15px;
	}
	#news .tab_link_entry:nth-child(3n + 3) {
		margin-left: 15px;
	}
	#news .tab_link_entry + .tab_link_entry {
		margin-left: 15px;
		margin-right: 15px;
	}
}

@media (max-width: 767px) {
	#news .tab_link_entry {
		margin-left: 15px;
		margin-right: 0;
		margin-top: 30px;
	}
}

@media (min-width: 768px) {
	#news .tab_link_entry:nth-child(2) {
		margin-top: 0;
	}
	#news .tab_link_entry + .tab_link_entry {
		margin-left: 15px;
		margin-right: 15px;
	}
}

@media (min-width: 992px) {
	#news .tab_link_entry:nth-child(3) {
		margin-top: 0;
	}
}

#news .tab_link_mehr {
	margin-top: 30px;
	color: transparent;
	font-size: 0;
}

#news .tab_link_mehr a {
	background: rgba(0, 0, 0, 0.2);
	color: #252525;
	display: inline-block;
	padding: 4px 18px;
	border-radius: 2px;
	font-size: 0.875rem;
	font-weight: 700;
}

#news .tab_preview_picture {
	width: auto;
	display: block;
	overflow: hidden;
	height: 220px;
	margin: 0;
	position: relative;
	-ms-flex-order: -1;
	order: -1;
}

#news .tab_preview_picture img {
	position: absolute;
	z-index: 2;
	left: 50%;
	top: 50%;
	max-width: 500px;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto !important;
	-ms-interpolation-mode: bicubic;
	transform-origin: top left;
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	-webkit-transition: transform 300ms linear;
	-moz-transition: transform 300ms linear;
	-ms-transition: transform 300ms linear;
	-o-transition: transform 300ms linear;
	transition: transform 300ms linear;
}

#news .tab_link_entry .vorschau {
	opacity: 1;
	font-weight: 400;
}

#news .tab_link_entry .vorschau + div,
#news .tab_link_entry .vorschau + div + div,
#news .tab_link_entry .vorschau + div + div + div {
	display: none;
}

#news .tab_link_title a,
#news .tab_date {
	color: #252525;
	font-size: 1.375rem;
	font-weight: 700;
	text-decoration: none;
}

#news .tab_link_title a::before {
	content: "";
	background: url("../img/Platzhalter.png") center / cover no-repeat;
}

#news .tab_link_title a::before,
#news .tab_link_entry .tab_preview_picture {
	position: absolute;
	display: block;
	top: -1px;
	left: -1px;
	right: -1px;
	height: 120px;
	overflow: hidden;
	margin: 30px;
}

#news a {
	font-weight: 700;
	color: #252525;
}

/* ------------------------------------------ h1 - h6, newslink ----------------------------------------- */

.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
H6,
H5,
H4,
H3,
H2,
H1 {
	color: #252525;
	font-weight: 700;
	line-height: 1.2;
	font-family: "Urbanist";
}

h1,
.h1,
.legacy_h1 {
	font-size: 1.7rem;
}

@media (min-width: 768px) {
	h1,
	.h1,
	.legacy_h1 {
		font-size: 2.0625rem;
	}
}

h2,
.h2,
.legacy_h2 {
	font-size: 1.6rem;
}

@media (min-width: 768px) {
	h2,
	.h2,
	.legacy_h2 {
		font-size: 1.7rem;
	}
}

h3,
.h3,
.legacy_h3 {
	font-size: 1.6rem;
}

h4,
.h4,
.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
.legacy_h4 {
	font-size: 1.5rem;
}

h5,
.h5,
.legacy_h5 {
	font-size: 1.4rem;
}

h6,
.h6,
.legacy_h6 {
	font-size: 1.3rem;
}

#newslinks,
#newsmandate {
	border: 1px solid #252525;
}

/* ------------------------------------------------ search ---------------------------------------------- */

@media (max-width: 992px) {
	.search {
		margin-top: 30px;
	}
}

#search {
	height: 50px;
	background: #ffffff;
	display: inline-block;
	position: relative;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
	margin-top: 30px;
	display: block;
}

#search_input {
	color: #252525;
	font-size: 1rem;
	font-weight: 400;
	background: transparent;
	padding: 0;
	border: 0;
	line-height: 33px;
	padding-left: 30px;
	padding-right: 105px;
	height: 50px;
	width: 100%;
}

#search_submit {
	width: 71px;
	background: #fae1dd url("../img/lupe-icon.png") center no-repeat;
	padding: 0;
	cursor: pointer;
	line-height: 33px;
	border: none;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	font-size: 0;
	-webkit-transition: background-color 300ms linear;
	-moz-transition: background-color 300ms linear;
	-ms-transition: background-color 300ms linear;
	-o-transition: background-color 300ms linear;
	transition: background-color 300ms linear;
}

#search_submit:hover,
#newsletter_submit:hover {
	background-color: #fae1dd;
}

#search_input::-ms-input-placeholder {
	color: #bdcdcd !important;
}

#search_input::-webkit-input-placeholder {
	color: #bdcdcd !important;
}

#search_input::-moz-placeholder {
	opacity: 1;
}

#search_input:-moz-placeholder {
	opacity: 1;
}

/* ----------------------------------------------- footertab ----------------------------------------------- */

@media (max-width: 991px) {
	#footer {
		background-image: url("../img/3135375_footer.png");
		background-repeat: no-repeat;
		background-position: right bottom;
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

@media (min-width: 992px) {
	#footer {
		background-image: url("../img/3135375_footer.png");
		background-repeat: no-repeat;
		background-position: right bottom;
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

#footer .tab .tabHeadline {
	font-size: 1.375rem;
}

/*---maps---*/

.iframetab iframe,
.iframetab .iframe-wrapper-manual-enabling {
	min-width: 100% !important;
	width: 100% !important;
	display: block;
}

/* ----------------------------------------------- footer ----------------------------------------------- */

#footerwrapper {
	background-color: #e9edc9;
	padding-top: 30px;
	padding-bottom: 30px;
	color: #252525;
}

@media (max-width: 767px) {
	footer .row > .col-xs-12:not(:first-child)::before {
		content: " ";
		height: 1px;
		width: 100%;
		display: block;
		margin: 25px 0;
		opacity: 0.2;
	}
	footer .row > .col-xs-12.hidden-xs ~ .col-xs-12::before,
	footer .row > .col-xs-12.hidden-sm ~ .col-xs-12::before {
		display: none;
	}
}

#innerfooter ul {
	padding: 0;
}

#innerfooter li {
	display: inline-block;
}

#innerfooter a {
	color: #252525;
	text-decoration: none;
	display: inline-block;
	font-weight: 400;
	font-size: 1rem;
}

#innerfooter a:hover,
#innerfooter a:focus {
	color: #b53e26;
	text-decoration: underline;
}

#innerfooter li + li::before {
	content: "";
	margin: 0 15px;
}

@media (min-width: 1200px) {
	#innerfooter li + li::before {
		margin: 0 25px;
	}
}

/* --------------------------------------------- vernetzt -------------------------------------------- */

#vernetzt {
	text-align: right;
	font-size: 1rem;
	color: #252525;
	line-height: 1.3;
	margin: 0 auto;
	font-weight: 400;
}

@media (min-width: 768px) {
	#vernetzt {
		float: right;
		margin: 0;
	}
}

#vernetzt b {
	color: #252525;
	font-weight: 400;
}

#vernetzt span {
	color: #252525;
}

#vernetzt span span {
	display: block;
}

#vernetzt img {
	margin-left: 18px;
}

/* ------------------------------------------------ pictures ---------------------------------------------- */

@media (max-width: 768px) {
	#pictures > .row {
		max-width: inherit;
		width: 100%;
	}
	#pictures .col-xs-6,
	#pictures .col-xs-12 {
		padding-left: 0;
		padding-right: 0;
	}
	#pictures .tab img {
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
		margin-bottom: -18px;
	}
}

@media (max-width: 992px) {
	#pictures > .row {
		max-width: inherit;
		width: 100%;
		overflow: hidden;
	}
	#pictures .col-md-4,
	#pictures .col-md-6 {
		padding-left: 0;
		padding-right: 0;
	}
	#pictures .tab img {
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
		margin-bottom: -1px;
	}
}

@media (min-width: 992px) {
	#pictures > .row {
		max-width: inherit;
		width: 100%;
	}
	#pictures .col-lg-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
	#pictures .col-lg-2:nth-child(1) {
		padding-left: 0;
	}
	#pictures .col-lg-2:nth-last-child(1) {
		padding-right: 0;
	}
	#pictures .tab {
		background: transparent;
		position: relative;
		z-index: 1;
		padding: 0;
		overflow: hidden;
		line-height: 1.4em;
		min-height: 100%;
		height: 100%;
		margin-left: auto;
		margin-right: auto;
		-webkit-transition: color 300ms linear;
		-moz-transition: color 300ms linear;
		-ms-transition: color 300ms linear;
		-o-transition: color 300ms linear;
		transition: color 300ms linear;
	}
	#pictures .tab .container,
	#pictures .tab div[class*="col"] {
		position: static;
	}
	#pictures .tab img {
		position: relative;
		display: block;
		left: 50%;
		top: 50%;
		z-index: -1;
		opacity: 1;
		max-width: none;
		min-width: 100%;
		min-height: 100%;
		width: auto;
		height: auto;
		-ms-interpolation-mode: bicubic;
		-moz-transform: translateX(-50%) translateY(0%);
		-webkit-transform: translateX(-50%) translateY(0%);
		-o-transform: translateX(-50%) translateY(0%);
		-ms-transform: translateX(-50%) translateY(0%);
		transform: translateX(-50%) translateY(0%);
		-webkit-transition: opacity 300ms linear;
		-moz-transition: opacity 300ms linear;
		-ms-transition: opacity 300ms linear;
		-o-transition: opacity 300ms linear;
		transition: opacity 300ms linear;
	}
}

@media (max-width: 991px) {
   #pictures .tab img {
	object-fit: cover;
	object-position: center;
	height: 100% !important;
	width: 100% !important;
}

#pictures .tab,
#pictures .tabContent, 
#pictures .tabContent>.template-page {
	width: 100%;
}

#pictures .tab,
#pictures .tabContent, 
#pictures .tabContent>.template-page, 
#pictures .tabContent>.template-page>.row, 
#pictures .tabContent>.template-page>.row p {
	height: 100%;
}
}
