/* ##############################
HEADER
################################*/
.site-header {
	width: 100%;
	background: #fff;
	border-bottom: 1px solid #e5e7eb;
	top: 0;
	z-index: 9999;
	background: #fff;
	position: sticky;
}

.site-header .header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1280px;
	margin: 0 auto;
	padding: 15px;
}

.site-header .header-left {
	display: flex;
	align-items: center;
	gap: 32px;
}

.site-header .header-right {
	display: flex;
	align-items: center;
	margin-left: auto;
}
.site-header .logo  {
	margin-right: 30px;
}
.site-header .logo img {
	width: 154px;
	height: auto;
	display: block;
}

.site-header .menu {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-header .menu li {
	position: relative;
	list-style: none;
}
.site-header .menu > li.current-menu-ancestor > a,
.site-header .menu > li.current-menu-item > a {
	background-color: #D6E5F3;
	color: #155DFC;
}
.site-header .menu > li > a {
	padding: 8px 8px 8px 12px;
	border-radius: 32px;
}
.site-header .menu li:hover > a,
.site-header .sub-menu > li.current-menu-item > a {
	color: #155DFC;
}
.site-header .menu a {
	text-decoration: none;
	color: #03163a;
	font-weight: 500;
	font-size: 14px;
}
.site-header .menu > li.menu-item-has-children > a::after {
	content: "keyboard_arrow_down";
	font-family: 'Material Symbols Outlined';
	font-weight: normal;
	font-style: normal;
	font-size: 20px;
	display: inline-block;
	margin-left: 6px;
	vertical-align: middle;

	/* Important for Material Symbols */
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	white-space: nowrap;
	direction: ltr;
}
.site-header .menu li.menu-item-has-children > a::after {
	transition: transform 0.2s ease;
}
.site-header .menu li.menu-item-has-children:hover > a::after {
	transform: rotate(180deg);
}
.site-header .hdr-container {
	width: auto;
}
/* Dropdown */
.site-header .menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 220px;
	padding: 10px 0;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
}
.site-header .menu .sub-menu li {
	padding: 2px 10px;
}
.site-header .menu .sub-menu li.mobile {
	display: none;
}
.site-header .menu li:hover > .sub-menu {
	display: block;
}
.site-header .menu li.menu-item-has-children > a {
	display: inline-flex;
	align-items: center;
}

.site-header .menu li.get-quote-btn a,
.site-header .mobile-secondary-menu li.get-quote-btn a {
	background-color: #000;
	color: #FFF;
	font-weight: 700;
	padding: 8px 20px;
	border-radius: 8px;
}
.site-header .mobile-secondary-menu li.get-quote-btn a {
	max-width: 136px;
}
.site-header .menu li.get-quote-btn:hover a,
.site-header .menu li.get-quote-btn:focus a {
	background-color: #155DFC;
	color: #FFF;
}
/* =========================
   MOBILE HEADER + MENU
   ========================= */

.site-header .menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	padding: 8px;
	border: 0;
	background: transparent;
	cursor: pointer;
	color: #03163a;
}

.site-header .menu-toggle .material-symbols-outlined {
	font-size: 32px;
	line-height: 1;
}

.site-header .mobile-menu {
	border-top: 1px solid #e5e7eb;
	background: #fff;

	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transform: translateY(-10px);

	transition:
		max-height 0.35s ease,
		opacity 0.25s ease,
		transform 0.25s ease;
}

.site-header .mobile-menu.is-open {
	opacity: 1;
	transform: translateY(0);
	max-height: none;
}

.site-header .mobile-nav {
	padding: 12px 24px 24px;
	height: 100vh !important;
	overflow-x: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
	overflow-y: scroll;
	width: 100vw !important;
	background: #fff;
}

.site-header .mobile-menu-list,
.site-header .mobile-secondary-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-header .mobile-menu-list > li {
	border-bottom: 1px solid #f1f5f9;
}

.site-header .mobile-menu-list a,
.site-header .mobile-secondary-menu a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 14px 0;
	text-decoration: none;
	color: #03163a;
	font-weight: 500;
}

/* Submenus */
.site-header .mobile-menu-list .sub-menu {
	display: none;
	margin: 0;
	padding: 0 0 10px 16px;
	list-style: none;
}
.site-header .mobile-menu-list .sub-menu a {
	padding: 5px 0;
}
.site-header .mobile-menu-list li.is-open > .sub-menu {
	display: block;
}

/* Dropdown arrow */
.site-header .mobile-menu-list > li.menu-item-has-children > a::after {
	content: "keyboard_arrow_down";
	font-family: 'Material Symbols Outlined';
	font-size: 22px;
	line-height: 1;
	font-variation-settings:
		'FILL' 0,
		'wght' 400,
		'GRAD' 0,
		'opsz' 24;
	transition: transform 0.2s ease;
}

.site-header .mobile-menu-list > li.is-open > a::after {
	transform: rotate(180deg);
}

/* Secondary menu styling */
.site-header .mobile-secondary-menu {
	margin-top: 16px;
	padding-top: 16px;
	border-top: none;
	display: flex;
	align-items: center;
	gap: 20px;
}

.site-header .mobile-secondary-menu .menu-button-quote a {
	justify-content: center;
	margin-top: 8px;
	padding: 12px 16px;
	border-radius: 999px;
	background: #08a6f0;
	color: #fff;
	font-weight: 700;
}

/* =========================
   RESPONSIVE BREAKPOINT
   ========================= */
@media( max-width: 991px) {
	.site-header .logo  {
		margin-right: 0px;
		max-width: 100px;
	}
}
@media( min-width: 992px) and (max-width: 1199px ) {
	.site-header .menu > li > a {
		padding: 8px 10px;
	}
}
@media (max-width: 1099px) {

	/* Hide desktop menus */
	.site-header .desktop-nav,
	.site-header .desktop-secondary {
		display: none;
	}

	/* Show hamburger */
	.site-header .menu-toggle {
		display: inline-flex;
		margin-left: auto;
	}
	
	.site-header .mobile-menu-list .sub-menu li.mobile {
		display: list-item;
	}
	
	.site-header .mobile-secondary-menu li.get-quote-btn a {
		max-width: none;
	}

}

/* Safety: always hide mobile menu on desktop */
@media (min-width: 992px) {
	.site-header .mobile-menu {
		display: none !important;
	}
}

/* Carryover from "old" header-new.php */
#site-hdr .hdr-btm a {
	padding: 4px 6px;
}
.menu .sub-menu li,
.hdr-btm-nav .dropdown li {
	padding: 2px 10px;
}
.site-header .hero-vehicles {
	width: 100%
}

@media (min-width: 768px) {
	.hero-vehicles {
		padding-top:60px
	}
}

.hero-vehicles>img {
	position: absolute;
	z-index: 1;
	width: 50%;
	max-width: 320px;
	top: 40px
}

@media (max-width: 1024px) {
	.hero-vehicles>img {
		width:220px;
		top: 180px;
		opacity: .35
	}
}

@media (max-width: 768px) {
	.hero-vehicles>img {
		display:none
	}
}

.hero-vehicles>img.hv-lft {
	left: -50%;
	transform: rotate(25deg)
}

.hero-vehicles>img.hv-rght {
	right: -50%;
	transform: rotate(-25deg)
}

.page-loaded .hero-vehicles>img {
	transform: rotate(0deg);
	transition: all .5s .5s ease-out
}

.page-loaded .hero-vehicles>img.hv-lft {
	left: 0
}

.page-loaded .hero-vehicles>img.hv-rght {
	right: 0
}

.page-wrap {
	width: 100%;
	overflow: hidden;
	opacity: 0
}

.page-wrap.page-loaded {
	opacity: 1
}

.module:first-child {
	transform: none;
	opacity: 1;
	padding: 32px 0
}

@media (max-width: 768px) {
	.module:first-child {
		padding-top:48px
	}
}

.module:first-child.m-03 {
	display: flex
}

.module:first-child.m-03 .icn {
	display: none;
	width: 200px
}

@media (max-width: 768px) {
	.module:first-child.m-03 {
		display:flex;
		align-items: center
	}

	.module:first-child.m-03 .icn {
		display: block
	}
}