.nav-menu {
	padding: 24px 0;
}
.menu-list{
	margin-right: 20px;
}
.menuFixed {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 999;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .5);
	padding: 10px 0;
	max-height: 60px;
}
.menuFixed .logo img {
	width: 50%;
}
@media (max-width: 575px) {
	.menuFixed .logo img {
		width: 55%;
	}
 	.menuFixed {
		max-height: 45px;
	}
}
@media (max-width: 480px) {
	.menuFixed .logo img {
		width: 65%;
	}
}
.menuFixed .menu-list li a {
	padding: 0 5px;
	margin: 0 4px;
	font-size: 16px;
}
.menu-list li a {
	padding: 0 6px;
	margin: 0 6px;
	z-index: 1;
	position: relative;
}
.burger-menu {
	width: 26px;
	height: 20px;
}
.burger-menu span {
	width: 100%;
	height: 1px;
	background: #434343;
	border-radius: 3px;
	display: block;
	margin-left: auto;
}
.burger-menu span:first-child {
	width: 20px;
	margin-bottom: 8px;
}
.burger-menu span:last-child {
	width: 15px;
	margin-top: 8px;
}
.active-link {
	position: relative;
}
.active-link:after {
	content: '';
	position: absolute;
	left: 50%;
	top: -2px;
	transform: translate(-50%);
	width: 28px;
	height: 28px;
	background: #F6F6F6;
	border: 1px solid transparent;
	border-radius: 50px;
	z-index: -1;
}
/*
.menu-list li a:before {
	content: '';
	position: absolute;
	left: 50%;
	top: -2px;
	transform: translate(-50%);
	width: 27px;
	height: 27px;
	border-radius: 50px;
	z-index: -1;
	background: #FFFFFF;
	border: 1px solid #F6F6F6;
	opacity: 0;
	transition: .4s;
}

.menu-list li a:hover:before {
	opacity: 1;
	transition: .4s;
}*/
@media (max-width: 1199px) {
 	.menu-list li a {
	    padding: 0 4px;
	    margin: 0 4px;
	}
}