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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
	scrollbar-color: #ac181d #ffffff;
}

body {
	font-family: "Heebo", sans-serif;
	font-weight: 400;
	color: #404040;
	background-color: #f2f2f2;
	font-size: clamp(1rem, 2vw, 1.375rem);
	/* 1rem = 16px */
	line-height: 1.5;
	background-attachment: fixed;
	background-size: cover;
}

@media (min-width: 768px) {
	html {
		position: relative;
	}

	body::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: url("../img/background-overlay.svg") center top / 100% auto repeat-y;
		z-index: 1;
	}
}

a {
	color: #ac181d;
}

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

#content a,
b,
strong {
	font-weight: 600;
}

/* ----------------------------------------------- topbar ----------------------------------------------- */

#topbar {
	color: #404040;
}

#topbar>.row+.row {
	margin-top: 15px;
}

/* #region ------------------------------------ phone + mail -------------------------------------------- */

#mail,
#phone {
	color: #404040;
	display: inline-block;
	font-weight: 400;
	margin-top: 15px;
	line-height: 1;
	position: relative;
	min-height: 18px;
	font-size: 0.875rem;
}

#mail a,
#phone a {
	text-decoration: underline;
}

@media (min-width: 992px) {

	#mail,
	#phone {
		margin-top: 0;
		display: inline-flex;
		align-items: center;
	}

	#phone {
		margin-left: 30px;
	}
}

#mail {
	padding-left: 28px;
	background: url("../img/icon-mail-rot-big.png") center left no-repeat;
}

#phone {
	padding-left: 25px;
	background: url("../img/icon-telefon-grau.png") center left no-repeat;
}

/* #endregion --------------------------------- phone + mail -------------------------------------------- */

#search {
	height: 27px;
	background: #ffffff;
	display: inline-block;
	position: relative;
	border: 1px solid #696969;
}

#search_input {
	color: #404040;
	font-size: 14px;
	font-style: normal;
	background: transparent;
	padding: 0;
	border: 0;
	line-height: 27px;
	padding-left: 14px;
	padding-right: 30px;
	height: 27px;
	width: 100%;
	display: block;
}

#search_submit {
	width: 25px;
	background: #b1262a url('../img/lupe-icon.png') center no-repeat;
	padding: 0;
	cursor: pointer;
	line-height: 27px;
	border: none;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	font-size: 0;
	transition: background-color 300ms linear;
}

#search_submit:hover {
	background-color: #181818;
}

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

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

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

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

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

.logo {
	display: inline-block;
}

.logo img {
	display: block;
}

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

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

@media (min-width: 992px) {
	.logo {
		margin-top: 10px;
		width: auto;
	}
}

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

.navbar-nav {
	background-color: #ac181d;
}

/* burgermenu for tablet */

@media (max-width: 991px) {
	#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: #ac181d;
		color: #fff;
		border-radius: 2px;
		position: absolute;
		width: 40px;
		height: 3px;
		left: 10px;
		transition: transform 200ms linear, opacity 200ms linear;
		display: block;
	}

	#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 {
		margin: 20px 0;
		width: 100% !important;
	}

	.navbar-collapse {
		width: calc(100% - 90px);
		max-width: 300px;
		top: 0;
		background: #ffffff;
		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: 5px;
	}

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

/* menu desktop */

@media (min-width: 992px) {
	nav.horizontally .navbar-nav {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		width: auto !important;
		position: relative;
		filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.16));
	}

	nav.horizontally .navbar-nav::after {
		content: "";
		position: absolute;
		pointer-events: none;
		inset: 0 0 0 auto;
		width: 100px;
		transform: skew(-25deg) translateX(31%);
		background: #ac181d;
		z-index: -1;
	}

	nav.horizontally .navbar-nav>li {
		flex-grow: 1;
	}

	nav.horizontally .navbar-nav ul {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1000;
		display: block !important;
		pointer-events: none;
		opacity: 0;
		transition: opacity 300ms linear;
	}

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

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

	nav.horizontally .navbar-nav li:is(.open, :hover)>ul,
	nav.horizontally .navbar-nav li.open:focus-within>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.open>ul {
		pointer-events: none !important;
		opacity: 0 !important;
		visibility: hidden;
	}

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

@media (min-width: 1200px) {
	nav.horizontally .navbar-nav {
		margin-right: -65px;
	}
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
	color: #fff;
	font-weight: 400;
	text-align: left;
	padding: 10px 15px;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
	font-family: "Anton", sans-serif;
	text-transform: uppercase;
}

@media (max-width: 991px) {
	nav.horizontally a[class*="toplevel"].dropdown-toggle {
		padding-right: 35px;
	}
}

@media (min-width: 992px) {
	nav.horizontally a[class*="toplevel"] {
		padding: 17px 5px;
		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) {
	color: #ac181d;
	background-color: rgba(255, 255, 255, 0.82);
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
	padding: 12px 0;
	background-color: #ffffff;
}

@media (min-width: 992px) {
	nav.horizontally [class*="toplevel"]>ul {
		margin-top: 0;
		left: 50%;
		transform: translate(-50%, 0);
	}

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

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

	nav.horizontally [class*="secondlevel"]:before {
		height: 0;
		left: 0;
		right: 0;
		top: -0;
	}

	nav.horizontally [class*="thirdlevel"]::before {
		width: 10px;
		top: 0;
		bottom: 0;
		left: -10px;
	}
}

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

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
	color: #272727;
	font-weight: 400;
	text-align: left;
	padding: 4px 30px;
	background-color: transparent;
	position: relative;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
}

@media (max-width: 991px) {
	nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
		padding-right: 35px;
	}
}

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::before {
	content: "";
	position: absolute;
	left: 15px;
	top: 12px;
	display: block;
	width: 7px;
	height: 7px;
	background-color: #ac181d;
	opacity: 0;
	transition: opacity 300ms linear;
}

/* 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) {
	color: #ac181d;
}

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within)>a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])>a:is(:hover, :focus)::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a:is(:hover, :focus)::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a:is(:hover, :focus)::before {
	opacity: 1;
}

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

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

#slider,
.slider-wrapper {
	max-height: clamp(300px, 44vw, 440px);
	overflow: hidden;
	height: 100%;
}

@media (min-width: 768px) {
	#headerpic .nivo-directionNav a {
		overflow: hidden;
	}

	#headerpic .nivo-controlNav {
		pointer-events: none;
	}

	#headerpic .nivo-controlNav a {
		pointer-events: auto;
	}

	#headerpic :is(.nivo-prevNav, .nivo-nextNav, .nivo-controlNav) {
		top: 30px;
		bottom: auto;
	}
}

#headerpic {
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	width: 100%;
}

#bannerOverlay {
	margin: 0;
	color: #272727;
	padding: 15px 0;
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	line-height: 1.3;
	font-weight: 400 !important;
	font-family: "Anton", sans-serif;
	text-transform: uppercase;
}

#bannerOverlay b,
#bannerOverlay strong {
	font-weight: 400 !important;
}

@media (max-width: 767px) {
	#bannerOverlay {
		border-bottom: 2px solid #ac181d;
	}
}

@media (min-width: 768px) {
	#bannerOverlay {
		padding: clamp(15px, 2vw, 30px) 100px clamp(15px, 2vw, 30px) 0px;
		position: absolute;
		right: 0;
		bottom: -1px;
		z-index: 53;
		border: none;
		filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.16));
	}

	#bannerOverlay::after {
		content: "";
		position: absolute;
		pointer-events: none;
		inset: 0 -200px 0 0;
		transform: skew(-25deg) translateX(-11%);
		background: #fff;
		z-index: -1;
		opacity: 0.94;
	}

	#bannerOverlay .row {
		display: block;
	}
}

.slider-mask {
	display: none;
}

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

/* #region ---------------------------------------- tabs ------------------------------------------------ */

#tabs {
	padding-top: 50px;
}

#tabs>.row {
	gap: 30px 0;
}

#tabs>.row>div>.row {
	gap: 30px 0;
	height: 100%;
}

.tab {
	background: #f5f5f5 linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, #ac181d 50%) top right / 180px 180px no-repeat;
	padding: 20px;
	font-size: 1.125rem;
	max-width: 400px;
	margin: 0 auto;
}

#tabs .tab {
	height: 100%;
	min-height: 100%;
}

.tab .banner img {
	margin-bottom: 25px;
	display: block;
	width: 100%;
}

.tab .banner {
	position: relative;
}

.tab .banner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: #ac181d;
	opacity: 0;
	pointer-events: none;
	transition: opacity 300ms;
	background-position: center !important;
	background-size: cover !important;
}

.tab:is(:hover, :focus) .banner::after {
	opacity: 1;
}

.tab a {
	display: inline-block;
	position: relative;
}

#tabs .tab a {
	text-decoration: none;
}

.tab table td,
.tab table th {
	padding: 0 2px;
}

.tab table img {
	display: inline-block;
	margin: 5px 0 0 0;
}

/* tab1 */

#tabs .tab1 :is(h1, h2) {
	font-size: 1.375rem;
	margin-bottom: 0;
	text-transform: uppercase;
}

/* tab2 */

#tabs .tab2 {
	padding-bottom: 380px;
	background: url("../img/frau-freisteller.png") bottom right no-repeat, linear-gradient(to bottom, rgba(255, 255, 255, 0), #f5f5f5);
	font-size: 1.125rem;
}

@media (min-width: 992px) {
	#tabs .tab2 {
		padding-top: 55px;
		font-size: 1.25rem;
	}
}

#tabs .tab2 :is(h1, h2) {
	font-size: 1.625rem;
	color: #181818;
	margin-bottom: 25px;
}

@media (min-width: 768px) {
	#tabs .tab2 :is(h1, h2) {
		font-size: 1.875rem;
	}
}

/* #endregion ------------------------------------- tabs ------------------------------------------------ */

/* ------------------------------------- buttonstyle ------------------------------------------------ */

.buttonStyle a {
	background: #ffffff;
	font-weight: 400;
	color: #272727;
	font-size: 1rem;
	padding: 8px 55px 8px 20px;
	box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.11);
	margin-top: 20px;
}

.buttonStyle a::after {
	content: "\00BB";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 35px;
	text-align: center;
	font-size: 26px;
	line-height: 18px;
	background: #ac181d;
	color: #fff;
	align-content: center;
}

.buttonStyle a:is(:hover, :focus) {
	background: #ac181d;
	color: #ffffff;
}

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

#content {
	text-align: left;
	padding-top: 30px;
	padding-bottom: clamp(30px, 6vw, 60px);
}

@media (min-width: 768px) {
	#content.md-gutter {
		margin-left: -15px;
		margin-right: -15px;
	}
}

@media (min-width: 992px) {
	#contentCol {
		padding: clamp(20px, 3vw, 30px) clamp(25px, 4vw, 45px) 0 clamp(20px, 4vw, 45px);
	}
}

@media (min-width: 1200px) {
	body:not(.noListStyle) main ul:not([class*="menue"]):not([class*="slick-dots"]):not(.rsbtn_toollist) li:not(.gallery-list-item):not(.album-list-item):not(.entry)::before {
		top: 24px;
	}
}

.compact {
	padding: 15px;
	background-color: #ffffff;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 5;
}

@media (min-width: 768px) {
	.compact {
		padding: 20px clamp(15px, 3vw, 30px) clamp(15px, 3vw, 30px) clamp(15px, 3vw, 30px);
		margin-top: clamp(30px, 10vw, 120px);
		margin-bottom: clamp(30px, 10vw, 120px);
	}
}

main {
	flex-direction: column;
}

/* ---------------------------------------------- aside tab --------------------------------------------- */

#asideTab {
	position: relative;
	z-index: 1;
}

@media (max-width: 991px) {
	#asideTab {
		padding-top: 30px;
	}
}

#asideTab .tab {
	position: relative;
	padding: 26px;
}

#asideTab .tab::before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

#asideTab :is(h1, h2) {
	font-size: 1.625rem;
	color: #ac181d;
	margin-bottom: 25px;
}

#asideTab a {
	font-weight: inherit;
	text-decoration: underline;
}

#asideTab a:is(:hover, :focus) {
	color: #404040;
}

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

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
	color: #181818;
	font-weight: 400;
	line-height: 1.2;
	font-family: "Anton", sans-serif;
}

h1,
.h1,
.legacy_h1 {
	font-size: clamp(2rem, 4vw, 2.25rem);
	margin-bottom: clamp(20px, 3vw, 30px);
}

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

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

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
	font-size: 1.625rem;
}

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

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

/* #region ------------------------------------ news -------------------------------------------- */

#news {
	padding-top: clamp(40px, 4vw, 55px);
	padding-bottom: clamp(40px, 4vw, 60px);
}

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

@media (max-width: 991px) {
	#news {
		margin-top: 30px;
	}
}

#news {
	padding-left: 25px;
	padding-right: 25px;
}

#news .tab_link_entries {
	margin-bottom: 30px;
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	#news .tab_link_entries {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}

/* news events button */

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

#news .tab_link_mehr a {
	background: #fff;
	font-weight: 400;
	font-size: 1rem;
	color: #181818;
	padding: 8px 55px 8px 20px;
	position: relative;
	text-decoration: none;
	display: inline-block;
}

#news .tab_link_mehr a::after {
	content: "\00BB";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 35px;
	text-align: center;
	font-size: 26px;
	line-height: 18px;
	background: #ac181d;
	color: #fff;
	align-content: center;
}

#news .tab_link_mehr a:is(:hover, :focus) {
	background: #ac181d;
	color: #ffffff;
}

/* news */

#news {
	background-color: #ac181d;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

#news::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(135deg, #ac181d 36%, rgba(61, 71, 78, 0.65) 36%);
}

#news>.row {
	position: relative;
	z-index: 2;
}

#news h2 {
	color: #ffffff;
	font-size: clamp(1.5rem, 4vw, 2.1875rem);
	text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	margin-bottom: clamp(30px, 4vw, 55px);
}

#news .tab_link_entry {
	padding: 70px 20px 20px 20px;
	background: #ffffff;
	position: relative;
	min-height: 106px;
	display: flex;
	align-items: center;
}

@media (min-width: 576px) {
	#news .tab_link_entry {
		padding: 20px 30px 20px 135px;
	}
}

#news .tab_link_title a {
	color: inherit;
	font-weight: 400;
	line-height: 1.3;
	display: inline-block;
}

#news .tab_link_date {
	font-size: 1rem;
	color: #ffffff;
	font-weight: 400;
	background: #272727 url("../img/kalender-icon.png") top 8px center no-repeat;
	text-align: center;
	line-height: 1;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 30px 15px 10px 15px;
}

@media (min-width: 576px) {
	#news .tab_link_date {
		right: auto;
		bottom: 0;
		width: 105px;
		padding: 65px 0 20px 0;
		background-position: top 25px center;
	}
}

/* #endregion --------------------------------- news -------------------------------------------- */

/* ----------------------------------------------- Partner ---------------------------------------------- */

#partner {
	padding: 75px 0;
}

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

footer {
	background-color: #ac181d;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 30px 15px;
	position: relative;
}

footer::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(61, 71, 78, 0.65);
}

@media (min-width: 768px) {
	footer::after {
		background: linear-gradient(135deg, #ac181d 36%, rgba(61, 71, 78, 0.65) 36%);
	}
}

footer>.row {
	position: relative;
	z-index: 2;
}

#innerfooter ul {
	padding: 0;
}

@media (max-width: 575px) {
	#innerfooter {
		border-top: 1px solid rgba(255, 255, 255, 0.5);
		margin-top: 15px;
		padding-top: 15px;
	}
}

@media (min-width: 768px) {
	footer {
		padding: 55px 30px;
	}
}

#innerfooter a {
	color: #fff;
	display: inline-block;
	font-weight: 400;
	font-size: 1.125rem;
}

#mitglied {
	position: relative;
	color: #181818;
	font-size: 0.875rem;
	margin-top: 50px;
	margin-bottom: 50px;
	padding: 10px 0;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
}

#mitglied p :is(b, strong),
#mitglied p:has(:is(b, strong)) {
	line-height: 1;
	color: #ac181d;
	font-size: 1.125rem;
	font-weight: 400 !important;
	font-family: "Anton", sans-serif;
}

#mitglied::before,
#mitglied::after,
#mitglied .template-page::after,
#mitglied a:last-of-type {
	content: "";
	height: 120%;
	background: #181818;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(0deg);
	aspect-ratio: 1 / 1;
	z-index: -1;
}

#mitglied::after {
	transform: translate(-50%, -50%) rotate(45deg);
	background: #fff;
}

#mitglied a:last-of-type {
	transform: translate(-50%, -50%) rotate(45deg);
	font-size: 0;
	z-index: 1;
	background: transparent;
	height: 140%;
	height: calc(120% + 30px);
}

#mitglied .template-page::after {
	background: #ac181d;
	transform: translate(-50%, -50%) rotate(30deg);
}

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

#vernetzt {
	display: grid;
	gap: 12px;
	font-size: 0.875rem;
	color: #ffffff;
	line-height: 1.3;
	font-weight: 400;
	text-decoration: none;
	flex-direction: column;
}

#vernetzt b {
	font-weight: 400;
}

#vernetzt :is(span, img) {
	display: block;
}

@media (max-width: 575px) {
	#vernetzt img {
		margin: 0 auto;
	}
}