if (window.pageYOffset < headerBottom) {
header.classList.remove('sticky');
flag = true;
} else if (window.pageYOffset > headerBottom && flag) {
header.classList.add('sticky');
fade(header, 2000, 50);
flag = false;
}