* {
	--c-primary: #004f9f;
	--c-secondary: #e20613;
	--c-bg-grey: #eceff1;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: white !important;
}

.tm-bg-grey {
	background-color: var(--c-bg-grey);
}

.tm-section h1 {
	margin: 0;
	font-size: 3rem;
	text-align: center;
}

.tm-section h3 {
	margin: 1rem 0;
	font-size: 1.75rem;
	font-weight: bold;
	color: var(--c-primary);
}

.tm-section sub {
	font-size: 0.6em !important;
}

.tm-section h2 {
	margin: 2rem 0 1rem;
	font-size: 2rem;
	font-weight: bold;
	color: var(--c-primary);
}

@media (max-width: 991px) {
	.tm-section h1 {
		font-size: 2rem;
		text-align: center;
	}
}

.tm-section .container > *:first-child { margin-top: 0; }
.tm-section .container > *:last-child { margin-bottom: 0; }

.tm-section ul {
	list-style-type: disc;
	padding-left: 1.4rem;
}

.tm-section p a {
	color: var(--c-primary);
}

#section--karriere--hero {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 75vh;
	background-image: url('../images/karriere/dp-office-karriere-banner.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

#section--karriere--hero * {
	color: white;
}

#section--karriere--hero > div {
	z-index: 2;
}


#section--karriere--hero::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
}

.tm-section .btn-lg {
	height: initial;
	line-height: 1.2;
	padding: 1rem;
}


/* ///////////////////////
 *
 * Breadcrumbs
 *
 * ///////////////////////
*/

@media (min-width: 992px) {
	#section--karriere--hero {
		position: relative;
	}

	#breadcrumbs {
		position: absolute;
		top: 150px;
		right: 3rem;
	}
}

#breadcrumbs > a:not(:last-child)::after {
	content: '//';
	padding: 0 0.1rem 0 0.3rem;
}