@import url("https://fonts.verwaltungsportal.de/import/?family=Open+Sans:400,400i,600,600i,700,700i");
@import url("https://fonts.verwaltungsportal.de/import/?family=Tai+Heritage+Pro:400");

html {
	max-width: 1930px;
	margin-left: auto;
	margin-right: auto;
	background: #fff;
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
	scrollbar-color: #b20b00 #ffffff;
	scrollbar-width: thin;
}

body {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	color: #2d2d2d;
	background: #fff5ce;
	font-size: clamp(1rem, 2vw, 1.25rem);
	/* 1rem = 16px */
	line-height: 1.5;
}

a {
	color: #b20b00;
}

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

.linkUnderline a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: text-decoration 300ms;
	font-style: italic;
}

.linkUnderline a:is(:hover, :focus) {
	text-decoration-color: transparent;
}

b,
strong {
	font-weight: 700;
}

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

#logo {
	display: inline-block;
	background-color: #fff;
	padding: 5px;
}

#logo img {
	display: block;
}

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

#topbar {
	background-color: #fff;
	padding: 10px 0;
}

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

/* burgermenu for tablet */

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

	#burgerButton {
		border: none !important;
		font-size: 0;
		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: #183a1d;
		color: #fff;
		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 {
		margin: 20px 0;
	}

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

/* menu desktop */

@media (min-width: 992px) {
	nav.horizontally {
		transition: box-shadow 300ms linear;
	}

	.is-sticky nav.horizontally>.row {
		box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.08);
	}

	nav.horizontally {
		background-color: #183a1d;
		position: relative;
	}

	#myNavbar {
		gap: 0 30px;
	}

	nav.horizontally .navbar-nav {
		display: flex;
		justify-content: space-between;
		align-items: center;
		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;
		visibility: hidden;
		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 {
		padding-right: clamp(30px, 13vw, 50px);
	}
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
	color: #fff;
	font-weight: 600;
	text-align: left;
	padding: 10px 15px;
	position: relative;
	font-size: 1.125rem;
	line-height: 1.2;
	text-decoration: none;
}

@media (max-width: 991px) {
	nav.horizontally li[class*="toplevel"] {
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}

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

@media (min-width: 992px) {
	nav.horizontally li[class*="toplevel"]+li {
		margin-left: clamp(5px, 2vw, 15px);
	}

	nav.horizontally a[class*="toplevel"] {
		padding: 20px 2px;
	}

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

	nav.horizontally a[class*="toplevel"][data-toggle="dropdown"]::after {
		content: "";
		position: absolute;
		display: block;
		right: 0;
		top: 50%;
		margin-top: -5px;
		width: 6px;
		height: 6px;
		border-radius: 1px;
		line-height: 1;
		display: inline-block;
		border-left: 2px solid #2d2d2d;
		border-bottom: 2px solid #2d2d2d;
		transform: rotate(-45deg);
		transition: border 300ms linear;
	}
}

/* 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: #fff;
	background-color: transparent;
}

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

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
	padding: 10px 0;
	background: #fde99b;
	border-top: 2px solid #b20b00;
}

@media (max-width: 991px) {
	nav.horizontally [class*="toplevel"] ul {
		padding: 10px;
		outline: 2px solid #b20b00;
	}
}

@media (min-width: 992px) {
	nav.horizontally [class*="toplevel"] ul {
		box-shadow: 0px -2px 0px 0px rgba(205, 14, 40, 0.004);
	}

	nav.horizontally [class*="toplevel"]>ul {
		left: 50%;
		transform: translateX(-50%);
	}

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

	nav.horizontally [class*="secondlevel"]>ul::before {
		content: "";
		position: absolute;
		display: block;
		width: 10px;
		top: 0;
		bottom: 0;
		left: -10px;
	}
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
	color: #2d2d2d;
	text-align: center;
	padding: 8px 20px;
	font-weight: 400;
	position: relative;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
}

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

	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: transparent;
	color: #b20b00;
}

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

/* #region -------------------------------- contact Buttons ------------------------------------- */

.contactHover {
	display: block;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: auto, 0 0;
}

.contactHover.phone {
	background-image: url("../img/icon-telefon.png"), radial-gradient(#183a1d 70%, transparent 70%);
}

@media (max-width: 991px) {
	.contactHover.phone {
		background-color: #183a1d;
		padding-top: 30px;
		padding-bottom: 10px;
		background-position: top 10px center;
	}
}

.contactHover.mail {
	background-image: url("../img/icon-mail.png"), radial-gradient(#fff 70%, transparent 70%);
}

@media (max-width: 991px) {
	.mail.contactHover {
		margin-top: 20px;
	}

	.contactHover {
		padding-top: 20px;
		background-position: center top;
	}
	.contactHover.mail {
		background-image: url('../img/icon-mail-white.png');
	}
}

@media (min-width: 992px) {
	.contactIcons {
		display: flex;
		gap: 6px;
	}

	.contactHover {
		padding: 4px;
		height: 40px;
		width: 40px;
		border-radius: 50%;
		transition: transform 100ms linear;
		background-size: auto, 100% 100%;
	}

	.contactHover:is(:hover, :focus) {
		transform: scale(1.1);
	}
}

.contactOpen {
	z-index: 50;
	background: #183a1d;
	outline: 1px solid #fff;
	color: #ffffff;
	padding: 20px;
	text-align: center;
	font-size: 1.125rem;
	transform: scale(.9);
}

@media (max-width: 991px) {
	.contactOpen {
		padding: 10px;
		margin-top: 10px;
	}
}

@media (min-width: 992px) {
	.contactOpen {
		border-radius: 4px;
		opacity: 0;
		pointer-events: none;
		position: absolute;
		top: 100%;
		right: -25px;
		width: 300px;
		transition: opacity 300ms linear, margin-top 300ms linear;
	}

	.contactOpen::after {
		content: "";
		position: absolute;
		top: -12px;
		right: 20px;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 15px 12px 15px;
		border-color: transparent transparent #183a1d transparent;
	}

	.contactOpen::before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		height: 15px;
		top: -15px;
		display: block;
	}

	.contactHover:is(:hover, :focus, :focus-within) .contactOpen {
		opacity: 1;
		pointer-events: auto;
		margin-top: 15px;
	}
}

.contactOpen a {
	color: #ffffff;
	text-decoration: underline;
}

.contactOpen strong {
	font-weight: 600;
}

/* #endregion ----------------------------- contact Buttons ------------------------------------- */

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

#slogan {
	padding-top: clamp(10px, 2vw, 30px);
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1;
}

body.index #slogan {
	padding-bottom: clamp(30px, 5vw, 70px);
}

#slogan :is(h1, h2, h3, h4, h5, h6) :is(i, em, b, strong) {
	display: block;
}

#slogan :is(i, em) {
	font-size: clamp(1.25rem, 4vw, 1.875rem);
}

#slogan :is(h1, h2, h3, h4, h5, h6) :is(i, em) {
	font-size: clamp(1.25rem, 4vw, 1.875rem);
	font-weight: 600;
}

#slogan :is(h1, h2, h3, h4, h5, h6) :is(b, strong) {
	padding-top: clamp(10px, 2vw, 30px);
	color: #183a1d;
	font-weight: 700;
	margin: 0 0 clamp(3px, 2vw, 18px) 0;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	line-height: 0.9;
}

#slogan :is(h1, h2, h3, h4, h5, h6) {
	color: inherit;
	font-size: clamp(2.5rem, 5vw, 4.0625rem);
	margin-bottom: 0;
	text-transform: uppercase;
}

#slogan a:not(#logo) {
	display: inline-block;
	margin-top: clamp(15px, 2vw, 25px);
	text-decoration: underline;
}



/* -------------------------------------------- tabrow ------------------------------------------ */

.tabRow {
	row-gap: 15px;
}

.imgTab {
	position: relative;
	min-height: 100px;
	font-size: 1.125rem;
}

.imgTab .tabHeadline {
	opacity: 0;
	pointer-events: none;
	position: absolute;
	z-index: 50;
	bottom: 0;
	right: -15px;
	background: #183a1d;
	outline: 1px solid #fff;
	color: #ffffff;
	padding: 20px;
	border-radius: 4px;
	width: 200px;
	line-height: 1.2;
	text-align: center;
	font-weight: 600;
	margin: 0;
	font-size: 1.125rem;
	text-transform: uppercase;
	transition: opacity 300ms linear, bottom 300ms linear;
}

.imgTab .tabHeadline::after {
	content: "";
	position: absolute;
	top: 50%;
	left: -12px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 12px 15px 0;
	border-color: transparent #183a1d transparent transparent;
	transform: translateY(-50%);
}

.imgTab:is(:hover, :focus, :focus-within) .tabHeadline {
	opacity: 1;
	pointer-events: auto;
	bottom: -10px;
}

.imgTab img {
	display: block;
}

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

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

.row.wide {
	width: 100%;
	max-width: 1400px;
}

footer {
	margin-left: auto;
	margin-right: auto;
	max-width: 1400px;
}

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

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
	color: #183a1d;
	font-weight: 400;
	line-height: 1.2;
	font-family: "Tai Heritage Pro", serif;
	letter-spacing: 2px;
}

h1,
.h1,
.legacy_h1 {
	font-size: clamp(1.875rem, 4vw, 3rem);
}

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

h3,
.h3,
.legacy_h3 {
	font-size: clamp(1.625rem, 3vw, 2rem);
}

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
	font-size: clamp(1.5rem, 2.5vw, 1.75rem);
}

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

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

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

#footer {
	background: #183a1d url(../img/africa.png);
	background-position: bottom 5px left;
	background-repeat: no-repeat;
	position: relative;
	color: #fff;
}

#footer>.row {
	max-width: 1400px;
	width: 100%;
}

#footer>.row>div:first-of-type {
	padding-top: 40px;
	padding-bottom: 40px;
}

#footer h2 {
	display: block;
	font-weight: 400;
	font-size: clamp(1.875rem, 4vw, 3rem);
	color: #fff;
}

#footer a {
	background: #b20b00;
	color: #ffffff;
	text-transform: uppercase;
	padding: 6px 26px;
	border-radius: 4px;
	font-weight: 600;
	margin-top: 20px;
	display: inline-block;
	font-size: 1rem;
	text-decoration: none;
	font-size: 1rem;
	outline: 1px solid #fff;
}

#footer a:is(:hover, :focus) {
	background: #2d2d2d;
}

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

/* #region --------------------------------- innerfooter ---------------------------------------- */

#innerfooter {
	color: #444444;
	background-color: #fff5ce;
	font-size: 1.125rem;
}

#innerfooter a {
	color: #2d2d2d;
}

#innerfooter .linkUnderline a {
	color: #b20b00;
}

@media (min-width: 576px) {
	#innerfooter>.row:first-of-type>*:not(:last-child) .template-page {
		padding-top: 20px;
		position: relative;
		min-height: 70%;
	}

	#innerfooter>.row:first-of-type>*+*:not(:last-child) .template-page::before {
		content: "";
		position: absolute;
		background: rgba(2, 116, 89, 0.42);
		width: 2px;
		height: 100%;
		top: 0;
		left: -15px;
	}
}

@media (max-width: 991px) {
	#innerfooter>.row:first-of-type>*+*:nth-last-child(2) .template-page::before {
		display: none;
	}
}

@media (max-width: 991px) {
	#innerfooter>.row>.col-xs-12+* {
		border-top: 2px solid rgba(2, 116, 89, 0.42);
		margin-top: 20px;
		padding-top: 20px;
	}
}

@media (min-width: 576px) {
	#innerfooter>*:first-child> :nth-child(2) {
		border-top: none;
		margin-top: 0;
		padding-top: 0;
	}
}

@media (min-width: 768px) {
	#innerfooter>*:last-child> :nth-child(2) {
		border-top: none;
		margin-top: 0;
		padding-top: 0;
	}
}

#innerfooter>*:first-child {
	padding: clamp(30px, 4vw, 60px) 0;
}

#innerfooter>*:last-child {
	padding: 20px 0;
}

#innerfooter hr {
	border: none;
	border-top: 2px solid rgba(2, 116, 89, 0.42);
	margin: 0;
	padding: 0;
	background: transparent;
	opacity: 1;
}

#innerfooter .innerfooter ul {
	padding: 0;
	font-size: 1rem;
}

#innerfooter .innerfooter li {
	display: inline-block;
}

@media (max-width: 575px) {
	#innerfooter .innerfooter li {
		display: block;
		line-height: 2;
	}
}

#innerfooter .innerfooter li a {
	color: #2d2d2d;
}

#innerfooter .innerfooter li a:is(:hover, :focus) {
	color: #b20b00;
	text-decoration: underline;
}

@media (min-width: 576px) {
	.innerfooter li+li::before {
		content: "\007C";
		margin: 0 15px;
		color: #2d2d2d;
	}
}

.footerHeadline {
	color: #b20b00;
	font-weight: 400;
	margin: 0 0 15px 0;
	font-size: 1.875rem;
	text-transform: none;
	letter-spacing: 0;
}

#innerfooter .linkStyle a {
	display: block;
	padding: 8px;
	background-repeat: no-repeat;
	background-position: center left 12px;
	text-decoration: none;
	font-size: 0.9375rem;
}

#innerfooter .linkStyle a+a {
	margin-top: 15px;
}

#innerfooter .linkStyle a:not([href^="mailto"], [href^="tel"]) {
	padding-left: 70px;
	position: relative;
}

#innerfooter .linkStyle a:not([href^="mailto"], [href^="tel"])::before {
	content: "";
	display: block;
	height: 26px;
	width: 26px;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}

#innerfooter .linkStyle a:not([href^="mailto"], [href^="tel"]):nth-of-type(1):before {
	background: url("../img/icon-facebook-black.png") center no-repeat;
	width: 32px;
	height: 32px;
}

#innerfooter .linkStyle a:not([href^="mailto"], [href^="tel"]):nth-of-type(2):before {
	background: url("../img/icon-instagram-black.png") center no-repeat;
	width: 36px;
	height: 36px;
}

#innerfooter .linkStyle a:not([href^="mailto"], [href^="tel"]):nth-of-type(3):before {
	background: url("../img/whatsapp_3938057.png") center no-repeat;
	width: 38px;
	height: 38px;
}

#innerfooter .linkStyle a:not([href^="mailto"], [href^="tel"]):nth-of-type(4):before {
	background: url("../img/tiktok-logo.png") center no-repeat;
	width: 35px;
	height: 35px;
}

/* #endregion ------------------------------ innerfooter ---------------------------------------- */

/* --------------------------------------------- maps ------------------------------------------- */

#maps {
	margin-bottom: 15px;
}

#maps .row,
#maps .row>div {
	margin: 0;
	padding: 0;
}

#maps iframe,
#maps .iframe-wrapper-manual-enabling {
	display: block;
	width: 100%;
}

#maps .iframe-wrapper-manual-enabling {
	min-width: 100% !important;
}

/* ------------------------------------------- scroll top --------------------------------------- */

#scrollTopBtn {
	color: #b20b00 !important;
}

#scrollTopBtn::after {
	content: url(../img/arrow-up.png);
	margin-left: 4px;
	position: relative;
	bottom: -1px;
	color: #b20b00;
}

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

#vernetzt {
	gap: 10px;
	text-align: right;
	line-height: 1.4;
	font-weight: 400;
	text-decoration: none;
	font-size: 0.9375rem;
}

#vernetzt b {
	color: #b20b00;
}

#vernetzt span span {
	display: block;
}