/**
 * Simple text block specific styles
 *
 */

/** General */
	.simple-text-block .container {
		flex-wrap: wrap;
	}
	.simple-text-block.one-col .container {
		max-width: 1400px;
	}

		.simple-text-block .container > div.title > p:first-of-type {
			font-size: 1.2em;
			line-height: 1.5;
		}

		.simple-text-block.two-col .title {
			margin-top: 0;
		}
		.simple-text-block .title {
			flex: 100%;
		}

		.simple-text-block .title h3 {
			font-size: 32px;
			margin: .6em 0 .6em 0;
			font-weight: 400;
			color: #444;
			font-family:"Born Ready W05 Regular" !important;
			font-style:normal;
			/*-webkit-font-smoothing: antialiased;*/
			/*-webkit-text-stroke-width: 0.2px;*/
			/*-moz-osx-font-smoothing: grayscale;*/
			text-transform:none;
			letter-spacing:1px;
		}

		.simple-text-block .content {
			flex: 100%;
		}
		.simple-text-block.two-col .title  {
			flex: 0 50%;
			padding: 0 3em;
			box-sizing: border-box;
		}

		.simple-text-block.two-col .content {
			flex: 1;
			padding: 0 3em;
		}

/** Responsive */
	@media only screen and (max-width: 959px) {

		.simple-text-block.two-col .title{
			flex: 0 100%;
			padding-right: 0;
		}

	}
