/* 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 */

/* Wide CTAs Styles */
.wide-cta-panel {
	background-position: center center;
	background-size: cover;
}

.wide-cta-panel .wide-cta-list {
}

.wide-cta-panel ul {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	background-image: url(../images/BG_CTAs.jpg);
	background-size: cover;
	background-position: center center;
}

.wide-cta-panel li {
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	text-align: center;
	width: 33.3%;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	transition: .5s ease;
	background-color: rgba(84,106,118,0.451); /* alpha($secondary,45%) */
}

.wide-cta-panel li:nth-child(even) {
	background-color: transparent;
}

.wide-cta-panel li:hover {
	border-color: #58A4AD; /* $primary */
}

.wide-cta-panel li img {
	transition: .5s ease;
	position: relative;
}

.wide-cta-panel li a {
	transition: .5s ease;
	display: block;
	padding: 6.5em 4em;
}

.wide-cta-panel li:hover a {
	-webkit-transform: translateY(-3em);
	-ms-transform: translateY(-3em);
	transform: translateY(-3em);
}

.wide-cta-panel li .btn {
	display: block;
	position: absolute;
	z-index: 5;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	opacity: 0;
	transition: .5s ease;
	margin-top: 2em;
}

.wide-cta-panel li:hover .btn {
	opacity: 1;
}

.wide-cta-panel li:hover .btn:hover {
}

.wide-cta-panel li:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(74,75,76,0.502); /* alpha($dark,50%) */
	transition: .5s;
	opacity: 0;
}

.wide-cta-panel li:hover:before {
	opacity: 1;
}

.wide-cta-panel li h2, .wide-cta-panel li .likeh2 {
	position: relative;
	color: #FFFFFF;
	font-size: 2.5em;
	margin: 0;
	line-height: 1.1;
	font-family: 'Cinzel', serif;
	font-weight: normal;
	padding: 0;
}

.wide-cta-panel li p {
	color: #FFFFFF; /* $white */
	position: relative;
	margin: 0;
}
/* End Wide CTAs Styles */

/* Wide CTAs IE Fallbacks */
.no-flexbox .wide-cta-panel ul {
	display: table;
}

.no-flexbox .wide-cta-panel ul li {
	display: table-cell;
}

.no-flexbox .wide-cta-panel ul li a {
	display: block;
}
/* End Wide CTAs IE Fallbacks */

/* Wide CTAs Responsive */
@media (max-width:800px) {
	.wide-cta-panel ul {
		display: block;
		background-attachment: fixed;
		background-position: 70% bottom;
	}

	.wide-cta-panel li {
		width: 100%;
		background-color: rgba(66,83,92,0.6); /* adjust($secondary,-22%,0%,60%) */
	}

	.wide-cta-panel li:before {
		content: none;
	}

	.wide-cta-panel li .btn {
		position: relative;
		display: inline-block;
		opacity: 1;
		left: auto;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}

	.wide-cta-panel li:hover a {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}

	.wide-cta-panel li a {
		padding: 2em 0;
	}

	.wide-cta-panel li img {
		width: 3em;
	}

	.wide-cta-panel li h2 {
		font-size: 1.388em;
	}
}
/* End Wide CTAs Responsive */
