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

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

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

a {
	color: #096c6c;
}

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

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

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

b,
strong {
	font-weight: 700;
}

/* #region ----------------------------------- topbar ------------------------------------------- */

#topbar {
	color: #191919;
	background: #aad4d4;
}

#search h2 {
	color: inherit;
	font-size: 0.875rem;
	font-weight: 700;
	margin: 0 10px 0 0;
	width: auto;
	line-height: inherit;
}

/* search */

#search>* {
	padding-top: 12px;
	padding-bottom: 12px;
}

@media (min-width: 992px) {
	#search>* {
		padding-top: 6px;
		padding-bottom: 6px;
	}
}

#search_input {
	color: #191919;
	font-size: 0.875rem;
	font-style: normal !important;
	background: transparent;
	border: 0;
	width: 100%;
	max-width: 180px;
	padding-left: 10px;
	padding-right: 10px;
}

#search_submit {
	border: none;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="48" fill="%23191919" viewBox="0 -960 960 960" width="48"><path d="M796-121 533-384q-30 26-69.959 40.5T378-329q-108.162 0-183.081-75Q120-479 120-585t75-181q75-75 181.5-75t181 75Q632-691 632-584.85 632-542 618-502q-14 40-42 75l264 262-44 44ZM377-389q81.25 0 138.125-57.5T572-585q0-81-56.875-138.5T377-781q-82.083 0-139.542 57.5Q180-666 180-585t57.458 138.5Q294.917-389 377-389Z"/></svg>') no-repeat center / 20px auto;
	padding: 0;
	cursor: pointer;
	font-size: 0;
	min-width: 34px;
	flex-shrink: 0;
	transition: background-color 300ms linear;
}

#search_submit:is(:hover, :focus) {
	background-color: rgba(255, 255, 255, 0.5);
}

#search_input::placeholder {
	color: #191919 !important;
	opacity: 0.8 !important;
	font-style: normal !important;
}

/* #endregion -------------------------------- topbar ------------------------------------------- */

/* LOGO TEXT -------------------------------------------------------- */

.logo {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 15px;
	text-decoration: none !important;
}

.logo .template-page {
	width: auto;
}

.logo .cleaner {
	display: none;
}

.logoText {
	color: #191919;
	font-size: 1.375rem;
	align-content: center;
	line-height: 1.1;
}

.logoText :is(b, strong) {
	display: block;
	color: #096c6c;
	font-size: 1.5625rem;
	text-transform: uppercase;
}

.logoText br {
	display: none;
}

@media (max-width: 575px) {
	.logoText {
		hyphens: auto;
	}
}

/* LOGO MIT TEXT -------------------------------------------------------- */

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

/* burgermenu for tablet */

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

	#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: #096c6c;
		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);
	}

	.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: 64px;
		right: 15px;
		z-index: 101;
	}

	.is-sticky .navbar-header {
		top: 15px;
	}

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

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

/* menu desktop */

@media (min-width: 992px) {
	#sticky-wrapper {
		position: absolute;
		top: 0px;
		left: 0px;
		right: 0px;
	}

	nav.horizontally {
		background: rgba(255, 255, 255, 0.94);
		padding: 30px 0;
		box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
		transition: padding 200ms linear;
	}

	.is-sticky nav.horizontally {
		padding: 10px 0;
	}

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

/* toplevel */

nav.horizontally a[class*="toplevel"] {
	color: #191919;
	font-weight: 700;
	text-align: left;
	padding: 12px 15px;
	position: relative;
	font-size: 1.125rem;
	line-height: 1.2;
	text-decoration: none;
	border-top: 2px solid transparent;
	transition: border 300ms, color 300ms;
}

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

	nav.horizontally li[class*="toplevel"]+li {
		border-top: 1px solid rgba(46, 60, 72, 0.2);
	}
}

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

	nav.horizontally li[class*="toplevel"]+li {
		margin-left: 15px;
	}
}

@media (min-width: 992px) {
	nav.horizontally a[class*="toplevel"]::before {
		content: "";
		width: 21px;
		height: 29px;
		display: block;
		position: absolute;
		left: -30px;
		top: 0;
		background: url(../img/hover-schmetterling.png) no-repeat;
		opacity: 0;
		transition: opacity 300ms linear;
	}

	.navbar-default .navbar-nav>li.dropdownpr>a::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: calc(50% - 3px);
		display: block;
		width: 6px;
		height: 6px;
		border-right: 1px solid #191919;
		border-bottom: 1px solid #191919;
		transform: rotate(45deg);
	}
}

/* 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: #096c6c;
	background-color: transparent;
	border-top: 2px solid #096c6c;
}

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

/* secondlevel + thirdlevel dropdown-box */

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

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

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

	nav.horizontally [class*="toplevel"]>ul {
		left: 50%;
		transform: translate(-50%);
		margin-top: 45px;
	}

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

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

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

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

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

/* secondlevel + thirdlevel */

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

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

/* 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: #aad4d4;
}

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

/* ----------------------------------------------- banner Resp ----------------------------------------------- */

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

@media (min-width: 992px) {
	body.index :is(#slider) {
		max-height: clamp(440px, 68vw, 860px);
	}

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

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

#headerpic .nivo-controlNav {
	bottom: 15px;
}

#headerpic {
	position: relative;
}

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

.slider-mask {
	display: block;
	background: url(../img/banner-bogen.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: contain;
}

body.index .slider-mask {
	background-image: url(../img/banner-bogen.png), linear-gradient(0deg, rgba(25, 25, 25, 0.6) 18%, rgba(25, 25, 25, 0) 81%);
}

/* ----------------------------------------------- banner Resp ----------------------------------------------- */

#bannerTab {
	padding: 30px 0;
	font-size: 1.5625rem;
}

#bannerTab :is(i, em) {
	text-transform: uppercase;
	font-style: normal;
}

#bannerTab :is(b, strong) {
	font-size: clamp(2.1875rem, 5vw, 4.0625rem);
	color: #096c6c;
}

@media (min-width: 992px) {
	#bannerTab {
		position: absolute;
		bottom: 35px;
		z-index: 20;
		pointer-events: none;
		width: 100%;
		color: #fff;
	}

	#bannerTab a,
	#bannerTab :is(b, strong) {
		color: #fff;
	}

	#bannerTab>.row>div>* {
		pointer-events: all;
	}
}

/* #region -------------------------------- scroll bottom --------------------------------------- */

#scrollBottom {
	font-size: 0;
	border-radius: 50%;
	display: block;
	width: 40px;
	height: 40px;
	text-align: center;
	background-color: #aad4d4;
	animation: bounceAni 2s infinite 2s;
	transition: all 0.2s ease-in;
	margin: 0 auto;
	margin-top: 40px;
}

#scrollBottom:is(:hover, :focus) {
	animation-play-state: paused;
}

#scrollBottom::after {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 1px;
	margin-top: 13px;
	display: inline-block;
	border-left: 2px solid #191919;
	border-bottom: 2px solid #191919;
	transform: rotate(-45deg);
	transition: border 300ms linear;
}

@keyframes bounceAni {

	0%,
	100%,
	20%,
	50%,
	80% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-10px);
	}

	60% {
		transform: translateY(-5px);
	}
}

#scrollBottom:is(:hover, :focus)::after {
	border-color: #096c6c;
}

/* #endregion ----------------------------- scroll bottom --------------------------------------- */

/* ------------------------------------------- zitatBox ------------------------------------------ */

#zitatBox {
	padding-top: clamp(35px, 6vw, 80px);
	padding-bottom: 80px;
}

#zitatBox .tab {
	color: #ffffff;
	padding: clamp(60px, 6vw, 105px) clamp(60px, 10vw, 265px);
	border-radius: 20px;
	background-color: #191919;
	position: relative;
	z-index: 1;
}

#zitatBox .tab::before {
	content: '';
	position: absolute;
	pointer-events: none;
	top: -40px;
	right: 40px;
	width: 90px;
	height: 87px;
	background: url('../img/deko-anfuehrungszeichen-oben.png') center no-repeat;
	z-index: 1;
}

#zitatBox .tab::after {
	content: '';
	position: absolute;
	pointer-events: none;
	bottom: -40px;
	left: 40px;
	width: 90px;
	height: 88px;
	background: url('../img/deko-anfuehrungszeichen-unten.png') center no-repeat;
	z-index: 1;
}

#zitatBox .tab :is(h1, h2, h3, h4, h5, h6, a) {
	color: #ffffff;
}

#zitatBox .tab :is(h1, h2, h3, h4, h5, h6) {
	margin: 0;
}

#zitatBox .tab :is(h1, h2, h3) {
	font-size: clamp(1.875rem, 4vw, 2.8125rem);
}

/* ---------------------------------------- video_wrapper -------------------------------------- */

#video_wrapper {
	width: 100%;
	height: auto;
	max-height: 320px !important;
	overflow: hidden;
	pointer-events: none;
	border-radius: 20px;
	position: absolute;
	opacity: 0.65;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

#body-video-background {
	width: 100%;
	z-index: -100;
	position: relative;
	margin-top: -13%;
	max-width: 100%;
	object-fit: cover;
}

@media(max-width:991px) {
	#video_wrapper {
		max-height: max-content !important;
	}
}

@media (max-width: 575px) {
	#body-video-background {
		height: 100%;
		margin-top: 0%;
	}
}

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

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

body.index #content {
	padding-top: 0;
	padding-bottom: 0;
}

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

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

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

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

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

/* --------------------------------------------- zitat ------------------------------------------- */

#zitat {
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	padding: 60px 0;
	font-size: clamp(1.25rem, 3vw, 2.5rem);
}

#zitat :is(b, strong) {
	color: #096c6c;
}

#zitat .tab {
	background: rgba(255, 255, 255, 0.8);
	padding: clamp(45px, 6vw, 66px);
	border-radius: 20px;
	outline: 2px solid #096c6c;
	outline-offset: -15px;
	transition: outline-offset 300ms;
	position: relative;
}

#zitat .tab:is(:hover, :focus) {
	outline-offset: 15px;
}

#zitat .tab::before,
#zitat .tab::after {
	content: "";
	position: absolute;
	min-width: 40px;
	min-height: 40px;
	width: 3.6458vw;
	height: 3.5417vw;
	max-width: 70px;
	max-height: 68px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

#zitat .tab::before {
	background-image: url(../img/icon-anfuehrungszeichen-oben.png);
	top: 0;
	transform: translateY(-50%);
	right: 35px;
}

#zitat .tab::after {
	background-image: url(../img/icon-anfuehrungszeichen-unten.png);
	bottom: 0;
	transform: translateY(50%);
	left: 35px;
}

/* --------------------------------------------- zitat ------------------------------------------- */

/* --------------------------------------------- TextBild ------------------------------------------- */

#textBild {
	padding: 50px 0;
}

#textBild .row {
	gap: 30px 0;
}

#textBild #bannerContainer {
	border-radius: 20px;
	overflow: hidden;
	max-height: 100%;
}

@media (min-width: 1200px) {
	#textBild #bannerContainer {
		margin-left: calc((100vw - 1200px) / -2 - 15px);
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
	}
}

@media (min-width: 1920px) {
	#textBild #bannerContainer {
		margin-left: calc((100% - 1200px) / 2 - 15px);
	}
}

#textBild #bannerContainer .banner {
	line-height: 0;
}

#textBild #bannerContainer .banner img {
	height: 900px;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

/* --------------------------------------------- TextBild ------------------------------------------- */

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

#videoTab {
	padding-bottom: 50px;
}

#videoTab img {
	border-radius: 20px;
}

#maps {
	padding: 20px clamp(20px, 3vw, 40px);
	background: #c5e2e2;
}

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

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

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

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

@media (max-width: 767px) {
	#footer>.row>div+div {
		border-top: 1px solid #096c6c;
		margin-top: 20px;
		padding-top: 20px;
	}
}

@media (min-width: 768px) {
	#footer>.row>div:not(:last-child) {
		padding-top: 10px;
		padding-bottom: 10px;
		border-left: 1px solid #096c6c;
	}
}

#footer {
	padding: 30px 0;
	color: #191919;
	font-size: 1rem;
	background-color: #c5e2e2;
}

#footer .footerContactTab a {
	position: relative;
}

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

#footer a:is([href*="mailto:"], a[href*="tel:"]) {
	position: relative;
	display: inline-block;
	padding-left: 30px;
	margin-top: 5px;
}

#footer a:is([href*="mailto:"], a[href*="tel:"])::before {
	content: "";
	display: block;
	position: absolute;
	height: 22px;
	width: 22px;
	background: url("../img/icon-mail.png") center no-repeat, #096c6c;
	top: 50%;
	left: 0;
	border-radius: 50%;
	transform: translateY(-50%);
}

#footer a[href*="tel:"]::before {
	background: url("../img/icon-telefon.png") center no-repeat, #096c6c !important;
}

#innerfooter ul {
	padding: 0;
}

#innerfooter a {
	color: #191919;
	text-decoration: none;
	display: inline-block;
}

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

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

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

#vernetzt {
	gap: 12px;
	text-align: left;
	font-size: 0.875rem;
	color: #191919;
	line-height: 1.3;
	text-decoration: none;
}

#vernetzt b {
	color: #096c6c;
}

#vernetzt span span {
	display: block;
}

/* #region -------------------------------------- scroll top ------------------------------------ */

#scrollTop {
	color: #ffffff;
	display: block !important;
	font-size: 0;
	opacity: 1 !important;
	background: #096c6c;
	width: 50px;
	height: 50px;
	position: relative;
	margin: 0 auto;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

@media (min-width: 992px) {
	#scrollTop {
		position: fixed;
		bottom: 165px;
		right: 38px;
		z-index: 55;
	}
}

#scrollTop:is(:hover, :focus) {
	background-color: #aad4d4;
}

#scrollTop::after {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 1px;
	margin-top: 20px;
	display: inline-block;
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	transform: rotate(-45deg);
	transition: border 300ms linear;
}

#scrollTop:is(:hover, :focus)::after {
	border-color: #191919;
}

/* #endregion ----------------------------------- scroll top ------------------------------------ */