/* Language Select */
#lang_sel {
    padding-top: 1.5%;
    list-style-type: none;
}

#lang_sel li {
    padding: 0 5px;
}

#lang_sel li img {
    cursor: pointer;
}

#lang_sel li:not(.active) img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: gray;
    filter: grayscale(1);
}

#lang_sel li:hover img {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    filter: none;
    filter: grayscale(0);
}

/* Navigation Bar */
header {
    box-shadow: 1px 1px 4px 1px rgba( 0, 0, 0, 0.1 );
    padding-bottom: 11px;
    font-family: 'Oswald', Helvetica, Arial, Verdana, sans-serif;
}

.navbar {
    border: none;
    border-radius: 0;
}

.navbar.navbar-top {
    padding: 0;
    height: 52px;
    box-sizing: border-box;
}

.navbar.navbar-top li a {
    color: white;
}

.navbar.navbar-top li.active a {
    background: none;
}

.navbar.navbar-bottom ul {
    margin-top: 1%;
}

.navbar.navbar-bottom li a:hover {
    background: none;
}

.navbar.navbar-bottom li a {
    color: black;
    font-size: 24px;
}

.navbar.navbar-bottom li a.active {
    color: red;
}

.navbar-brand {
    font-size: 36px;
    color: white;
}

.navbar-brand > img {
    display: inline;
    height: 40px;
}

@media (max-width:768px) {

    .nav.navbar-nav,
    .navbar .navbar-nav{
        list-style-type: none;
    }

    .navbar-left,
    .nav li,
    .navbar li {
        float: left;
    }
    .navbar-right {
        float: right;
    }

}