.top_menu{
	position: relative;
}
.top_menu .top_menu_item{
	display:inline-block;
}
.top_menu a{
	display:inline-block;
	height: auto;
	font-weight: 500;
	font-size: 17px;
	line-height:46px;
	color:#121212;
	padding:0 20px;
	border-radius:30px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.top_menu a + a{
	margin-left:10px;
}
.top_menu a:hover{
	color:#74BC4D;
}

.top_menu a.parent{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	-webkit-flex-wrap: nowrap;
}

.top_menu a.parent:after{
	content: '';
	width: 10px;
	height: 7px;
	background: url(image/arrow-icon.svg) no-repeat;
	position: absolute;
	right: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.top_menu .top_menu_item:hover a.parent:after{
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.top_menu ._menu .top_menu{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	-webkit-flex-wrap: nowrap;
}

.top_menu .top_menu_item ul{
	margin: 0;
	padding: 0;
	opacity: 0;
	top: 48px;
	z-index: -1;
	position: absolute;
	background: #fff;
	box-shadow: 0 5px 20px 0 rgba(18, 25, 38, 0.1);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.top_menu .top_menu_item:hover ul{
	opacity: 1;
	z-index: 1000;
}

.top_menu .top_menu_item ul li{
	list-style: none;
}

.top_menu .top_menu_item ul li a{
	width: 100%;
	height: unset;
	padding: 16px 20px;
	border-bottom: 1px solid #f3f7f7;
	border-radius: 0;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
}
