@mixin rich-text {

	h2, h3 {
		color: #600025;
		margin: 0px;
		margin-bottom: 30px;
	}

	ul {

		margin-top: 15px;
		margin-bottom: 15px;

		@media (min-width:$screen-md) {
			margin-top: 25px;
			margin-bottom: 25px;
		}
	}

	li {

		padding: 0px;
		padding-top: 10px;
		padding-left: 20px;
		padding-bottom: 10px;
		position: relative;

		@media (min-width:$screen-md) {
			padding: 0px;
			padding-top: 15px;
			padding-left: 50px;
			padding-bottom: 15px;
		}

		&:before {

			@include absolute(top 25px left 0px);
			background: #8f4c66;
			content: "";
			display: block;
			height: 2px;
			width: 11px;

			@media (min-width:$screen-md) {
				@include absolute(top 28px left 0px);
			}
		}
	}

	a {

		@include transition;
		color: #600025;

		&:hover {
			color: $hover-color;
		}
	}
}