@font-face {
    font-family: Roboto;
    src: url(/Roboto-Fonts/Roboto-Light.ttf) format(ttf);
    font-style: normal, italic, oblique;
    font-weight: normal, bold, 900;
  
  }

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto-Light', 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: 30px;
    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;
}


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: 35px;
    z-index: 10001;
    cursor: pointer;  
    display: none;
}

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

@media (max-width: 990px){
    #menu-icon{
        display: block; 
    }
    .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;
}

h2{
    display: flex;
    align-items: center;
    margin: 20px 18% 15px;
    text-align: center;
}

h3{
    display: flex;
    align-items: center;
    margin: 20px 18% 15px;
    text-align: center;
}

h4{
    display: flex;
    align-items: center;
    margin: 15px 18% 15px;
    text-align: center;
}

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

.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*/

footer {
    left: 0;
    bottom: 0;
    width: 100%;
    background: #d3d3d3;
    margin-top: 50px;
  }
  
  footer .end {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
  }
  
  footer .end a {
    color: #000000;
    text-decoration: none;
  }
  
  .end a:link {
    color: #000000; /* Farbe erben (vom Elternelement oder der globalen Stilanweisung) */
    text-decoration: none; /* Unterstreichung entfernen */
  }
  
  footer .end a:hover {
    color: #000000; /* Farbe erben */
    text-decoration: underline; /* Unterstreichung entfernen */
  }
  
  footer .end a:visited {
    color: #000000; /* Farbe erben */
    text-decoration: none; /* Unterstreichung entfernen */
  }
  
  footer .end a:active {
    color: #000000; /* Farbe erben */
    text-decoration: none; /* Unterstreichung entfernen */
  }
