.menu-collapser {
    position: relative;
    width: 100%;
    clear: both;
    height: 60px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display: none;
}

#mega-menu-holder {
    display: block;
    width: auto;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
#mega-menu-holder:before, #mega-menu-holder:after {
    content: '';
    display: table;
}
#mega-menu-holder:after {
    clear: both;
}

#mega-menu-holder li {
    position: relative;
    float: left;
    /* display: inline-block; */
}
#mega-menu-holder>ul> li> a {
    font-size: 16px;
    font-weight: 500;
    color: #323131;
    padding: 0 20px;
    line-height: 45px;
    text-transform: capitalize;
    position: relative;
}
/* #mega-menu-holder>ul> li> a:hover, #mega-menu-holder>ul> li .active{
    border-bottom: 1px solid #f8c218;
} */
.menu-bg{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0,.5);
    top:0;
    left: 0;
    display: none;
}
#mega-menu-holder .mobile, #mega-menu-holder .logo{
    display: none;
}


@media (max-width: 991px) {
    .right-content{
        display: none;
    }
    .seo-theme .theme-main-menu .logo{
        position: absolute;
        height: 40px;
        width: 149px;
        top: 10px;
    }
    .seo-header .top-header{
        display: none;
    }
    #mega-menu-holder .logo{
        display: block;
    }
    #mega-menu-holder .mobile{
        margin-top: 20px;
        display: block;
    }
    #mega-menu-holder .mobile ul{
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    #mega-menu-holder .mobile li{
        line-height: 30px;
        width: 45%;
        background:  #f8c218;
        text-align: center;
    }
    #mega-menu-holder .mobile li:hover{
        background-color: #293953;
    }
    #mega-menu-holder .mobile li a{
        color: #fff;
    }
    #mega-menu-holder .mobile li .iconfont{
        margin-right: 5px;
    }
  #mega-menu-holder {
        background: #fff;
        height: 100%;
        overflow-y:auto;
        left: 0;
        position: fixed;
        width: 60%;
        left: -60%;
        top: 0;
        padding: 70px 25px 0;
        animation: 2s;
    }
 #mega-menu-holder>ul> li .active{
        color: #f8c218;
        border-bottom: 1px solid #f0f0f0;
    }
    .menu-collapser {
        position: relative;
        width: 100%;
        clear: both;
        height: 60px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        display: block;
    }
    #mega-menu-holder li {float: none;}
    #mega-menu-holder>ul> li> a {
        color: #000;
        width: 100%;
        padding: 0 25px;
        display: block;
        border-bottom: solid 1px #f0f0f0;
        margin: 0;
        line-height: 45px;
        font-size: 15px;
    }
    #mega-menu-holder>ul> li:last-child> a {border: none;}
    /* #mega-menu-holder>ul> li:first-child> a {border-top: 1px solid #f0f0f0;} */
    #mega-menu-holder li .sub-toggle,
    .business-header .theme-main-menu.fixed #mega-menu-holder li .sub-toggle {
        color: #fff;
        border-left: solid 1px #f0f0f0;
        width: 60px;
        line-height: 46px;
        right: 0;
        top:0;
    }
    #mega-menu-holder li>ul.dropdown {
        border: none !important;
        position: static;
        width: 100%;
    }
}
/*(max-width: 991px)*/

.burger {
	height: 45px; 
	width: 30px;
	position: absolute;
    cursor: pointer;
    right: 0;
    z-index: 999;	
}
.x, .y, .z {
        position: absolute; 
        margin: auto;
		top: 0px; bottom: 0px;		
		background: #f8c218;
		border-radius:2px;
		-webkit-transition: all 200ms ease-out;
		   -moz-transition: all 200ms ease-out;
		    -ms-transition: all 200ms ease-out;
		     -o-transition: all 200ms ease-out;
		        transition: all 200ms ease-out;
	}		
    .x, .y, .z {
		height: 3px;
		width: 26px;
		-webkit-transition: all 100ms ease-out;
		   -moz-transition: all 100ms ease-out;
		    -ms-transition: all 100ms ease-out;
		     -o-transition: all 100ms ease-out;
		        transition: all 100ms ease-out;
    }
	.y.squize{
		width:0;
		-webkit-transition: all 100ms ease-out;
		   -moz-transition: all 100ms ease-out;
		    -ms-transition: all 100ms ease-out;
		     -o-transition: all 100ms ease-out;
		        transition: all 100ms ease-out;
	}
	.y{top: 18px;}
	.z{top: 37px;}	 
	
	.open .x, .open .z{
		top:19px;
		-webkit-transition: all 70ms ease-out;
		   -moz-transition: all 70ms ease-out;
		    -ms-transition: all 70ms ease-out;
		     -o-transition: all 70ms ease-out;
		        transition: all 70ms ease-out;
	}
	
	.rotate30{		
		-ms-transform: rotate(30deg); 
    	-webkit-transform: rotate(30deg); 
	    transform: rotate(30deg);	
		-webkit-transition: all 70ms ease-out;
		   -moz-transition: all 70ms ease-out;
		    -ms-transition: all 70ms ease-out;
		     -o-transition: all 70ms ease-out;
		        transition: all 70ms ease-out;					
	}
	.rotate150{
		-ms-transform: rotate(150deg); 
    	-webkit-transform: rotate(150deg); 
	    transform: rotate(150deg);	
		-webkit-transition: all 70ms ease-out;
		   -moz-transition: all 70ms ease-out;
		    -ms-transition: all 70ms ease-out;
		     -o-transition: all 70ms ease-out;
		        transition: all 70ms ease-out;					
	}
	
	.rotate45{
		-ms-transform: rotate(45deg); 
    	-webkit-transform: rotate(45deg); 
	    transform: rotate(45deg);	
		-webkit-transition: all 100ms ease-out;
		   -moz-transition: all 100ms ease-out;
		    -ms-transition: all 100ms ease-out;
		     -o-transition: all 100ms ease-out;
		        transition: all 100ms ease-out;					
	}
	.rotate135{
		-ms-transform: rotate(135deg); 
    	-webkit-transform: rotate(135deg); 
	    transform: rotate(135deg);	
		-webkit-transition: all 100ms ease-out;
		   -moz-transition: all 100ms ease-out;
		    -ms-transition: all 100ms ease-out;
		     -o-transition: all 100ms ease-out;
		        transition: all 100ms ease-out;					
    }
    
.animate{
	-webkit-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	   -moz-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	    -ms-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	     -o-transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	        transition: all 500ms cubic-bezier(0.000, 0.995, 0.990, 1.000);	
}

#mega-menu-holder>ul> li> a:nth-of-type(1){transition-delay: 0.0s;}
#mega-menu-holder>ul> li> a:nth-of-type(2){transition-delay: 0.06s;}
#mega-menu-holder>ul> li> a:nth-of-type(3){transition-delay: 0.12s;}
#mega-menu-holder>ul> li> a:nth-of-type(4){transition-delay: 0.18s;}
#mega-menu-holder>ul> li> a:nth-of-type(5){transition-delay: 0.24s;}