input#burger {
    opacity: 0%;
    display: none;
    z-index:-100;
}

h1 {
    font-size: 13px;
    text-transform: uppercase;
    margin-left: 50px;
    margin-right: 30px;
}

body header input ~ nav div.hidetext {
    background-color: #04184D;
    width: 100%;
    height: 50px;
    z-index: 50;
}

body header label {
    /** Burger Größe insgesamt **/
    position: fixed;
    right: 15px;
    top: 15px;
    height: 20px;
    width: 20px;
    z-index: 20;
}

body header label span {
    /** Burger Linienstärke **/
    position: absolute;
    width: 100%;
    height: 2px;
    top: 50%;
    margin-top: -1px;
    left: 0;
    display: block;
    transition: .5s;
}

body header {
    height: 0;
}

body > div {
    position: fixed;
    z-index: 6;
    height: 50px;
    width: 100%;

}

/*          Burger Color            */

body header input ~ label span {
    background: white;
}

body header input ~ label span:first-child {
    top: 4px;
}

body header input ~ label span:last-child {
    top: 16px;
}

body header label:hover {
    cursor: pointer;
}

body header input:checked ~ label span {
    opacity: 0;
    top: 50%;
}

body header input:checked ~ label span:first-child {
    opacity: 1;
    transform: rotate(405deg);
}

body header input:checked ~ label span:last-child {
    opacity: 1;
    transform: rotate(-405deg);
}

body header input ~ nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 3;
    transition: .5s;
    transition-delay: .5s;
    overflow: hidden;
}

/****** Nav Background  Color ******/
body input ~ nav {
    width: 100%;
    background: #04184D;
    height: 100%;
    z-index: 1;
}

body input ~ nav > ul {
    text-align: center;
    position: absolute;
    margin-top: 50px;
    top: 20%;
    left: 10%;
    right: 10%;
    padding: 0;
    /***/

}

body nav > ul > li {
    opacity: 0;
    transition: .5s;
    transition-delay: 0.5s;
    text-align: center;
}

/****** Nav Link Properties *******/
body input ~ nav > ul > li > a {
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    display: block;
    padding: 10px;
    z-index: 2;
}

body input:checked ~ nav {
    height: 100%;
    margin: -50px 0 120px 0;
    padding-bottom: 60px;
    transition-delay: 0s;
}

body input:checked ~ nav > ul > li {
    opacity: 1;
    transition-delay: .5s;
}

/* customized css */
body nav ul {
    list-style-type: none;
}

/***************** MEDIA QUERIES **************************/

/***** tablet *****/

@media only screen and (min-width: 768px) {
    h1 {
        font-size: 20px;
        margin-left: 90px;
        margin-right: 60px;
    }

    body header input ~ nav div.hidetext {
        height: 100px;
    }

    body header label {
        right: 30px;
        top: 30px;
        height: 40px;
        width: 40px;
    }

    body header label span {
        height: 4px;

    }

    body header {
        height: 0;
    }

    body > div {
        height: 100px;
    }

    body header input ~ label span:first-child {
        top: 8px;
    }

    body header input ~ label span:last-child {
        top: 32px;
    }

    body header input:checked ~ label span:first-child {
        top: 16px;
    }

    body header input:checked ~ label span:last-child {
        top: 16px;
    }

    body header input ~ nav {
        height: 100px;

    }

    body input ~ nav > ul {
        top: 10%;
    }

    /****** Nav Background  Color ******/
    body input ~ nav {}

    body input ~ nav > ul {
        margin-top: 100px;
    }

    body nav > ul > li {}

    /****** Nav Link Properties *******/
    body input ~ nav > ul > li > a {
        font-size: 1em;
        padding: 10px;
    }

    body input:checked ~ nav {
        margin: -100px 0 120px 0;
        padding-bottom: 100px;
    }


}
