﻿@media only screen and (max-width: 767px) {
    #navabsolute {
                display: none;
            }

            #navfix {
                display: none;
            }

            #mobmenu {
                display: block;
            }

    .desktop_view {
        display:none !important;
    }
    .mobile_view {
        display:block  !important;
    }
    .logowidth {
        width:50%;
        float:left;
    }
    .menuwidth {
        width:50%;
        float:left;
    }
}


@media only screen and (min-width: 768px) {
    #navabsolute {
                display: block;
            }

            #navfix {
                display: block;
            }

            #mobmenu {
                display: none;
            }

             .desktop_view {
        display:block !important;
    }
    .mobile_view {
        display:none  !important;
    }

     .logowidth {
        width:14%;
        max-width:170px;
        float:left;
    }
    .menuwidth {
        width:86%;
        float:left;
    }
}