@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: 'Montserrat', 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;
	padding:0;
	position:relative;
	}
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:18px;
	line-height:28px;
}
/*===============================
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:33px;
	line-height:40px;	
}
.bdfont{line-height:24px;}
}
@media only screen and (max-width: 359px){
.bdsubhding{
	font-size:30px;
	line-height:38px;
}
}
/*=========================
CSS FOR HEADER
===========================*/
.topbar{
	background:#1668ac;
	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: 70px;}
.header{		
	height: 70px;
    margin-top: -70px;
    position: relative;
    top: 70px;
    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:70px;
}
.logo{
	float: left;
	margin: 3px 0 0 0;
	max-width: 180px;
}
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:#1668ac;
	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:#1668ac;
	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:#1668ac;}
@media only screen and (max-width: 1021px){
.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{    
    margin: 4px 0 0 0;
    position: inherit;
    left: auto;
    right: auto;
    top: auto;
    float: left;
	max-width:128px;}

ul.nav li{display:none;}
.cart-link{position:absolute;right: 40px; top: -3px;}
}
@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 {
        float: left;
    width: 100%;
    background: url(../images/banner.jpg) no-repeat center top;
    padding: 65px 0;
    height: 580px;
	
}
.bnr-rit {
	float: right;
	width: 650px;
	text-align: center;
	margin-top: 48px;
}
.bnr-p1 {
	float: left;
	width: 100%;
	color: #a4b33d;
	font-size: 26px;
	line-height: 34px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 5px;
}
.bnr-p2 {
    float: left;
    width: 100%;
    color: #131413;
    font-size: 64px;
    line-height: 74px;
    font-weight: 700;
    text-transform: capitalize;
}
.bnr-hr {
	float: left;
	width: 100%;
	margin: 15px 0%;
	height: 1px;
	background: #e5e5e5;
	border: none;
}
.bnr-p3 {
    display: inline-block;
    width: 92%;
    color: #484848;
    font-size: 18px;
    line-height: 30px;
}
.bnr-btl {
    max-width: 560px;
    display: inline-block;
	margin-top:20px;
}
.bnr-btl1 {
    left: 260px;
    top: 125px;
    max-width: 220px;
}
.bnr-ul {
    display: inline-block;
    width: 100%;
    margin: 15px 0 35px;
}
.bnr-ul li {
    float: left;
    width: 32.3%;
    font-size: 18px;
    line-height: 20px;
    color: #282828;
    text-transform: uppercase;
    padding: 0 20px;
    font-weight: 700;
}
.bnr-ul li img {
    max-width: 100%;
}
.bnr-ul li p {
    float: left;
    width: 100%;
    margin-top: 8px;
    line-height: 26px;
}
.bnr-ul li:nth-child(2) {
    margin: 0 1.5%;
    background: url(../images/bnr-ul-line.jpg) no-repeat left center, url(../images/bnr-ul-line.jpg) no-repeat right center;
}
.show-btn {
    display: inline-block;
    max-width: 100%;
}
/*================BANNER STRIP===================*/
.strip {
    float: left;
    width: 100%;
    border-top: 1px solid #d5e3d8;
    border-bottom: 1px solid #d5e3d8;
    padding: 25px 0;
	
}
.strip-ul {
        float: left;
    width: 100%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 10px;
}
.strip-ul li {
	    float: left;
    font-size: 16px;
    line-height: 26px;
    width: 23%;
}
.strip li img {
    max-width: 100%;
}
.strip li p {
    color: #585858;
}
.strip li p span {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: -1px;
}
/*================SECTION 1===================*/
.section-1 {
	float: left;
	width: 100%;
	padding: 60px 0;
	text-align: center;
	
}
.sec1-p1 {
        float: left;
    width: 100%;
    color: #a4b33d;
    font-size: 38px;
    line-height: 38px;
    font-weight: 700;
    text-transform: capitalize;
}
.sec-line {
    display: inline-block;
    max-width: 100%;
    margin: 8px 0;
}
.sec1-p2 {
	float: left;
	width: 100%;
	color: #3d3d3d;
	font-size: 18px;
	line-height: 30px;
	padding-bottom: 0px;
	margin-top: 10px;
}
.sec1-ul {
	float: left;
    width: 100%;
    padding: 20px 0px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sec1-ul li {
	width: 32%;
    border: 1px solid #ccdbdf;
    display: inline-block;
    margin: 0px 0px;
    padding: 20px 10px;
}
.sec1-ul li .sec1-p2{ 
	margin-top:0;
	line-height:28px;
	}
.sec1-li-img1 {
    max-width: 100%;
    display: inline-block;
}
.sec1-p3 {
	float: left;
	width: 100%;
	color: #000000;
	font-size: 22px;
	line-height: 30px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 20px 5px 10px;
}
.sec1-ul-2 {
    float: left;
    width: 100%;
    padding: 40px 0px;
    text-align: center;
    display: flex;
    justify-content: center;
	flex-wrap: wrap;
}
.sec1-ul-2 li {
    width: 15%;
	display:inline-block;
}
.icon1 {
    display: inline-block;
    max-width: 100%;
}
/*************************/
.orng-btl {
	float: left;
	width: 100%;
	background: #bbd6e7 url(../images/orng-btl-bg.jpg) no-repeat right top;
	padding: 37px 35px;
	text-align: left;
	position:relative;
	overflow: hidden;
}
.orng-btl1, .orng-btl2 {
    position: absolute;
    top: 0;
    right: 380px;
    max-width: 110px;
    transform: rotate(-30deg);
}
.orng-btl2 {
    right: 30px;
    max-width: 160px;
    top: 0px;
}
.orng-p1 {
	float: left;
	width: 100%;
	color: #000;
	font-size: 28px;
	line-height: 30px;
	font-weight: 700;
	text-transform: uppercase;
}
.orng-btl-lft {
	float: left;
	width: 54%;
	text-align: left;
}
.orng-p2 {
	float: left;
    width: 100%;
    color: #353535;
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    margin: 15px 0 0px;
}
.show-btn {
   outline: none;
    font-size: 20px;
    line-height: 60px;
    color: #ffffff;
    padding: 0 20px;
    margin-top: 30px;
    display: inline-block;
    text-align: center;
    background: linear-gradient(180deg, #90d519, #0f3f04);
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    border-radius: 5px;
    width: 300px;
    height: 60px;
}
/*================SECTION 2===================*/
.sec2 {
    padding: 60px 0;
    text-align: center;
    float: left;
    width: 100%;
    background: #f8f9fb;
	
}
.prod-box {
    float: left;
    width: 100%;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 15px;
    row-gap: 20px;
}
.prod-box li {
	width: 32%;
    float: left;
    position: relative;
    margin-bottom: 20px;
}
.s4l1-img {
    display: block;
    margin: 0 auto 10px;
    position: relative;
    z-index: 9;
}
.s4l1-img:nth-child(2), .s4l1-img:nth-child(3), .s4l1-img:nth-child(4),.s4l1-img:nth-child(5){
	position: absolute;
    z-index: 5;
    left: 15%;
    top: 10px;
    max-width: 130px;
}
.s4l1-img:nth-child(3){
	left:auto;
	right: 15%;
}
.s4l1-img:nth-child(4),.s4l1-img:nth-child(5){
	z-index: 0;
    left: 5%;
    top: 20px;
    max-width: 120px;
}
.s4l1-img:nth-child(5){
	left: auto;
    right: 5%;
}
.s2prd1, .s2prd_bndl {
    position: absolute;
    max-width: 250px;
    left: 50%;
    top: 0px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.prd-detls {
    width: 100%;
    float: left;
    background: #a4b33d;
    padding: 10px 0;
}
.s2prd-hding {
	font-size: 19px;
    line-height: 30px;
    padding: 0px 10px 0;
    float: left;
    width: 100%;
    color: #fff;
    font-weight: 600;
}
.s2prd-hding span {
	display: block;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
}
.s2prd-prc, .s2prd-prc2 {
	float: left;
    width: 100%;
    color: #6a6a6a;
    font-size: 26px;
    line-height: 34px;
    font-weight: 700;
    text-transform: capitalize;
    padding: 20px 5px 10px;
}
.s2-prod-top{
	float: left;
    width: 100%;
    padding: 0px 0 0;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
	}	
.size-text{
	float: left;
    width: 100%;
    font-size: 16px;
    line-height: 26px;
    color: #050505;
    font-weight: 600;
    margin: 10px 0;
    /* letter-spacing: 1px; */
    text-transform: capitalize;
	}
.packages {
    float: left;
    width: 100%;
    min-height: 343px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    column-gap: 10px;
	row-gap:5px;
}	
.pck-bx{
	    float: left;
    width: 100%;
    padding: 10px 10px;
    border: 2px solid #c5c5c5;
    border-radius: 6px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
	}	
.pck-bx:hover{}
.pck-bx.active {
   border:2px solid #a4b33d;
}	
.pck-bx input[type=radio] {
    position: absolute;
    opacity: 0;
}
.inputchk {
    position: absolute;
    left: 0;
    top: 0;
}
.pck-bx .retail-prc{
	loat: right;
    text-align: right;
    font-size: 20px;
    font-weight: 700;
	}				
.s2-prod-rev{
	float: left;
    font-size:16px;
    line-height:18px;
    color: #050505;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 0px;
	}
.s2-prod-rev span{
	display:block;
	font-weight:400;}	
.s2-prod-rev img{
	display:inline-block;
	vertical-align:middle;
	margin:-5px 4px 0 0;
	}	
.prch-opt {
    float: left;
    width: 100%;
    border: 1px solid #ffffff;
    /* border-bottom: 1px solid #ffffff; */
    padding: 10px 10px;
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: #a7070b;
    box-shadow: 0 0 5px #666666;
    border-radius: 10px;
}


.prod-box li:nth-child(5), .prod-box li:nth-child(6), .prod-box li:nth-child(7), .prod-box li:nth-child(8){margin-bottom:0;}
a.s2btn1, a.s2btn2 {
    
}
/*================start section5===================*/
.lowerpart{ background: #1668ac;  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:#1668ac;}
.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:230px;}
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: 16px;
	line-height: 28px;
	color: #fff;
}
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:16px;
	line-height:18px;
	text-align:center;
	color:#313131;
}
.ftrtxt1 a{color:#313131;}
.ftrtxt2{	
	font-size: 16px;
    line-height: 22px;
    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;
}
p.ftrtxt2.dicclmr a{ color:#000; text-decoration:underline;}
@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;}
.ftrtxt1, .ftrtxt2{font-size:14px;}
ul.ftrlist {padding: 12px 0 0 0;}
p.ftrtxt2.dicclmr{ line-height:24px;}
}
@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;}
}
/*=========================================
			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{ max-width:240px; 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: inherit;
    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: 40px 0;
}
.trm-bx {
	background: #fff;
	width: 100%;
	float: left;
	text-align: left;
}
.trm-bx h1 {
	    line-height: 30px;
    color: #2668a8;
    margin: 0;
    padding: 0px 0 10px;
    font-size: 22px;
    float: left;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 5px solid #2668a8;
}
.trm-bx h3 {
	line-height: 28px;
	text-align: left;
	font-size: 24px;
	float: left;
	width: 100%;
	margin: 0px 0 15px;
	color: #000;
	font-weight: 600;
}
.trm-bx li {
	font-size: 16px;
    line-height: 24px;
    float: left;
    width: 100%;
    list-style: decimal;
}
.trm-bx ol li {
    list-style: lower-roman;
}
.trm-bx li ol li {
    list-style: lower-alpha;
}
.trm-bx strong {
	text-transform: capitalize;
}
.trm-bx span {
	text-transform: capitalize;
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}
.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: 0px 0 10px;
    font-weight: 500;
    line-height: 30px;
}
.ingr-lst h4 {
    text-align: center;
}
.ingr-lst img {
    display: block;
    margin: 0 auto 20px;
    max-width: 530px;
    width: 100%;
}
.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, .trm-bx ul {
	margin-bottom: 20px;
    float: left;
    width: 100%;
    font-weight: 400;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
}
.trm-bx .disclmr {
	width: 100% !important;
}
.trm-bx table {
    float: left;
    width: 100%;
    border-collapse: collapse;
}
.trm-bx table td, .trm-bx table th {
    padding: 14px;
    border: 1px solid #ccc;
}

@media only screen and (max-width: 767px){
	.tems_bg {    padding: 10px 0;}
	}

/********************************/
.age-pop-overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0
}
.pop-up-bg {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0px;
	top: 0px;
	margin: 0px;
	padding: 0px;
	z-index: 9999600;
	border: 0px;
	opacity: 0.5;
	background: #000;
}
.pop-up-bg-in {
	position: fixed;
    bottom: 0px;
    padding: 0px;
    margin: 0px;
    border: 0px;
    background: #a4b33d;
    transition: left 1s ease 0s;
    z-index: 10000010;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    justify-content: center;
}
.pop-up-left {
	width: 100% ;
	height: 100% ;
	position: fixed ;
	left: 0px ;
	top: 0px ;
	border: 0px;
	background-color: rgb(0, 0, 0) ;
	display: none ;
	opacity: 0.8 ;
	z-index: 10000001 ;
}
.pop-up-left-txt {
	font-size: 16px;
    box-sizing: initial;
    overflow-wrap: break-word;
    transition: left 1s ease 0s;
    display: flex;
    text-align: left;
    padding: 20px;
    line-height: 24px;
    color: #fff;
    float: left;
    width: 100%;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
	flex-wrap: wrap;
}
.pop-innr {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 200px);
}
.pop-btn {
    display: inline-block;
    vertical-align: middle;
    width: 200px;
}
.pop-up-left-txt span{
	font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
	}
.pop-up-left-txt a{ text-decoration:underline;     display: inline-block; color: #fff}
.yes-btn, .no-btn {
    cursor: pointer;
    margin-top: 10px;
    height: 40px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    font-weight: 700;
    outline: none;
    box-shadow: none;
    background: #ef7b3f;
    appearance: none;
    transition: left 1s ease 0s;
    display: inline-block;
    padding: 10px 20px;
    line-height: 16px;
    border-radius: 5px;
    border: none;
}
.no-btn {
    background: #ff4747;
}
.yes-btn {
	
}












