/* Purple Title */
.purple-title {
	background: #47374b;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 10px;
	-webkit-font-smoothing: antialiased;
	position: relative;
}
.purple-title:after {
	width: 2px;
	height: 0;
	border-style: solid;
	border-top-color: #47374b;
	border-right-color: transparent;
	border-left-color: transparent;
	border-bottom-color: transparent;
	border-width: 16px;
	position: absolute;
	left: 40px;
	bottom: -32px;
	content: '';
}

/* Purple Title */
.teal-title {
	background: #377b6f;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 10px;
	-webkit-font-smoothing: antialiased;
	position: relative;
}
.teal-title:after {
	width: 2px;
	height: 0;
	border-style: solid;
	border-top-color: #377b6f;
	border-right-color: transparent;
	border-left-color: transparent;
	border-bottom-color: transparent;
	border-width: 16px;
	position: absolute;
	left: 40px;
	bottom: -32px;
	content: '';
}

/* Light Purple Title */
.light-purple-title {
	background: #d0cbd1;
	color: #47374b;
	border-left: 5px solid #47374b;
	text-transform: uppercase;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 10px;
}
/* Light Green Title */
.light-green-title {
	background: #ccdac0;
	color: #377b6f;
	border-left: 5px solid #377b6f;
	text-transform: uppercase;
	font-size: 14px;
	font-size: 1.4rem;
	padding: 10px;
}
