nav {
    width: 100%;
    position: relative;
    background-color: #424242;
}

nav ul {
    width: 100%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    list-style: none;
}

nav ul li {
    background-color: #424242;
    color: white;
    display: flex;
    padding: 5%;
    padding-left: 0;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #eee;
}

nav ul li:hover {
    background-color: #6E6E6E;
}

nav ul li ul {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
}

nav ul li:hover ul {
    display: block;
    z-index: 2;
}

nav ul li i {
    margin-right: 15%;
    padding-left: 7%;
    width: 10%;
}

nav ul li ul li {
    padding-left: 5%;
}

.WhileClick {
    background: #2ECCFA;
    z-index: 1;
    width: 3%;
    position: absolute;
    min-height: 100%;
    top: 0;
    display: none;
}

nav ul li:hover .WhileClick {
    display: block;
}

footer {
    text-align: center;
}


/* Media Queries */

@media only screen and (max-width: 480px) {
    /* -- Navigatie aanpassingen -- */
    .NavigationSection {
        display: none;
    }
    .Aside {
        width: 100%;
    }
    input:checked~section {
        transform: translate(-117%, 0%);
        -ms-transform: translate(-117%, 0%);
    }
    .Aside {
        transition: 1s ease-out 1.5s;
    }
    input:checked~.Content {
        transform: translate(0, -10%);
        -ms-transform: translate(0, -10%);
        transition-delay: 2s;
    }
    input:checked~label i {
        color: black;
    }
    input:checked~aside {
        transform: translate(0, 0);
        -ms-transform: translate(0, 0%);
    }
    .Page label i {
        font-size: 40px;
        margin-left: 1.5%;
    }
    /* -- Input Logo Tijdlijn -- */
    input:checked~article div picture {
        transform: translate(-0%, 0%);
        -ms-transform: translate(-0%, 0%);
        display: none;
    }
    /* -- EINDE -- */
}

@media only screen and (min-width: 480px) and (max-width: 1024px) {}