@media only screen and (min-width: 992px) {
	.page-wrapper .sticky.active {
	  position: fixed;
	  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
	  padding: 8px 0;
	  backdrop-filter: blur(10px);
	  animation: slideDown 0.35s ease-out;
	  z-index: 111;
	  width: 100%;
	 }
	@keyframes slideDown {
	  from {
		transform: translateY(-100%);
	  }
	  to {
		transform: translateY(0);
	  }
	}
}