/**
 * Navbar ::before line - match homepage short line on non-homepage pages.
 * Loads on all pages so the decorative line has consistent length site-wide.
 */
@media screen and (min-width: 992px) {
	body:not(.home) header.semplice-navbar::before,
	body:not(.home) .semplice-navbar.active-navbar::before,
	body:not(.home) .semplice-navbar::before {
		content: "" !important;
		display: block !important;
		position: absolute !important;
		width: 100% !important;
		height: 1px !important;
		background: rgba(142, 142, 142, 0.5) !important;
		top: 43% !important;
		left: 83% !important;
		max-width: 25% !important;
		transform: translateX(-50%) !important;
		opacity: 0.6 !important;
		pointer-events: none !important;
	}
}

@media (max-width: 991px) {
	body:not(.home) .semplice-navbar::before {
		display: none !important;
	}
}
