#navbarGap {
    margin-top: 70px;
}
#navbar {
    position: fixed;
    top: 0; left: calc(50% - 800px);
    width: 1600px;
    max-width: 1600px;
    height: 70px;
    margin: 0 auto;
    background-color: #FFF;
    padding: 0;
    z-index: 1;

    /* box-shadow: 0 5px 25px rgba(0, 0, 0, .2); */
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .2);
}
@media only screen and (max-width: 1600px) {
    #navbar {
        width: 100%;
        left: 0;
    }
}


/* Burger
-----------------------------------------------------------------------------*/
#burger {
    display: none;
    cursor: pointer;
    margin-top: 15.5px;
}
@media only screen and (max-width: 670px) {
    .mainNav {
        display: none;
    }
    #burger {
        display: block;
    }
}

.burger {
    width: 35px;
    height: 5px;
    background-color: black;
    margin: 6px 0;
}

#burgerB {
    display: none;
}
#burgerB+label {
    height: 40px;
}


#mobileNav {
    position: fixed;
    left: 0;
    width: 100%;
    height: 190px;
    cursor: default;
    background-color: white;

    top: -150px;
    opacity: 0;
    z-index: -1;
    transition: 1s;
}
input[type="checkbox"]:checked ~ #mobileNav {
    top: 70px;
    opacity: 1;
}




/* blala
-----------------------------------------------------------------------------*/
ul {
    list-style: none;
}
ul li {
    float: right;
    margin: 0 20px;
}
ul li:first-child {
    float: left;
    margin-left: 10px;
}
ul li:nth-child(2) {
    margin-right: 30px;
}
ul a {
    display: block;

    margin-top: 10px;
    padding: 0 25px;
    line-height: 50px;

    color:#555759;
    font-weight: bold;

    border-radius: 6px;
}
ul a:hover {
    color: #FFF;
}
.hoverRed:hover {
    background-color: #FC4237;
}
.hoverGreen:hover {
    background-color: #A5CD06;
}
.hoverBlue:hover {
    background-color: #00A1E0;
}

ul li:first-child a {
    margin-top: 0;
    padding: 10px 25px;
}
ul li:first-child a:hover {
    opacity: .8;
    color: #555759;
}



