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

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

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

a {
	color: #09286e;
}

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

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

@media (min-width: 992px) {
	.row {
		max-width: 1440px;
		width: 100%;
	}
}

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

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

#topbar {
	padding-top: 14px;
	padding-bottom: 12px;
}

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

#logo {
	display: inline-block;
}

#logo img {
	display: block;
}

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

/* #region -------------------------------- standort - phone -------------------------------------- */

#contactTabs {
	color: #ffffff;
	background-color: #038abe;
	padding: 4px 0;
}

#contactTabs > .row > * {
	display: flex;
	align-content: center;
	align-items: center;
	gap: clamp(15px, 3vw, 30px);
	flex-wrap: wrap;
}

@media (min-width: 1200px) {
	#contactTabs > .row > * {
		justify-content: end;
	}
}

.phone,
.standort {
	display: inline-block;
	color: #ffffff;
	line-height: 1.2;
}

.phone,
.standort {
	position: relative;
	padding: 0 0 0 40px;
	min-height: 22px;
}

:is(.phone, .standort) a {
	color: #2d2d2d;
	font-weight: 700;
}

.phone {
	background: url("../img/telefon-icon-weiß.png") center left 5px no-repeat;
}

.standort {
	background: url("../img/ort-icon-weiß.png") center left 5px no-repeat;
}

:is(.phone, .standort) a:is(:hover, :focus) {
	color: #ffffff;
}

@media (max-width: 991px) {
	.phone {
		margin-bottom: 15px;
	}
	.contactMobil {
		padding-top: 30px;
	}
}

/* #endregion ----------------------------- standort - phone -------------------------------------- */

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

/* burgermenu for tablet */

@media (max-width: 991px) {
	#burgerButton {
		font-size: 0;
		border: none !important;
		position: absolute;
		z-index: 1002;
		display: block;
		width: 46px;
		height: 40px;
		border-radius: 2px;
		cursor: pointer;
		background-color: #ffffff;
		padding: 3px;
		right: 12px;
		top: 50%;
		margin-top: -20px;
	}

	#burgerButton::before,
	#burgerButton::after,
	#burgerButtonInner {
		background-color: #038abe;
		border-radius: 2px;
		position: absolute;
		width: 40px;
		height: 3px;
		left: 2px;
		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: 11px;
	}

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

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

	.navbar-nav {
		margin: 20px 0;
		width: 100%;
	}

	.navbar-collapse {
		width: calc(100% - 90px);
		max-width: 300px;
		top: 70px;
		background: #038abe;
		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 {
		height: 70px;
		line-height: 1;
		padding: 10px 15px;
		background-color: #ffffff;
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		z-index: 101;
		box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
	}

	.dropdown-toggle-button-wrapper,
	.dropdown-toggle-button-wrapper2 {
		z-index: 1;
	}

	.dropdown-toggle-button-wrapper {
		top: 5px;
	}

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

/* menu desktop */

@media (min-width: 992px) {
	#menu {
		background-color: #038abe;
	}

	.is-sticky #menu {
		left: unset !important;
	}

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

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

/* toplevel */

nav.horizontally a[class*="toplevel"] {
	color: #fff;
	font-weight: 400;
	text-align: left;
	padding: 10px 35px;
	position: relative;
	font-size: clamp(1.125rem, 3vw, 1.25rem);
	line-height: 1.2;
	text-decoration: none;
}

nav.horizontally li:last-child a[class*="toplevel"] {
	font-size: 0;
	background: url("../img/suche.png") center no-repeat;
	min-height: 82px;
	min-width: 60px;
}

nav.horizontally li:first-child a[class*="toplevel"] {
	font-family: "Schoolbell", cursive;
}

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

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

	nav.horizontally a[class*="toplevel"].dropdown-toggle::after {
		content: "";
		position: absolute;
		display: block;
		right: 15px;
		top: 50%;
		margin-top: -3px;
		width: 11px;
		height: 7px;
		background: #ffffff;
		clip-path: polygon(50% 100%, 0 0, 100% 0);
	}
}

/* toplevel-over */

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

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
	background-color: #ffffff;
	box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, 0.12);
}

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

	nav.horizontally [class*="secondlevel"] > ul {
		background-color: rgba(255, 255, 255, 0.1);
	}
}

@media (min-width: 992px) {
	nav.horizontally [class*="toplevel"] ul {
		padding-top: 10px;
		padding-bottom: 10px;
		box-shadow:
			0 0 4px 0 rgba(0, 0, 0, 0.2),
			inset 0 0 20px 0 rgba(0, 0, 0, 0.12);
	}

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

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

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
	color: #2d2d2d;
	text-align: left;
	padding: 10px 15px;
	font-size: clamp(1rem, 3vw, 1.125rem);
	line-height: 1.2;
	text-decoration: none;
	position: relative;
	hyphens: auto;
}

@media (min-width: 992px) {
	nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
		padding: 6px 25px;
	}

	nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::before {
		content: "\0007C";
		margin-right: 5px;
		position: absolute;
		left: 18px;
		top: 5px;
	}
}

@media (min-width: 992px) {
	.navbar-default .navbar-nav > li > .dropdown-menu > li > a.dropdown-toggle2 {
		padding-right: 25px;
	}
	.navbar-default .navbar-nav > li > .dropdown-menu > li > a.dropdown-toggle2::after {
		content: "";
		position: absolute;
		display: block;
		right: 10px;
		top: 50%;
		margin-top: -4px;
		width: 8px;
		height: 8px;
		border-radius: 1px;
		border-right: 2px solid #0d0d0d;
		border-bottom: 2px solid #0d0d0d;
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
		-webkit-transition: border 300ms linear;
		-moz-transition: border 300ms linear;
		-ms-transition: border 300ms linear;
		-o-transition: border 300ms linear;
		transition: border 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: #09286e;
}

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

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

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

@media (min-width: 768px) {
	body.index #slider .nivo-directionNav a {
		top: unset;
		bottom: 10px;
		z-index: 51;
	}
}

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

	body.index #slider .nivo-directionNav a {
		bottom: 110px;
	}
}

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

@media (min-width: 768px) {
	#headerpic {
		background: #1b5588;
	}

	.theme-nivo .nivo-controlNav .slick-dots li {
		color: #fff;
	}
}

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

@media (min-width: 992px) {
	#headerpic a.nivo-prevNav {
		left: 65px;
	}

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

.slider-mask {
	display: none;
}

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

#slogan {
	position: relative;
	pointer-events: auto;
	padding-top: 15px;
	letter-spacing: 2px;
	color: #2d2d2d;
	line-height: 1.2;
	font-size: clamp(2rem, 5vw, 3.4375rem);
	font-weight: 700;
}

#slogan :is(h2, h3, h4, h5, h6) {
	font-size: clamp(1.375rem, 4vw, 1.6875rem);
	text-transform: uppercase;
	font-weight: 400;
	margin: 0;
}

#slogan a,
#news-events .tabLink a,
#events .tab_link_mehr a {
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block;
	font-size: 0.9375rem;
	color: #fff;
	font-weight: 400;
	border-radius: 2px;
	padding: 3px 11px;
	background: #007aa3;
	border: 1px solid rgba(0, 0, 0, 0.15);
}

#news-events .tabLink a,
#events .tab_link_mehr a {
	padding: 5px 15px;
	border-radius: 0;
}

#slogan a:hover,
#slogan a:focus,
#news-events .tabLink a:hover,
#news-events .tabLink a:focus,
#events .tab_link_mehr a:hover,
#events .tab_link_mehr a:focus {
	color: #ffffff;
	background: #038abe;
}

@media (max-width: 767px) {
	#slogan {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

@media (min-width: 768px) {
	#slogan,
	#slogan :is(h2, h3, h4, h5, h6) {
		color: #ffffff;
	}
}

@media (min-width: 992px) {
	#slogan a {
		padding: 11px 30px;
	}
}

#slogan :is(b, strong) {
	text-transform: none;
	letter-spacing: 0;
}

#bannerOverlay {
	border-bottom: 2px solid #038abe;
}

@media (min-width: 768px) {
	#bannerOverlay {
		position: absolute;
		right: 0;
		top: 0;
		bottom: clamp(1px, 9vw, 100px);
		left: 0;
		z-index: 53;
		pointer-events: none;
		border: none;
	}
}

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

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

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

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

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

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

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

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

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

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

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

/* -------------------------------------- tabs Right ------------------------------------- */

#bg-right .tab {
	border: 1px solid #cfcfcf;
	padding: 30px 40px;
	box-shadow: 0 15px 27px 0 rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
	font-size: 1rem;
}

#events {
	padding: 30px 25px !important;
	background: url('../img/icon-kalender.png') top 4px right 10px no-repeat;
}

#events .tabHeadline {
	padding-right: 75px;
}

#bg-right h2 {
	text-transform: uppercase;
	color: #038abe;
	font-size: 1.25rem;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
}

#bg-right .tab1 h2 {
	color: #038abe;
}

#events .tab_link_mehr {
	color: transparent;
	font-size: 0;
	padding-bottom: 20px;
	padding-right: 20px;
}

.tab_link_title a {
	color: #0d0d0d;
}
/* #region --------------------------------- news ----------------------------------------- */

#news-events {
	padding-bottom: 50px;
}

#news-events .tab {
	font-size: 1.0625rem;
}

#news-events .tabHeadline {
	font-size: clamp(1.5625rem, 4vw, 1.75rem);
	text-transform: uppercase;
}

#news .tab_link,
#news .tab_link > div {
	height: 100%;
	min-height: 100%;
}

@media (min-width: 992px) {
	#news-events .tabHeadline {
      padding-left: 25px;
	}
	:is(.news, .events) {
		padding-right: 120px;
	}
	#news-events .tabLink {
		padding-right: 120px;
		margin-top: -20px;
	}
}

:is(.news, .events) .tab_link_entry {
	font-size: 1rem;
	position: relative;
	width: 100%;
	margin-top: 80px;
	padding: 120px 20px 30px 20px;
	background: #ffffff;
	background-position: right 140px top;
	background-repeat: no-repeat;
	border: none !important;
	box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.06);
}

@media (max-width: 991px) {
	:is(.news, .events) .tab_link_entry {
		box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
	}
}

:is(.news, .events) .vorschau {
	opacity: 1;
}

:is(.news, .events) .tab_preview_picture {
	background: #ffffff;
}

:is(.news, .events) .tab_link_entry::before,
:is(.news, .events) .tab_link_entry .tab_preview_picture {
	position: absolute;
	display: block;
	top: -80px;
	left: 9px;
	width: 170px;
	height: 170px;
	overflow: hidden;
}

:is(.news, .events) .tab_link_entry::before {
	content: "";
	background:
		center / cover no-repeat,
		#666666;
}

:is(.news, .events) .tab_preview_picture img {
	position: absolute;
	margin: 0 !important;
	left: 50%;
	top: 50%;
	max-width: none;
	min-width: 100%;
	min-height: 100%;
	max-width: 170px;
	width: auto;
	height: auto;
	-ms-interpolation-mode: bicubic;
	transform: translateX(-50%) translateY(-50%);
	object-fit: cover;
}

:is(.news, .events) :is(.tab_date, .tab_link_date) {
	display: inline-block;
	position: absolute;
	z-index: 1;
	right: -1px;
	top: 54px;
	color: #ffffff;
	font-size: 0.8125rem;
	padding: 8px 30px;
	background: #038abe;
}

:is(.events) :is(.tab_date, .tab_link_date) {
	display: none;
}

:is(.news, .events) .tab_link_title a {
	display: block;
	font-weight: 700;
	font-size: 1.125rem;
	color: #0d0d0d;
	line-height: 1.2;
	margin-bottom: 8px;
}

:is(.news, .events) .tab_link_entries + div,
:is(.news, .events) .tab_link_entries .tab_spacer,
:is(.news, .events) .tab_link_entry > div:nth-last-child(2) {
	display: none;
}

/* #region --------------------------------- events ----------------------------------------- */

/* -------------------------------------------- teaser ------------------------------------------ */

#teaser {
	color: #56524a;
	font-weight: 400;
	line-height: 1.4;
	padding: clamp(30px, 4vw, 60px) 0;
	font-size: 1.125rem;
}

#teaser > .row {
	row-gap: 30px;
}

.teaser {
	padding: clamp(20px, 2vw, 40px) clamp(20px, 2vw, 30px);
	height: 100%;
	text-transform: uppercase;
	min-height: 100%;
	box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.1);
	border: 12px solid rgba(0, 0, 0, 0);
}

.teaser:hover {
	border: 12px solid rgba(0, 0, 0, 0.3);
}

.t1 {
	background: #09276d;
	color: #fff;
}

.t2 {
	font-family: "Schoolbell", cursive !important;
	font-weight: 400 !important;
	background: #36a4c8;
	color: #ffffff;
}

.t2 a {
	color: #ffffff;
}

.t2 :is(b, strong) {
	font-family: "Schoolbell", cursive !important;
	font-weight: 400 !important;
}

.t3 {
	background: #afdad9;
	color: #0d0d0d;
}

.teaser :is(h1, h2, h3, h4, h5, h6) {
	font-size: 1.5rem;
}

.teaser.t2 :is(h1, h2, h3, h4, h5, h6) {
	font-family: "Schoolbell", cursive !important;
	font-weight: 400 !important;
}

.t1 :is(h1, h2, h3, h4, h5, h6) {
	color: #fff;
}

.teaser img {
	margin-bottom: 30px;
}

.teaser:is(:hover, :focus-within) img {
	animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
}

@keyframes shake {
	10%,
	90% {
		transform: translate3d(-1px, 0, 0);
	}

	20%,
	80% {
		transform: translate3d(2px, 0, 0);
	}

	30%,
	50%,
	70% {
		transform: translate3d(-4px, 0, 0);
	}

	40%,
	60% {
		transform: translate3d(4px, 0, 0);
	}
}

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

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

#contact {
	background-color: #fff;
	color: #0d0d0d;
	border-top: 1px solid #038abe;
}

@media (max-width: 767px) {
	#contact {
		padding-top: 30px;
		padding-bottom: 15px;
	}

	#contact .row > *:nth-child(1) + * {
		margin-top: 15px;
	}
}

#contact .row > *:nth-child(1) .contactTab {
	padding-left: 25px;
	padding-right: 25px;
}

.contactTab {
	padding: clamp(15px, 4vw, 40px) 0;
	min-height: 100%;
	color:#038abe;
}

.contactTab .tabHeadline {
	margin-bottom: 20px;
	font-size: clamp(1.5rem, 3vw, 1.875rem);
		color:#038abe;
}

.contactTab a {
	color:#038abe;
}

#footer {
	background-color: #038abe;
	padding-top: 15px;
	padding-bottom: 15px;
	border-top: 1px solid #fff;
}

@media (max-width: 991px) {
	.iframe-wrapper-manual-enabling {
		position: unset !important;
	}
	.contactTab iframe {
		max-width: 100% !important;
	}
}

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

#innerfooter a {
	color: #ffffff;
	text-decoration: none;
	display: inline-block;
	padding: 4px 8px;
	font-size: clamp(1rem, 2vw, 1.125rem);
}

#innerfooter a:is(:hover, :focus) {
	color: #fff;
	background-color: #071f55;
}

#innerfooter ul {
	padding: 0;
}

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

@media (min-width: 992px) {
	#innerfooter li + li {
		margin-left: clamp(10px, 2vw, 20px);
	}
}

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

#vernetzt {
	gap: 14px;
	text-align: left;
	font-size: 0.9375rem;
	color: #ffffff;
	line-height: 1.4;
	font-weight: 400;
	text-decoration: none;
}

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

#vernetzt strong {
	color: #fff;
	font-weight: 400;
}

#vernetzt span span {
	display: block;
}

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

#scroll-top {
	font-size: 0;
	width: 34px;
	height: 34px;
	display: block;
	position: relative;
	margin: 0 auto;
	background-color: #ffffff;
	transition: border-radius 300ms linear;
}

@media (min-width: 992px) {
	#scroll-top {
		margin-right: 0;
	}
}

#scroll-top:is(:hover, :focus) {
	border-radius: 50%;
}

#scroll-top::after {
	content: "";
	position: absolute;
	left: 10px;
	top: 13px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 7px 7px 7px;
	border-color: transparent transparent #000 transparent;
}

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

#tab26 {
	margin: auto;
	width: 100%;
	max-width: 1440px;
	margin-bottom: 30px;
}

#tab26 .tab {
	font-size: 1rem;
	padding: 20px;
	background: #ffffff;
}




#news-events .news {
	background-color: #fff;
	box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.06);
	padding: 80px 40px;
	max-width: 1050px;
	margin: 0 auto;
}

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

:is(#tab26, #news-events .news, #news-events .events) .slick-slide {
	padding: 15px;
}

:is(#tab26, #news-events .news, #news-events .events) .slick-dots button,
:is(#tab26, #news-events .news, #news-events .events) .slick-button {
	background: transparent;
	border: none;
	padding: 5px;
}

:is(#tab26, #news-events .news, #news-events .events) .slick-button {
	font-size: 0px;
	position: relative;
	top: 4px;
}

:is(#tab26, #news-events .news, #news-events .events) .slick-prev {
	margin-left: 14px;
}

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

:is(#tab26, #news-events .news, #news-events .events) .slick-button::before {
	display: block;
	line-height: 9px;
	height: 20px;
	font-size: 40px;
	color: #000000;
}

:is(#tab26, #news-events .news, #news-events .events) .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;
}

:is(#tab26, #news-events .news, #news-events .events) .slick-button:focus::after,
:is(#tab26, #news-events .news, #news-events .events) .slick-button:hover::after {
	width: 28px;
	height: 28px;
}

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

:is(#tab26, #news-events .news, #news-events .events) .slick-dots {
	padding: 0 15px;
	list-style: none;
}

:is(#tab26, #news-events .news, #news-events .events) .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%);
}

:is(#tab26, #news-events .news, #news-events .events) .slick-dots,
:is(#tab26, #news-events .news, #news-events .events) .slick-button {
	display: inline-block !important;
}

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

:is(#tab26, #news-events .news, #news-events .events) .slick-dots > li.slick-active {
	background: #ce6000;
	transition: background 200ms linear;
}

:is(#tab26, #news-events .news, #news-events .events) .slick-dots > li + li {
	margin-left: 10px;
}

:is(#tab26, #news-events .news, #news-events .events) .slick-prev::before {
	content: "\2039";
}

:is(#tab26, #news-events .news, #news-events .events) .slick-next::before {
	content: "\203A";
}

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

:is(#tab26, #news-events .news, #news-events .events) .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");
}

:is(#tab26, #news-events .news, #news-events .events) .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");
}

/* #region ------------------------------------ select ------------------------------------------ */

#select {
	position: fixed;
	z-index: 1010;
	left: 60px;
	top: 23%;
}

#select summary {
	background: #007aa3 !important;
	display: block;
	height: 60px;
	width: 60px;
	padding: 5px 4px 5px 5px;
	cursor: pointer;
	box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.09);
	border-radius: 0 0;
	position: absolute;
	right: 0px;
	top: 0;
}

#select summary img {
	border-radius: 50%;
}

#selectList {
	position: relative;
	top: 0;
	right: calc(-100% + 60px);
	width: 100%;
	display: flex;
	pointer-events: none;
	display: block;
	text-align: left;
	background: #ffffff;
	padding: 15px;
	border: #323232 1px solid;
}

#selectList h2 {
	color: #323232;
	text-align: center;
	font-size: 1.25rem;
	margin: 2px 0 4px 0;
}

#select[open] #selectList {
	right: 60px;
	pointer-events: all;
}

@media (max-width: 992px) {
	#select {
		left: unset;
		right: 0;
		top: 13.5%;
	}

	#select summary {
		border-radius: 50% 0 0 50%;
		width: 46px;
		height: 46px;
		right: unset;
		left: -46px;
	}

	#selectList {
		right: unset;
		left: calc(-100% + 41px);
	}

	#select[open] #selectList {
		left: 0;
		right: unset;
	}
}

/* styler + contrast */

:is(#style, #contrast_style) button {
	border: none;
	font-size: 1rem;
	background: transparent;
	padding: 10px 0 10px 35px;
	position: relative;
	color: #323232;
	text-align: left;
}

@media (max-width: 575px) {
	:is(#style, #contrast_style) button {
		font-size: 16px;
	}
}

:is(#style, #contrast_style) button:is(:hover, :focus) {
	text-decoration: underline;
}

:is(#style, #contrast_style) button::before {
	content: "";
	display: block;
	height: 31px;
	width: 31px;
	position: absolute;
	top: calc(50% - 13px);
	left: 0;
	filter: contrast(100%);
	background: #fff center / contain no-repeat;
}

#style button::before {
	background-image: url("../img/t-icon.svg");
}

#style button:nth-child(1)::before {
	background-image: url("../img/lupe-plus-icon.svg");
}

#style button:nth-child(3)::before {
	background-image: url("../img/lupe-minus-icon.svg");
}

#contrast_style button::before {
	height: 27px;
	width: 27px;
	background-image: url("../img/lightbulb-icon.svg");
}

#contrast_style button:nth-child(1)::before {
	background-image: url("../img/contrast-icon.svg");
}

#contrast_style button:nth-child(2)::before {
	background-image: url("../img/grayscale-icon.svg");
}

/* #endregion --------------------------------- select ------------------------------------------ */



#newsletterInputs {
	height: 33px;
	background: #fff;
	display: inline-block;
	position: relative;
	border: 1px solid #81c4de;
}
#newsletter_input {
	color: #0d0d0d;
	font-size: 14px;
	font-style: normal;
	background: transparent;
	padding: 0;
	border: 0;
	line-height: 33px;
	padding-left: 10px;
	padding-right: 43px;
	height: 33px;
	width: 100%;
}
#newsletter_submit {
	width: 33px;
	background: url('../img/icon-newsletter.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;
}

#newsletter_input::-ms-input-placeholder {
	color: #0d0d0d !important;
}
#newsletter_input::-webkit-input-placeholder {
	color: #0d0d0d !important;
}
#newsletter_input::-moz-placeholder {
	opacity: 1;
}
#newsletter_input:-moz-placeholder {
	opacity: 1;
}