/*********************************************************************************
level 1 start
***************/
.level_1 {
	list-style: none;
	display: flex;
}

.level_1 li {
	float: left;
	/* position:relative;*/
	margin: 0 !important;
}

.level_1 li a {
    position: relative;
	display: block;
	text-decoration: none;
	color: #000 !important;
	zoom: 1;
	padding: 10px 12px;
	font-size: 15px;
	font-weight:600;
	letter-spacing:1px;
	text-transform: capitalize;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}

.level_1>li>a::before {
    content: '';
    display: block;
    border-bottom: 3px solid #f05e23;
    position: absolute;
    z-index: 0;
    left: 15px;
    top: 0px;
    bottom: 0px;
    width: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-out;
}

.level_1 li.has-nav a {
	position: relative
}

.level_1 li.has-nav>a:after {
	font-family: 'FontAwesome';
	color: #dea309;
	margin-left:5px;
	text-align: center;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
	content: "\f0d7    ";
	font-weight: normal;
}

.level_1 > li > a:hover:before,
.level_1 > li > a.active:before,
.level_1 > li > a.nav-active:before {
    /* left: 0%;
    right: 0%; */
    width: 50%;
    /* background: #c72528; */
}

.level_1 li a:hover,
.level_1 li a.active,
.level_1 li a.nav-active,
.level_1 li a:hover:after,
.level_1 li a.active:after,
.level_1 li a.nav-active:after {
    color: #f05e23 !important;
}

/*********************************************************************************
level div start
***************/

.level_1 .level_div,
.level_1 .level_div_common {
	position: absolute;
	width: 200px;
	height: auto;
	max-height: 400px;
	overflow: auto;
	background: #fff;
	/*top:calc(100% - 20px);*/ 
	-webkit-box-shadow: 0px 15px 28px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 15px 28px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 15px 28px rgba(0, 0, 0, 0.2);
	display: none;
	z-index: 9;
}

.level_div_common {
	width: 200px !important;
	padding: inherit !important;
	left: inherit !important;
    overflow: inherit!important;
}

.level_div_common .level_2_data {
	padding: 10px 15px 0 !important;   overflow: inherit!important;
}

.level_div_common .level_2 li {
	float: none !important;
	 position:relative
}

.level_div_common .level_2 li a {
	font-weight: 600;
	border-bottom: 1px solid #eee;
	color: #121221 !important;
	padding: 10px 0 !important
}

.level_div_common .level_2 li:last-child a {
	border: 0;
}

.level_div_common .level_2 {
	-webkit-column-count: inherit;
	-moz-column-count: inherit;
	column-count: inherit;
}

.level_div_common .level_2 li a:after {
	background: #fff
}

.level_1 li:hover .level_div {
	display: block;
	-webkit-animation: nav-animate 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
	-moz-animation: nav-animate 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

@-webkit-keyframes nav-animate {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2em);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes nav-animate {
	0% {
		opacity: 0;
		-moz-transform: translateY(-2em);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

/*********************************************************************************
level 2 start
***************/
.level_2_data {
	height: auto;
	width: 100%;
	overflow: hidden;
	padding: 15px !important;
}

.level_2 {
	list-style: none;  
	/*list-style: none;
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	-webkit-column-gap: 40px;
	-moz-column-gap: 40px;
	column-gap: 40px;
	-webkit-column-rule: 1px solid #eee;
	-moz-column-rule: 1px solid #eee;
	column-rule: 1px solid #eee;*/
}

.level_2 li {
	/*float:left;
	width: 23%;
	height: auto;
	font-size:13px;
	white-space:nowrap;
	margin-right:20px !important;*/
	float: none;
	width: auto;
	height: auto;
}

/*
 .level_2 > li:nth-child(4n+1) {
clear: left;
}
.level_2 > li:nth-child(4n+4) {
 margin-right:0px !important;
} old*/

.level_2 li a {
	text-transform: capitalize;
	padding: 2px 2px !important;
	font-weight: 600;
	background: #fff;
	color: #666 !important;
	letter-spacing: inherit;
}

.level_2 li a:hover {
	background: #fff !important;
	color: #f05e23 !important
}

/*********************************************************************************
more then level 2 
***************/
.level_2 ul {
    margin: 0px !important;
    position: absolute;
    left: calc(100% + 15px);
    top: -10px;
    width: 170px;
    -webkit-box-shadow: 8px 15px 20px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 8px 15px 20px rgba(0, 0, 0, 0.2);
	box-shadow: 8px 15px 20px rgba(0, 0, 0, 0.2);
	display: none;
}


.level_2 ul li {
	float: none;
	display: block;
	width: 100%;
}

.level_2 ul li a {
	color: #999 !important;
}

.level_2 ul li a:before {
	content: " ";
	font: normal normal normal 6px/1 FontAwesome;
	color: #ccc;
	display: inline-block;
	opacity: 1;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
	width: 5px;
	margin-right: 10px;
}

.level_2 ul li a:hover:before {
	margin-right: 15px;
}

/*.level_2 ul li a:hover {
	display:block;
}
*/
.level_2 li:hover ul {
	display: block;
	-webkit-animation: nav-animate 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
	-moz-animation: nav-animate 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
}


@media only screen and (min-width:320px) and (max-width:767px) {
	.level_1 {
        display: none;
    }
	
}

@media only screen and (min-width:768px) and (max-width:991px) {
	.level_1 li a {
		padding: 8px 6px;
		font-size: 13px;
	}

}

@media only screen and (min-width:992px) and (max-width:1199px) {
	.level_1 li a {
		padding: 11px 6px;
		font-size: 14px;
	}
	
}