/* Color Tokens */
.color-tokens {
	color: #58A4AD; /* $primary */
	background-color: #546A76; /* $secondary */
	border-left-color: #F9B95E; /* $tertiary */
	border-right-color: #F5F5F5; /* $light */
	border-top-color: #FFFFFF; /* $white */
	border-bottom-color: #4A4B4C; /* $dark */
}
/* End Color Tokens */

/* Split Content Styles */
.split-content-panel {
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	border-top: solid .6em #F9B95E; /* $tertiary */
}

.split-content-panel .split-content {
	-webkit-flex: 0 1 56%;
	-ms-flex: 0 1 56%;
	flex: 0 1 56%;
	padding: 10em 2% 14em;
	-webkit-order: 2;
	-ms-flex-order: 2;
	order: 2;
	width: 56%;
	max-width: 56%;
	background-color: #FFFFFF; /* $white */
}

.split-content-panel .split-content >* {
	max-width: 790px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

.split-content-panel .img-holder {
	-webkit-flex: 0 1 44%;
	-ms-flex: 0 1 44%;
	flex: 0 1 44%;
	background-image: url(../images/BG_ContentHalf.jpg);
	background-position: center center;
	background-size: cover;
	-webkit-align-self: stretch;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	width: 44%;
	max-width: 44%;
}

.split-content-panel .split-content  h2.look-like-h1 {
	color: #546A76; /* $secondary */
	margin: 0px auto;
}

.split-content-panel .split-content  h2 {
	color: #F9B95E; /* $tertiary */
}

.split-content-panel .split-content  h3 {
}

.split-content-panel .split-content  p {
}

.split-content-panel .split-content  .btn {
	display: table;
	margin: 0 0 0 auto;
}
/* End Split Content Styles */

/* Responsive */
@media screen and (max-width:950px) {
	.split-content-panel {
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.split-content-panel .img-holder {
		padding: 40% 0;
		width: 100%;
		max-width: 100%;
		-webkit-order: 1;
		-ms-flex-order: 1;
		order: 1;
		-webkit-flex: 0 0 100%;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}

	.split-content-panel .split-content {
		background-color: #F5F5F5; /* $light */
		width: 100%;
		max-width: 100%;
		-webkit-order: 2;
		-ms-flex-order: 2;
		order: 2;
		-webkit-flex: 0 0 100%;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		padding: 2em 2%;
	}

	.split-content-panel .split-content h1 {
		color: #4A4B4C; /* $dark */
		padding-bottom: .5em;
		margin-bottom: .5em;
		border-bottom: 1px solid #F9B95E; /* $tertiary */
	}

	.split-content-panel .split-content h2 {
		font-size: 1.388em;
		color: #546A76; /* $secondary */
	}

	.split-content-panel .split-content p {
		color: #5B5B5C;
		font-size: 1em;
	}
}

@media screen and (max-width:700px) {
	.split-content-panel .img-holder {
		display: none;
	}

	.split-content-panel .split-content {
		padding-left: 2%;
		padding-right: 2%;
	}
}

@media screen and (max-width:500px) {
	.split-content-panel .split-content p:not(.text-highlight-1) {
		font-size: 1.11em;
	}
}
/* End Responsive */
