.header {
	height: 100px;
	display: flex;
}

.ui-nav {
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	box-shadow: 1px 1px 2px #acacac;
}

.logo img {
	height: 80%;
}

.menu ul {
	list-style: none;
	display: flex;
	background: rgba(255, 255, 255, 0.7);
}

.menu li {
	margin: 24px;
}

.menu a {
	text-decoration: none;
	color: #333;
	font-size: 16px;
	font-weight: bold;
	padding: 10px 0;
}

.menu a:hover {
	color: #f60;
}


.language-switch {
	font-size: 14px;
}

.language-switch a {
	color: #333;
	font-weight: bold;
}

.language-switch a.active {
	color: #f60;
}

.language-switch a:hover {
	color: #f60;
}

.nav-btn-box {
	height: 50px;
	width: 50px;
}

.nav-btn-box button svg {
	height: 100%;
	width: 100%;
	cursor: pointer;
}

.nav-btn-box button svg:hover {
	fill: #f60;
}

@media (max-width: 480px) {
    
}

@media (max-width: 960px) {
	.menu {
		position: absolute;
		width: 100%;
		top: 100px;
	}

	.menu ul {
		display: flex;
		flex-direction: column;
	}

	.menu ul li {
		margin: 12px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.menu ul li a {
		display: block;
		width: 100%;
		text-align: center;
	}

}

@media screen and (min-width:961px) and (max-width: 1280px) {
	.menu ul {
		display: flex;

	}

	.nav-btn-box {
		display: none;
	}
}

@media (min-width:1281px) {
	.menu ul {
		display: flex;

	}

	.nav-btn-box {
		display: none;
	}
}