.saw-mega-header {
	--saw-mega-blue: #065d89;
	--saw-mega-green: #74bb58;
	--saw-mega-border: #f2f2f2;
	--saw-mega-soft: #fafafa;
	--saw-mega-hover: #f5f5f5;
	--saw-mega-text: #111;
	--saw-mega-text-hover: #043f5f;
	--saw-mega-blue-hover: #054f75;
	--saw-mega-transition: 180ms ease;
	background: #fff;
	border-bottom: 1px solid var(--saw-mega-border);
	color: #000;
	font-family: Montserrat, Arial, sans-serif;
	position: relative;
	z-index: 1000;
}

.saw-mega-header *,
.saw-mega-header *::before,
.saw-mega-header *::after {
	box-sizing: border-box;
}

.saw-mega-header [hidden] {
	display: none !important;
}

.saw-mega-header :where(a) {
	color: inherit;
	text-decoration: none;
}

.saw-mega-header__screen-reader {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.saw-mega-header__bar {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 80px;
	padding: 12px 20px;
}

.saw-mega-header__logo {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	min-width: 0;
}

.saw-mega-header__logo-image {
	display: block;
	height: auto;
	max-height: 56px;
	object-fit: contain;
	width: 150px;
}

.saw-mega-header__logo-text {
	color: var(--saw-mega-blue);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.1;
}

.saw-mega-header__desktop-nav,
.saw-mega-header__actions,
.saw-mega-header__panels {
	display: none;
}

.saw-mega-header__mobile-toggle {
	align-items: center;
	background: transparent;
	border: 1px solid var(--saw-mega-border);
	border-radius: 0;
	cursor: pointer;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	padding: 0;
	position: relative;
	width: 44px;
}

.saw-mega-header__mobile-toggle > span[aria-hidden="true"],
.saw-mega-header__mobile-toggle > span[aria-hidden="true"]::before,
.saw-mega-header__mobile-toggle > span[aria-hidden="true"]::after {
	background: #000;
	content: "";
	display: block;
	height: 2px;
	position: absolute;
	transition: transform 180ms ease, opacity 180ms ease;
	width: 20px;
}

.saw-mega-header__mobile-toggle > span[aria-hidden="true"] {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.saw-mega-header__mobile-toggle > span[aria-hidden="true"]::before {
	left: 0;
	top: 0;
	transform: translateY(-7px);
}

.saw-mega-header__mobile-toggle > span[aria-hidden="true"]::after {
	left: 0;
	top: 0;
	transform: translateY(7px);
}

.saw-mega-header__mobile-toggle[aria-expanded="true"] > span[aria-hidden="true"] {
	background: transparent;
}

.saw-mega-header__mobile-toggle[aria-expanded="true"] > span[aria-hidden="true"]::before {
	transform: rotate(45deg);
}

.saw-mega-header__mobile-toggle[aria-expanded="true"] > span[aria-hidden="true"]::after {
	transform: rotate(-45deg);
}

.saw-mega-header__mobile-menu {
	background: #fff;
	border-top: 1px solid var(--saw-mega-border);
	padding: 8px 20px 20px;
}

.saw-mega-header__mobile-item {
	border-bottom: 1px solid var(--saw-mega-border);
}

.saw-mega-header__mobile-primary {
	align-items: center;
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.saw-mega-header__mobile-primary > a {
	color: var(--saw-mega-text);
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	padding: 16px 0;
	transition: color var(--saw-mega-transition);
}

.saw-mega-header__mobile-primary > a:hover,
.saw-mega-header__mobile-primary > a:focus-visible {
	color: var(--saw-mega-text-hover);
	outline: 0;
}

.saw-mega-header__mobile-primary > button {
	align-items: center;
	background: transparent;
	border: 0;
	cursor: pointer;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	padding: 0;
	width: 44px;
}

.saw-mega-header__chevron {
	display: inline-block;
	height: 20px;
	position: relative;
	width: 20px;
}

.saw-mega-header__chevron::before {
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	display: block;
	height: 7px;
	left: 6px;
	position: absolute;
	top: 5px;
	transform: rotate(45deg);
	transform-origin: center;
	transition: transform 180ms ease;
	width: 7px;
}

.saw-mega-header__mobile-primary > button[aria-expanded="true"] .saw-mega-header__chevron::before {
	transform: translateY(3px) rotate(225deg);
}

.saw-mega-header__mobile-submenu {
	display: grid;
	gap: 14px;
	padding: 0 0 16px;
}

.saw-mega-header__mobile-submenu-links {
	display: grid;
	gap: 8px;
	grid-template-columns: 1fr;
}

.saw-mega-header__mobile-submenu-group {
	display: grid;
	gap: 6px;
}

.saw-mega-header__mobile-submenu-link {
	background: var(--saw-mega-soft);
	color: var(--saw-mega-text);
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	min-height: 52px;
	padding: 12px;
	transition:
		background-color var(--saw-mega-transition),
		color var(--saw-mega-transition);
}

.saw-mega-header__mobile-submenu-link:hover,
.saw-mega-header__mobile-submenu-link:focus-visible {
	background: var(--saw-mega-hover);
	color: var(--saw-mega-text);
	outline: 0;
}

.saw-mega-header__mobile-submenu-sub-links {
	display: grid;
	gap: 4px;
	padding-left: 18px;
}

.saw-mega-header__mobile-submenu-sub-link {
	color: var(--saw-mega-text);
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	padding: 8px 12px;
	transition: color var(--saw-mega-transition);
}

.saw-mega-header__mobile-submenu-sub-link:hover,
.saw-mega-header__mobile-submenu-sub-link:focus-visible,
.saw-mega-header__mobile-submenu-sub-link[aria-current="page"] {
	color: var(--saw-mega-text-hover);
	outline: 0;
}

.saw-mega-header__mobile-actions {
	display: grid;
	gap: 10px;
	padding-top: 18px;
}

.saw-mega-header__mobile-actions a {
	align-items: center;
	background: var(--saw-mega-blue);
	color: #fff;
	display: flex;
	font-size: 16px;
	font-weight: 700;
	justify-content: center;
	line-height: 24px;
	min-height: 52px;
	padding: 14px 16px;
	transition:
		background-color var(--saw-mega-transition),
		color var(--saw-mega-transition);
}

.saw-mega-header__mobile-actions a:hover,
.saw-mega-header__mobile-actions a:focus-visible {
	background: var(--saw-mega-blue-hover);
	outline: 0;
}

.saw-mega-header__mobile-actions .saw-mega-header__mobile-phone {
	background: #e5f6fd;
	color: var(--saw-mega-blue);
}

.saw-mega-header__mobile-actions .saw-mega-header__mobile-phone:hover,
.saw-mega-header__mobile-actions .saw-mega-header__mobile-phone:focus-visible {
	background: #e5f6fd;
	color: var(--saw-mega-text-hover);
}

.saw-mega-header__feature {
	align-items: flex-end;
	background: var(--saw-mega-blue);
	color: #fff;
	display: flex;
	isolation: isolate;
	min-height: 180px;
	overflow: hidden;
	padding: 24px;
	position: relative;
	width: 100%;
}

.saw-mega-header__feature::after {
	background: linear-gradient(90deg, rgba(6, 93, 137, 0.5), rgba(6, 93, 137, 0.5)), linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
	content: "";
	inset: 0;
	position: absolute;
	z-index: -1;
}

.saw-mega-header__feature-image {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
	z-index: -2;
}

.saw-mega-header__feature-title {
	color: #fff;
	display: block;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 34px;
	position: relative;
}

@media (min-width: 1100px) {
	.saw-mega-header__bar {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		min-height: 97px;
		padding: 0 clamp(24px, 4.6vw, 88px);
	}

	.saw-mega-header__logo {
		padding-left: 16px;
	}

	.saw-mega-header__logo-image {
		max-height: 65px;
		width: 173px;
	}

	.saw-mega-header__mobile-toggle,
	.saw-mega-header__mobile-menu {
		display: none !important;
	}

	.saw-mega-header__desktop-nav {
		align-self: stretch;
		display: flex;
		justify-content: center;
		min-width: 0;
	}

	.saw-mega-header__nav-list {
		align-items: stretch;
		display: flex;
		height: 100%;
		justify-content: center;
		list-style: none;
		margin: 0;
		min-width: 0;
		padding: 0;
	}

	.saw-mega-header__nav-item {
		display: flex;
		margin: 0;
	}

	.saw-mega-header__nav-link {
		align-items: center;
		border-bottom: 4px solid transparent;
		color: var(--saw-mega-text);
		display: flex;
		font-size: 16px;
		font-weight: 600;
		gap: 8px;
		justify-content: center;
		letter-spacing: 0;
		line-height: 24px;
		padding: 4px clamp(14px, 1.65vw, 32px);
		transition:
			background-color var(--saw-mega-transition),
			border-color var(--saw-mega-transition),
			color var(--saw-mega-transition);
		white-space: nowrap;
	}

	.saw-mega-header__nav-link:hover,
	.saw-mega-header__nav-link:focus-visible {
		color: var(--saw-mega-text-hover);
		outline: 0;
	}

	.saw-mega-header__nav-link[aria-current="page"],
	.saw-mega-header__nav-link.is-active {
		background: var(--saw-mega-soft);
		border-bottom-color: var(--saw-mega-green);
		color: var(--saw-mega-text-hover);
		outline: 0;
	}

	.saw-mega-header__nav-link.is-active .saw-mega-header__chevron::before {
		color: var(--saw-mega-green);
		transform: translateY(3px) rotate(225deg);
	}

	.saw-mega-header__actions {
		align-items: center;
		display: flex;
		gap: 24px;
		justify-content: flex-end;
	}

	.saw-mega-header a.saw-mega-header__phone {
		align-items: center;
		color: var(--saw-mega-blue);
		display: flex;
		flex: 0 0 auto;
		font-size: 16px;
		font-weight: 700;
		gap: 8px;
		line-height: 24px;
		transition: color var(--saw-mega-transition);
		white-space: nowrap;
	}

	.saw-mega-header__phone-icon {
		align-items: center;
		background: #c9ebfd;
		border-radius: 999px;
		display: inline-flex;
		flex: 0 0 40px;
		height: 40px;
		justify-content: center;
		padding: 2px;
		position: relative;
		width: 40px;
	}

	.saw-mega-header a.saw-mega-header__phone:hover,
	.saw-mega-header a.saw-mega-header__phone:focus-visible {
		color: var(--saw-mega-text-hover);
		outline: 0;
	}

	.saw-mega-header__phone-icon svg {
		display: block;
		height: 16px;
		width: 16px;
	}

	.saw-mega-header a.saw-mega-header__contact {
		align-items: center;
		background: var(--saw-mega-blue);
		color: #fff;
		display: inline-flex;
		flex: 0 0 auto;
		font-size: 16px;
		font-weight: 700;
		height: 56px;
		justify-content: center;
		line-height: 24px;
		min-height: 0;
		padding: 16px;
		transition:
			background-color var(--saw-mega-transition),
			color var(--saw-mega-transition);
		white-space: nowrap;
	}

	.saw-mega-header a.saw-mega-header__contact:hover,
	.saw-mega-header a.saw-mega-header__contact:focus-visible {
		background: var(--saw-mega-blue-hover);
		color: #fff;
		outline: 0;
	}

	.saw-mega-header__panels {
		background: #fff;
		display: block;
		left: 0;
		position: absolute;
		right: 0;
		top: 100%;
	}

	.saw-mega-header__panel {
		background: #fff;
		border-bottom: 1px solid var(--saw-mega-border);
		padding: 24px clamp(24px, 4.6vw, 88px);
	}

	.saw-mega-header__panel-inner {
		align-items: flex-start;
		display: flex;
		gap: 8px;
		margin: 0 auto;
		max-inline-size: 1328px;
		min-width: 0;
	}

	.saw-mega-header__panel-links {
		display: grid;
		flex: 1 1 auto;
		gap: 8px 32px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		min-width: 0;
		padding-right: 48px;
	}

	.saw-mega-header__panel-group {
		display: grid;
		gap: 4px;
		min-width: 0;
	}

	.saw-mega-header__panel-link {
		align-items: center;
		color: var(--saw-mega-text);
		display: flex;
		font-size: 16px;
		font-weight: 500;
		letter-spacing: 0;
		line-height: 24px;
		min-height: 56px;
		padding: 16px;
		transition:
			background-color var(--saw-mega-transition),
			color var(--saw-mega-transition);
	}

	.saw-mega-header__panel-link:hover,
	.saw-mega-header__panel-link:focus-visible {
		background: var(--saw-mega-hover);
		color: var(--saw-mega-text);
		outline: 0;
	}

	.saw-mega-header__panel-link[aria-current="page"] {
		background: var(--saw-mega-hover);
		color: var(--saw-mega-text);
		outline: 0;
	}

	.saw-mega-header__panel-sub-links {
		display: grid;
		gap: 4px;
		padding: 0 0 8px 24px;
	}

	.saw-mega-header__panel-sub-link {
		color: var(--saw-mega-text);
		display: block;
		font-size: 15px;
		font-weight: 500;
		letter-spacing: 0;
		line-height: 22px;
		padding: 4px 16px;
		transition: color var(--saw-mega-transition);
	}

	.saw-mega-header__panel-sub-link:hover,
	.saw-mega-header__panel-sub-link:focus-visible,
	.saw-mega-header__panel-sub-link[aria-current="page"] {
		color: var(--saw-mega-text-hover);
		outline: 0;
	}

	.saw-mega-header__feature {
		flex: 0 0 472px;
		height: 224px;
		min-height: 224px;
		padding: 32px;
		width: 472px;
	}

	.saw-mega-header__feature-title {
		font-size: 40px;
		line-height: 48px;
	}
}
