@font-face {
	font-display: swap;
	font-family: 'Lexend';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/lexend-v26-latin-300.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Lexend';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/lexend-v26-latin-regular.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Lexend';
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/lexend-v26-latin-600.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Lexend';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/lexend-v26-latin-700.woff2') format('woff2');
}
* {
	font-family: 'Lexend', sans-serif;
}
body {
	background-color: #eee;
}
main {
	background: #fff;
	z-index: 1;
	position: relative;
	max-width: 1800px;
	margin: auto;
}
b,
strong {
	font-weight: 600;
}
.headline-dash {
	width: 150px;
	margin: 1.75rem 0 2rem;
	color: green;
	border-width: 2px;
}
@media (min-width: 992px) {
	#fixed-buttons img {
		width: 40px;
		height: 40px;
	}
}
.bg-transparent-50 {
	background-color: rgba(255, 255, 255, 0.5);
}
.bg-primary-dark {
	background-color: #7d8274;
}
.bg-primary {
	background-color: #bfceb0 !important;
}
.bg-primary-subtle {
	background-color: #f3f5f0 !important;
}
.border-primary {
	border-color: #7d8274 !important;
}
.text-secondary {
	color: #7d8274 !important;
}
.text-primary {
	color: #bfceb0 !important;
}
.btn {
	padding: 0.5rem 1.5rem;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.1rem;
	text-transform: uppercase;
}
.btn-primary {
	background-color: #bfceb0;
	border-color: #bfceb0;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	background-color: #a3b194 !important;
	border-color: #a3b194 !important;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
}
.anchor {
	position: relative;
	top: -100px;
}
@media (min-width: 1200px) {
	#logo-top {
		width: 326px;
		height: 70px;
	}
}
.parallax-img {
	will-change: transform;
	transition: transform 0.05s linear;
}
#schwerpunkte-content::before {
	background-image: url('../images/blobs/blob_filled_2.svg');
	background-repeat: no-repeat;
	background-position: center;
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	transform: rotate(90deg) scale(1.5, -1.5);
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
@media (min-width: 1200px) {
	#schwerpunkte-content::after {
		background-image: url('../images/blobs/blob_filled_1.svg');
		background-repeat: no-repeat;
		background-position: center;
		content: '';
		position: absolute;
		width: 100%;
		height: 100%;
		z-index: -1;
		transform: rotate(-30deg) scale(1.25);
		right: -72%;
		top: -12%;
	}
}
@media (min-width: 992px) {
	#besonderheiten-image {
		right: -5rem;
	}
}
@media (min-width: 1400px) {
	#schwerpunkte-content::after {
		right: -63%;
	}
}
#schwerpunkte-content .card {
	background-color: rgba(255, 255, 255, 0.5);
	hyphens: auto;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
}
#swirl-filled {
	height: 0;
	position: relative;
}
#swirl-filled svg {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: -1;
	transform: scale(1.3) translateY(-10%) translateX(2%);
}
@media (min-width: 992px) {
	#swirl-filled svg {
		transform: scale(1.3) translateY(-15%) translateX(2%);
	}
}
@media (min-width: 1200px) {
	#swirl-filled svg {
		transform: scale(1.3) translateY(-20%) translateX(2%);
	}
}
/* -------------------------- Burger Menu Button - start ----- */
.hamburger {
	height: 28px;
	width: 28px;
	box-sizing: content-box;
}
.hamburger .main-nav-toggle {
	display: block;
	width: 28px;
	height: 16px;
	position: absolute;
	top: 12px;
}
.hamburger .main-nav-toggle::before,
.hamburger .main-nav-toggle::after {
	content: '';
	position: absolute;
	top: 0;
	height: 0;
	border-bottom: 4px solid #fff;
	width: 100%;
	left: 0;
	right: 0;
	transition: all ease-out 0.3s;
}
.hamburger .main-nav-toggle::after {
	top: 100%;
}
.hamburger .main-nav-toggle i {
	display: block;
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	height: 4px;
	background-color: #fff;
	width: 100%;
	position: absolute;
	top: 50%;
	transition: all ease-out 0.1s;
}
.hamburger[aria-expanded='true'] .main-nav-toggle::after {
	transform: rotate(-45deg);
	transform-origin: center;
	top: 50%;
}
.hamburger[aria-expanded='true'] .main-nav-toggle::before {
	transform: rotate(45deg);
	transform-origin: center;
	top: 50%;
}
.hamburger[aria-expanded='true'] .main-nav-toggle i {
	opacity: 0;
}
/* -------------------------- Burger Menu Button - end ----- */

/* -------------------------- SplideJS - start ----- */
.splide__pagination {
	margin-top: 1rem;
	position: static;
}
.splide__pagination__page.is-active {
	transform: none;
	background: black;
}
.splide__pagination__page {
	margin: 0 0.5rem;
}
.splide__arrow {
	height: 3em;
	width: 3em;
	background: #f3f5f0;
	opacity: 1;
}
.splide__arrow svg {
	height: 2em;
	width: 2em;
	fill: #bfceb0;
}
.splide__arrow--prev {
	left: 0;
}
.splide__arrow--next {
	right: 0;
}
/* -------------------------- SplideJS - end ----- */
