// Working Together
div.working-together {
	background: $cmo-purple-dark;
	color: white;
	font: 300 1em $base-font-family;
	padding: 2em 1em;

	h2 {
		font: normal 1.3em/1.2 $header-font-family;
		line-height: 1;
		text-align: center;
		text-transform: uppercase;
		margin-top: 0;

		strong {
		 	display: block;
		 	font-size: 1.5em;
			margin-bottom: 10px;
		}
	}

	.steps-to-start {

		@media only screen and ( min-width:600px ) {
			display: flex;
			align-items: flex-start;
			justify-content: center;
			flex-wrap: wrap;
			text-align: center;

			.item {
				flex: 1 1 33%;
				text-align: center;
			}
		}

		.item {
			padding: 1em;


			p:first-of-type {
				font-size: 1.25em;
				margin-bottom: 1em;
			}

			p.title {
				font: 700 1.2em $base-font-family;
				margin-bottom: 1em;
			}

			p:last-of-type {
				margin-bottom: 0;
			}

			a {
				text-decoration: underline;
			}
		}
	}
}