/* FONTS */

@font-face {
    font-family: 'VR Light';
    src: url('../font/GenosGFG-Regular.woff2') format('woff2'),
        url('../font/GenosGFG-Regular.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'VR Bold';
    src: url('../font/GenosGFG-Bold.woff2') format('woff2'),
        url('../font/GenosGFG-Bold.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'VR Regular';
    src: url('../font/GenosGFG-Regular.woff2') format('woff2'),
        url('../font/GenosGFG-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'VR Medium';
    src: url('../font/GenosGFG-Bold.woff2') format('woff2'),
        url('../font/GenosGFG-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/*  Extra large devices (large desktops) */
/*  No media query since the extra-large breakpoint has no upper bound on its width */

body, p {
	font-family: "VR Regular",sans-serif;
	font-size: 1rem;
	line-height: 1.625rem;
	color:#263A4E;
}

b, .bold {
	font-family: "VR Medium",sans-serif;
}

h1 {
	font-family: "VR Bold",sans-serif;
	font-size: 3rem;
}

h2 {
	font-size: 2rem;
	font-family: "VR Bold",sans-serif;
	line-height: 2.5rem
}

h3 {
	font-size: 1.375rem;
	font-family: "VR Light",sans-serif;
}

.small-headline {
	font-family: "VR Bold",sans-serif;
	font-size: 1.125rem;
}

a.link:hover img {
	left:15px;
}

a.link {
	color: #F74D00;
	text-transform: uppercase;
	font-family: "VR Bold",sans-serif;
	text-decoration: none;
	letter-spacing: 0.25px
}

a {
	text-decoration: none;
}

a:hover {
	color: #F74D00
}

a.link img {
	position: relative;
	top:-2px;
	left:0;
}

.blue {
	color:#042155;
}

.white {
	color: #fff !important
}

.orange {
	color:#F74D00;
}

.grey {
	color:#263A4E;
}

/* Background */

.bg-light-blue {
	background-color: #F2F9FF
}

.bg-white {
	background-color: #fff
}

.bg-blue {
	background-color: #042155
}

/* Transition */

.transition {
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease; /* Firefox 4 */
    -webkit-transition: all 0.3s ease; /* Safari and Chrome */
    -o-transition: all 0.3s ease; /* Opera */
    -ms-transition: all 0.3s ease; /* Explorer 10 */
}

/* Sidebar */

aside {
	position: fixed;
	width: 44px;
	right: 0;
	z-index: 10;
	top: 20vh;
	-webkit-box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.1); 
	box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.1);
}

aside div svg {
	fill: white;
}

aside div {
	background-color: #002D67;
	width: 54px;
	height: 137px;
	position: relative;
	cursor: pointer;
	border-bottom-left-radius: 25px;
	border: 2px solid white;
	border-top-left-radius: 25px;
	-webkit-box-shadow: 0 3px 10px -2px #000c; 
	box-shadow: 0 3px 10px -2px #000c;
}

aside div>p.text {
	rotate: -90deg;
	font-size: 1rem;
	color:white;
	font-family: "VR Bold";
	margin-top: 2rem;
}

aside div>img.arrow {
	margin: 5rem auto 0 auto;
}

aside div>span.border {
	width: 40% !important;
	height: 6px !important;
	border:none !important;
	border-radius: 4px;
	background-color: #F74D00;
	display: inline-block;
	bottom: 1rem;
	left: 0;
	right: 0;
	position: absolute;
	margin: auto;
}

aside .expand {
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease; /* Firefox 4 */
    -webkit-transition: all 0.3s ease; /* Safari and Chrome */
    -o-transition: all 0.3s ease; /* Opera */
    -ms-transition: all 0.3s ease; /* Explorer 10 */
	right: 0;
}

aside .expand.open {
	background-color: #002D67;
	right: 450px;
}


aside div:hover {
	-webkit-box-shadow: 0 3px 25px -2px #000c; 
	box-shadow: 0 3px 25px -2px #000c;
}


aside div svg,
aside div img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin:auto;
}

aside div.panel-content {
	background-color: white;
	position: absolute;
	width: 450px;
	padding: 2rem 2rem 1rem 2rem;
	height: auto;
	left: 50px;
	z-index: 5;
	top:-2px;
	border-radius: 0;
	-webkit-box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.1); 
	box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.1);
}

aside div.panel-content a {
	font-size: 1.375rem !important;
	line-height: 2rem !important;
	font-family: 'VR Bold';
	display: inline-block;
	margin-top: 10px !important;
	position: relative;
}

aside div.panel-content a:after {
	height: 2px;
	background-color: transparent;
	content: '';
	display: inline-block;
	width: 0%;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	bottom: -5px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease; /* Firefox 4 */
    -webkit-transition: all 0.3s ease; /* Safari and Chrome */
    -o-transition: all 0.3s ease; /* Opera */
    -ms-transition: all 0.3s ease; /* Explorer 10 */
}

aside div.panel-content a:hover:after {
	background-color: #F74D00;
	width: 100%;
	left: 0;
}

/* Liste */

ul.list {
	list-style: none;
	padding-left: 25px;
	padding-top: 10px
}

ul.list li {
	padding-left: 0 !important;
	position: relative;
	margin: 8px 0
}

ul.list li:before {
	content: '';
	width: 11px;
	display: block;
	height: 8px;
	background-image: url(../img/check.svg);
	background-size: 100%;
	position: absolute;
	left: -25px;
	top:7px;
}

/* Section Padding */

hr {
	height: 0px;
	background-color: transparent;
	border-bottom: 2px solid #95C8FF;
	margin: 4.5rem 0 5.5rem 0
}

header {
	padding: 10rem 0 8.25rem 0
}

section, footer .bg-blue {
	padding: 5rem 0
}

.row.logos {
	padding: 5.25rem 0
}

.row.steps, .komplex {
	padding: 6.25rem
}

.komplex {
	max-width: 1496px;
	margin-top: 0rem !important;
	padding-bottom: 3.125rem !important
}

.ssl {
	padding-bottom: 26rem;
	margin-bottom: 0 !important
}

.usps {
	margin-top: -19.5rem;
	padding-top: 0
}

/* Navigation */

.navbar-expand-lg .navbar-nav {
	margin-left: auto
}

.navbar.scrolled {
	background-color: white;
	-webkit-box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.1); 
	box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.1);
}

.navbar img {
	margin-top: 0;
	max-width: 100%;
}

.navbar.scrolled img {
	max-width: 250px;
	padding: 0;
	margin-top: -20px
}

.navbar {
	position: fixed;
	z-index: 10;
	left: 0;
	right: 0;
	width: 100%;
	padding-top: 2rem;
} 

.navbar ul li a {
	font-family: "VR Regular",sans-serif;
	font-size: 1rem;
	color: #042155;
	padding: 0 30px !important;
	position: relative;
}

.navbar ul li a.active {
	font-family: "VR Medium",sans-serif;
}

.navbar ul li a:hover {
	color: #F74D00
}

.navbar ul li a.active:after {
	width: 80%
}

.navbar ul li a:after {
	height: 2px;
	background-color: transparent;
	content: '';
	display: inline-block;
	width: 0%;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	bottom: -15px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease; /* Firefox 4 */
    -webkit-transition: all 0.3s ease; /* Safari and Chrome */
    -o-transition: all 0.3s ease; /* Opera */
    -ms-transition: all 0.3s ease; /* Explorer 10 */
}


.navbar ul li a:hover:after,
.navbar ul li a.active:hover:after {
	background-color: #F74D00;
	width: 80%
}

.navbar ul li a.active:after {
	background-color: #042155;
}

/* Header */

header img.mitglied {
	max-width: 100%;
}

header, header .container {
	position: relative;
}

header {
	padding-bottom: 0rem !important;
}

/* Anwendung */

.images-price {
	position: absolute;
	height: 650px;
	width: 95%;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.images-price .phone-container {
	overflow: hidden;
	position: absolute;
	height: 650px;
	width: 95%;
	left: 0;
	right: 0;
	margin: auto;
}

.images-price img {
	position: absolute;
	filter: grayscale(100%);
}

.images-price img.active {
	filter: none;
}

.images-price img.persoenlichpur {
	bottom: 0%;
	right: -15%;
}

.images-price img.sicherheitPur {
	top: 10%;
	left: 0%;
}

.images-price img.regionalpur {
	right: -20%;
	bottom: 0%;
}

.images-price img.digitalpur {
	left: 0%;
	bottom: 0%;
}

.images-price img.phone {
	margin: auto;
	filter: none;
	bottom: -40%;
	left: 0;
	right: 0;
}

.grundmodell h3 {
	font-family: "VR Bold";
}

.grundmodell {
	position: relative;
}

.grundmodell h3.price {
	position: absolute;
	right: 3rem;
	top: 3rem;
}

.anwendung-right .relative {
	position: relative;
	width: 100%;
	text-align: center;
} 

.anwendung-right span.oder {
	position: absolute;
	display: inline-block;
	background-color: #fff;
	border-radius: 4px;
	z-index: 9;
	margin-top: -18px;
	margin-left: -16px;
	color: #2382C8;
	padding: 0.25rem 0.5rem;
}

.anwendung-right .add {
	position: relative;
	margin: 2rem auto;
	right: 0;
	left: 0;
	display: block;
}

.anwendung-right button.btn.active,
.anwendung-right button.btn:hover {
	border-color: #F74D00;
}

.anwendung-right button.btn:hover {
	color: #F74D00 !important;
}

.anwendung-right .card.card-body img.sicherheit,
.anwendung-right .card.card-body img.region,
.anwendung-right .card.card-body img.service,
.anwendung-right .card.card-body img.wegbegleiter {
	position: absolute;
	right: 2rem;
	bottom: 2rem;
}

.anwendung-right div.orangeinfo.active {
	background-color: #F74D00 !important;
	color: white;
	padding:  0.45rem 1rem;
	opacity: 1;
}

.anwendung-right button.btn h3.inkl {
	font-size: 1rem;
	color: #F74D00 !important;
	padding-top: 5px;
	padding-bottom: 2px;
}

.anwendung-right div.orangeinfo {
	transition: all 0.2s ease-in-out;
	opacity: 0;
}

.anwendung-right .card.card-body.infotext h3 {
	padding-left: 2rem;
	padding-bottom: 1rem;
}

.anwendung-right .card.card-body.infotext img.info {
	position: absolute;
}

.anwendung-right .card.card-body.infotext img.exit {
	position: absolute;
	right: 2.5rem;
	top: 2.5rem;
	cursor: pointer;
}

.anwendung-right .actions button.btn.orange:hover,
.anwendung-right .actions button.btn.orange h3,
.anwendung-right .actions .orange {
	color: #F74D00 !important;
	border-color: #F74D00 !important;
}

.anwendung-right .actions .orange.btn::before {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F74D00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.anwendung-right .actions .orange.btn[aria-expanded="true"]::before {
	transform: rotate(180deg);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F74D00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.anwendung-right button.btn.blue-dark input[type=checkbox]:checked + label:before {
	border-color: #3563B1 !important;
	background-color: #3563B1 !important;
}

.anwendung-right .actions button.btn.blue-dark:hover,
.anwendung-right .actions button.btn.blue-dark h3,
.anwendung-right .actions .blue-dark {
	color: #3563B1 !important;
	border-color: #3563B1 !important;
}

.anwendung-right .actions .blue-dark.btn::before {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233563B1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.anwendung-right .actions .blue-dark.btn[aria-expanded="true"]::before {
	transform: rotate(180deg);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233563B1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.anwendung-right button.btn.blue input[type=checkbox]:checked + label:before {
	border-color: #2382C8 !important;
	background-color: #2382C8 !important;
}

.anwendung-right .actions button.btn.blue:hover,
.anwendung-right .actions button.btn.blue h3,
.anwendung-right .actions .blue {
	color: #2382C8 !important;
	border-color: #2382C8 !important;
}

.anwendung-right .actions .blue.btn::before {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232382C8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.anwendung-right .actions .blue.btn[aria-expanded="true"]::before {
	transform: rotate(180deg);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232382C8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.anwendung-right .actions button.btn.green:hover,
.anwendung-right .actions button.btn.green h3,
.anwendung-right .actions button.btn.green *,
.anwendung-right .actions .green {
	color: #646B2A !important;
	border-color: #646B2A !important;
}

.anwendung-right .actions .green.btn::before {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23646B2A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.anwendung-right .actions .green.btn[aria-expanded="true"]::before {
	transform: rotate(180deg);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23646B2A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.anwendung-right .actions .green.btn input[type=checkbox] + label:before {
  content: url("data:image/svg+xml,%3csvg width='19' height='21' viewBox='0 0 19 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1.70215 10.5H17.0621' stroke='%23646B2A' stroke-width='2' stroke-linecap='round'/%3e%3cpath d='M9.38184 1.89062L9.38184 19.0906' stroke='%23646B2A' stroke-width='2' stroke-linecap='round'/%3e%3c/svg%3e");
  border-color: #646B2A !important;;
}


.anwendung-right .actions .green.btn input[type=checkbox]:checked + label:before {
  background-color: #646B2A;
  border-color: #646B2A;
  color: #fff;
  content: "✓";
  font-size: 1.25rem !important;
  padding-top: 0.5rem;
}

.anwendung-right .actions {
	position: relative;
	height: auto;
}

.anwendung-right .card.card-body.infotext {
	position: absolute;
	border:0;
	border-radius: 0;
	padding: 3rem 3rem 2rem 3rem;
	line-height: 1;
	min-height: 100%;
	height: auto;
	z-index: 9999;
	border-radius: 1rem;
	-webkit-box-shadow: 0px 5px 17px 2px rgba(0,0,0,0.17); 
	box-shadow: 0px 5px 17px 2px rgba(0,0,0,0.17);
}

.anwendung-right .card.card-body {
	position: relative;
	top: 0px;
	border: 0px solid #F74D00;
	border-top:0;
	border-radius: 0;
	padding: 5rem 1rem 0.75rem 1rem;
}

.anwendung-right button.btn[aria-expanded="true"] {
	border-bottom: 1px solid #fff !important;
	position: relative;
	z-index: 9999;
	border-color: #F74D00;
}

.anwendung-right .btn.btn-primary {
	margin-top: 0.5rem !important;
}

.anwendung-right a.btn.btn-secondary:hover {
	background-color: #F4F7F9 !important;
	border:2px solid #2382C8 !important;
	color: #2382C8 !important;
}

.anwendung-right a.btn.btn-secondary {
	background-color: transparent !important;
	border:2px solid #2382C8 !important;
	color: #2382C8 !important;
}

.anwendung-right button.btn {
	width: 100% !important;
	background-color: white;
	border-bottom: 1px solid #042155;
	position: relative;
	padding: 20px 24px 16px 3rem;
	margin-top: 0rem;
	font-size: 1.125rem;
	focus: none;
	outline: none !important;
}

.anwendung-right .card.card-body.infotext img.exit,
.anwendung-right button.btn > img {
	transition: all 0.2s ease-in-out;
}

.anwendung-right .card.card-body.infotext img.exit:hover,
.anwendung-right button.btn > img:hover {
	transform: scale(1.2);
}

.anwendung-right button.btn h3,
.anwendung-right button.btn {
	color: #042155 !important;
	font-family: "VR Regular";
	text-transform: none;
	text-align: left !important;
	letter-spacing: 0;
	font-size: 1.125rem;
}

.anwendung-right button.btn h3 {
	font-family: "VR Regular";
	position: relative;
	float: right;
	padding-right: 3rem;
	top: -3px;
}

.anwendung-right .btn label {
	scale: 1;
	transition: all 0.2s ease-in-out;
}

.anwendung-right .btn label:hover {
	scale: 1.2;
}

.anwendung-right .form-switch {
	padding: 0;
}

.anwendung-right input[data-toggle="toggle"].form-check-input:checked {
	background-color:#F74D00;
	border-color:#F74D00;
}

.anwendung-right input[data-toggle="toggle"]{
	display: block !important;
}

.anwendung-right input#toggleSwitch {
	height: 31px;
	width: 51px;
	margin: 0;
}

.anwendung-right input[type=checkbox] + label span {
	display: none;
}

.anwendung-right input[type=checkbox] + label {
  display: block;
  cursor: pointer;
  color: transparent;
  width: 36px;
  height: 36px;
  position: absolute;
  right: 1rem;
  top: 0;
  bottom: 0;
  margin: auto;
}

.anwendung-right .actions .btn:before {
	content: '';
	display: block;
	position: absolute;
	width: 18px;
	height: 16px;
	background-size: 100%;
	left: 1rem;
	top: 23px;
	transform: rotate(0deg);
	transition: all 0.2s ease-in-out;
}

.anwendung-right .actions .btn::before {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23042155'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.anwendung-right .actions .btn[aria-expanded="true"]::before {
	transform: rotate(180deg);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F74D00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.anwendung-right .collapsing,
.anwendung-right .collapse.show {
	position: absolute !important;
	z-index: 999;
	margin-top:-58.59px;
	width: 100%;
	-webkit-box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.1) !important; 
	box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.1) !important;
}

.anwendung-right .collapse {
	position: absolute !important;
	z-index: 999;
	width: 100%;
	-webkit-box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.1) !important; 
	box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.1) !important;
}

.anwendung-right .btn.btn-secondary:hover {
	background-color: #042155;
	border: 2px solid #042155 !important;
	color: white !important;
}

.anwendung-right .btn.btn-primary img {
	transition: all 0.2s ease-in-out;
}

.anwendung-right .btn.btn-primary:hover img {
	right: 1.5rem;
}

.anwendung-right .btn.btn-primary:hover {
	background-color: #042155 !important;
	color: white !important;
}

.anwendung-left #price-overview h3.headline {
	width: 100%;
	text-align: center;
	font-size: 1.5rem;
}

.anwendung-left #price-overview h1 {
	font-family: "VR Bold";
	width: 100%;
	font-size: 4rem;
	text-align: center;
	color: #042155;
	margin: 4rem 0 0 0;
}

.anwendung-left #price-overview p.grundmodell {
	border-bottom: 1px solid #042155;
	padding-bottom: 1rem;
}

.anwendung-left #price-overview p.gesamt {
	width: 100%;
	text-align: center;
	margin-bottom: 4rem;
}

.anwendung-left #price-overview h1 small {
	font-size: 4rem;
}

.anwendung-left #price-overview p.price.blue-dark {
	color:#3563B1 !important;
}


.anwendung-left #price-overview p.price.blue {
	color:#2382C8 !important;
}

.anwendung-left #price-overview p.price.green {
	color:#646B2A !important;
}

.anwendung-left #price-overview p {
	font-size: 1rem;
	line-height: 0.5;
}

.anwendung-left #price-overview p span {
	float: right;
	font-family: "VR Regular";
}

.anwendung-left #price-overview {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 250px;
	z-index: 9;
	top: 25%;
}

.anwendung-right .btn.btn-primary img {
	position: absolute;
	right: 2rem;
	top: 1.25rem;
}

.anwendung-right .btn.btn-secondary span {
	position: absolute;
	right: 2.5rem;
	font-size: 1.75rem;
	top: 1rem;
}

.anwendung-right .btn.btn-secondary {
	color: #F74D00 !important;
	border-color: #F74D00 !important;
	font-size: 1rem !important;
	background-color: transparent;
	letter-spacing: 0;
	padding: 20px 24px;
	margin-top: 3rem;
}

.anwendung-right .btn.btn-primary {
	color: white !important;
	background-color: #3563B1 !important;
	font-size: 1rem !important;
	letter-spacing: 0;
	border-radius: 0.5rem;
	padding: 20px 24px;
	margin-top: 0rem;
	font-family: "VR Regular";
	width: 100%;
	position: relative;
	display: block;
	text-transform: none;
	letter-spacing: 0;
	text-align: left;
}

.anwendung-right .btn.btn-primary span {
	font-family: "VR Bold";
}

.anwendung-right input[type=checkbox] {
  display: none;
}

.anwendung-right input[type=checkbox] + label:before {
  content: url("data:image/svg+xml,%3csvg width='19' height='21' viewBox='0 0 19 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1.70215 10.5H17.0621' stroke='%232382C8' stroke-width='2' stroke-linecap='round'/%3e%3cpath d='M9.38184 1.89062L9.38184 19.0906' stroke='%232382C8' stroke-width='2' stroke-linecap='round'/%3e%3c/svg%3e");
  background-color: transparent;
  border: 2px solid #2382C8;
  position: absolute;
  color: #2382C8;
  padding-top: 6px;
  border-radius: 100%;
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: .2s;
}

.anwendung-right input[type=checkbox] + label:active:before {
  transform: scale(0);
}

.anwendung-right input[type=checkbox]:checked + label:before {
  background-color: #F74D00;
  border-color: #F74D00;
  color: #fff;
  content: "✓";
  font-size: 1.25rem !important;
  padding-top: 0.5rem;
}

/* Age Card */

.anwendung-right .age-card {
    cursor: pointer;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.anwendung-right .age-card img {
    max-width: 80px;
    margin-bottom: 10px;
}

.anwendung-right .age-card.active {
    background-color: #fff5eb;
    border-color: #e76f51;
    box-shadow: 0px 4px 8px rgba(231, 111, 81, 0.3);
}

.anwendung-right .age-card h5 {
	font-family: "VR Bold";
    color: #1a202c;
    font-size: 1rem;
}

/* Modal */

.modal-content {
	border: 0;
	border-radius: 0;
	padding: 3rem;
}

.modal-content h2 {
	display: inline-block;
	width: 100%;
}

.modal-content hr {
	margin: 2rem 0 3rem 0;
}

.modal-content div.normal.bg-light-blue {
	display: block;
	height: auto;
	width: calc(100% + 8rem);
	position: relative;
	left: -4rem;
	padding: 2rem 4rem 3.5rem 4rem;
	margin-bottom: 2rem;
	margin-top: 1.25rem;
}

.modal-content .modal-header {
	border-bottom: 0;
}

.modal-header .btn-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
}

.modal-dialog {
	max-width: 65%;
}

.modal-body p.left {
	float: left;
	width: 70%;
	font-family: "VR Bold";
}

.modal-backdrop {
	background-color: rgba(4,33,85,0.9) !important;
	opacity: 1 !important;
}

.modal-body p.left span {
	font-family: "VR Regular";
}

.modal-body .btn-secondary {
	background-color: transparent;
	font-family: "VR Regular";
	font-size: 1rem;
	border:2px solid #F74D00 !important;
	color: #F74D00 !important;
	text-transform: none;
	padding: 1rem 2.5rem 1.25rem 2.5rem;
	letter-spacing: 0;
}

.modal-body .btn-secondary:hover {
	color: white !important;
	border-color: #042155 !important;
}

.modal-body .btn-secondary span.plus {
	margin-left: 1rem;
	font-size: 1.5rem;
	position: relative;
	bottom: -3px;
}

.modal-body p.right.bigger {
	font-family: "VR Bold";
	font-size: 1.5rem;
}

.modal-body img.add {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 99;
}

.modal-body span.normal p {
	font-family: "VR Regular" !important;
}

.modal-body p.right {
	float: right;
	width: 30%;
	text-align: right;
	font-family: "VR Bold" !important
}

/* Steps */

.row.steps {
	position: relative;
}

.row.steps a.btn {
	position: absolute;
	bottom: -40px;
	margin: auto;
	right: 0;
	left: 0;
	max-width: 388px
}

/* Features */

.row.features div  {
	padding-top: 4.25rem;
	position: relative;
}

.row.features div>img {
	position: absolute;
	top:0;
}

/* USP's */

.komplex {
	position: relative;
	left: 0;
	right: 0;
	margin:auto;
	margin-top: 6.25rem
}

.komplex .last {
	position: relative;
	bottom: -80px
}

/* Quotes */

.quotescontainer {
	padding-bottom: 8.25rem !important
}

.quotes .content {
	position: relative;
	z-index: 2;
	padding: 6rem 6rem 4rem 4rem;
}

.quotes .content .border {
	border:2px solid #2C3850 !important;
	position: absolute;
	z-index: 4;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0
}

.quotes .content p {
	font-family: "VR Medium",sans-serif;
	font-size: 1.275rem;
	line-height: 2rem;
	color: white;
	padding: 0;
	margin: 0;
	position: relative;
	top: -30px;
	right: -30px;
}

.quotes .content .bg {
	background-color: #F74D00;
	position: absolute;
	width: 100%;
	height: 100%;
	top: -30px;
	right: -30px;
	z-index: -3
}

.quotes .carousel-inner {
	padding-top: 30px
}

.quotes .carousel-control-prev-icon,
.quotes .carousel-control-next-icon {
	width: 1rem;
	height: 1rem
}

.quotes .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F74D00'><path d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/></svg>");
}

.quotes .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F74D00'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.quotes .carousel-indicators {
	bottom: -4rem
}

.quotes .carousel-indicators [data-bs-target] {
	background-color: #F74D00
}

/* FAQ's */

.accordion-item:has(.accordion-button[aria-expanded="true"]) button {
	background-color: #F4F7F9 !important;
}

.accordion-item:has(.accordion-button[aria-expanded="true"]),
.accordion-item:has(.accordion-button[aria-expanded="true"]) div {
	background-color: #fff;
}

.accordion {
	border:0 !important;
}

.accordion button.accordion-button {
	font-family: "VR Bold";
}

.accordion button.accordion-button,
h2.accordion-header {
	font-size: 1.275rem;
	line-height: 1.75rem;
	outline: none !important;
	border: 0 !important;
}

.accordion .accordion-item {
	border:0;
}

.accordion .accordion-item:hover button.accordion-button {
	background-color: #F4F7F9 !important;
}

.accordion .accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23042155'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23042155'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-item h2 button.accordion-button.collapsed {
	margin-top: 0rem;
	border-top: 2px solid #E1E8F4 !important;
	background-color: #fff;
}

.accordion .accordion-item h2 button {
	padding: 1rem 3rem 1rem 3rem;
	border-top: 2px solid #E1E8F4 !important;
}

.accordion .accordion-item>div .accordion-body {
	padding: 1rem 3rem 1rem 3rem;
	font-family: "VR Regular",sans-serif;
	font-size: 1rem;
	line-height: 1.625rem;
}

.accordion .accordion-body {
	border:0;
}

.accordion .accordion-button.collapsed {
	color: #042155
}


.accordion .accordion-button {
	color: #042155;
	box-shadow: none;
}


.accordion .accordion-button.collapsed {
	background-color: transparent;
}

.accordion .accordion-item  {
	background-color: transparent;
}

.accordion .accordion-button .collapsed {
	background-color: transparent !important
}

/* Kontakt */

.kontakt {
	padding: 4.125rem 6.25rem;
	position: relative;
}

.kontakt .seperator-left {
	padding: 3.125rem 0 3.125rem 6.25rem;
	border-left: 1px solid rgba(255,255,255,0.2)
}

.kontakt .btn.btn-primary {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -40px;
	margin:auto;
	max-width: 360px
}

.kontakt small.white {
	color: rgba(255,255,255,0.5) !important
}

.kontakt h2 a {
	color: rgba(255,255,255,1) !important;
	font-family: "VR Medium",sans-serif;
	text-decoration: none;
}

.kontakt h2 a {
	position: relative;
}

.kontakt h2 a:after {
	content: '';
	display: inline-block;
	left: 0;
	width: 0;
	height: 2px;
	bottom: -10px;
	background-color: white;
	position: absolute;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease; /* Firefox 4 */
    -webkit-transition: all 0.3s ease; /* Safari and Chrome */
    -o-transition: all 0.3s ease; /* Opera */
    -ms-transition: all 0.3s ease; /* Explorer 10 */
}

.kontakt h2 a:hover:after {
	width: 100%
}


/* CTA */

.cta {
	background-image: url("../img/cta.svg");
	background-size: cover;
	background-position: 30%;
	padding: 6.25rem;
	background-repeat: no-repeat;
}

/* Footer */

footer img.footer-logo {
	max-width: 750px !important;
}

footer .line {
	display: inline-block;
	height: 2px;
	width: 50px;
	background-color: white
}

footer .copyright {
	padding: 2.125rem 0 1rem 0;
}

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

footer .copyright p,
footer .copyright a {
	font-size: 14px;
	color: #707070;
	text-decoration: none;
}

footer .logos p {
	font-size: 14px;
	color: #707070;
}

footer h4 a {
	color: rgba(255,255,255,1) !important;
	text-decoration: none;
}

footer h4 a {
	position: relative;
}

footer h4 a:after {
	content: '';
	display: inline-block;
	left: 0;
	width: 0;
	height: 2px;
	bottom: -10px;
	background-color: white;
	position: absolute;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease; /* Firefox 4 */
    -webkit-transition: all 0.3s ease; /* Safari and Chrome */
    -o-transition: all 0.3s ease; /* Opera */
    -ms-transition: all 0.3s ease; /* Explorer 10 */
}

footer .footer-links {
	color: white;
}

footer .footer-links li {
    list-style: none;
}

footer .footer-links li:first-child:before {
    content: none;
}

footer .footer-links li:before {
    content:"· ";
    font-size:16px;
    vertical-align:middle;
    line-height:20px;
    margin-right: 0.875rem;
}

footer .footer-links a {
	color: white;
	font-size: 0.875rem;
}

footer .footer-links a:hover {
	text-decoration: underline;
}

footer .links img {
	margin-right: 1rem !important;
}

footer .social {
	opacity: 0.875;
}

footer .social a:hover img {
	transform: scale(1.5);5
}


footer h4 a:hover:after {
	width: 100%
}

footer .padding-col {
	padding-top: 78px;
}

footer .copyright a:hover {
	color: #F74D00
}

footer .bg-orange {
	height: 30px;
	background-color: #F74D00
}

footer .container {
	position: relative;
}

footer .scrolltop:hover {
	top:-8.25rem;
	border: 1px solid #F74D00;
}

footer .scrolltop {
	width: 60px;
	height: 60px;
	position: absolute;
	background-color: white;
	right: 0;
	top:-8rem;
	border: 1px solid #ccc;
	cursor: pointer;
	-webkit-box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.1); 
	box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.1);
}

footer .scrolltop img {
	position: absolute;
	max-width: 16px;
	margin:auto;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0
}


/* Kontakt */

#kontakt {
	padding-top: 5rem !important;
	padding-bottom: 5rem !important;
	background-color: #F6F7F9;
	margin-top: 5rem;
}

.kontakt {
	padding: 1rem;
	position: relative;
}

.kontakt .row {
	position: relative;
}

.kontakt .col-12 img.abs {
	position: absolute;
	top: 20px;
	left: 20px;
}

.kontakt .col-12.col-md-5,
.kontakt .col-12.col-md-7 {
	padding-left: 4rem;
	position: relative;
}

.kontakt .seperator-left {
	position: absolute;
	width: 2px !important;
	height: calc(100% - 8rem);
	background-color: #fff;
	display: block;
	left: 0;
	right: 0;
	margin: auto;
	padding: 0;
}

.kontakt .btn.btn-primary {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -40px;
	margin:auto;
	max-width: 360px
}

.kontakt h3 a {
	color:#263A4E !important;
	font-family: "VR Medium",sans-serif;
	text-decoration: none;
}

.kontakt h3 a {
	position: relative;
}

.kontakt h3 a:after {
	content: '';
	display: inline-block;
	left: 0;
	width: 0;
	height: 3px;
	bottom: -10px;
	background-color: #263A4E;
	position: absolute;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease; /* Firefox 4 */
    -webkit-transition: all 0.3s ease; /* Safari and Chrome */
    -o-transition: all 0.3s ease; /* Opera */
    -ms-transition: all 0.3s ease; /* Explorer 10 */
}

.kontakt h3 a:hover:after {
	width: 100%
}

header .bg-mobile {
	display: none;
}

/* Buttons / CTA */

.btn img {
	position: relative;
	top:-2px;
	margin-right: 10px
}

.btn {
	font-size: 1.35rem;
	font-family: "VR Bold",sans-serif;
	text-transform: uppercase;
	color: white !important;
	background-color: #F74D00;
	border-radius: 0;
	outline: none;
	cursor: pointer !important;
	border:0;
	padding: 32px 40px 30px 40px;
	line-height: 1;
	letter-spacing: 0.5px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease; /* Firefox 4 */
    -webkit-transition: all 0.3s ease; /* Safari and Chrome */
    -o-transition: all 0.3s ease; /* Opera */
    -ms-transition: all 0.3s ease; /* Explorer 10 */
	-webkit-box-shadow: 0px 0px 20px -5px rgba(0,0,0,0); 
	box-shadow: 0px 0px 20px -5px rgba(0,0,0,0);
}

.btn:hover {
	background-color: #042155;
	-webkit-box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.1); 
	box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.1);
}

footer .btn-sec img {}

footer .btn-sec {
	border: 2px solid #fff;
	color:#fff !important;
	max-height: 52px;
	width: auto !important;
	padding: 0.75rem 2rem 1rem 1.5rem !important;
	margin: auto !important;
}

footer .btn-sec:hover {
	background-color: transparent !important;
}

.btn-sec {
	background-color: transparent !important;
	border: 2px solid #3563B1;
	color:#3563B1 !important;
	border-radius: 2rem;
	font-size: 1rem !important;
	text-transform: none;
	width: 100% !important;
	padding: 1rem;
	margin-top: 1rem;
}

.btn-sec:hover {
	background-color: #F4F7F9 !important;
}

/* Header */

header {
	background: linear-gradient(to left, #ffffff 50%, #F4F7F9 50%);;
	background-size: 100%;
	background-position: bottom right;
	background-repeat: no-repeat;
}


/* Large devices (desktops, less than 1400px) */
@media (max-width: 1399.98px) {
	.anwendung-right {
		padding: 0 2rem;
	}

	.images-price .phone {
		width: 300px;
		bottom: -33% !important;
	}

	.images-price .phone-container,
	.images-price {
		height: 550px !important;
	}

	.anwendung-left #price-overview {
		width: 220px !important;
		top: 30% !important;
	}

	.anwendung-left #price-overview h1 {
		margin-bottom: 0rem !important;
		margin-top: 2.25rem !important;
		font-size: 3rem;
	}

	.images-price img.persoenlichpur {
		right: -2%;
		max-width: 150px;
	}

	.images-price img.regionalpur {
		right: -2%;
	}

	.images-price img.sicherheitPur {
		left: 5%;
	}

	.images-price img.digitalpur {
		left: -5%;
	}
}


/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) { 

	.navbar.scrolled img {
	    max-width: 225px;
	}

	h1 {
		font-size: 2.5rem;
	}

	h3 {
		font-size: 1.25rem;
	}

	.anwendung-right .btn.btn-primary {
		padding-right: 4rem;
		line-height: 1.5;
	}

	.anwendung-right .btn.btn-primary img {
		top: 0;
		bottom: 0;
		margin-top: auto;
		margin-bottom: auto;
	}

	.anwendung-left #price-overview {
		top: 20% !important;
	}

    .images-price img.sicherheitPur {
        left: -5%;
        top: -5%;
    }

	.images-price img.persoenlichpur {
		right: -2%;
		max-width: 150px;
	}

	.images-price img.regionalpur {
		right: -2%;
	}

	.images-price img.digitalpur {
		left: -10%;
		max-width: 180px;
	}

	.images-price img.phone {
		left: -60px;
	}

	.anwendung-left #price-overview {
		left: -60px;
	}

	.images-price .phone-container, .images-price {
		height: 500px !important;
	}
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) { 

	.images-price .phone-container, .images-price {
		height: 400px !important;
	}

	header {
	    position: relative;
	}

	.anwendung-right {
		position: relative;
		z-index: 2;
		padding: 1rem 0.5rem;
	}

	header .bg-mobile {
	    position: absolute;
	    display: inline-block;
	    bottom: 0;
	    top:0;
	    height: 100%;
	    background-color: white;
	    z-index: -1;
	    width: 100vw; /* Ensures full width */
	    
	    /* Centering inside a smaller container */
	    left: 50%;
	    transform: translateX(-50%);
	}

	footer .padding-col {
		padding-top: 0;
	}

	.grundmodell h3.price {
		top: 3rem;
		right: 3rem;
	}

	header {
		background: #F2F9FF !important;
	}

	header .images-price {
		position: relative;
	}

	.anwendung-left #price-overview {
		left: 0;
		top: 13% !important;
	}

    .images-price img.sicherheitPur {
        left: 15%;
        top: 0%;
    }

	.images-price img.persoenlichpur {
		right: -2%;
		max-width: 150px;
	}

	.images-price img.regionalpur {
		right: 0%;
		max-width: 200px;
	}

	.images-price img.digitalpur {
		left: 5%;
		max-width: 180px;
	}

	.images-price img.phone {
		left: 0;
		bottom: -55% !important;
	}

	#kontakt img.support {
		width: 100%;
	}

	.anwendung-left #price-overview h1 {
		margin-bottom: 0rem !important;
	}

	.navbar.scrolled .navbar-collapse {
		-webkit-box-shadow: none; 
		box-shadow: none;
		margin-top: 0
	}

	.accordion .accordion-item h2 button {
	    padding: 1rem 1rem 1rem 1rem;
	}

	.accordion .accordion-item>div .accordion-body {
	    padding: 0rem 1rem 1rem 1rem;
	}

	.navbar-collapse {
		background-color: white;
		-webkit-box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.1); 
		box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.1);
		margin-top: 2rem
	}

	.navbar-collapse .nav-item {
		padding: 1.5rem 0
	}

	.navbar ul li a:after {
		bottom: -1.5rem;
		width: 100% !important
	}

	.navbar ul li {
		border-bottom: 1px solid #eee
	}

	.navbar.scrolled .navbar-toggler {
		position: relative;
		top:-13px;
	}

	/*
	 * Just a quick hamburger
	 */
	.navbar-toggler {
		border:0 !important;
		outline: none !important;
		box-shadow: none !important
	}

	.navbar-toggler:hover span {
		background-color: #F74D00
	}

	.navbar-toggler span
	{
	  display: block;
	  width: 30px;
	  height: 2px;
	  margin-bottom: 3px;
	  position: relative;
	  
	  background: #042155;
	  border-radius: 3px;
	  
	  z-index: 1;
	  
	  transform-origin: 4px 0px;
	  
	  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
	              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
	              opacity 0.55s ease;
	}

	.navbar-toggler span:first-child
	{
	  transform-origin: 0% 0%;
	}

	.navbar-toggler span:nth-child(3)
	{
	  top: -2px;
	}

	.navbar-toggler span:nth-child(2)
	{
	  transform-origin: 0% 100%;
	  bottom: -11px;
	}

	/* 
	 * Transform all the slices of hamburger
	 * into a crossmark.
	 */
	.navbar-toggler[aria-expanded="true"] span
	{
	  opacity: 1;
	  transform: rotate(45deg) translate(-2px, -3px);
	}

	.navbar-toggler[aria-expanded="true"] span:nth-child(1)
	{
		position: relative !important;
	}
	
	/*
	 * But let's hide the middle one.
	 */
	.navbar-toggler[aria-expanded="true"] span:nth-child(3)
	{
	  opacity: 0;
	  transform: rotate(0deg) scale(0.2, 0.2);
	}

	/*
	 * Ohyeah and the last one should go the other direction
	 */
	.navbar-toggler[aria-expanded="true"] span:nth-child(2)
	{
	  transform: rotate(-45deg) translate(0, 1px);
	  bottom: -11px
	}

	h1 {
	    font-size: 2rem;
	}

	header img.illu {
	    right: -8rem;
	    top: 0.75rem;
	    max-width: 450px;
	}
	
	header img.trianlge {
	    min-width: 0;
	    max-width: 430px;
	    right: -4rem;
	    top: 4.25rem;
	}

	.row.logos>div {
		position: relative;
	}

	.row.logos img {
		max-width: 75% !important;
		height: auto;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		margin:auto !important;
	}

	.row.steps img {
		max-width: 100%;
		height: auto;
	}

	.row.steps, .komplex {
		padding: 3.125rem
	}

	.kontakt {
	    padding: 2rem 1.5rem !important;
	}

	.kontakt .seperator-left {
	    padding: 3.125rem 0 3.125rem 3.125rem;
	}

	.quotes .carousel-item .col-lg-3 {
		padding-left: 50px
	}

	.quotes .carousel-item .col-lg-3 img {
		max-width: 100%
	}

	.quotes .carousel-control-prev {
		left: -30px
	}

	.quotes .carousel-control-next {
		right: -30px
	}

}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {

.anwendung-left #price-overview h3.headline {
	font-size: 1rem;
}

	.images-price img.sicherheitPur {
		left: 0;
        top: -5%;
	}

    .images-price img.regionalpur {
        right: -5%;
        max-width: 180px;
    }

    .images-price img.digitalpur {
	    left: -5%;
    }

	#kontakt img.support {
		width: 30%;
		left: 0;
		right: 0;
		margin: auto;
		position: relative;
		display: block;
		margin-bottom: 2rem;
	}

	aside {
		top:25vh;
	} 

	header {
	    padding: 8rem 0 12.25rem 0;
	}

	header img.illu {
	    top: 5.5rem;
	}

	#vorteile {
		padding-top: 10rem
	}

	#vorteile .col-md-4:first-child {
		padding-top: 0
	}

	#vorteile .col-md-4 {
		padding-top: 3rem
	}

	.ssl .row div:first-child,
	.row.features div:first-child {
		margin-top: 0rem;
	}

	.ssl .row div,
	.row.features div {
		margin-top: 3rem;
	}

	.row.logos>div img {
		max-width: 65%;
		margin: auto !important;
	}

	.row.logos>div {
		height: 100px
	}

	.komplex .last {
		bottom: 0
	}

	.komplex img {
		margin-bottom: 2rem
	}

	.kontakt .seperator-left {
		padding-left: 15px !important;
		border-left: 0;
		padding-bottom: 1rem
	}

	.accordion .accordion-body.w-75 {
		width: 100% !important
	}

	.cta {
	    background-image: url(../img/cta-mobile.svg);
	    background-size: cover;
	    padding: 25rem 6.25rem 6.25rem 6.25rem;
	}

	.quotes .content {
	    padding: 4rem 4rem 3rem 3rem;
	}

	.quotes .carousel-item .col-lg-3 {
		padding-left: 15px
	}

	.quotes .carousel-item .col-lg-3 img {
		padding-top: 0 !important;
	    margin-top: -3.125rem !important;
	    z-index: 99;
	    position: relative;
	    left: 0;
	}

 }

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	aside {
		display: none;
	}

	.row.steps a.btn,
	.kontakt .btn.btn-primary {
		width: calc(100% - 30px);
		max-width: none;
		padding: 32px 20px 30px 20px !important
	} 

	.anwendung-right .btn.btn-primary {
		padding: 0 !important;
	}

	.anwendung-right .card.card-body img.sicherheit, .anwendung-right .card.card-body img.region, .anwendung-right .card.card-body img.service, .anwendung-right .card.card-body img.wegbegleiter {
		max-width: 48px;
		right: 1rem;
		bottom: 1rem;
	}

	.modal-content {
		padding: 2rem;
	}

	.modal-dialog {
		max-width: 100%;
	}

	.modal-content div.normal.bg-light-blue {
	    width: calc(100% + 4rem);
	    padding: 2rem 4rem 5rem 4rem;
	    left: -2rem;
	}

	.anwendung-right .card.card-body.infotext {
		padding: 2rem;
	}

	header .anwendung-right #submit div {
		padding: 1rem 6rem 1rem 1.5rem !important;
	}

	.images-price .phone-container, .images-price {
		height: 340px !important;
	}

    .images-price img.digitalpur {
        left: 0%;
        width: 100px;
    }

    .images-price img.sicherheitPur {
        left: 0;
        top: 0%;
        width: 80px;
    }

    .images-price img.regionalpur {
        right: 0%;
        max-width: 110px;
    }

    .images-price img.persoenlichpur {
        right: 0%;
        max-width: 80px;
    }

    .images-price img.phone {
        left: 0;
        bottom: -47% !important;
        width: 240px;
    }

	.grundmodell h3.price {
		right: 1.5rem;
		top: 1.5rem;
	}

	.footer-links {
		padding-left: 0 !important;
	}

	header .anwendung-right button.btn h3, header .anwendung-right button.btn {
		font-size: 1rem !important;
	}

	header img.mitglied {
		max-width: 100%;
	}

	header .anwendung-right button.btn h3 {
		top: 0 !important;
	}

	.anwendung-right .add {
		margin-top: -2rem !important;
		margin-bottom: 1rem;
		width: 20px;
	}

	.modal-content {
		width: 100%;
		max-width: 100%;
	}

	a.navbar-brand {
		max-width: 75% !important
	}

	.accordion .accordion-item h2 button {
		padding: 2rem;
		font-size: 1.125rem;
	}

	.accordion .accordion-item>div .accordion-body {
		padding: 0 2rem 2rem 2rem
	}

	.accordion .accordion-item h2 button.accordion-button.collapsed {
		padding-bottom: 2rem;
	}

	.quotescontainer h2.blue {
	    max-width: 90%;
	    margin: auto;
	}

	.quotes .content p {
		font-size: 1rem;
		line-height: 1.5rem
	}

	.quotes .content .border {
	    top: -15px;
	    left: 15px;
	}

	.quotes .content {
	    padding: 2rem 2rem 2rem 2rem;
	}

	.kontakt {
	    padding: 2rem 0;
	}

	.kontakt small.white {
		max-width: 75% !important;
		display: inline-block;
	}	

	.cta {
	    background-image: url(../img/cta-mobile.svg);
	    background-size: cover;
	    padding: 25rem 2rem 2rem 2rem;
	    background-position: center;
	}

	hr {
		margin: 2.5rem 0 3.5rem 0
	}

	.row.logos {
	    padding: 2.25rem 0;
	}

	.row.logos img {
		max-width: 50% !important
	}

	.row.logos>div {
		height: 85px
	}

	section, footer .bg-blue {
	    padding: 3.25rem 0;
	}

	h2 {
	    font-size: 1.325rem;
	    line-height: 1.5rem;
	}

	header h1 {
		z-index: 9 !important;
		position: relative;
	}

	aside div.panel-content {
		width: 300px;
	}

	aside .open div.panel-content {
		left: -300px;
	}

	aside div.panel-content a {
		font-size: 1rem !important
	}

	aside {
		width: 44px;
		top:55vh;
	}

	aside div {
		height: 44px;
		width: 44px
	}

	aside div img,
	aside div svg {
		max-width: 50%
	}

	.cta .btn {
		width: 100% !important
	}

	.cta {
		padding: 25rem 15px 2rem 15px
	}

	section.pt-5 {
		padding-bottom: 0 !important
	}

	.kontakt .seperator-left {
		padding-bottom: 2rem !important;
		padding-left: 0 !important
	}

	footer .scrolltop {
		top: -5rem
	}

	.kontakt > div {
		text-align: left !important
	}

	.anwendung-left #price-overview p.gesamt {
	    margin-bottom: 3rem;
	}

	.anwendung-left #price-overview {
	    top: 15% !important;
	    padding: 0 1rem;
	}

	.anwendung-left #price-overview h1 {
	    margin-bottom: 0.5rem !important;
	    margin-top: 2rem !important;
	    font-size: 2rem;
	}

    .images-price img.sicherheitPur {
        left: 5%;
        top: 2%;
        width: 80px;
    }

 }

/* Optional Very Extra small devices*/
@media (max-width: 464.98px) { 


 }
