.headerLayout {
	position: relative;
	z-index: 555;
	width: 100%;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
}

.headerWrapper {
	position: relative;
	z-index: 777;
	width: 100%;
	max-width: 1512px;
	padding: 1.5rem;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (min-width: 768px) {
	.headerWrapper {
		padding: 1.5rem 2rem;
	}
}

@media (min-width: 1200px) {
	.headerWrapper {
		padding: 1.5rem 3rem;
	}
}

@media (min-width: 1500px) {
	.headerWrapper {
		padding: 2rem 5rem;
	}
}

.siteLogo {
	flex-shrink: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.siteLogo img {
	width: 100%;
	height: 100%;
	max-height: 4rem;
	object-fit: contain;
}

.siteNav {
	flex: 1;
	display: none;
	justify-content: center;
	align-items: center;
}

.siteNav ul:not(.splide__list) {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 1rem;
	align-items: center;
}

@media (min-width: 1400px) {
	.siteNav ul:not(.splide__list) {
		gap: 1.5rem;
	}
}

@media (min-width: 1600px) {
	.siteNav ul:not(.splide__list) {
		gap: 2rem;
	}
}

.siteNav li a {
	font-size: 1rem;
	cursor: pointer;
}

@media (min-width: 1500px) {
	.siteNav li a {
		font-size: 1.1rem;
	}
}

@media (min-width: 1200px) {
	.siteNav {
		display: flex;
	}
}

.headerActions {
	flex-shrink: 1;
	display: none;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem;
}

@media (min-width: 1200px) {
	.headerActions {
		display: flex;
	}
}

.headerBtn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	position: relative;
	overflow: hidden;
	border: 2px solid transparent;
}

.headerBtn span {
	font-size: 14px;
	line-height: 100%;
	z-index: 6;
}

.headerBtn svg {
	z-index: 6;
}

.btnFill {
	border-color: #0089b6;
}

.btnFill span {
	color: #0089b6;
	transition: all 0.2s ease-in-out;
}

.btnFill svg path {
	fill: #0089b6;
	transition: all 0.2s ease-in-out;
}

.btnFill::after {
	content: "";
	width: 0;
	height: 100%;
	position: absolute;
	z-index: 1;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #0089b6;
	transition: all 0.2s ease-in-out;
}

.btnFill:hover span {
	color: #fff;
}

.btnFill:hover svg path {
	fill: #fff;
}

.btnFill:hover::after {
	width: 100%;
	right: unset;
	left: 0;
}

.headerBtnCta {
	flex-direction: row-reverse;
	background-color: #f67728;
	border-color: #f67728;
	transition: all 0.15s cubic-bezier(0.57, 0.21, 0.69, 1);
}

.headerBtnCta span {
	color: #fff;
}

.headerBtnCta svg path {
	fill: #fff;
}

.headerBtnCta:hover {
	transform: translateY(-3px);
	opacity: 0.8;
}

.submenuWrapper {
	position: absolute;
	top: -100%;
	right: 0;
	left: 0;
	z-index: 777;
	overflow: hidden;
	margin: auto;
	max-width: 1065px;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #fff;
	box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.07);
	border-radius: 32px;
	transition: all 0.35s ease;
}

@media (max-width: 1199px) {
	.submenuWrapper {
		display: none;
	}
}

.hasSubmenu a {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 0.5rem;
}

.hasSubmenu a svg {
	margin-top: 1.5px;
}

.active.submenuWrapper {
	top: calc(118px + 60px + 1rem);
}

.submenuOpen .hasSubmenu a svg {
	transform: rotate(-180deg);
	transition: all 0.4s ease-in-out;
}

.submenu {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2rem;
	padding: 3rem;
}

.leftCol,
.rightCol {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2rem;
	width: fit-content;
}

.headingWrap {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: flex-start;
	gap: 0.5rem;
}

.headingWrap h4 {
	font-family: var(--text);
	font-weight: 700;
}

.leftCol {
	flex-basis: 40%;
}

.navWrap ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1.5rem;
}

.navWrap li {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 0.8rem;
}

.navWrap li:hover svg {
	transform: translateX(2px);
}

.navWrap li:hover svg path {
	fill: #f67728;
}

.navWrap li span {
	font-size: 16px;
	line-height: 175%;
	color: #000;
	transition: all 0.2s ease;
}

.navWrap li svg {
	transition: all 0.2s ease;
}

.navWrap li svg path {
	fill: #000;
	transition: all 0.2s ease;
}

.rightCol {
	flex-basis: 60%;
}

.iconCtaWrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1.5rem;
}

.textCta {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}

.textCta p {
	font-family: var(--text);
	font-size: 16px;
	font-weight: 400;
	line-height: 175%;
}

.textCta a {
	padding: 1rem;
}

.mobileNav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

@media (min-width: 1200px) {
	.mobileNav {
		display: none;
	}
}

.mobileNav .navToggleWrap {
	position: relative;
	width: 24px;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.mobileNav .navToggle {
	width: 100%;
	height: 1px;
	background-color: #000;
	border-radius: 2px;
}

.mobileNav .navToggle::before,
.mobileNav .navToggle::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	background-color: #000;
	width: 100%;
	height: 1px;
}

.mobileNav .navToggle::before {
	top: -8px;
}

.mobileNav .navToggle::after {
	top: 8px;
}

.mobileCta .headerBtn {
	background: transparent;
	border: unset;
	padding: 0;
}

.mobileCta .headerBtn span {
	color: #f67728;
	font-size: 16px;
	font-weight: 600;
}

.mobileCta .headerBtn svg path {
	fill: #f67728;
}

.mobileMenuOpen,
.mobileMenuOpen body {
	overflow-y: hidden !important;
}

.mobileMenu {
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	z-index: 777;
	overflow-y: scroll;
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 625px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: rgba(240, 240, 240, 0.98);
	transition: all 0.35s ease;
}

@media (min-width: 1200px) {
	.mobileMenu {
		display: none;
	}
}

.mobileMenu .menuInner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	height: 100%;
	padding: 6rem 2rem;
	overflow-y: scroll;
}

.mobileMenu .menuWrap ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2rem;
}

.mobileMenu .menuWrap li {
	height: fit-content;
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: flex-start;
}

.mobileMenu .menuWrap .menu-item-has-children svg:last-child {
	display: none;
}

.mobileMenu .menuWrap .menu-item-has-children .sub-menu {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1rem;
}

.mobileMenu .menuWrap .menu-item-has-children .sub-menu a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
}

.mobileMenu .menuWrap .menu-item-has-children .sub-menu svg path {
	fill: #f67728;
}

.mobileMenu .menuWrap a {
	font-family: var(--text);
	font-size: 16px;
	color: #000;
}

.mobileMenu .menuWrap li.current-menu-item a {
	color: #f67728;
}

.mobileMenu .mobileLogin {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	background-color: #fff;
	border: solid #d9d9d9 1px;
	border-radius: 2rem 2rem 0 0;
}

.mobileMenu .mobileLogin a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

.mobileMenu .mobileLogin span {
	color: #000;
	font-weight: 600;
}

.mobileMenu .mobileLogin svg path {
	fill: #f67728;
}

.mobileMenu.open {
	right: 0;
}

.closeMenu {
	position: absolute;
	right: 0;
	top: 0;
	width: 88px;
	height: 88px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1.75rem;
	background: #fff;
	border-radius: 0 0 0 2rem;
	border: solid #d9d9d9 1px;
}

.closeMenu .closeToggle {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 1.5px;
	background-color: #000;
	transform: rotate(45deg);
}

.closeMenu .closeToggle::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 1.5px;
	background-color: #000;
	transform: rotate(-90deg);
}