/**********************************************************************/
/**********************************************************************/
.mobmenu {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: none;
	background-color: #FFFFFF;
	opacity: 0;
	pointer-events: none;
	z-index: 1500;
	transition: opacity 0.3s;
}
body.admin-bar .mobmenu {
	top: 32px;
}
.mobmenu__content {
	height: 100%;
}

/**********************************************************************/
.mobmenu__head {
	position: relative;
	display: flex;
	height: 100px;
}
.mobmenu__head:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 1px;
	background-color: #BFBFBF;
}

/**********************************************************************/
.mobmenu__langs {
	position: absolute;
	left: 0;
	top: 0;
	display: none;
	max-height: 50px;
	padding: 10px 10px 20px;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
	background-color: #C5DCEB;
	transition: max-height 0.3s;
}
.mobmenu__langs.open {
	max-height: 120px;
}
.mobmenu__langs .langs__content {
	display: flex;
	flex-direction: column;
	width: 30px;
	max-height: 20px;
	padding: 0;
	list-style: none;
	overflow: hidden;
	transition: max-height 0.3s;
}
.mobmenu__langs.open .langs__content {
	max-height: 80px;
}
.mobmenu__langs .langs__content .lang-item {
	margin-top: 10px;
}
.mobmenu__langs .langs__content .lang-item.current-lang {
	margin-top: 0;
	order: -1;
	pointer-events: none;
}
.mobmenu__langs .langs__content .lang-item a {
	display: block;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 15px;
	line-height: 20px;
	text-transform: capitalize;
	text-align: center;
	color: #3F7C94;
	transition: color 0.3s;
}
.mobmenu__langs .langs__content .lang-item a:hover,
.mobmenu__langs .langs__content .lang-item.current-lang a {
	color: #FFFFFF;
}

/**********************************************************************/
.mobmenu__logo {
	margin: auto;
}
.mobmenu__logo:hover {
	opacity: 0.6;
}
.mobmenu__logo svg {
	width: 300px;
}
.mobmenu__logo svg path {
	fill: #00A547;
}

/**********************************************************************/
.mobmenu__close {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	width: 30px;
	height: 30px;
	cursor: pointer;
	z-index: 10;
	transition: opacity 0.3s;
}
.mobmenu__close:hover {
	opacity: 0.6;
}
.mobmenu__close img {
	width: 200%;
	margin: auto;
}

/**********************************************************************/
.mobmenu__menu {
	width: 300px;
	height: calc(100% - 160px);
	max-width: 100%;
	margin: 30px auto;
	padding-right: 10px;
	overflow: auto;
}
.mobmenu__menu .menu__list {
	display: flex;
	flex-direction: column;
	padding: 0;
	list-style: none;
}
.mobmenu__menu .menu__list .menu-item {
	display: flex;
	flex-wrap: wrap;
	margin-right: auto;
	margin-bottom: 5px;
}
.mobmenu__menu .menu__list .menu-item:last-child {
	margin-bottom: 0 !important;
}
.mobmenu__menu .menu__list .menu-item a {
	margin-right: 10px;
	padding: 10px 0;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #424A5F;
	transition: opacity 0.3s;
}
.mobmenu__menu .menu__list .menu-item a:hover {
	opacity: 0.6;
}
.mobmenu__menu .menu__list .menu-item span {
	display: none;
}
.mobmenu__menu .menu__list .menu-item.menu-item-has-children a + span {
	display: block;
	width: 30px;
	height: 40px;
	margin: auto 0;
	background-image: url(../../img/icons/mobmenu-arr.png);
	background-position: center;
	background-size: 10px;
	background-repeat: no-repeat;
	transition: transform 0.3s, opacity 0.3s;
	cursor: pointer;
}
.mobmenu__menu .menu__list .menu-item.menu-item-has-children a + span:hover {
	opacity: 0.6;
}
.mobmenu__menu .menu__list .menu-item.menu-item-has-children.open a + span {
	transform: scaleY(-1);
}
.mobmenu__menu .menu__list .menu-item.menu-item-has-children .sub-menu {
	display: none;
	width: 100%;
	margin: 15px 0 0 20px;
	padding: 0;
	list-style: none;
	transition: opacity 0.3s;
}
.mobmenu__menu .menu__list .menu-item.menu-item-has-children .sub-menu .menu-item {
	margin-bottom: 5px;
}
.mobmenu__menu .menu__list .menu-item.menu-item-has-children .sub-menu .menu-item a {
	padding: 5px 0;
	font-size: 15px;
}

/**********************************************************************/
.mobmenu__btn {
	display: none;
	width: 200px;
	margin: 0 auto 50px;
	padding: 10px;
	border: 2px solid #2C4080;
	border-radius: 25px;
	background-color: #FFFFFF;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 26px;
	color: #2C4080;
	text-align: center;
	transition: background-color 0.3s, color 0.3s;
}
.mobmenu__btn:hover {
	background-color: #2C4080;
	color: #FFFFFF;
}




/**********************************************************************/
/*********************         RESPONSIVE         *********************/
/**********************************************************************/
@media screen and (max-width: 1024px) {
	/******************************************************************/
	/******************************************************************/
	.mobmenu {
		display: block;
	}
	body.show-menu .mobmenu {
		opacity: 1;
		pointer-events: initial;
	}
}


@media screen and (max-width: 782px) {
	/******************************************************************/
	/******************************************************************/
	body.admin-bar .mobmenu {
		top: 46px;
	}
}


@media screen and (max-width: 767px) {
	/******************************************************************/
	/******************************************************************/
	.mobmenu__head {
		height: 70px;
	}

	/******************************************************************/
	.mobmenu__langs {
		display: flex;
	}

	/******************************************************************/
	.mobmenu__logo svg {
		width: 160px;
	}

	/******************************************************************/
	.mobmenu__close {
		width: 20px;
		height: 20px;
	}
	.mobmenu__close img {
		width: 20px;
	}

	/******************************************************************/
	.mobmenu__menu {
		height: calc(100% - 230px);
	}
	.mobmenu__menu .menu__list .menu-item.menu-item-has-children .sub-menu .menu-item {
		margin-bottom: 10px;
	}

	/******************************************************************/
	.mobmenu__btn {
		display: block;
	}
}