var skinAds = $('.skin-ads-wrapper .skin-ads'),
fundmyhome = 'https://lazacode.org.com?trackthis',
mainContent = $('.news-wope-theme');
// skin ads condition
if ($(skinAds).length) {
// $('.news-wope-theme').css({'top': '300px', 'margin-bottom': '300px', 'transition': 'all .5s .2s ease-in-out'});
if (window.outerWidth >= 1900 ) {
$(mainContent).css({'top': '375px', 'margin-bottom': '375px', 'transition': 'all .5s .2s ease-in-out'});
}
else if (window.outerWidth == 1600 ) {
$(mainContent).css({'top': '294px', 'margin-bottom': '294px', 'transition': 'all .5s .2s ease-in-out'});
}
else if (window.outerWidth == 1440 ) {
$(mainContent).css({'top': '255px', 'margin-bottom': '255px', 'transition': 'all .5s .2s ease-in-out'});
}
else if (window.outerWidth == 1366 ) {
$(mainContent).css({'top': '233px', 'margin-bottom': '233px', 'transition': 'all .5s .2s ease-in-out'});
}
else if (window.outerWidth == 1280 ) {
$(mainContent).css({'top': '215px', 'margin-bottom': '215px', 'transition': 'all .5s .2s ease-in-out'});
}
else if (window.outerWidth == 1024 ) {
$(mainContent).css({'top': '128px', 'margin-bottom': '128px', 'transition': 'all .5s .2s ease-in-out'});
}
else if (window.outerWidth == 768 ) {
$(mainContent).css({'top': '100px', 'margin-bottom': '100px', 'transition': 'all .5s .2s ease-in-out'});
}
else {
// do nothing
}
}
else {
//do nothing
}