/*==================================================
=            Bootstrap 3 Media Queries             =
==================================================*/

    /*==========  Mobile First Method  ==========*/

    /* Custom, iPhone Retina */ 
    @media only screen and (min-width : 320px) {
        
    }

    /* Extra Small Devices, Phones */ 
    @media only screen and (min-width : 480px) {

    }

    /* Small Devices, Tablets */
    @media only screen and (min-width : 768px) {

    }

    /* Medium Devices, Desktops */
    @media only screen and (min-width : 992px) {

    }

    /* Large Devices, Wide Screens */
    @media only screen and (min-width : 1200px) {

    }



    /*==========  Non-Mobile First Method  ==========*/

    /* Large Devices, Wide Screens */
    @media only screen and (max-width : 1200px) {

    }

    /* Medium Devices, Desktops */
    @media only screen and (max-width : 992px) {
        #kuff-normal-menu {
            font-size: 12px;
            margin-top: 42px;
        }
        .nav>li>a {
            padding: 8px;
        }
    }

    /* Small Devices, Tablets */
    @media only screen and (max-width : 768px) {
        .navbar-default .navbar-collapse, .navbar-default .navbar-form {
            border: none;
            position: absolute;
            width: 100%;
            z-index: 11;
            overflow-y: hidden;
            text-align: center;
        }

        .navbar-default .navbar-toggle {
            margin-top: 38px;
        }

        .col-centered {
            margin-right: 0;
        }
    }


    /* Extra Small Devices, Phones */ 
    @media only screen and (max-width : 480px) {
        .navbar-brand {
            width: 78%;
        }
    }

    @media only screen and (max-width : 420px) {
        .navbar-brand {
            margin-top: 5px;
        }
    }

    /* Custom, iPhone Retina */
    @media only screen and (max-width : 320px) {
        .navbar-brand {
            width: 78%;
            margin-top: 15px;
        }

    }