/* Header */

/*
 *	Columns
*/
.section__content {
	float: left;
	width: 48.466%;
}

.section__content + .section__content {
	margin-left: 3.06%;
}

/*
 *	Content
*/
.section__content {
	overflow: hidden;
}

	.section__content h2,
	.section__content strong {
		 
	}

	.section__content h2 {
		font-size: 24px;
		margin-bottom: 9px;
		line-height: 1.3;
		text-transform: lowercase;
	}

		.section__content h2 span {
			text-transform: capitalize;
		}

	.section__content p + h2 {
		margin-top: 30px;
	}

	.section__content p,
	.section__content li {
		line-height: 1.5;
		margin-bottom: 0;
	}

	.section__content li {
		padding-left: 16px;
		position: relative;
	}

	.section__content li:before {
		border-radius: 50%;
		border: 1px solid #7e8487;
		content: '';
		height: 4px;
		width: 4px;
		position: absolute;
		left: 0;
		top: 7px;
	}

	.section__content p + p,
	.section__content li + li {
		margin-top: 11px;
	}

@media only screen and (min-width: 1520px) {
	.section__content {
		width: 47%;
	}

	.section__content + .section__content {
		margin-left: 6%;
	}

		.section__content h2 {
			font-size: 36px;
		}

		.section__content p + h2 {
			margin-top: 38px;
		}

		.section__content p,
		.section__content li {
			font-size: 24px;
		}

		.section__content li:before {
			top: 9px;
		}
}

@media only screen and (max-width: 900px) {
	.section__content {
		float: none;
		width: auto;
	}

	.section__content + .section__content {
		margin-left: 0;
		margin-top: 30px;
	}
}


