@charset "UTF-8";

.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;
}

.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 10px 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;
}


@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 ul li 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-rtl ul{
		justify-content:flex-start; 
		direction: rtl;
	}
	.navs ul li{
		position: relative;
		padding: 5px 15px; margin: 0;
	}
	.navs ul li:has(ul) a{
		color: #4BA5DC;
	}
	.navs ul li ul{
		display: none;
	}
	.navs ul li:hover{
		background-color: #4BA5DC;
	}
	.navs ul li:hover 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-rtl ul li:hover ul{
		right: 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-rtl ul{
		text-align: right;
	}
	.navs ul li{
		margin: 0; padding: 0;
	}
	.navs-rtl ul li{
		direction: rtl;
	}
	.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 15px 5px 0;
}

.navs-rtl .hasChild div > a{
	padding: 5px 0 5px 15px;
}
.navs-rtl .hasChild div > span{
	float: left;
	margin-top: 4px;
}
/*.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{
	position: relative;
}
.herobanner img{
	width: 100%; height: auto;
}
.herobanner > div > div{
	position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    max-width: 640px;
    margin: 0;
	display: flex;
    flex-direction: column;
	justify-content: center;
	height: 100%;
}
.herobanner > div > div{
	background: linear-gradient(200deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 2255, 1) 100%);
	padding: 0 50px;
}
.herobanner > div > div img{
	max-width: 300px;
	margin: 15px 0;
}
.herobanner > div > div h1{
	text-transform: uppercase;
}
@media screen and (max-width: 900px){
	.herobanner > div > div > div{
		display: none;	
	}
	.herobanner > div > div img{
		
		width: 80% !important;
	}
}
@media screen and (max-width: 768px){
	
	.herobanner > div > div{
		padding: 0 20px;
	}
}
section{
	padding: 50px 0;
}
section > div{
	max-width: 1140px;
	padding: 0 20px;
	margin: 0 auto;
	box-sizing: border-box;
}
.support-container > div:last-child{
	margin: 0 auto;
}


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

.home-activities{
	text-align: center;
	background: #fafafa;
}
.headline > span.headline-sub{
	font-size: 1.2rem; line-height: 1.3rem;
	display: block;
	color: #666; font-style: italic;
	margin: 5px 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_rtl{
	direction: rtl;
}
.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: 52%;
	font-size: 18px; line-height: 24px;
}
.waterline_rtl .box-panel{
	margin-right: 56%;
}
.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: 100%;;
}
.product_highlights div.item{
	/* 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.item h3{
	font-size: 16px;
	flex: auto;
}
.product_highlights div.item img{
	width: 100%; height: auto;
	margin: 0 0 0 0;
}
.product_highlights div.item a.button{
	width: 40%; margin: 0 auto;
	display: block; clear: both;
}
.product_highlights .owl-nav{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 0;
}

.product_highlights .owl-nav .owl-prev{
	position: absolute;
	top: 50%;
	left: -35px;
	transform: translateY(-50%);
}
.product_highlights .owl-nav .owl-next{
	position: absolute;
	top: 50%;
	right: -35px;
	transform: translateY(-50%);
}
@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: 40%; 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: .95rem;
    line-height: 1.2rem;
}

footer a{
	color: #fff; text-decoration: none;
}

.footer-nav{
	list-style: none;
	display: flex;
	flex-direction: row;
	padding: 0; margin: 0;
	justify-content: center;
	flex-wrap: wrap;
}
.footer-nav li{
	padding: 0; margin: 0;
}
.footer-nav li a{
	color: #fff; text-decoration: none;
}
.footer-nav li a:after{
	content: '|';
	margin: 0 15px;
}
.footer-nav li:last-child a:after{
	content: '';
	margin: 0;
}
.copyright{
	font-size: .8rem;
	line-height: 1rem;
	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 h4{
	color: #fff;
	text-transform: uppercase;
}
.homepure-info > div{
	width: 100%; max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
}
.homepure-info-rtl > div{
	direction: rtl;
}
.homepure-address{
	width: 40%;
	flex-grow: 0;
}
.homepure-sitemap{
	flex-grow: 1;
	padding: 0 20px;
}
.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-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 .5rem 0; padding: 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;
}

.homepure-info-rtl .homepure-sitemap ul > li ul li{
	padding: 0 20px 0 0;
}

.homepure-info-rtl .homepure-sitemap ul li ul li:before{
	right: 0;
	left: auto;
}


@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 0 70px;
}
.why_homepure_list > div img{
	position: absolute;
	top: 20px; left: 0;
	width: 60px; height: auto;
}
.why_homepure_list > div h3{

}
.why_homepure_rtl .why_homepure_list > div{
	padding: 20px 70px 20px 40px;
}
.why_homepure_rtl .why_homepure_list > div img{
	top: 20px; right: 0;
}

.why_homepure_advantage{
	display: flex;
	flex-direction: row;
	margin-bottom: 50px;
	align-items: flex-start;
	padding-top: 30px;
}
.why_homepure_advantage > div{
	padding: 0 15px 0 15px;
	width: 33.33%;
	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: 2px solid #40A0DB;
	padding: 0 0 10px 0;
}
.why_homepure_advantage > div .why_homepure_remark{
	position: absolute;
	top: 100%; margin-top: 5px;
	font-size: 14px; line-height: 16px;
	font-style: italic;
}

.number_highlight{
	font-size: 22px !important; line-height: 24px !important;
	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 50px 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;
}

#tab-container > .tab-container > .tab-menu{
	max-width: 1140px;
	margin: 0 auto;
	border: 0;
	border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.tab-container_rtl{
	direction: rtl;
}
.complete_water_line_container_rtl{
	direction: rtl;
}
.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{
	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: 1.5rem 0 1.5rem 2rem;
	box-sizing: border-box;
}
.complete_water_line_container_content_right_rtl > div:last-child{
	padding: 30px 30px 30px 0;
}
.complete_water_line_container_content_left > div:first-child{
	width: 50%;	
	padding: 1.5rem 2rem 1.5rem 0;
	box-sizing: border-box;
}
.complete_water_line_container_content_left_rtl > div:first-child{
	width: 50%;	
	padding: 30px 0 30px 30px;
	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 2rem; margin: 0;
	border-right: 1px solid #ccc;
	/*width: 25%;*/
	display: flex;
	justify-content: center;
}
.tab-container_rtl .tab-menu ul li{
	border-left: 1px solid #ccc;
	border-right: 0;
}
.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: 20px 0 0 0;
}
.tab-content-text h1{
	position: relative;
	padding: 0 40px 0 0;
}
.tab-container_rtl .tab-content-text h1{
	padding: 0 0 0 40px;
}
.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;
}
.stage_rtl{
	direction: rtl;
}
.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_rtl{
	direction: rtl;
}
.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;
	margin-left: 5px;
}
.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;
}


.nineStags-item_rtl .stageNo > span:last-child{
	font-size: 20px; line-height: 36px;
}
.nineStags-item_rtl .stageNo > .num{
	float: right;
}
.nineStags-item_rtl .stageNo > span:last-child{
	margin: 0 44px 0 0;
}
.nineStags-item_rtl > div:last-child{
	padding: 10px 15px 10px 0 !important;
}

@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{
	display: none;
}

.learnmore div > div { text-align: center; }
.learnmore_rtl{
	direction: rtl;
}
@media screen and (max-width:768px){
	.stage-desc, .stage-desc-r{
		display: none !important;
	}
	.nineStags-slide{
		display: block !important;
	}
}
.supports_rtl{
	direction: rtl;
}
.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%;
	
}
.supports_rtl .support-vdo-container > div:last-child{
	padding-right: 2%;
	padding-left: 0;
}
.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-list > div > div:last-child{
	display: none;
}
.support-vdo-highlight .button-play{
	font-size: 50px;
	background: #fff;
	border-radius: 100px;
}

.support-vdo-list > div > div:first-child:before{
	position: absolute;
	content: '';
	width: 100%; height: 100%;
	background: #000;
}
.support-vdo-list > div > div:first-child img{
	position: relative;
	transition: all .3s ease-in-out;
}

.support-vdo-list > div > div:first-child:hover img{
	opacity: .5;
}

.support-vdo-list .button-play{
	font-size: 30px;
		background: #fff;
	border-radius: 100px;
}

.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: 0 !important;
	}
	
	.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::before{
	font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    content: "\f00c";
	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;
}

.tab-container_rtl .product-features > div span{
	margin-left: 15px;
}
.tab-container_rtl .product-features > div::before{
	margin-left: 15px;
}
.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_rtl{
	direction: rtl;
}
.homepureZayn-5stages h1, .homepureZayn-5stages h2, .homepureZayn-5stages h3{
	color: #fff;
}
.zayn-stages-container{
	display: flex;
	flex-direction: row;
}
.zayn-stages-container > div:first-child{
	width: 50%;	
	padding: 0 20px 0 0;
	box-sizing: border-box;
	flex: 0 0 50%;
}
.zayn-stages{
	margin-top: 60px;
}
.zayn-stages h4{
	font-weight: 600;
	color: #fff;
}
.zayn-stages ul{

}
.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_rtl{
	direction: rtl;
}

.homepureZayn-touchscreen_rtl > div > div{
	margin-right: 50%;
}
.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: 100%;
	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;
	overflow: hidden;
}
.banner-ads-contact img{
	visibility: hidden;
	height: 200px;
	text-align: center;
	margin: 0 auto;
}

.support-container h2{
	text-transform: uppercase;
}
.support-container_rtl{
	direction: rtl;
} 
.download-container{
	display: flex;
	flex-direction: row;
}

.download-list{
	display: flex;
	flex-direction: row;
	padding: 0 10px;
	box-sizing: border-box;
}
.download-list a.button{
  background: none;
  color: #1D77AF;
  padding: 0;
	min-width: 25px;
    text-align: center;
    margin-bottom: 4px !important;
}
.download-list > div:first-child{
	flex: 0 0 120px;
}
.download-list > div:last-child{
	padding: 10px;
}
.download-file-group h5{
	margin: 10px 0 0 0;
    font-weight: 500;
    text-transform: uppercase;
    color: #333;
}
.download-file-group > div{
	display: flex;
	    width: 100%;
    flex-wrap: wrap;
}
.download-file-group div a{
	font-size: .7em;
	padding: 0 10px !important;
	background: #4BA5DC !important;
    color: #fff !important;
	margin-right: 5px;
}
.download-file-group a:last-child{
	border: 0;
	margin: 0;
}
.thirdparty{
	background: #fafafa;
}

.thirdparty_rtl{
	direction: rtl;
}
.video-container{
	width: 100%;
	display: flex;
	flex-direction: row;
}
.video-container > div{

}
.video-list{
	padding: 0 10px;
	box-sizing: border-box;
	
}
.video-list h4{
	color: #333;
	font-size: 16px; line-height: 18px;
}
.cat-name
.video-list .button-play{
	font-size: 1.5em;
	background: #fff;
    border-radius: 100px;
}
.video-list > div:first-child{
	position: relative;
}
.video-list > div:first-child:before{
	position: absolute;
	content: '';
	width: 100%; height: 100%;
	background: #000;
	border-radius: 12px;
}
.video-list > div:first-child img{
	position: relative;
	transition: all .3s ease-in-out;
	border-radius: 12px;
}
.video-list > div:first-child:hover img{
	opacity: .5;
}
.video-list > div:last-child{
	padding: 10px;
}
.video-list a{
	font-size: .8em;
    background: red;
    text-align: center;
    border-radius: 20px;
    width: 67px;
    height: 35px;
}
.video-list a i{
margin-left: 2px;
transform: translate(-50%, -50%);
position: absolute;
top: 50%;
left: 50%;
color: #fff;
}
.cat-name{
	color: #4BA5DC;
	font-size: .7em;
}
.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;
}
.languages{
	position: relative;
	font-size: 15px; line-height: 18px;
	padding: 20px 10px 10px 0;
	display: none;
}
@media screen and (min-width:961px){
	.languages:hover ul{
		display: block;
	}
	
	.languages-select{
		cursor: pointer;
	}
	.languages-select span i{
		cursor: auto;
	}
}

@media screen and (max-width:960px){
	.languages-select span i{
		cursor: pointer;
	}
}
.languages span{
	display: inline-block;
	font-weight: bold;
	text-transform: uppercase;
}
.languages i{
	margin: 0 0 0 5px;
}
.languages ul{
	position: absolute;
	top: 45px; left: 0;
	display: none;
	list-style: none;
	margin: 0; 
	background: #fff;
	padding: 10px 20px;;
	width: 150px;
	border-radius: 4px;
	border: 1px solid #ccc;
	box-shadow: 2px 2px 0 #ccc;
}
.languages ul li{
	margin: 0; padding: 2px 0;
}
.languages ul li a{
	color: #000;
	text-decoration: none;
	transition: .2s all ease-in-out;
	display: block;
	margin: 0 0 5px 0;
}

.languages ul li a:hover{
	color: #4BA5DC;
}

.languages ul li:last-child a{
	margin: 0;
}
/*
.languages ul li:nth-child(2) {
	display: none;
}*/

.blog-headline h1{
	margin-bottom: 10px;
}

.blog-container{
	padding-top: 100px;
}
.blog-container-row{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.blog-container-row >  div:first-child{
	width: 70%;
}
.blog-container-row > div:last-child{
	width: 30%;
	padding: 0 0 0 30px;
	box-sizing: border-box;
}


.blog-description h1{
	margin-top: 20px;
	margin-bottom: 10px;
	font-weight: 500;
	font-size: 32px; line-height: 34px;
}
.blog-description h2{
	margin-top: 20px;
	font-weight: 600;
	font-size: 20px; line-height: 22px;
	color: #707070;
}
h2.head-topics{
	color: #40A0DB !important;
	text-transform: uppercase;
	font-size: 20px; line-height: 24px;
	font-weight: 600;
}
h2.head-topics:before{
	font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
	content: "\f187";
	margin-right: 10px;
}

.topics{
	position: relative;
}
.topics > div{
	position: sticky;
	top: 100px; left: 0;
	font-size: .8em;
    line-height: 1.3em;
}
.topics ul{
	padding: 0; margin: 0;
	list-style: none;
}
.topics ul li{
	padding: 10px 0; margin: 0;
	box-sizing: border-box;
	border-bottom: 1px dotted #707070;
}

.topics ul li a{
	text-decoration: none;
	color: #707070;
	display: block;
}
.topics ul li a:hover{
	color: #4BA5DC;
}

.topics ul a.active{
	color: #4BA5DC;
	font-weight: 500;
}

@media screen and (max-width: 960px){
	.blog-container-row >  div:first-child{
		width: 100%; margin-bottom: 30px;
	}
	
	.blog-container-row >  div:last-child{
		width: 100%;
		padding: 0;
	}
	.blog-container{
		padding-top: 0;
	}
	
	
}

.sitemap-nav li a{
	color: #fff; text-decoration: none;
}

.tag-group{
	margin-bottom: 15px;
	display: flex;
}
.tag-group a{
	text-decoration: none;
	font-size: 10px;
	line-height: 13px;
	background: #4BA5DC;
	color: #fff;
	padding: 5px 12px;
	border-radius: 20px;
	margin-right: 5px;
}

.tag-group .date{
	font-size: 13px;
	line-height: 23px;
	color: #999;
	margin: 0 5px;
}

#breadcrumbs{
	font-size: .7em;
	line-height: 1.4em;
	margin-bottom: 5px;
}
#breadcrumbs a{
	text-decoration: none;
}
.flex-row{
	display: flex;
	flex-direction: row;
	margin: 20px auto;
	max-width: 1080px;
	box-sizing: border-box;
}
.flex-row > div{
	padding: 0 10px;
}
.flex-row.col-2 > div{
	width: 50%;
}
.flex-row.col-3 > div{
	width: 33.33%;
}
.flex-row.col-4 > div{
	width: 25%;
}
.flex-row img{
	max-width: 75%;
	margin: 10px auto;
}

.feature_products{
	display: flex;
	flex-direction: row;
	color: #fff;
}

.feature_products > div{
	width: 50%;;
}

.feature_products .img-logo{
	width: 100%;
	max-width: 300px;
	margin-top: 200px;
	height:auto;
}

@media screen and (max-width:961px){
	.feature_products{
		flex-direction: column;
	}
	.feature_products > div{
		width: 100%;;
	}
	.feature_products .img-logo{
		margin-top: 0;
	}

	
}

.viva_control{
	display: flex;
	flex-direction: row;
	margin-bottom: 50px;
	align-items: flex-start;
	justify-content: center;
	padding-top: 30px;
}
.viva_control > div{
	width: 30%;
	padding: 0 20px;
	text-align: center;
	box-sizing: border-box;
}
.viva_control > div > img{
	width: 50%; height: auto;
	margin: 0 auto 20px auto;
}
.viva_control > div .number_highlight{
	clear: both;
	display: block;
	font-size: 36px !important;
	line-height: 40px !important;
}

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


.spec-container{
	display: flex;
	flex-direction: row;
	padding: 0 15px;
}
.spec-container > div{
	width: 50%;
}
.spec-container > div img{
	margin-top: 20px;
}
.viva-filter-container{
	display: flex;
	flex-direction: row;
	padding: 30px 15px;
	align-items: center;
}
.viva-filter-container > div:first-child{
	text-align: right;
}
.viva-filter-container > div:first-child, .viva-filter-container > div:last-child{
	width: 35%;
}
.viva-filter-container > div:nth-child(2){
	width: 30%;
	padding: 0 50px;
	box-sizing: border-box;
}
.smart-mode-container{
	display: flex;
	flex-direction: row;
	margin-bottom: 20px;
}
.smart-mode-container > div{
	width: 50%;
}
.smart-mode-container > div > div{
	position: relative;
}
.mode-title{
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	opacity: .8;
	color: #fff;
	padding: 10px 20px;
	box-sizing: border-box;
}
.smart-mode-container > div:last-child{
padding: 20px 30px;
box-sizing: border-box;
}
.smart-mode-container > div:last-child > div{
	display: flex;
	flex-direction: row;
	margin-bottom: 15px;
}
.smart-mode-container > div:last-child > div label{
	font-size: 20px;
	line-height: 30px;
	font-weight: bold;
	padding-top: 4px;
}
.alkaline label{
	color: #71ACDB;
}
.purified label{
	color: #5FB456;
}
.acidic label{
	color: #E4803A;
}
.smart-mode-container > div:last-child > div > div:first-child{
	width: 150px;
	flex: 0 0 150px;
}
.smart-mode-container > div:last-child > div > div:last-child{
	padding-left: 10px;
}
.alkaline-btn, .acidic-btn, .purified-btn{
width: 150px;
padding: 5px 15px;
line-height: 24px;
box-sizing: border-box;
border-radius: 4px;
display: block;
color: #fff;
justify-content: center;
display: flex;
align-items: center;
}
.alkaline-btn{
	background-color: #71ACDB;
}
.purified-btn{
	background-color: #5FB456;
}
.acidic-btn{
	background-color: #E4803A;
}

.smart-mode-right > div:first-child{
	order: 2;
}
.smart-mode-right > div:last-child{
	order: 1;
}

@media screen and (max-width:961px){
	.viva_control{
		display: block;
	}
	.viva_control > div{
		width: 100%;
		margin: 30px 0;
	}
	.spec-container, .viva-filter-container{
		flex-direction: column;
	}
	.spec-container > div, .viva-filter-container > div{
		width: 100% !important;
		text-align: left !important;
	}
	.spec-container > div:first-child{
		order: 2;
	}
	.spec-container > div:last-child{
		order: 1;
	}
	.viva-filter-container{
		padding: 0;
	}
	.viva-filter-container > div:first-child{
		order: 1;
	}
	.viva-filter-container > div:last-child{
		order: 2;
	}
	.viva-filter-container > div:nth-child(2){
		order: 3;
	}
	.viva-filter-container > div img{
       margin: 50px auto 0 auto;
	   width: 75%;
	}
	.smart-mode-container{
		flex-direction: column;
	}
	.smart-mode-container > div{
		width: 100%;
	}
	.smart-mode-container > div:last-child{
		padding: 30px 0;
	}
}
.testimonials{
	background: #F5F5F5;
}
.testimonials .headline{
	text-align: center;
}
.testimonial-review .owl-stage-outer{
	background: #fff;
	border-radius: 10px;
	
}

.testimonial-review .item{
display: flex;
flex-direction: row;
padding: 40px 20px;
box-sizing: border-box;
justify-content: center;
align-items: center;
}
.testimonial-review .item > div:first-child{
	width: 60%;
	text-align: center;
	font-size: 2.1vw;
	line-height: 2.4vw;
	font-weight: 500;
	padding-left: 20px;
}
.testimonial-review .item > div:last-child{
	width: 40%;
	text-align: center;
}
.testimonial-review .item img{
	width: 80%; margin: 0 30px 0 auto;
	border-radius: 100%;
	font-style: italic;
}

.testimonial-name{
	position: relative;
	font-size: 1.8vw;
	display: flex;
	flex-direction: row;
	margin-top: 10px;
	justify-content: center;
align-items: center;
font-style: italic;
font-weight: normal;
}
.testimonial-name span.name{
 margin: 0 10px;
}
.testimonial-name:before{
	content: '';
	height: 2px;
	background: #0E7ED0;
	padding: 0 20px;
	display: block;
}
.testimonial-name:after{
	content: '';
	height: 2px;
	background: #0E7ED0;
	padding: 0 20px;
	display: block;
}

.testimonials .remark{
	font-size: 11px;
    line-height: 13px;
}
@media screen and (max-width:961px){
	.testimonials > div{
		padding: 0 15px;
	}
	.testimonial-review .item{
		flex-direction: column;
	}
	.testimonial-review .item > div{
		width: 100% !important;
	}
	.testimonial-review .item img{
		width: 50%;
		margin: 0 auto;
	}
	.testimonial-review .item > div:first-child{
		font-size: 5vw;
		line-height: 5.5vw;
		order: 2;
	}
	.testimonial-review .item > div:last-child{
		order: 1;
		margin-bottom: 20px;
	}
	.testimonial-name{
		font-size: 4vw;
	}
}
.make_your_home{
	background-color: #f4f4f4;
}
.make_your_home > div{
	text-align: center;
}
.video-background{
	position: relative;
	width: 100%;
	height: 100vh;
}
.video-background video {
	object-fit: cover;
	height: 100vh;
  }


.whyHomepure{
	display: flex;
	flex-direction: row;
	align-items: center;
}
.whyHomepure img{ 
	width: 100%; height: auto;
}
.whyHomepure > div{
	width: 50%;
}
@media screen and (max-width:961px){
	.video-background{
		height: 50vh;
	}
	.video-background video {
		height: 50vh;
	  }
	.whyHomepure{
		flex-direction: column;
	}
	.whyHomepure > div{
	width: 100%;
	}
}
.aspect-ratio-square {position:absolute; left:-21597px}
.object-position-center {position:absolute; left:-15079px}
.background-repeat-no {position:absolute; left:-12927px}
.background-position-center {position:absolute; left:-13095px}
.background-size-cover {position:absolute; left:-16785px}
.inset-0-full {position:absolute; left:-15987px}
.top-50-percent {position:absolute; left:-5537px}
.left-auto-margin {position:absolute; left:-13706px}
.right-negative-10 {position:absolute; left:-23326px}
.bottom-zero-value {position:absolute; left:-18085px}
.transform-scale-1-1 {position:absolute; left:-10790px}
.translate-x-half {position:absolute; left:-17339px}
.rotate-z-45deg {position:absolute; left:-10165px}
.skew-x-negative-10 {position:absolute; left:-14285px}