@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

body{
	margin: 0; padding: 0;
	font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 18px; line-height: 22px;
	color: #666;
}

p{
	margin: 8px 0;
}

h1, h2, h3, h4, h5{
	font-family: 'Asap', sans-serif;
	font-weight: normal;
	color: #4BA5DC;
	margin-top: 0;
}

h1{
	font-size: 36px; line-height: 40px;
}
h1.headline{
	font-weight: normal;
}
h2{ line-height: 24px; margin: 0 0 5px 0; }
h3{ font-weight: 500; margin: 0 0 5px 0;}
h4{
	margin: 0 0 10px 0;
}
h4.highlight{
	font-size: 18px; line-height: 22px;
	color: #fff; margin: 0 0 5px 0;
	font-weight: 600;
}
img{
	border: 0;
	margin: 0;
	display: block;
}
a{
	color: #4BA5DC;
	text-decoration: underline;
}
a:hover{
	text-decoration: none;
}

a.button{
	background: #4BA5DC;
	color: #fff;
	padding: 5px 15px;
	border-radius: 4px;
	display: inline-block;
	text-decoration: none;
	transition: all .2s ease-in-out;
}

a.button:hover{
	background: #1D77AF;
}
.text-blue{
	color: #0a5eb4;
}
.text-red{
	color: #dd0000;
}
.button-play{
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	color: #4BA5DC;
}

.reviews{
	display: none;
}

.container{
	width: 100%;
	margin: 0 auto;
}
.container > div{
}
.header{
	position: relative;
}
.topbar{
	position: absolute;
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 50px;
	padding: 10px 0;
	align-content: center;
	align-items: center;
	z-index: 10;
	background: rgba(255,255,255,.8);
}


.topbar.sticky{
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	background: rgba(255,255,255,1);
}


@media screen and (max-width:960px){
	.topbar{
		position: relative;
		transition: all .3s ease-in-out;
	}
}

.logo{
	flex: 0;
	padding: 0 20px;
	z-index: 100;
}

.navbar-toggle{
	position: relative;
	margin-right: 20px;
	margin-top: 2px;
	margin-left: auto;
	width: 20px;
	height: 20px;
	display: none;
	font-size: 22px;
	
}
.navbar-toggle a{
	display: block;
	width: 20px;
	height: 20px;
}

.navbar-toggle span{
	position: absolute;
	top: 0; left: 0;
	width:100%; height: 3px;
	background: #4BA5DC;
	display: block;
}
.navbar-toggle span:first-child{
	top: 33.33%;	transition: all .2s ease-in-out;
}
.navbar-toggle span:last-child{
	top: 66.67%;	transition: all .2s ease-in-out;
}

.navbar-toggle a.active span:first-child{
	transform: rotate(45deg) translateY(-50%);
	transform-origin: center;
	top: 50%; left: -1px;
}
.navbar-toggle a.active span:nth-child(2){
	display: none;
}
.navbar-toggle a.active span:last-child{
	transform: rotate(-45deg) translateY(-50%);
	transform-origin: center;
	top: 50%; left: 1px;
}
.navs > ul > li:last-child{
	display: none;
}
.homepure-sitemap-container > div:last-child ul > li:last-child{
	display: none;
}
@media screen and (min-width:961px){
	.navs{
		flex: 1;
		margin-top: 10px;
		margin-left: auto;
		font-size: 16px; line-height: 20px;
		padding:  0 20px 0 0;
		color: #4BA5DC;
	}
	.navs > dvi{
		display: flex;
	}
	.navs a{
		text-decoration: none;
	}
	.navs span{
		font-size: 13px;
	}
	.navs ul{
		list-style: none;
		padding: 0; margin: 0;
		display: flex;
		flex-direction: row;
		justify-content: flex-end; 
	}

	.navs ul li{
		position: relative;
		padding: 5px 15px; margin: 0;
	}
	.navs ul li:has(ul) a{
		color: #f00;
	}
	.navs ul li ul{
		display: none;
	}
	.navs ul li:hover{
		background-color: #4BA5DC;
	}
	.navs ul li:hover div > a, .navs ul li:hover div > span{
		color: #fff;
	}
	.navs ul li:hover ul{
		display: block;
		position: absolute;
		top: 30px; left: 0;
		width: 200px;
		background-color: #4BA5DC;
		padding: 10px 0;
	}

	.navs ul li:hover ul li a{
		position: relative;
		color: #fff;
	}
	
}

@media screen and (max-width:960px){
	
	.logo.logo-white{
		filter: brightness(0) invert(1);
		transition: .5s;
	}
	.navbar-toggle{
		display:block;
		z-index: 100;
	}
	
	.navs{
		display:block;
		position: absolute;
		top: 0; left: -350px;
		width: 350px;  height: 100vh;
		font-size: 20px; line-height: 30px;
		padding-top: 70px;
		box-sizing: border-box;
		overflow: hidden;
		background: #4BA5DC;
		color: #fff;
		transition: .3s;
	}
	.navs.active{
		display: block;
		left: 0;
		transition: .3s;
		box-shadow: 5px 0 10px #ccc;
	}
	.navs a{
		text-decoration: none;
		display: block;
		width: 100%;
		padding: 5px 0;
		color: #fff;
	}
	.navs ul{
		list-style: none;
		margin: 0; padding: 0 20px 20px 28px;
		overflow: auto;
		height: 100%;
	}
	.navs ul li{
		margin: 0; padding: 0;
	}
	.navs ul li > div{
		width: 100%;
		display: flex;
		flex-direction: row;
		flex-grow: 1;
	}
	.navs ul li ul {
		display: none;
		padding: 0 0 0 20px;
	}

	.navs ul li span{
		margin-left: auto;
		color: #fff;
		cursor: pointer;
		font-size: 16px;
		line-height: 30px;
	}
	
    .navs.active:before{
		content: '';
		width: 100%; height: 100vh;
		position: fixed;
		top: 0; left: 0;
		background: rgba(255,255,255,.75) !important;
		z-index: -1;
	}

}

.hasChild div > a{
	position: relative;
	padding: 5px 30px 5px 0;
}

/*.hasChild > a:after{
	position: absolute;
	top: 2px; right: 5px;
	font-family: "Font Awesome 5 Free"; font-weight: 400; 
	content: "";
	border-left: 3px solid #fff;
	border-top: 3px solid #fff;
	display: block;
	width: 6px; height: 6px;
	border-color: #4BA5DC;
	font-size: 14px;
	transform: rotate(225deg);
}

.navs ul li.hasChild:hover > a:after{
	border-color: #fff;
}
*/
.herobanner img{
	width: 100%; height: auto;
}

section{
	padding: 50px 0;
}
section > div{
	max-width: 1000px;
	padding: 0 20px;
	margin: 0 auto;
	box-sizing: border-box;
}

.why_homepure{
	padding: 50px 0;
}
.home-why_homepure{
	text-align: center;
}

.home-activities{
	text-align: center;
	background: #fafafa;
}
.headline > span.headline-sub{
	font-size: 20px; line-height: 24px;
	display: block;
	color: #666; font-style: italic;
	margin: 10px 0;
}
.waterline{
	/*background-image: url('../images/Complete_Water_Line.jpg');*/
	background: url('../images/Complete_Water_Line.jpg') 50% 0 no-repeat fixed;
	background-size: cover;
	color: #333;
}
.waterline > div{
	padding: 50px 20px 20px 20px;	
}
.waterline h1.headline{
	font-size: 44px; line-height: 56px;
	margin: 0 0 10px 0;
	text-transform: uppercase;
}
.waterline h1.headline span{
	font-family: 'Asap', sans-serif;
	display: block;
}
.waterline h1.headline span.complete_water_line{
	width: 300px;
	display: flex;
	flex-direction: column;
}

.waterline h1.headline span.line1{
	color: #797d7e;
	font-size: 62px;
	line-height: 60px;
}
.waterline h1.headline span.line2{
	background: #0873d8;
	color: #fff;
	font-size: 32.3px;
	line-height: 40px;
	padding: 5px 10px;
}
.waterline h1.headline span.line3{
	color: #0873d8;
	text-align: right
}

.waterline > div{
	position: relative;
	width: 100%; max-width: 1000px;  height: 90vh;
}

.box-panel{
	position: sticky;
	top: 150px; left: 20px;
	width: 45%;
	font-size: 18px; line-height: 24px;
}
.box-panel a.button{
	margin-top: 10px;
}
.home-product_highlights{
	text-align: center;
}
.product_highlights{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}
.product_highlights > div{
	width: 24%;
	border: 1px solid #ccc;
	text-align: center;
	padding: 10px;
	box-sizing: border-box;
	margin: 0 .5%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	
}
.product_highlights > div h3{
	font-size: 16px;
	flex: auto;
}
.product_highlights > div img{
	width: 100%; height: auto;
	margin: 0 0 0 0;
}
.product_highlights > div a.button{
	width: 33.33%; margin: 0 auto;
	display: block; clear: both;
}

@media screen and (max-width:960px){
	.product_highlights > div{
		width: 49%;
		margin: 0 0 10px 0;
	}
}
@media screen and (max-width:568px){
	.product_highlights > div{
		width: 89%;
		margin: 0 auto 10px auto;
	}
}

.activities{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.activities > div.item{
	width: 24%;
	padding: 10px;
	box-sizing: border-box;
}
.activities > div img{
	width: 100%; height: auto;
}
.activities > div a{
	width: 33.33%; margin: 0 auto;
	display: block; clear: both;
}
.activities-title{
	margin: 0 0 10px 0;
	display: block;
	font-size: 16px;
}
.animate-image{
	width: 100%;
	overflow: hidden;
	margin: 0 0 20px 0;
}
.animate-image > div{
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all .3s;
}
.activities div.animate-image a{
	display: block;
	width: 100%;
}
.animate-image:hover{
	background: #000;
}
.animate-image:hover > div{
	transform: scale(1.2);
	opacity: .8;
}
.animate-image img{
	visibility: hidden;
}

footer{
	color: #fff;
	font-size: 16px; line-height: 20px;
}
footer a{
	color: #fff;
	text-decoration: none;
}

.copyright{
	text-align: center;
	background-color: #1D77AF;
	padding: 10px 20px;
}
.copyright > div{
	max-width: 1000px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 2px 0;
}

.homepure-info{
	background: #40A0DB;
	padding: 30px 20px;
}

.homepure-info > div{
	width: 100%; max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
}

.homepure-address{
	width: 40%;
	flex-grow: 0;
}
.homepure-sitemap{
	flex-grow: 1;
	padding: 0 20px;
}
.homepure-sitemap-container{
	flex-grow: 1;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.homepure-sitemap-container > div{
	width: 45%;
	box-sizing: border-box;
}
.homepure-sitemap ul{
	list-style: none;
	margin: 0; padding: 0;
}
.homepure-sitemap ul > li{
	position: relative;
	margin: 0 0 8px 0;
}
.homepure-sitemap ul > li ul li{
	margin: 0; padding: 0 0 0 20px;
}
.homepure-sitemap ul li ul li:before{
	position: absolute;
	top: 0; left: 0;
	content: '-';
	margin: 0 5px;
}

.homepure-sitemap .highight{
	color: #fff;
}

@media screen and (max-width:768px){
	.homepure-sitemap-container{
		flex-wrap: wrap;
		}
	.homepure-sitemap-container > div{
		width: 100%;
	}
	
	.homepure-address{
		width: 55%;
	}
	.homepure-sitemap{
		width: 45%;
		padding: 0 10px;
		box-sizing: border-box;
	}
}

@media screen and (max-width:600px){
	.homepure-info > div{
		flex-direction: column;
	}
	.homepure-address{
		width: 100%;
		padding: 0 0 20px 0;
	}
	.homepure-sitemap{
		width: 100%;
		padding: 20px 0 0 0;
		border-top: 2px dotted#fff;
	}
}

.joinus{
	font-size: 20px; list-style-position: 24px;
	margin: 10px 0;
}

.onTop{
	position: fixed;
	bottom: 0; right: 0;
	background: #40A0DB;
	color: #fff;
	width: 50px; height: 50px;
	display: none;
	text-align: center;
	font-size: 30px; line-height: 50px;
	cursor: pointer;
}

.why_homepure_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.why_homepure_list > div{
	position: relative;
	width: 50%; line-height: 20px;
	box-sizing: border-box;
	padding: 20px 40px 20px 70px;
}
.why_homepure_list > div img{
	position: absolute;
	top: 20px; left: 0;
	width: 60px; height: auto;
}
.why_homepure_list > div h3{
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 36px; line-height: 36px;
	font-weight: 300;
	margin-bottom: 10px;
}

.why_homepure_advantage{
	display: flex;
	flex-direction: row;
}
.why_homepure_advantage > div{
	padding: 20px 10px;
	width: 25%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	position: relative;
	justify-content: flex-end;
	text-align: center;
}
.why_homepure_advantage > div > span{
	font-size: 16px; line-height: 18px;
	display: block;
}
.why_homepure_advantage > div > span:first-child{
	border-bottom: 3px solid #40A0DB;
	padding: 0 0 10px 0;
	margin-bottom: 10px;
}
.why_homepure_advantage > div .why_homepure_remark{
	position: absolute;
	bottom: -22px;
	font-size: 14px; line-height: 16px;
	font-style: italic;
}

.number_highlight{
	font-size: 22px; line-height: 24px;
	font-weight: bold;
	color: #40A0DB;
}

@media screen and (max-width:900px){
	
	.why_homepure_advantage{
		flex-wrap: wrap;
	}
	.why_homepure_advantage > div{
		width: 50%;
		padding: 0 5px;
	}
}

@media screen and (max-width:768px){
	.why_homepure_list{
		display: block;
	}
	
	.why_homepure_list >div{
		width: 100%;
		padding-right: 0;
		box-sizing: border-box;
	}
}

@media screen and (max-width:640px){
	
	.why_homepure_advantage{
		width: 100%; max-width: 320px;
		display: block;
		margin: 20px auto 0 auto;
	}
	.why_homepure_advantage > div{
		width: 100%;
		padding: 0;
		box-sizing: border-box;
		display: block;
	}
	.why_homepure_advantage > div > span{
		font-size: 20px; line-height: 20px;
	}
			

	.why_homepure_advantage > div > span:first-child{
		padding: 0 0 20px 0;
		margin-bottom: 20px;
	}
	.why_homepure_advantage > div .why_homepure_remark{
		bottom: -36px;
	}
}
.section-video{
	padding: 0;
}
.vdo-background{
	width: 100%;
	
}


#tab-container{
	padding-top: 0;
}
.complete_water_line_container > div{
	display: flex;
	flex-direction: row;
}
.complete_water_line_container > div div{
	width: 50%;
}
.complete_water_line_container > div div h3{
	font-size: 24px; line-height: 30px;
	margin-bottom: 10px;
}
.complete_water_line_container_content_right > div:first-child{
	width: 50%;	
}
.complete_water_line_container_content_right > div:last-child{
	width: 50%;	
	padding: 30px 0 30px 30px;
	box-sizing: border-box;
}
.complete_water_line_container_content_left > div:first-child{
	width: 50%;	
	padding: 30px 30px 30px 0;
	box-sizing: border-box;
}
.complete_water_line_container_content_left > div:last-child{
	width: 50%;	
}
.complete_water_line_container > div img{
	width: 100%; height: auto;
}
@media screen and (max-width:768px){
	
	.complete_water_line_container > div{
		flex-direction: column;
	}
	.complete_water_line_container > div div:first-child{
		width: 100% !important;
	}
	.complete_water_line_container > div div:last-child{
		width: 100% !important;
		padding: 20px 0;	
	}
	
	.complete_water_line_container_content_left > div:first-child{
		order: 2;
	}
}
.img-res{
	width: auto; max-width:100%;
	height: auto;
	margin: 0; display: block;
	border: 0;
}

.img-res-round{
	border-radius: 20px;
	box-shadow: 10px 10px 5px #dfdfdf;
}

.tab-menu{
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.tab-menu ul{
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
	justify-content: center;
}
.tab-menu ul li{
	padding: 10px 15px;
	border-right: 1px solid #ccc;
	width: 25%;
	display: flex;
	justify-content: center;
}
.tab-menu ul li:last-child{
	border: 0;	
}
.tab-menu ul li a{
	color: #999;
	text-decoration: none;
	display: flex;
	text-align: center;
	align-content: center;
	align-items: center
}
.tab-menu ul li a:hover{
	color: #40A0DB;
}
.tab-menu ul li a.active{
	color: #40A0DB;
	font-weight: 500;
}
.tab-content > div{
	display: none;
	
}
.tab-content > div:first-child{
	display: block;
}
.led-container {
	display: flex;
	padding: 30px 0;
	flex-direction: row;
}
.led-container > div{
	width: 25%;
	padding: 10px 15px;
	box-sizing: border-box;
}
.led-container img{ margin-bottom: 20px; }
.led-container ul{
	padding: 0; margin: 0;
	list-style: none;
}
.led-container ul li{
	position: relative;
	margin: 0; padding: 0 0 0 25px;;
}
.led-container ul li:before{
	position: absolute;
	top: 0; left: 0;
	content: "\2022";
  color: #40A0DB;font-size: 22px; line-height: 24px;
	font-weight: bold;
  display: inline-block; 
  margin: 0 10px;
}

@media screen and (max-width:768px){
	.tab-menu ul li{
		font-size: 14px; line-height: 18px;
	}
	.led-container {
		display: block;
	}
	.led-container > div{
		width: 100%;
		display: flex;
		flex-direction: row;
		flex-grow: 1;
		padding: 0;
	}
	.led-container > div > div:first-child{
		flex: 0 0 150px;
		margin-right: 30px;
	}
	.led-container > div > div:last-child{
		padding: 15px 0;	
	}
}
.tab-content-text {
	padding: 30px 0;
}
.tab-content-text h1{
	position: relative;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 40px;
	font-weight: 300;
	padding: 0 40px 0 0;
}
.tab-content-text h1 span{
	position: sticky;
	top: 70px;
	
}

.third-party{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.third-party > div{
	width: 50%;
	margin: 0 10px;
	border-radius: 10px;
}
.nsf{
	border: 2px solid #40A0DB;
	padding: 20px; 
	overflow: hidden;
}

.wqa{
	border: 2px solid #c39809;
	padding: 20px;
	overflow: hidden;
}

.third-party-head{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 0 0 20px 0;
	
}
.nsf .third-party-head h2{
	font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: 500;
	font-size: 20px; line-height: 24px;
	padding: 0 0 0 20px;
	color: #40A0DB;
}
.wqa .third-party-head h2{
	font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: 500;
	font-size: 20px; line-height: 24px;
	padding: 0 0 0 20px;
	color: #c39809;
}
.third-party-head span{
	display: block;
	clear: both;
	color: #999;
	font-size: 18px; line-height: 20px;
	font-weight: normal;
}
.third-party-head img{
	width: 160px;
}
.third-party-remark{
	padding: 10px;
	color: #40A0DB;
	font-size: 16px; line-height: 20px;
	font-style: italic;
	text-align: center;
}

@media screen and (max-width:768px){
	.third-party{
		display: block;
	}
	.third-party > div{
		width: 100%;
		box-sizing: border-box;
		margin: 0;
	}
	
	.third-party > div:first-child{
		margin: 0 0 20px 0;
	}
}
/*9 Stages*/
.nineStages{
	background: url("../images/HomePure_Nova_BG.jpg") no-repeat bottom center fixed;
	background-size: cover;
}
.ninestage-headline{
	text-align: center;
}

.ninestage-headline img{
	margin: 0 auto;
}
.ninestage-headline h1{
	color: #333;
}
.nineStage-flow {
	max-width: 580px;
	box-sizing: border-box;
	margin: 0 auto;
}
.nineStage-flow  img{
	width: 100%; height: auto;
	display: block;
}

.stageNo{
	font-size: 16px;
	font-weight: 700;
	line-height: 36px;
	margin: 0 0 5px 0;
}
.stageNo > .num{
	border-radius: 100px;
	background: #0d56a6;
	color: #fff;
	width: 36px; height: 36px; line-height: 36px;
	text-align: center;
	margin: 0 0 5px 0;
	float: left;
}
.stageNo > span:last-child{
	margin: 0 0 0 44px;
	display: block;
	line-height: 13px;
	padding: 5px 0 0 0;
}
.nineStags-slide{
	width: 100%;
	margin: 50px auto 0 auto;
	box-sizing: border-box;
	padding: 10px 0;
}
.nineStags-item{
	display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.nineStags-item img{
	margin: 0 auto !important;
}
.nineStags-item > div:first-child{
	flex: 0 0 110px;
}
.nineStags-item > div:last-child{
	padding: 10px 0 10px 15px;
}
.nineStags-item > div:last-child > div{
	clear: both; line-height: 16px;
	font-size: 13px;
}
.nineStags-item img{
	width: 100%; height: auto;
	border-radius: 10px;
	border:2px solid #0066a1;
	display: block;
	box-sizing: border-box;
}
.nineStage-flow{
	position: relative;
}
.nineStage-flow > div{
	position: relative;
}

.stage{
	position: absolute;
	font-weight: 700;
}
.stage > a{
	position: relative;
	display: inline-block;
	border-radius: 100px;
	background: #0d56a6;
	color: #fff;
	width: 36px; height: 36px; line-height: 36px;
	text-align: center;
	text-decoration: none;
	transition: all .2s ease-in-out;
}


.stage > a:hover:after, .stage > a.active:after{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	border-radius: 100px;
	border: 2px solid #0d56a6;
	transform: translate(-50%,-50%);
	animation: circle .8s infinite;
}

.stage > a:hover:after{
	
}


@keyframes circle{
	0% {
		opacity: 0;
		border: 2px solid #0d56a6;
		width: 0; height: 0;
	}
	
	50%{
		opacity: 1;
		border: 2px solid #0d56a6;
		width: 40px; height: 40px;
	}
	
	100%{
		opacity: 0;
		border: 3px solid #0d56a6;
		width: 42px; height: 44px;
	}
}

.stage1{
	pointer-events: stroke;
	left: 2.5%; top: 37%;
	width: 18%;
}
.stage-desc{
	position: absolute;
	top: 0;
	color: #4BA5DC;
	width: 200px;
	right: 0;
	padding: 4px 50px 0 0;
	line-height: 16px;
	text-align: right;
	font-size: 16px;
	text-transform: lowercase;
	font-weight: normal;
}

.stage-desc-r{
	position: absolute;
	top: 0;
	color: #4BA5DC;
	width: 200px;
	left: 0;
	padding: 4px 0 0 50px;
	line-height: 16px;
	text-align: left;
	font-size: 16px;
	text-transform: lowercase;
	font-weight: normal;
}
.stage-desc:first-letter, .stage-desc-r:first-letter{
	text-transform: uppercase;
}
.stage1:before{
	content: '';
	width: 100%;
	display: block;
	height: 3px;
	background: #0d56a6;
	position: absolute;
	left: 0; top: 50%;
	transform: translateY(-50%);
}

.stage1:after{
	content: '';
	width: 12px; height: 12px; border-radius: 10px;
	display: block;
	background: #0d56a6;
	position: absolute;
	right: 0; top: 50%;
	transform: translateY(-50%);
}

.stage2{
	left: 10%; top: 47%;
	width: 18%;
}

.stage2:before{
	content: '';
	width: 100%;
	display: block;
	height: 3px;
	background: #0d56a6;
	position: absolute;
	left: 0; top: 50%;
	transform: translateY(-50%);
}

.stage2:after{
	content: '';
	width: 12px; height: 12px; border-radius: 10px;
	display: block;
	background: #0d56a6;
	position: absolute;
	right: 0; top: 50%;
	transform: translateY(-50%);
}

.stage3{
	left: 2.5%; top: 56.4%;
	width: 34.4%;
}
.stage3:before{
	content: '';
	width: 100%;
	display: block;
	height: 3px;
	background: #0d56a6;
	position: absolute;
	left: 0; top: 50%;
	transform: translateY(-50%);
}

.stage3:after{
	content: '';
	width: 12px; height: 12px; border-radius: 10px;
	display: block;
	background: #fff;
	position: absolute;
	right: 0; top: 50%;
	transform: translateY(-50%);
}

.stage4{
	left: 10%; top: 64.3%;
	width: 26.8%;
}
.stage4:before{
	content: '';
	width: 100%;
	display: block;
	height: 3px;
	background: #0d56a6;
	position: absolute;
	left: 0; top: 50%;
	transform: translateY(-50%);
}

.stage4:after{
	content: '';
	width: 12px; height: 12px; border-radius: 10px;
	display: block;
	background: #fff;
	position: absolute;
	right: 0; top: 50%;
	transform: translateY(-50%);
}

.stage5{
	left: 2.5%; top: 73%;
	width: 34.4%;
}
.stage5:before{
	content: '';
	width: 100%;
	display: block;
	height: 3px;
	background: #0d56a6;
	position: absolute;
	left: 0; top: 50%;
	transform: translateY(-50%);
}

.stage5:after{
	content: '';
	width: 12px; height: 12px; border-radius: 10px;
	display: block;
	background: #fff;
	position: absolute;
	right: 0; top: 50%;
	transform: translateY(-50%);
}

.stage6{
	right: 10%; top: 80%; text-align: right;
	width: 27%;
}
.stage6:before{
	content: '';
	width: 100%;
	display: block;
	height: 3px;
	background: #0d56a6;
	position: absolute;
	right: 0; top: 50%;
	transform: translateY(-50%);
}

.stage6:after{
	content: '';
	width: 12px; height: 12px; border-radius: 10px;
	display: block;
	background: #fff;
	position: absolute;
	left: 0; top: 50%;
	transform: translateY(-50%);
}

.stage7{
	right: 2.5%; top: 69.4%; text-align: right;
	width: 34.5%;
}
.stage7:before{
	content: '';
	width: 100%;
	display: block;
	height: 3px;
	background: #0d56a6;
	position: absolute;
	right: 0; top: 50%;
	transform: translateY(-50%);
}

.stage7:after{
	content: '';
	width: 12px; height: 12px; border-radius: 10px;
	display: block;
	background: #fff;
	position: absolute;
	left: 0; top: 50%;
	transform: translateY(-50%);
}
.stage8{
	right: 10%; top: 51.5%;
	width: 40%; text-align: right;
}
.stage8:before{
	content: '';
	width: 100%;
	display: block;
	height: 3px;
	background: #0d56a6;
	position: absolute;
	right: 0; top: 50%;
	transform: translateY(-50%);
}

.stage8:after{
	content: '';
	width: 12px; height: 12px; border-radius: 10px;
	display: block;
	background: #0d56a6;
	position: absolute;
	left: 0; top: 50%;
	transform: translateY(-50%);
}

.stage9{
	left: 50%; top: 13%;
	height: 14%;
	transform: translateX(-50%);
}
.stage9:before{
	content: '';
	height: 100%;
	display: block;
	width: 3px;
	background: #0d56a6;
	position: absolute;
	left: 50%; top: 0;
	transform: translateX(-50%);
}

.stage9:after{
	content: '';
	width: 12px; height: 12px; border-radius: 10px;
	display: block;
	background: #0d56a6;
	position: absolute;
	left: 50%; bottom: 0;
	transform: translateX(-50%);
}

.nineStags-slide{
	display: none !important;
}

.learnmore div > div { text-align: center; }

@media screen and (max-width:768px){
	.stage-desc, .stage-desc-r{
		display: none !important;
	}
	.nineStags-slide{
		display: block !important;
	}
}

.support-vdo-container{
	display: flex;
	flex-direction: row;
}
.support-vdo-container div{
	position: relative;
}
.support-vdo-container > div:last-child{
	flex: 0 0 40%;
	padding-left: 2%;
	
}
.support-vdo-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.support-vdo-list > div{
	width: 48%;
	margin-bottom: 10px;
	font-size: 14px; line-height: 16px;
	box-sizing: border-box;
}

.support-vdo-list > div > div:first-child{
	flex: 0 0 42.5%;
}
.support-vdo-highlight .button-play{
	font-size: 50px;
}

.support-vdo-list .button-play{
	font-size: 30px;
}

.reviews{
	background: #fafafa;
}
.reviews-container{
	display: flex;
	flex-direction: row;
}
.reviews-container > div{
	margin: 0 10px;
	background: #fff;
	padding: 20px;
	border: 1px solid #ccc;
	text-align: center;
	transition: all .2s ease-in-out;
}

.reviews-container > div:hover{
	transform: scale(1.1);
	box-shadow: 0 10px 10px #ccc;
}
.reviews-container > div img{
	width: 70%; margin: 0 auto 15px auto;
}

.reviews-container .review-user-name{
	font-size: 14px; line-height: 16px;
	font-style: italic;
	display: block; padding: 0 10px;
}
.reviews-container .review-rating{
	padding: 10px 0;
	color: #40A0DB;
}

@media screen and (max-width:768px){
	.support-vdo-container{
		display: block;
	}
	.support-vdo-container > div:first-child{
		margin-bottom: 20px;	
	}
	.support-vdo-container > div:last-child{
		flex: none;
		padding-left: 0;
	}
	
	.reviews-container{	
		display: block;
		max-width: 360px;
		margin: 0 auto;
		padding: 0;
	}
	.reviews-container > div{	
		margin: 0 auto 20px auto;
	}
	.reviews-container > div:hover{
		transform: scale(1);
		box-shadow: none;
	}
}


.homepureZayn{
	background: url("../images/banner/Homepure_Zayn_BG.jpg") no-repeat center bottom fixed;
	background-size: cover;
	height: 100vh;
}
.product-features {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.product-features > div{
	width: 50%;
	margin: 0 0 20px 0;
	display: flex;
	padding: 0 20px;
	box-sizing: border-box;
}
.product-features > div h3{
	margin: 5px 0;
}
.product-features > div span{
	color: #40A0DB;
	width: 36px; height: 36px; line-height: 32px;
	border: 2px solid #40A0DB;
	border-radius: 100px;
	text-align: center;
	display: block;
	box-sizing: border-box;
	margin-right: 15px;
	flex: 0 0 36px;
}



.homepureZayn-5stages{
	background: url("../images/Homepure_Zayn_5stages_BG.jpg") no-repeat center center fixed; 
	background-size: cover;
	color: #fff;
	padding: 50px 0;
}
.homepureZayn-5stages h1, .homepureZayn-5stages h2, .homepureZayn-5stages h3{
	color: #fff;
}
.zayn-stages-container{
	display: flex;
	flex-direction: row;
	font-size: 18px; line-height: 20px;
}
.zayn-stages-container > div:first-child{
	width: 50%;	
	padding: 0 20px;
	box-sizing: border-box;
	flex: 0 0 50%;
}
.zayn-stages{
	margin-top: 60px;
}
.zayn-stages > div{
	padding: 0 15px;	
	margin: 0 0 20px 0;
	
}
.zayn-stages h3{
	font-weight: 500;
	margin: 0 0 5px 0;
	font-size: 20px; line-height: 22px;
}

.zayn-remark{
	display: block; text-align: right;
	font-style: italic;
	font-size: 14px; line-height: 16px;
}

@media screen and (max-width:768px){
	.zayn-stages-container{
		display: block;
	}
	
	.zayn-stages-container  > div{
		width: 100% !important;
	}
}
.homepureZayn-touchscreen{
	 /*background: rgb(5,50,128);
background: linear-gradient(0deg, rgba(5,50,128,1) 0%, rgba(50,134,203,1) 100%); */
	background: url("../images/Homepure_Zayn_touch_screen.jpg") no-repeat bottom right fixed; 
	background-size: cover;
}

.homepureZayn-touchscreen h2, .homepureZayn-touchscreen h3{
	font-weight: normal;
}
.homepureZayn-touchscreen > div > div{
	width: 50%;
}

.zayn-touchscreen{
	margin-top: 20px;
}
.zayn-touchscreen > div{
	display: flex;
	margin: 0 0 10px 0;
}
.zayn-touchscreen > div > div:first-child{
	flex:  0 0 40px;
	margin: 0 10px 0 0;
}
.zayn-touchscreen > div > div:last-child{
	padding: 10px 10px 10px 0;
}

.img-zayn{
	display: none;
	margin:  20px 0
}

@media screen and (max-width:1000px){
	.homepureZayn-touchscreen{
		background: none;
	}
	
	.homepureZayn-touchscreen > div > div{
		width: 100%;
	}
	.zayn-touchscreen{
		display: flex;
		flex-wrap: wrap;
	}
	.zayn-touchscreen > div{
		width: 50%;
	}
	.img-zayn{
		display: block;
	}
}

@media screen and (max-width:640px){
	.zayn-touchscreen{
		display: block;
	}
	.zayn-touchscreen > div{
		width: 100%;
	}
}
@media screen and (max-width:640px){
	.product-features > div{
		width: 100%;
		margin: 0 0 20px 0;
		padding: 0;
	}
}

.overlay{
	position: fixed; top: 0;
	width: 100%; height: 100vh;
	background: rgba(0,0,0,.7);
	z-index: 1000;
	display: none;
}
.snackbar{
	position: fixed;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	width: 90%; max-width: 400px;
	background: #40A0DB;
	color: #fff;
	z-index: 1000;
	text-align: center;
	box-sizing: border-box;
	font-size: 20px; line-height: 22px;
	border-radius: 20px;
	padding: 30px 0 20px 0;
}
.snackbar-content{
	padding: 0 20px;
}
.snackbar span{
	display: block;
	margin: 20px 0 10px 0;
	font-size: 24px; line-height: 26px;
	text-transform: uppercase;
}
.snackbar a{
	color: #fff;

}
.snackbar i{
	font-size: 36px; line-height: 36px;
	margin-top: 5px;
}

.close-popup{
	position: absolute;
	top: -10px; right: -10px;
	width: 30px; height: 30px;
	display:block; text-align: center;
	background: #fff;
	border-radius: 100px; text-decoration: none;
}
.close-popup span{
	width: 30px; height: 30px; display: block;
	font-size: 16px; line-height: 30px; margin: 0;
	color: #666; 
}
.main-container{
	padding: 100px 0 50px 0;
}
.how_to_shop_step{
	display: flex;
	flex-direction: row;
	text-align: center;
	justify-content: center;
}
.how_to_shop_step > div{
	width: 25%;
	padding: 20px;
	box-sizing: border-box;
	font-size: 16px; line-height: 18px;
	
}
.how_to_shop_step > div a{
	text-decoration: none;
}
.how_to_shop_step .step{
	width: 160px;
	height: 160px;
	margin: 0 auto 10px auto;
	border-radius: 100%;
	display: flex;
	background: #40A0DB;;
	color: #fff;
	padding: 20px;
	box-sizing: border-box;
	justify-content: center;
	align-content: center;
	align-items: center;
	font-size: 30px; line-height: 30px;

}

@media screen and (max-width:800px){
	.how_to_shop_step {
		display: block;
	}
	.how_to_shop_step > div{
		width: 100%; max-width: 480px;
		margin: 0 auto;
		
	}
}

.howtopurchase{
	padding: 100px 0;
	text-align: center;
}
.contact-container{
	padding: 100px 0 50px 0;
	text-align: center;
}
.contact-info-container{
	display: flex;
	flex-direction: row;
	padding: 20px 0;
}
.contact-info-container > div{
	width: 50%;
	padding: 0 20px;
	box-sizing: border-box;
}
@media screen and (max-width:800px){
	.contact-info-container{
	display: block;
}
	.contact-info-container > div{
	width: 100%;
	padding: 0;
}
}
.banner-ads-contact{
	background: url("../images/banner/contact_banner.jpg") no-repeat center center;
	background-size: cover;
	margin: 0 0 50px 0;
}
.banner-ads-contact img{
	visibility: hidden;
	height: 200px;
	text-align: center;
	margin: 0 auto;
}

.support-container h2{
	text-transform: uppercase;
}

.download-container{
	display: flex;
	flex-direction: row;
}
.download-container > div{
	
}
.download-list{
	display: flex;
	flex-direction: row;
	padding: 0 10px;
	box-sizing: border-box;
}
.download-list > div:first-child{
	flex: 0 0 120px;
}
.download-list > div:last-child{
	padding: 10px;
}
.thirdparty{
	background: #fafafa;
}


.video-container{
	width: 100%;
	display: flex;
	flex-direction: row;
}
.video-container > div{
	margin: 0 10px;
}
.video-list{
	padding: 0 10px;
}
.video-list h4{
	color: #333;
	font-size: 16px; line-height: 18px;
	text-align: center;
}

.video-list .button-play{
	font-size: 24px;
}
.video-list > div:first-child{
	position: relative;
}
.video-list > div:last-child{
	padding: 10px;
}

.gsc-contact table{
	width: 100%; max-width: 600px;
	margin: 0 auto;
	text-align: center;
	border: 2px solid #4BA5DC;
	border-radius: 10px;
}

.gsc-contact h2{
	margin: 0 0 10px 0 !important;
}
.gsc-contact tr th{
	background: #4BA5DC;
	color: #fff;
	padding: 10px 15px;
	text-transform: uppercase;
}
.gsc-contact tr th:first-child{
	border-top-left-radius: 10px;
}
.gsc-contact tr th:last-child{
	border-top-right-radius: 10px;
}
.gsc-contact tr td{
	padding: 5px 15px;
}
.gsc-contact tr:nth-child(odd){
	background: #dfdfdf;
	padding: 5px 15px;
}

.gsc-contact tr:last-child td:first-child{
	border-top-left-radius: 10px;
}
.gsc-contact tr:last-child td:last-child{
	border-top-right-radius: 10px;
}