.menu-sitemap-tree {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
	position: relative;
}

.menu-sitemap-tree .menu-has-child ul {
	position: absolute;
	opacity: 0;
	transition: .5s;
	background: #fff;
	z-index: 30;
	list-style: none;
	padding: 32px 37px;
	pointer-events: none;
	box-shadow: 0px 4px 21px rgba(158, 166, 177, 0.31);
	border-radius: 10px;
	column-count: 2;
	margin-top: 25px;
}
.menu-sitemap-tree .menu-has-child ul li {
	    margin-bottom: 30px;
}
.menu-sitemap-tree .menu-has-child ul a {
	font-weight: bold;
	font-size: 16px;
	text-transform: uppercase;
	color: #344052;
    letter-spacing: 0.9px;
}
.menu-sitemap-tree .menu-has-child:hover:before {
	content: '';
	width: 100%;
	height: 30px;
	left: 0;
	bottom: -30px;
	position: absolute;
}
.menu-sitemap-tree .menu-has-child:hover ul {
	opacity: 1;
	pointer-events: auto;
}
.menu-sitemap-tree .toggle {
	font-weight: bold;
    display: inline-block;
	vertical-align: middle;
    font-size: 13px;
    transition: .3s;
}
.menu-sitemap-tree a {
	font-weight: bold;
	font-size: 16px;
	line-height: 22px;
	color: #344052;
	padding: 0 4px;
	transition: .4s;
}
.menu-sitemap-tree li:hover .toggle{
	transform: rotate(180deg);
	color:#FE793D;
	margin-bottom: 3px;
}
.menu-sitemap-tree li:hover > a,
.menu-sitemap-tree a:hover {
	color:#FE793D;
}
@media screen and (max-width: 1350px) {
	.menu-sitemap-tree .menu-has-child ul {
		padding: 15px 20px;
	}
}
@media screen and (max-width: 1190px) {
	.menu-sitemap-tree {
		padding-top: 30px;
	}
	.menu-sitemap-tree a{
	    color: #fff;
    	font-weight: normal;
	    padding: 7px 28px;
   		display: block;
	}
	.menu-sitemap-tree a:first-child{

	}
    
}