window.onscroll = function () {
menuScroll()
};
var header = document.getElementById("stick");
var sticky = header.offsetTop + 500;
function menuScroll() {
if (window.pageYOffset > sticky) {
header.classList.add("sticky");
} else {
header.classList.remove("sticky");
}
}