// Getting Started
div.getting-started {
	color: $cmo-purple-dark;
	font: 300 1em $base-font-family;
	text-align: center;
	padding: 2em 1em;

	.steps-to-start {

		@media only screen and ( min-width: 600px ) {
			display: flex;
			align-items: flex-start;
			justify-content: center;
		}

		.item {
			flex: 0 0 33%;
			padding: 1em;
			text-align: center;

			@media only screen and ( min-width:600px ) {
				padding: 2em;
				max-width: 400px;
			}

			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;
			}
		}
	}
}