.mobileNav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	background-color: #28b47e;
    padding: 22px 14px !important;
    border-radius: 30px;
    height: auto !important;
}

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

.mobileNav .navToggleWrap {
	position: relative;
	width: 18px;
	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: flex-start;
	align-items: flex-start;
	width: 100%;
	height: 100%;
	padding: 6rem 2rem;
	overflow-y: scroll;
}

.mobileMenu .menuWrap{
	width: 100%;
}

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

.mobileMenu .menuWrap li {
	height: fit-content;
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: flex-start;
	overflow: hidden;
	width: 100%;
	position: relative;
	line-height: 32px;
}

.mobileMenu .menuWrap .menu-item-has-children .sub-menu {
    padding: 0;
    width: 100%;
    padding-left: 0px !important;
    align-items: flex-start;
    display: block;
    margin-top: 10px;
    border-left: 2px solid #ffffff;
    position: relative;
    width: 100% !important;
    background-image: unset;
	background-color: transparent;
}

.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: var(--light);
	line-height: 30px;
}

.mobileMenu .mobileLogin {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem;
	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: var(--light);
	font-weight: 600;
}

.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;
	z-index: 9;
}

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

.mobileMenu .menuWrap li .submenu-icon {
    transition: .4s;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 4px;
    width: 30px;
    height: 30px;
	z-index: 0;
}

.mobileMenu .menuWrap li .submenu-icon span {
    line-height: normal;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobileMenu .menuWrap li .submenu-icon svg {
    rotate: -90deg;
    position: absolute;
    transition: .4s;
	height: 24px;
}

.mobileMenu .menu-item-has-children.active-nav .submenu-icon svg {
	rotate: 0deg
}

.mobileMenu.open {
	background-color: var(--secondary);
}
.mobileMenu .menuWrap li.current-menu-item > a {
    color: var(--light) !important;
    font-weight: 600 !important;
}
.mobileMenu .mobileLogin {
    background-color: var(--primary);
    border: none;
    border-radius: 0;
}
.mobileMenu .mobileLogin svg {
    width: 25px;
}
.mobileMenu .mobileLogin svg path{
	fill: var(--light);
}

@media (max-width:1199px) {
    .mobileMenu .menuWrap .menu-item-has-children .sub-menu {
        margin-left: 0;
    }
    .mobileNav {
       height: 40px;
    }
}