/*@import url("uikit-base.css");
@import url("mmenu.css");
@import url("font-awesome.min.css");*/

/* montserrat-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v25-latin_latin-ext-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/montserrat-v25-latin_latin-ext-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* montserrat-italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/montserrat-v25-latin_latin-ext-italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/montserrat-v25-latin_latin-ext-italic.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* montserrat-500 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/montserrat-v25-latin_latin-ext-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/montserrat-v25-latin_latin-ext-500.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}


:root {
  	--gruen: #7fbe23;
	--tuerkis: #00aec2;
	--blau: #0f3f93;
}



* {
margin: 0;
padding: 0;
	outline: none !important;
/*-webkit-appearance: none;
-moz-appearance: none;*/
}

*, *:before, *:after {
    -moz-box-sizing: border-box;
     box-sizing: border-box;
}

body {
     height: 100%;
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	font-size: 20px;
	color: var(--blau);
	line-height: 1.4;
	
}

a img {
border: none;
}

a {
	text-decoration: none;
	-webkit-transition: all 0.5s;
transition: all 0.5s;
}

img {
max-width: 100%;
	height: auto;
}

table {
/*width: 100%;
table-layout:fixed;*/
}

figure.image {
    display: inline-block;
    border: 1px solid gray;
    margin: 0 2px 0 1px;
    background: #f5f2f0;
}

figure.align-left {
    float: left;
}

figure.align-right {
    float: right;
}

figure.image img {
    margin: 8px 8px 0 8px;
}

figure.image figcaption {
    margin: 6px 8px 6px 8px;
    text-align: center;
}

.noIcon span.uk-icon {
	display: none;
}

section {
	position: relative;
}

/*=================================
            Header
=================================*/

#header {
	padding: 30px 6.5vw;
	background-color: #ffffff;
}

.logoKlein {
	display: none;
}

.uk-active .logoKlein {
	display: block;
}

.logo {
	max-width: 80%;
}

/*=================================
            Navi
=================================*/

#navi li {
	list-style: none;
	
}

#navi li a {
	margin-left: 35px;
	line-height: 50px;
	color: var(--blau);
}

#navi li a:hover {
	color: var(--gruen);
}


/*=================================
            Box Verlauf
=================================*/

.bgBoxVerlauf {
	top: 0;
	left: 0;
	max-height: 513px;
	height: 40.8vw;
	width: 100%;
}


/*=================================
            Parallax
=================================*/

.bildParalax {
	min-height: 40vw;
}

.bildKopf {
	min-height: 26.7vw;
}

/*=================================
            Grid Bilder / Text
=================================*/

.textBoxGrid {
	/*font-size: 35px;*/
	padding: 130px 65px;
}

.bildBox {
	font-size: 0;
}

/*=================================
            Formate
=================================*/

h1, h2, h3 {
	font-weight: normal;
	margin-bottom: 1em;
}

h1, h3, h4 {
	font-size: 35px;
}

h4 {
	margin-bottom: 0;
	font-weight: normal;
}


h2 {
	font-size: 51px;
}

p {
	line-height: 1.8;
	margin-bottom: 1em;
	hyphens: auto;
}

section ul {
	margin-bottom: 2em;
}

section li {
	list-style: "―";
	line-height: 1.6;
	margin-bottom: 1em;
	padding-left: 17px;
	margin-left: 23px;
}

section ul li::marker {
	color: var(--tuerkis);
}

 hr {
	border: none;
	border-bottom: 1px solid var(--tuerkis);
	margin: 40px 0;
}

.verlauf hr {
	border: none;
	border-bottom: 1px solid #fff;
	margin: 40px 0;
}

/*=================================
            Fromular
=================================*/

.form input, .form textarea {
	border: none;
	background-color: transparent;
	width: 100%;
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	font-size: 20px;
	color: #ffffff;
	-webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
}

.form textarea {
	min-height: 100px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(255,255,255,0.75);
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
       color: rgba(255,255,255,0.75);
	
}

::-ms-input-placeholder { /* Microsoft Edge */
       color: rgba(255,255,255,0.75);
	
}

.form {
	overflow: hidden;
	margin-bottom: 25px;
}

.form label:after {
	content: "\A";
	white-space: pre;
}

.error {
	color: #C2353A;
	display: block;
	font-weight: 300;
}

.submit {
	background: #fff !important;
	width: auto !important;
	cursor: pointer;
	color: var(--blau) !important;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	line-height: 50px;
	padding: 0 30px;
	border-radius: 30px;
}

.submit:hover {
	background-color: var(--tuerkis) !important;
	color: #ffffff !important;
}

.success {
	background: var(--gruen);
	text-align: center;
	padding: 30px;
	margin-bottom: 25px;
	border: 1px solid #ffffff;
	border-radius: 10px;
	box-shadow: rgba(0,0,0,0.3) 5px 5px 10px;
	color: #ffffff;
}
.success p {
	margin-bottom: 0;
}


.fiSpecial {
	display: none;
	}

.confirmemail {
    border: 0 !important;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0 !important;
    position: absolute;
    width: 1px !important;
}


input[type="checkbox"].css-checkbox {
    display:none;
}

input[type="checkbox"].css-checkbox + label {
float: none !important;
	width: 100%!important;
	    padding-left: 30px;
    display: block;
	cursor: pointer;
}

input[type="checkbox"].css-checkbox + label span {
    display:inline-block;
    width:21px;
    height:21px;
    margin:-2px 10px 0 -30px;
    vertical-align:middle;
    background:url(../bilder/ckbox.png) left top no-repeat;
    cursor:pointer;
	
}
input[type="checkbox"].css-checkbox:checked + label span {
    background:url(../bilder/ckbox.png) 0 -21px no-repeat;
}

/*=================================
            KLASSEN
=================================*/

.verlauf {
	background: #7fbe23;
background: -moz-linear-gradient(left,  #7fbe23 12%, #00aec2 69%, #0f3f93 100%);
background: -webkit-linear-gradient(left,  #7fbe23 12%,#00aec2 69%,#0f3f93 100%);
background: linear-gradient(to right,  #7fbe23 12%,#00aec2 69%,#0f3f93 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7fbe23', endColorstr='#0f3f93',GradientType=1 );

}

.button {
	border: var(--blau) 1px solid;
	line-height: 50px;
	padding: 0 35px;
	display: inline-block;
	font-size: 17px;
	vertical-align: middle;
	border-radius: 30px;
}

.button:hover {
	color: #ffffff !important;
	background-color: var(--gruen);
}

.buttonBlau {
	border: var(--blau) 1px solid;
	color: #ffffff;
	background-color: var(--blau);
	line-height: 50px;
	padding: 0 35px;
	display: inline-block;
	font-size: 17px;
	vertical-align: middle;
	border-radius: 30px;
}

.buttonBlau:hover {
	color: #ffffff !important;
	background-color: var(--gruen);
	border-color: var(--gruen);
}

.buttonTuerkis {
	border: var(--tuerkis) 1px solid;
	color: #ffffff;
	background-color: var(--tuerkis);
	line-height: 50px;
	padding: 0 35px;
	display: inline-block;
	font-size: 17px;
	vertical-align: middle;
	border-radius: 30px;
	margin-bottom: 10px
}

.buttonTuerkis:hover {
	color: #ffffff !important;
	background-color: var(--gruen);
	border-color: var(--gruen);
}

.mid {
	width: 85%;
	max-width: 1120px;
	margin-left:auto;
	margin-right: auto;
	position: relative;
}

.sqare {
  aspect-ratio: 1 / 1;
}

@supports not (aspect-ratio: 1 / 1) {
  .sqare::before {
    float: left;
    padding-top: 100%;
    content: "";
  }

  .sqare::after {
    display: block;
    content: "";
    clear: both;
  }




}
.grau {
	background-color: #f5f5f5;
}

.weiss {
	background-color: #fff;
}

.round, .round img {
	border-radius: 10px;
}

.breitRechts {
	margin-right: -50px;
}

.breitRechts.grau {
	margin-right: -100px;
}

.breitLinks {
	margin-left: -50px;
}

.breitLinks.grau {
	margin-left: -100px;
}

.versatzTop {
	margin-top: 105px;
}

.breitLinks .textBox {
	margin-left: 90px;
}

.breitLinks.grau .textBox {
	margin-left: 140px;
}

.breitRechts .textBox {
	margin-right: 90px;
}

.breitRechts.grau .textBox {
	margin-right: 140px;
}

.category {
	font-style: italic;
}

.zitat {
	font-size: 35px;
}

.textBox p:last-child {
	margin-bottom: 0 !important;
}


.wrapTextBox {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100vh;
}

/*=================================
            Faq
=================================*/

.uk-accordion-title {
	display: block;
	font-size: 35px;
	line-height: 1.4;
	color: var(--blau);
	overflow: hidden;
}

.uk-accordion-title:before {
	content: none;
}

.uk-accordion-title:hover {
	color: var(--gruen);
	text-decoration: none;
}

.faq {
	border-bottom: var(--blau) 1px solid;
	padding-bottom: 70px;
}

.uk-accordion {
	padding-top: 70px;
	border-top: var(--blau) 1px solid;
}


/*=================================
            UiKit
=================================*/

.uk-light, .uk-section-primary:not(.uk-preserve-color), .uk-section-secondary:not(.uk-preserve-color), .uk-tile-primary:not(.uk-preserve-color), .uk-tile-secondary:not(.uk-preserve-color), .uk-card-primary.uk-card-body, .uk-card-primary > :not([class*="uk-card-media"]), .uk-card-secondary.uk-card-body, .uk-card-secondary > :not([class*="uk-card-media"]), .uk-overlay-primary, .uk-offcanvas-bar {
	color: rgba(255, 255, 255, 1);
}


/*=================================
            Responsive
=================================*/

@media (max-width: 1200px) {
	
	#navi li a {
	margin-left: 25px;
	font-size: 17px;
}
	
	.form input, .form textarea {
	font-size: 17px;
	
}
	
	.faq {
	padding-bottom: 40px;
}
	
	.uk-accordion {
	padding-top: 40px;
}

}

@media (max-width: 960px) {

	body {
	font-size: 17px;
}
	
		h1, h3, h4, .zitat {
	font-size: 26px;
}
	
	.uk-accordion-title {
	font-size: 26px;
	
}
	
	h2 {
	font-size: 35px;
}
	
	.textBoxGrid {
		padding: 50px 30px;
}
}


@media (max-width: 640px) {
	
	.breitRechts {
	margin-right: 0;
}
	
	.breitLinks {
	margin-left: 0;
}
	
	.breitLinks .textBox {
	margin-left: 0;
}
	
	.bgBoxVerlauf {
	height: 85vw;
}
	
	.weiss.versatzTop {
	padding: 0;
}
	
	.versatzTop {
	margin-top: inherit;
}
	
	.breitLinks.grau .textBox {
	margin-left: 0;
}
	
	.breitLinks.grau {
	margin-left: 0;
}
	
	.breitRechts.grau .textBox {
	margin-right: 0;
}

	.breitRechts.grau {
	margin-right: 0;
}
	
	.bildKopf {
	min-height: 40vw;
}
	
	.uk-grid-collapse > div {
	margin-bottom: 30px;
}
	
	.weiss.sqare {
	aspect-ratio: auto;
}
	
	#parallaxBg {
	min-height: 75vw !important;
	max-height: 75vw !important;
	background-attachment: inherit;
		/*margin-bottom: 75vh;*/
		padding: 0;
}
	
	.wrapTextBox .textBox {
	position: relative !important;
	top: 0;
	transform: translate(0,0);
	padding: 30px 0;
}
	
	.wrapTextBox {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	height: auto;
}
	
}


/*=================================
            Mobiles Menü
=================================*/


#page {
	background-color: #ffffff;
	overflow: hidden;
}

.mheader {
display: none;
}

.logoMobil {
	height: 50px;
	margin: 5px;
	display: none;
}

.uk-active .logoMobil {
	display: block;
}

@media (max-width: 960px) {
	
	#header {
		display: none;
	}	

	.mheader {
display: block;
}
	
.mheader,
.mfooter {
	background: #ffffff;
	font-size: 16px;
	font-weight: normal;
	color: #fff;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 60px;
	padding: 0;
	text-align: center;
}
.mheader.fixed {
	position: fixed;
	top: 0;
	left: 0;
}
.mfooter.fixed {
	position: fixed;
	bottom: 0;
	left: 0;
}
.mheader a {
	display: block;
	width: 65px;
	height: 40px;
	padding: 16px;
	position: absolute;
	top: 0;
	right: 0;
}
.mheader a:before,
.mheader a:after {
	content: '';
	display: block;
	background: var(--blau);
	height: 2px;
}
.mheader a span {
	background: var(--blau);
	display: block;
	height: 2px;
	margin: 9px 0;
}
}

.mm-listitem {
	border: none !important;
	border-color: transparent !important;
	list-style: none;
	display: block;
	padding: 0;
	margin: 0;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.mm-listview {
	padding: 0 20px;
}

.mm-listitem__text {
	
	padding-left: 35px;
	padding-right: 35px;
}

.mm-navbar {
	
	color: var(--gruen);
}


:root {
	--mm-line-height: 20px;
	--mm-listitem-size: 44px;
	--mm-navbar-size: 44px;
	--mm-offset-top: 0;
	--mm-offset-right: 0;
	--mm-offset-bottom: 0;
	--mm-offset-left: 0;
	--mm-color-border: rgba(0, 0, 0, 0.1);
	--mm-color-button: rgba(0, 0, 0, 0.3);
	--mm-color-text: var(--blau);
	--mm-color-text-dimmed: rgba(0, 0, 0, 0.3);
	--mm-color-background: #ffffff;
	--mm-color-background-highlight: rgba(0, 0, 0, 0.05);
	--mm-color-background-emphasis: rgba(255, 255, 255, 0.4);
	--mm-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
