/* Color Tokens */
#primary {
	color: #00548B; /* $primary */
}

#secondary {
	color: #D0282E; /* $secondary */
}

#tertiary {
	color: #3F79BC; /* $tertiary */
}

#light {
	color: #EFECE4; /* $light */
}

#dark {
	color: #53616F; /* $dark */
}

#white {
	color: #FFFFFF; /* $white */
}

#text {
	color: #2B2E30; /* $text */
}
/* End Color Tokens */

/* General Advance Health Styles */
.advance-health-container {
	padding: 0;
	margin: 0;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
    overflow-x: hidden;
}

.advance-health-container .health-header {
	background-color: #3F79BC;
	color: #FFFFFF;
}

.advance-health-container .health-header h4 {
	color: #FFFFFF;
	padding: 1.194em 1.194em 1.194em 3.167em;
}

.advance-health-container .health-box {
	background-color: #00548B; /* $primary */
	padding-bottom: 1em;
	min-height: 25em;
	transition: .5s ease 0s;
}

.health-box .health-info {
	position: relative;
	background-image: none !important;
}

.health-box .health-info .img-con {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	z-index: 0;
	opacity: 0;
	transition: opacity .5s ease 0s;
}

.health-box .health-info.active .img-con {
	opacity: 1;
}

.health-box .health-info .img-con img {
	display: block;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: 50% 50%;
}

.health-box li.health-info:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background-color: #FFFFFF; /* $white */
	height: 100%;
	width: 100%;
	transition: transform .5s ease 0s;
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	z-index: 0;
}

.no-touch .health-box li.health-info:hover:before, .no-touch .health-box li.health-info:focus:before, .no-touch .health-box li.health-info.active:before {
	-webkit-transform: translateX(21%);
	-ms-transform: translateX(21%);
	transform: translateX(21%);
}

.health-box li.health-info:not(:last-child) a:after {
	content: '';
	position: absolute;
	bottom: 0;
	max-width: 23.556em;
	width: 100%;
	height: 1px;
	background-color: #3F79BC;
	left: 6.444em;
	transition: opacity .5s ease 0s;
	opacity: 1;
}

.no-touch .health-box li.health-info:hover a:after, .no-touch .health-box li.health-info:focus a:after, .no-touch .health-box li.health-info.active a:after {
	opacity: 0;
}

.health-box li.health-info a {
	color: #FFFFFF; /* $white */
	font-size: 1.167em;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif; /* @mainfont */
	padding: 2.05em 6.444em;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	transition: padding .5s ease 0s, color .5s ease 0s;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.no-touch .health-box li.health-info:hover a, .no-touch .health-box li.health-info:focus a, .no-touch .health-box li.health-info.active a {
	color: #D0282E; /* $secondary */
	padding: 2.05em 4.444em 2.05em 8.444em;
}

.health-box li.health-info a .icon-holder {
	position: absolute;
	top: 50%;
	padding: 1.3em;
	background-color: #D0282E; /* $secondary */
	font-size: 1.7em;
	right: 0;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	color: #FFFFFF; /* $white */
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: transform 0s ease .5s, opacity .5s ease 0s;
	z-index: 3;
	opacity: 0;
	height: 100%;
}

.no-touch .health-box li:hover a .icon-holder, .no-touch .health-box li:focus a .icon-holder, .no-touch .health-box li.active a .icon-holder {
	-webkit-transform: translateY(-50%) translateX(99.5%);
	-ms-transform: translateY(-50%) translateX(99.5%);
	transform: translateY(-50%) translateX(99.5%);
	opacity: 1;
	transition: transform 0s ease 0s, opacity .4s ease .1s;
}

.health-box li a .icon-holder icon {
	transition: transform .25s ease .25s, opacity .25s ease .25s;
	-webkit-transform: translateX(-0.7em);
	-ms-transform: translateX(-0.7em);
	transform: translateX(-0.7em);
	opacity: 0;
}

.no-touch .health-box li:hover a .icon-holder icon, .no-touch .health-box li:focus a .icon-holder icon, .no-touch .health-box li.active a .icon-holder icon {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	opacity: 1;
}

.advanced-health-images {
	position: relative;
	z-index: 2;
	overflow-y: hidden;
}

.advanced-health-images li.health-image {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 0;
	background-color: #FFFFFF; /* $white */
	transition: opacity .5s ease 0s;
}

.advanced-health-images li.health-image.active {
	opacity: 1;
	transition: opacity .5s ease 0s;
}

.advanced-health-images li.health-image img {
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	transition: opacity .5s ease 0s;
}
/* End General Advance Health Styles */

/* General Advance Health Styles [Green Theme] */
.green-theme .health-box li.health-info:not(:last-child) a:after {
	background-color: #008E85;
}

.green-theme.advance-health-container .health-header {
	background-color: #008e85;
}

.green-theme.advance-health-container .health-box {
	background-color: #006D66;
}
/* End General Advance Health Styles [Green Theme] */

/* Responsive [1650px] */
@media screen and (max-width: 1650px) {
	.health-box .health-header {
		padding: 2.333em 2.333em 2.333em 6.111em;
	}

	.health-info .health-link a {
		padding: 2.05em 2.333em 2.05em 6.111em;
	}

	.health-info:hover .health-link a {
		padding: 2.05em 1.333em 2.05em 7.111em;
	}

	.health-box li.health-info a {
		padding: 2.05em 4.444em;
	}

	.no-touch .health-box li.health-info:hover a, .no-touch .health-box li.health-info:focus a, .no-touch .health-box li.health-info.active a {
		padding: 2.05em 2.444em 2.05em 6.444em;
	}

	.health-box li.health-info:not(:last-child) a:after {
		left: 4.444em;
	}
}
/* End Responsive [1650px] */

/* Responsive [1500px] */
@media screen and (max-width:1500px) {
	.health-box .health-header {
		padding: 2.333em 2.333em 2.333em 2.5em;
	}

	.health-box li.health-info a {
		padding: 2.05em 2.333em 2.05em 2.5em;
	}

	.no-touch .health-box li.health-info:hover a, .no-touch .health-box li.health-info:focus a, .no-touch .health-box li.health-info.active a {
		padding: 2.05em 1.333em 2.05em 3.5em;
	}

	.no-touch .health-box li.health-info:hover:before, .no-touch .health-box li.health-info:focus:before, .no-touch .health-box li.health-info.active:before {
		-webkit-transform: translateX(10.5%);
		-ms-transform: translateX(10.5%);
		transform: translateX(10.5%);
	}

	.health-box li.health-info a:after {
		left: 2.5em;
		max-width: 26em;
	}

	.health-box li.health-info:not(:last-child) a:after, .health-box li.health-info:not(:last-child) a:after {
		left: 2.444em;
	}

	.advance-health-container .health-header h4 {
		padding: 1.194em 1.467em;
	}
}
/* End Responsive [1500px] */

/* Responsive [1200px] */
@media screen and (max-width: 1200px) {
	.advance-health-container {
	}

	.advanced-health-list-con.third {
		width: 50%;
	}

	.advance-health-container .health-box {
	}

	.advanced-health-images {
		width: 50%;
	}

	.no-touch .health-box li.health-info:hover:before, .no-touch .health-box li.health-info:focus:before, .no-touch .health-box li.health-info.active:before {
		-webkit-transform: translateX(8.5%);
		-ms-transform: translateX(8.5%);
		transform: translateX(8.5%);
	}
}
/* End Responsive [1200px] */

/* Responsive [1000px] */
@media screen and (max-width: 1000px) {
	.advance-health-container {
		position: relative;
	}

	.advanced-health-list-con.third {
		width: 100%;
	}

	.advance-health-container .scrolling-list-nav {
		_display: flex;
	}

	.advance-health-container .scroll-header {
		display: block;
		width: 100%;
		background-color: #3F79BC; /* $tertiary */
		padding: 2em 3.333em 2em 3.333em;
	}

	.advance-health-container .scroll-header h4 {
		color: #FFFFFF; /* $white */
		font-size: 2.222em;
		font-weight: 600;
	}

	.health-box .health-header {
		display: none;
	}

	.health-box .health-header header h4 {
		font-size: 2.667em;
	}

	.advance-health-container .health-box {
		background-color: transparent;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-align-items: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		padding-bottom: 0;
		z-index: 1;
	}

	.health-box .health-info {
		opacity: 0;
		overflow: hidden;
	}

	.health-box .health-info.active {
		opacity: 1;
	}

	.health-box .health-info .img-con {
		display: block;
	}

	.health-box li.health-info a .icon-holder {
		-webkit-transform: translateY(-50%) translateX(99.5%);
		-ms-transform: translateY(-50%) translateX(99.5%);
		transform: translateY(-50%) translateX(99.5%);
		opacity: 1;
	}

	.health-box li.health-info a .icon-holder icon {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		opacity: 1;
	}

	.health-box li.health-info a:hover, .health-box li.health-info a:focus, .health-box li.health-info.active a {
		padding: 2em 3.333em 2em 3.333em;
	}

	.no-touch .health-box li.health-info:hover a, .no-touch .health-box li.health-info:focus a, .no-touch .health-box li.health-info.active a {
		padding: 2em 3.333em 2em 3.333em;
	}

	.health-box li.health-info a {
		background-color: #FFFFFF; /* $white */
		padding: 2em 3.333em 2em 3.333em;
		color: #D0282E; /* $secondary */
		position: absolute;
		top: 50%;
		left: 0;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.health-info .health-image {
		width: 100%;
	}

	.health-box li.health-info a:before, .health-box li.health-info a:after {
		display: none;
	}

	.advanced-health-images {
		width: 100%;
		position: absolute;
		height: 100%;
		top: 0;
		left: 0;
		z-index: -1;
		display: none;
	}
}
/* End Responsive [1000px] */

/* Responsive [800px] */
@media screen and (max-width: 800px) {
	.advance-health-container {
	}

	.health-info .health-link a:hover, .health-info .health-link a:focus {
		padding: 2em 1.5em 2em 1.5em;
	}

	.health-info .health-link a {
		padding: 2em 1.5em 2em 1.5em;
	}

	.advance-health-container .health-header h4 {
		padding: 1em 1.5rem;
	}

	.no-touch .health-box li.health-info:hover a, .no-touch .health-box li.health-info:focus a, .no-touch .health-box li.health-info.active a {
		padding: 1.5rem;
		width: 100%;
	}

	.health-box li.health-info a .icon-holder {
		display: none;
	}
}
/* End Responsive [800px] */

/* Responsive [600px] */
@media screen and (max-width: 600px) {
	.advance-health-container {
	}

	.health-info .health-link {
		width: 100%;
	}

	.health-info .health-link a {
		background-color: rgba(255,255,255,0.8); /* alpha($white,80%) */
	}

	.health-info .health-link a .icon-holder {
		display: none;
	}

	.health-box li.health-info a {
		top: auto;
		bottom: 0;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}
/* End Responsive [600px] */

/* Responsive [450px] */
@media screen and (max-width: 450px) {
	.advance-health-container {
	}

	.advance-health-container .scroll-header {
		padding: 2em 1.5em;
	}
}
/* End Responsive [450px] */
