@charset "utf-8";
/* CSS Document */
/*----------------
RESET CSS
-----------------*/
body {
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	padding:0;
	background:#fff;
	color:#000000;
	text-align:center;
	font-family: 'Cera Pro';
	font-weight: normal;
	}
div, ul, h1, h2, h3, h4, h5, li, p, img, form, input, textarea {margin:0;padding:0;}
header, section, footer, aside, nav, main, article, figure {display: block;}
table, tr, td {border:0;}
a{outline: none; color:inherit; text-decoration:none;}
a:hover {}
img {border:none; height:auto;}
li {list-style:none;}
*{box-sizing:border-box;}
.img-full{max-width:100%;}
.clearall{
	clear:both;
	font-size:1px;
	line-height:1px;
	height:1px;
	}
.forMob,.forTab{ display:none ;}
.fl{ float:left;}
.fr{ float:right;}

/*-----------------------
MAIN CSS START
------------------------*/
.container {
	width:1170px;
	margin: 0 auto;
	padding: 0;
	position: relative;
	}
	
/*=========FONTS===========*/
@font-face {
    font-family: 'Cera Pro';
    src: url('CeraPro-Regular.woff2') format('woff2'),
        url('CeraPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('CeraPro-Light.woff2') format('woff2'),
        url('CeraPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('CeraPro-Bold.woff2') format('woff2'),
        url('CeraPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('CeraPro-Medium.woff2') format('woff2'),
        url('CeraPro-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('CeraPro-BoldItalic.woff2') format('woff2'),
        url('CeraPro-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('CeraPro-Italic.woff2') format('woff2'),
        url('CeraPro-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('CeraPro-Black.woff2') format('woff2'),
        url('CeraPro-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}




/*==========Header==============*/
.top-fix-bar {
	float: left;
	width: 100%;
	margin-bottom:70px;
	}
.header{
	float:left;
	width:100%;
	height:70px;
	margin-top: -70px;
    position: relative;
    top:70px;
	}
.fixed-nav .header{
	position: fixed;
	z-index: 11;
	top: 0;
	background:#fff;
	-webkit-transition: margin .3s ease-out;
    transition: margin .3s ease-out;
	margin-top:0;
	-webkit-box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	box-shadow: 0 3px 4px 0 rgba(0,0,0,0.1);
	}
.logo{
	float:left;
	width:250px;
	margin-top:10px;
	}

a.header-btn{ 
	float:right; 
	width:141px;
	font-size:18px;
	color:#ffffff;
	height:42px;
	border-radius:4px;
	font-weight:600;
	line-height:40px;
	background:#00c04e;
	margin-top:14px;
	display:none;
	}
.fixed-nav a.header-btn {
    display: block;
	}
	
ul.mainMenu{
	float:left;
	margin-top:27px;
	margin-left:20px;
	}
ul.mainMenu li{
	float:left;
    padding:0 16px;
	}
ul.mainMenu li:last-child{ border:none;}
ul.mainMenu li a{
	float:left;
	color:#000000;
	font-size:16px;
	line-height:19px;
	letter-spacing:0.3px;
	text-transform:uppercase;
	}
ul.mainMenu li a.active,ul.mainMenu li a:hover{color:#00c04e;}

/*MOBILE MENU CSS*/
.mob-mnu-ic{
    cursor: pointer;
    position:absolute;
    right:170px;
    top:26px;
	z-index:16;
	height:30px;
	}
.mob-mnu-ic button{
	outline: none;
    -webkit-appearance: none;
	background: none;
	padding:0;
    cursor: pointer;
	border: none;
	margin:0;
	}
.mob-mnu-ic span{
	color:#fff;
	display:inline-block;
	vertical-align:top;
	font-size:16px;
	margin-top:4px;
	margin-right:5px;
	}
.bar1, .bar2, .bar3 {
	width: 30px;
	height: 3px;
	background-color: #a7a7a7;
	transition: 0.4s;
	}
.bar2{margin: 6px 0;}
.dl-active .bar1 {
	-webkit-transform: rotate(-45deg) translate(-8.5px, 6px);
	transform: rotate(-45deg) translate(-8.5px, 6px);
	background:#a7a7a7;
	}
.dl-active .bar2 {opacity: 0;}
.dl-active .bar3 {
	-webkit-transform: rotate(45deg) translate(-7px, -4px);
	transform: rotate(45deg) translate(-7px, -4px);
	background:#a7a7a7;
	}
.mobilemenu{
	left:0;
	position:fixed;
	top:100px;
	background:#fff;
	z-index:12;
	right:0;
	bottom:0;
	overflow:scroll;
	display:none;
	border-top:1px solid #ddd;
	}
.mobimenu-top{ top:80px;}
.mobilemenu li{
	float:left;
	width:100%;
	text-align:left;
	border-bottom:1px solid #ddd;
	}
.mobilemenu li a{
	float:left;
	width:100%;
	padding:17px 20px;
	font-size:18px;
	color:#000;
	}
.mobilemenu li a.header-btn {
    float: left;
    width: 150px;
    font-size: 18px;
    color: #ffffff;
    height: 42px;
    line-height: 40px;
    font-weight: 600;
    margin:10px 0;
    border-radius: 20px;
    background: #19c354;
	padding:0;
	text-align:center;
	}

/*==============banner===============*/
.banner{
	float:left;
	width:100%;
	background:url(../images/banner.jpg) no-repeat center top;
	height:865px;
	overflow:hidden;
	}
.banner_left{
	float:left;
	width:58%;
	text-align:left;
	padding:40px 0;
	}
.banner_subhdng{
	display:inline-block;
	vertical-align:top;
	font-size:26px;
	line-height:30px;
	color:#fff;
	font-weight:bold;
	background:#1598db;
	padding:2px 20px 4px 15px;
	}
.banner_heading{
	font-size:65px;
	line-height:67px;
	letter-spacing:-1.5px;
	margin-top:10px;
	color:#000000;
	}
.banner_heading span{
	color:#1598db;
	font-style:italic;
	}
ul.banner_strip{
	float:left;
	width:85%;
	margin-top:20px;
	padding:10px 0;
	border-bottom:1px solid #acd6ec;
	border-top:1px solid #acd6ec;
	display: flex;
    justify-content: space-between;
    align-items: center;
	}
ul.banner_strip li{
	float:left;
	text-align:left;
	padding-right:10px;
	}
ul.banner_strip li img{
	display:inline-block;
	vertical-align:middle;
	}
ul.banner_strip li p{
	display:inline-block;
	vertical-align:middle;
	font-size:18px;
	line-height:20px;
	font-weight:bold;
	color:#000000;
	text-transform:uppercase;
	padding-left:5px;
	}
ul.bnr_list{
	float:left;
	width:100%;
	margin-top:15px;
	}
ul.bnr_list li{
	float:left;
	width:100%;
	margin-top:10px;
	text-align:left;
	font-size:26px;
	line-height:30px;
	color:#000000;
	font-weight:bold;
	padding-left:35px;
	letter-spacing:-0.5px;
	background:url(../images/bnr-tik.png) no-repeat left 5px;
	}
.btn_box {
    display: inline-block;
    vertical-align: top;
    max-width: 430px;
    width: 100%;
    margin-top: 40px;
    text-align: center;
	}
.rating_star{
	font-size:16px;
	line-height:20px;
	font-weight:500;
	color:#192f23;
	margin-bottom:5px;
	}
.rating_star img{
	display:inline-block;
	vertical-align:middle;
	margin:-7px 7px 0 0;
	}
.common_button{
    float: left;
    width: 100%;
	background:#00b540;
    font-size: 28px;
    line-height: 70px;
    height: 70px;
    color: #fff;
    font-weight: bold;
	letter-spacing:0.5px;
    border-radius: 50px;
	text-shadow:0 1px 3px rgba(0,0,0,0.5);
    position: relative;
    padding:0 20px;
    overflow: hidden;
    letter-spacing: 0;
    box-shadow: 0 3px 5px 2px rgba(0 0 0 / 20%);
    -webkit-box-shadow: 0 3px 5px 2px rgba(0 0 0 / 20%);
	}
.btn-arw {
	display:inline-block;
	vertical-align:middle;
	margin:-8px -5px 0 10px;
	}
.btn-txt{
	float:left;
	width:100%;
	color:#000;
	margin-top:10px;
	font-size:16px;
	line-height:18px;
	}
.btn-txt p{
	display:inline-block;
	vertical-align:top;
	padding:0 10px;
	letter-spacing:0;
	}
.btn-txt p span{
	font-weight:500;
	}
.btn-text1:before {
    display: inline-block;
    vertical-align: top;
    margin: 5px 6px 0 0;
    width: 8px;
    height: 8px;
    background: #6fb620;
    border-radius: 50%;
    content: "";
    animation: fade 1s ease-in-out infinite;
	}
.hourglass{
	display:inline-block;
	vertical-align:top;
	margin:2px 5px 0 0;
	animation:rotateP 2.5s  ease-in-out forwards infinite 
  }
@keyframes rotateP{
	0%{transform:rotate(0)}
	50%{transform:rotate(180deg)}
	100%{transform:rotate(180deg)}
  } 
  @keyframes rotate{
	0%{transform:rotate(00deg)}
	100%{transform:rotate(360deg)}
  }

@keyframes fade{
	0%{opacity:100%;}
	50%{opacity:30%;}
	70%{opacity:100%;}
	100%{opacity:100%;}
	}	
	
.banner_prod{
	position: absolute;
    right: -45px;
    top: 205px;
	}
.banner_seal{
	position: absolute;
    right: 450px;
    top: 435px;
	}
ul.bnr_right_imglist{
	position: absolute;
    top: 630px;
    right: 170px;
    width: 360px;
	}
ul.bnr_right_imglist li{
	display:inline-block;
	vertical-align:middle;
	padding:0 5px;
	}
ul.bnr_right_imglist li img{
	display:block;
	margin:0 auto;
	border-radius:50%;
	border:2px solid #45baf3;
	}

/*banner_btm_sec*/
.banner_btm_sec{
	float:left;
	width:100%;
	padding:25px 0;
	border-bottom:1px solid #ddd;
	}
.banner_btm_sec h3{
    font-size: 22px;
    color: #000000;
    line-height: 30px;
    font-weight: bold;
	}
.bnr-btm-list {
	width:100%;
    margin-top:30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	}
.bnr-btm-list li {
	width:14.285%;
	padding:0 10px;
	}
.bnr-btm-list li img{ 
	display:block; 
	margin:0 auto 10px;
	max-width:100%;
	}
.bnr-btm-list li p{
	font-size:16px;
	line-height:20px;
	color:#000000;
	font-weight:500;
	text-transform:uppercase;
	}
	
/*==========sectionOne============*/
.sectionOne{
	float:left;
	width:100%;
	padding:70px 0;
	}
.sec1_left{
	float:left;
	width:40.50%;
	}
.massage_box{
	float:left;
	width:100%;
	background:#292929;
	text-align:center;
	}
.sec1_massage_text1{
	font-size:36px;
	line-height:40px;
	color:#ffffff;
	font-weight:900;
	padding:0 25px;
	margin-top:25px;
	}
.sec1_massage_text2{
	font-size:16px;
	line-height:22px;
	letter-spacing:0.3px;
	color:#ffffff;
	font-weight:300;
	padding:0 30px;
	margin-top:15px;
	}
.s1-massage-img{
	display:inline-block;
	vertical-align:top;
	width:100%;
	margin-top:15px;
	}
.sec1_right{
	float:right;
	width:56%;
	text-align:left;
	}
.common_heading{
	font-size:55px;
	line-height:60px;
	letter-spacing:-1px;
	color:#18191b;
	font-weight:bold;
	padding-bottom:30px;
	background:url(../images/hdng-line.png) no-repeat center bottom;
	}
.left_common-heading{
	background:url(../images/left-hdng-line.png) no-repeat left bottom;
	}
.common_heading span{
	color:#1598db;
	}
.common_text{
	font-size:19px;
	line-height:26px;
	letter-spacing:0.2px;
	color:#000000;
	margin-top:30px;
	}
.margin10{ margin-top:10px !important;}

ul.s1-list{
	float:left;
	width:92%;
	margin-top:10px;
	}
ul.s1-list li{
	float:left;
	width:100%;
	font-size:18px;
	line-height:26px;
	letter-spacing:0.2px;
	font-weight:500;
	color:#000000;
	margin-top:20px;
	padding-left:60px;
	background:url(../images/s1-tik.png) no-repeat left 5px;
	padding-bottom:20px;
	border-bottom:1px solid #ddd;
	}
ul.s1-list li:last-child{ border:none; padding-bottom:0;}
.sec1-review-box{
	float:left;
	width:95%;
	background:#fff;
	margin-top:30px;
	padding:15px 30px 15px 105px;
	position:relative;
	box-shadow:0 0 9px 0 rgba(0,0,0,0.1);
	-webkit-box-shadow:0 0 9px 0 rgba(0,0,0,0.1);
	}
.s1-rvw-img{
	position:absolute;
	left:20px;
	top:20px;
	border-radius:50%;
	}
.s1-star{ display:block;}
.s1-rvw-text1{
	font-size:16px;
	line-height:22px;
	letter-spacing:0.3px;
	color:#1a1a1a;
	font-style:italic;
	margin-top:10px;
	}
.s1-rvw-text2{
	font-size:13px;
	line-height:20px;
	color:#1a1a1a;
	margin-top:10px;
	}
.s1-rvw-text2 span{
	font-weight:bold;
	color:#1598db;
	font-size:15px;
	}
/*=============sectionTwo============*/
.sectionTwo{
	float:left;
	width:100%;
	padding:70px 0;
	background:#f0f6f9;
	}
.sec2_row{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
	max-width: 1425px;
    width: 100%;
    margin: 20px auto 0;
	}
.s2_col{
	width:23%;
	max-width:328px;
	margin:20px 1% 0;
	text-align:center;
	}
.s2-col-img{
	display:block;
	width:100%;
	margin:0 auto;
	}
.s2_col_content{
	float:left;
	width:100%;
	position:relative;
	}
.s2-col-icn{
	display:inline-block;
	vertical-align:top;
	margin-top:-34px;
	width:70px;
	}
.s2_col_content h3{
	font-size:24px;
	line-height:30px;
	font-weight:bold;
	margin-top:10px;
	color:#003d5d;
	}
.s2_col_content p{
	font-size:19px;
	line-height:26px;
	letter-spacing:0.3px;
	color:#000000;
	margin-top:15px;
	padding:0 15px;
	}
.sec2_perfect_row{
	float:left;
	width:100%;
	margin-top:40px;
	}
.s2-btm-haed{
    font-size: 26px;
    line-height: 30px;
    font-weight: bold;
    color: #002553;
	}
.s2-btm-haed:before,.s2-btm-haed:after{
	display:inline-block;
	vertical-align:middle;
	width:100px;
	border-bottom:1px solid #ddd;
	content:"";
	margin:-10px 10px 0;
	}
ul.s2_protect_list{
	display:flex;
	flex-wrap: wrap;
	margin:30px auto 0;
	width:100%;
	max-width:1000px;
	}
ul.s2_protect_list li{
	width:16.66%;
	padding:0 15px;
	}
ul.s2_protect_list li img{
	display:block;
	margin:0 auto;
	max-width:100%;
	border-radius:50%;
	border:2px solid #d0e4ee;
	}

/*===============sectionThree==========*/
.sectionThree{
	float:left;
	width:100%;
	padding:60px 0;
	background:url(../images/sec3.jpg) no-repeat center top;
	overflow:hidden;
	}
.sectionThree .common_heading{ color:#fff; background:url(../images/hdng-line-white.png) no-repeat center bottom;}
.sectionThree .common_heading span{ color:#fff;}
.sectionThree .common_text{ color:#fff;}

.s3_box{
	display:inline-block;
	vertical-align:top;
	max-width:900px;
	width:100%;
	margin-top:50px;
	background:#fff;
	position:relative;
	border-radius:30px;
	text-align:left;
	}
.s3_prod{
	position:absolute;
	right:-190px;
	top:-60px;
	z-index:1;
	height:auto;
	}
.s3-pain-list{
	position:absolute;
	right:-210px;
	top:250px;
	z-index:2;
	}
ul.s3_box_list{
	float:left;
	width:100%;
	margin-top:10px;
	}
ul.s3_box_list li{
	float:left;
	width:100%;
	padding:20px 240px 20px 100px;
	border-bottom:2px dotted #2f8cbb;
	position:relative;
	text-align:left;
	}
ul.s3_box_list li:after{
	position: absolute;
    content: "";
    left: 0px;
    bottom: -8px;
    border-top: 8px solid transparent;
    border-left: 8px solid #2f8cbb;
    border-bottom: 8px solid transparent;
	}
ul.s3_box_list li:last-child:after, ul.s3_box_list li:last-child{border:none;}
.s3-icon{
	position:absolute;
	left:30px;
	top:20px;
	}
ul.s3_box_list li h3{
	float:left;
	width:100%;
	font-size:28px;
	line-height:32px;
	font-weight:bold;
	color:#0c6997;
	}
ul.s3_box_list li p{
	float:left;
	width:100%;
	font-size:18px;
	line-height:25px;
	font-weight:500;
	color:#000000;
	margin-top:8px;
	}
.s3_box .btn_box{ margin-left:25px; margin-top:20px;}

/*==========sectionFour================*/
.sectionFour{
	float:left;
	width:100%;
	padding:50px 0 60px 0;
	}
.s4_steps_row{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	width:100%;
	}
.s4_steps_col{
	width:24%;
	text-align:center;
	margin-top:50px;
	}
.step-prod{
	float:left;
	width:100%;
	background:#1598db;
	padding:5px;
	position:relative;
	}
.step-prod:after{
	position:absolute;
	left:50%;
	bottom:-28px;
	border-left:3px dotted #1598db;
	content:"";
	margin-left:-1.5px;
	height:40px;
	}
.step-prod img{
	display:block;
	margin:0 auto;
	width:100%;
	}
.step_text1{
	font-size:24px;
	line-height:26px;
	letter-spacing:0.3px;
	color:#ffffff;
	font-weight:bold;
	padding:7px 0;
	text-transform:uppercase;
	}
.step_text2{
	float:left;
	width:100%;
	font-size:21px;
	line-height:26px;
	color:#000000;
	font-weight:bold;
	margin-top:40px;
	padding:0 15px;
	}
.sec4_bottom_row{
	float:left;
	width:100%;
	margin-top:60px;
	}
ul.s4_uses_list{
	float: left;
    width: 100%;
    margin-top: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	}
ul.s4_uses_list li {
    width: 16.66%;
    text-align: center;
    margin-top: 20px;
	padding:0 15px;
	}
.s4-img-box {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
	background:#fff;
	margin:0 auto;
    width: 100px;
	height:100px;
    border: 1px solid #1598db;
    box-shadow: 0 0 12px 2px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 0 12px 2px rgba(0,0,0,0.1);
    padding: 5px;
    border-radius: 10px;
	}
.s4-img-box img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
	width:80px;
	}
ul.s4_uses_list li p{
	float: left;
    width: 100%;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    color: #000000;
    margin-top: 12px;
	}
/*==============sectionFive===============*/
.sectionFive{
	float:left;
	width:100%;
	padding:70px 0;
	background:#f0f6f9;
	}
.comparision_box{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
	margin:40px auto 10px;
	width:100%;
	max-width:970px;
	}
.comparision_col{
	width:50%;
	background:#eeeeee;
	}
.our_brand_col{ background:#c4e3f2;}
.comp_prod_box{
	float:left;
	width:100%;
	background:#bdbdbd;
	position:relative;
	}
.our_brand_col .comp_prod_box{background:#168ecc;}
.comp_prod_box p{
	position:absolute;
	font-size:36px;
	line-height:40px;
	color:#ffffff;
	font-weight:900;
	text-transform:uppercase;
	top:25px;
	}
.our_brand_col .comp_prod_box p{ right:30px;}
.other_brand_col .comp_prod_box p{ left:30px;}
.brand-prod{
	display:block;
	margin:0 auto;
	max-width:100%;
	}
.vs{
	position:absolute;
	top:50%;
	right:-45px;
	width:90px;
	height:90px;
	border-radius:50%;
	background:#fff;
	font-size:45px;
	line-height:90px;
	color:#000000;
	font-weight:300;
	z-index:22;
	}
ul.comparision_list{
	float:left;
	width:100%;
	padding:10px 0;
	}
ul.comparision_list li{
	float:left;
	width:100%;
	text-align:left;
	padding:15px 25px;
	font-size:24px;
	line-height:30px;
	font-weight:bold;
	color:#000000;
	border-bottom:1px solid #fff;
	display: flex;
    align-items: center;
	}
ul.comparision_list li:last-child{ border:none;}
ul.comparision_list li img{
	display:inline-block;
	vertical-align:top;
	}
ul.comparision_list li p{
	width:calc(100% - 45px);
	padding-left:20px;
	}


/*=============sectionSix=============*/
.sectionSix{
	float:left;
	width:100%;
	padding:60px 0;
	}
.star-review-row{
	display:inline-block;
	vertical-align:top;
	width:100%;
	margin-top:50px;
	}
.star-review-col-1{
    display: inline-block;
    vertical-align: middle;
    padding-right: 40px;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    color: #131a2a;
    font-weight: 500;
	}
.star-review-col-1 img{
	display:inline-block;
	vertical-align:top;
	}	
.star-review-col-1 span{
	color: #023d7f;
    text-decoration: underline;
	}
	
ul.rev-bars{
    display: inline-block;
    vertical-align: middle;
    width: 320px;
	}
ul.rev-bars li{
	float: left;
    width: 100%;
	margin:2px 0;
	}
ul.rev-bars li img{
	display: inline-block;
    vertical-align:middle;
    max-width: 100%;
	margin:-3px 5px 0 0;
	}
ul.rev-bars li > div{
	display: inline-block;
    vertical-align:middle;
    width:180px;
    background-color: #efefef;
    height: 8px;
    overflow: hidden;
	}
ul.rev-bars li > div span {
    float: left;
    background-color: #ff9d1e;
    height: 100%;
	}
ul.rev-bars li p{
    display: inline-block;
    vertical-align:middle;
    width: 40px;
    text-align: center;
    font-size: 16px;
    line-height: 8px;
    color: #8e8e8e;
    font-weight: 500;
	}	
.cs-percent{
	display:inline-block;
	vertical-align:middle;
	color:#000;
	font-size:16px;
	line-height:20px;
	font-weight:500;
	padding-left:40px;
	}
.cs-percent span{
	display: inline-block;
    vertical-align: top;
    font-size: 50px;
    line-height: 45px;
    color: #1598db;
    font-weight: 500;
    margin-bottom: 12px;
	}
	
.testi-block{
	float:left;
	width:100%;
	margin-top:30px;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	}
.testi-row{
	float:left;
	width:23%;
	}
.testi-col{
	float:left;
	width:100%;
	background:#fff;
	border-radius:12px;
	margin-top:30px;
	overflow:hidden;
	box-shadow:0 6px 9px 1px rgba(0,0,0,0.1);
	-webkit-box-shadow:0 6px 9px 1px rgba(0,0,0,0.1);
	}
.testi-imgs{
	margin:0 auto 0;
	display:block;
	max-width:100%;
	}			
.testi-cont{
	float:left;
	width:100%;
	text-align:left;
	padding:20px 15px;
	}
.testi-col-tx1{
	font-size:18px;
	line-height:18px;
	color:#000000;
	font-weight:600;
	}
.testi-col-tx1 span{
	display:inline-block;
	font-size:14px;
	line-height:14px;
	color:#6fb620;
	font-weight:400;
	}
.testi-col-tx1 span img{
	display:inline-block;
	vertical-align:middle;
	margin:-6px 5px 0;
	}
.testi-star{
	float: left;
    margin: 10px 0 0;
	width:92px;
	}
.testi-col-tx2{
	display:inline-block;
	vertical-align:top;
	width:100%;
	font-size:16px;
	line-height:24px;
	color:#000000;
	margin-top:10px;
	}	
/*=============sectionSeven=============*/
.sectionSeven{
	float:left;
	width:100%;
	background:#f0f6f9;
	padding:60px 0;
	}
.faq-container{
	display:inline-block;
	vertical-align:top;
	max-width:840px;
	width:100%;
	margin:40px 0 0;
	padding:0 15px 15px;
	}
.up-slide-dwn{
	float:left;
	width:100%;
	-webkit-box-shadow:0 5px 9px 2px rgba(0,0,0,0.1);
	box-shadow:0 5px 9px 2px rgba(0,0,0,0.1);
	margin-top:20px;
	border-radius:10px;
	background:#fff;
	overflow:hidden;
	}
.accordion{
	float:left;
	width:100%;
	text-align:left;
	background:url(../images/close.png) no-repeat right 20px center;
	padding:18px 45px 18px 25px;
	font-size:20px;
	line-height:26px;
	font-weight:700;
	color:#000000;
	letter-spacing:0.5px;
	cursor:pointer;
	position:relative;
	}
.accordion.last{border-bottom:none;}
.acdn-heading.accordion-open{
	background:url(../images/open.png) no-repeat right 20px center #fff;
	border:none;
	}
.acdn-content{
	float:left;
	width:100%;
	text-align:left;
	background:#fff;
	padding:0 30px 15px 25px;
	}
.acdn-para{
	float:left;
	width:100%;
	font-size:18px;
	line-height:26px;
	letter-spacing:0.3px;
	color:#000;
	margin-bottom:15px;
	}
.acdn-para a{ color:#0072ff;}

/*==========footer===================*/
.footer{
	float:left;
	width:100%;
	padding:30px 0;
	text-align:center;
	}
.ftr-logo{ display:block; margin: 0 auto 20px; width:250px;}
.ftr-txt1{
	font-size:17px;
	line-height:26px;
	color:#333333;
	margin:5px 0;
	}
.ftr-txt1 a{ color:#333333; padding:0 3px;}



/*==============Media=============*/


@media only screen and (max-width:1200px){
.container{ width:1004px;}

ul.mainMenu li{ padding:0 15px;}

.banner_left{width: 60%;}
.banner_heading {font-size: 56px;line-height: 62px;}
ul.banner_strip{ width:95%;}
ul.banner_strip li{width: 33.333%;}
ul.banner_strip li p{ font-size:15px;width: calc(100% - 50px);}
ul.bnr_list li{ font-size:24px;}
.banner_prod { right: -120px; top: 220px;}
.banner_seal {right: 340px;}
ul.bnr_right_imglist{ right:120px;}

.sec1_massage_text1{padding: 0 17px;font-size: 32px;}

.common_heading{font-size: 48px;line-height: 56px;}
.s2_col_content h3{font-size: 23px;line-height: 28px;}

.testi-col-tx1{font-size: 16px;}
.testi-col-tx1 span{font-size: 13px;}
.testi-col-tx1 span img {margin: -5px 3px 0;width: 13px;}


}

@media only screen and (max-width:1021px){
.container{ width:750px;}
.forDesk{ display:none;}
.forTab{ display:block;}

ul.mainMenu li a{ font-size:15px;}
.fixed-nav a.header-btn{ display:none;}

.banner{height: auto;background-size: cover;background-position: 45% top;}
.banner_left {width: 70%;padding: 30px 0;}
.banner_subhdng{font-size: 22px;line-height: 26px;padding: 2px 15px 3px 15px;}
.banner_heading {font-size: 50px;line-height: 58px;}
ul.banner_strip li{width: 33.33%;}
ul.banner_strip li p {font-size: 14px;line-height: 18px;}

.banner_prod {right: -145px;top: 260px;width: 465px;}
.banner_seal {right: 180px;width: 120px;top: 380px;}
ul.bnr_right_imglist {right: -20px;}
ul.bnr_right_imglist li img{width: 85px;}


.bnr-btm-list li img{ width:60px;}

.sectionOne{padding: 50px 0;}
.sec1_massage_text1{font-size: 27px;line-height: 32px;padding: 0 20px;}
.common_heading {font-size: 36px;line-height: 44px;}
.common_text{font-size: 17px;line-height: 24px;margin-top: 25px;}

.sectionTwo{padding: 50px 0;}
.sec2_row{ max-width:700px; margin:0 auto;}
.s2_col{ width:44%; margin:40px 3% 0;}
.s2_col_content p {font-size: 17px; line-height: 24px;margin-top: 10px;}
.s2-btm-haed {font-size: 24px;}
ul.s1-list{ width:100%;}
ul.s1-list li{font-size: 17px; line-height: 25px;   margin-top: 15px;background-size: 30px;padding-left: 45px;}

.sectionThree{padding: 50px 0 20px;}
.s3_box{ margin-top:40px;}
ul.s3_box_list li{padding: 20px 200px 20px 80px;}
.s3-icon{ left:20px;}
.s3_prod{right: -100px;top: -15px;width: 340px;}
.s3-pain-list {width: 130px;right:0;top: 400px;}

.s4_steps_row{ max-width:600px; margin:0 auto;}
.s4_steps_col{ width:45%;}
.step_text2{font-size: 20px;}
ul.s4_uses_list li{padding: 0px 10px;}
ul.s4_uses_list li p{font-size: 16px; line-height: 19px;}

.sectionFive{ padding:50px 0;}
.comp_prod_box p{font-size: 26px;line-height: 26px;}
ul.comparision_list li{padding: 15px 15px;font-size: 20px; line-height: 26px;}
ul.comparision_list li img{ width:30px;}
ul.comparision_list li p {width: calc(100% - 30px);padding-left: 15px;}

.testi-block{ padding:0 90px;}
.testi-row{ width:47%;}

}


@media only screen and (max-width:767px){
.container{ width:100%; max-width:600px; padding:0 15px;}

.forMob{ display:block;}
.hide-mob{ display:none;}

ul.mainMenu{ display:none;}

.top-fix-bar{ margin-bottom:50px;}
.header{ height:50px; margin-top:-50px; top:50px; background:#fff;}
.mob-mnu-ic{ right:15px; top:14px; left:auto;}
.mobilemenu{ top:50px;}
.mobimenu-top{ top:50px;}


.logo {margin-top: 6px; width: 200px;}
.fixed-nav a.header-btn { display: none;}

.banner{ background:#ebf7fd; height:auto;}
.banner_left{ width:100%;padding: 25px 0;text-align: center;}
.banner_prod,.banner_seal{ display:none;}
.banner_subhdng {font-size: 15px;line-height: 21px;padding: 2px 10px 3px 10px;}
.banner_heading {font-size: 30px;line-height: 34px;letter-spacing: 0;}
ul.banner_strip { width:calc(100% + 30px); margin-left:-15px;align-items: start; margin-top:0;}
ul.bnr_list {margin-top: 10px;}
ul.banner_strip li{ text-align:center; padding:0 5px;}
ul.banner_strip li p{ width:100%; padding:5px 0 0;}
ul.bnr_list li {font-size: 18px;line-height: 26px;padding-left: 30px;margin-top: 8px; background-size:18px; letter-spacing:0;}
ul.bnr_right_imglist{ position:static; display:inline-block; vertical-align:top; width:100%; padding-bottom:25px;}

.bnr-mob{ display:inline-block; vertical-align:top; width:calc(100% + 30px); margin:15px 0 0 -15px;}

.banner_btm_sec h3 {font-size: 19px;line-height: 25px;}
.bnr-btm-list{ margin-top:5px;    justify-content: center;}
.bnr-btm-list li{ width:25%; margin-top:15px;padding: 0 5px;}
.bnr-btm-list li img{margin: 0 auto 5px;width: 50px;}
.bnr-btm-list li p{ font-size:14px;line-height: 17px;}

.sectionOne{ padding:30px 0;}
.sec1_right{ width:100%;}
.sec1_left{ width:100%; margin-top:25px;}
.common_heading {font-size: 30px;line-height: 35px;}
.common_text {margin-top: 15px;}
.sec1_massage_text2{ padding:0 20px;}
.sec1-review-box{ width:100%;padding: 15px 15px 15px 80px;}
.s1-rvw-img {left: 13px;width: 55px;top: 15px;}

.sectionTwo{ padding:30px 0;}
.s2_col{ width:100%; margin:30px 0 0; padding:0 10px;}
.s2-col-img{width: 90%;}
.s2_col_content h3{ margin-top:3px;font-size: 22px;line-height: 28px;}
.s2_col_content p{ padding:0;margin-top: 7px;}
.s2-col-icn{ width:60px; margin-top:-30px;}

.sec2_perfect_row { margin-top: 30px;}
.s2-btm-haed { font-size: 21px;line-height: 26px;}
.s2-btm-haed:before, .s2-btm-haed:after{ display:none;}
ul.s2_protect_list{    margin: 10px auto 0;}
ul.s2_protect_list li{ padding:0 10px; width:33.33%; margin-top:15px;}

.sectionThree{ padding:30px 0; background-size:cover;}
.s3_prod{ position:static;display: inline-block; vertical-align: middle; width:150px;}
.s3-pain-list{position:static;display: inline-block; vertical-align: middle;width: 110px;}
.s3_box{ text-align: center;margin-top: 30px; padding:20px 0 0;border-radius: 15px;}
ul.s3_box_list li{padding: 13px 15px 13px 60px;}
ul.s3_box_list li h3 {font-size: 20px;line-height: 28px;}
.s3-icon{ width:40px; left:10px; top:15px;}
ul.s3_box_list li p{font-size: 17px;line-height: 24px;margin-top: 5px; letter-spacing:0.3px;}


.sectionFour{ padding:30px 0;}
.s4_steps_col{ width:100%; padding:0 15px;margin-top: 30px;}
.sec4_bottom_row{ margin-top:30px;}
ul.s4_uses_list{ margin-top:0;}
ul.s4_uses_list li{ width:33.333%;margin-top: 30px;padding: 0 5px;}
.s4-img-box{width: 80px; height: 80px;}
.s4-img-box img{width: 50px;}

.sectionFive{ padding:30px 0;}
.comparision_box{ margin:20px auto 0;}
.comparision_col{ width:100%; margin-top:0;}
.vs{ position:static; margin:-35px auto;width: 70px;height: 70px;font-size: 30px;line-height: 70px;}
.our_brand_col{ padding-bottom:30px;}
.other_brand_col .comp_prod_box{ padding-top:40px;}
.comp_prod_box p {font-size: 22px;line-height: 22px;top: 17px;}
.our_brand_col .comp_prod_box p {right: 20px;}
.other_brand_col .comp_prod_box p {left: 20px;top: 50px;}
ul.comparision_list li {padding: 12px 12px;font-size: 18px;line-height: 24px;}
ul.comparision_list li img {width: 25px;}

.sectionSix{ padding:30px 0;}
.star-review-row{ margin-top:35px; text-align:center;}
.star-review-col-1{ width:100%; padding:0 0 20px;text-align: center;}
.cs-percent{ width:100%; padding:20px 0 0;}

.testi-block{ padding:0 15px; margin-top:10px;}
.testi-row{ width:100%;}
.testi-imgs{ width:100%;}

.sectionSeven{ padding:30px 0;}
.faq-container{padding: 0 5px 15px; margin:20px 0 0;}
.accordion{padding: 15px 45px 15px 20px;font-size: 18px;line-height: 24px;}
.acdn-content{ padding:0 15px 15px 20px;}
.acdn-para {font-size: 17px;line-height: 25px;margin-bottom: 10px;}


.footer{ padding:0 0 30px;}
.ftr-logo{ margin:25px auto 15px; width:180px;}
.ftr-txt1{font-size: 14px;line-height: 25px;}

#call-btn {
    float: left;
    width: 100%;
    padding: 10px 10px 10px;
    background: #292929;
    position: fixed;
    bottom: 0%;
    left: auto;
    z-index:25;
    transition: bottom 1s;
    display: table;
	}
.common_button{font-size: 26px;line-height: 65px;height: 65px;}


}

@media only screen and (max-width:360px){
	
}


/*-----------------------
		Pulse
------------------------*/
.pulse {
	animation-name: pulse;
	-webkit-animation-name: pulse;
	animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	}
@keyframes pulse {
0% {transform: scale(0.9);}
50% {transform: scale(1);}
100% {transform: scale(0.9);}
}

@-webkit-keyframes pulse {
0% {-webkit-transform: scale(0.95);}
50% {-webkit-transform: scale(1);}
100% {-webkit-transform: scale(0.95);}
}