*{
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}

body{
    font-family: 'Outfit', sans-serif;
    cursor: url("images/graphics/cursor_paw.svg"), auto;
    background-color: #FAFAFA;
}

h2{
    font-size: 2.5em;
    font-weight: 500;
}

::-moz-selection { background: black; color: white; }
::selection { background: black; color: white; }

.header-box{
    position: relative;
}

.logo-box{
    width: 13%;
    position: absolute;
    z-index: 4;
    margin-left: 2%;
    transition: 0.7s ease;
}

.navbar{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #33C31E;
    width: 100%;
    padding: 0.5% 1% 0.5% 0;
    position: fixed;
    z-index: 3;
}

.nav-filler{
    width: 100%;
    height: 6.7em;
    margin-top: 2%;
    position: absolute;
    z-index: 2;
}

.nav-menu{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    height: 30%;
}

.nav-link{
    font-size: 1.5em;
    font-weight: 500;
    text-decoration: none;
    color:black
}

.nav-link-lock{
    font-size: 1.5em;
    font-weight: 500;
    text-decoration: underline;
    color:black
}

.nav-link:hover{
    text-decoration: underline;
    color: rgb(0, 0, 0);
}

.hamburger{
    display: none;
    cursor: pointer;
    margin-right: 2%;
}

.bar{
    display: block;
    width: 30px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3 ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: black;
    border-radius: 50px;
}

/*contact*/
.contact-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 13%;
}


.contact-box-header{
    margin-bottom: 0.5%;
}

.contact-table{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2%;
}

.contact-card{
    font-size: 1.2em;
    width: 30%;
}

.contact-buttons{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: 40em;
    margin-left: 2.5%;
    margin-right: 2.5%;
    padding: 0% 1% 1% 1%;
}

.contact-buttons:nth-child(2){
    background-color: #33C31E;
    padding: 1%;
}

.contact-buttons:nth-child(3){
    background-color: #79E869;
    padding: 1%;
}

.mail-icon-box{
    display: flex;
}

.contact-card-start{
    font-size: 1.5em;
    text-align: center;
    width: 100%;
}

.contact-card-info{
    font-size: 1.5em;
    text-align: start;
    width: 80%;
    display: flex;
    flex-direction: row;
}

.contact-card-info a{
    text-decoration: none;
}

.contact-card-info a:hover{
    color: white;
}

.impressum-card{
    font-size: 1.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 4%;
}


/*footer*/
.footer{
    background-color: #79E869;
    display: flex;
    justify-content: center;
    align-items:flex-start;
    flex-wrap: wrap;
    border-top: 0.2em #33C31E solid;
    cursor: auto;
}

.footer-col-logo{
    width: min(250px);
    margin: 1%; 
    display: flex;
    justify-content: center;
}

.footer-col{
    width: min(250px);
    margin: 1%;
    padding-top: 0.5%;
}

.footer-headline{
    font-weight: 700;
    font-size: 1.2em;
    color: rgb(0, 0, 0);
    margin-bottom: 6%;
}

.footer-link{
    color: rgb(0, 0, 0);
    font-weight: 500;
    text-decoration: none;
    line-height: 1.5em;
}

.footer-link:hover{
    text-decoration: underline;
}

.footer-contact{
    font-weight: 500;
}

.footer-contact-number{
    text-decoration: none;
}

.footer-contact-number:hover{
    color: #ffffff;
}

.footer-contact-email{
    text-decoration: none;
    line-height: 3em;

}

.footer-contact-email:hover{
    color: #ffffff;
}

.social-link{
    display: inline-block;
    height: 40px;
    width: 40px;
}

.social-picture{
    height:70%;
    margin: 5px;
}


.footer-point{
    width: 75%;
}

.footer-line{
    background-color: #33C31E;
    padding: 0.5% 0.5% 0.5% 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.legal-text{
    font-size: 1em;
}

@media(max-width: 1200px){
    .navbar{
        justify-content: flex-end;
        height: 3em;
    }

    .nav-menu{
        margin: 0%;
    }

    .nav-filler{
        margin-top: 4%;
    }
}

@media(max-width:700px){
    .hamburger{
        display: block;
    }    

    .hamburger.active .bar:nth-child(2){
        opacity:0;
    }

    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }

    .navbar{
        justify-content: flex-end
    }

    .nav-filler{
        position: fixed;
        margin-top: 10%;
    }

    .nav-menu{
        position: fixed;
        right: -100%;
        top:34px;
        gap: 0;
        flex-direction: column;
        background-color: #33C31E;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        height: 40%;
    }

    .nav-link{
        margin: 1%;
    }


    .nav-menu.active{
        right:0;
    }

    .logo-box{
        width: 25%;
        position: fixed;
    }

    .image-box{
        height: 55em;
        width: 100%;
    }
    
    .image{
        position: absolute;
        width: 100%;
        z-index: -1;
        height: 100%; 
        object-position: 35%;
    }

    .legal-text{
        font-size: 0.8em;
    }

    /*Kontakt*/

    .contact-box{
        padding-top: 30%;
    }
    
    
    .contact-box-header{
        margin-bottom: 0.5%;
    }
    
    .contact-table{
        width: 100%;
        margin-bottom: 2%;
    }
    
    .contact-card{
        font-size: 1.2em;
        width: 30%;
    }
    
    .contact-buttons{
        min-width: 95%;
        max-width: 0em;
        padding: 0% 1% 1% 1%;
    }
    
    .contact-buttons:nth-child(2){
        padding: 3%;
    }
    
    .contact-buttons:nth-child(3){
        padding: 3%;
    }
    
    .mail-icon-box{
        display: flex;
    }
    
    .contact-card-start{
        font-size: 1.2em;
        text-align: center;
    }
    
    .contact-card-info{
        font-size: 1.2em;
        text-align: start;
        width: 80%;
    }
    
    .impressum-card{
        font-size: 1.5em;
        width: 95%;
        margin-bottom: 4%;
    }
    

}