/* Color Tokens */
.color-tokens {
	color: #3C9085; /* $primary */
	background-color: #9D7168; /* $secondary */
	border-left-color: #B4ACA7; /* $tertiary */
	border-right-color: #3EC3B1; /* $light */
	border-top-color: #FFFFFF; /* $white */
	border-bottom-color: #000000; /* $dark */
}
/* End Color Tokens */

/* Banner Style */
.banner-panel {
	padding: 3em 0;
	background-position: center right;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #B4ADA7;
}

.banner-panel .btn {
	border-color: #FFFFFF; /* $white */
	color: #FFFFFF; /* $white */
}

.banner-panel .right-banner .btn {
	text-transform: none;
	font-size: 2em;
	padding: 1em;
}

.banner-panel .btn:hover {
	background-color: #9D7168; /* $secondary */
}

.banner-panel .flex {
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.banner-panel .flex>* {
	padding: 0 1em;
}

.banner-panel .flex h2 {
	padding: 0;
	font-size: 2.5em;
	color: #FFFFFF; /* $white */
	font-weight: 400;
	text-transform: none;
}

.banner-panel .subTitle {
	color: #FFFFFF; /* $white */
	padding: 0 2em;
}
/* End Banner Style */

/* IE Fallbacks */
.no-flexbox .banner-panel .flex {
	display: block;
	text-align: center;
}

.no-flexbox .banner-panel .flex>* {
	display: block;
	text-align: center;
}
/* End IE Fallbacks */

/* Responsive */
@media screen and (max-width:1500px) {
	.banner-panel .banner-content.flex {
		display: block;
		text-align: center;
	}

	.banner-panel .flex {
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.banner-panel .right-banner.flex {
		padding-top: 2em;
	}
}

@media screen and (max-width:450px) {
	.banner-panel .right-banner.flex {
		display: block;
		text-align: center;
		padding: 0;
	}

	.banner-panel .right-banner.flex .button {
		padding: 1em 0 0 0;
	}
}
/* End Responsive */
