/* Laptop */
@media only screen and (max-width:1440px) {

}

/* Touch devices */
@media only screen and (max-width:1180px) {
    /* Visibility Classes */
    .hidden-touch-devices {display:none;}
    .show-touch-devices {display:block;}
}

/* Tablet horizontal */
@media only screen and (max-width:1024px) {
    /* Visibility Classes */
    .hidden-tablet-h {display:none;}
    .show-tablet-h {display:block;}

    /* Footer */
    #footer-info .vc_column_container {width:33.33%;}
    .footer-logo.wpb_single_image img {height:100px;}
}

/* Tablet vertical */
@media only screen and (max-width:768px) {
    /* Visibility Classes */
    .hidden-tablet-v {display:none;}
    .show-tablet-v {display:block;}
}
@media only screen and (max-width:767px) {
    /* Footer */
    #footer-info .vc_column_container {width:100%;}
    .footer-logo.wpb_single_image img {height:60px;}
}

/* Mobile */
@media only screen and (max-width:480px) {
    /* Visibility Classes */
    .hidden-mobile {display:none;}
    .show-mobile {display:block;}

    /* button underline */
    [class*="btn_underline"] {font-size:16px;}
}