.topmenu {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	justify-content: center;
	padding: 0 20px;
	width: 100%;
}
.topmenu > div {
	align-items: center;
	box-sizing: border-box;
	justify-content: flex-end;
	max-width: 1790px;
	width: 100%;
}

/* menu-top */

.topmenu .menu-top {
	height: 100%;
	position: relative;
	z-index: 1100;
}
.topmenu .menu-top ul {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: outside none none;
	margin: 0;
	padding: 0;
}
.topmenu .menu-top > ul {
	gap: 0 5px;
	height: 100%;
}
.topmenu .menu-top ul li {
	position: relative;
}
.topmenu .menu-top > ul > li {
	align-items: center;
	display: flex;
}
.topmenu .menu-top > ul > li > a {
	border-radius: 26px;
	box-sizing: border-box;
    color: #fff;
	display: block;
	font-family: 'Tahoma';
	font-size: 16px;
	font-weight: bold;
	padding: 28px 35px;
	position: relative;
	text-align: center;
	text-decoration: none;
}
.topmenu .menu-top > ul > li:hover > a {
	background-color: #f60;
}

/* menu-top end */

/* @media(max-width: 1290px){
	.topmenu .link{
		display: none;
	}
	.topmenu .image.tree{
		display: none;
	}
	.topmenu .menutop,
	.topmenu .menutop > div{
		width: 100%;
	}
	.topmenu .menu-top > ul > li:nth-child(3){
		margin: 0px 90px 0px 0px;
	}
}

@media(max-width: 880px){
	.topmenu .menu-top > ul > li{
		margin: 0px 20px 0px 20px;
	}
	.topmenu .menu-top > ul > li:nth-child(3){
		margin: 0px 20px 0px 20px;
	}
}

@media(max-width: 660px){
	.topmenu{
		height: 220px;
	}
	.topmenu > div{
		align-items: flex-start;
	}
	.topmenu .menu-top{
		padding: 0px;
	}
	.topmenu .menu-top ul{
		justify-content: space-around;
	}
	.topmenu .menu-top > ul > li {
		display: flex;
		flex-direction: column;
		margin: 0px 20px 0px 20px;
		width: calc(50% - 40px);
	}
	.topmenu .menu-top > ul > li:hover::after {
		display: none;
	}
	.topmenu .menu-top > ul > li > a{
		top: 10px;
	}
} */