/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */
@media (max-width: 767px) { 
    .navbar-nav{
        background-color:#fff;
        margin-top:0px;
    }
    .navbar-brand{
        height:84px;
    }
    .navbar-inverse .navbar-brand, .navbar-inverse .navbar-nav > li > a{
        color:blue;
    }
    
    #leftMenu{
        display:none;    
    }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
    
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}