/* mobile style*/
@media only screen and (max-width: 768px) {
    #mobile {
        display: block;
    }

    #desktop {
        display: none !important;
    }

    .formOjbect.contact {
        width: 100%;
    }
}

/* iPad landscape style here */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {

}

/* iPad portrait style here */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {


}

@media only screen and (min-width: 768px) {
    .full-width .ubermenu-nav, .container, .row {
        max-width: 1170px !important;
    }
}


/**desktop**/
@media only screen and (min-width: 1440px) {

}