/*@import url("uikit-base.css");
@import url("mmenu.css");
@import url("font-awesome.min.css");*/

/* lexend-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: 'Lexend';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lexend-v26-latin_latin-ext-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/lexend-v26-latin_latin-ext-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* lexend-600 - 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: 'Lexend';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/lexend-v26-latin_latin-ext-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/lexend-v26-latin_latin-ext-600.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}



:root {
  --gruen: #28829A;
  --gruen85: #4895A9;
  --gelb: #F5FD80;
    --rot: #C94A4A;
}
* {
  margin: 0;
  padding: 0;
  outline: none !important;
  /*-webkit-appearance: none;
-moz-appearance: none;*/
}
*, *:before, *:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 17px;
}
body {
  height: 100%;
  font-family: 'Lexend', Helvetica, Arial, SansSerif, "sans-serif";
    background-color: var(--gruen);
    color: #ffffff;
  
}
::-moz-selection {
  background: var(--gelb);
  color: #000000;
}
::selection {
  background: var(--gelb);
  color: #000000;
}
a {
  text-decoration: none;
  color: inherit;
    display: inline-block;
    -webkit-transition: all 0.5s;
transition: all 0.5s;
}
a img {
  border: none;
}
img {
  max-width: 100%;
    width: auto;
  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;
}

/*=================================
            Header
=================================*/
#header {
    background-color: var(--gruen);
}

/*=================================
            Navigation
=================================*/

#navi {
	background-color: var(--gruen85);
    border-radius: 50px;
    position: relative;
    display: inline-block;
}

#navi ul {
	
}

#navi ul li {
	list-style: none;
}

#navi ul li a {
    padding: 1rem 2rem;
    display: inline-block;
    white-space: nowrap;
    
	
}

#navi ul li a:hover {
	
}


#navi .nav-list {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}

#navi .nav-list li {
  position: relative;
}

#navi .nav-list li a {
  display: block;
  padding: 1rem 2rem;
  text-decoration: none;
  position: relative;
  z-index: 2; /* über dem Highlight */
}

/* Das bewegliche Highlight (Button) */
#navi .nav-highlight {
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--gelb);    /* Button-Farbe */
  border-radius: 999px;    /* pillenförmig */
  z-index: 1;
  transition: left 0.25s ease, width 0.25s ease;
  pointer-events: none;    /* nicht klickbar */
}

/* Optional: aktive Schriftfarbe */
/*#navi .nav-list li.active a {
  color: var(--gruen);
}*/

#navi li.is-highlighted a {
    color: var(--gruen);
}

.uk-dropdown, .buttonNavi {
	--uk-position-offset: 10px;
	--uk-position-viewport-offset: 15px;
	--uk-inverse: dark;
	width: auto;
	min-width: 100px; 
	padding: 15px;
	background: var(--gelb);
	color: var(--gruen85);
	box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
	border-radius: 35px;
}

.buttonNavi ul li {
    list-style: none;
}



#navi ul li ul li a, .buttonNavi ul li a  {
	padding: 0.75rem 1rem !important;
    border-radius: 28px;
    position: relative;
    display: block;
}
#navi ul li ul li a:after, .buttonNavi ul li a:after {
    content: '';
    display: block;
    position: absolute;
    opacity: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 100%;
    background-color: var(--gruen);
    border-radius: 50px;
    z-index: -1;
    -webkit-transition: all 0.5s;
transition: all 0.5s;
}


#navi ul li ul li:hover a:after, .buttonNavi ul li:hover a:after {
	opacity: 1;
    right: 0;	
}

#navi ul li ul li:hover a, .buttonNavi ul li:hover a {
    color: var(--gelb) !important;
}

/*=================================
            Formatierung
=================================*/

h1, h2, h3, h4 {
	font-weight: 600;
    /*hyphens: auto;*/
}

h1 {
    font-size: 3.95rem;
	line-height: normal;
}

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

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

h4 {
	
}

h5 {
	
}

p {
	line-height: 1.6;
}

strong, b {
    font-weight: 600;
}

section a, footer a {
    text-decoration: underline;
    text-decoration-color: var(--gelb);
}

section a:hover, footer a:hover {
    background-color: var(--gelb);
    color: var(--gruen);
}


:is(h1, h2, h3, p) + :is(h1, h2, h3, p) {
    margin-top: 1.5rem;
}

.plus::after {
	content: '';
    background-image: url("../bilder/plus.svg");
    background-position: center;
    background-repeat: no-repeat;
	display: inline-block;
	background-color: var(--gelb);
	border-radius: 50px;
	/* padding: 5px; */
	width: 47px;
	height: 47px;
	text-align: center;
	
	position: absolute;
	margin-top: -20px;
} 

hr {
	border: none;
	border-bottom: 1px solid var(--gruen85);
	opacity: 0.3;
}

/*=================================
            Slider
=================================*/

.sliderTrans .uk-slideshow-items > div {
	background-color: var(--gruen);
}

.sliderTrans img {
	max-height: 100%;
}

.kachelTop {
	font-size: 1.2rem;
	z-index: 10;
	position: relative;
	padding: 5px 10px;
}
a .kachelTop:after {
    content: url("../bilder/pf-rechts.svg");
    -webkit-transition: all 0.5s;
transition: all 0.5s;
}

a:hover .kachelTop:after {
    margin-left: 10px;
}

.btPfeil {
    padding: 10px;
}

.btPfeilRechts, .btPfeilLinks {
    width: 42px;
    position: relative;
    overflow: hidden;
    
}

.btPfeilRechts:after {
    content: url(../bilder/pf-rechts.svg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transition: all 0.5s;
transition: all 0.5s;
}

.btPfeilRechts:hover:after {
    transform: translate(-50%,-200%);
}

.btPfeilRechts:before {
    content: url(../bilder/pf-rechts.svg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,200%);
    -webkit-transition: all 0.5s;
transition: all 0.5s;
}

.btPfeilRechts:hover:before {
    transform: translate(-50%,-50%);
}

.btPfeilLinks:after {
    content: url(../bilder/pf-links.svg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transition: all 0.5s;
transition: all 0.5s;
}

.btPfeilLinks:hover:after {
    transform: translate(-50%,-200%);
}

.btPfeilLinks:before {
    content: url(../bilder/pf-links.svg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,200%);
    -webkit-transition: all 0.5s;
transition: all 0.5s;
}

.btPfeilLinks:hover:before {
    transform: translate(-50%,-50%);
}

.btPfeilLinks.uk-invisible, .btPfeilRechts.uk-invisible {
	display: none !important;
}


.itemRef img {
	max-height: calc(100% - 20px);
	max-width: calc(100% - 20px);
	mix-blend-mode: luminosity;
}

/*=================================
            Link Fläche
=================================*/

.textLinkFlaeche {
	/* margin: 60px auto; */
	max-width: 350px;
}

.uk-grid-divider > * {
	padding: 0 !important;
}

.uk-grid-divider > :not(.uk-first-column)::before {
	left: 0 !important;
}

.uk-grid-divider > :not(.uk-first-column)::before {
	border-left: 1px solid var(--gruen);
}

.linkFlaeche:hover {
	background-color: var(--gelb);
}

/*=================================
            Accordion
=================================*/

.uk-accordion-title::before {
	content: none;
}

.uk-accordion-title {
	font-size: 1rem;
	color: #ffffff;
	background-color: var(--gruen85);
	line-height: 21.5px;
	padding: 1rem 2rem;
	border-radius: 28px;
    position: relative;
    min-height: 56px;
}

.uk-accordion-title:hover {
	color: #ffffff;
}

.uk-accordion .gecheckt {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
  border-radius: 28px;
}

.uk-accordion .uk-open .gecheckt {
    display: inline-block;
}

.uk-accordion .check {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
  border-radius: 28px;
}

.uk-accordion .uk-open .check {
    display: none;
}
.uk-accordion-content {

	margin-top: 0;
	padding: 1rem 2rem;

}

.uk-accordion > :nth-child(n+2) {
	margin-top: 30px;
}
/*=================================
            Formular
=================================*/

.form input, .form textarea {
	border: 1px solid var(--gruen85);
	/* background-color: var(--grau); */
	padding: 10px;
	width: 100%;
	font-family: inherit;
	font-size: inherit;
	color: #000000;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 5px;
}

.form textarea {
	min-height: 150px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #959595;
	font-weight: normal;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #959595;
	font-weight: normal;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #959595;
	font-weight: normal;
}

/*.form {
	overflow: hidden;
	margin-bottom: 25px;
}*/

.form label:after {
	content: "\A";
	white-space: pre;
}

.error {
	color: var(--rot) !important;
	display: block;
	font-weight: normal;
    font-size: 0.8em;
}

/*.submit {
	background: var(--rot) !important;
	width: 100%;
	cursor: pointer;
	color: #ffffff !important;
	font-weight: 600;
    text-transform: uppercase;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;

}

.submit:hover {
	background-color: #000000 !important;
}*/

.success {
	background: #ffffff;
    color: var(--dunkelgrau);
	text-align: center;
	padding: 20px 0;
	margin-bottom: 25px;
	
}

.success p {
	margin-bottom: 0;
}


.fiSpecial {
	display: none;
	}


[type="checkbox"] {
  position: relative;
  left: 30px;
    border: none !important;
  top: 0px;
    background-color: transparent !important;
  z-index: 0;
  -webkit-appearance: none;
}
[type="checkbox"] + label {
  display: block;
  cursor: pointer;
  font-family: sans-serif;
  padding-left:55px;
  position: relative;
  margin-top: -20px;
}
[type="checkbox"] + label:before {
  width: 40px;
  height: 20px;
  border-radius: 30px;
  border: 2px solid #ddd;
  background-color: var(--grau);
  content: "";
  margin-right: 15px;
  transition: background-color 0.5s linear;
  z-index: 5;
  position: absolute;
  left: 0px;
}
[type="checkbox"] + label::after {
	width: 20px;
	height: 20px;
	border-radius: 30px;
	background-color: #fff;
	content: "";
	transition: margin 0.1s linear;
	box-shadow: 0px 0px 5px #aaa;
	position: absolute;
	left: 2px;
	top: 0px;
	z-index: 10;
}
[type="checkbox"]:checked + label:before {
  background-color: var(--gelb);
}
[type="checkbox"]:checked + label:after {
  margin: 0 0 0 18px;
}
.form h3 {
    margin-bottom: 15px;
}

/*=================================
            KLASSEN
=================================*/

.mid {
	width: 92%;
	max-width: 1740px;
	margin-left: auto;
	margin-right: auto;
}

.midSchmal {
	width: 92%;
	max-width: 1120px;
	margin-left: auto;
	margin-right: auto;
}
/*.button {
    line-height: 3.65rem; 
    padding: 0 25px;
    border-radius: 50px;
    background-color: var(--gelb);
    color: var(--gruen);
    display: inline-block;
    min-width: 185px;
    text-align: center;
}*/
.button {
	position: relative;
	display: inline-block;
	padding: 1rem 2rem;
	color: var(--gruen);
	background: var(--gelb);
	text-decoration: none;
	overflow: hidden;
	border-radius: 50px;
	font-size: inherit;
	font-weight: normal;
	font-family: inherit;
	border: none;
    cursor: pointer;
}

/* Haupttext */
.button span {
    display: inline-block;
    transition: transform 0.35s ease;
}

/* Hover-Text */
.button::after {
    content: attr(data-text);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 200%); /* Start: weit unterhalb */
    transition: transform 0.35s ease;
    text-align: center;
    width: 100%;
}

/* Hover-Effekt */
.button:hover {
    color: var(--gruen);
}
.button:hover span {
    transform: translateY(-200%); /* fährt nach oben raus */
}

.button:hover::after {
    transform: translate(-50%, -50%); /* kommt von unten rein */
}

.buttonWeiss {
	background-color: #ffffff;
	display: inline-block;
	border-radius: 50px;
	line-height: 55px;
	padding: 0 25px;
}

.bgWeiss {
    background-color: #ffffff;
    color: var(--gruen);
}

.bgWeiss *, .bgGelb * {
    color: var(--gruen);
}

.bgGelb {
    background-color: var(--gelb);
}

.bgGruen {
    background-color: var(--gruen);
}

.bgGruen * {
    color: #ffffff;
}

.rad10 {
    border-radius: 10px;
}

.rad60 {
    border-radius: 60px;
}

.mapsStatisch {
	color: var(--farbe);
	text-decoration: none;
}

.mapsStatisch .overlayMaps {
	opacity: 0;
	transition: opacity 0.5s;
}

.mapsStatisch:hover .overlayMaps {
	opacity: 1;
	transition: opacity 0.5s;
}

/*=================================
            UiKit
=================================*/

.uk-close {
	background-color: var(--gelb);
	border-radius: 30px;
	padding: 10px;
	/*border: var(--gruen) 2px solid;*/
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	position: absolute;
	right: 20px;
	top: 15px;
}

/*.uk-close {
	right: 0;
	transform: translate(0, 0);
}*/

.uk-close:hover {
	background-color: var(--gruen);
	
}
.uk-close:hover * {
    color: var(--gelb);
}

/*=================================
            Responsive
=================================*/

@media (max-width: 1600px) {
#navi .nav-list li a {
	padding: 1rem 1.5rem;
}
}

@media (max-width: 1200px) {
#navi .nav-list li a, .button {
	padding: 1rem 1rem;
}
    h1 {
	font-size: 5.58vw;
}
}

@media (max-width: 960px) {
h1 {
	font-size: 2.25rem;
}
    h2 {
	font-size: 1.5rem;
}
    .uk-grid-divider > * {
	padding-left: 60px !important;
}
}

@media (max-width: 640px) {
    
    .rad60 {
        border-radius: 35px;
    }

}

@media (max-width: 480px) {
    html {
	font-size: 15px;
}

}

/*=================================
            mobile Navi
=================================*/

.btMenu {
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.05em;
	position: relative;
	display: block;
	height: 40px;
	width: 40px;
	text-align: center;
}

.btMenu:after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    display: block;
    position: absolute;
    top: 23px;
    left: 0;
    transform-origin: left;
    -webkit-transition: all 0.5s;
transition: all 0.5s;
}

.btMenu:before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    display: block;
    position: absolute;
    top: 35px;
    left: 0;
    transform-origin: center;
    -webkit-transition: all 0.5s;
transition: all 0.5s;
}

.btMenu.is-active:after {
    transform: rotate(45deg);
    left: 5px;
}

.btMenu.is-active:before {
    transform: rotate(-45deg);
    top: 37px;
}

.uk-offcanvas-bar {
	border-top-left-radius: 40px;
	border-bottom-left-radius: 40px;
}

.navMobil li {
	list-style: none;
}

.navMobil li ul li{
	padding-left: 10px;
}

.navMobil ul li ul {
    margin-bottom: 10px;
}

.navMobil a {
	color: var(--gruen);
    font-weight: bold;
    hyphens: auto;
    hyphenate-limit-chars: 10 5 5;
    display: block;
    line-height: 1;
    padding: 10px 0;
}

.navMobil li li a {
    font-weight: normal;
    padding: 7px 0;
}

.navMobil a:hover {
	color: var(--gruen);
}


