/* 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 */
.cta-panel.hc2 {
	background-color: #EAEAEA;
	border-bottom: solid 2px #d7d7d7;
}

.cta-panel.hc2.for-mobile {
	display: none;
}

.cta-panel.hc2 .main {
	padding: 0;
}

.cta-panel.hc2 ul {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 2em 0;
}

.cta-panel.hc2 ul li {
	position: relative;
	z-index: 4;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	width: 16.88%;
}

.cta-panel.hc2 ul li:after {
	position: absolute;
	width: 2px;
	height: 3em;
	background-color: #FFFFFF; /* $light */
	content: '';
	display: block;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
}

.cta-panel.hc2 ul li:last-child:after {
	display: none;
}

.cta-panel.hc2 ul li a {
	display: block;
	text-align: center;
}

.cta-panel.hc2 ul li:hover a {
	-webkit-animation-duration: .85s;
	animation-duration: .85s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-name: spin;
	animation-name: spin;
}

@-webkit-keyframes spin {
	0% { -webkit-transform: rotateY(0); }
	100% { -webkit-transform: rotateY(360deg); }
}

@-moz-keyframes spin {
	0% { transform: rotateY(0); }
	100% { transform: rotateY(360deg); }
}

@-o-keyframes spin {
	0% { transform: rotateY(0); }
	100% { transform: rotateY(360deg); }
}

@keyframes spin {
	0% { transform: rotateY(0); }
	100% { transform: rotateY(360deg); }
}

.cta-panel.hc2 .cta-img {
	position: absolute;
	height: 6em;
	width: 6em;
	display: block;
	left: 50%;
	border-radius: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background-size: contain;
	background-repeat: no-repeat;
	top: -5em;
}

.cta-panel.hc2 ul li:hover .cta-img {
	top: -7.5em;
}

.cta-panel.hc2 .cta-img:after {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	z-index: 4;
	background-color: rgba(255,158,33,0.851); /* adjust($secondary,5%,100%,85%) */
	content: '';
	top: 0;
	left: 0;
	transition: background-color .35s ease 0s;
	border: solid 4px #ffffff;
}

.cta-panel.hc2 li:hover .cta-img:after {
	background-color: rgba(50,153,187,0.851); /* alpha($primary,85%) */
}

.cta-panel.hc2 .cta-img icon {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #FFFFFF;
	z-index: 5;
	font-size: 2.5em;
}

.cta-panel.hc2 h4 {
	color: #434343; /* $dark */
	font-size: 1em;
	transition: color .35s ease 0s;
	font-weight: 900;
	margin-top: 2em;
	text-transform: uppercase;
	line-height: 1.3;
}

.cta-panel.hc2 li:hover h4 {
	color: #F7981D; /* $secondary */
}
/* End General */

/* Responsive @ 1250px */
@media (max-width:1250px) {
	.cta-panel.hc2 .cta-img {
		position: static;
		-webkit-transform: translate(0);
		-ms-transform: translate(0);
		transform: translate(0);
		margin: 0 auto .5em;
	}

	.cta-panel.hc2.full {
		font-size: 1.1vw;
	}
}
/* End Responsive @ 1250px */

/* Responsive @ 1000px */
@media (max-width:1000px) {
	.cta-panel.hc2 ul li:after {
		display: none;
	}

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

	.cta-panel.hc2.full {
		font-size: 1.5vw;
	}

	.cta-panel.hc2 ul li {
		width: 48%;
		margin: 1%;
	}

	.cta-panel.hc2 ul li br {
		display: none;
	}
}
/* End Responsive @ 1000px */

/* Responsive @ 700px */
@media (max-width:700px) {
	.cta-panel.hc2 ul li {
		padding: 2% 0;
	}

	.cta-panel.hc2.full {
		font-size: calc(8px + 2vw);
	}

	.cta-panel.hc2 ul li:hover a {
		-webkit-animation-name: none;
		animation-name: none;
	}

	.sub .cta-panel.hc2.for-desktop {
		display: none;
	}

	.sub .cta-panel.hc2.for-mobile {
		display: block;
	}
}
/* End Responsive @ 700px */
