.logo img{
  height: 120px;
  padding: 5px;
}
.nav .nav-item:hover > a {
  color: var(--theme-primary-color);
}
.mega-menu {
display: block;
background: var(--theme-primary-color)!important;
-webkit-transform: scaleY(0);
-moz-transform: scaleY(0);
-o-transform: scaleY(0);
-ms-transform: scaleY(0);
transform: scaleY(0);
border: 0;
border-radius: 0;
width: max-content;
left: 0;
transition: all .2s ease-in-out;
}
.dropdown a.nav-link {border: 0}
.mega-menu .container {display: flex;}
.mega-menu li {
display: block;
margin: .5rem 0;
}
.dropdown{
	cursor: pointer;
}
.dropdown-menu a {
font-size: 12px;
color: #fff;
text-decoration: none !important;
font-weight: 500;
padding-left: 0
}
.dropdown .inner-menu a:hover{
	color: var(--theme-primary-color);
	background-color: #fff;
transition: all .2s ease-in-out;
}
.dropdown:hover .mega-menu {-webkit-transform: scaleY(1);-moz-transform: scaleY(1);-o-transform: scaleY(1);-ms-transform: scaleY(1);transform: scaleY(1);}
