/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;800&display=swap'); */

/* Core Stuff */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
	--header-size: 5rem;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	margin: 0;
	font-size: 18px;
	line-height: 28px;
	color: #606d6e;
	color: #616060;

	font-family:'poppins', -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif !important;
	font-weight: 300;

	font-size: clamp(1rem, 3vw, 1.125rem);
	line-height: 1.56em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #008ac9;
}

h1 {
	font-weight: 800;
	font-size: 50px;
	line-height: 66px;
	margin: 0 0 1em 0;
	font-family: "Poppins", sans-serif !important;
	font-size: 3.1rem;
	font-size: clamp(2rem, 3vw, 3.1rem);
	line-height: 1.33em;
}

h2 {
	font-weight: 600;
	font-size: 48px;
	line-height: 60px;

	font-size: 3rem;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1.25em;
}

h3 {
	font-weight: 600;
	font-size: 30px;
	line-height: 36px;

	font-size: clamp(1.5rem, 3vw, 1.9rem);
	line-height: 1.18em;
}

a {
    color: #1F8CD6;
    text-decoration: none;
}

a:hover {
    color: #175E91;
}

pre {
    background: #F0F0F0;
    margin: 1rem 0;
    border-radius: 2px;
}

blockquote {
    border-left: 10px solid #eee;
    margin: 0;
    padding: 0 2rem;
}

figure {
	margin: 0;
	width: 100%;
	max-width: 1164px;
	height: 100%;
}

img {
	border: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* Utility Classes */
.wrapper {
    margin: 0 1em;
}

.padding {
    padding: 3rem 1rem;
}

main.default-page {
	padding-top: calc(var(--header-size) + 3em );
	padding-bottom: 3em;
}

.left {
    float: left;
}

.right {
    float: right
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* Content Styling */
.header .padding {
	padding: 1rem 0;
}

.header .wrapper {
	position: relative;
	height: 100%;
}

.header {
	position: fixed;
	width: 100%;
	height: var(--header-size);
	background-color: #1F8DD6;
	color: #eee;
	background-color: white;
	color: #008acb;
	top: 0;
	z-index: 5;
	box-shadow: 0 0 25px #000000b0;
}

.header-dummy {
	width: 100%;
	height: var(--header-size);
}

.header a {
    color: #fff;
    color: #008acb;
}

.header .logo {
	position: absolute;
	top: 0.5rem;
	bottom: 0;
	margin: auto 0;
	display: block;
	height: 60%;
}
.header .logo a {
	height: 100%;
	display: block;
}

.header .logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.header .ukl-link {
	/*position: fixed;*/
	position: absolute;
	top: 1em;
	right: 1em;
	margin: 0;
	color: white;
	background-color: #b51e63;
}

.header .container {
	max-width: 1280px;
	padding: 1rem 1rem;
}


@media screen and (max-height: 380px) {
	:root {
		--header-size: 3rem;
	}
	/*
	.header .padding {
		padding: 0;
	}
	*/
}

.footer {
	position: relative;
	background-color: #008ac9;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3em;
	color: white;
	padding-top: 2em;
}

.footer-content a {
	color: white;
}

.footer-column {
	width: 100%;
	height: 100%;
	position: relative;
}

.footer-column hr {
	color: white;
	height: 0;
	box-sizing: content-box;
	margin-bottom: 2em;
}

.footer figure {
	margin: 0;
	width: 100%;
	height: fit-content;

	border-radius: 15px;
	overflow: hidden;
}

.footer figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer_logo {
	position: relative;
	display: block;
	height: fit-content;
}

.footer .footer-stamps {
  column-count: 2;
  margin: 2em 0;
  gap: 3em;
}

.footer .footer-stamps .footer-stamp {
  border-radius: 0;
}


.footer .content-nav-footer {
	display: flex;
	gap: 1em;
	flex-direction: column;
}

.footer-menu {
	list-style: none;
	padding-left: 0;
	line-height: 2.3em;
}

@media (max-width: 800px) {
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-column.nav-column {
		grid-column: 1/ -1;
	}

	.footer .content-nav-footer {
		flex-direction: column-reverse;
		padding-bottom: 2em;
	}

	.footer-menu {
		display: flex;
		justify-content: space-evenly;
		flex-wrap: wrap;
		gap: 1em;
	}
}

@media (max-width: 550px) {
	.footer-content {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* Menu Settings */

.main-nav {
	margin: auto auto;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.main-nav ul {
	text-align: center;
	letter-spacing: 0;
	margin: auto 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	width: 100%;
	height: 100%;
}

.main-nav ul li {
    display: inline-block;
    letter-spacing: normal;
}

.main-nav ul li a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 32px;
    color: #616060;
    padding: 0;
    white-space: nowrap;
}

.main-nav > ul > li > a {
    border-radius: 2px;
}

.main-nav ul li .active {
	font-weight: 600;
}

/*Active dropdown nav item */
.main-nav ul li:hover > a {
	color: #008ac9;
}

/* Selected Dropdown nav item */
/*
.main-nav ul li.selected > a {

    background-color: #fff;
    color: #175E91;

}
	*/

/* Dropdown CSS */
.main-nav ul li {position: relative;}

.main-nav ul li ul {
    position: absolute;
    background-color: #1F8DD6;
    min-width: 100%;
    text-align: left;
    z-index: 999;

    display: none;
}
.main-nav ul li ul li {
    display: block;
}

/* Dropdown CSS */
.main-nav ul li ul ul {
    left: 100%;
    top: 0;
}

/* Active on Hover */
.main-nav li:hover > ul {
    display: block;
}

/* Child Indicator */
.main-nav .has-children > a {
    padding-right: 30px;
}
.main-nav .has-children > a:after {
    font-family: FontAwesome;
    content: '\f107';
    position: absolute;
    display: inline-block;
    right: 8px;
    top: 0;
}

.main-nav .has-children .has-children > a:after {
    content: '\f105';
}

.burger-menu {
	display: none;
	position: absolute;
	right: 2em;
	z-index: 50;
	align-items: center;
	justify-content: flex-end;
	width: 25px;
	height: 25px;
	margin: auto 0;
	top: 0;
	bottom: 0;
	cursor: pointer;
}

.burger-menu span {
	height: 2px;
	width: 100%;
	background-color: #707070;
	transition: background-color 175ms, transform 175ms;
	transition-delay: 0s, 0s;
	transition-delay: 175ms;
}

.burger-menu::after,
.burger-menu::before {
	content: '';
	position: absolute;
	height: 2px;
	width: 100%;
	background-color: #707070;
	transition: all 0.1s ease 0.1s;
}
.burger-menu:before {
	top: 0;
}
.burger-menu:after {
	bottom: 0;
}

.burger-menu.active span {
	background-color: #707070;
	transform: scale(0);
	transition-delay: 0.15s;
}
.burger-menu.active::before {
	top: 50%;
	transform: rotate(-45deg) translate(0, -50%);
}
.burger-menu.active::after {
	bottom: 50%;
	transform: rotate(45deg) translate(0, 50%);
}
.burger-menu.active::after,
.burger-menu.active::before {
	background-color: #707070;
}

@media (max-width: 1230px) {
	.burger-menu {
		display: flex;
	}

	.main-nav {
		position: fixed;
		width: 100%;
		height: 0;
		visibility: hidden;
		background-color: #008ac9;
		color: white;
		top: var(--header-size);
		left: 0;
  		padding: 3rem 4em 3em 2em;
		z-index: 6;
		opacity: 0;
		transition: all 0.3s ease-in;
	}

	.header.mobile-menu-open .main-nav {
		height: calc(100vh - var(--header-size));
		height: calc(100dvh - var(--header-size));
		visibility: visible;
		opacity: 1;
		overflow: scroll;
		touch-action: none;
	}

	.main-nav ul {
		text-align: left;
		justify-content: space-evenly;
		align-items: baseline;
		flex-direction: column;
		height: 100%;
		z-index: 3;
		position: relative;
		width: 100%;
		gap: 0;
		padding: 2em 3em;
	}

	.main-nav ul li a {
		color: white;

		font-size: clamp(16px, 4vw, 28px);
		line-height: 1.2em;
	}

	.header .ukl-link {
		top: calc(var(--header-size) + 1em);
	}
}

@media (orientation: landscape) and (max-width: 1230px)
{
	.main-nav ul {
		flex-direction: row;
		flex-wrap: wrap;
		padding: 0;
		gap: 1em;
	}
}


.container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 1em;
}

.anchor {
	scroll-margin-top: var(--header-size);
}

main section {
	position: relative;
	background-color: white;
	overflow: hidden;

	margin-bottom: -30px;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
}

.section.section {
	padding: 3em 0 6em 0;
}

.section.bg-dark {
	background-color: #008ac9;
	color: white;
	border-radius: 34px 34px 0 0;
}
.section.bg-dark h2 {
	color: white;
}
.section.bg-dark .ukl-link {
	border: 2px solid white;
}
.section.bg-light {
	background-color: #ddf4ff;
}


.ukl-link {
	display: block;
	border-radius: 34px;
	opacity: 1;
	text-align: center;
	width: fit-content;
	font-size: 15px;
	font-weight: 500;
	line-height: 28px;
	padding: 0.7rem 1.1rem;
	margin: 2em auto;
	color: white;
	background-color: #008ac9;
	transition: all 0.2s ease-in;
}

.section.modular-intro {
	padding-top: 5em;
}

.modular-intro .ukl-link {
	font-size: 24px;
	line-height: 38px;
	padding: 0.7rem 1.3rem;
}

.ukl-link:hover {
	transform: scale(1.1);
	color: white;
}

.footer .ukl-link {
	border: 1px solid white;
	width: 100%;
	margin-bottom: 4em;
}

.info-content {
	text-align: center;
	font-size: 24px;
	line-height: 36px;
	font-weight: 400;

	font-size: 1.5rem;
	font-size: clamp(1rem, 3vw, 1.5rem);
	line-height: 1.5em;
}

.info-content.reverse-m {
	display: flex;
	flex-direction: column-reverse;
}

.info-content .media-block {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 15px;
	overflow: hidden;
}

.info-content .media-block video {
	width: 100%;
	height: 100%;
	display: block;
}

.info-content .media-block .overlay {
	position: absolute;
	width: 35%;
	margin: auto auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.intro-content {
	display: flex;
	gap: 2em;
}

.intro-column {
	height: 100%;
	max-width: 50%;
}

.intro-column figure {
	width: 100%;
	height: 100%;
	margin: 0;
}

.intro-column figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media screen and (max-width: 650px) {
	.intro-content {
		flex-direction: column;
	}
	.intro-content .intro-column {
		max-width: unset;
	}
}

.features-group {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2em;
	margin: 3em 0;
}

.features-group a {
	height: fit-content;
	color: unset;
}

@media screen and (max-width: 1100px) {
	.modular-info .features-group {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (orientation: portrait) and (max-width: 740px) {
	.features-group {
		grid-template-columns: repeat(1, 1fr);
	}

	.modular-info .features-group {
		grid-template-columns: repeat(1, 1fr);
	}
}

.feature {
	text-align: left;
	box-shadow: 0px 0px 30px 0px rgba(0,0,0, 0.2);
	border-radius: 30px;
	padding: 3rem 2rem;
	container-type: inline-size;
	transition: all 0.3s ease-in;
}

.feature:hover {
	box-shadow: 0px 0px 30px 0px #008ac9;
}

.modular-intro .feature {
	text-align: center;
	box-shadow: 0px 3px 30px gray;
	margin: auto 0;
}

.feature em {
	color: #008ac9;
	font-style: normal;
	font-weight: 600;
	font-size: 42px;
	vertical-align: bottom;
}

.feature figure {
	height: 30cqw;
	width: fit-content;
	margin-right: auto;
}

.feature figure img {
	width: unset;
}

.benefits-group {
	display: grid;
	padding: 4rem 0;
	gap: 4rem;
	grid-auto-flow: dense;
	grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 640px) {
	.benefits-group {
		grid-template-columns: repeat(1, 1fr);
	}
}

.benefit {
	width: 45%;
	box-shadow: 0 0 25px #000000b0;
}

.benefit-element {
	width: 100%;
	height: fit-content;
	display: flex;
	flex-direction: column;
	background-color: white;
	border-radius: 1cqw;
	overflow: hidden;
	box-shadow: 0 0 25px #000000b0;
	container-type: inline-size;
}

.benefit-image {
	width: 100%;
	margin: 0;
	aspect-ratio: 1;
}

.benefit-image img {
	object-fit: cover;
}

.benefit-title {
	text-align: center;
	color: white;
	display: none;
}

.benefit-text {
	text-align: left;
	width: 88%;
	margin: 8cqw auto;
	color: #008ac9;
	font-weight: 500;
	font-size: 5.5cqw;
	line-height: 8.5cqw;
}

.benefit-text ul {
	padding-left: 4cqw;
	margin: 0;
}

.swiper-button-next::after, .swiper-button-prev::after {
	font-family: unset;
	line-height: unset;
	font-size: unset;

}

.swiper-button-next, .swiper-button-prev {
  /* width: calc(var(--swiper-navigation-size)/ 44 * 27); */
  /* height: var(--swiper-navigation-size); */
  /* margin-top: calc(0px - (var(--swiper-navigation-size)/ 2)); */
  /* color: var(--swiper-navigation-color,var(--swiper-theme-color)); */
	width: 45px;
	height: 45px;
	color: #616060;
	background-color: white;
	border-radius: 50%;
	box-shadow: 0 0 10px gray;
	font-size: 40px;
	transition: all 0.2s ease-in;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	scale: 1.1;
	box-shadow: 0 0 10px #252525;
}

.swiper-button-next::after, .swiper-rtl .swiper-button-prev::after {
	content: '>';
}

.swiper-button-prev::after, .swiper-rtl .swiper-button-next::after {
	content: '<';
}

.section.modular-benefits {
	padding-bottom: 3em;
}

.modular-benefits .mySwiper2 {
	height: 100%;
	margin-bottom: 0;
}

.modular-benefits .swiper-slide {
	height: max-content;
	width: 50%;
}

.modular-benefits .swiper-slide {
	pointer-events: none;
	cursor: default;
}

.modular-benefits .swiper-slide-active {
	pointer-events: all;
	cursor: pointer;
}

.modular-benefits .swiper-wrapper {
  height: max-content;
}

.modular-benefits .swiper-slide .benefit-element {
  /* width: 100%; */
  /* width: 50%; */
  /* display: flex; */
	max-width: 90%;
	margin: 2em auto;
	position: relative;

	opacity: 0.2;
	transition: all 0.2s ease-in;
	box-shadow: 0 0 5px #000000b0;
}

.modular-benefits .swiper-slide-next .benefit-element,
.modular-benefits .swiper-slide-prev .benefit-element {
	opacity: 0.8;
	box-shadow: 0 0 15px #000000b0;
}

.modular-benefits .swiper-slide-active .benefit-element {
	opacity: 1;
	box-shadow: 0 0 25px #000000b0;
}

@media (max-width: 450px) {
	.modular-benefits .swiper-slide .benefit-element {
		max-width: 70%;
		border-radius: 15px;
	}

	.modular-benefits .benefit-text {
		width: 85%;
	}

	.modular-benefits .swiper-button-next,
	.modular-benefits .swiper-button-prev {
		width: 35px;
		height: 35px;
	}
}

.accordion-group {
	margin-top: 4em;
}

.accordion-element .container {
	display: grid;
	grid-template-columns: auto 70%;
	gap: 3em;
}

.accordion-element {
	padding: 5em 0;
	border-top: 1px solid #616060;
}

.accordion-element:last-child {
	border-bottom: 1px solid #616060;
}

.accordion-element .element-image {
	width: 50%;
	margin: 0 0 0 auto;
}

.accordion-element .element-image img {
	height: unset;
}

.accordion-element .element-content .entry-step p {
	margin-top: 0;
}

.accordion-element .element-content .entry-title {
	cursor: pointer;
}

.accordion-element .element-content .entry-title::after {
	content: '>';
	color: white;
	background-color: #008ac9;
	border-radius: 50%;
	height: 1.1em;
	aspect-ratio: 1;
	display: inline-block;
	text-align: center;
	rotate: 90deg;
	position: absolute;
	margin-left: 1em;

	transition: all 0.5s ease-in;
}

.accordion-element .element-content.active .entry-title::after {
	rotate: -90deg;
}

.accordion-element .element-content .entry-text {
	overflow: hidden;
	height: 0;
	transition: all 0.5s ease-in;
}

.accordion-element .element-content.active .entry-text {
	height: 100%;
}

.accordion-element .element-figure {
	height: fit-content;
}

@media (max-width: 600px) {
	.accordion-element .container {
		display: block;
	}
	.accordion-element .element-figure {
		position: absolute;
		width: 20%;
		margin: 0;
	}

	.accordion-element .element-image {
		width: 100%;
		margin: 0;
	}

	.accordion-element .entry-step,
	.accordion-element .entry-title {
		width: 70%;
		margin-left: auto;
	}

	.accordion-element .element-content .entry-title::after {
		display: block;
		position: relative;
		/*margin: 1em auto 1em 20%;*/
		margin: 1em auto 1em 0;
	}
}


.mySwiper2 {
	margin: 5em 0;
}

.mySwiper2 .slide__content {
	display: grid;
	grid-template-columns: auto 60%;
	gap: 1em;
	padding: 0 1.5em;
	font-size: 36px;
	line-height: 52px;

	font-size: clamp(1.5rem, 3vw, 2.25rem);
	line-height: 1.4445em;
}

.mySwiper2 .slide__content .slide__caption {
	font-style: italic;
	font-weight: 200;
}

.mySwiper2 .slide__content .person-info {
	font-size: clamp(1rem, 3vw, 1.125rem);
	font-weight: 400;
}

.mySwiper2 .slide__content .slide__image {
	margin: auto;
}

@media (max-width: 650px) {
	.mySwiper2 .slide__content {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 0;
	}
}

.jobs-frame {
	width: 100%;
	position: relative;
}

.jobs-frame iframe {
	width: 100%;
	height: 960px;
	border: 0;
}


.job-offering {
	box-shadow: 0px 3px 30px #288AC980;
	border-radius: 12px;
	width: 100%;
	padding: 1rem 2rem;
	transition: all 0.2s ease-in;
}

.job-offering:hover {
	box-shadow: 0px 3px 30px #288AC9E5;
}

.jobs-container {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.jobs-department {
	margin: 3rem 0;
}

.jobs-department:last-child {
	padding-bottom: 2rem;
	margin-bottom: 0;
}

.jobs-department h3 {
	font-size: 60px;
	line-height: 100px;
	font-size: clamp(24px, 2.8vw, 60px);
	line-height: clamp(32px, 3.8vw, 100px);
	color: #848587;
	letter-spacing: 0;
}

.jobs-department .job-offering .job-date {
	font-size: 24px;
	line-height: 48px;
	font-size: clamp(16px, 2.2vw, 24px);
	line-height: clamp(28px, 3.5vw, 48px);
	color: #848587;
	font-weight: 300;
}
.jobs-department .job-offering h4 {
	font-size: 36px;
	line-height: 48px;
	font-size: clamp(20px, 2.8vw, 36px);
	line-height: clamp(28px, 3.5vw, 48px);
	color: #008ac9;
	margin: 1rem 0;
}
.jobs-department .job-offering .description p {
	font-size: 36px;
	line-height: 48px;
	font-size: clamp(20px, 2.8vw, 36px);
	line-height: clamp(28px, 3.5vw, 48px);
	font-weight: 300;
	color: #848587;
	margin: 1rem 0;
}




















/* FORM STYLE */

button, input, optgroup, select, textarea {
	color: black;
	font: inherit;
	margin: 0;
}

input, textarea {
	width: 100%;
	background-color: #f7f6f0;
	border: 1px solid white;
	padding: 0.5rem;
	outline: none;
	border-radius: 5px;
}

input[type=checkbox] {
	width: unset;
}

.form-input-wrapper label .required,
.form-label {
	display: none;
}

.form-field {
	margin: 1rem 0;
}

.form-field a {
	color: white;
}
.form-field a:hover {
	color: #dfdfdf;
}

/*
input,
textarea,
.buttons .button,
input::placeholder,
textarea::placeholder,
.form-input-wrapper label {
	font-size: 18px;
}
*/

.form-input-wrapper {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}

.form-input-wrapper label {
	font-size: clamp(0.4rem, 3vw, 0.8rem);
	line-height: 1.5em;
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: black;
}

input:focus,
input:hover,
textarea:focus,
textarea:hover,
input:focus-visible,
textarea:focus-visible {
	border: 1px solid #3b717b;
}

textarea {
	resize: vertical;
	min-height: 120px;
}

.buttons button {
	padding: 0.5rem;
}


button[type="submit"] {
	border: 0;
	display: block;
	cursor: pointer;
}






/* Kamil anpassungen */




/* Header Bereich */
.logo {
	width: 250px;
}

.custom-header-content {
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 1);
}

/* 3ter Bereich */
.col-xs-12.center.unmodified.backgroundimageec3bf1a5-dee7-47cc-86f6-0.large-image-component {
    background-size: 100%;
}

.container:before  {
    /* display: table; */
    content: unset;
}
@media only screen and (min-width: 767px) {
    body {
        padding-top: 100px !important;
    }
}







.btn {
	border-radius: 34px;
	padding: 0.7rem 1.1rem;
	font-size: 15px;
	font-weight: 500;
	line-height: 28px;
	color: white;
	background-color: #008ac9;
	transition: all 0.2s ease-in;
}

.btn:hover {
	transform: scale(1.1);
	color: white;
}
 



.outershellUKL a, .outershellUKL .link, div.outershellUKL div.cookiePolicy a {
    color: #fff !important;
}

/* großes bild */
.col-xs-12.center.unmodified.backgroundimageec3bf1a5-dee7-47cc-86f6-0.large-image-component {
    border-radius: 34px 34px 0 0;
	margin-bottom: -80px;
}
/* searchbar */
.outershellUKL div.searchwell {
	border-radius: 34px 34px 0 0;
    margin-top: -160px;
    z-index: 1;
    position: relative;
    padding-bottom: 200px;
}

/* blauesfeld */
.buttontext.buttontext046442a4e287d3b5.rtltextaligneligible.center.unmodified.backgroundimage.backgroundcolorf48fa9f40edac068.linkcolor39dbf4b9726bb304.linkhovercolor39dbf4b9726bb304.displayDTM {
	border-radius: 34px 34px 0 0;
	padding-top: 100px;
    margin-top: -100px;
	padding-bottom: 200px;
    position: relative;
    z-index: 2;
}
/* weißes feld */
.section.modular-benefits {
    border-radius: 34px 34px 0 0;
    z-index: 7;
    position: relative;
    margin-top: -50px;
    background-color: white;
}
/* blaues video feld */
.buttontext.buttontext5f745b152dd22f9f.rtltextaligneligible.center.unmodified.backgroundimage.backgroundcolor0a110027.linkcolor39dbf4b9726bb304.linkhovercolor39dbf4b9726bb304.displayDTM {
    border-radius: 34px 34px 0 0;
    z-index: 7;
    position: relative;
    margin-top: -50px;
    background-color: white;
}

/* button offene stellen */
.buttontext.buttontext89e57b06becf23ab.rtltextaligneligible.center.unmodified.backgroundimage.backgroundcolor0a110027.linkcolorb6a533a1.linkhovercolor39dbf4b9726bb304.displayDTM.marginTopLarge.marginBottomCustom.marginRightNone.marginLeftNone.customSpacingEnabled {
    padding-bottom: 20px !important;
}

#buttonunten {
    color: #fff !important;
}

a.ukl-link {
    border: 1px solid white !important;
}

body.coreCSB a:hover, body.coreCSB .btn:hover, body.coreCSB input[type="submit"]:hover {
    text-decoration: none;
	color: white !important;
}




/* cookie banner start*/
#cookie-bannershow, #cookiemanageracceptselected, .cookiemanageracceptall {
    color: #008ac9 !important;
}

div.outershellUKL .cookiemanageracceptall, div.outershellUKL .cookiemanagerrejectall, div.outershellUKL .onoffswitch .onoffswitch-inner:before {
    color: #ffffff !important;
}

.cookiemanager button:hover, .cookiemanager button:focus, #cookieManagerModal button:hover, #cookieManagerModal button:focus {
    text-decoration: none;
}
/* cookie banner ende */
body .outershellUKL .cookiemanager .shadowfocus:hover, body .outershellUKL .cookiemanager .shadowfocus:focus {
    box-shadow: unset;
}

h2.h3.fontcolor39dbf4b9726bb304.fontalign-center {
    margin: 50px 0;
}
#content ul, #content ol {
    list-style-position: unset;
}

#search-wrapper .row .col-lg-10 {
	width: 820px !important;
	max-width: 100% !important;
}

/* searchbar */
#search-wrapper .row {
	display: flex;
	justify-content: center;
	align-items: center;
}

@media only screen and (max-width: 767px) {
#search-wrapper .row {
		display: block;
	}
}
#body .outershellUKL a.btn:hover, #body .outershellUKL a.btn:focus, #body .outershellUKL .btn:hover, #body .outershellUKL .btn:focus, #body .outershellUKL input[type="submit"]:hover, #body .outershellUKL  input[type="submit"]:focus {
    border-color: #ffffff !important;
}

#body .outershellUKL .btn {
	border-color: #ffffff !important;
}

#body .outershellUKL .btn  {
    border-top-left-radius: 34px !important;
    border-bottom-left-radius: 34px !important;
}



/* David Korrekturen */

p {
	margin: 0 0 24px 0;
	font-family: 'Poppins', sans-serif;
}

.features-group .feature p {
	margin: 0;
	font-size: clamp(1rem, 3vw, 1.125rem);
}
.h3.fontcolor39dbf4b9726bb304.fontalign-center {
    font-size: clamp(2rem, 3vw, 3rem) !important;
	font-weight: 600 !important;
	font-family: 'Poppins', sans-serif !important;
}

.buttontext span.fontcolor3abaccf202839a3c {
	font-weight: 400 !important;
	line-height: 1.5em !important;
	p {
		margin-bottom: 24px !important;
	}
}

.col-xs-12.center.unmodified.backgroundimageec3bf1a5-dee7-47cc-86f6-0.large-image-component {
	background-size: cover !important;
}

.outershellUKL div.searchwell {
	padding-top: 80px;
}

.buttontext.buttontext046442a4e287d3b5.rtltextaligneligible.center.unmodified.backgroundimage.backgroundcolorf48fa9f40edac068.linkcolor39dbf4b9726bb304.linkhovercolor39dbf4b9726bb304.displayDTM {
	padding-top: 40px;
}

.fontcolorebd60cd3 p {
	font-weight: 400 !important;
	line-height: 1.5em !important;
	color: #616060 !important;
}

a.btn {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 500 !important;
}

.buttontext.buttontext046442a4e287d3b5.rtltextaligneligible.center.unmodified.backgroundimage.backgroundcolorf48fa9f40edac068.linkcolor39dbf4b9726bb304.linkhovercolor39dbf4b9726bb304.displayDTM {
	padding-bottom: 150px;
}

.section.modular-benefits{
	padding-top: 60px;
}

h2, .benefit-text {
	font-family: 'Poppins', sans-serif !important;
}

.section.modular-benefits {
    padding-bottom: 0px;
}

.modular-info .feature h3 {
	margin-bottom: 1.2em;
}

.embed-responsive.embed-responsive-16by9 {
	max-width: 1120px;
    margin: auto;
    border-radius: 15px;
}


.embed-responsive.embed-responsive-16by9 {
	max-width: 1120px;
    margin: auto;
    border-radius: 15px;
    aspect-ratio: 16 / 9;
    width: 100%;
	height: auto;
	overflow: hidden;
	padding-bottom: 0px;
	iframe {
		height: 100%;
		width: 100%;
		display: block;
	}
}

h2.h3.fontcolor39dbf4b9726bb304.fontalign-center {
    margin: 36px 0;
}

span.fontcolorb6a533a1 p {
	font-weight: 400 !important;
	line-height: 1.5em !important;
	color: #616060 !important;
}

.buttontext.buttontext89e57b06becf23ab {
	overflow: hidden;
}

.mySwiper2 .slide__content .slide__caption {
	font-weight: 300;
}

#testimonials {
	padding-bottom: 0em;
	padding-top: 0em;
}

.customPlugin-7a638c3677b67ba8 a.ukl-link {
	border-width: 2px !important;
	font-family: 'Poppins', sans-serif !important;
}

.customPlugin-7a638c3677b67ba8 .modular-info {
	padding-bottom: 8em;
}

.buttontext.buttontext5f745b152dd22f9f {
	padding-top: 48px;
}

.accordion-group {
	margin-top: 0px;
}

.fontcolorebd60cd3 p {
	margin-bottom: 0px !important;
}

.accordion-element .container {
	gap: 0 3em;
}

.customPlugin-0fe85f96d965aa51 .section.modular-info {
	padding-top: 2em;
}

.customPlugin-0fe85f96d965aa51 .media-block {
	margin-bottom: 1.25em;
}

.customPlugin-0fe85f96d965aa51 .media-block .text-content h2 {
	padding-bottom: 16px;
}

.buttontext046442a4e287d3b5 .row a.btn {
	margin-top: 36px;
}

.customPlugin-0fe85f96d965aa51 #buttonunten {
	font-family: 'Poppins', sans-serif !important;
}

.accordion-element {
	padding: 2em 0;
}

.accordion-element .container .entry-text p a {
	color: #008ac9 !important;
}

.accordion-element .container .entry-text p a:hover {
    color: #175E91 !important; 
}

.footer-column.info-column a:not(.ukl-link), .footer-column.info-column p {
	font-family: 'Poppins', sans-serif !important;
	font-size: 1.3em !important;
}

ul.footer-menu li a {
	font-family: 'Poppins', sans-serif !important;
	font-size: 1.3em !important;
	margin-bottom: 12px;
	display: inline-block;
}

ul.footer-menu {
	margin-top: 24px;
}

.footer .ukl-link {
	font-family: 'Poppins', sans-serif !important;
}

#innershell .buttontext3921e76035d98b4b .inner{
	max-width: 1200px;
}

@media screen and (max-width: 768px){
	.buttontext3921e76035d98b4b span.fontcolor3abaccf202839a3c p {
		font-size: 1em !important;
	}
}

#footer{
	display: none !important;
}

@media (max-width: 1210px) {
    .innershellUKL {
		padding: 0 !important;
	}
}

.youtube1f93b4d7e11a9e9aAlR-9CuAX9E {
	padding: 0 24px !important;
}

.footer-content {
	padding-bottom: 2em;
}

#search-wrapper .input-group input {
	border-top-right-radius: 34px !important;
    border-bottom-right-radius: 34px !important;
	height: 100% !important;
    padding: 1rem 1.1rem !important;
}

#search-wrapper .input-group-addon.glyphicon {
	border-top-left-radius: 34px !important;
	border-bottom-left-radius: 34px !important;
	padding: 0.7rem 1.1rem !important;
}

.footer-content #footerInnerLinksSocial {
	width: 100%;
}

.footer-content .disclaimer.social-links {
	display: flex;
	flex-direction: row;
	gap: 1em;
	justify-content: start;
	flex-wrap: wrap;
}

.footer-content #footerInnerLinksSocial svg, .footer-content #footerInnerLinksSocial svg path {
	fill: #ffffff;
}

#body .customPlugin-fe96bde6e3651e3a .intro-content a.ukl-link {
	background-color: #b51e63 !important;
	border-color: #b51e63 !important;
}

.section.modular-intro{
	padding-bottom: 2em;
}

#body .buttontext.buttontext046442a4e287d3b5 a.btn, #body .buttontext89e57b06becf23ab a.btn{
	background-color: #b51e63 !important;
	border-color: #b51e63 !important;
}

.mySwiper2 {
	margin-bottom: 0;
}

.section.modular-accordion{
	padding-bottom: 3em;
}

@media screen and (max-width: 800px) {
	.footer .disclaimer.social-links {
		padding-right: 20px;
		margin: auto;
		justify-content: center;
	}
}