
@media all {
	.f-menu {
		display: flex;
		margin: 0 -15px;
	}
	.f-menu-item {
		flex: 1 auto;
		margin: 0 15px;
	}
	.f-menu-item__title {
		font-size: 18px;
		font-weight: 700;
		color: #fff;
		text-decoration: none;
		margin-bottom: 18px;
		display: block;
		white-space: nowrap;
		position: relative;
		text-transform: uppercase;
	}
	.f-menu-item__title:hover {
		color: #fff;
		text-decoration: underline;
	}
	.f-menu-item__submenu {
		font-size: 16px;
		line-height: 1.3;
		margin-top: 22px;
	}
	.f-menu-item__submenu-item {
		color: #cccccc;
	}
	.f-menu-item__submenu-item + .f-menu-item__submenu-item {
		margin-top: 15px;
	}
	.f-menu-item__submenu-item a {
		color: #cccccc;
		text-decoration: none;
	}
	.f-menu-item__submenu-item a:hover {
		text-decoration: underline;
		color: #fff;
	}
	.f-menu-item__open-submenu {
		display: none;
	}

	.f-menu-item__submenu-item._more {
		margin-top: 20px;
	}
	.f-menu-item__submenu-item._more a {
		color: #7a7a7a;
	}
	.f-menu-item__submenu-item._more a:hover {
		color: #fff;
	}
}
@media (max-width: 1023px) {
	.f-menu {
		flex-direction: column;
		margin-bottom: -5px;
	}
	.f-menu-item__submenu {
		display: none;
	}
	.f-menu-item:first-child .f-menu-item__title {

	}
	.f-menu-item__title {
		margin-bottom: 15px;
	}
	.f-menu-item__open-submenu {
		display: inline-flex;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		right: 0;
		width: 30px;
		font-size: 18px;
		align-items: center;
		justify-content: center;
		border-left: 1px solid #6d695e;
	}
}