@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {width:100%;}
body{
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	font-family: 'Josefin Sans', sans-serif;
	font-weight:normal;
	color: #333;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-overflow-scrolling: touch;
	padding:0;
	list-style:none;
	background:#fff;
	}
.container{
	width:1170px;
	height:auto;
	margin:0 auto;
	position:relative;
	padding:0;
	box-sizing:border-box;
	}
p, h1, h2, h3, h4, h5, ul{
	padding:0;
	margin:0;
	}
li{list-style:none;}
a{text-decoration:none;}
.clearall{
	clear:both;
	height:1px;
	width:auto;
	}
.position{position:relative;}
.dsplay{width:100%;display:table;box-sizing:border-box;}
*{box-sizing:border-box;}
.flt{float:left;width:100%;}
.bdhding{
	font-weight:300;	
	font-size:40px;
	line-height:44px;
	color:#000;
	text-align:center;
}
.bdfont{
	font-size:20px;
	line-height:32px;
}
/*===============================
CSS FOR CONTAINERS BREAK POINTS
=================================*/
@media only screen and (max-width: 1179px){
.container{ max-width:1004px; width:100%; }
}
@media only screen and (max-width: 1013px){
.container{ max-width:760px; width:100%; }
.bdhding{
	font-size:36px;
	line-height:40px;	
}
}
@media only screen and (max-width: 767px){
.container{ width:100%; max-width:640px;}
.bdinpad{padding:0 15px;}
.bdhding{
	font-size: 30px;
    line-height: 40px;	
}

.bdfont {
    font-size: 18px;
    line-height: 30px;
}
}
@media only screen and (max-width: 359px){
.bdsubhding{
	font-size:30px;
	line-height:38px;
}
}
/*=========================
CSS FOR HEADER
===========================*/
.topbar{
	background:#71bdb2;
	padding:6px 0;
}
.topbar-txt{
	font-size:16px;
	line-height:18px;
	color:#fff;
	text-align:center;
}
.topbar-txt span{font-weight:bold;}
.topbar-txt a{
	color:#ffd738;
	font-weight:bold;
	text-decoration:underline;
}
.top-fix-bar {margin-bottom: 76px;}
.header{		
	height:76px;	
	margin-top: -76px;
    position: relative;
    top: 76px;	
	background:#fff;
	border-bottom:1px solid #e1eaf4;
	padding: 15px 0;
}
.fixed-nav .header{
	float:left;
	width:100%;
	position: fixed;
	z-index: 1000;
	top: 0;
	-webkit-transition: margin .3s ease-out;
    transition: margin .3s ease-out;
	margin-top:0;
	height:76px;
}
.logo {
    float: left;
    max-width: 200px;
    position: relative;
}
.logo span {
    position: absolute;
    padding-left: 10px;
    font-size: 20px;
    line-height: 20px;
    border-left: 3px solid #1076bc;
    left: 104%;
    color: #71bdb2;
}
ul.nav{float:right;margin:0px 0 0 0;}
ul.nav li{
	float:left;
	display:inline-block;	
	font-size:16px;
	line-height:36px;
	text-align:center;	
}
ul.nav li a{color:#000000;display:block;padding:0 22px;}
ul.nav li a:hover, ul.nav li a.active{
	background:#71bdb2;
	color:#fff;
	border-radius:30px;
	display:block;
}
ul.nav li:last-child a:hover, ul.nav li:last-child a.active{
	/*background:none;
	color:#000;
	border-radius:0;*/
}
#menu-wrapper {
    overflow: hidden;
    max-width: 40px;
    cursor: pointer;
	float:right;
}
#menu-wrapper #hamburger-menu {
    position: relative;
    width: 25px;
    height: 20px;
    margin: 5px 0 5px 0;
}
#menu-wrapper #hamburger-menu span {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    left: 0;
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    color: black;
    background-color:#1d1d1d;
    position: absolute;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
}
#menu-wrapper #hamburger-menu span:nth-child(1) {top: 0;}
#menu-wrapper #hamburger-menu span:nth-child(2) {top: 9px;}
#menu-wrapper #hamburger-menu span:nth-child(3) {top: 18px;}
#menu-wrapper #hamburger-menu.open span:nth-child(1) {
    top: 9px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
#menu-wrapper #hamburger-menu.open span:nth-child(2) {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    left: -60px;
}
#menu-wrapper #hamburger-menu.open span:nth-child(3) {
    top: 9px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
#menu-container .menu-list {
    padding-left: 0;
    display: block;
    position: absolute;
    width: 100%;  
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
    left: -100%;
	top:55px;	
	background:#71bdb2;
	border-top:1px solid #074b84;	
}
#menu-container .menu-list  li a{	
	font-size:18px;
	padding:12px 0 12px 0;
	text-align:center;
	color:#fff;
	display:block;
	border-bottom:1px dotted #074b84;	
}
#menu-container .menu-list  li a.active{background:#fff;color:#71bdb2;}
@media only screen and (max-width: 1013px){
.header{height:55px; top:55px; margin-top:-55px;padding: 10px 0;}
.top-fix-bar {margin-bottom: 55px;}
.fixed-nav .header{height:55px;}

.intop-fix-bar {margin-bottom: 87px;}
.logo{ max-width: 140px;}
.logo span{font-size:18px;}

ul.nav li{display:none;}
.cart-link{position:absolute;right:55px;top:8px;}
}
@media only screen and (max-width: 767px){
	.logo span{font-size:16px;line-height: 18px;}
	.cart-link{top:0;}
.topbar-txt{
	font-size:14px;
	line-height:17px;
}
}
@media only screen and (max-width: 359px){
.logo{width:180px;margin:8px 0 0 0;}
.topbar-txt {
    font-size: 12px;
    line-height: 17px;
}
}
/*================start banner===================*/
.banner{
	background:url(../images/banner.jpg) center top no-repeat;
	height:auto;
	padding:160px 0 50px;
	height:670px;
	box-sizing:border-box;
	overflow:hidden;
}

.bnrrgt{
	float:left;
	text-align:left;
	width:600px;
}
.brn-p1{
	font-size: 26px;
    color: #646262;
    display: inline-block;
    vertical-align: middle;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
	}
.brn-p1:before{
	content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    border-bottom: 15px solid #f0e0bb;
    right:0;
    z-index: -1;
}
.brn-p1 img{
	margin:0 8px 6px 8px;
	}	
.bnrprd{
	position: absolute;
    top: -18px;
    right: 0;
    max-width: 360px;
    z-index: 9;
}
.bnrhding{
    font-size: 49px;
    line-height: 58px;
    color: #000000;
    text-transform: capitalize;
	float: left;
    width: 100%;
}
.bnrhding span{
	color: #71bdb2;
    line-height: 50px;
    text-decoration: underline;
    display: block;
    font-size: 38px;
}
.bnrtxt{
	font-size:18px;
	line-height:30px;
	color:#000000;	
	margin:14px 0 0 0;
	display:inline-block;
	width:100%;
}
@media only screen and (max-width: 1179px){
.banner{ background-position: 60% top; padding: 90px 0 50px;}
.bnrhding {font-size: 55px; line-height: 65px;}
.bnrrgt{background-size:100%;}
.bnrprd {top: 40px;}

}
@media only screen and (max-width: 1013px){
.banner{ background-position: 54% top; }
.bnrlft, .bnrrgt{width:50%;}
.bnrrgt{width:60%}
.brn-p1{font-size: 22px;}
.bnrprd{max-width: 280px;top: 110px;  right: -30px;}
.bnrhding {  font-size: 46px; line-height: 53px;  }
.bnrhding span{font-size: 30px;}
.bnrtxt {
    font-size: 19px;
    line-height: 31px;
    color: #5c5c5c;
    margin: 7px 0 0 0;
}
}
@media only screen and (max-width: 767px){
.banner{height:auto;padding:22px 0 30px 0; text-align:center; }	
.bnrlft, .bnrrgt{width: 100%; text-align: center; background: rgba(255,255,255,0.9);    padding: 10px;}
.brn-p1 {  font-size: 18px;line-height: 28px; margin: 0;}
.bnrhding span { line-height: 40px;font-size: 22px;}
.bnrhding{font-size: 26px; line-height: 35px; margin-bottom:5px;}
.bnrtxt{
	font-size: 18px;
    line-height: 29px;
	padding:10px 0 0 0;
}
.sec1 a.bnrbtn {margin-top:30px;}
.s1prd {max-width: 220px;}

.mobprdbx{margin: 0px auto; max-width: 250px;}
}

/*================start banner strip===================*/
.bnrstrip{margin:57px 0 0 0;}
.bnrstrip-bx{
	height:110px;
	background:#fff;
	border-radius:8px;
	-moz-box-shadow: 0 0 10px #eae4e4;
	-webkit-box-shadow: 0 0 10px #eae4e4;
	box-shadow: 0 0 10px #eae4e4;
	padding:2px;
}
ul.bnrstrip-list{
	padding: 0;
    float: left;
    width: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
	}
ul.bnrstrip-list li {
    float: left;
    width: 33.33%;
    border-right: 1px solid #ebebeb;
    font-size: 18px;
    line-height: 25px;
    color: #919191;
    text-align: center;
    padding: 32px 40px 32px;
}
ul.bnrstrip-list li span{ display: block;
	color:#1c1c1c;
	font-family: 'Prata';
    font-size: 20px;
    line-height: 36px;
	text-transform: capitalize;
}
ul.bnrstrip-list li:last-child{border-right:none;}
ul.bnrstrip-list li img{
	display:block;
	margin:0 auto 10px;
}
@media only screen and (max-width: 1179px){
ul.bnrstrip-list li{padding:32px 43px 10px;}
.bnrstrip {margin: 90px 0 0 0;}
}
@media only screen and (max-width: 1013px){
.bnrstrip-bx{padding:20px;}
.bnrstrip { margin: 60px 0 0 0;}
ul.bnrstrip-list li{padding: 0 8px; font-size: 18px;  line-height: 26px;}
ul.bnrstrip-list li span {    margin-bottom: 6px;}
ul.bnrstrip-list li img{
	float:none;
	margin:0 auto 15px auto;
	display:block;
}
}
@media only screen and (max-width: 767px){
.bnrstrip { margin: 20px 0 0 0; float: left;  width: 100%;}	
.bnrstrip-bx{height:auto; padding:14px;}
ul.bnrstrip-list{}
ul.bnrstrip-list li{width: 100%;  border-right: none;}
ul.bnrstrip-list li:nth-child(2){border-right:none;}
ul.bnrstrip-list li:nth-child(3), ul.bnrstrip-list li:nth-child(4){
	background:url(../images/bnrstrip-line.jpg) top center no-repeat;
	padding:14px 6px 0 6px;
}
ul.bnrstrip-list li img{
	float:none;
	margin:0 auto 5px auto;
	display:block;
}
}

/*================start section1===================*/
.sec1{    
	    padding: 60px 0 48px 0;
    text-align: center;
    background: #71bdb2;
}
.sec1 .brn-p1,.sec1 .s2bxhding {}
.s1txt{text-align:center;padding:17px 0 0 0;}
.s1prdbx1, .s1prdbx2, .s1prdbx3, .s1prdbx4{
	    display: inline-block;
    width: 35%;
    margin: 32px 4px 0;
    height: auto;
    border-radius: 10px;
    background: #fff;
    padding: 0 16px 16px 16px;
    vertical-align: top;
	text-align:center;
	webkit-box-shadow: 0 0 10px #eae4e4;
    box-shadow: 0 0 10px #eae4e4;
}
.s1prdbx2{background:#f6eaff;}
.s1prdbx3{background:#eaf9f2;}
.s1prdbx4{background:#f2e6fb;}
.s1prd{margin:12px auto 0 auto;display:block; max-width:220px;}
.s1prdbx-hding{
	    font-family: 'Prata';
    font-size: 24px;
    line-height: 32px;
    color: #2d2d2d;
    margin-top: 20px;
}
.s1prdbx-hding span{ display:block;}
.s1prdbx-hding-spn{ float:left; width:100%; font-size:16px; color:#000; text-align:left; margin-bottom:5px;}
.s1prdbx-prc{
	    margin: 10px 0 0 0;
    font-size: 21px;
    color: #a1a1a1;
    font-weight: 700;
    float: left;
    width: 100%;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 15px;}
.stars{
	    float: right;
    margin: 0 0 0 0;
	display:none;
}
.s1prdbx-txt img{margin:0 5px -3px 0;}
.s1prdbx-txt2{
	text-align:left;
	padding:10px 0 0 0;
	line-height:24px;
	height:110px;
	color:#000;
}
@media only screen and (max-width: 1179px){
.s1prdbx1, .s1prdbx2, .s1prdbx3, .s1prdbx4{}
.s1prdbx-hding, .s1prdbx-prc{font-size:20px;}
}
@media only screen and (max-width: 1013px){
.sec1{padding:40px 0;}
.s1prdbx1, .s1prdbx2, .s1prdbx3, .s1prdbx4{width: 48%;}
.s1prdbx-hding{
	font-size:19px;
	line-height:22px;
}
.s1prd {margin: 6px auto 0 auto;}
.s1prdbx-txt2{
	font-size:16px;
	line-height:23px;
	height:105px;
}
}
@media only screen and (max-width: 767px){
	.pro-dtl-sec2{padding-bottom:20px;}
.s1prdbx1, .s1prdbx2, .s1prdbx3, .s1prdbx4{
	width: 100%;
    margin: 20px 0px 0;
}
.s1prdbx3, .s1prdbx4{margin:20px 1% 0 1%;}
.s1prdbx-hding{height:auto;text-align:center; line-height:24px;}
.s1prdbx-hding-spn{ text-align:center;}
.s1prdbx-prc, .s1prdbx-txt, .s1prdbx-txt2{}
.s1prdbx-prc{margin: 15px 0 0 0; padding: 0 20px 10px;}
.s1prdbx-txt2{padding:6px 0 0 0;height:95px;}
.s1prdbx-txt2 {
    font-size: 18px;
    line-height: 24px;
    height: 105px;
}
.s1prdbx-txt {
    font-size: 14px;
    line-height: 16px;
}
}


/*================start section2===================*/
.sec2{
	padding:60px 0;
	float:left;
	width:100%;
	overflow:hidden;
}
.sec2-prt2{
	padding:60px 0;
	float:left;
	text-align:center;
	background:#f8f9fa;
	width:100%;
	overflow:hidden;
}
.s2-model{
	position:absolute;
	top:0;
	right:-30px;
	}
.s2box1{
	float:left;
	width:50%;
	text-align:left;
	margin-top:30px;
}
.prd-s2box1{
	margin:40px auto 0 auto;
	width:100%;
	background-size:cover;
}

.s2bxhding{
	font-size:44px;
	color:#252624;
	line-height:55px;
	font-family: 'Prata';
}
.s2bxtxt{
	text-align:left;
	padding:16px 0 0 0;
	width:100%;
	color:#7e7e7e;
}
.s2-prod {
    position: absolute;
    top: 37px;
    right: 30px;
}
ul.s2bxlist{padding:15px 0 0 0;}
ul.s2bxlist li{
	background:url(../images/bullet.png) left 8px no-repeat;
	padding:0 0 0 30px;
	margin:4px 0 0 0;
}
.s2hding{padding:72px 0 0 0;}
ul.s2list{
	padding: 20px 20px 0 20px;
    display: flex;
    float: left;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
    margin-top: 20px;
}
ul.s2list li{
	background:#fff;
	    float: left;
    display: inline-block;
    width: 32%;
	text-align:left;
	padding-bottom:30px;
}
ul.s2list li:last-child{}
ul.s2list li img{margin:0 auto;display:block;}
.s2lhding{
	font-family: 'Prata';
    font-size: 23px;
    line-height: 30px;
    color: #252624;
    padding: 20px 0 0 20px;
    text-transform: capitalize;
}
.s2ltxt{
	color: #7e7e7e;
	padding: 12px 10px 0 20px;
	width: 100%;
	font-size: 19px;
	line-height: 30px;
}
@media only screen and (max-width: 1179px){
.s2box1{
	width: 58%;
    padding: 0 0 0 0;
    margin-top: 0;

}

.s2-model {  width: 416px;}
ul.s2list li {}
ul.s2list li {}
.s2lhding {
    font-size: 22px;
    line-height: 30px;
}
.s2bxhding {
    font-size: 38px;
    line-height: 51px;
}
.s2ltxt {
    width: 100%;
	line-height:30px;
}
}
@media only screen and (max-width: 1013px){
.sec2{padding:0 0 30px 0;}
.s2box1, .s2bxtxt{
	width:100%;
	text-align:center;
}

.s2hding {padding: 50px 0 0 0;}
.s2-model {
    width: 416px;
    position: static;
    margin: 23px auto 0;
}

}
@media only screen and (max-width: 767px){
.sec2{padding:30px 0 30px 0;background:#fff; text-align: center;}
.s2box1{

}
.s2-model {
    width: 300px;
    position: static;
    margin: 13px auto 0;
}
.s2bxhding{text-align: center;  font-size: 30px;  line-height: 38px;    margin-top: 5px;}
.s2bxtxt{width:auto;text-align:center;padding:10px 15px 0 15px;}
.s2img-mob{margin:15px auto;}
ul.s2bxlist{width:510px;margin:0 auto;display:block;padding:10px 20px 0;}
.s2hding{padding:40px 0 0 0;}
.s1txt {padding: 14px 0 0 0;}
ul.s2list{justify-content: center;}
ul.s2list li, ul.s2list li:last-child{width:100%;max-width: 350px;}
.sec2-prt2{padding:30px 0;}
ul.s2list li:first-child{}
.s2ltxt{padding:8px 0 0 0;}
ul.s2bxlist li{ 
	text-align: left;
    width: 100%;
    float: left;
    margin-bottom: 5px;}
	
.s2lhding {
    font-size: 22px;
    line-height: 30px;
    padding: 8px 0 0 10px;
}
.s2ltxt {
    padding: 8px 0 0 10px;
}		
}

/*================start section3===================*/
.sec3{
	padding:55px 0;
	float:left;
	width:100%;
}

.s3bx1, .s3bx2{width:100%;}
.s3bx1-lft, .s3bx1-rgt{
	float:left;
	display:inline-block;
	width:100%;
	padding-bottom:30px;
	border:8px solid #edecec;
}
.s3bx1-rgt .s2bxhding{
	width: auto;
    display: table;
    vertical-align: middle;
    padding: 0 20px;
    background: #fff;
    margin: -32px auto 0;
    text-align: center;
    float: none;
	}


.s3hding2{padding:58px 0 0 18px;}
.s3bxtxt{
	text-align:left;
	padding:32px 0 0 0;
}
ul.s3list{padding: 0 0 0; text-align:center;display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    justify-content: space-between;
	padding:0 40px;}
ul.s3list li{
	display:inline-block;
	vertical-align:middle;
    position: relative;
    padding: 14px 0 0 72px;
    margin: 0 0 0 0;
}
ul.s3list li img{
	position:absolute;
	left:0;
	top:0;
}
.s3lhding{	
	font-size:27px;
	font-family: 'Prata';
	color:#8f9499;
	line-height:34px;
	text-align:left;
}
.s3ltxt{padding:8px 0 0 0;text-align:left;}
@media only screen and (max-width: 1179px){
.s3bxhding{padding:50px 0 0 0;}
.s3hding2{padding:48px 0 0 18px;}

.s3bx1, .s3bx2{width:100%;}
.s3lhding {
    font-size: 23px;
    line-height: 31px;
}
}
@media only screen and (max-width: 1013px){
.sec3{padding:37px 0;}
.s3bx2{}
.s3bx1-lft, .s3bx1-rgt{width:100%;margin:10px 0 0 0;}
.s3bx1-rgt{padding:0 28px;}
.s3bxhding, .s3bxtxt{text-align:center;}
.s3bxhding, .s3hding2{padding:20px 0 0 0;}
.s3bxtxt{padding:12px 0 0 0;}
ul.s3list {padding: 0 0 20px 0;}
ul.s3list li {
    padding: 0 0 0 44px;
}
.s3lhding {
    font-size: 17px;
    line-height: 22px;
}
ul.s3list li img {
    width: 34px;
}
}
@media only screen and (max-width: 767px){
.sec3{padding:15px 0 20px;}
.s3bximg{max-width:400px;}
.s3bx1-rgt{padding:0 0;}
ul.s3list {
    padding: 0 20px 20px;
	margin-top:0;
}
ul.s3list li {
    padding: 0 0 0 46px;
    margin: 22px 0 0 0;
    width: 50%;
}
}

/*================start section4===================*/
.sec4{padding:64px 0;}
.s4sldr{margin:24px 0 0 0;}
.s4slbx{
	background:#f3f9ff;
	width:66%;
	margin:0 auto 20px auto;
	display:block;
	padding:25px 25px 40px 25px;
	box-shadow: 1px 9px 22px #f0f0f0;	
}
.quote{margin:0 auto;display:block;}
.sldrhding{
	font-size: 24px;
    line-height: 28px;
    text-align: center;
	padding:20px 0 0 0;
}
.sldrstar{margin:10px auto 0 auto;display:block;}
.sldrtxt{
	text-align:center;
	padding:10px 0 0 0;
	font-size:20px;
	line-height:30px;
	font-style:italic;
}
.sldrimg{margin:26px auto 0 auto;display:block;}
.sldrname{
	color:#000;
	text-align:center;
}
@media only screen and (max-width: 1013px){
.sec4{padding:50px 0;}
.s4slbx{width:80%;padding:25px 25px 30px 25px;}
}
@media only screen and (max-width: 767px){
.sec4{padding:35px 0 30px 0;}
.s4slbx{width:86%;padding:25px 15px 25px 15px;}
.sldrtxt {padding: 22px 0 0 0;}
}
@media only screen and (max-width: 479px){
.sldrtxt {
    font-size: 18px;
    line-height: 26px;
}
}
/*================start section5===================*/
.lowerpart{ background: #71bdb2;  padding: 0;}
.sec5{padding:52px 0 155px 0;}
.s5hding{text-align:center;color:#fff;}
.s4txt{text-align:center;padding:7px 0 0 0;color:#fff;}
.s5sldr{margin:-118px 0 0 0;}
.s5sldrimg{padding:0 6px;}
/*-----------section 6--------------*/
.sec6{padding:0 0 60px 0;background:#71bdb2;}
.s6bx{width:90%;margin:50px auto 0 auto;display:block;}
.s6bx1, .s6bx2, .s6bx3{
	float:left;
	display:inline-block;
	width:33.33%;
	border-right:1px solid #1c5d94;
	padding:0 20px;
}
.s6bx3{border-right:none;}
.s6bxhding{
	font-weight:500;
	font-size:26px;
	line-height:30px;
	color:#fff;
	text-align:center;
}
.s6bxtxt, .s6bxtxt2{
	font-size:20px;
	line-height:28px;
	color:#fff;
	text-align:center;
	padding:16px 0 0 0;
}
.s6bxtxt2{
	font-size:18px;
	padding:40px 0 0 0;
}
.s6bxtxt2 span{font-size:26px;}
a.readfaqbtn{
	height:48px;
	width:200px;
	border:2px solid #fff;
	margin:24px auto 0 auto;
	display:block;
	font-size:18px;
	line-height:48px;
	color:#fff;
	text-align:center;
	border-radius:30px;
}
ul.slinklist{padding:37px 0 0 0;text-align:center;}
ul.slinklist li{
	display:inline-block;
	margin:0 8px;
}
/*-----------section 7--------------*/
.sec7{padding:20px 0;}
.ftrlogo{margin:0 auto;display:block; max-width:200px;}
ul.ftrlist{text-align:center;}
ul.ftrlist li{
	display:inline-block;
	border-right:1px solid #c8c8c8;
	padding:0 20px;
	font-weight:300;
	font-size:18px;
	line-height:18px;
	color:#fff;
	text-align:center;
}
ul.ftrlist li a{color:#fff;}
ul.ftrlist li:last-child{border-right:none;}
/*------------start footer--------------*/
footer{padding:20px 0;background:#fff;}
.ftrtxt1{	
	font-size:18px;
	line-height:18px;
	text-align:center;
	color:#313131;
}
.ftrtxt1 a{color:#313131;}
.ftrtxt2{	
	font-size:18px;
	line-height:18px;
	text-align:center;
	color:#313131;
	padding:15px 0 0 0;
}	
p.ftrtxt2.dicclmr {
    margin: 10px 0 0 0;
    float: left;
    width: 100%;
    line-height: 26px;
}
@media only screen and (max-width: 1013px){
.sec5{padding:30px 0 155px 0;}
.sec6{padding:0 0 46px 0;}
.s6bx{width:100%;margin: 30px auto 0 auto;}
.s6bx1, .s6bx2, .s6bx3{padding:0 10px;}
}
@media only screen and (max-width: 767px){
.sec5 {padding: 24px 0 115px 0;}
.s5sldr{margin:-88px 0 0 0;}
.sec6 {padding: 0 0 24px 0;}
.s6bx{margin:0 auto;}
.s6bx1, .s6bx2, .s6bx3{
	width:100%;
	border-right:none;
	border-bottom:1px solid #1c5d94;
	padding:0 0 26px 0;
	margin:20px 0 0 0;
}
.s6bx3{border-bottom:none;padding:0;}
.s6bxtxt2{padding:25px 0 0 0;}
.sec7 {padding: 20px 0 15px 0;}
ul.slinklist {padding: 17px 0 0 0;}
ul.ftrlist li{padding:0 10px 0 6px;      line-height: 32px;}
.ftrtxt1, .ftrtxt2{font-size:17px;}
ul.ftrlist {padding: 0;}
ul.ftrlist li:first-child{ border:none;}
}
@media only screen and (max-width: 479px){
.ftrtxt1, .ftrtxt2{line-height:28px;}
}
@media only screen and (max-width: 359px){
.sec5 {padding: 20px 0 100px 0;}
.s5sldr{margin:-78px 0 0 0;}
}
/*=========================================
			START PRODUCT PAGE
=========================================*/
.margn-zero{margin-right:0 !important;}
.mainprd-sec1{padding:50px 0 70px 0;}
.prod-hed {
    margin-top: 30px;
    border-bottom: 1px solid #eaeaea;
    padding: 10px 0;
    border-top: 1px solid #eaeaea;
    font-size: 28px;
    color: #000;
    font-weight: 400;
	float:left;
	width:100%;
}

.mainprd-sec1 .s1prdbx1 .s1prdbtn {
    height: 44px;
    padding: 2px 0 0 45px;
}
.mainprd-sec1 .s1prdbx1 .s1prdbx-hding{
	font-size: 18px;
	font-weight: 700;
	min-height: 64px;
}
@media only screen and (max-width: 1179px){
.mainprd-sec1 .s1prdbx1 .s1prdbtn{ width:70%;}
.mainprd-sec1 .s1prdbx1 {width: 32.2%;}
}
@media only screen and (max-width: 1013px){
.mainprd-sec1 .s1prdbx1{width: 31.9%;}
.mainprd-sec1 .s1prdbx1 .s1prdbtn{ width:80%;}
}
@media only screen and (max-width: 767px){
.mainprd-sec1{padding:30px 0 30px 0;}
.mainprd-sec1 .s1prdbx1 {width: 47.6%; text-align:center;}
.prod-hed{ margin-top:0px;}

}
@media only screen and (max-width: 510px){
.mainprd-sec1 .s1prdbx1 {width: 100%; margin:20px 0 0;}
.s1prd{ width:100%;}
.mainprd-sec1 .s1prdbx1 .s1prdbx-hding{ min-height:auto;}
.mainprd-sec1 .s1prdbx1 .s1prdbtn {width: 50%;}

}

.promoBox {
    float: left;
    width: 40%;
    margin-top: 16px;
}
.promoFld {
    float: left;
    width: calc(100% - 100px);
    border: 1px solid #9a9a9a;
    font-size: 18px;
    padding: 7px 15px 12px;
    outline: none;
    border-radius: 5px;
    color: #000;
}
.promoBtn {
    float: right;
    width: 90px;
    padding: 7px 14px;
    background: #3ab72b;
    border: none;
    outline: none;
    color: #fff;
    font-family: 'Sailec';
    font-size: 18px;
    padding: 7px 0 11px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
	text-align:center;
}
.ship-time {
    float: left;
    width: 100%;
    padding-left: 00px;
    margin-top: 20px;
    text-align: left;
}
.ship-time p {
    display: inline-block;
    vertical-align: middle;
    color: #2d2d2d;
    font-size: 16px;
    font-weight: 600;
    margin-left: 7px;
    width: auto;
	float:none;
}
.ship-time p span {
    color: red;
    display: block;
}
.ship-time img {
    display: inline-block;
    vertical-align: middle;
    width: 100px;
}

.ing-lft-bx {
    float: left;
    width: 100%;
    text-align: center;
}
p.ing-lft-bx-hed {
    float: left;
    width: 100%;
    font-size: 20px;
    margin: 20px 0;
}

/*TERMS- PRIVACY*/

.tems_bg {
	float: left;
	width: 100%;
	padding: 0px 0 40px;
}
.trm-bx {
	    background: #fff;
    width: 100%;
    float: left;
    text-align: left;
    margin-top: 30px;
}
.trm-bx h1 {
	    line-height: 30px;
    color: #333;
    font-size: 22px;
    float: left;
    width: 100%;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 4px solid #5b89b1;
    padding-bottom: 5px;
}
.trm-bx h3 {
	line-height: 28px;
    text-align: left;
    font-size: 22px;
    float: left;
    width: 100%;
    margin: 0px 0 15px;
    color: #fff;
    font-weight: 600;
    background: #c69526;
    padding: 5px;
}
.trm-bx li {
	margin-top: 10px;
	font-size: 16px;
	line-height: 24px;
	float: left;
	width: 100%;
	list-style: disc;
}
.trm-bx strong {
	text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}
.trm-bx span {
	text-transform: uppercase;
}
.trm-bx p {
	font-size: 16px;
	line-height: 24px;
	float: left;
	width: 100%;
	margin-bottom: 10px;
	font-weight: 400;
}
.trm-bx h4, .trm-bx h5 {
	font-size: 22px;
	float: left;
	width: 100%;
	margin: 10px 0;
	font-weight: 500;
}
.ing-blk h4 {
    text-align: center;
}
.ing-blk img {
    display: block;
    margin: 0 auto 10px;
}
.trm-bx h5 {
	font-size: 20px;
	font-weight: 500;
}
.privacy-list {
	padding: 0 0 0 30px
}
.privacy-list li {
	font-weight: bold;
}
.privacy-list li p {
	font-weight: normal;
	margin-top: 10px;
}
.mrg-tp {
	margin: 15px 0 !important;
	float: left;
	width: 100%
}
.trm-txt {
	float: left;
	width: 100%;
	background: #fff;
	padding: 20px 20px
}
.disclr-bx {
	border: 2px solid #000;
	padding: 10px;
	font-weight: 500;
	float: left;
	width: 100%;
	margin: 0;
}
.disclr-bx p {
	margin-bottom: 0;
	font-weight: bold;
}
.trm-bx ol {
	margin: 0px;
	float: left;
	width: 100%;
	font-weight: 400;
	padding: 0 20px;
	margin-bottom: 20px;
}
.trm-bx .disclmr {
	width: 100% !important;
}

@media only screen and (max-width: 767px){
	.tems_bg {    padding: 10px 0;}
	}




.age-pop-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .85);
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0
}
.age-pop {
    width: 500px;
    height: auto;
    background: #f2f2f2;
    margin: 12rem auto;
    text-align: center;
    border-radius: 3px;
    padding: 1.5rem 1rem .2rem;
}
.agepop-txt {
    color: #000000;
    font-weight: 700;
    font-size: 16px;
	text-transform:capitalize;
}
.agepop-txt span{
	font-size:20px;
	display:block;
	margin-bottom:5px;
	}
.agepop-btns button {
        width: auto;
    display: inline-block;
    padding: 10px 60px;
    border-radius: 3px;
    cursor: pointer;
    margin: 10px 0;
    font-size: 1rem;
    outline: none;
    border: none;
}
.agepop-btns button.yes-btn {
    background: #3aaa35;
    color: #fff;
}
.agepop-btns button.no-btn {
    background: #eb0000;
	color:#fff;
}

@media only screen and (max-width: 767px){
.age-pop{ width:100%;}
}







