.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);
}