#navbar {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 10;
    height: 60px;
}

#logo {
    display: inline-block;
    height: 31px;
}

#fullscreen-menu-btn {
    display: none;
}

#fullscreen-menu {
    display: none;
}

#menu {
    float: right;
    margin: 2px 0 0 0;
}

#menu li {
    display: inline-block;
    margin-left: 45px;
    font-size: 14px;
}

#menu li:first-child {
    margin-left: 0;
}

#menu a {
    color: #ffffff;
    text-decoration: none;
    padding: 3px;
}

#menu a.selected {
    position: relative;
}

#menu a.selected:after {
    content: "";
    background-color: #ffffff;
    height: 2px;
    position: absolute;
    left: 3px;
    right: 3px;
    bottom: -4px;
    border-radius: 5px;
}

#navbar.light {
    background-color: white;
    border-bottom: 1px solid #F0F0F0;
}

#navbar.light #menu a {
    color: #000000;
}

#navbar.light #menu a.selected {
    color: #FF4F1C;
}

#navbar.light #menu a.selected:after {
    background-color: #FF4F1C;
}

@media (max-width: 992px) {
    #menu li {
        margin-left: 30px;
    }
}

@media (max-width: 767px) {
    #navbar .container {
        padding-top: 0;
        padding-bottom: 0;
    }

    #navbar {
        border-bottom: 1px solid #F0F0F0;
        background-color: white;
    }

    #fullscreen-menu-btn {
        display: inline-block;
        float: right;
        margin-top: 4px;
        padding: 4px;
    }

    #fullscreen-menu-btn img {
        width: 18px;
    }

    #menu {
        display: none;
    }

    #fullscreen-menu {
        display: none;
        position: fixed;
        top: 0;
        height: 100%;
        width: 100%;
        padding: 30% 0 0 0;
        margin: 0;
        background-color: white;
        z-index: 5;
    }

    #fullscreen-menu li {
        display: block;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    #fullscreen-menu a {
        font-size: 17px;
        line-height: 70px;
        font-weight: 300;
        color: #C1C1C1;
        text-decoration: none;
        position: relative;
    }

    #fullscreen-menu a.selected {
        color: #FF440E;
    }

    #fullscreen-menu a.selected:after {
        content: "";
        background-color: #FF440E;
        height: 2px;
        position: absolute;
        left: 0px;
        right: 0px;
        bottom: -5px;
        border-radius: 5px;
    }
}
