.tile-row {
	display: flex;
	justify-content: space-between;
}

.tile-row h2 {
	font-size: 266%;
	font-weight: var(--font-light);
	margin-top: 0;
	line-height: 1.4;
}

.tile-row h2 strong {
	font-weight: var(--font-bold);
}

.tile-image {
	width: 50%;
	box-sizing: border-box;
}

.tile-image img {
	width: 100%;
}

.tile-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 50%;
	text-align: center;
	box-sizing: border-box;
	padding: 0 5.2%;
	line-height: 1.6;
}

.tile-row:nth-of-type(2n) .tile-text {
	order: 1;
}

.tile-row:nth-of-type(2n) .tile-image {
	order: 2;
}


.tile-text .button {
	display: inline-block;
	font-weight: var(--font-bold);
	color: #fff;
	border: 1px solid #808080;
	padding: 12px 40px;
	text-decoration: none;
	text-transform: uppercase;
}

.tile-text .buttons {
	margin-top: 50px;
	padding-bottom: 30px;
}

.tile-text .button:hover {
	color: #000;
	background-color: #fff;
}

.tile-contact {
	display: inline-block;
	position: relative;
	margin-left: 60px;
	bottom: -30px;
}

.tile-contact {
	display: block;
	margin-left: 0;
}


.tile-contact a {
	color: var(--color-violet);
	text-decoration: none;
	font-size: 133.33%;
}

.tile-contact a:hover {
	color: #fff;
}

@media screen and (max-width: 1200px ) {
	.tile-row h2 {
		font-size: 200%;
	}
}

@media screen and (max-width: 800px ) {
	.tile-row {
		box-sizing: border-box;
		padding: 30px 0;
		flex-flow: row wrap;
	}
	.tile-image {
		width: 100%;
	}
	.tile-text {
		width: 100%;
		padding: 40px 30px 0 30px;
	}

	.tile-row:nth-of-type(2n) .tile-image {
		order: 1;
	}
	.tile-row:nth-of-type(2n) .tile-text {
		order: 2;
	}
}

@media screen and (max-width: 600px ) {
	.tile-row h2 {
		font-size: 150%;
	}
}