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

/* Service CTAs Area */
.service-ctas-area {
	position: relative;
	background-color: #E6E6E6; /* darken($light,5%) */
}

.service-ctas-area .main {
}

.service-ctas-area header {
}

.service-ctas-area header h2 {
}

.service-ctas-area .service-list {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	padding: 0 1%;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.no-flexbox .service-ctas-area .service-list {
	display: table;
	width: 100%;
}

.service-ctas-area .service-list li {
	-webkit-flex: 1 1 24%;
	-ms-flex: 1 1 24%;
	flex: 1 1 24%;
	margin: 0 .5%;
	text-align: center;
	position: relative;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	max-width: 40%;
}

.no-flexbox .service-ctas-area .service-list li {
	display: table-cell;
	width: 25%;
	margin: 0;
	padding: 0 1%;
}

.service-ctas-area .service-list li a {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	z-index: 1;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	padding: 25% 3%;
}

.no-flexbox .service-ctas-area .service-list li a {
	display: block;
}

.service-ctas-area .service-list li a:before {
	content: ' ';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(29,29,29,0.8); /* alpha($dark,80%) */
	z-index: -1;
	transition: background-color .4s ease 0s;
}

.service-ctas-area .service-list li a:hover:before {
	background-color: rgba(242,242,242,0.502); /* alpha($light,50%) */
}

.service-ctas-area .service-list a icon {
	font-size: 3em;
	color: #D7D7D7; /* $secondary */
	position: relative;
}

.service-ctas-area .service-list a:hover icon {
}

.service-ctas-area .service-list a:hover {
}

.service-ctas-area .service-list h3 {
	font-size: 1.333em;
	color: #FEFEFE; /* $light */
	transition: color .5s ease 0s;
}

.service-ctas-area .service-list icon + h3 {
	margin-top: .5em;
}

.service-ctas-area .service-list a:hover h3 {
	color: #201E1E; /* $dark */
}

.service-ctas-area .btn-con {
	text-align: center;
	margin-top: 2.5em;
}

.service-ctas-area .btn-con .btn {
}
/* End Service CTAs Area */

/* 1280px Responsive */
@media screen and (max-width:1280px) {
	.service-ctas-area .service-list {
		padding: 0 3%;
	}
}
/* End 1280px Responsive */

/* 800px Responsive */
@media screen and (max-width:800px) {
	.service-ctas-area .service-list li a {
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.service-ctas-area .service-list h3 {
		font-size: 1.111em;
	}

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

	.service-ctas-area .service-list a:after {
		display: none;
	}
}
/* End 800px Responsive */

/* 650px Responsive */
@media screen and (max-width:650px) {
	.service-ctas-area:before {
		height: 100%;
		border-bottom: solid 1px #D3D3D3; /* darken($light,13%) */
	}

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

	.service-ctas-area .btn-con {
		margin-top: .75em;
	}
}
/* End 650px Responsive */

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

	.service-ctas-area .service-list li {
		margin: 1%;
		-webkit-flex: 1 1 48%;
		-ms-flex: 1 1 48%;
		flex: 1 1 48%;
		max-width: none;
	}

	.service-ctas-area .service-list li a {
		padding: 15% 3%;
	}

	.service-ctas-area .service-list a icon {
		font-size: 2em;
	}
}
/* End 550px Responsive */
