@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-style: normal;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a,
a:active,
a:hover,
a:visited {
  color: #038129;
  font-weight: 666;
  text-decoration: none;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  color: #444;
  background-color: #fff;
  font-family: "Montserrat";
  overflow: scroll;
}
body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
}

.spacer-header {
  display: flex;
  width: 10px;
  height: 10px;
}

.spacer-body {
  flex: 1;
}

#content_hide {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100dvh;
  background-color: white;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.4s ease;
}
#content_hide.hide {
  opacity: 0;
}
#content_hide p {
  font-family: "Montserrat";
  color: #364540;
  font-size: 1.1em;
  font-weight: 444;
  line-height: 1.8;
}
#content_hide img {
  width: 60px;
  height: auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  box-shadow: 0 0 4px 2px rgba(10, 10, 10, 0.27), 0 0 8px 2px rgba(20, 20, 20, 0.4);
}
header .logo {
  padding-left: 3vmin;
}
header .logo img {
  width: 9.42em;
  max-width: 300px;
  height: auto;
}
header .hamburger {
  display: flex;
  margin: 25px 20px;
}
header .hamburger .menu-btn {
  width: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header .hamburger .menu-btn .menu-line {
  display: block;
  position: relative;
  width: 100%;
  height: 3px;
  background-color: #00d23e;
  transition: width 0.3s linear;
  transform: translateZ(0);
}
header .hamburger .menu-btn .menu-line:nth-child(2), header .hamburger .menu-btn .menu-line:nth-child(3) {
  margin-top: 5px;
}
header .hamburger .menu-btn .menu-line:nth-child(1).active, header .hamburger .menu-btn .menu-line:nth-child(2).active, header .hamburger .menu-btn .menu-line:nth-child(3).active {
  width: 60%;
  background-color: #00d23e;
}
header .nav-desktop {
  display: none;
  margin-right: 50px;
}
header .nav-desktop ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
}
header .nav-desktop ul li a {
  color: #364540;
  display: flex;
  font-size: calc(0.88em + 0.2vmax);
  padding: 30px 20px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: none;
  background-color: white;
  transition: background-color 0.5s ease-in-out;
}
header .nav-desktop ul li a:hover {
  background-color: #00d23e;
}

.nav-mobile {
  display: flex;
  position: fixed;
  top: 0px;
  left: -101%;
  height: 100vh;
  width: 100%;
  padding: 15px 0 100px 0;
  background-color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: left 0.4s ease;
}
.nav-mobile ul {
  width: 100%;
  padding: 0;
  list-style: none;
}
.nav-mobile ul li {
  padding: 5px 0;
}
.nav-mobile ul li a {
  display: flex;
  padding: 10px 0 10px 25px;
  font-size: 0.98em;
  font-weight: 422;
  font-style: normal;
  color: #364540;
}
.nav-mobile.active {
  left: 0;
}
.nav-mobile .comfort-zone {
  display: flex;
  width: 100%;
  height: 150px;
}

@media screen and (min-width: 1200px) {
  .nav-mobile {
    display: none;
  }
  header .hamburger {
    display: none;
  }
  header .nav-desktop {
    display: block;
  }
}
main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

article {
  display: flex;
  flex-direction: column;
  align-items: center;
}

article .banner {
  margin-bottom: 25px;
}
article .banner #banner {
  width: 100%;
  height: auto;
}
article section {
  width: 92%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  text-align: center;
}
article section h1, article section h2 {
  margin-bottom: 5px;
  font-size: 1.4em;
  line-height: 1.5;
}
article section p {
  font-size: 1em;
  line-height: 1.84;
}
article section .icon {
  width: calc(8em + 8vmax);
  max-width: 400px;
  height: auto;
  margin-bottom: 5px;
}
article section .icon-number {
  width: calc(5em + 6vmax);
  max-width: 200px;
  height: auto;
  margin: 0 0 15px 0;
}
article section ul {
  padding: 0 25px;
}
article section ul li {
  font-size: 1em;
  text-align: left;
  line-height: 2;
  padding-bottom: 10px;
}

@media screen and (min-width: 1200px) {
  article .banner {
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    margin: 25px 0;
  }
  article .banner #banner {
    width: 96%;
    height: auto;
    max-width: 1200px;
    border-radius: 18px;
    overflow: hidden;
  }
  article section {
    margin-bottom: 75px;
    flex-direction: row;
    justify-content: center;
  }
  article section .icon {
    margin-right: 50px;
  }
  article section h1, article section h2 {
    font-size: 1.8em;
  }
  article section .wef {
    padding-left: 25px;
    text-align: left;
  }
  article section p {
    font-size: 1.23em;
    text-align: justify;
  }
  article section ul li {
    font-size: 1.23em;
  }
  article section .icon-number {
    margin: 0 50px 0 0;
  }
  article .wie-es-funktioniert {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
}
main .kontakt {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .kontakt .kontakt-1 {
  width: 92%;
  max-width: 800px;
}
main .kontakt .kontakt-1 h1 {
  padding: 25px 0 5px 0;
}
main .kontakt .kontakt-1 p {
  padding-bottom: 15px;
  font-size: calc(0.88em + 0.2vmax);
  line-height: 1.84;
  text-align: justify;
}
main .kontakt .kontakt-1 div {
  padding: 10px 0;
}
main .kontakt .kontakt-1 label {
  display: block;
  padding: 0 0 4px 2px;
  font-size: calc(0.88em + 0.2vmax);
  font-weight: 500;
}
main .kontakt .kontakt-1 input,
main .kontakt .kontakt-1 select {
  padding: 10px;
  color: #444;
  font-size: calc(0.88em + 0.2vmax);
  font-family: "Montserrat", sans-serif;
  font-weight: 468;
  border: 1px solid #364540;
  background-color: white;
  border-radius: 4px;
}
main .kontakt .kontakt-1 input:-webkit-autofill,
main .kontakt .kontakt-1 select:-webkit-autofill {
  box-shadow: 0 0 0px 1000px white inset !important;
  -webkit-text-fill-color: #444 !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
main .kontakt .kontakt-1 input {
  width: 100%;
}
main .kontakt .kontakt-1 select {
  width: 50%;
}
main .kontakt .kontakt-1 #time {
  width: 50%;
}
main .kontakt .kontakt-1 .asap-div {
  display: flex;
}
main .kontakt .kontakt-1 .asap-div #asap {
  margin-top: -1px;
  padding: 10px;
  margin-left: 10px;
  width: inherit;
}
main .kontakt .kontakt-1 button {
  color: #777;
  padding: 20px 0;
  font-size: 1.56em;
  width: 100%;
  border: none;
  background-color: #ece5e5;
  border: 1px solid #364540;
  border-radius: 4px;
  cursor: default;
}
main .kontakt .kontakt-1 button.active {
  color: #364540;
  background-color: #00d23e;
  border: 1px solid #364540;
}
main .kontakt .kontakt-1 button.active:hover {
  color: white;
  border: 1px solid #00d23e;
  box-shadow: 0 0 12px #364540;
  cursor: pointer;
}
main .kontakt .kontakt-1 #captchaImage, main .kontakt .kontakt-1 #captchaInput, main .kontakt .kontakt-1 #reloadCaptchaBtn {
  width: 50%;
  padding: 5px;
}
main .kontakt .kontakt-1 #captchaImage {
  margin: 10px 0;
}
main .kontakt .kontakt-1 #captchaInput {
  padding: 10px;
  margin-bottom: 10px;
  font-size: calc(0.88em + 0.2vmax);
  font-weight: 500;
  text-align: center;
}
main .kontakt .kontakt-1 #reloadCaptchaBtn {
  font-size: calc(0.88em + 0.2vmax);
  margin-bottom: 20px;
  color: white;
  background-color: #364540;
}
main .kontakt .kontakt-1 #reloadCaptchaBtn:hover {
  background-color: #888;
  box-shadow: none;
}
main .kontakt .kontakt-1 #reloadCaptchaBtn:active {
  background-color: #ccc;
  box-shadow: none;
}
main .kontakt .kontakt-1 .privacy-div {
  display: flex;
  flex-direction: row;
  align-content: center;
  font-size: 0.9em;
  text-align: left;
}
main .kontakt .kontakt-1 .privacy-div #privacy {
  margin: 0 20px 0 20px;
  width: inherit;
  height: inherit;
}

main .kontakt-2 {
  width: 92%;
  max-width: 700px;
}
main .kontakt-2 h1 {
  padding: 25px 0 25px 0;
}
main .kontakt-2 p {
  padding-bottom: 15px;
  font-size: calc(0.88em + 0.2vmax);
  line-height: 1.84;
  text-align: left;
}
main .kontakt-2 a {
  font-weight: 600;
  color: #364540;
}

main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .container .haeufig-gestellte-fragen {
  display: flex;
  flex-direction: column;
  width: 92%;
  max-width: 1200px;
  text-align: center;
}
main .container .haeufig-gestellte-fragen h1 {
  padding: 25px 0 15px 0;
}
main .container .haeufig-gestellte-fragen p {
  font-size: calc(0.88em + 0.2vmax);
  font-weight: 444;
  text-align: justify;
  padding-bottom: 25px;
  line-height: 1.84;
}
main .container .haeufig-gestellte-fragen p a {
  color: inherit;
  font-weight: 500;
}
main .container .haeufig-gestellte-fragen .faq {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  font-size: calc(0.88em + 0.2vmax);
}
main .container .haeufig-gestellte-fragen .faq a {
  font-weight: 500;
  color: #00d23e;
}
main .container .haeufig-gestellte-fragen .faq .faq-item {
  width: 100%;
  font-weight: 500;
  padding-bottom: 20px;
}
main .container .haeufig-gestellte-fragen .faq .faq-answer {
  display: none;
  font-weight: 400;
  line-height: 1.84;
  padding: 10px 10px 10px 15px;
}
main .container .haeufig-gestellte-fragen .faq .faq-question {
  line-height: 1.84;
  cursor: pointer;
  padding: 15px 10px 15px 15px;
  color: #364540;
  border-radius: 8px 8px 8px 8px;
  background-color: #00d23e;
}
main .container .haeufig-gestellte-fragen .faq .faq-item.active .faq-answer {
  display: block;
  color: #00d23e;
  border-radius: 0 0 8px 8px;
  background-color: #364540;
}
main .container .haeufig-gestellte-fragen .faq .faq-item.active .faq-question {
  border-radius: 8px 8px 0 0;
}

main .footer-data {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .agb, main .datenschutz, main .cookies, main .impressum, main .credits {
  display: flex;
  flex-direction: column;
  width: 92%;
  max-width: 1200px;
}
main .agb h1, main .datenschutz h1, main .cookies h1, main .impressum h1, main .credits h1 {
  padding: 25px 0 5px 0;
}
main .agb h2, main .datenschutz h2, main .cookies h2, main .impressum h2, main .credits h2 {
  padding: 10px 0;
}
main .agb p, main .datenschutz p, main .cookies p, main .impressum p, main .credits p {
  font-size: calc(0.88em + 0.2vmax);
  line-height: 1.84;
}
main .agb .credits-content, main .datenschutz .credits-content, main .cookies .credits-content, main .impressum .credits-content, main .credits .credits-content {
  margin-bottom: 10px;
}
main .agb .credits-content h2, main .datenschutz .credits-content h2, main .cookies .credits-content h2, main .impressum .credits-content h2, main .credits .credits-content h2 {
  font-size: 0.96em;
  padding: 5px 0 0 0;
}
main .agb .credit, main .datenschutz .credit, main .cookies .credit, main .impressum .credit, main .credits .credit {
  font-size: 0.9em;
}

footer {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  padding: 25px 0 60px 0;
  font-weight: 500;
  background-color: #00d23e;
  border-top: 1px solid #364540;
}
footer .footer-content {
  display: flex;
}
footer .footer-content a {
  width: 100%;
  display: flex;
  margin: 5px 0;
  font-size: calc(0.88em + 0.2vmax);
  color: #364540;
  font-weight: 500;
  padding: 1vmin 0 1vmin calc(3vmin + 2vmax);
  text-decoration: none;
  border-bottom: none;
  font-style: normal;
}

h1, h2 {
  color: #00d23e;
}/*# sourceMappingURL=css.css.map */