$(document).ready(function() {

if ((screen.width>1024)) {
// if screen size is 1025px wide or larger
$(".beez2").css('display', 'block'); // you can also use $(".yourClass").hide();
}

else if ((screen.width<=1024))  {
// if screen size width is less than 1024px
$(".beez2").css('display', 'none'); // here you can also use show();
}
});




$(document).ready(function() {

if ((screen.width>1280)) {
// if screen size is 1025px wide or larger
$(".beez2").css('display', 'block'); // you can also use $(".yourClass").hide();
}

else if ((screen.width<=1280))  {
// if screen size width is less than 1024px
$(".beez2").css('display', 'none'); // here you can also use show();
}
});
