@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 {
	font-family: 'Corbel';
	font-weight: 400;
	color: #2d2d2d;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-overflow-scrolling: touch;
	padding: 0;
	margin: 0;
	list-style: none;
}
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;
}
.dsplay {
    width: 100%;
	float:left;
}
.bdhding {
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: #2b2b5e;
    display: inline-block;
    width: 100%;
    text-transform: capitalize;
}
.bdhding span {
    display: block;
    font-size: 24px;
    line-height: 28px;
    color: #00cde5;
    font-weight: 700;
    margin-bottom: 0px;
    text-transform: uppercase;
}
* {
	box-sizing: border-box;
}
.container {
	width: 1170px;
	height: auto;
	margin: 0 auto;
	padding: 0;
	position:relative;
}
.bdfont{
	font-size:20px;
	line-height:30px;
	color:#303030;
	font-weight:300;
	margin-top:15px;
}
.fl-right{ float:right !important;}
/*===============================
CSS FOR CONTAINERS BREAK POINTS
=================================*/
@media only screen and (max-width: 1187px){
.container{ max-width:1004px; width:100%; }
}
@media only screen and (max-width: 1023px){
.container{ max-width:760px; width:100%; }
.bdhding{font-size:36px;line-height:46px;}
.bdfont {font-size: 18px;line-height: 28px;margin-top: 12px;}

}
@media only screen and (max-width: 767px){
.container{ width:100%; max-width:640px;}
.bdinpad{padding:0 15px;}
.bdhding{font-size: 28px; line-height:38px;}
.bdfont{ font-size:17px;line-height:25px;}
}
@media only screen and (max-width: 359px){
.bdsubhding{
	font-size:30px;
	line-height:38px;
}
}
/*=========================
CSS FOR HEADER
===========================*/
.top-fix-bar {margin-bottom: 76px;}
.header{		
	height: 82px;
	margin-top: -75px;
	position: relative;
	top: 76px;
	background: #fff;
	border-top: 4px solid #ececec;
}
.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:82px;
}
.logo {
        float: left;
    margin: 14px 0 3px 0;
    max-width: 190px;
}
ul.nav {float: left; margin: 20px 0 0 40px;}
ul.nav li{
	float: left;
    margin: 0px 10px 0 0;
    padding: 0px 20px;
}
ul.nav li a{color: #000000; font-size: 20px; line-height: 36px;}
ul.nav li.active, ul.nav li:hover{
	color: #00cde5;
    border-radius: 30px;
}
ul.nav li.active a, ul.nav li:hover a{color:#00cde5}
ul.nav li:last-child{margin-right:0;}
ul.nav li:last-child a:hover, ul.nav li:last-child a.active{
	background:none;
	color:#000;
	border-radius:0;
}
ul.hed-right {
    float: right;
	margin-top:15px;
}
ul.hed-right li{ display:inline-block; vertical-align:middle; margin-left:13px;}
#menu-wrapper {
    overflow: hidden;
    max-width: 40px;
    cursor: pointer;
	float:right;
}
#menu-wrapper #hamburger-menu {
    position: relative;
    width: 25px;
    height: 20px;
    margin: 18px 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:#00cde5;
	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:#00cde5;}
@media only screen and (max-width: 1023px){
.header{height:55px; top:55px; margin-top:-55px;}
.top-fix-bar {margin-bottom: 55px;}
.fixed-nav .header{height:62px;}

.intop-fix-bar {margin-bottom: 87px;}
.logo{margin:5px 0 0 0;position:inherit;left:auto;right:auto;top:auto;float:left;width:140px;}
ul.nav li{display:none;}
ul.hed-right{ display:none;}
.cart-link{position:absolute;right:55px;top:9px;}
}
@media only screen and (max-width: 479px){
.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;
}
}

/*================BANNER===================*/
.banner{
	background: url(../images/bnr-bg.jpg) no-repeat center top;
    height: 642px;
    padding:85px 0 0;
    box-sizing: border-box;
    overflow: hidden;
   }
.bnrlft, .bnrrgt{
	float: right;
    width: 62%;
	text-align:left;
	padding: 65px 30px 60px 40px;
	background:rgb(255, 255, 255, 0.4);
    }
.bnrrgt{	
	height:593px;
	width:53%;
}
.bnrprd{
	margin: 20px -37px 0 0;
    float: right;
}
.bnrhding {
    font-weight: 700;
    font-size: 52px;
    line-height: 62px;
    color: #2b2b5e;
    text-transform: capitalize;
}
.bnrhding span{
	display:block;
    font-size: 26px;
    line-height: 32px;
    color: #00cde5;
	text-transform:uppercase;
	margin-bottom:5px;
	}
.bnrtxt{	
    margin: 14px 0 0 0;
    width:95%;
	font-size:22px;
	line-height:32px;
	color:#2a2a2a;
}
@media only screen and (max-width: 1187px){
.banner{}
.bnrlft, .bnrrgt { width: 70%;}
.bnrhding {font-size:50px;line-height: 60px;}
.bnrtxt {width: 100%;}
.bnrrgt{background-size:100%;height:540px;}
}
@media only screen and (max-width: 1023px){
.banner{height: auto; padding:65px 0; background-size:cover;}
.bnrlft, .bnrrgt{width: 72%;padding: 50px 20px 50px 25px;}
.bnrrgt{height:450px;}
.bnrprd{margin:90px -37px 0 0;}
.bnrhding {font-size:40px;line-height: 50px;}
.bnrhding span {font-size: 20px;line-height: 30px;margin-bottom: 3px;}
.bnrtxt {margin:8px 0 0 0;font-size:18px;line-height:28px;}

}
@media only screen and (max-width: 767px){
.banner{padding:30px 0 30px 0; background-position:26% top;}	
.bnrlft, .bnrrgt{width:100%; text-align:center;padding: 28px 10px 28px 10px;background: rgb(255, 255, 255, 0.7);}
.bnrhding, .bnrtxt{text-align:center;padding:0;}
.bnrtxt{
	margin:10px 0 0 0;
	font-size: 17px;
    line-height: 25px;
}
.mobprdbx{
	background:url(../images/bnrprdbg.png) center top no-repeat;
	background-size:100%;
	width:400px;
	margin:0 auto;
	display:block;
}
.mobprdbx img{margin:20px auto;display:block;}
}
@media only screen and (max-width: 479px){
.bnrhding {
    font-size: 30px;
    line-height: 40px;
}
.bnrhding span {margin-bottom: 0px;}
.mobprdbx{width:330px;}
}
@media only screen and (max-width: 359px){
.mobprdbx{width:290px;}
.bnrhding {
    font-size: 28px;
    line-height: 35px;
}
}
/*================BANNER STRIP===================*/
.bnrstrip{
	padding:65px 0;
	text-align: center;
	overflow:hidden;
	}
.bnrstrip-bx{
}
ul.bnrstrip-list{
	float:left;
	width:100%;
	padding:0;
	 margin-top:50px;}
ul.bnrstrip-list li{
	float:left;
	display:inline-block;
	width:25%;
	font-size:20px;
	line-height:30px;
	color:#2b2b5e;
	font-weight:300;
	text-align: center;
	padding:0px 10px;
	position:relative;
}
ul.bnrstrip-list li:before{
	content: "";
    position: absolute;
    right: -15%;
    top: 45px;
    width: 88px;
    height: 24px;
    background: url(../images/arw1.png) no-repeat center top;
	}
ul.bnrstrip-list li:nth-child(2):before	{background:url(../images/arw2.png) no-repeat center top;}
ul.bnrstrip-list li:last-child:before{ display:none;}	
ul.bnrstrip-list li span{
	display:block;
	font-size:24px;
	line-height:34px;
	font-weight: bold;
	margin-bottom:5px;
	}

ul.bnrstrip-list li img{
	display:block;
	margin:0 auto 14px;
}
@media only screen and (max-width: 1187px){
ul.bnrstrip-list li{}
}
@media only screen and (max-width: 1023px){
.bnrstrip {padding: 50px 0;}	
.bnrstrip-bx{padding:2px 2px 10px 2px;}
ul.bnrstrip-list li{
	font-size: 19px;
    line-height: 28px;
	padding: 0px 5px;
}
ul.bnrstrip-list li:before { display:none;}
ul.bnrstrip-list li span {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 2px;
}
ul.bnrstrip-list li img{
	margin:0 auto 10px auto;
}
}
@media only screen and (max-width: 767px){
.bnrstrip {padding:30px 0;}
.bnrstrip-bx{height:auto;margin-top:-65px;padding-bottom:15px;}
ul.bnrstrip-list li{
	width:100%;
	height:auto;
	padding:20px 60px;
	text-align:center;
	margin:10px 0 0 0;
	border:1px solid #dedede;
}
ul.bnrstrip-list li img{
	float:none;
	margin:0 auto 5px auto;
	display:block;
}
ul.bnrstrip-list {margin-top:10px;}

}
@media only screen and (max-width: 479px){
ul.bnrstrip-list li{text-align:center;font-size:17px;line-height:25px;}
ul.bnrstrip-list li img{
	float:none;
	margin:0 auto 5px auto;
	display:block;
}
}
@media only screen and (max-width: 359px){
ul.bnrstrip-list li {
    font-size: 12px;
    line-height: 15px;
}
ul.bnrstrip-list li img{width:35px;}
}
/*================SECTION 1===================*/
.sec1{    
	padding: 60px 0 60px 0;
    text-align: center;
}
.s1txt{text-align:center;padding:17px 0 0 0;}
.s1prdbx1, .s1prdbx2, .s1prdbx3, .s1prdbx4{
	    display: inline-block;
    width: 30%;
    margin: 32px 1.25% 0 1.25%;
    height: auto;
    background: #fff;
    padding: 0 16px 26px 16px;
	border:1px solid #f5f4f8;
}
.s1prdbx1:hover, .s1prdbx2:hover, .s1prdbx3:hover{background: #f9f9f9}
.s1prdbx1:hover .s1prdbtn, .s1prdbx2:hover .s1prdbtn, .s1prdbx3:hover .s1prdbtn{ background:#2b2b5e;}
/*.s1prdbx2{background:#f6eaff;}
.s1prdbx3{background:#eaf9f2;}
.s1prdbx4{background:#f2e6fb;}*/
.s1prd{
	margin: 2px auto 0px auto;
    display: block;
    max-width: 240px;}
.s1prdbx-hding, .s1prdbx-prc{
	font-weight: 700;
    font-size: 24px;
    line-height:30px;
    color: #272727;
}
.s1prdbx-prc{
	font-weight: 700;
    font-size: 28px;
    line-height:34px;
    color: #0b3480;
	margin:10px 0 0 0;}
.s1prdbx-txt{
	font-size:12px;
	line-height:14px;
	color:#646464;
	margin:7px 0 0 0;
}
.s1prdbx-txt img{margin:0 5px -3px 0;}
.s1prdbx-txt2{
    padding: 10px 0 0 0;
    line-height: 26px;
    /* height: 110px; */
    color: #000;
}
@media only screen and (max-width: 1187px){
.s1prdbx1, .s1prdbx2, .s1prdbx3, .s1prdbx4{
	margin: 32px 0.5% 0 0.5%;
    padding: 0 10px 25px 10px;
}
}
@media only screen and (max-width: 1023px){
.sec1{padding:50px 0;}
.s1prdbx1, .s1prdbx2, .s1prdbx3, .s1prdbx4{	
	padding: 0 18px 20px 18px;
	margin: 25px 0.5% 0 0.5%;
}
.s1prdbx-hding{
	font-size:22px;
	line-height:30px;
}
.s1prdbx-prc {font-size: 25px;line-height: 32px;}
.s1prd {margin: 15px auto 12px auto; max-width: 200px;}
.s1prdbx-txt2{
	font-size:16px;
	line-height:23px;
}
}
@media only screen and (max-width: 767px){
.sec1 {padding:30px 0;}
.s1prdbx1, .s1prdbx2, .s1prdbx3, .s1prdbx4{
	width:47%;
	margin:30px 1% 0 1%;
}
.s1prdbx3, .s1prdbx4{margin:20px 1% 0 1%;}
.s1prdbx-hding{height:auto;text-align:center;}
.s1prdbx-prc, .s1prdbx-txt, .s1prdbx-txt2{text-align:center;}
.s1prdbx-prc{margin:10px 0 0 0;}
.s1prdbx-txt2{padding:6px 0 0 0;}
.s1prdbx-txt2 {
    font-size: 18px;
    line-height: 24px;
}
.s1prdbx-txt {
    font-size: 14px;
    line-height: 16px;
}
}
@media only screen and (max-width: 479px){
.s1prdbx1, .s1prdbx2, .s1prdbx3, .s1prdbx4{
	width: 100%;
    margin: 20px 0% 0 0%;
    float: none;
    display: block;
	padding:0px 20px 20px;
}
.s1prdbx-txt2{height:auto;}
}
@media only screen and (max-width: 359px){
.s1prdbx1, .s1prdbx2, .s1prdbx3, .s1prdbx4{
	width:100%;
	margin:20px 0 0 0;
	float:none;
	display:block;
}
}
/*================SECTION 2===================*/
.sec2{
	    padding:60px 0 60px 0;
    background: #fbfbfb;
    text-align: center;
}
.s2box1{
	background: url(../images/s2bx1.jpg) center top no-repeat;
    height: 470px;
    margin: 0 auto;
    width: 100%;
    border-radius: 10px;
    padding: 48px 0 40px 60px;
	text-align:left;
}
.s2bx-rgt {
	text-align: center;
	width: 48%;
	margin-top: 30px;
}
.prd-s2box1{
	margin:40px auto 0 auto;
	width:98%;
	background-size:cover;
}
.s2bxhding{
	font-size:40px;
	line-height:44px;
	font-weight:300;
}
.s2bxtxt{
	padding:16px 0 0 0;
	width:480px;
}
ul.s2bxlist{padding: 15px 0 0 0; display: inline-block;}
ul.s2bxlist li{
	background:url(../images/bullet.png) left 8px no-repeat;
	padding:0 0 0 30px;
	margin:4px 0 0 0;
	text-align:left;
}
.s2hding{padding:72px 0 0 0;}
ul.s2list{
	float: left;
    width: 100%;
    margin-top: 45px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 22px;
	}
ul.s2list li{
	float: left;
    width: 32%;
    text-align: left;
}
ul.s2list li img{margin:0 auto;display:block; max-width:100%;}
ul.s2list li img.s2-icon { margin: 20px auto 0; display: block;}
.s2lhding{
	float:left;
	width:100%;
	font-size: 24px;
    line-height: 34px;
    color: #2b2b5e;
    font-weight: bold;
    /* text-align: center; */
    padding: 10px 0 0 0;
}
.s2ltxt{
	display: inline-block;
    width: 85%;
	font-size: 20px;
    line-height: 30px;
    color: #2d2d2d;
    margin-top: 10px;
}
.s2ltxt2{
	display:inline-block;
	font-size:14px;
    line-height: 32px;
    color: #fff;
    margin-top:-12px;
	padding:0 10px;
	text-align:center;
	background:#00cde5;
	text-transform:uppercase;
	}
@media only screen and (max-width: 1187px){
.s2box1{
	width:100%;
	padding: 25px 0 0 30px;
	height:422px;
	background-size:100%;
}
.s2ltxt {width: 95%;}

}
@media only screen and (max-width: 1023px){
.sec2{padding:50px 0;}
.s2box1{
	    background: #fffaf4 url(../images/s2bx1.jpg) center center no-repeat;
    background-size: 100%;
    height: auto;
    padding: 25px 0 40px 20px;
}
.s2bxtxt{width:370px;}
.s2hding {padding: 50px 0 0 0;}
.s2lhding {font-size: 22px;line-height: 30px;}
.s2ltxt {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    margin-top: 8px;
}
ul.s2list {margin-top: 30px;}

}
@media only screen and (max-width: 767px){
.sec2{padding:30px 0 30px 0;text-align:center;}
.s2box1{
	background:#fffbf4;
	padding:25px 0 30px 0;
}
.s2bxhding{
	    text-align: center;
    padding: 0 15px;
    font-size: 28px;
    line-height: 38px;
}
.s2bx-rgt{ width:100%; margin-top: 0px;}
.s2bxtxt{width:auto;text-align:center;padding:10px 15px 0 15px;}
.s2img-mob{margin:15px auto;}
ul.s2bxlist{width:400px;margin:0 auto;display:block;padding:3px 0 0 0;}
.s2hding{padding:40px 0 0 0;}
.s1txt {padding: 14px 0 0 0;}
ul.s2list {margin-top: 20px;}
ul.s2list li{ width:100%;}

.s2ltxt{}
}
@media only screen and (max-width: 430px){
ul.s2bxlist{width:100%;padding:0 10px;}
}
/*================SECTION 2===================*/

/*================SECTION 3===================*/
.sec3{
	padding:80px 0;
	height:606px;
	background:url(../images/sec3-bg.jpg) no-repeat center top;
	text-align:center;
}
.s3arw{
	position:absolute;
	left:0;
	right:0;
	top:-1px;
	margin:0 auto;
	display:block;
}
.s3bx1, .s3bx2{width:100%;margin:15px auto 0 auto;}
.s3bx1-lft, .s3bx1-rgt{
	    float: left;
    width: 41%;
    margin-top: 20px;
    text-align: left;
}
.s3bx1-lft{}
.s3bximg{margin:0 auto;display:block;}
.s3bxhding, .s3hding2{
	font-weight:300;
	font-size:26px;
	line-height:30px;
	color:#00cde5;
	text-align:left;
	padding:58px 0 0 0;
}
.s3hding2{padding:58px 0 0 18px;}
.s3bxtxt{
	text-align:left;
	padding:110px 0 0 0;
}
ul.s3list{
	float: right;
    width: 35%;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 25px;
	}
ul.s3list li{
	float:left;
	width:100%;
	font-size:28px;
	line-height:34px;
	color:#141417;
	font-weight:bold;
	text-align:left;	
	padding:30px 20px 30px 145px;
	position:relative;
	background:#fff;
}
ul.s3list li:nth-child(2){
	background:#2b2b5e;
	color:#fff;
	}
ul.s3list li img{
	position: absolute;
    left: 30px;
    top: 18px;
}
.s3-prodt{
	position: absolute;
    right: 28%;
    top: 143px;
    transform: rotate(90deg);
	}
.s3-line{
	position: absolute;
    right: 32%;
    top: 82px;
    z-index: 1;
	}
.s3lhding{	
	font-size:24px;
	line-height:28px;
	text-align:left;
}
.s3ltxt{padding:8px 0 0 0;text-align:left;}
@media only screen and (max-width: 1187px){
.s3bxhding{padding:50px 0 0 0;}
.s3hding2{padding:48px 0 0 18px;}
ul.s3list {padding: 0 0 0 10px;}
.s3bx1, .s3bx2{width:100%; text-align:center;}
.s3-prodt {right: 32%;}
.s3-line {right: 30%;}

}
@media only screen and (max-width: 1023px){
.sec3{padding:50px 0; height:auto; background-size:cover;}
.s3bx2{margin:25px auto 0 auto;}
.s3bx1-lft, .s3bx1-rgt{width: 85%;
    margin: 0px 0 0 0;
    text-align: center;
    float: none;
    display: inline-block;}
.s3bx1-rgt{padding:0 80px;}
.s3bxhding, .s3bxtxt{text-align:center;}
.s3bxhding, .s3hding2{padding:20px 0 0 0;}
.s3bxtxt{padding:12px 0 0 0;}
ul.s3list {width:50%;margin-top: 30px; padding:0;}
ul.s3list li {}
.s3lhding {
    font-size: 22px;
    line-height: 26px;   
}
.s3-prodt {right: 46%; top: 494px; max-width: 470px;}
.s3-line{ right: 45%; top: 432px;
}
}
@media only screen and (max-width: 767px){
.sec3{padding:30px 0; background:#fbfbfb;}
.s3bximg{max-width:400px;}
.s3bx1-rgt{padding:0 0;}
.s3bx1-lft, .s3bx1-rgt {width: 100%;}
.s3-prodt {
    position: static;
    max-width: 90%;
    margin: -100px 0 -120px;
    transform: none;
}
.s3-line { display:none;}
.bdhding span{ font-size:20px;}
}
@media only screen and (max-width: 479px){
ul.s3list { width:100%;row-gap: 15px;margin: 0 0 10px;}
ul.s3list li {font-size: 22px;line-height: 32px;padding: 24px 20px 23px 145px;}
ul.s3list li img {
    left: 38px;
    top: 10px;
    width: 90px;
}
.s3bximg{max-width:320px;}
}
@media only screen and (max-width: 359px){
.s3bximg{max-width:100%;}
}
/*================SECTION 4===================*/
.sec4 {
	padding: 80px 0;
	background: #ffffff;
	float: left;
	width: 100%;
	text-align: center;
}
ul.s4list{
	padding: 14px 0 0 0;
	float: left;
	width: 100%;
	text-align: center;
	}
ul.s4list li {
	width: 22%;
    margin: 20px 30px 0px 0;
    display: inline-block;
    vertical-align: top;
    position: relative;
    overflow: hidden;
}
ul.s4list li .s4-pnt-txt{
	font-size: 18px;
	line-height: 28px;
	float: left;
	width: 100%;
	font-weight: normal;
	padding: 0 20px;
	}
/*================SECTION 6===================*/
.sec6{padding:0 0 60px 0;background:#00cde5;}
.s6bx{width:90%;margin:50px auto 0 auto;display:block;}
.s6bx1, .s6bx2, .s6bx3{
	float: left;
    display: inline-block;
    width: 100%;
    padding: 0 20px;
	margin-top: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: 5px 0 0 0;
}
.s6bxtxt a{ color:#fff;}
.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:5px 0 0 0;text-align:center;}
ul.slinklist li{
	    display: inline-block;
    margin: 7px 10px;
}
ul.slinklist li a{ color: #fff; font-size: 20px;}
/*================SECTION 7===================*/
.sec7{    
	padding: 20px 0;
    background: #333;}
.ftrlogo{margin:0 auto;display:block;}
ul.ftrlist{padding:22px 0 0 0;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:#c8c8c8;
	text-align:center;
}
ul.ftrlist li a{color:#c8c8c8;}
ul.ftrlist li:last-child{border-right:none;}

/*================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:12px 0 0 0;
}
@media only screen and (max-width: 1023px){
.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){
.sec6 {padding: 0 0 24px 0;}
.s6bx{margin:0 auto;}
.s6bx1, .s6bx2, .s6bx3{
	width:100%;
	border-right:none;
	border-bottom:1px solid #fff;
	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;}
.ftrtxt1, .ftrtxt2{font-size:17px;}
ul.ftrlist {padding: 12px 0 0 0;}
}
@media only screen and (max-width: 479px){
.ftrtxt1, .ftrtxt2{line-height:20px;}
}
@media only screen and (max-width: 359px){
.sec5 {padding: 20px 0 100px 0;}
.s5sldr{margin:-78px 0 0 0;}
}


/*MOBILE MENU*/
#menu-wrapper {
	overflow: hidden;
	max-width: 40px;
	cursor: pointer;
	float: right;
}
#menu-wrapper #hamburger-menu {
	position: relative;
	width: 25px;
	height: 20px;
	margin: 18px 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: #00cde5;
	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: 60px;
    background: #00cde5;
    border-top: 1px solid #ffffff;
}
#menu-container .menu-list li a {
	font-weight: 600;
    font-size: 18px;
    padding: 10px 0 10px 0;
    text-align: center;
    color: #fff;
    display: block;
    border-bottom: 1px dotted #ffffff;
}
#menu-container .menu-list li a.active {
	background: #333;
	color: #fff;
}


.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;
}

.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: #00cde5;
    color: #fff;
}

.agepop-btns button.no-btn {
    background: #eb0000;
	color:#fff;
}

@media screen and (max-width:767px) {
    .age-pop {
        width: 80%;
        margin: 10rem auto;
    }

}

@media screen and (max-width:760px) and (orientation:landscape) {
    .age-pop {
        margin: 5rem auto;
    }

}