html {
    scroll-behavior: smooth;
}
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    text-align: center;
}
section {
    min-height: 100%;
}
a {
    text-decoration: none;
}
li {
    list-style-type: none;
}
h1, h2, h3, h5, a {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #494949;
    text-transform: uppercase;
}

h1 {
    color:#494949;
}

h2 {
    color:#494949;
}
h3 {
    font-size: 40px;
    padding-top: 8%;
    margin-bottom: 5px;
}
h4, p {
    font-family: 'Roboto Slab', sans-serif;
    color: #494949;
}
hr {
    width: 30px;
    height: 3px;
    background: #494949;
    border: 0;
    margin: 0 auto 40px auto;
}
#logo, li, img, .button {
    transition: all 300ms; 
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;
}


/* Header ********/

header {
    width: 100%;
    height: 65px;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

#logo {
    width: 120px;
    float: left;
    margin: 10px 0 50px 50px;
}

#logo:hover {
    opacity: 0.5;
}
#logo img{
   width: 37%; 
   float: left;
}

#logo h5{
    margin: 15px 0 30px 0;
}

header nav {
    float: right;
    margin: 10px 50px 0 0;
}

header nav ul li {
    float: left;
    margin-left: 25px;
}

header nav ul li a {
    font-size: 16px;
}

header nav ul li:hover{
    padding-top: 5px;
}

/* Inhalt ********************/

/* FOOTER *********************/

footer {
    width: 100%;
    height: 70px;
    background-color: #3f3f3f;
}

footer p {
    font-size: 12px;
    color: #f0f0f0;
    padding-top: 30px;
}
 footer a, ul{
    font-family: 'Roboto Slab', sans-serif;
    color: #ADD8E6;
 }
/* Media Queries *********************/

/* Nav-Bar **************************/
@media (max-width: 1200px) {
    .menu-toggle
    {
        display: block;
        width: 40px;
        height: 40px;
        margin: 10px;
        float: right;
        cursor: pointer;
        text-align: center;
        font-size: 30px;
        color: #494949;
    }
    .menu-toggle:before
    {
        content: '\f0c9';
        font-family: fontAwesome;
        line-height: 40px;
    }
    .menu-toggle.active:before
    {
        content: '\f00d';
    }
    nav
    {
           display: none;
    }
    nav.active 
    {
           display: block;
           width: 100%;
    }
    nav.active ul
    {
           display: block;
    }
    nav.active ul li a
    {
           margin: 0;
    }
}

/* Tablets *********/

@media (max-width: 1024px) {
    header {
        height: auto;
    }

    #logo {
        width: 140px;
        margin-top: 5px;
        float: left;
    }

    #logo img {
        width: 33%;
        float: left;
    }

    form input, form textarea {
        width: auto;
    }

     .menu-toggle
    {
        display: block;
        width: 40px;
        height: 40px;
        margin: 10px;
        float: right;
        cursor: pointer;
        text-align: center;
        font-size: 30px;
        color: #494949;
    }
    .menu-toggle:before
    {
        content: '\f0c9';
        font-family: fontAwesome;
        line-height: 40px;
    }
    .menu-toggle.active:before
    {
        content: '\f00d';
    }
    nav
    {
           display: none;
    }
    nav.active 
    {
           display: block;
           width: 100%;
    }
    nav.active ul
    {
           display: block;
    }
    nav.active ul li a
    {
           margin: 0;
    }

}

/* Handy ************/

@media (max-width: 800px) {
   

    header 
    {
        height: auto;
    }
    
    header nav {
        margin: 0;
        float: none;
    }

    header nav ul {
        height: 0;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    header nav ul li {
        width: 100%;
        padding: 5px 0;
        margin: 0;
        font-size: 17px;
        border-top: 1px solid #dddddd;
    }
    header nav ul li:hover {
        background-color: #eeeeee;
    }


    form input, form textarea {
        width: 70%;
    }
    .menu-toggle
    {
        display: block;
        width: 40px;
        height: 40px;
        margin: 10px;
        float: right;
        cursor: pointer;
        text-align: center;
        font-size: 30px;
        color: #494949;
    }
    .menu-toggle:before
    {
        content: '\f0c9';
        font-family: fontAwesome;
        line-height: 40px;
    }
    .menu-toggle.active:before
    {
        content: '\f00d';
    }
    nav
    {
           display: none;
    }
    nav.active 
    {
           display: block;
           width: 100%;
    }
    nav.active ul
    {
           display: block;
    }
    nav.active ul li a
    {
           margin: 0;
    }
}