.header {
	position: fixed !important;
	min-height: auto !important;
	z-index: 3000;
	top: 0;
	left: 0;
	right: 0;
	background: var(--white-dark);
}
a.logo {
	text-decoration: none;
	background-image: url("../images/firma-london-logo.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	display: block;
	width: 100%;
	max-width: 155px;
	min-height: 28px;
	max-height: 28px;
	margin-top: 21px;
	margin-bottom: 21px;
}
.menue-btn {
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	text-align: right;
	padding: 26px 20px 26px 20px;
	cursor: pointer;
	text-transform: uppercase;
	color: var(--black);
	position: fixed;
	z-index: 3100;
	top: 0;
	right: 0;
	width: 80px;
}
.search {
	padding: 22px 20px 22px 20px;
	position: absolute;
	top: 0;
	right: 80px;
	width: 80px;
	z-index: 3100;
	cursor: pointer;
}
@media (min-width: 1200px) {
	.search {
		right: 0px;
		z-index: 5100;
	}
}
.icon-search {
	font-size: 16px;
}
@media (min-width: 768px) {
	a.logo {
		max-width: 195px;
	}
}
.navigation {
	position: fixed;
	top: 64px;
	bottom: 0;
	left: -100vw;
	width: 100vw;
	z-index: 5000;
	background: var(--white-dark);
	-webkit-transition: all 400ms ease-in;
	-moz-transition: all 400ms ease-in;
	-ms-transition: all 400ms ease-in;
	-o-transition: all 400ms ease-in;
	transition: all 400ms ease-in;
}
.navigation.open {
	left: 0;
	-webkit-transition: all 400ms ease-in;
	-moz-transition: all 400ms ease-in;
	-ms-transition: all 400ms ease-in;
	-o-transition: all 400ms ease-in;
	transition: all 400ms ease-in;
	overflow-y: auto;
	z-index: 5000;
}
.navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.navigation ul li {
	list-style: none;
	margin-bottom: 0;
}
.navigation ul li a {
	list-style: none;
	display: block;
	color: var(--black);
	font-weight: 500;
	font-size: 18px;
	line-height: 20px;
	text-transform: uppercase;
	padding: 15px 0px 15px 0px;
}
.navigation ul li.active a {
	color: var(--red);
}
.navigation ul li ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.navigation ul li ul li {
	margin-bottom: 0;
	padding: 0;
}
.navigation ul li ul li a {
	list-style: none;
	color: var(--black);
	font-weight: 500;
	font-size: 14px;
	line-height: 14px;
	text-transform: uppercase;
	padding: 15px 15px 15px 15px;
}
.navigation ul li.active ul li a {
	color: var(--black);
}
.navigation ul li ul li.active a {
	color: var(--red);
}
@media (min-width: 1200px) {
	.navigation {
		position: static;
		transform: translateX(0vw);
	}
	.navigation ul {
		padding-left: 30px;
		padding-right: 80px;
		display: flex;
		justify-content: space-between;
	}

	.navigation ul li a {
		font-size: 14px;
	}
}
.m-l-8 {
	margin-left: -10px
}
.subnavigation a {
	display: inline-block;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	color: var(--black);
	text-transform: uppercase;
	padding: 2px 10px 2px 10px;
}
.subnavigation a.active {
	color: var(--red);
}