let IsMobile = true;

enquire.register('screen and (min-width:' + Site.width + 'px)',{

  match : function() {
    IsMobile = false;
  },

  unmatch : function() {
    IsMobile = true;
  }

});