.nav_menu {
	z-index: 4;
}

.nav_menu>* {
	cursor: pointer;
	margin-top: 13px;
	margin-right: 30px;
}

@media screen and (min-width: 1200px) {
	.nav_menu>* {
		margin-right: 38px;
	}
}

.nav_menu a {
	color: #3f3f3f;
}

.dropdown:hover>.dropdown-menu {
	display: block;
}

.dropdown-menu {
	left: -33px;
	font-size: 14px;
	background: white;
	background: -moz-linear-gradient(top, white 0%, whitesmoke 37%, #7e8ef7 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, white), color-stop(37%, whitesmoke), color-stop(100%, #7e8ef7));
	background: -webkit-linear-gradient(top, white 0%, whitesmoke 37%, #7e8ef7 100%);
	background: -o-linear-gradient(top, white 0%, whitesmoke 37%, #7e8ef7 100%);
	background: -ms-linear-gradient(top, white 0%, whitesmoke 37%, #7e8ef7 100%);
	background: linear-gradient(to bottom, white 0%, whitesmoke 37%, #7e8ef7 100%);
	border-bottom: unset;
	border-top: unset;
	top: auto;
}

.dropdown-menu>* {
	padding: 3px 30px 3px 33px;
	text-decoration: underline;
	position: relative;
	text-decoration: underline;
}

.dropdown-menu>*:after {
	display: block;
	content: attr(title);
	font-weight: bold;
	height: 1px;
	color: transparent;
	overflow: hidden;
	visibility: hidden;
}

.dropdown-menu>*:hover {
	background: unset;
	font-weight: bold;
}

.dropdown-menu>*:hover:before {
	position: absolute;
	content: '';
	left: 20px;
	top: 50%;
	margin-top: -4px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 8px;
	border-color: transparent transparent transparent #0022ff;
}