/* Color Tokens */
.primary {
	color: #FF0009; /* $primary */
}

.secondary {
	color: #D7D7D7; /* $secondary */
}

.tertiary {
	color: #FFF212; /* $tertiary */
}

.light {
	color: #FEFEFE; /* $light */
}

.dark {
	color: #201E1E; /* $dark */
}
/* End Color Tokens */

/* Cta Area Styles */
.cta-area {
	padding: 0;
}

.cta-area ul {
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.cta-area ul li {
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex: 1 0 1%;
	-ms-flex: 1 0 1%;
	flex: 1 0 1%;
}

.cta-area ul li a {
	display: block;
	position: relative;
	text-align: left;
	width: 100%;
	padding: 2.9em 40% 5.22em 10%;
	z-index: 1;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
}

.cta-area ul li a:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(29,29,29,0.902); /* alpha($dark,90%) */
	top: 0;
	left: 0;
	transition: opacity .4s ease 0s;
	opacity: 0;
}

.no-touch .cta-area ul li a:hover:before {
	opacity: 1;
}

.cta-area ul li a img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
	background-size: cover;
	transition: transform .4s ease 0s;
}

.no-touch .cta-area ul li a:hover img {
	transform_: scale(1.15);
}

.cta-area ul li a > strong {
	display: table;
	width: auto;
	font-size: 1.889em;
	letter-spacing: -.03em;
	line-height: 1.2;
	color: #201E1E; /* $dark */
	position: relative;
	font-weight: 300;
	transition: .4s ease 0s;
}

.cta-area ul li a > strong br {
}

.cta-area ul li a .btn {
	margin-top: 4.1em;
	max-width: 100%;
}

.cta-area ul li a .btn br {
	display: none;
}

.cta-area ul li a > p {
	position: relative;
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	opacity: 0;
	color: #FEFEFE; /* $light */
}

.cta-area ul li a > strong:after {
	content: '';
	width: 100%;
	height: .5em;
	background-color: #FFF212; /* $tertiary */
	display: table;
	position: relative;
	margin: .2em auto;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
}

.no-touch .cta-area ul li a:hover > p {
	opacity: 1;
	transition: transform .4s ease .4s, opacity .5s ease .5s;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.no-touch .cta-area ul li a:hover > strong:after {
	transition: transform .4s ease 0s;
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

.no-touch .cta-area ul li a:hover > strong {
	color: #FEFEFE; /* $light */
}

.cta-content-section .content-area-ctas {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 4em;
}

.cta-content-section.local .content-area-ctas {
	margin-top: auto;
}

.cta-content-section .content-area-ctas li {
	-webkit-flex: 0 1 49%;
	-ms-flex: 0 1 49%;
	flex: 0 1 49%;
}

.cta-content-section .content-area-ctas li a {
	background-color: #EFF1F2;
	display: block;
	position: relative;
	padding: 2em 50% 8em 2em;
	line-height: 1;
	height: 18em;
}

.cta-content-section .content-area-ctas li a strong {
	display: block;
	color: #FF0009; /* $primary */
	font-size: 1.889em;
	font-weight: 300;
	text-transform: uppercase;
	position: relative;
}

.cta-content-section .content-area-ctas li a em {
	display: block;
	color: #201E1E; /* $dark */
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;
	position: relative;
	font-size: 1.556em;
	margin-top: 1em;
}

.cta-content-section .content-area-ctas li a img {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: contain;
	top: 0;
	background-position: bottom right;
	right: 0;
	background-repeat: no-repeat;
}

.no-touch .cta-content-section .content-area-ctas li a:hover img {
}

.cta-content-section .content-area-ctas li a .btn {
	position: absolute;
	bottom: 2em;
	left: 2em;
}
/* End Cta Area Styles */

/* 1500px Responsive */
@media screen and (max-width:1500px) {
	.cta-area ul {
		font-size: 1vw;
	}
}
/* End 1500px Responsive */

/* 1000px Responsive */
@media screen and (max-width:1000px) {
	.cta-area .cta-list li {
		margin: 0 .25%;
	}

	.cta-area .cta-list li a {
		padding: 2.2em 0 0;
	}

	.cta-content-section .content-area-ctas li a {
		padding: 2em;
		text-align: center;
		height: 15em;
	}

	.cta-content-section .content-area-ctas li a br {
		display: none;
	}

	.cta-content-section .content-area-ctas li a img {
		display: none;
	}

	.cta-content-section .content-area-ctas li a .btn {
		left: 2em;
		right: 2em;
	}

	.cta-area .cta-list a icon {
		top: 0;
		padding-bottom: .25em;
	}

	.cta-area .cta-list a:hover icon {
		opacity: 1;
	}

	.cta-area .cta-list a .info {
		top: 0;
		padding: .5em 4% 2em;
	}

	.cta-area .cta-list .info p {
		display: none;
	}
}
/* End 1000px Responsive */

/* 900px Responsive */
@media screen and (max-width:900px) {
	.cta-area ul {
		font-size: 1em;
	}

	.cta-area ul li a > p {
		display: none;
	}

	.cta-area ul li a > strong {
		font-size: 1.75em;
	}

	.cta-area ul li a {
		padding: 2em 5%;
	}
}
/* End 900px Responsive */

/* 800px Responsive */
@media screen and (max-width:800px) {
	.cta-area .cta-list li a {
		padding: 1.5em 4% 1.25em;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.cta-area ul li a img {
		background-position: top;
	}

	.cta-area ul {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.cta-area ul li {
		-webkit-flex: 1 1 50%;
		-ms-flex: 1 1 50%;
		flex: 1 1 50%;
	}

	.cta-area ul li a > p {
		display: block;
	}

	.cta-area .cta-list a .info {
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
		padding: .4em 0 0;
		background-image: none;
		border: none;
	}

	.cta-area .cta-list .info h3 {
		font-size: 1.111em;
	}

	.cta-area .cta-list a:hover .info h3 {
		color: #FEFEFE; /* $light */
	}

	.cta-area .cta-list a .info:after {
		display: none;
	}

	.cta-content-section .content-area-ctas {
		display: block;
	}

	.cta-content-section .content-area-ctas li {
		margin-bottom: 1em;
	}

	.cta-content-section .content-area-ctas li a {
		height: auto;
	}

	.cta-content-section .content-area-ctas li a .btn {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		margin: 2em auto auto;
	}
}
/* End 800px Responsive */

/* 650px Responsive */
@media screen and (max-width:650px) {
	.cta-area ul {
		display: block;
	}

	.cta-area ul li a img {
		background-position: top;
		opacity: .5;
	}

	.cta-area ul li a > strong {
	}

	.cta-area ul li a > strong br {
		display: none;
	}

	.cta-area:before {
		height: 100%;
		border-bottom: solid 1px #D3D3D3; /* darken($light,13%) */
	}

	.cta-area .cta-list a icon {
		font-size: 2.5em;
	}

	.cta-area ul li a > strong {
		font-size: 1.75em;
	}

	.cta-area ul li a {
		padding: 2.9em 20% 5.22em 10%;
	}

	.cta-area ul li a > p {
		display: none;
	}
}
/* End 650px Responsive */

/* 550px Responsive */
@media screen and (max-width:550px) {
	.cta-area .cta-list {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.cta-area .cta-list li {
		margin: 1%;
		-webkit-flex: 1 1 48%;
		-ms-flex: 1 1 48%;
		flex: 1 1 48%;
	}

	.cta-area .cta-list a icon {
		font-size: 2em;
		padding-bottom: 0;
	}
}
/* End 550px Responsive */
