/* # Max counter 5
================================================== */

.max-counter.d-counter {
	text-align: left;
	position: relative;
}

.max-counter.d-counter .max-count {
	font-size: 50px;
	margin-right: 5px;
	color: #000;
	font-weight: 700;
}

.max-counter.d-counter .after {
	content: '';
	position: absolute;
	left: 0;
	height: 3px;
	width: 37px;
	margin-top: 48px;
}

.max-counter.d-counter h5 {
	color: #77818b;
	text-align: left;
	font-size: 16px;
	font-weight: 300;
	text-transform: none;
	letter-spacing: 1.5px;
	margin-top: 38px;
}

.max-counter.d-counter h5:after {
	border: none;
}

@media only screen and (max-width: 767px) {
	.max-counter.d-counter {
		text-align: center;
		width: 100%;
		height: 160px;
	}
	.max-counter.d-counter .after {
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
	}
	.max-counter.d-counter h5 {
		text-align: center;
	}
}