header {
	background-image: url('../images/ydelser_cover.jpg');
	background-repeat: no-repeat;
	background-position: 95% top;
	background-size: cover;
	height: 560px;
	min-height: 25vw;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

header:before {
	content:"";
	position:absolute;
	top:0;
	left: calc(-85% + 12.5%);
	width:100%;
	height: 560px;
	min-height: 25vw;
	background-color: #fff;
	transform:skew(16.67deg);
	z-index: -1;
}

header h1 {
	color: #3169AD;
	font-size: 2.25em;
}

header p {
	color: rgba(49,105,173,0.8);
	max-width: 760px;
}

header b {
	color: #0B2646;
	font-weight: 700;
}

nav {
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.10);
}

#ydelser {
	background-color: #fff;
	align-items: center;
	background-size: cover;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

#ydelser:before {
	content: "";
	position: absolute;
	left: calc(55% + 12.5%);
	width: 100%;
	height: 100%;
	min-height: 30vw;
	transform:skew(16.67deg);
	z-index: -1;
	background-color: #0B2646;
}

#ydelser ul {
	padding: 0;
	margin-bottom: 24px;
}

#ydelser ul li {
	color: #fff;
	padding: 5px 10px;
	background-color: #0B2646;
	border-radius: 2px;
	font-size: 0.8em;
	font-weight: 700;
	margin-bottom: 8px;
	display: inline-flex;
	margin-right: 4px;
	z-index: 2;
	transition: all 0.2s ease;
	position: relative;
}

#ydelser ul li:hover {
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.10);
}

#klienter {
	background-color: #f5f5f5;
	align-items: center;
	background-size: cover;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.klient-link {
	display: flex;
	min-height: 10vw;
	justify-content: center;
	align-items: center;
	transition: all 0.2s ease;
}

.klient-link img {
	width: 7vw;
	min-width: 96px;
	max-height: 5.5vw;
	opacity: 0.5;
	transition: all 0.2s ease;
	object-fit: contain;
}

#klienter a .klient-link:hover {
	background: rgba(0,0,0,0.05);
}

#klienter a .klient-link:hover img {
	opacity: 1;
}

@media screen and (max-width: 767px) {
	header {
		height: 480px;
	}
	header h1 {
		margin-top: 20px;
		font-size: 1.75em;
	}
	nav {
		box-shadow: none;
	}
	#ydelser:before {
		display: none;
	}
}