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

/* Image CTAs Area */
.img-ctas-area {
	padding: 0;
}

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

.no-flexbox .img-ctas-area ul {
	display: table;
	width: 100%;
}

.img-ctas-area ul li {
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 3.5em 3% 3.5em 20%;
}

.no-flexbox .img-ctas-area ul li {
	display: table-cell;
}

.img-ctas-area ul li:last-child {
	padding: 3.5em 20% 3.5em 3%;
}

.img-ctas-area ul li h3 {
	font-size: 1.6667em;
	color: #201E1E; /* $dark */
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
	position: relative;
	font-weight: 500;
}

.img-ctas-area ul li h3:after {
	content: ' ';
	display: block;
	width: 20%;
	height: 1px;
	background-color: rgba(242,242,242,0.502); /* alpha($light,50%) */
	position: absolute;
	bottom: 0;
}

.img-ctas-area ul li.light h3 {
	color: #FEFEFE; /* $light */
}

.img-ctas-area ul li p {
	font-size: 1.111em;
	margin-bottom: 2em;
	font-weight: 400;
}

.img-ctas-area ul li .btn {
	min-width: 50%;
}
/* End Image CTAs Area */

/* 1300px Responsive */
@media screen and (max-width:1300px) {
	.img-ctas-area ul li {
		padding: 0 !important;
	}

	.img-ctas-area ul li .info {
		padding: 2.5em 5%;
		background-color: rgba(29,29,29,0.6); /* alpha($dark,60%) */
	}

	.img-ctas-area ul li.dark .info {
		background-color: rgba(242,242,242,0.6); /* alpha($light,60%) */
	}
}
/* End 1300px Responsive */

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

	.img-ctas-area ul li {
		width: 100%;
	}
}
/* End 800px Responsive */

/* 450px Responsive */
@media screen and (max-width:450px) {
	.img-ctas-area ul li {
		text-align: center;
	}

	.img-ctas-area ul li .info {
		padding: 1.5em 5% !important;
	}

	.img-ctas-area ul li h3 {
		font-size: 1.333em;
	}

	.img-ctas-area ul li h3:after {
		left: 40%;
	}

	.img-ctas-area ul li p {
		display: none;
	}
}
/* End 450px Responsive */
