@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%;
	height:auto;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width: 100%;
}
body {
	font-family: 'Poppins';
	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: 300;
    font-size: 40px;
    line-height: 44px;
    color: #000;
    display: inline-block;
    width: 100%;
	text-transform: capitalize;
}
.bdhding span {
    display: block;
    font-size: 18px;
    line-height: 27px;
    color: #099de9;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 6px;
}
* {
	box-sizing: border-box;
}
.container {
	width: 1170px;
	height: auto;
	margin: 0 auto;
	padding: 0;
	position:relative;
}
.bdfont{
	font-size:18px;
	line-height:28px;
}
.fl-right{ float:right !important;}

/*====FONTS====*/
@font-face {
	font-family: 'Poppins';
	src: url('Poppins-Regular.woff2') format('woff2'),
	url('Poppins-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
	}
@font-face {
	font-family: 'Poppins';
	src: url('Poppins-Medium.woff2') format('woff2'),
	url('Poppins-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	}
@font-face {
	font-family: 'Poppins';
	src: url('Poppins-SemiBold.woff2') format('woff2'),
	url('Poppins-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
	}
@font-face {
	font-family: 'Poppins';
	src: url('Poppins-Bold.woff2') format('woff2'),
	url('Poppins-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
	}
	
/*===============================
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%;}}
@media only screen and (max-width: 767px){.container{ width: 100%; max-width: 600px; padding: 0 15px;}}

/*=========================
CSS FOR HEADER
===========================*/
.top-fix-bar {margin-bottom: 75px;}
.header{		
	height: 75px;
	margin-top: -75px;
	position: relative;
	top: 75px;
	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:75px;
}
.logo {
	float: left;
    margin: 12px 0 0 0;
    max-width: 240px;
}
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: 16px;line-height: 36px;}
ul.nav li.active, ul.nav li:hover{
	color: #099de9;
    border-radius: 30px;
}
ul.nav li.active a, ul.nav li:hover a{color:#099de9}
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;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}
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:#099de9;
	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:#099de9;}
@media only screen and (max-width: 1013px){
.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 5px 0; position: inherit; left: auto; right: auto; top: auto; float: left; width: 120px;}
ul.nav li{display:none;}
ul.hed-right{ display:none;}
.cart-link{position:absolute;right:55px;top:9px;}
}
@media only screen and (max-width: 767px){.logo{width: 170px; margin: 10px 0 5px 0;} .cart-link{ top: 14px; max-width: 30px;}}
@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====*/
.banner{
	float:left;
	width:100%;
	background: #EBF5FF;
	background: linear-gradient(90deg, rgba(235, 245, 255, 1) 0%, rgba(235, 245, 255, 0.71) 59%, rgba(235, 245, 255, 0.21) 100%);
	padding:60px 0 65px;
	}
.banner_left{
	float:left;
	width:48%;
	text-align:left;
	}
.banner_heading{
	font-size:60px;
	line-height:66px;
	color:#13182f;
	font-weight:600;
	}
.banner_paragraph{
	font-size:17px;
	line-height:26px;
	color:#000000;
	margin-top:25px;
	}
ul.banner_point{
	display:inline-block;
	vertical-align:middle;
	width:100%;
	margin-top:20px;
	}
ul.banner_point li{
	display:inline-block;
	vertical-align:middle;
	width:100%;
	margin-top:10px;
	text-align:left;
	background:url(../images/banner_point.png) no-repeat left 0;
	background-size:20px;
	padding-left:35px;
	font-size:18px;
	line-height:26px;
	color:#000;
	font-weight:600;
	}
.banner_box{
	position:absolute;
	right:0;
	top:-20px;
	max-width:523px;
	}
.banner_couple{
	display:block;
	margin:0 auto;
	max-width:100%;
	}
.bnr_prod {
	max-width: 370px;
	position: absolute;
	bottom: -42px;
	right: 340px;
}
.common_button_box{
	display:inline-block;
	vertical-align:middle;
	width:100%;
	max-width:300px;
	margin-top:30px;
	text-align:center;
	}
.common_button{
	display:inline-block;
	vertical-align:middle;
	width:100%;
	height:58px;
	background:#0cc650;
	text-align:center;
	font-size:18px;
	line-height:63px;
	color:#fff;
	font-weight:700;
	letter-spacing:0.2px;
	border-radius:100px;
	}
.button_arrow{
	display:inline-block;
	vertical-align:middle;
	width:17px;
	margin:-1px 0 0 10px;
	}
@media only screen and (max-width: 1179px){
.banner_left{ width:55%;}
.banner_box{ width:450px;}
.banner_paragraph{ width:85%;}
}
@media only screen and (max-width: 1013px){
.banner_left{ width:61%;}
.banner_heading{ font-size:50px; line-height:54px;}
.banner_paragraph{ font-size:17px; line-height:25px; margin-top:20px;}
ul.banner_point{ margin-top:15px;}
.banner_box{ width:350px; top:120px;}
}
@media only screen and (max-width: 767px){
.banner{ padding:25px 0 35px;}
.banner_left{ text-align:center; width:100%;}
.banner_heading{ font-size:34px; line-height:38px;}
.banner_paragraph{ width:100%; font-size:16px; line-height:24px; margin-top:15px;}
.bnr_rht{ display:inline-block; vertical-align:middle; width:100%; position:relative; max-width:355px; margin:10px 0 0;}
.banner_box{ position:static; width:295px; float:right;}
.bnr_prod{max-width: 240px; bottom: -22px; right:auto; left:-20px;}
ul.banner_point{ max-width:285px; margin-top:20px;}
ul.banner_point li{ font-size:16px; line-height:22px; background-size:18px; padding-left:30px;}
.common_button_box{max-width: 100%;  margin-top: 20px;}
}

/*================SECTION 1===================*/
.section_1{
	float:left;
	width:100%;
	padding:0px 0 0px;
	}
.common_heading{
	font-size: 44px;
    line-height: 52px;
    color: #13182f;
    font-weight: 600;
	}
.common_paragraph{
	font-size:17px;
	line-height:26px;
	color:#000;
	font-weight:400;
	margin-top:15px;
	}
.white {color: #fff;}
.sec1_prodbox{
	display:flex;
	display:-webkit-flex;
    flex-wrap:nowrap;
    -webkit-box-align:center;
    align-items:center;
    -webkit-box-pack:center;
    justify-content: space-between;
	width:100%;
	background:linear-gradient(90deg, #0c9fe8, #0c4464);
	padding:50px 50px;
	border-radius:15px;
	overflow:hidden;
	}
.sec1_prodbox_cont{
	float: left;
    width: 55%;
    text-align: left;
	}
.s1_prodbox_img{
	float: right;
    max-width: 100%;
    margin: 0px 0px -20px 0px;
	}

@media only screen and (max-width: 1179px){
.section_1{padding: 40px 0;}
.common_paragraph{ font-size:17px;}
.sec1_prodbox_cont{ width:55%;}
}
@media only screen and (max-width: 1013px){
.common_heading{ font-size:40px; line-height:46px;}
.sec1_prodbox_cont{ width:57%;}
.sec1_prodbox{ padding:30px;}
.s1_prodbox_img{ width:350px;}
}
@media only screen and (max-width: 767px){
.section_1{ overflow:hidden; padding:30px 0 20px;}
.common_heading{ font-size: 26px; line-height: 34px;}
.common_paragraph{ font-size:16px; line-height:24px; margin-top:10px;}
.sec1_prodbox{ padding:20px 15px;flex-wrap: wrap;}
.sec1_prodbox_cont{ width:100%;}
.s1_prodbox_img{ float:none; display:block; margin:25px 0 0 -30px; width:calc(100% + 40px); max-width:none;}
.sec1_row_buttonBox{ max-width:175px;}
.sec1_row_buttonBox .common_button{font-size:14px;height:44px;line-height:49px; letter-spacing:0.3px;}
}

/*================PRODUCT SECTION===================*/
.prod_sec{    
	padding: 60px 0;
    text-align: center;
	float:left;
	width:100%;
}
.s1txt{text-align:center;padding:17px 0 0 0;}
.prdbx1, .prdbx2, .prdbx3{
	display: inline-block;
	width: 30%;
	margin: 32px 1.25% 0 1.25%;
	height: auto;
	border-radius: 10px;
	background: #edf6ff;
	padding: 20px 20px;
}
.s2-col-prod{
	margin: 10px auto 20px auto;
	display: block;
}
.prdbx-hding, .prdbx-prc{
	font-weight: 400;
    font-size: 22px;
    line-height: 22px;
    color: #000;
    float: left;
    width: 100%;
}
.prdbx-prc{
	margin: 15px 0 0 0;
    font-weight: 700;
    border-top: 1px solid #c3d9ef;
    border-bottom: 1px solid #c3d9ef;
    padding: 10px 0 5px;
}
.prdbx-txt{
	font-size:12px;
	line-height:14px;
	color:#646464;
	margin:7px 0 0 0;
}
.prdbx-txt img{margin:0 5px -3px 0;}
.prdbx-txt2{
    line-height: 24px;
    color: #000;
    font-size: 16px;
    float: left;
    width: 100%;
    margin: 15px 0;
}
@media only screen and (max-width: 1179px){
.prdbx1, .prdbx2, .prdbx3{margin:32px 0.5% 0 0.5%;}
.prdbx-hding, .prdbx-prc{font-size:23px;}
}
@media only screen and (max-width: 1013px){
.prod_sec{padding:40px 0;}
.prdbx1, .prdbx2, .prdbx3{padding:0 10px 16px 10px;}
.prdbx-hding{font-size:19px; line-height:22px;}
.prdbxprd {margin: 15px auto 12px auto; max-width: 200px;}
.prdbx-txt2{font-size:16px;	line-height:23px;}
}
@media only screen and (max-width: 767px){
.prdbx1, .prdbx2, .prdbx3{width:100%; margin:30px 1% 0 1%;}
.prdbx-hding{height:auto;text-align:center;}
.prdbx-prc, .prdbx-txt, .prdbx-txt2{text-align:center;}
.prdbx-prc{margin:10px 0 0 0;}
.prdbx-txt2{padding:6px 0 0 0;}
.s1prdbx-txt { font-size: 14px; line-height: 16px;}
}

/*================SECTION 2===================*/
.section_2{
	float:left;
	width:100%;
	padding:60px 0;
	text-align:center;
	}
.s2_row{
	display:flex;
	display:-webkit-flex;
    flex-wrap:wrap;
    justify-content: space-between;
	width:100%;
	margin:40px auto 5px;
	}
.s2_col{
	width:31.6%;
	text-align:center;
	border-radius:10px;
	margin-top:60px;
	position:relative;
	padding:15px 20px 30px;
	background:#f1f8fa;
	}
.s2_col:before{
	position:absolute;
	content:"";
	border-top:3px dotted #cce3ec;
	left:0;
	right:-28px;
	top:-53px;
	}
.s2_col:nth-child(1):before{ left:50%;}
.s2_col:nth-child(3):before{ right:50%;}
.s2_col_img{
	display:block;
	margin:0 auto;
	max-width:100%;
	}
.s2_col_number{
	position: absolute;
    left: 50%;
    margin-left: -17.5px;
    top: -75px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #86d6f5;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    padding: 10px 0 0;
    border: 5px solid #fff;
	}
.s2_col_iner{
	display:inline-block;
	vertical-align:top;
	width:100%;
	}
.s2_col_heading{
	font-size: 22px;
	line-height: 30px;
	color: #000;
	font-weight: 600;
	margin-top: 10px;
	}
.s2_col_text{
	font-size: 17px;
	line-height: 26px;
	color: #000;
	font-weight: 400;
	margin-top: 10px;
	padding: 0 10px;
	}
@media only screen and (max-width: 1179px){
.s2_col{width:32.5%;}
}
@media only screen and (max-width: 1013px){
.section_2{padding:40px 0;}
.s2_col_heading{ font-size:24px; line-height:28px;}
.s2_col {padding:15px 15px 30px;}
.s2_col:before{ right:-25px;}
.s2_col_text{ font-size:15px;}
}
@media only screen and (max-width: 767px){
.section_2{ overflow:hidden; padding:30px 0;}
.s2_row{ margin-top:10px; max-width:330px;}
.s2_col{ width:100%; padding:15px 20px 20px; margin-top:15px;}
.s2_col_iner{ float:right;}
.s2_col_heading{ font-size:22px; line-height:26px;}
.s2_col_number{ left:15px; top:15px; margin:0; border:none; width:35px; height:35px; border-radius:50px 50px 50px 50px;}
.s2_col:before{ display:none;}
.s2_col_img{ width:200px;}
}
/*================SECTION 2===================*/

/*================SECTION 3===================*/
.section_3{
	float:left;
	width:100%;
	padding:60px 0;
	background: linear-gradient(90deg, rgba(235, 245, 255, 1) 0%, rgba(235, 245, 255, 0.71) 59%, rgba(235, 245, 255, 0.21) 100%);
	text-align:center;
	}	
.sec3_row{
	display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
	align-items: center;
    width: 100%;
	margin-top:45px;
	}
.sec3_col-1{
	width:44%;
	}
.sec3_img{
	display:block;
	margin:0 auto;
	max-width:100%;
	}
.sec3_col-2{
	width:52%;
	text-align:left;
	}
ul.sec3_list{
	display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
	row-gap: 30px;
    width: 100%;
	}
ul.sec3_list li{
	display: flex;
    display: -webkit-flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    column-gap: 15px;
    text-align: left;
	}
.sec3_list-icon{
	width:68px;
	flex-shrink: 0;
	}
.sec3_list-icon img{
	max-width:100%;
	display:block;
	margin:0 auto;
	}
.sec3_list-text{
	font-size: 17px;
	line-height: 26px;
	color: #000000;
	}
.sec3_list-text span{ 
	font-size:22px;
	display:block; 
	margin-bottom:10px; 
	font-weight:600;
}
@media only screen and (max-width: 1179px){
}
@media only screen and (max-width: 1013px){
.sec3_row{justify-content: center; max-width:520px; margin:30px auto 0;}
.sec3_col-1{ width:100%;}
.sec3_col-2{ width:100%; margin-top:30px; text-align:center;}
}
@media only screen and (max-width: 767px){
.section_3{ padding:30px 0 35px;}
ul.sec3_list {row-gap: 20px;}
ul.sec3_list li{align-items: self-start;column-gap: 12px;}
.sec3_list-text {font-size: 16px;line-height: 24px;}
.sec3_list-text span{ font-size:18px; margin-bottom:5px;}
}

/*================SECTION 4===================*/
.section_4{
	float:left;
	width:100%;
	padding:60px 0;
	text-align:center;
	}
.faq_section{
	display:inline-block;
	vertical-align:top;
	width:100%;
	max-width:810px;
	border-radius:0px;
	margin:30px 0 15px;
	}
.faq_slide_row{
	display:inline-block;
	vertical-align:middle;
	width:100%;
	background:#fff;
	border-radius:10px;
	-webkit-box-shadow:0 5px 9px 1px rgba(124,139,161,0.2);
	box-shadow:0 5px 9px 1px rgba(124,139,161,0.2);
	margin-top:20px;
	padding:0 25px;
	}
.faq_slide_row.last{ border-bottom:none;}
.accordion{
	float:left;
	width:100%;
	text-align:left;
	background:url(../images/close.png) no-repeat right 0 center;
	background-size:16px;
	padding:22px 20px 18px 0;
	position:relative;
	cursor:pointer;
	font-size:22px;
	line-height:28px;
	color:#000;
	font-weight:600;
	}
.acdn_heading.accordion_open{
	background:url(../images/open.png) no-repeat right 0 center;
	background-size:16px;
	padding-bottom:18px;
	border-bottom:none;
	}
.acdn_content{
	float:left;
	width:100%;
	text-align:left;
	padding:0 0 5px 0;
	}
.accordion.last, .acdn_content.last{border-bottom:none;}
.acdn_para{
	float: left;
	width: 100%;
	font-size: 17px;
	line-height: 26px;
	color: #000000;
	margin-bottom: 20px;
	font-weight: 400;
	}
@media only screen and (max-width: 1179px){
}
@media only screen and (max-width: 1013px){
.section_4{ padding:40px 0;}
}
@media only screen and (max-width: 767px){
.section_4{ overflow:hidden;padding:30px 0 35px;}
.faq_section{ margin:15px 0 5px;}
.faq_slide_row{ padding:0 15px; margin-top:15px;}
.accordion{ font-size:17px; line-height:22px; padding:19px 20px 15px 0; background-size:12px;}
.acdn_heading.accordion_open{ padding-bottom:15px;background-size:12px;}
.acdn_para{ font-size:16px; line-height:24px; letter-spacing:0; margin-bottom:15px;}
}
/*================SECTION 6===================*/
.sec6{
	padding:0 0 60px 0;   
	background: linear-gradient(90deg, #0c9fe8, #0c4464);
}
.s6bx{width:90%;margin:50px auto 0 auto;display:block;}
.s6bx1, .s6bx2, .s6bx3{
	float: left;
	display: inline-block;
	width: 48%;
	border-right: 1px solid #ffffff;
	padding: 0 20px;
}
.s6bx2{border-right:none;}
.s6bxhding{
	font-weight:500;
	font-size:26px;
	line-height:30px;
	color:#fff;
	text-align:center;
}
.s6bxtxt, .s6bxtxt2{
	    font-size: 18px;
    line-height: 28px;
    color: #fff;
    text-align: center;
    padding: 10px 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:7px 0 0 0;text-align:center;}
ul.slinklist li{
	display: inline-block;
	margin: 7px 0;
	width: 100%;
}
ul.slinklist li a{ color:#fff;}
/*================SECTION 7===================*/
.sec7{    
	padding: 20px 0;
    background: #333;}
.ftrlogo{margin:0 auto;display:block;}
ul.ftrlist{padding:0px 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: 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){
.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: 5px 0 0 0;}
ul.ftrlist li{padding:0 10px 0 6px; font-size: 16px;}
.ftrtxt1, .ftrtxt2{font-size:17px; padding:0;}
ul.ftrlist {padding: 0px 0 0 0;}

.s6bxhding{ font-size:20px; line-height:26px;}
.s6bxtxt, .s6bxtxt2{ font-size:14px; line-height:22px;}
ul.slinklist li{ width:auto; margin: 5px; font-size:14px;}
}
@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: #099de9;
	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: #099de9;
    border-top: 1px solid #ffffff;
}
#menu-container .menu-list li a {
	font-weight: 400;
    font-size: 16px;
    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: #099de9;
    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;
    }

}