<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media (min-width: 992px) {
	body {
		padding-top: 55px;
	}
	#nav-logo {
		overflow: visible;
		padding: 13px 10px 25px 10px; /* Large padding which will shrink on scroll (using JS) */
		transition: 0.4s; /* Adds a transition effect when the padding is decreased */
		position: fixed; /* Sticky/fixed navbar */
		width: auto;
		top: 0; /* At the top */
		z-index: 99;
	}

	#nav-logo #logo {
		font-size: 26px;
		font-weight: bold;
		transition: 0.4s;
	}

	.bar.bar--sm {
		padding: 1.09857143em 0;
	}
}

@media (min-width: 1025px) {
	body {
		padding-top: 55px;
	}
	#nav-logo {
		overflow: visible;
		padding: 14px 10px 25px 10px; /* Large padding which will shrink on scroll (using JS) */
		transition: 0.4s; /* Adds a transition effect when the padding is decreased */
		position: fixed; /* Sticky/fixed navbar */
		width: auto;
		top: 0; /* At the top */
		z-index: 99;
	}

	#nav-logo #logo {
		font-size: 26px;
		font-weight: bold;
		transition: 0.4s;
	}

	.bar.bar--sm {
		padding: 0.89857143em 0;
	}
}
</pre></body></html>