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

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

body {
	font-family: "Quicksand", sans-serif;
	font-weight: 400;
	color: #514d4d;
	background: #ffffff;
	font-size: 0.9375rem;
	/* 1rem = 16px */
	line-height: 1.5;
}

a {
	color: #e8003e;
}

a:is(:hover, :focus) {
	color: #e8003e;
	text-decoration: underline;
	text-decoration-color: currentcolor;
	text-decoration-thickness: auto;
	text-decoration-color: #e8003e;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

main a,
b,
strong {
	font-weight: 700;
}

body.introsite .notIntro {
	display: none;
}

:not(.cc_banner-wrapper):focus-visible,
#vernetzt:focus-visible span {
	background-color: #fff !important;
	color: #0a3faf !important;
	z-index: 100;
	text-decoration: none;
	outline: 2px solid #0a3faf;
}

@media (min-width: 1200px) {
	.introsite :is(#topbar, #eventNews, #introTabs, footer)>.row {
		max-width: 1600px;
		width: 100%;
	}
}

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

#topbar>.row {
	font-size: 0.875rem;
}

@media (min-width: 992px) {
	#controls {
		padding-top: 19px;
		padding-bottom: 19px;
		column-gap: 25px;
	}

	#controls>*:not(:last-child) {
		border-right: 1px solid rgba(0, 0, 0, 0.12);
		padding-right: 20px;
	}
}

/* ------------------------------------------- styler ------------------------------------------- */

:is(#contrast_style, #style) h2 {
	font-size: inherit;
	font-weight: inherit;
	font-family: inherit;
	color: inherit;
	margin: 0 5px 0 0;
	width: unset;
}

:is(#contrast_style, #style) button {
	border: none;
	color: #58453a;
	display: inline-block;
	font-weight: 400;
	text-align: center;
	background: transparent;
	line-height: 1;
	min-width: 32px;
	min-height: 32px;
	position: relative;
	padding: 6px;
	overflow: hidden;
}

#style button:is(:hover, :focus) {
	color: #e8003e;
}

#contrast_style button:is(:hover, :focus) {
	background: #f0f0f0;
}

:is(#contrast_style, #style) button+button {
	margin-left: -6px;
}

#contrast_style button::after {
	content: "";
	width: 10px;
	height: 10px;
	border: 2px solid #e8003e;
	display: block;
	position: absolute;
	top: calc(50% - 7px);
	left: calc(50% - 7px);
}

#contrast_style button:nth-child(2)::after {
	background: linear-gradient(45deg, #e8003e, #e8003e 50%, #ffffff 50%);
}

#contrast_style button:nth-child(3)::after {
	background: linear-gradient(225deg, #e8003e, #e8003e 50%, #ffffff 50%);
}

#contrast_style button::after {
	background: #e8003e;
}

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

.search {
	width: 32px;
	height: 32px;
	text-align: center;
	padding: 7px 0 0 0;
	display: inline-block;
	flex-shrink: 0;
	line-height: 0;
}

@media (min-width: 992px) {
	.search {
		margin-left: -8px;
	}
}

.search:is(:hover, :focus) {
	background: #f0f0f0;
}

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

.logo {
	position: relative;
	z-index: 50;
	background: #ffffff;
	padding: 20px;
	display: inline-block;
	box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.15);
}

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

@media (min-width: 992px) {
	.logo {
		position: absolute;
		left: 15px;
		max-width: calc(100% - 30px);
		top: -70px;
		display: block;
		transition: all 300ms 0s linear;
	}

	body.introsite .logo {
		top: 0;
	}

	.is-sticky .logo {
		top: 0;
	}

	body:not(.introsite) .is-sticky .logo {
		max-width: 140px;
		padding: 15px;
	}
}

.logo img {
	display: block;
}

body.introsite .introLogo {
	display: block !important;
}

@media (max-width: 991px) {
	.logo img {
		max-width: 140px;
		width: 100%;
	}
}

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

/* burgermenu for tablet */

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

	#burgerButton::before,
	#burgerButton::after,
	#burgerButtonInner {
		background-color: #0a3faf;
		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: #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);
		padding: 15px 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) {
	.sticky-wrapper {
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
	}

	nav.horizontally {
		transition: all 300ms 0s linear;
	}

	.is-sticky nav.horizontally {
		background: rgba(10, 63, 175, 0.6);
		padding-bottom: 30px;
	}

	nav.horizontally::after {
		content: "";
		display: block;
		pointer-events: none;
		position: absolute;
		z-index: -1;
		left: 0;
		right: 0;
		top: 0;
		height: 486px;
		opacity: 0;
		background: linear-gradient(to bottom, rgba(214, 238, 170, 1), rgba(214, 238, 170, 0));
		transition: opacity 300ms linear;
	}

	nav.horizontally:has(li[class*="toplevel"]:nth-of-type(2n + 2):is(:hover, :focus-within))::after {
		background: linear-gradient(to bottom, rgba(208, 223, 255, 1), rgba(208, 223, 255, 0));
	}

	nav.horizontally:has(li[class*="toplevel"]:is(:hover, :focus-within) > a)::after,
	nav.horizontally:has(li[class*="toplevel"] > a:is(:hover, :focus))::after,
	nav.horizontally:has(li[class*="toplevel"].open > a)::after,
	nav.horizontally:has(li[class*="toplevel"].open > a:is(:hover, :focus))::after {
		opacity: 1;
	}

	nav.horizontally .navbar-nav {
		margin: 30px 0 0 0;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

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

	.navbar-default .navbar-nav li[class*="toplevel"]>ul {
		display: flex !important;
		flex-wrap: wrap;
		pointer-events: none;
		position: absolute;
		opacity: 0;
		top: calc(100% + 30px);
		left: -233px;
		right: 15px;
		z-index: 1000;
		padding: 30px 40px 30px 270px;
		visibility: hidden;
		transition: top 200ms linear, opacity 200ms linear;
	}

	nav.horizontally .navbar-nav>li:is(.open, :hover)>ul,
	nav.horizontally .navbar-nav>li.open:focus-within>ul {
		pointer-events: auto !important;
		opacity: 1 !important;
		visibility: visible;
		top: 100%;
	}

	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;
	}

	nav.horizontally li[class*="secondlevel"] {
		width: 33.33%;
	}

	nav.horizontally li[class*="secondlevel"]:not(:nth-child(3n + 4)) {
		border-right: 1px solid rgba(0, 0, 0, 0.12);
	}

	nav.horizontally li[class*="toplevel"]>ul::before {
		content: "";
		position: absolute;
		display: block;
		top: 0;
		bottom: 0;
		left: 0;
		width: 230px;
		height: 100%;
		background: #f7f1c7 center / cover no-repeat;
	}

	nav.horizontally [class*="secondlevel"]>ul {
		display: block !important;
		padding-bottom: 10px;
	}
}

@media (min-width: 1200px) {
	.navbar-default .navbar-nav li[class*="toplevel"]>ul {
		left: -285px;
		padding-left: 290px;
	}

	nav.horizontally li[class*="toplevel"]>ul::before {
		width: 270px;
	}
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
	color: #514d4d;
	background: #a9d25c;
	font-weight: 500;
	text-align: left;
	padding: 8px 15px;
	position: relative;
	font-size: 1.5rem;
	line-height: 1.2;
	text-decoration: none;
}

nav.horizontally li[class*="toplevel"]:nth-of-type(2n + 2) a[class*="toplevel"] {
	color: #fff;
	background: #0a3faf;
}

@media (max-width: 991px) {
	nav.horizontally a[class*="toplevel"] {
		overflow-wrap: break-word;
		word-wrap: break-word;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		-moz-hyphens: auto;
		hyphens: auto;
	}

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

@media (min-width: 992px) {
	nav.horizontally li[class*="toplevel"]+li {
		margin-left: 10px;
	}

	nav.horizontally a[class*="toplevel"] {
		padding: 24px 12px 20px 12px;
		text-align: center;
		display: flex;
		align-content: center;
		justify-content: center;
		flex-wrap: wrap;
		flex-direction: column;
		height: 100%;
		min-height: 101px;
	}

	.is-sticky nav.horizontally a[class*="toplevel"] {
		min-height: 60px;
	}

	nav.horizontally a[class*="toplevel"].dropdown-toggle::before {
		content: "";
		opacity: 0;
		pointer-events: none;
		position: absolute;
		display: block;
		left: calc(50% - 24px);
		bottom: -60px;
		width: 48px;
		height: 20px;
		clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
		background: #d6eeaa;
		transition: opacity 200ms linear, bottom 200ms linear;
	}

	nav.horizontally li[class*="toplevel"]:nth-of-type(2n + 2) a[class*="toplevel"].dropdown-toggle::before {
		background: #d0dfff;
	}
}

@media (min-width: 1200px) {
	nav.horizontally li[class*="toplevel"]+li {
		margin-left: 30px;
	}
}

nav.horizontally a[class*="toplevel"]::after {
	content: "";
	display: block;
	height: 4px;
	width: 0;
	max-width: 100px;
	background: currentColor;
	margin: 2px 0 0 0;
	pointer-events: none;
	opacity: 0;
	transition: opacity 300ms linear, width 300ms linear;
}

@media (min-width: 992px) {
	nav.horizontally a[class*="toplevel"]::after {
		margin-left: auto;
		margin-right: auto;
	}
}

/* toplevel-over */

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 {
	width: 80%;
	opacity: 1;
}

@media (min-width: 992px) {

	nav.horizontally li[class*="toplevel"]:hover>a.dropdown-toggle::before,
	nav.horizontally li[class*="toplevel"].open>a.dropdown-toggle::before,
	nav.horizontally li[class*="toplevel"].open>a.dropdown-toggle:is(:hover, :focus)::before {
		bottom: -30px;
		opacity: 1;
	}
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"]>ul {
	background-color: #d6eeaa;
}

nav.horizontally li[class*="toplevel"]:nth-of-type(2n + 2)>ul {
	background-color: #d0dfff;
}

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

@media (min-width: 992px) {
	nav.horizontally [class*="toplevel"]>ul {
		margin-top: 30px;
	}

	nav.horizontally [class*="toplevel"]>ul::after {
		content: "";
		position: absolute;
		display: block;
		height: 40px;
		left: 0;
		right: 0;
		top: -40px;
	}
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
	color: #514d4d;
	text-align: left;
	line-height: 1.2;
	font-weight: 400;
	text-decoration: none;
}

nav.horizontally a[class*="secondlevel"] {
	font-size: 1.25rem;
	padding: 8px 15px;
}

@media (min-width: 992px) {
	nav.horizontally a[class*="secondlevel"] {
		padding-bottom: 4px;
	}
}

nav.horizontally a[class*="thirdlevel"] {
	font-size: 0.875rem;
	padding: 6px 15px 6px 30px;
}

nav.horizontally a[class*="thirdlevel"]::after {
	content: "";
	display: block;
	position: absolute;
	top: 11px;
	left: 20px;
	border-radius: 50%;
	width: 3px;
	height: 3px;
	border: 1px solid #514d4d;
	transition: background 300ms linear, border 300ms linear;
}

@media (max-width: 991px) {
	nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
		overflow-wrap: break-word;
		word-wrap: break-word;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		-moz-hyphens: auto;
		hyphens: auto;
	}

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

/* secondlevel + thirdlevel dropdown-box */

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: #514d4d;
	text-decoration: underline;
}

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

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

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

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

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

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

main {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
}

#content {
	background: url("../img/blaues-footer-overlay.png") center bottom -3px / 100% auto no-repeat;
}

main #introContent {
	background: url("../img/blaues-footer-overlay.png") center bottom -3px / 100% auto no-repeat;
}

#contentBG {
	margin-top: 85px;
	text-align: left;
	padding: 30px 0 clamp(40px, 4vw, 60px) 0;
	background: #ffffff;
	position: relative;
	z-index: 45;
	box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
	#contentBG {
		margin-top: 190px;
	}
}

@media (min-width: 1200px) {
	#contentBG {
		margin-top: 545px;
	}
}

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

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

h1,
.h1,
.legacy_h1 {
	font-size: clamp(2.375rem, 4vw, 2.8125rem);
	margin-bottom: clamp(15px, 2vw, 25px);
}

h2,
.h2,
.legacy_h2 {
	font-size: clamp(2.25rem, 4vw, 2.625rem);
}

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

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
	font-size: clamp(2rem, 4vw, 2.1875rem);
}

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

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

/* ------------------------------------------- eventNews ------------------------------------------- */

body.index #eventNews hr {
	margin-top: 40px;
	margin-bottom: 40px;
	background: #c0c0c0;
	height: 1px;
	opacity: 1;
	border: none;
}

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

footer {
	color: #ffffff;
	font-size: 0.875rem;
	padding: 30px 0;
	background: #0a3faf;
}

#footerBG {
	font-size: 0.875rem;
	color: #ffffff;
	padding: 30px 0;
	background: #0a3faf;
}

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

.introsite footer {
	padding-top: 30px;
}

footer>.row {
	row-gap: 30px;
}

footer a {
	color: inherit;
}

#footer {
	padding-top: 50px;
	padding-bottom: 60px;
}

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

#footer .tabHeadline {
	color: #ffffff;
	font-size: clamp(1.5625rem, 3vw, 2.1875rem);
}

#footer a {
	color: #ffffff;
}

#footer a:is(:hover, :focus) {
	color: #ffffff;
	text-decoration-color: #a9d25c;
}

#innerfooter ul {
	padding: 0;
}

@media (max-width: 767px) {
	#innerfooter ul {
		margin-top: 20px;
	}
}

@media (min-width: 576px) {
	#innerfooter li {
		display: inline-block;
	}

	#innerfooter li+li {
		margin-left: clamp(20px, 2vw, 35px);
	}
}

#innerfooter a {
	color: #ffffff;
}

#innerfooter a:is(:hover, :focus) {
	color: #ffffff;
	text-decoration-color: #a9d25c;
}

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

#vernetzt {
	display: inline-block;
	font-size: 0.75rem;
	color: #ffffff;
	line-height: 1.4;
	text-decoration: none;
}

#vernetzt span {
	display: block;
}

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

/* ------------------------------------------ contrast ------------------------------------------ */

:is(.contrast_dark, .contrast_dark_font) :is(main, #content),
.contrast_dark_font :is(main, #content),
:is(.contrast_dark, .contrast_dark_font) .slider-mask {
	background: none !important;
}

:is(.contrast_dark, .contrast_dark_font) :is(#contrast_style, #style) button+button {
	margin-left: 0 !important;
}

/* ------------------------------------------ Introsite ------------------------------------------ */

#introContent {
	padding-bottom: 90px;
	padding-top: 80px;
}

@media (min-width: 992px) {
	#introContent {
		padding-top: 230px;
	}
}

#introTabs {
	margin-top: 40px;
}

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

#introTabs .tabHeadline {
	background: #a9d25c;
	color: #514d4d;
	margin: 0;
	line-height: 1;
	font-size: clamp(2.1875rem, 3vw, 2.5rem);
	padding: 23px 40px;
	margin-bottom: 0;
}

#introTabs .introRightHead .tabHeadline {
	background: #0a3faf;
	color: #fff;
}

/* Tab full Link -------------------------------------------------------- */

.clickTab {
	gap: 30px 0;
}

.clickTab>:not(#introMiddle) .template-page>.row {
	position: relative;
	isolation: isolate;
	height: 100%;
	min-height: 100px;
	box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
	text-align: center;
	background: #fff;
	transition: background 300ms, color 300ms;
}

.clickTab>:not(#introMiddle) .template-page>.row:is(:hover, :focus) {
	color: #fff !important;
	background: #e8003e;
}

.clickTab #introLeft .template-page>.row:is(:hover, :focus) {
	background: #a9d25c;
}

.clickTab>:not(#introMiddle) .template-page>.row :is(h1, h2, h3, h4, h5, h6) {
	color: #e8003e !important;
	hyphens: auto;
}

.clickTab>:not(#introMiddle) .template-page>.row:is(:hover, :focus) :is(h1, h2, h3, h4, h5, h6) {
	color: #fff !important;
}

.clickTab #introRight .template-page>.row :is(h1, h2, h3, h4, h5, h6),
.clickTab #introLeft .template-page>.row :is(h1, h2, h3, h4, h5, h6),
.clickTab #introLeft .template-page>.row:is(:hover, :focus) :is(h1, h2, h3, h4, h5, h6) {
	color: #514d4d !important;
}

.clickTab #introRight .template-page>.row:is(:hover, :focus) {
	background: #0a3faf;
}

.clickTab>:not(#introMiddle) .template-page>.row a {
	position: relative;
	z-index: 3;
}

.clickTab>:not(#introMiddle) .template-page {
	height: 100%;
	gap: 30px 0;
	display: flex;
	flex-direction: column;
}

.clickTab>:not(#introMiddle) .template-page>.row {
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
	margin: 0;
	padding: 0;
}

.clickTab>:not(#introMiddle) .template-page>.row>div:first-of-type {
	position: absolute;
	flex: none;
	max-width: none;
	width: 85px;
	background: #e8003e;
	left: 0;
	top: 0;
	height: 100%;
	padding: 0;
	display: flex;
	align-items: center;
}

.clickTab #introLeft .template-page>.row>div:first-of-type {
	background: #a9d25c;
}

.clickTab #introRight .template-page>.row>div:first-of-type {
	background: #0a3faf;
}

.clickTab>:not(#introMiddle) .template-page>.row>div:first-of-type .tp-image-wrapper {
	line-height: 0;
}

.clickTab #introRight .template-page>.row>div:first-of-type img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	height: 100%;
}

.clickTab>:not(#introMiddle) .template-page>.row>div:last-of-type {
	flex: none;
	max-width: none;
	padding: 0;
	padding-left: 100px;
	padding-right: 15px;
}

.clickTab>:not(#introMiddle) .template-page>.row p,
.clickTab>:not(#introMiddle) .template-page>.row :is(h1, h2, h3, h4, h5, h6) {
	position: relative;
	z-index: 3;
	pointer-events: none;
	margin: 0;
	font-size: 1.875rem;
}

#introTabs .clickTab>:not(#introMiddle) .template-page>.row :is(h1, h2, h3, h4, h5, h6) {
	font-size: 1.125rem;
	color: #514d4d;
	hyphens: auto;
}

.clickTab>:not(#introMiddle) .template-page>.row p:has(a:last-of-type) {
	font-size: 0;
}

.clickTab>:not(#introMiddle) .template-page>.row a:last-of-type {
	color: inherit;
	font-size: 0;
	text-decoration: none;
	z-index: 2;
	position: absolute;
	inset: 0;
}

.clickTab>:not(#introMiddle) .template-page .row>div,
.clickTab>:not(#introMiddle) .template-page>.row p:has(a) {
	position: static;
}

.clickTab>:not(#introMiddle) .template-page>.row a {
	pointer-events: all;
}

.clickTab>:not(#introMiddle) .template-page>.row a:last-of-type::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}

.clickTab :is(#introLeft, #introRight) .row {
	gap: 30px 0;
}


body:not(.introsite) .clickTab .template-page>.row :is(h1, h2, h3, h4, h5, h6) {
	font-weight: 500;
}

body:not(.introsite) .clickTab .template-page>.row a {
	font-weight: 500;
}

#introMiddle {
	padding: 15px;
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.15);
}

#introMiddle .tabcenter {
	font-size: 0.9375rem;
	color: #514d4d;
}

/* Tab full Link -------------------------------------------------------- */