.container-iqitmegamenu {
	padding: 0;
}

nav.menu {
	position: relative;
}
.menu > ul > li {
	display: inline-block;
	line-height: 3.125rem;
}
.menu > ul > li > a {
	text-decoration: none;
	display: block;
	padding: 0 1rem;
}
.menu > ul > li > a:hover {
	background: black;
	color: white !important;
	-webkit-transition: color 0.3s ease, background-color 0.3s ease;
	-moz-transition: color 0.3s ease, background-color 0.3s ease;
	-o-transition: color 0.3s ease, background-color 0.3s ease;
	transition: color 0.3s ease, background-color 0.3s ease;
}
.displaynone{
	display: none;
}
.mega-menu {
	/*background: none repeat scroll 0 0 #fff;*/
	background: white;
	left: 0;
	position: absolute;
	width: 100%;
	padding: 1rem;
	display: none;
	transition-duration: .4s;
	box-shadow: 0 4px 6px rgba(0,0,0,0.25);
	border: 1px solid #e1e1e1;
	border-top: 2px solid black;
	flex-direction: column;
	flex-wrap: wrap;
	line-height: 1.5rem;
	max-height: 80vh;
}
.mega-menu > ul {
	columns: 3;
}
.mega-menu .list {
	margin-left: .65rem;
}
.mega-menu .list.list-1 {
	margin-bottom: 1rem;
}
.mega-menu .list.list-2 {
	font-size: .85rem;
}
.display-on{
	display: flex;
	transition-duration: .4s;
}
.drop-down > a::after{
	font-family: FontAwesome;
	content: "\f107";
	font-style: normal;
	margin-left: 5px;
	line-height: 1rem;
}

/*Animation--*/
.animated {
	-webkit-animation-duration: .4s;
	animation-duration: .4s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}
