
/* Landscape phones and smaller */
    @media (max-width: 767px) {

    }

/* Portrait tablets and small desktops */
    @media (min-width: 769px){
        /*NAVBAR CUSTOMIZER*/
        .navbar{
            background-color: transparent; /*change if you need background*/
            border-color: transparent;
            border-radius: 0;
            border:none;
            margin-bottom: 0;
        }
        .navbar .navbar-nav > li > a { color: #555; /*change color of navigation*/ }
        .navbar .navbar-nav > li > a:hover,
        .navbar-default .navbar-nav > li > a:focus {
            color: blue; /*change color of Navigation*/
            background-color: transparent;  /*change if you need background*/
        }
        .navbar-default .navbar-nav > .current_page_parent > a,
        .navbar-default .navbar-nav > .active > a,
        .navbar-default .navbar-nav > .active > a:hover,
        .navbar-default .navbar-nav > .active > a:focus {
            color: red; /*change color of active navigation*/
            background-color: transparent; /*change if you need background*/
        }
        .header-menu .nav.navbar-nav > li > a.dropdown-toggle b {display:none;}
    } /* use for all devices started from 768px width */

    @media (min-width: 768px) and (max-width: 991px) {

    }

/* Portrait tablets and medium desktops */
    @media (min-width: 992px){

    } /* use for all devices started from 992px width */

    @media (min-width: 992px) and (max-width: 1199px) {

    }

/* Large desktops and laptops */
    @media (min-width: 1200px) {

    }