.d_courseCounter {
	display: flex;
	margin-bottom: 25px;
	width: 100%;
}

.d_courseCounter_box {
	background: #282c32;
	text-align: center;
	padding: 19px 15px;
	width: 33%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.d_courseCounter_box:not(:last-of-type) {
	margin-right: 5px;
}

.d_courseCounter_number {
	font-size: 27px;
	color: white;
}

.d_courseCounter_box:last-of-type .d_courseCounter_number {
	font-size: 13px;
	text-transform: uppercase;
}

html[lang="de-DE"] .d_courseCounter_box:last-of-type .d_courseCounter_number {
	word-wrap: break-word;
	max-width: 100%;
	font-size: 12px;
}

.d_courseCounter_text {
	font-size: 14px;
	color: #8a8c8f;
	text-transform: uppercase;
	margin-top: 2px;
}

@media (min-width: 992px) {
	.d_courseCounter {
		max-width: 420px;
		margin-top: 25px;
	}

	html[lang="de-DE"] .d_courseCounter_box:last-of-type .d_courseCounter_number {
		word-wrap: normal;
		max-width: initial;
		font-size: 13px;
	}
}