@font-face {
  font-family: 'robotolight';
  src: url('/Fonts/Roboto/roboto-light-webfont.eot');
  src: url('/Fonts/Roboto/roboto-light-webfont.eot?#iefix') format('embedded-opentype'),
       url('/Fonts/Roboto/roboto-light-webfont.woff2') format('woff2'),
       url('/Fonts/Roboto/roboto-light-webfont.woff') format('woff'),
       url('/Fonts/Roboto/roboto-light-webfont.ttf') format('truetype'),
       url('/Fonts/Roboto/roboto-light-webfont.svg#robotolight') format('svg');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'babelsansregular';
  src: url('/Fonts/Babel-Sans/babelsans-webfont.eot');
  src: url('/Fonts/Babel-Sans/babelsans-webfont.eot?#iefix') format('embedded-opentype'),
       url('/Fonts/Babel-Sans/babelsans-webfont.woff2') format('woff2'),
       url('/Fonts/Babel-Sans/babelsans-webfont.woff') format('woff'),
       url('/Fonts/Babel-Sans/babelsans-webfont.ttf') format('truetype'),
       url('/Fonts/Babel-Sans/babelsans-webfont.svg#babelsansregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'consola_monobook';
  src: url('/Fonts/Consola-Mono/consolamono-book-webfont.eot');
  src: url('/Fonts/Consola-Mono/consolamono-book-webfont.eot?#iefix') format('embedded-opentype'),
       url('/Fonts/Consola-Mono/consolamono-book-webfont.woff2') format('woff2'),
       url('/Fonts/Consola-Mono/consolamono-book-webfont.woff') format('woff'),
       url('/Fonts/Consola-Mono/consolamono-book-webfont.ttf') format('truetype'),
       url('/Fonts/Consola-Mono/consolamono-book-webfont.svg#consola_monobook') format('svg');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'montserratlight';
  src: url('/Fonts/Gontserrat/gontserrat-light-webfont.eot');
  src: url('/Fonts/Gontserrat/gontserrat-light-webfont.eot?#iefix') format('embedded-opentype'),
       url('/Fonts/Gontserrat/gontserrat-light-webfont.woff2') format('woff2'),
       url('/Fonts/Gontserrat/gontserrat-light-webfont.woff') format('woff'),
       url('/Fonts/Gontserrat/gontserrat-light-webfont.ttf') format('truetype'),
       url('/Fonts/Gontserrat/gontserrat-light-webfont.svg#montserratlight') format('svg');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'liberation_sansregular';
  src: url('/Fonts/Liberation-Sans/liberationsans-regular-webfont.eot');
  src: url('/Fonts/Liberation-Sans/liberationsans-regular-webfont.eot?#iefix') format('embedded-opentype'),
       url('/Fonts/Liberation-Sans/liberationsans-regular-webfont.woff2') format('woff2'),
       url('/Fonts/Liberation-Sans/liberationsans-regular-webfont.woff') format('woff'),
       url('/Fonts/Liberation-Sans/liberationsans-regular-webfont.ttf') format('truetype'),
       url('/Fonts/Liberation-Sans/liberationsans-regular-webfont.svg#liberation_sansregular') format('svg');
  font-weight: normal;
  font-style: normal;

}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'liberation_sansregular', sans-serif;
    list-style: none;
    text-decoration: none;
}

header{
    position: fixed;    
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    background: linear-gradient(245.59deg, #4d9559 0%, #38703d 28.53%, #133917 75.52%);
    min-width: 66px;
    
}

.logo{
    font-size: 20px;
    font-weight: 700;
    color: white;
}
.navlist{
    position: relative;
}

.navlist li{
    position: relative;
    float: left;

}

ul li a{
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    font-family: 'liberation_sansregular', sans-serif;
}


ul li a:hover{
    background: #4d9559;
}

ul li ul{
    position: absolute;
    left: 0;
    width: 200px;
    background: #38703d;
    display: none;
}

ul li:hover ul{
   display: block;
}

ul li ul li{
    position: relative;
    width: 100%;
    border: 1px solid rgba(106, 181, 97, 0.2);
}

#menu-icon{
    color: rgb(255, 255, 255);
    font-size: 25px;
    z-index: 10001;
    cursor: pointer;  
    display: none;
}


@media (max-width: 1535px){
    header{
        padding: 5px 5%;
        transition: .2s;
        
    }
}

@media only screen and (min-width: 1350px) and (max-width: 2000px) {
    header {
        padding: 5px 5%;
    }
  }

@media (max-width: 990px){
    #menu-icon{
        display: block;
        font-size: 20px; 
        margin: 10px;
    }

    header{
      padding: 15px 5%;
      transition: .2s;
  
  }
    .navlist{
        position: absolute;
        width: 100%;
        top: 66px;
        left: 0;
        background: #337a48;
        display: none;
    }

    .navlist.active{
        display: initial;
        top: 65px;
    }

    #menu-icon:checked ~ .navlist{
        display: initial;
    }

    .navlist li{
    width: 100%;
    }

    .navlist li ul{
        position: relative;
        width: 100%;
        left: 0;
    }

    .navlist li:hover ul li{
        background: #4d9559;
    }

    .bx-bx-menu{
        position: relative;
        width: 400px;
        height: 50px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }
} 

h1{
    display: flex;
    align-items: center;
    margin: 150px 18% 10px;
    text-align: center;
    font-family: 'liberation_sansregular', sans-serif;
}

h2{
    display: flex;
    align-items: center;
    margin: 20px 18% 15px;
    text-align: center;
    font-family: 'liberation_sansregular', sans-serif;
}

h3{
    display: flex;
    align-items: center;
    margin: 20px 18% 15px;
    text-align: center;
    font-family: 'liberation_sansregular', sans-serif;
}

h4{
    display: flex;
    align-items: center;
    margin: 15px 18% 15px;
    text-align: center;
    font-family: 'liberation_sansregular', sans-serif;
}

p{
    margin-bottom: 20px;
    font-size: 17px;
    align-items: center;
    margin: 20px 18% 10px;
    text-align: justify;
    line-height: 150%;
    font-family: 'liberation_sansregular', sans-serif;
}

.list-point li{
    margin-bottom: 20px;
    font-size: 17px;
    align-items: center;
    margin: 1px 18% 10px;
    text-align: justify;
    line-height: 150%;
    
}

.list-point li::before {
    content: "• "; /* Fügt das gewünschte Symbol vor jedem Listenelement hinzu */
  }

@media (max-width: 490px){
   
    p{
        width: 80%;
        height: auto;
        margin: 5px 10px;
        font-size: 1.2rem;
        line-height: 1.5;
        letter-spacing: 0.5px;
        word-spacing: 1px;
        padding: 10px 1px 10px;
        text-align: left;
        word-wrap: break-word;
       }

    h1{
        width: 90%;
        height: auto;
        margin: 100px 10px 10px 10px;
        text-align: left;
    }

    h2{
        width: 90%;
        height: auto;
        margin: 1px 5px 1px 5px;
        text-align: left;
    }

    h3{
        width: 90%;
        height: auto;
        margin: 10px 5px 1px 5px;
        text-align: left;
    }

    h4{
        font-size: 1.3rem;
        width: 80%;
        height: auto;
        margin: 15px 5px 10px 5px;
        padding: 10px 1px 1px 10px;
        text-align: left;
    }

    .list-point li{
        font-size: 1.2rem;
        text-align: left;
        word-wrap: break-word;
        text-align: left;
        margin: 5px 10px 10px 5px;
        line-height: 1.5;
        letter-spacing: 0.5px;
        word-spacing: 1px;
        
    }

 }


  
/*footer*/

.row{
    display: flex;
    flex-wrap: wrap;
  }
  
  .footer{
    background-color: #292929;
    padding: 70px 0;
  }
  
  .container{
    max-width: 1170px;
    margin: auto;
  }
  
  .footer-col{
    width: 25%;
    padding: 0 15px;
  }
  
  .footer-col h4{
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 35px 0;
    position: relative;
    font-family: 'liberation_sansregular', sans-serif;
  }
  
  .footer-col h4::before{
    content:'';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #ffffff ;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
  }
  
  .footer-col ul li:not(:last-child){
    margin-bottom: 10px;
  }
  
  .footer-col ul li a{
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    padding: 0;
    transition: all 0.3s ease;
    font-family: 'liberation_sansregular', sans-serif;
  }
  
  .footer-col ul li a:hover{
    color: #ffffff;
    padding-left: 10px;
    background: none;
  }
  
  .footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
    font-family: 'liberation_sansregular', sans-serif;
  }
  
  .footer-col .social-links a:hover{
     color: #24262b;
     background-color: #ffffff;
  }
  
  
  /*footer responsive*/
  @media(max-width: 767px){
     .footer-col{
       width: 50%;
       margin-bottom: 30px;
  
     }
  }
  
  @media(max-width: 574px){
    .footer-col{
      width: 100%;
    }
  }





/*Fragen und Antworten FAQ*/

.fragen{
    /* min-height: 10vh;*/
     width: 80%;
     margin: 100px auto;
     display: flex;
     flex-direction: column;
     align-items: center;
   }
   
   .titel{
     font-size: 35px;
     margin: 2rem 0rem 0.5rem 0;
   }
   
   .faq{
     max-width: 700px;
     margin-top: 20px;
     padding-bottom: 20px;
     border-bottom: 2px solid #c3c3c3;
     cursor: pointer;
     width: 100%
   }
   
   .friegen{
     display: flex;
     justify-content: space-between;
     align-items: center;
   }
   
   .friegen h3{
     font-size: 23px;
     margin: 0 0 0 0 ;
     text-align: left;
     font-family: 'liberation_sansregular', sans-serif;
   }
   
   .answer{
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.8s ease;
   }
   
   .faq.active .answer{
     max-height: 350px;
   }
   
   .answer p{
     padding-top: 1rem;
     line-height: 1.6;
     font-size: 18px;
     margin: 0 0 0 0;
     text-align: left;
     font-family: 'liberation_sansregular', sans-serif;
   }
   
   .faq.active svg{
     transform: rotate(180deg);
   }
   
   svg{
     transition: transform 0.4s ease-in;
   }



   
/*Scroll-Bar */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
  }
  
  ::-webkit-scrollbar-thumb {
    background: #38703d;
    border-radius: 10px;
  }
  
  .scroll-down {
    position: absolute;
    bottom: 6%;
    right: 9%;
  }
  
  .scroll-down i {
    display: block;
    padding: 12px;
    font-size: 25px;
    color: white;
    background: #4d9559;
    border-radius: 30px;
    transition: all 0.5s ease;
  }
  
  .scroll-down i:hover {
    transform: translateY(-5px);
  }



  /*App für Android und iOS herunterladen */

  .brego{  
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .boxo{
    display: flex;
     align-items: center;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 10px;
  }

  .mingo{
    align-items: center;
    text-align: center;
    font-family: 'liberation_sansregular', sans-serif;
    justify-content: center; /* Horizontal */
    margin: 10px 0 ;
    padding-top: 0px;
    font-size: 30px;
}

.boxo img{
  display: block;
  width: 200px;      /* Bild passt sich der Box an */
  height: auto;     /* Seitenverhältnis bleibt erhalten */
  margin: 0 auto;
  align-items: center;
  justify-content: center; /* Horizontal */
}

.knopf{
  display: block;
  margin:40px auto 20px;
  padding: 10px 20px;
  align-items: center;
  text-align: center;
  width: 180px;
  background-color: #296b34;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  justify-content: center; /* Horizontal */
  font-family: 'liberation_sansregular', sans-serif;
  font-weight: 550;
}

.knopf:hover {
  background-color: #2d813b;
}

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

  .boxo {
    max-width: 100%;
    padding: 10px;
  }

  .brego {
    max-width: 100%;
    margin: 0 auto;
  }

  .mingo {
    font-size: 1.5rem;
    text-align: center;
  }

  iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

 }

   @media (max-width: 600px) {
    .boxo, .brego {
      padding: 0;
    }

    .mingo {
      font-size: 1.2rem;
    }
  }


  @media only screen and (min-width: 700px) and (max-width: 1000px) {
.videox{
  display: block;
  margin: 10px auto 50px auto;
  max-width: 100%;
  width: 70%;
  height: auto;
}

.video-text h2{
  display: block;
  margin: 100px 15% 5px;
}

}

@media only screen and (min-width: 0px) and (max-width: 699px) {
.videox{
  display: block;
  margin: 10px auto 50px auto;
  max-width: 100%;
  width: 96%;
  height: auto;
}

.video-text h2{
  display: block;
  margin: 100px 2% 5px;
}

}