/* Make header sticky while scrolling using JS*/
.sticky-header{
	position: fixed;
	top: 0;
/*	left: 0;
	right: 0;*/
	width: 100%;
	min-width: 300px;
	overflow-y: visible;/* scroll */
}
/* Set responsive Site-Title */
@media all and (max-width: 768px) {
	.site-branding .site-title, .site-branding .site-title a {
		font-size: 4vw;
	}
}