body.sticky .primary-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 11;
	background-color: rgba(255,255,255,0);
	padding: 10px 0;
}
body.sticky .primary-header .logo-col img {
	max-height: 120px;
	width: auto;
	transition: all ease .3s;
}
body.sticky.scrolled .primary-header .logo-col img {
	max-height: 80px;
}
body.sticky.scrolled .primary-header .nav-col {
	transition: all ease .3s;
}
body.sticky.scrolled .primary-header {
	background-color: rgba(0,0,0,.5);
	box-shadow: 0 -5px 10px 0px #000;
	transition: all ease .3s;

}
@media screen and (max-width: 991px) {
	body.sticky {
		margin-top: 100px;
	}
	body.sticky .primary-header {
		position: static;
		box-shadow: none;
		background-color: var(--color-1);
	}
}
