/* responsive nav for small devices */
.mbnav{
    height: 100%;
    margin-left: 15px;
}

.mbnav .hamburger {
	display: flex;
	height: 100%;
	width: 2.2em;
	padding: 0;
	margin: 0;
	font-size: 25px;
	background-color: transparent;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: all 0.3s ease 0s;
}
.mbnav .hamburger:hover, .mbnav .hamburger:focus {
	outline: none;
	cursor: pointer;
}
.mbnav .hamburger__line {
	position: absolute;
	left: 0px;
	display: block;
	width: 1.3em;
	height: 3px;
	background-color: #3a4c56;
    /* transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6); */
    transition: all 0.3s ease 0s;
}
.mbnav .hamburger__line:nth-child(1){
	top: 20%;
}
.mbnav.is-open .hamburger__line:nth-child(1){
    top: 18px;
	transform: rotate(45deg);
}
.mbnav .hamburger__line:nth-child(2){
	top: 47%;
}
.mbnav.is-open .hamburger__line:nth-child(2){
    left: 18px;
	width: 0;
}
.mbnav .hamburger__line:nth-child(3){
	top: 74%;
}
.mbnav.is-open .hamburger__line:nth-child(3){
    top: 18px;
	transform: rotate(-45deg);
}
.mbnav .hamburger__wrap {
	display: block;
	width: 1.3em;
	height: 1.5em;
	position: relative;
}

.mbnav .mbnav__state {
    position: fixed;
	top: var(--headerHeight);
	left: 100%;
	z-index: 999;
	width: 100%;
    height: calc(100% - var(--headerHeight));
    padding-top: 30px;
    background-color: #ffffff;
	transition: all 0.3s ease-in-out;
}
.mbnav .mbnav__state.sticky{
}
.mbnav.is-open .mbnav__state {
    left: 0;
}
.mbnav .mbnav__inner {
    max-height: 100vh;
	overflow-y: auto;
    height: 100%;
    
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
}
.mbnav .mbnav__inner ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.mbnav .mbnav__inner > ul {
    padding: 0 20px;
}
.mbnav .mbnav__inner > ul > li {
    padding: 0;
	margin: 0;
	list-style: none;
    
	font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: unset;
    border-bottom: 1px solid #999999;
}
.mbnav .mbnav__inner > ul > li:last-child {
    border-bottom: unset
}
.mbnav .mbnav__inner > ul > li > a {
	display: flex;
    align-items: center;
	padding: 0.7em 1.50em 0.7em 0;
	line-height: 1.3;
	text-decoration: none;
	font-weight: 400;
	color: #3a4c56;
    width: calc(100% - 110px);
    text-transform: uppercase;
}
.mbnav .mbnav__caret, .mbnav .mbnav__caret_left {
    position: relative;
	display: flex;
	width: 100px;
	height: 44px;
	cursor: pointer;
}
.mbnav .mbnav__caret:not(.trigger-caret) {
    pointer-events: none;
}
.mbnav .mbnav__caret:after, .mbnav__caret:before{
    position: absolute;
	content: '';
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: block;
	margin: auto;
	width: 1em;
	height: 2px;
	background: #3a4c56;
}
.mbnav .mbnav__caret:after{
    transform: rotate(-90deg);
	transition: all 0.2s ease;
}
.mbnav .mbnav__inner > ul > li.is-open > .mbnav__caret:after{
    transform: rotate(0);
}

.mbnav .mbnav__caret_left:after, .mbnav__caret_left:before {
    position: absolute;
	content: '';
	top: 0;
	left: -4px;
	bottom: 0;
	right: 0;
	display: block;
	margin: auto;
	width: 0.6em;
	height: 2px;
	background: #007dc5;
}
.mbnav .mbnav__caret_left:after {
    transform: rotate(-45deg) translateY(4px);
}
.mbnav .mbnav__caret_left:before {
    transform: rotate(45deg) translateY(-4px);
}

.mbnav .mbnav__inner > ul > li > ul{
    display: none;
    width: 100%;
    padding-left: 10px;
}
.mbnav .mbnav__inner > ul > li > ul > li {
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: unset;
}
.mbnav .mbnav__inner > ul > li > ul > li > a {
    display: flex;
    align-items: center;
	padding: 0.7em 1.50em 0.7em 0;
	line-height: 1.3;
	text-decoration: none;
	font-weight: 400;
    width: calc(100% - 110px);
    color: #007dc5;
}
.mbnav .mbnav__inner > ul > li > ul > li > ul{
    position: absolute;
    left: 100%;
    top: 0;
    width: 0%;
    /* height: calc(100vh - 100px); */
    height: 100%;
    padding: 40px 0px 20px 0px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease 0s;
    overflow-x: hidden;
    z-index: 1;
}
.mbnav .mbnav__inner > ul > li > ul > li.is-open > ul{
    width: 100%;
    left: 0%;
    padding: 40px 20px 40px 20px;
}
.mbnav .mbnav__inner > ul > li > ul > li > ul em.mbnav__caret_right{
    position: absolute;
    top: 0;
    left: 20px;
    z-index: 1;
    height: 30px;
    width: 30px;
    background-color: #e5e5e5;
    cursor: pointer;
}
.mbnav .mbnav__inner > ul > li > ul > li > ul em.mbnav__caret_right::before,
.mbnav .mbnav__inner > ul > li > ul > li > ul em.mbnav__caret_right::after{
    position: absolute;
	content: '';
	top: 0;
	left: 3px;
	bottom: 0;
	right: 0;
	display: block;
	margin: auto;
	width: 0.6em;
	height: 2px;
	background: #007dc5;
}
.mbnav .mbnav__inner > ul > li > ul > li > ul em.mbnav__caret_right::before{
    transform: rotate(-45deg) translateY(-4px);
}
.mbnav .mbnav__inner > ul > li > ul > li > ul em.mbnav__caret_right::after{
    transform: rotate(45deg) translateY(4px);
}

.mbnav .mbnav__inner > ul > li > ul > li > ul > li{
    display: flex;
    width: calc(100vw - 40px);
    flex-direction: column;
}
.mbnav .mbnav__inner > ul > li > ul > li > ul > li > a{
    pointer-events: none;
    color: #007dc5;
    font-weight: 500;
    padding: 0px 0 8px 0;
}
.mbnav .mbnav__inner > ul > li > ul > li > ul > li > ul{
    display: flex;
    flex-direction: column;
}
.mbnav .mbnav__inner > ul > li > ul > li > ul > li > ul > li{
    display: flex;
    flex-direction: column;
    border-top: 1px solid #999999;
}
.mbnav .mbnav__inner > ul > li > ul > li > ul > li > ul > li > a{
    font-size: 14px;
    text-transform: uppercase;
    color: #3a4c56;
    font-weight: 600;
    margin: 12px 0 4px 0;
}
.mbnav .mbnav__inner > ul > li > ul > li > ul > li > ul > li > ul{
    display: flex;
    flex-direction: column;
}
.mbnav .mbnav__inner > ul > li > ul > li > ul > li > ul > li > ul li{
    display: flex;
    flex-direction: column;
}
.mbnav .mbnav__inner > ul > li > ul > li > ul > li > ul > li > ul li a{
    font-size: 14px;
    color: #3a4c56;
    font-weight: 300;
    margin: 4px 0 4px 0;
}

.mbnav .mbnav__footer {
    padding: 1em 1.50em 20px 1.50em;
    display: flex;
    justify-content: center;
}
.mbnav .mbnav__footer .mbnave-footer-btn{
    background-color: #007dc5;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    /* min-width: 106px; */
    min-height: 31px;
    font-weight: 400;
    border-radius: 40px;
    font-size: 14px;
    display: none;
    
    min-width: 150px;
    padding : 8px;
}
.mbnav .fa{
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 767px) {
    .mbnav .hamburger{
        width: 1.3em;
    }
    .mbnav .hamburger__wrap {
        width: 1.3em;
        height: 1.3em;
    }
    .mbnav .hamburger__line {
        width: 1.3em;
    }
    
    .mbnav.is-open .hamburger__line:nth-child(1){
        top: 15px;
    }
    .mbnav.is-open .hamburger__line:nth-child(2){
        left: 18px;
    }
    .mbnav.is-open .hamburger__line:nth-child(3){
        top: 15px;
    }

    .mbnav .mbnav__inner > ul > li > a{
        width: calc(100% - 60px);
        font-size: 14px;
    }
    .mbnav .mbnav__caret{
        width: 50px;
    }
    .mbnav .mbnav__inner > ul > li > ul > li > a{
        width: calc(100% - 60px);
        font-size: 14px;
    }
    .mbnav .mbnav__caret, .mbnav .mbnav__caret_left{
        width: 50px;
        height: 36px;
    }
    .mbnav .mbnav__inner > ul > li > ul > li > ul > li > a{
        font-size: 14px;
    }
    .mbnav .mbnav__footer .button{
        width: 100%;
    }
}
@media screen and (max-width: 475px) {
    .mbnav .mbnav__footer .mbnave-footer-btn{
        display: flex;
    }
}