/* Color Tokens */
.color-tokens {
	color: #3299BB; /* $primary */
	background-color: #F7981D; /* $secondary */
	border-top-color: #D88110; /* $tertiary */
	border-right-color: #707070; /* $text */
	border-bottom-color: #FFFFFF; /* $light */
	border-left-color: #434343; /* $dark */
}
/* End Color Tokens */

/* General */
.content-panel.hc3 {
}
/* End General */

/* CTAs */
.content-panel.hc3 .content-ctas {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	text-align: center;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.content-panel.hc3 .content-ctas div {
	padding: 0;
	margin: 0 .5em;
	transition: .35s ease 0s;
	width: 25%;
	border: solid 2px #EAEAEA;
}

.content-panel.hc3 .content-ctas div:hover {
	background-color: #EAEAEA;
	box-shadow: 0px 10px 15px #EDEDED;
}

.content-panel.hc3 .content-ctas img {
	width: 100%;
	margin-bottom: 1.5em;
}

.content-panel.hc3 .content-ctas h3 {
	color: #F7981D; /* $secondary */
	font-size: 1.555em;
	font-family: 'Playfair Display', serif;
	font-weight: 600;
	margin: 0;
	transition: .35s ease 0s;
}

.content-panel.hc3 .content-ctas p {
	color: #434343; /* $dark */
	font-size: 1.111em;
	max-width: 80%;
	margin: 1em auto 2em;
}
/* End CTAs */

/* Responsive @ 1200px */
@media screen and (max-width:1200px) {
	.content-panel.hc3 .content-ctas {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.content-panel.hc3 .content-ctas div {
		width: 48%;
		margin: .5em;
	}
}
/* End Responsive @ 1200px */

/* Responsive @ 800px */
@media screen and (max-width:800px) {
	.content-panel.hc3 .content-ctas div {
		width: 100%;
	}
}
/* End Responsive @ 800px */
