@charset "UTF-8";

/*
Theme Name: protius
*/

/* font family */
@font-face {
	font-family: "BeVietnamPro_Regular";
	src: url("assets/fonts/BeVietnamPro-Regular.ttf");
}

@font-face {
	font-family: "BeVietnamPro_Bold";
	src: url("assets/fonts/BeVietnamPro-Bold.ttf");
}

@font-face {
	font-family: "BeVietnamPro_ExtraBold";
	src: url("assets/fonts/BeVietnamPro-ExtraBold.ttf");
}

@font-face {
	font-family: "BeVietnamPro_Light";
	src: url("assets/fonts/BeVietnamPro-Light.ttf");
}

@font-face {
	font-family: "BeVietnamPro_Thin";
	src: url("assets/fonts/BeVietnamPro-Thin.ttf");
}



/* setup and reset */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--font-BeVietnamProRegular-);

}



:root {
	/* font family */
	--font-BeVietnamProRegular-: "BeVietnamPro_Regular";
	--font-BeVietnamProBold-: "BeVietnamPro_Bold";
	--font-BeVietnamProExtraBold-: "BeVietnamPro_ExtraBold";
	--font-BeVietnamProLight-: "BeVietnamPro_Light";
	--font-BeVietnamProThin-: "BeVietnamPro_Thin";


	/* colors */
	--color-blue: #0F4C81;
	--color-blue-dark: #07213A;
	--color-grey: #EFEEEF;

	/* disctances */
	--distance-05: 20px;
	--distance-1: 40px;
	--distance-2: 80px;

}



.d05 {
	padding-left: var(--distance-05);
	padding-right: var(--distance-05);
}

.d1 {
	padding-left: var(--distance-1);
	padding-right: var(--distance-1);
}

.d2 {
	padding-left: var(--distance-2);
	padding-right: var(--distance-2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 100;
	font-family: var(--font-BeVietnamProExtraBold-);
}

strong {
	font-family: var(--font-BeVietnamProBold-);
	font-weight: 100;
}

h1 {
	font-size: 3rem;
	font-family: var(--font-BeVietnamProExtraBold-);
}

h2 {
	font-size: 2rem;
	font-family: var(--font-BeVietnamProExtraBold-);

}

h3 {
	font-size: 1.25rem;
	font-family: var(--font-BeVietnamProExtraBold-);

}

.col2 {
	display: grid;
	grid-template-columns: 1fr;
	grid-row-gap: 20px;
}

p {
	font-size: 1rem;
	line-height: 130%;
	font-family: var(--font-BeVietnamProLight-);
}

a {
	text-decoration: none;
	color: black;
}

li {
	list-style-type: none;
}


.w-100 {
	width: 100%;
}

.d--flex {
	display: flex;
}

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

.p80 {
	padding: 80px;
}

.mb10 {
	margin-bottom: 10px !important;
}

.mb15 {
	margin-bottom: 15px !important;
}

.ml10 {
	margin-left: 10px !important;
}

.ml20 {
	margin-left: 20px !important;
}

.mr10 {
	margin-right: 10px !important;
}

.mt10 {
	margin-top: 10px !important;
}

.mt25 {
	margin-top: 25px !important;
}

.mb40 {
	margin-bottom: 40px !important;
}

.mb80 {
	margin-bottom: 80px !important;
}

.mt80 {
	margin-top: 80px !important;
}

.pb80 {
	padding-bottom: 80px !important;
}

.pt80 {
	padding-top: 80px !important;
}

.mb20 {
	margin-bottom: 20px !important;
}

.mt40 {
	margin-top: 40px !important;
}

.pb10 {
	padding-bottom: 10px !important;
}

.pb40 {
	padding-bottom: 40px !important;
}

.pt10 {
	padding-top: 10px !important;
}

.pt40 {
	padding-top: 40px !important;
}

.transition__03s {
	transition: 0.3s ease;
}

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

.chevron__rotate__up {
	transform: rotate(180deg);
}

.color--blue {
	color: var(--color-blue) !important;
}

.color--blue--dark {
	color: var(--color-blue-dark) !important;
}

.bg--blue {
	background-color: var(--color-blue);
	position: relative;
}

.bg--blurred--image {
	background-image: url(assets/images/blurred_blue.jpg);
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	position: relative;

}

.bg--blue--dark {
	background-color: var(--color-blue-dark);
}

.bg--grey {
	background-color: var(--color-grey);
}

.br--20 {
	border-radius: 20px;
}

.desktop__only {
	display: none !important;
}

.hide {
	display: none !important;
}

.show {
	display: block !important;
}

.module {
	padding-top: 60px;
	padding-bottom: 60px;
}

.ctm--btn {
	display: inline-flex;
	padding: 10px 20px;
	border-radius: 40px;
	font-family: var(--font-BeVietnamProExtraBold-);
	transition: 0.3s ease;
}

.ctm--btn.border--white {
	border: solid 2px white;
	color: white;
}

.ctm--btn.bg--white {
	background: white;
	color: var(--color-blue);
}

.ctm--btn.bg--blue {
	background: var(--color-blue);
	color: white;
}

.ctm--btn.border--white {
	padding: 10px;
	border: solid 2px white;
	color: white;
}
.ctm--btn.border--white:hover path {
fill: var(--color-blue-dark);
}

.ctm--btn.border--white:hover {
	background-color: white;
	color: var(--color-blue-dark);
}

.ctm--btn.border--white:hover>svg {
	fill: var(--color-blue);
}

.ctm--btn.bg--white:hover {
	background-color: var(--color-blue);
	color: white;
}

.ctm--btn.bg--white:hover>svg>* {
	fill: white;
}

.ctm--btn.bg--blue:hover {
	border: solid 1px var(--color-blue);
	background: none;
	color: var(--color-blue);
}

.ctm--btn.bg--blue:hover>svg path {
	fill: var(--color-blue);
}



/* ******** .main__header ******** */
.main__header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.25);
	padding: 25px;
	margin: 40px;
	/* height: calc(100vh - 40px);
    overflow: auto; */
	width: calc(100% - 80px);
	margin-top: var(--distance-05);
}

.main__header>ul {
	color: white;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 25px;
}

.main__header ul li {
	padding: 20px;
	position: relative;
	width: 100%;
}


.main__header ul a {
	color: white;
	font-family: var(--font-BeVietnamProLight-);
	font-size: 1.25rem;
}

.main__header ul li.active>a {
	font-family: var(--font-BeVietnamProExtraBold-);
}

.main__header .wrapper>ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.main__header .wrapper>ul>li:not(:last-child)::after {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	width: 25px;
	background-color: white;
	height: 1px;
}


.main__header .menu__parent {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.main__header .menu__parent svg {
	position: absolute;
	right: 20px;
}

.main__header .menu__children {
	overflow: hidden;
	height: 0;
}

.main__header .menu__parent.active {
	font-family: var(--font-BeVietnamProExtraBold-);

}

.main__header .menu__child {
	font-size: 1rem;
}

.main__header .menu__child.active {
	font-family: var(--font-BeVietnamProBold-);
}

.main__header .head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.main__header .wrapper {
	overflow: hidden;
	height: 0;
}

.header__footer__buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 20px;

}

.header__footer__buttons>a {
	display: inline;
	margin-bottom: 20px;
	min-width: 180px;
}

.burger__menu__icon {
	display: flex;
	flex-direction: column;
	width: 30px;
	height: 15px;
	justify-content: space-between;
	cursor: pointer;
}

.burger__menu__icon.opened>div:first-child {
	transform: rotate(135deg) translate(3px, -5px);
}

.burger__menu__icon.opened>div:last-child {
	transform: rotate(-135deg) translate(4px, 5px);
}

.burger__menu__icon>div {
	width: 100%;
	height: 3px;
	background-color: white;
	transition: 0.3s ease;
	transform: rotate(0) translate(0, 0);
	border-radius: 50px;

}

/* ********* bewertungen ************ */
.bewertungen {
	color: white;
	padding-bottom: 100px !important;
	padding-top: 130px !important;
	z-index: -1;
}


.bewertungen .carousel-cell {
	width: 100%;
	height: 300px;
	margin-right: 10px;
	border-radius: 5px;
}

.bewertungen .card__head {
	background-color: var(--color-blue-dark);
	padding: 10px 20px;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
}

.bewertungen .card__body {
	background-color: rgba(239, 238, 239, 0.5);
	padding: 40px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	min-height: 200px;
}

.bewertungen .card__head .stars {
	width: 130px;
}

.bewertungen .flickity-page-dots .dot {
	background: none;
	opacity: 1;
	border: solid 2px white;
	margin: 0 5px;
}

.bewertungen .flickity-page-dots {
	bottom: -20px;
}

.bewertungen .flickity-page-dots .dot.is-selected {
	background-color: white;
}

.bewertungen .flickity-prev-next-button {
	display: none;
}

/* ********* end bewertungen ************ */

/* *********  slider1 ************ */


.slider1 .carousel-cell {
	width: 100%;
	margin-right: 10px;
	border-radius: 5px;
	height: 570px;

}

.slider1 .card__image {
	background-color: var(--color-blue-dark);
	overflow: hidden;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	height: 280px;
}

.slider1 .card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slider1 .card__body {
	background-color: var(--color-blue-dark);
	color: white;
	padding: 30px 40px;

	text-align: center;
}

.slider1 .card__body>span {
	font-family: var(--font-BeVietnamProLight-);
	margin-bottom: 50px;
}

.slider1 .card__body>h3 {
	margin-top: 20px;
	max-width: 340px;
	margin-left: auto;
	margin-right: auto;
	font-family: var(--font-BeVietnamProBold-);
}

.slider1 .ctm--btn {
	font-family: var(--font-BeVietnamProRegular--);
	display: flex;
	justify-content: center;
	padding: 10px 20px;
	align-items: center;
	min-width: 176px;

}

.slider1 .ctm--btn>span {
	display: block;
	white-space: nowrap
}

.slider1 .ctm--btn svg {
	min-width: 16px;

}

.slider1 .ctm--btn:hover>svg path {
	fill: var(--color-blue-dark);
}

.slider1 .card__body a {
	color: white;
}

.slider1 .card__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: solid 1px white;
	background-color: var(--color-blue-dark);
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	color: white;
	padding: 20px 40px;

}


.slider1 .flickity-page-dots .dot {
	background: none;
	opacity: 1;
	border: solid 2px var(--color-blue-dark);
	margin: 0 5px;
}

.slider1 .flickity-page-dots {
	bottom: 0px;
}

.slider1 .flickity-page-dots .dot.is-selected {
	background-color: var(--color-blue-dark);
}

.slider1 .flickity-prev-next-button {
	display: none;
}

/* ********* end slider1 ************ */


/* *********  Call2Action ************ */
.Call2Action {
	color: white;
	padding-top: 130px !important;
	padding-bottom: 130px !important;
}

.Call2Action .ctm--btn {
	font-family: var(--font-BeVietnamProExtraBold-);
	color: #43789B;
	display: inline-flex;
	padding: 10px 20px;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
	font-size: 1.25rem;

}


.shape {
	width: 100%;
	height: 40px;
	background-color: white;
	border-radius: 50px;
	position: absolute;
	left: 0;
	z-index: 99;
}

.shape__top {
	top: 0;
	border-top-right-radius: 0;
	border-top-left-radius: 0;
}

.shape__top__invert {
	top: -40px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.shape__top__invert.blue {
	background-color: #07213A;
}

.shape__bottom {
	bottom: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

/* ********* end Call2Action ************ */



/* ********* line ************ */
.line hr {
	border-top: 1px solid #D3D3D3;
}

/* ********* end line ************ */


/* ********* auszeichnungen ************ */
.auszeichnungen {
	color: var(--color-blue);
}

.auszeichnungen .headline {
	margin-bottom: 60px;
}

.auszeichnungen li {
	list-style-type: disc;
	margin-left: 20px;
	font-family: var(--font-BeVietnamProLight-);
}

.auszeichnungen .grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 50px;
	align-self: start;
}

.auszeichnungen .grid__item:nth-child(odd) {
	margin-right: auto;
}

.auszeichnungen .icon {
	margin-bottom: 12px;
}

.auszeichnungen ul {
	margin-top: 12px;
}

.auszeichnungen .icon img {
	height: 60px;
}

/* ********* end auszeichnungen ************ */

/* *********  faq ************ */
.faq {
	color: white;
	background-color: var(--color-blue-dark);

}

.faq__background {
	position: relative;
	z-index: 99;
}


.faq .faqs {
	margin-top: 50px;
}

.faq .faq__item {
	border-bottom: solid 1px white;
	padding: 20px 0;
}

.faq .faq__item:first-child {
	border-top: solid 1px white;
}

.faq .question__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.faq .question__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding-right: 20px;

}

.faq .question__container .question {
	padding-right: 10px;
}

.faq .answer {
	height: 0;
	overflow: hidden;
	margin-top: -20px;
}

.faq .answer p {
	font-family: var(--font-BeVietnamProLight-);
	max-width: 1000px;
}

.faq .question__container .toggle__faq {
	min-width: 20px;
	cursor: pointer;

}

/* ********* end faq ************ */

/* *********  angebote__cards ************ */
.angebot_karten {
	background-color: var(--color-grey);
	color: var(--color-blue);
}

.angebot_karten>.headline {
	margin-bottom: 80px;
}





.angebote__head {
	justify-content: space-between;
	display: flex;
	/* margin-bottom: 40px; */
	align-items: center;
	cursor: pointer;
}

.angebote__head .headline {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 220px;
	margin: 0 auto;
	font-family: var(--font-BeVietnamProExtraBold-);
}

.angebote__head .headline h3 {
	margin-bottom: 15px;
}

.angebot_karten .arrow {
	display: flex;
	overflow: hidden;
	font-size: 0.875rem;
	cursor: pointer;

}

.angebot_karten .arrow:hover {
	color: #D3D3D3;
}

.angebot_karten .arrow:hover>span {
	background-color: #D3D3D3;
}

.angebot_karten .details {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	overflow: hidden;
	height: 0;

}

.angebot_karten .details .arrow {
	margin-top: 30px;

}

.angebot_karten .angebote__cards {
	color: white;
}

.angebot_karten .angebote__card {
	margin-bottom: 20px;
	background-color: var(--color-blue);
	border-radius: 10px;
	padding: 30px 20px;


}

.angebot_karten .arrow__container {
	background-color: white;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.angebot_karten .arrow__container svg {
	width: 60%;
}

/* ********* end angebote__cards ************ */

/* *********  checkliste ************ */
.checkliste {
	color: var(--color-blue);
	counter-reset: section;
	display: flex;
	justify-content: center;

	align-content: center;
	flex-direction: column;


	padding: 40px 20px;
	padding-top: 80px;
}


.checkliste>div {
	padding: 40px 15px;
}

.checkliste .list {
	overflow: hidden;
}

.checkliste .arrow.close {
	overflow: hidden;
	margin-top: 30px;

}

.checkliste .arrow.open {
	opacity: 0;
}

.checkliste h3 {
	font-size: 2.25rem;
}

.checkliste .description {
	margin: 10px 0 20px 20px;
}


.checkliste .checkliste__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	cursor: pointer;
}

.checkliste .list__item h4::before {
	counter-increment: section;
	content: "" counter(section) ". ";
}

.checkliste .list__item h4 {
	font-size: 1rem;
}

.checkliste .checkliste__head svg {
	min-width: 30px;
}

.checkliste .arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-BeVietnamProBold-);
	cursor: pointer;
}

/* ********* end checkliste ************ */

/* *********  text__module ************ */
.text__module {
	color: var(--color-blue);
}

.text__module>.headline {
	margin-bottom: 40px;
}


.text__module .text .headline {
	margin-bottom: 40px;
}

.text__module .text .headline>* {
	font-size: 1.75rem;
}

.text__module .text__content p {
	margin-bottom: 20px;
}

/* ********* end text__module ************ */

/* *********  seiteneinstieg_rechtsgebiete ************ */

.seiteneinstieg_rechtsgebiete {
	color: white;
	padding-top: 200px;
	padding-bottom: 100px !important;

	overflow: hidden;
	position: relative;
}

.seiteneinstieg_rechtsgebiete .image__container {
	position: relative;
	min-height: 500px;
}

.seiteneinstieg_rechtsgebiete .image__container img {
	background-color: white;
	position: absolute;
	right: -120px;
	padding: 12px;
	box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.25);
	transform: rotate(4.88deg) translateX(15px);
	width: 600px;
	max-height: 500px;

}

.seiteneinstieg_rechtsgebiete .ctm--btn {
	font-size: 1.3rem;
	font-family: var(--font-BeVietnamProBold-);
	display: inline-flex;
	margin-top: 40px;
}

.seiteneinstieg_rechtsgebiete h1 {
	margin: 20px 0;
}

/* ********* end seiteneinstieg_rechtsgebiete ************ */

/* *********  bild_text ************ */
.bild_text {
	color: var(--color-blue);
	overflow: hidden;
}

.bild_text>.headline {
	margin-bottom: 20px;
}



.bild_text .image__container {
	margin-bottom: 80px;
	color: var(--color-blue);
}

.bild_text .image__container img {
	width: 453.467px;
	height: 324.855px;
	transform: rotate(-4.991deg) translateX(-70px);
	flex-shrink: 0;
	padding: 12px;
	background: #FFF;
	box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.25);
}

/* ********* end bild_text ************ */


/* *********  headline_module ************ */
.headline_module {
	color: var(--color-blue);
	padding-top: 50px;
	padding-bottom: 50px;
	display: none;
}

/* ********* end headline_module ************ */


/* ********* .main__footer ************ */
.main__footer {
	position: relative;
	color: white;
	background-color: #0F4C81;
}

.bottom__footer {
	display: flex;
	background: var(--color-blue-dark);
	color: white;
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	flex-wrap: wrap;
	padding-top: 30px;
	padding-bottom: 20px;
	max-width: 1440px;
	margin: 0 auto;
}


.main__footer a {
	color: white;
}

.main__footer .logo__container {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.main__footer .header__footer__buttons {
	margin: 40px 0;

}

.main__footer .header__footer__buttons a {
	width: 100%;
}


.main__footer .links {
	display: flex;
}

.main__footer .links h3 {
	margin-bottom: 20px;
}


.main__footer .links>div li {
	margin-bottom: 5px;
}

.main__footer .links>div:last-child {
	padding-left: 50px;
	margin-left: 50px;
	border-left: solid 1px white;
}

/* ********* end .main__footer ************ */
.toggleCheckListeLabel {
	display: none;
}



/* funnel__wrapper */

.funnel__wrapper {
	background-image: url("assets/images/blurredbluefunel.png");
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	color: white;
	padding-top: 200px;
	padding-bottom: 80px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
	margin-bottom: -45px;
	z-index: 1;
	position: relative;
	overflow: hidden;
}

.funnel__wrapper:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 200px;
	width: 100%;
	background: linear-gradient(to bottom, transparent 0%, var(--color-blue-dark) 100%);
	z-index: -1;
}


.funnel {
	/* min-height: 594px; */
	background-color: rgba(255, 255, 255, 0.5);
	display: grid;
	border-radius: 20px;
	transition: 0.3s ease;
	min-height: 600px;
	position: relative;
	padding-left: 80px;

}

.funnel.opened .navigation__wrapper {
	width: 80%;
}

.primary_nav {
	display: none;
}

.primary_nav a {
	color: white;
	font-family: var(--font-BeVietnamProThin-);
}

.funnel.opened .primary_nav {
	display: flex;

}

.funnel.opened .funnel__menu li span {
	opacity: 1;
	font-size: 13px;
}

.navigation__wrapper {
	background-color: var(--color-blue-dark);
	border-bottom-left-radius: 20px;
	border-top-left-radius: 20px;
	padding: 35px 20px;
	padding-top: 20px;
	position: absolute;
	height: 100%;
	width: 80px;
	transition: 0.3s ease;
	z-index: 1;
}




.navigation__wrapper li {
	position: relative;
	margin: 15px 0;
	padding: 5px 0;
	transition: 0.3s ease;
}


.primary__nav__toggle {
	text-align: center;
	display: flex;
	justify-content: center;

	align-items: center;
	min-height: 86px;
}

.funnel.opened .primary__nav__toggle {
	justify-content: space-between;

}

.primary_nav {
	counter-reset: my-sec-counter;
}

.funnel.opened .arrow svg {
	transform: rotate(180deg);
}


.primary__nav__toggle .arrow {
	cursor: pointer;
	text-align: center;
	background-color: white;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: solid 3px var(--color-blue-dark);
	outline: solid 2px white;
}

.primary__nav__toggle .arrow svg {
	transition: 0.5s ease;

}


.secondary_nav {
	margin-top: 40px;
	counter-reset: my-sec-counter;

}

.funnel__menu li span {
	opacity: 0;
	text-align: center;
	font-family: var(--font-BeVietnamProThin-);
	padding-left: 45px;
	transition: 0.3s ease;

}


.funnel.opened .navigation__wrapper li::after {
	left: 0%;
	transform: translateX(0) translateY(-10%);

}

.navigation__wrapper li::after {
	content: '';
	border-radius: 50%;
	border: solid 1px white;
	height: 30px;
	width: 30px;
	position: absolute;
	top: 50%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	color: black;
	top: 0;
	left: 50%;
	transform: translateX(-50%) translateY(-10%);
}

.navigation__wrapper li.active::after {
	background-color: white;
	transition: 0.3s ease;

}

.navigation__wrapper li.active a,
.navigation__wrapper li.active span {
	font-family: var(--font-BeVietnamProExtraBold-);

}

.navigation__wrapper .secondary_nav .active::before {
	content: "";
	position: absolute;
	right: -10px;
	top: 0;
	height: 100%;
	width: 2px;
	background-color: white;
}

.funnel.opened .active::before {
	right: 15px;
}

.navigation__wrapper .secondary_nav .active::after {
	color: var(--color-blue-dark);
	font-family: var(--font-BeVietnamProExtraBold-);
}




.navigation__wrapper .secondary_nav li::after {
	counter-increment: my-sec-counter;
	content: counter(my-sec-counter);
	color: white;
	font-family: var(--font-BeVietnamProThin-);


}

.funnel li {
	/* display: none; */
	text-wrap: nowrap;
	min-height: 30px;
	cursor: pointer;
}

.funnel.opened li span {
	display: flex;
}


.primary_nav li {
	display: none;
}

.primary_nav li.active {
	display: flex;
}



.form__wrapper {
	position: relative;
	padding-bottom: 110px;
	transition: 0.3s ease;
}

.next_prev_wrapper {
	position: absolute;
	width: 100%;
	bottom: 0;
	padding: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 650px;
	margin: 0 auto;
	left: 50%;
	transform: translateX(-50%);
}

.next_prev_wrapper.right {
	justify-content: flex-end;
}

.next_prev_btn {
	background: none;
	outline: none;
	border: none;
	display: flex;
	justify-content: center;
	color: white;
	align-items: center;
	transition: 0.3s ease;
	cursor: pointer;
}

.next_prev_btn:disabled {
	opacity: 0.2;
	cursor: not-allowed;
}


.next_prev_btn.absenden {
	background-color: white;
	color: var(--color-blue-dark);
	padding: 5px 10px;
	border-radius: 50px;

}

.next_prev_btn.absenden svg {
	background-color: var(--color-blue-dark);
}

.next_prev_btn.absenden svg path {
	fill: white;
}

.next_prev_btn span {
	font-family: var(--font-BeVietnamProBold-);

}

.next_prev_btn svg {
	background: white;
	padding: 8px;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	outline: none;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

.form_step_title {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 45px;
}

.form_step_title .step__counter {
	background-color: white;
	padding: 10px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	color: black;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
	font-family: var(--font-BeVietnamProBold-);
	color: #7B89A2;
}

.form_step_title .step__title {
	font-size: 13px;
	font-family: var(--font-BeVietnamProBold-);
}


.form_content {
	padding: 20px;
	max-width: 650px;
	margin: 0 auto;
}


.form_content input,
.form_content textarea {
	margin-bottom: 20px;
}

.form_content textarea,
.form_content input[type=text],
.form_content input[type=number] {
	background: none;
	padding: 10px;
	width: 100%;
	border: solid 2px white;
	border-radius: 5px;
	color: white;
}

.form__wrapper .invalid[type=text],
.form__wrapper textarea.invalid {
	border: solid 2px red;
}

.form__wrapper .invalid[type=radio]+label {
	border: solid 2px red;
}

.form__wrapper .invalid[type=file]+label {
	border: dashed 2px red;

}

.form__wrapper .invalid[type=checkbox]+label {
	color: red;
}



.form_content input[type=number]::placeholder,
.form_content input[type=text]::placeholder {
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
}

.form_content textarea::placeholder {
	color: rgba(255, 255, 255, 0.7);

}

.radio__group.full__width {
	display: flex;
	flex-direction: column;
	max-width: 350px;
	margin: 0 auto;
}

.radio__group.flexible {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 350px;
	margin: 0 auto;
}

.radio__group.navigation a {
	color: white;
	font-family: var(--font-BeVietnamProBold-);
}

.radio__group.navigation a:hover {
	background: white !important;
}

.radio__group.navigation a:hover {
	color: var(--color-blue-dark) !important;
}

.radio__group.flexible>.radioInput {
	width: 40%;
	flex-grow: 1;
	margin: 10px;

}

.form__step p {
	font-family: var(--font-BeVietnamProLight-);
	font-size: 13px;
	width: 100%;
}

.form__step {
	transition: 0.3s ease;
	animation: step 0.5s ease;
	/* overflow: hidden; */
}

@keyframes step {
	0% {
		transform: translateX(-100px);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

.radioInput {
	position: relative;
	margin-bottom: 20px;
	font-size: 13px;

}

.radioInput>input {
	appearance: none;
	position: absolute;
	width: 100%;
	height: 100%;
	cursor: pointer;

}

.radioInput>label,
.radioInput>a {
	padding: 10px;
	display: block;
	border-radius: 30px;
	text-align: center;
	border: solid 2px white;
	font-family: var(--font-BeVietnamProBold-);

}

.radio__group.full__width .radioInput>label {
	width: 100%;
}

.cst__file_input {
	width: 100%;
	margin-bottom: 10px;
}

.cst__file_input label {
	border: dashed 2px white;
	padding: 10px;
	text-align: center;
	display: block;
	font-size: 13px;
	cursor: pointer;

}

.terms__wrapper {
	display: flex;
	align-items: flex-start;
	margin-top: 20px;
	font-size: 10px;
	font-family: var(--font-BeVietnamProThin-);

}

.terms__wrapper>input {
	margin: 0;
	margin-right: 10px;
	height: auto;

}

.radioInput>input:checked+label {
	background-color: white;
	color: var(--color-blue-dark);
}

.radioInput {
	position: relative;
}

.radioInput .popup {
	background-color: var(--color-blue);
	border-radius: 10px;
	padding: 10px;
	position: absolute;
	right: 0;
	width: 317px;
	top: 65px;
	display: flex;
	flex-direction: column;
	z-index: 99;
}

.radioInput .popup_head {
	display: flex;
	justify-content: flex-end;
	padding-bottom: 10px;
}

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

.radioInput .popup>svg {
	position: absolute;
	bottom: 100%;
	right: 55px;
}


.links_404 {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	color: var(--color-blue);
}

.links_404 .links {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;

}

.links_404 .links div {
	flex-basis: calc(50% - 10px);
	margin-right: 10px;
	margin-bottom: 40px;
	line-height: 30px;
}

.links_404 .links svg {
margin-left: 20px;
}

@media only screen and (max-width: 700px) {
	.bottom__footer {
		padding-top: 30px;
		padding-bottom: 20px;
		flex-direction: column;
	}

	.bottom__footer span {
		display: inline-block;
		margin-bottom: 10px;
	}
}

@media only screen and (min-width: 1440px) {
	.seiteneinstieg_bg {
		overflow: hidden;
	}

	.module {
		max-width: 1440px;
		margin: 0 auto;
	}

	.faq__background {
		background-color: var(--color-blue-dark);
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}

	.overflow__visible {
		overflow: visible;
	}
}


@media only screen and (min-width: 1000px) {
	.next_prev_wrapper {
		justify-content: space-around;
	}

	.form_step_title .step__title {
		font-size: 16px;
	}

	.primary__nav__toggle .arrow {
		display: none;
	}

	.funnel {
		grid-template-columns: 400px 1fr;
		padding-left: 0;
	}

	.funnel__menu li span {
		opacity: 1;
	}

	.checkliste .list__item h4 {
		font-size: 1.25rem;
	}

	.navigation__wrapper {
		position: static;
		width: 400px;
	}

	.navigation__wrapper li::after {
		left: 15px;
	}

	.navigation__wrapper .primary_nav .active::before {
		content: "";
		position: absolute;
		right: 10px;
		top: 0;
		height: 100%;
		width: 2px;
		background-color: white
	}

	.secondary_nav {
		margin-top: 60px;
	}

	.navigation__wrapper {
		padding: 70px 40px;
	}

	.navigation__wrapper .secondary_nav .active::before {
		right: 10px;
	}

	.primary_nav li {
		display: block;
	}

	.primary__nav__toggle {
		text-align: left;
		display: block;
	}

	.primary_nav {
		display: block;
	}
}

@media only screen and (min-width: 1260px) {
	.main__header ul li {
		width: unset;
	}

	/* seiteneinstieg_rechtsgebiete*/
	.seiteneinstieg_rechtsgebiete {
		display: flex;
		padding-top: 350px !important;
	}

	.seiteneinstieg_rechtsgebiete .image__container {
		order: 2;
		width: 50%;
	}

	.seiteneinstieg_rechtsgebiete .image__container img {
		width: 200%;
		max-width: 700px;
		transform: rotate(4.88deg) translateX(100px);
	}

	/* end  seiteneinstieg_rechtsgebiete*/

	/* ******** .main__header ******** */
	.main__header {
		padding: 25px 60px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.main__header .wrapper {
		height: auto;
		overflow: visible;
		display: flex;
		align-items: center;
	}

	.main__header .menu__parent svg {
		position: static;
	}

	.main__header .header__footer__buttons {
		flex-direction: row;
		margin: 0;
	}

	.main__header .wrapper>ul>li:not(:last-child)::after {
		right: 0;
		bottom: 50%;
		transform: translateY(50%);
		height: 25px;
		width: 1px;
		left: unset;
	}

	.main__header .header__footer__buttons a {
		flex-direction: row;
		margin: 0;
		margin-left: 20px;
	}

	.main__header .wrapper ul {
		flex-direction: row;
	}

	.menu__children {
		pointer-events: none;
	}

	.main__header ul a {
		font-size: 1rem;
	}

	.main__header .menu__children {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		min-width: 260px;
		top: 120%;
		background-color: var(--color-blue);
		border-radius: 10px;
		margin-top: 30px;
		overflow: visible;
		height: auto;
		opacity: 0;
		box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.25);
	}

	.main__header .menu__children .triangle {
		position: absolute;
		bottom: 100%;
		z-index: 99;
		left: 50%;
		transform: translate(-50%);
		/* box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.25); */
		filter: drop-shadow(0px -2px 2px rgba(0, 0, 0, 0.25));
	}

	.main__header .burger__menu__icon {
		display: none;
	}
}


@media only screen and (min-width: 900px) {

	/*funnel */



	/* endfunnel */

	.bild_text>.headline {
		display: none;
	}

	.headline_module {
		display: block;
	}

	.angebot_karten .arrow.close {
		display: none;
	}

	.angebote__head .headline h3 {
		margin: 0;
	}

	.angebot_karten .icon {
		width: 53px;
	}

	.angebot_karten .angebote__card {
		padding: 40px;
	}

	.toggleCheckListeLabel {
		display: block;
	}

	.headline_module {
		text-align: center;

	}

	.checkliste>div {
		padding: 40px 80px;
	}

	.bild_text {
		display: flex;
	}

	.bild_text .image__container {
		width: 50%;
	}

	.bild_text .text {
		width: 50%;
	}

	.bild_text .image__container img {
		width: 100%;
		max-width: 600px;
		height: auto;
	}

	/* text__module */

	.text__module .text {
		padding: 40px;

	}

	.text__module .text__content {
		column-count: 2;
		column-gap: 80px;

	}

	/* end text__module */

	/*  checkliste */

	.checkliste .arrow.open {
		opacity: 1;
	}

	.checkliste .arrow.close {
		display: none;
	}

	/* end checkliste */



	/* angebote */
	.angebote__head .headline {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		width: 100%;
		padding-left: 80px;
		margin: 0;
	}

	.angebot_karten .details {
		margin-left: 130px;
	}

	.angebot_karten .arrow {
		font-size: 1.5rem;
	}

	.angebot_karten .arrow__container {
		width: 23px;
		height: 23px;
	}

	/* end angebote */

	/* ********* auszeichnungen ************ */

	.auszeichnungen .grid {
		display: flex;
		justify-content: space-between;
	}

	.auszeichnungen .grid .grid__item {
		margin: 0;
	}

	.auszeichnungen .headline {
		margin-bottom: 100px;
	}

	.auszeichnungen .icon img {
		height: 90px;
		margin-bottom: 70px;
	}

	/* ********* auszeichnungen ************ */

	/* ********* bewertungen ************ */

	.bewertungen {
		padding-right: 0 !important;
		padding-bottom: 160px !important;
	}

	.bewertungen .card__head .stars {
		width: 190px;
	}

	.bewertungen .carousel-cell {
		margin-right: 80px;
		width: 37%;
		max-width: 480px;
	}

	.bewertungen .flickity-page-dots {
		display: none;
	}

	.bewertungen .flickity-prev-next-button {
		background: white;
	}

	.bewertungen .flickity-prev-next-button:hover {
		box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.671);
	}

	.bewertungen .flickity-prev-next-button svg {
		display: none;
	}

	.bewertungen .flickity-prev-next-button.next {
		background-image: url(assets/icons/Arrow\ right.svg);

	}

	.bewertungen .flickity-prev-next-button.previous {
		background-image: url(assets/icons/Arrow\ left.svg);

		right: 120px !important;
	}

	/* ********* end bewertungen ************ */



	/* ********* slider1 ************ */

	.slider1 {
		padding-right: 0 !important;
		padding-bottom: 130px !important;
	}



	.slider1 .carousel-cell {
		margin-right: 40px;
		width: 37%;
	}

	.slider1 .flickity-page-dots {
		display: none;
	}

	.slider1 .flickity-prev-next-button {
		background: var(--color-blue-dark);
	}

	.slider1 .flickity-prev-next-button:hover {
		background-color: var(--color-blue-dark);
	}

	.slider1 .flickity-prev-next-button svg {
		display: none;
	}

	.slider1 .flickity-prev-next-button.next {
		background-image: url(assets/icons/Arrow\ right\ white.svg);

	}

	.slider1 .flickity-prev-next-button.previous {
		background-image: url(assets/icons/Arrow\ left\ white.svg);
		right: 120px !important;
	}

	/* ********* end slider1 ************ */

	/* slider similar code */
	.slider1 .flickity-prev-next-button,
	.bewertungen .flickity-prev-next-button {
		display: block;
		top: calc(100% + 30px);
		transform: none;
		right: 80px !important;
		left: unset !important;
		width: 30px;
		height: 30px;
		background-size: 50%;
		background-repeat: no-repeat;
		background-position: 50% 50%;
	}

	.slider1 .flickity-prev-next-button:hover,
	.bewertungen .flickity-prev-next-button:hover {
		background-size: 50%;
		background-repeat: no-repeat;
		background-position: 50% 50%;
		filter: brightness(200%);
		box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.671);
	}

	/* end slider similar code */
}

@media only screen and (max-width: 450px) {
	.slider1 .card__bottom {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		flex-direction: column;
	}

	.slider1 .card__bottom>span {
		order: 2;
		margin-top: 10px;
		display: block;
	}
}

@media only screen and (max-width: 600px) {
	.seiteneinstieg_rechtsgebiete .image__container img {
		left: 10px;
		right: unset;
	}

}

@media only screen and (min-width: 600px) {


	.col2 {
		grid-template-columns: 1fr 1fr;
		grid-gap: 20px;
	}

	/* footer */
	.main__footer {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.main__footer div {
		padding-right: 40px;
		min-width: 200px;
		flex-grow: 1;
	}

	.main__footer .logo__container {
		display: block;
		width: unset;
	}

	.main__footer .logo__container img {
		margin-bottom: 20px;
	}

	.main__footer .links>div {
		padding-left: 50px;
		/* margin-left: 50px; */
		border-left: solid 1px white;
		width: 100%;
	}

	/* end .main__footer */
	.bild_text .image__container img {
		transform: rotate(-4.991deg) translateX(-100px)
	}

	.faq {
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}

	.faq .faq__item {
		padding: 20px 30px;
	}

	.Call2Action .ctm--btn {
		font-size: 1.625rem;
	}

	:root {
		--distance-05: 40px;
		--distance-1: 80px;
		--distance-2: 160px;
	}

	.d05 {
		padding-left: var(--distance-05);
		padding-right: var(--distance-05);
	}

	.d1 {
		padding-left: var(--distance-1);
		padding-right: var(--distance-1);
	}

	.d2 {
		padding-left: var(--distance-2);
		padding-right: var(--distance-2);
	}

	.desktop__only {
		display: block !important;
	}

	.mobile__only {
		display: none !important;
	}

	h1 {
		font-size: 4rem;
		line-height: 115%;
	}

	h2 {
		font-size: 2.25rem;
		line-height: 115%;
	}

	h3 {
		font-size: 1.5rem;
		line-height: 115%;
	}

	p {
		font-size: 1.25rem;
		line-height: 130%;
	}

	.module {
		padding-top: 90px;
		padding-bottom: 90px;
	}

	.seiteneinstieg_rechtsgebiete {
		padding-top: 200px;
	}
}

@media only screen and (max-width: 370px) {
	.auszeichnungen .grid {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.auszeichnungen .grid .grid__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.auszeichnungen .grid li {
		text-align: left;
	}

	.auszeichnungen .grid .grid__item:nth-child(even) {
		margin: 0;
	}
}

@media only screen and (max-width: 450px) {

	.main__header {
		margin: 20px;
		width: calc(100% - 40px);
	}

	:root {
		--distance-05: 10px;
		--distance-1: 20px;
		--distance-2: 40px;
	}

	.d05 {
		padding-left: var(--distance-05) !important;
		padding-right: var(--distance-05) !important;
	}

	.d1 {
		padding-left: var(--distance-1) !important;
		padding-right: var(--distance-1) !important;
	}

	.d2 {
		padding-left: var(--distance-2) !important;
		padding-right: var(--distance-2) !important;
	}
}