//	Lead Capture
div.lead-capture {
	$break-point: 640px;

	background: $cmo-purple-light;
	color: white;

	&.container {
		max-width: 1000px;
	}

	div.flex {
		@media only screen and ( min-width:$break-point ) {
			display: flex;
			align-items: center;
			justify-content: space-between;
		}
	}

	.item {
		flex: 0 0 50%;
	}

	/*
		Image

	 */
	div.photo {
		flex-basis: 50%;
		img {
		}
	}


	/*
		Content

	 */
	div.content {
		padding: 2em;
		margin: 0 auto;

		@media only screen and ( min-width:$break-point ) {
			padding: 4em;
		}

		@media only screen and ( min-width:$break-point ) {
		}

		ul,
		p {
		}

		p.title {
			font-size: 1.5em;
			font-weight: 700;
			font-family: $header-font-family;
			text-transform: uppercase;
		}

		p.subtitle {
			font-size: 1.15em;
			font-weight: 300;
			text-transform: uppercase;
		}

		ul {
			margin: 1em 1em 1em 1em;

			li {
				display: block;
			}
		}

		p.form {
			margin-bottom: 0;
		}
	}

}
