@import url("https://fonts.verwaltungsportal.de/import/?family=Poppins:300,400,500,600,700,300i,400i,500i,600i,700i");

html {
	max-width: 1930px;
	margin-left: auto;
	margin-right: auto;
	background: #dee6eb;
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
	scrollbar-color: #245a7a #ffffff;
	scrollbar-width: thin;
}

body {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	color: #444444;
	background: #ffffff;
	font-size: clamp(1rem, 2vw, 1.125rem);
	line-height: 1.5;
}

a {
	color: #c3419a;
}

a:is(:hover, :focus) {
	color: #c3419a;
	text-decoration: underline;
}

b,
strong {
	font-weight: 700;
}

:is(#topbar, main, footer .tab) a {
	text-decoration: underline;
}

#overflow {
	overflow: clip;
	position: relative;
}

/* #region --------------------------------------- logo ----------------------------------------- */

#logo {
	display: inline-block;
}

#logo img {
	display: block;
}

@media (max-width: 991px) {
	#logo {
		margin: 15px 0;
	}

	#logo img {
		max-width: calc(100vw - 120px);
		width: 100%;
	}

	#logo .row {
		margin-left: -15px;
		margin-right: -15px;
	}
}

@media (min-width: 992px) {
	#logo {
		position: absolute;
		padding: 30px 20px;
		background-color: #fff;
		border-bottom-left-radius: 20px;
		border-bottom-right-radius: 20px;
	}
}

/* #endregion ----------------------------------- logo ------------------------------------------ */

/* #region ------------------------------------ navigation -------------------------------------- */

/* burgermenu for tablet */

@media (max-width: 991px) {
	nav.horizontally {
		position: static !important;
	}

	#burgerButton {
		font-size: 0;
		border: none !important;
		display: block;
		height: 50px;
		width: 60px;
		border-radius: 2px;
		padding: 6px 8px;
		cursor: pointer;
		background-color: #ffffff;
		box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
	}

	#burgerButton::before,
	#burgerButton::after,
	#burgerButtonInner {
		background-color: #c3419a;
		border-radius: 2px;
		position: absolute;
		width: 40px;
		height: 3px;
		left: 10px;
		transition:
			transform 200ms linear,
			opacity 200ms linear;
	}

	#burgerButton[aria-expanded="true"] #burgerButtonInner {
		transform: rotate(-45deg) translate(-6px, 6px);
	}

	#burgerButton[aria-expanded="true"]::before {
		opacity: 0;
	}

	#burgerButton[aria-expanded="true"]:after {
		transform: rotate(45deg) translate(-4px, -6px);
	}

	#burgerButtonInner {
		top: 16px;
	}

	#burgerButton::before {
		top: 24px;
		content: "";
	}

	#burgerButton::after {
		top: 32px;
		content: "";
	}

	.navbar-nav {
		padding: 20px 10px;
	}

	.navbar-collapse {
		width: calc(100% - 90px);
		max-width: 300px;
		top: 0;
		background: #faecf6;
		position: fixed;
		left: -100%;
		bottom: 0;
		z-index: 100;
		height: auto !important;
		opacity: 0;
		pointer-events: none;
		visibility: hidden;
		overflow-y: auto;
		transition:
			left 300ms linear,
			opacity 300ms linear,
			box-shadow 600ms linear;
		box-shadow: 250px 0 50vw 50vw rgba(255, 255, 255, 0);
	}

	.navbar-collapse:is([aria-expanded="true"], .in) {
		left: 0;
		opacity: 1;
		pointer-events: auto;
		visibility: visible;
		box-shadow: 250px 0 50vw 50vw rgba(0, 0, 0, 0.6);
	}

	.navbar-header {
		position: fixed;
		top: 15px;
		right: 15px;
		z-index: 101;
	}

	.dropdown-toggle-button-wrapper {
		top: 8px;
		right: 0;
	}

	.dropdown-toggle-button-wrapper2 {
		top: 2px;
		right: 0;
	}
}

/* menu desktop */

@media (min-width: 992px) {
	.sticky-wrapper {
		left: 0;
		right: 0;
		border-top: solid #fff 20px;
	}

	nav.horizontally {
		transition:
			background 300ms linear,
			box-shadow 300ms linear;
		background: linear-gradient(90deg, rgb(255, 255, 255) 21.5%, rgb(250, 236, 246) 21.5%);
	}

	.is-sticky nav.horizontally {
		box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.12);
	}

	#menu-bg > .row {
		min-height: 100px;
		padding: 28px 0px 28px 14px;
	}

	#menu-bg::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 50vw;
		right: -50vw;
		max-width: 470px;
	}

	.is-sticky #menu-bg::before {
		display: none;
	}

	nav.horizontally .navbar-nav {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}

	nav.horizontally li[class*="toplevel"] > ul {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1000;
	}

	nav.horizontally [class*="secondlevel"] > ul {
		position: absolute;
		left: 100%;
		top: 0;
	}

	nav.horizontally .navbar-nav li {
		position: relative;
	}

	nav.horizontally .navbar-nav li :is([class*="toplevel"] > ul, [class*="secondlevel"] > ul) {
		display: block !important;
		pointer-events: none;
		opacity: 0;
		visibility: hidden;
		transition: opacity 300ms linear;
	}

	nav.horizontally .navbar-nav li.open > ul {
		pointer-events: none !important;
		opacity: 0 !important;
		visibility: hidden;
	}

	nav.horizontally .navbar-nav li:is(:hover) > ul,
	nav.horizontally .navbar-nav li[class*="secondlevel"] > ul[style*="block"] {
		pointer-events: auto !important;
		opacity: 1 !important;
		visibility: visible;
	}

	nav.horizontally .navbar-nav li:is(:hover, :focus) > ul {
		z-index: 1003;
	}
}

@media (min-width: 1200px) {
	#menu-bg > .row {
		padding-left: 30px;
	}

	.horizontally > .row {
		max-width: 1440px;
		width: 100%;
	}
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
	color: #306d92;
	font-weight: 400;
	text-align: left;
	padding: 14px 5px;
	position: relative;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
	transition: border 300ms linear;
	border-radius: 10px;
	border: solid 1px transparent;
}

@media (max-width: 991px) {
	nav.horizontally li[class*="toplevel"] + li {
		margin-top: 2px;
	}

	nav.horizontally a[class*="toplevel"].dropdown-toggle {
		padding-right: 35px;
	}
}

@media (min-width: 992px) {
	nav.horizontally a[class*="toplevel"] {
		padding: 10px 4px;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
	}
}

/* toplevel-over */

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within) > a,
nav.horizontally li[class*="toplevel"] > a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"].open > a,
nav.horizontally li[class*="toplevel"].open > a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"][class*="_over"] > a,
nav.horizontally li[class*="toplevel"][class*="_over"] > a:is(:hover, :focus) {
	border: solid 1px #c3419a;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
	background-color: #faecf6;
	border-radius: 20px;
}

@media (max-width: 991px) {
	nav.horizontally [class*="toplevel"] > ul {
		padding: 15px 0;
	}

	nav.horizontally [class*="secondlevel"] > ul {
		padding: 15px 0 15px 15px;
	}
}

@media (min-width: 992px) {
	nav.horizontally [class*="toplevel"] ul {
		padding: 25px 20px;
	}

	nav.horizontally [class*="toplevel"] > ul {
		margin-top: 35px;
		margin-left: -25px;
	}

	.is-sticky nav.horizontally [class*="toplevel"] > ul {
		margin-top: 21px;
	}

	nav.horizontally [class*="secondlevel"] > ul {
		margin-top: -25px;
		margin-left: 40px;
	}

	nav.horizontally :is([class*="toplevel"], [class*="secondlevel"]) > ul::before {
		content: "";
		position: absolute;
		display: block;
	}

	nav.horizontally [class*="toplevel"] > ul::before {
		height: 35px;
		left: 0;
		right: 0;
		top: -35px;
	}

	nav.horizontally [class*="secondlevel"] > ul::before {
		width: 40px;
		top: 0;
		bottom: 0;
		left: -40px;
	}
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
	color: #1f1f1f;
	font-weight: 400;
	text-align: left;
	padding: 10px;
	font-size: 1.125rem;
	line-height: 1.2;
	text-decoration: none;
	border-radius: 10px;
}

@media (max-width: 991px) {
	nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
		padding-left: 15px;
		padding-right: 15px;
	}

	nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
		padding-right: 35px;
	}
}

/* secondlevel + thirdlevel over */

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within) > a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]) > a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open > a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open > a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"] > a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"] > a:is(:hover, :focus) {
	background: #c3419a;
	color: #ffffff;
}

/* #endregion -------------------------------- navigation --------------------------------------- */

/* #region ------------------------------------- resp-gaps -------------------------------------- */

:is(#tabs, #blog, #feedback) > .row,
#blog .tab_link_entries {
	row-gap: 30px;
}

#footer > .row {
	row-gap: 40px;
}

#innerfooter > .row {
	row-gap: 20px;
}

/* #endregion ---------------------------------- resp-gaps -------------------------------------- */

/* #region ------------------------------------ banner ------------------------------------------ */

#slider {
	max-height: clamp(300px, 58vw, 400px);
	position: relative;
}

@media (min-width: 992px) {
	body.index #slider {
		max-height: clamp(300px, 70vw, 566px);
	}

	#headerpic a.nivo-prevNav {
		left: 65px;
	}

	#headerpic a.nivo-nextNav {
		right: 65px;
	}
}

#headerpic {
	padding: 0;
	overflow: hidden;
	position: relative;
}

/* header text */

#header-text {
	position: relative;
	z-index: 10;
	padding-top: clamp(60px, 20vw, 60px);
	padding-bottom: clamp(40px, 12vw, 125px);
	text-align: right;
}

@media (min-width: 1200px) {
	#header-text {
		padding-top: clamp(60px, 20vw, 60px);
		padding-left: clamp(30px, 4vw, 55px);
	}
}

body:not(.index) #header-text {
	padding-bottom: clamp(40px, 12vw, 125px);
}

#header-text {
	background-color: rgba(48, 109, 146, 0.01);
}

#header-text::before {
	background-color: rgba(48, 109, 146, 1);
	border-bottom-left-radius: 150px;
}

#header-text::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100vw;
	left: 0;
}

#header-text > * {
	position: relative;
	z-index: 1;
}

#header-text {
	color: #fff;
	font-size: 1.125rem;
}

#header-text :is(b, strong) {
	font-size: 1.25rem;
}

#header-text :is(h1, h2, h3, h4, h5, h6) :is(i, em) {
	color: #fff;
	font-size: 1.625rem;
	font-weight: 400;
	text-transform: none;
	font-style: normal;
}

#header-text :is(h1, h2, h3, h4, h5, h6),
#header-text :is(h1, h2, h3, h4, h5, h6) :is(b, strong) {
	color: #fff;
	font-size: clamp(1.875rem, 5vw, 2.6875rem);
	text-transform: uppercase;
}

#header-text :is(h1, h2, h3, h4, h5, h6) :is(b, strong) {
	font-size: inherit;
}

#header-text a {
	color: #c3419a;
	background-color: #fff;
	font-weight: 700;
	font-size: 1rem;
	padding: 12px 21px;
	border-radius: 23px;
	top: 12px !important;
	position: relative;
}

#header-text a:is(:hover, :focus) {
	color: #fff;
	background-color: #c3419a;
	text-decoration: none;
}

/* banner */

#headerpic,
#slider {
	overflow: hidden;
	position: relative;
}

#slider {
	height: 100%;
}

@media (min-width: 992px) {
	.index #slider {
		height: 100%;
		left: 0;
		right: 50%;
		width: 50%;
	}

	.theme-nivo .nivo-controlNav {
		text-align: left !important;
		bottom: 30px !important;
	}
}

@media (min-width: 1200px) {
	body.index .slider-wrapper {
		height: 300px !important;
	}

	body.index .slider-wrapper {
		position: absolute !important;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		height: auto !important;
	}

	#headerpic a.nivo-prevNav {
		left: 30px;
	}

	#headerpic a.nivo-nextNav {
		left: 119px;
	}

	.theme-nivo .nivo-directionNav a {
		bottom: 13% !important;
		top: unset !important;
	}

	.theme-nivo .nivo-controlNav {
		text-align: left;
		left: 3% !important;
		bottom: 19px;
	}
}

.slider-mask {
	display: none;
}

#headerpic .nivo-main-image {
	min-height: 100% !important;
}

/* #endregion --------------------------------- banner ------------------------------------------ */

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

#content {
	text-align: left;
	padding: clamp(40px, 4vw, 50px) 0 clamp(40px, 8vw, 90px) 0;
}

.fancyarea {
	position: relative;
	overflow: hidden;
	padding-bottom: 40px;
	padding-top: 40px;
}

.fancyarea .tabContent {
	display: block;
	color: rgba(48, 109, 146, 0.07);
	font-weight: 700;
	font-size: clamp(80px, 10vw, 180px);
	text-transform: uppercase;
	line-height: 1;
	margin-left: -15px;
	margin-bottom: calc(clamp(20px, 4vw, 70px) * -1);
	pointer-events: none;
}

.fancyarea .tab,
#nw13 .tab_link_entry {
	padding: clamp(30px, 9vw, 32px) clamp(15px, 2vw, 30px);
	color: #444444;
	position: relative;
	z-index: 2;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0px 21px 40px 0px rgba(82, 71, 47, 0.2);
	-webkit-box-shadow: 0px 21px 40px 0px rgba(82, 71, 47, 0.2);
	-moz-box-shadow: 0px 21px 40px 0px rgba(82, 71, 47, 0.2);
	hyphens: auto;
	font-size: 1.125rem;
   margin-bottom: 30px;
}

.fancyarea .tab3 a {
	color: #fff;
	background-color: #306d92;
	font-weight: 700;
	font-size: 1rem;
	padding: 14px 48px;
	border-radius: 20px;
	text-decoration: none !important;
	outline: 2px solid #faecf6;
	margin-top: 65px;
   display: inline-block;
}

.fancyarea .tab3 a:is(:hover, :focus) {
	background-color: #fff;
	color: #306d92;
}

/* #region ------------------------------------- info ------------------------------------------- */

#info {
	background-color: rgba(220, 127, 193, 0.15);
}

#info .tabContent > .template-page > .row {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

@media (max-width: 767px) {
	#info .tab2 {
		margin-top: 30px;
	}
}

@media (min-width: 992px) {
	#info > .row > div:first-child {
		padding-right: 30px;
	}

	#info > .row > div:last-child {
		padding-left: 30px;
	}
}

#info .tabHeadline {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 2.1875rem;
	color: #306d92;
	margin-bottom: 48px;
}

#info a:is([href*="mailto"], [href*="tel"]) {
	text-decoration: underline;
}

/* #endregion ---------------------------------- info ------------------------------------------- */

/* ------------------------------------------------ @26tab ----------------------------------------------- */

#tab26 {
	margin: auto;
	width: 100%;
	max-width: 1200px;
}

#tab26 .tab {
	font-size: 1rem;
	background: #ffffff;
	box-shadow: 0px 11px 15px 0px rgba(82, 71, 47, 0.2);
	-webkit-box-shadow: 0px 11px 15px 0px rgba(82, 71, 47, 0.2);
	-moz-box-shadow: 0px 11px 15px 0px rgba(82, 71, 47, 0.2);
}

#tab26 .tab :is(h1, h2, h3, h4, h5, h6) {
	font-size: 1.25rem;
	font-weight: 700;
	color: #306d92;
}

/* ----------------------- @26tab slider arrows + dots ------- DO NOT DELETE ----------------------- */

#tab26 .slick-slide {
	padding: 15px;
}

#tab26 .slick-dots button,
#tab26 .slick-button {
	background: transparent;
	border: none;
	padding: 5px;
}

#tab26 .slick-button {
	font-size: 0px;
	position: relative;
	top: 4px;
}

#tab26 .slick-prev {
	margin-left: 14px;
}

@media (max-width: 767px) {
	#tab26 .slick-next {
		margin-left: 14px;
	}
}

#tab26 .slick-button::before {
	display: block;
	line-height: 9px;
	height: 20px;
	font-size: 40px;
	color: #000000;
}

#tab26 .slick-button::after {
	content: "";
	position: absolute;
	pointer-events: none;
	left: 50%;
	top: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.05);
	transition:
		width 200ms linear,
		height 200ms linear;
	z-index: -1;
}

#tab26 .slick-button:focus::after,
#tab26 .slick-button:hover::after {
	width: 28px;
	height: 28px;
}

@media (max-width: 767px) {
	#tab26 .slick-button::after,
	#tab26 .slick-button::after {
		width: 28px;
		height: 28px;
	}
}

#tab26 .slick-dots {
	padding: 0 15px;
	list-style: none;
}

#tab26 .slick-dots > li {
	display: inline-block;
	position: relative;
	top: 50%;
	font-size: 0px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 1px solid #aaaaaa;
	transform: translateY(-50%);
}

#tab26 .slick-dots,
#tab26 .slick-button {
	display: inline-block !important;
}

@media (max-width: 767px) {
	#tab26 .slick-dots {
		display: none !important;
	}
}

#tab26 .slick-dots > li.slick-active {
	background: #306d92;
	transition: background 200ms linear;
}

#tab26 .slick-dots > li + li {
	margin-left: 10px;
}

#tab26 .slick-prev::before {
	content: "\2039";
}

#tab26 .slick-next::before {
	content: "\203A";
}

/* ------------ @26tab slider 1 stop/play button for accessibility ------- DO NOT DELETE ------------ */

#tab26 .slick-animate-control {
	position: relative;
	z-index: 2;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	top: -5px;
	left: 10px;
	border: 1px solid #ffffff;
	background-color: #000;
	background-size: 16px 16px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M12 36V12h24v24Z' fill='%23fff'/%3E%3C/svg%3E");
}

#tab26 .slick-animate-control.slick-pause {
	background-size: 20px 20px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M16 37.85v-28l22 14Z' fill='%23fff'/%3E%3C/svg%3E");
}

/* ----------------------------------------------- @13nw news -------------------------------------------- */
#neuigkeiten {
	background-color: rgba(220, 127, 193, 0.15);
}

#nw13 > .row {
	row-gap: clamp(30px, 3vw, 45px);
}

#nw13 .tab_link_entries {
	display: grid;
	gap: 30px;
}

@media (min-width: 576px) {
	#nw13 .tab_link_entries {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	#nw13 .tab_link_entries {
		grid-template-columns: repeat(3, 1fr);
	}
}

#nw13 .tab_link_entry {
	width: 100%;
	display: grid;
}

#nw13 .tab_link_title {
	order: 1;
	margin-bottom: 8px;
}

#nw13 .vorschau {
	order: 2;
	opacity: 1;
}

#nw13 .tab_date {
	order: 3;
}

#nw13 .tab_link_title a {
	font-weight: 700;
	color: #0c5c82;
	font-size: 1.25rem;
	text-transform: uppercase;
}

#nw13 .tab_link_mehr {
	color: transparent;
	font-size: 0;
}

#nw13 .tab_link_mehr a {
	color: #ffffff;
	display: inline-block;
	font-size: clamp(1rem, 2vw, 1.3125rem);
	font-weight: 700;
	font-style: italic;
}

#nw13 .tab_link_mehr a::after {
	content: " \00BB";
}

#nw13 .tab_link_entry .tab_link_mehr,
#nw13 .tab_spacer,
#nw13 .tab_preview_picture {
	display: none;
}

/* #region ---------------------------------- h1 - h6, newslink --------------------------------- */

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
	color: #306d92;
	font-weight: 700;
	line-height: 1.2;
	font-family: "Poppins", sans-serif;
	margin-bottom: 15px;
}

h1,
.h1,
.legacy_h1,
:is(#tabs-headline, #service, #blog, #feedback) h2 {
	font-size: clamp(1.875rem, 5vw, 2.5rem);
}

h2,
.h2,
.legacy_h2 {
	font-size: clamp(1.75rem, 4.5vw, 1.875rem);
}

h3,
.h3,
.legacy_h3 {
	font-size: clamp(1.6875rem, 4vw, 1.75rem);
}

h4,
.h4,
.legacy_h4 {
	font-size: 1.625rem;
}

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

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

/* #endregion ---------------------------------- h1 - h6, newslink ------------------------------ */

/* #region ----------------------------------- footer ------------------------------------------- */

footer {
	font-size: 1.125rem;
	padding-bottom: 30px;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}

body.index footer {
	padding-bottom: clamp(60px, 10vw, 174px);
}

body:not(.index) footer {
	padding-top: 30px;
}

@media (max-width: 1199px) {
	body.index footer {
		padding-bottom: 30px;
		padding-top: 30px;
	}
}

footer > .row {
	background: rgba(48, 109, 146, 0.95);
	border-radius: 20px;
}

footer > .row {
	padding: clamp(40px, 10vw, 70px) clamp(15px, 3vw, 45px) clamp(40px, 4vw, 40px) clamp(15px, 3vw, 45px);
	box-shadow: 8px 10px 40px 0px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 8px 10px 40px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 8px 10px 40px 0px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
	footer .row > * + * {
		border-top: 1px solid rgba(255, 255, 255, 0.3);
		margin-top: 25px;
		padding-top: 25px;
	}
}

@media (min-width: 1200px) {
	footer > .row {
		max-width: 1170px;
		width: 100%;
	}

	body.index footer > .row {
		margin-top: -211px;
	}

	.index footer {
		margin-top: 148px;
		padding-top: 20px;
	}
}

@media (min-width: 1200px) {
	.index footer {
		margin-top: 280px;
		padding-top: 20px;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

footer > .row,
footer :is(h1, h2, h3, h4, h5, h6, a) {
	color: #ffffff;
}

footer .tabHeadline {
	margin-bottom: 25px;
	text-transform: uppercase;
	font-size: 2.1875rem;
}

footer .tabHeadline::after {
	content: "";
	display: block;
	height: 2px;
	width: 114px;
	background-color: #fff;
	margin: 10px 0 24px 0;
}

footer .template-page a {
	text-decoration: underline;
}

/* --------------------------------------------- innerfooter -------------------------------------------- */

#innerfooter ul {
	border-bottom: 2px solid rgba(255, 255, 255, 1);
	padding: 0;
}

#innerfooter li:not(:first-child) {
	border-top: 2px solid rgba(255, 255, 255, 1);
}

#innerfooter a {
	text-decoration: none;
	position: relative;
	display: block;
	font-size: 1.125rem;
	font-weight: 700;
	padding: 13px 10px 13px 19px;
}

#innerfooter a::before {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	top: 22px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0);
	transition: background 300ms linear;
}

#innerfooter a:hover::before,
#innerfooter a:focus::before {
	background: #ffffff;
}

#innerfooter a:is(:hover, :focus) {
	color: #fff;
}

/* #endregion -------------------------------- footer ------------------------------------------- */

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

#vernetzt {
	gap: 15px;
	text-align: left;
	font-size: 0.75rem;
	color: #ffffff;
	line-height: 1.3;
	font-weight: 400;
	text-decoration: none;
	margin-top: 45px;
}

#vernetzt span span {
	display: block;
}
