.menu_row
{
	display: flex;
	justify-content: space-between;
}
.logo
{
	margin-top: 5px;
	text-align: center;
	margin-left: 20px;
}
.logo a
{
	text-decoration: none;
	font-size: 4.5em;
	color: white;
	font-family: 'Parisienne', cursive;
}
.logo a:hover
{
	text-decoration: none;
	color: white;
}
.menu
{
	text-align: center;
	position: relative;
	margin: 0 10px;
}
.menu_for_phone
{
	display: none;
}

.menu_items
{
	display: flex;
	float: right;
	justify-content: space-around;
	padding:40px 0px;
}
.menu a
{
	text-decoration: none;
	color: white;
	opacity: 0.6;
	font-size: 1.2em;
	font-family: 'Exo 2', cursive;
}
.menu a:hover
{
	text-decoration: none;
	opacity: 1;
	color: white;
	font-size: 1.3em;
}
.submenu
{
	position: absolute;
	z-index: 1;
	width: 230%;
	height: 100%;
	font-size: 0.7em;
	display: none;
}

.sub:hover .submenu 
{
	display: block;
}
.sub_about_en:hover 
{
	min-height: 67px;
}