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

header:before {
	content: "";
	position: absolute;
	top:0;
	left: calc(-50% + 12.5%);
	width: 100%;
	height: 100%;
	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);
}

header a {
	color: #0B2646;
}

nav {
	border: 2px solid #3169AD;
}

nav .container {
	padding: 0 14px;	
}

nav.sticky .container {
	padding: 0 16px;	
}

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

#team h2 {
	color: #0B2646;
}

#team .profile {
	display: block;
	width: 100%;
	padding: 0 2.5vw;
	margin-bottom: 2.5vw;
	overflow: hidden;
}

#team .profile-image {
	position: relative;
	overflow: hidden;
}

#team .profile-image img {
	width: 100%;
	border-radius: 100%;
}

#team .profile .profile-info {
	padding: 12px 0;
	font-size: 0.825em;
	color: #0B2646;
	font-weight: 500;
	margin-bottom: 12px;
}

#team .profile .profile-info a {
	text-decoration: none;
}

#team .profile .profile-info .name {
	display: inline-block;
	width: 100%;
	font-size: 1.15em;
	font-weight: 600;
}

#team .profile .profile-info .title {
	font-size: 1em;
	font-weight: 500;
}

#team .profile .profile-info .education {
	font-weight: 700;
	font-size: 0.85em;
	text-transform: uppercase;
	color: rgba(11,38,70,0.50);
}

#team .profile .profile-info .contact-phone {
	margin-top: 8px;
}

#team .profile .profile-info span {
	display: flex;	
}

#team .profile .profile-info a.linkedin {
	width: 18px;
	height: 18px;
	background-image: url('../images/icon_linkedin.png');
	background-size: contain;
	float: right;
}

#hiring {
	padding: 28px;
	background-color: #fff;
	border-radius: 4px;
}

#hiring h3 {
	margin-bottom: 12px;
}

#hiring p {
	font-size: 0.85em;
	margin-bottom: 20px;
}

#hiring hr {
	border: 2px solid #f5f5f5;
	margin: 28px -28px;
}

#hiring ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#hiring ul li a {
	margin: 12px 0;
	display: block;
	line-height: 1.5;
}

#hiring a.btn {
	font-size: 0.8em;
	color: rgba(11,38,70,0.66);
	border: 2px solid rgba(11,38,70,0.66);
	background-color: transparent;
	min-width: auto;
}

#hiring a.btn:hover {
	color: #fff;
	border: 2px solid #0B2646;
	background-color: #0B2646;
}

.col-9 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.col-xl-3, .col-lg-4, .col-md-4, .col-sm-6 {
	display: flex;
}

@media screen and (max-width: 767px) {
	header h1 {
		color: #fff;
		font-size: 1.5em;
	}
	header p {
		color: rgba(255,255,255,0.6);
	}
	header a:link, header a:visited, header a:active {
		color: #fff;
	}
	nav {
		box-shadow: none;
		border: 0;
	}
	nav .container {
		padding: 0;
	}
	nav.sticky .container {
		padding: 0;
	}
	nav #logo {
		background-image: url('../images/logo_white.svg');
	}	
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
	.col-9 {
		width: 100%;
		float: left;
		display: block;
	}
}