@media only screen and (max-width: 991px){
.nav-link.actives{
	background: #ECEDED;
	border-radius: 30px 0px 0px 30px;
	font-weight: 800;
}
.hide-desk{
    display: block;
}
.hide-mb{
	display: none;
}
.sub-menu{
    border: none;
    background: none;
}
.sub-menu li{
	width: 100%;
	padding: 0;
	padding-right: 15px;
	margin: 0;
}


.header .col-lg-8{
	margin: 0;
	padding: 0;
	position: fixed;
	right: 0;
	top: -50px;
	z-index: 999999;
	
} 
.header .fix-menu li{
    display: inline-block;
    margin: 5px 0px;
    width: 100%;
    border: none;
    text-align: right;
    background: #fff;
}
.header .fix-menu .nav-item a{
	color: #000;
	padding: 10px 15px;
	font-family:  Roboto-Regular;
}
.header .fix-menu .nav-item > a:first-child:hover{
	background: #ECEDED;
	border-radius: 30px 0px 0px 30px;
}
.header .fix-menu .nav-item > a:first-child{
	display: inline-block;
	width: 75%;
	text-align: right;
	padding-right: 20px;
}
.header .col-lg-8 .fix-menu{
	position: absolute;
	z-index: 999;
	right: 0;
	margin: 0;
	display: inline-block;
	width: 60%;
	background: #fff;
	height: 110vh;
	padding-top: 80px;
	overflow: scroll;
	animation: ani-menu 1s;
}
.header .col-lg-8 .fix-menu::-webkit-scrollbar{
	width: 0px;
}

div#navbarSupportedContent {
    background: rgba(0,0,0,0.3);
    height: 110vh;
}
#navbarSupportedContent.collapsing {
    transition: none;
}
#navbarSupportedContent.collapse.show {
	transition: none;
}

@keyframes ani-menu{
	from{
		right: -200px;
		opacity: 0;
	}
	to{
		right: 0px;
		opacity: 1;
	}
}

}