@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Work+Sans:wght@300;400;500;600;700&display=swap');

:root{
  --ink:#201A14;
  --paper:#F3EBD8;
  --paper-soft:#EFE4CC;
  --rust:#8A3324;
  --rust-dark:#6E2619;
  --amber:#C4881B;
  --amber-light:#E0A83C;
  --clay:#B5654B;
  --text:#2B2318;
  --text-soft:#5C5142;
  --line: rgba(43,35,24,0.18);
  --white:#FBF7EE;

  --font-display:'Fraunces', serif;
  --font-body:'Work Sans', sans-serif;

  --maxw:1240px;
}
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width: 100%;
}

*{box-sizing:border-box;}

body {
  margin: 0;
  font-family:var(--font-body);
  color:var(--text);
  background:var(--paper);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
p, h1, h2, h3, h4, h5, ul {
	padding: 0;
	margin: 0;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none;}

h1, h2, h3, h4 {
  font-family:var(--font-display);
  font-weight:600;
  line-height:1.08;
  margin:0 0 .5em;
  color:var(--ink);
    text-transform: capitalize;
}
h1 { font-size: clamp(32px, 5.4vw, 36px);line-height: clamp(40px, 6.4vw, 75px); }
h2 { font-size: clamp(30px, 3.6vw, 36px);line-height: clamp(40px, 4.6vw, 46px); }
h3 { font-size: 1.1rem; }
p { margin: 0 0 1rem;color:var(--text-soft); font-size: clamp(15px, 3vw, 17px);line-height: clamp(25px, 4vw, 28px);letter-spacing: 0.02em;}


li {
	list-style: none;
}
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--brand); color: #fff; padding: .75rem 1rem; z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

.eyebrow {
  font-size: 13px;
    font-weight: 600;
    color: #8a3324;
    letter-spacing: .03em;
    margin-bottom: 10px;
}
section {
    float: left;
    width: 100%;
}
/*******************/
.clearall {
	clear: both;
	height: 1px;
	width: auto;
}

.container {
	/*width: 1172px;
	height: auto;
	margin: 0 auto;
	padding: 0;
	position:relative;*/
}
.container { width: 1170px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    position: relative;}
/* ---------- Buttons ---------- */
/* ===== Buttons ===== */
.btn{
  display: inline-block;
    margin-top: 30px;
    width: 220px;
    height: 55px;
    line-height: 53px;
    text-align: center;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: 2px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
    letter-spacing: .01em;
}
.btn-primary{
  background:var(--rust);
  color:var(--white);
}
.btn-primary:hover{background:var(--rust-dark); transform:translateY(-2px);}
.btn-amber{
  background:var(--amber);
  color:var(--ink);
}
.btn-amber:hover{background:var(--amber-light); transform:translateY(-2px);}
.btn-outline{
  background:transparent;
  border-color:currentColor;
  color:var(--white);
}
.btn-outline:hover{background:rgba(251,247,238,0.12); transform:translateY(-2px);}
.btn-outline-dark{
  background:transparent;
  border-color:var(--ink);
  color:var(--ink);
}
.btn-outline-dark:hover{background:var(--ink); color:var(--paper);}
.btn-block{width:100%;justify-content:center;}
.btn-sm{padding:10px 20px;font-size:13px;}

.for-mob {display: none;}
.forMob,.forTab{ display:none ;}
.hide-mob{ display:block;}

/* ---------- Header ---------- */
.site-header {
    position: relative;z-index: 999;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
    top: clamp(55px, 6vw, 76px);margin-top: clamp(-76px, -6vw, -55px);
    float: left;width: 100%;
}
.header-inner {
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  align-items: center; gap: 1rem;padding: 15px 0;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; min-width: 0; }
.brand-mark {
  width: 42px; height: 42px; flex: 0 0 auto; border-radius: 14px;
  display: grid; place-items: center; background: var(--brand); color: #fff;
  font-family: var(--font-display); font-size: 1.2rem;
}
.brand-text {
  font-family: var(--font-display); font-size: 1.15rem; line-height: 1.05;
  display: flex; flex-direction: column; min-width: 0;
}
.brand-text small {
  font-family: var(--font-body); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-soft); font-weight: 600;
}
.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a { text-decoration: none; font-weight: 600; font-size: .95rem; color: #2b2318; }
.nav a:hover { color: #8a3324; }
.nav a.btn {
	color: #201a14;
    width: auto;
    height: auto;
    line-height: inherit;
    margin: 0px 0 0;
    border: 1px solid #201a14;
}

.nav-toggle { display: none; }
.nav-burger { display: none; }
/*=========================
CSS FOR HEADER
===========================*/
.top-fix-bar {
    float: left;
    width: 100%;
   	margin-bottom:clamp(55px, 6vw, 76px);
}


.header {
	padding: 14px 0;
    float: left;
    width: 100%;
    top: 75px;
    background: #fff;
    position: relative;
    height: 75px;
    margin-top: -75px;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fixed-nav .site-header{
	position: fixed;
    z-index: 1000;
    top: 0;
    -webkit-transition: margin .3s ease-out;
    transition: margin .3s ease-out;
    margin-top: 0;
    -webkit-box-shadow: 0 2px 10px 5px rgba(0, 0, 0, .1);
    box-shadow: 0 2px 10px 5px rgba(0, 0, 0, .1);
	}
.logo {
	float: left;
    max-width: 140px;
}
ul.nav {
    float: right;
}
ul.nav li {
	float: left;
	margin-right: 70px;
}
ul.nav li:last-child {
	margin-right:0;
}
ul.nav li a {
	color: #000;
	font-size: 20px;
	line-height: 28px;
	font-family: 'Bree Serif', serif;
}
ul.nav li a:hover,ul.nav li .active {
	color: #000;
}
p.hdrlist {
	float: right;
	padding: 9px 0 0 30px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	position: relative;
	}
p.hdrlist a {
	color: #2d2d2d;
}
p.hdrlist img {
	position: absolute;
	top: 15px;
	left: 0;
}
ul.hdrlist li:last-child {
	padding: 0 0 0 13px;
	border-right: none;
}
#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: #1ebc6c;
	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: #d4841e;
    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 .active {
	background: #333;
	color: #fff;
}

/* ===== Hero ===== */
.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:flex-end;
  background-size:cover;
  background-position:center;
  color:var(--white);
  background: url(../images/hero-bg.jpg) no-repeat center top;
}
.hero-inner{position:relative;}
.hero-tag{
  display:inline-block;font-size:13px;font-weight:600;letter-spacing:.04em;
  padding:7px 14px;border:1px solid rgba(251,247,238,.55);border-radius:2px;margin-bottom:22px;
}
.hero h1{
  color:var(--white);
  font-size:clamp(40px,6vw,76px);
  max-width:14ch;
  margin-bottom:.28em;
}
.hero p.lead{
  color:rgba(251,247,238,.86);
  font-size:18px;max-width:48ch;margin-bottom:32px;
}
.hero-ctas{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:54px;}
.hero-stats{
  display:flex;gap:0;border-top:1px solid rgba(251,247,238,.3);padding-top:22px;flex-wrap:wrap;
}
.hero-stats div{padding-right:44px;margin-right:44px;border-right:1px solid rgba(251,247,238,.25);}
.hero-stats div:last-child{border-right:none;}
.hero-stats strong{display:block;font-family:var(--font-display);font-size:20px;color:var(--white);}
.hero-stats span{font-size:12.5px;color:rgba(251,247,238,.7);letter-spacing:.02em;}

/* ===== Page banner (inner pages) ===== */
.page-banner{
  position:relative;min-height:340px;display:flex;align-items:center;
  background-size:cover;background-position:center;color:var(--white);
}
.page-banner::before{content:"";position:absolute;inset:0;background:rgba(18,13,8,.62);}
.page-banner-inner{position:relative;max-width:var(--maxw);margin:0 auto;padding:0 32px;width:100%;}
.page-banner .crumb{font-size:13px;color:rgba(251,247,238,.75);margin-bottom:10px;}
.page-banner h1{color:var(--white);font-size:clamp(32px,5vw,52px);margin:0;}

/* ===== Section basics ===== */
section{padding:96px 0;}
.section-head{max-width:640px;margin-bottom:52px;}
.section-head h2{font-size:clamp(28px,3.6vw,42px);}
.eyebrow-panel{
  display:inline-flex;align-items:center;gap:10px;
  font-size:13px;font-weight:600;color:var(--rust);margin-bottom:14px;
}
.eyebrow-panel::before{content:"";width:22px;height:1.5px;background:var(--rust);}

/* ===== Introduction ===== */
.intro{background:var(--paper);}
.intro-grid{display:grid;grid-template-columns:0.9fr 1.1fr;gap:35px;align-items:center;}
.intro-media{position:relative;}
.intro-media img{border-radius:2px;width:100%;height:520px;object-fit:cover;}
.intro-media .float-card{
  position:absolute;left:-30px;bottom:-30px;background:var(--ink);color:var(--white);
  padding:22px 15px;max-width:230px;border-radius:2px;
}
.intro-media .float-card strong{display:block;font-family:var(--font-display);font-size:17px; margin-bottom:4px;color:var(--amber-light);}
.intro-media .float-card span{font-size:12.5px;color:rgba(251,247,238,.75);}
.intro-copy p{font-size:16.5px;}
.intro-list{margin-top:26px;border-top:1px solid var(--line);}
.intro-list li{
  display:flex;justify-content:space-between;gap:20px;padding:16px 0;
  border-bottom:1px solid var(--line);font-size:15px;
}
.intro-list li b{color:var(--ink);font-weight:600;}
.intro-list li span{color:var(--text-soft);text-align:right;}

@media (max-width:900px){
  .intro-grid{grid-template-columns:1fr;gap:20px;}
  .intro-media .float-card{position:static;margin-top:0px;max-width:none;}
}

/* ===== Why choose us (nutrition-panel styled rows) ===== */
.why{background:var(--ink);color:var(--paper);}
.why .section-head h2{color:var(--white);}
.why .section-head p{color:rgba(243,235,216,.7);}
.why .eyebrow-panel{color:var(--amber-light);}
.why .eyebrow-panel::before{background:var(--amber-light);}
.panel-list{border-top:2px solid rgba(243,235,216,.35);}
.panel-row{
  display:grid;grid-template-columns:70px 1fr 1.4fr;gap:28px;align-items:center;
  padding:30px 0;border-bottom:1px solid rgba(243,235,216,.18);
}
.panel-row .num{font-family:var(--font-display);font-size:20px;color:var(--amber-light);}
.panel-row h3{color:var(--white);font-size:21px;margin-bottom:8px;}
.panel-row p{color:rgba(243,235,216,.68);margin:0;max-width:56ch;}

@media (max-width:760px){
  .panel-row{grid-template-columns:1fr;gap:8px;}
}
/* ===== Strip / full-bleed banner ===== */
.strip{
  position:relative;min-height:420px;display:flex;align-items:center;justify-content:center;
  background-size:cover;background-position:center;text-align:center;
  background: url(../images/strip-bg.jpg) no-repeat center center;
}
.strip::before{content:"";position:absolute;inset:0;background: rgba(114, 35, 8, 0.8);}
.strip-inner{position:relative;max-width:680px;margin:0 auto;padding:0 24px;color:var(--white);}
.strip h2{color:var(--white);font-size:clamp(28px,4vw,44px);margin-bottom:14px;}
.strip p{color:rgba(251,247,238,.85);margin:0 auto 28px;}

/* ===== Testimonial / quote strip ===== */
.quote-strip{background:var(--rust);color:var(--white);text-align:center;}
.quote-strip blockquote{
  font-family:var(--font-display);font-size:clamp(22px,3vw,32px);font-weight:500;
  max-width:800px;margin:0 auto 18px;color:var(--white);
}
.quote-strip cite{font-style:normal;font-size:14px;color:rgba(251,247,238,.75);}
/* ---------- Product cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; margin-bottom: clamp(2rem, 4vw, 2rem);}
.card {
  background: var(--white);
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;overflow: hidden; display: flex; flex-direction: column;
  
}
.card:hover { transform:translateY(-5px);box-shadow:0 18px 34px rgba(32,26,20,.14);}
.card-featured {}
.card-visual {
  aspect-ratio: 4 / 3; display: grid; place-items: center;
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  color: #fff; letter-spacing: .04em;padding: 2rem;height: auto;
  border-bottom: 1px solid var(--line);
}
.card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.card-body p { }
.tag {
  align-self: flex-start;
    display: inline-block;
    color: #8a3324;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.card-foot {
	margin-top:15px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.card-foot .btn-sm, .bundle .btn-sm {
   width: auto;
    height: auto;
	margin:0;
    line-height: inherit;
}
#products .hero-actions {
    justify-content: center;margin-bottom: 0;
}
.price {font-family: var(--font-display);
    font-size: 19px;
    color: var(--ink);margin-right: 10px;}

.bundles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; margin-top: 1.4rem; }
.bundle {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  padding: clamp(20px, 4vw, 25px); display: grid; grid-template-columns: 1.6fr 1fr;
  align-items: center; gap: 1.2rem;
}
.bundle h3 { margin-bottom: .2rem; }
.bundle p,.bundle .tag {}
.bundle-buy { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.bundle-dark { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }
.bundle-dark p { color: rgba(255, 255, 255, .78); }
.bundle .tag {margin-bottom: 20px;}

/* ---------- Steps + CTA ---------- */


/* ---------- Footer ---------- */
.footer { background: #201a14; color: #fff; padding:60px 0; float: left;    width: 100%;}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 32px);
}
.footer h4 { margin-top:0; font-family: var(--font-body); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; }
.brand-footer { margin-bottom: 1rem; color: #fff; }
.brand-footer img {filter: brightness(0) invert(1);width: 110px;margin-bottom: 10px;}
.brand-footer .brand-text small { color: rgba(255, 255, 255, .6); }
.muted { color: rgba(243, 235, 216, .7); font-size: .92rem; }
.muted a { text-decoration: none; }
.muted a:hover { text-decoration: underline; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-links a { text-decoration: none; font-size: .92rem; color: rgba(243, 235, 216, .7); }
.footer-links a:hover { color:#e0a83c; }
.disclaimer {
  margin-top: clamp(28px, 4vw, 48px); padding-top: 1.8rem; border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .78rem; color: rgba(243, 235, 216, .7); line-height: 1.7;
}
.footer p {
    font-size: clamp(13px, 3vw, 15px);
    line-height: clamp(22px, 4vw, 25px);
	color: rgba(243, 235, 216, .7);
	font-weight:300;
	margin:0;
}
.copy { margin: 0; }


/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1;        width: 100%;margin: 0;        height: 330px; }
  .cards, .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-media img { aspect-ratio: 16 / 11; }

  .nav-burger {
    display: grid; place-items: center; width: 44px; height: 44px;
    border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
  }
  .nav-burger span, .nav-burger span::before, .nav-burger span::after {
    content: ""; display: block; width: 20px; height: 2px;
    background: var(--ink); border-radius: 2px; position: relative;
  }
  .nav-burger span::before { position: absolute; top: -6px; }
  .nav-burger span::after { position: absolute; top: 6px; }
  .nav {
    grid-column: 1 / -1; display: none; flex-direction: column;
    align-items: flex-start; gap: 1rem; padding: 1rem 0 .4rem;
    border-top: 1px solid var(--line); margin-top: .8rem;
  }
  .nav-toggle:checked ~ .nav { display: flex; }
    
    .feature-list{grid-template-columns: 1fr;}
}

@media (max-width: 640px) {
  body { font-size: 16px; }
    
    .strip .container {
    animation-play-state: running;
}
    
    .card-visual{aspect-ratio: auto;}
    .bundle-buy{order:-1;}
    
  .cards, .steps, .bundles, .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: .8rem; text-align: left; }
  .bundle { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-badge { position: static; transform: none; display: inline-block; margin-top: 1rem; }
  .strip { gap: .7rem; font-size: .72rem; min-height:auto; }
  .strip-inner { padding:0 10px;}
  .strip p {margin: 0 auto 0px;}
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
/*=============================================================*/
/*SECTION 1*/
.section-1{
	float:left;
	width:100%;
	height:644px;
	background:url(../images/banner-bg.jpg) no-repeat center top;
	}
.sectio_one_left{
	float: left;
    width: 49%;
    text-align: left;
    margin-top: 90px;
	}
.s1-subheading{
	color: #020202;
    font-size: 35px;
    line-height: 45px;
    font-family: 'Acme', sans-serif;
    display: inline-block;
    width: 100%;
    text-transform: capitalize;
	}
.s1-subheading span{
	display: block;
    color: #63d3ef;
    font-size: 53px;
    line-height: 62px;
    margin: 5px 0 0 0;
}
.s1-heading{
	color:#020202;
	font-size:66px;
	line-height:70px;
	margin-top:5px;
	color:#63d3ef;
	font-family: 'Montserrat', sans-serif;
	}
.s1-striptext{
	    color: #373737;
    font-size: 28px;
    line-height: 30px;
    font-weight: 800;
    margin-top: 27px;
    display: inline-block;
    width: 100%;
    text-transform: capitalize;
	}
.s1-para{
	color: #373737;
    font-size: 18px;
    line-height: 28px;
    margin-top:18px;
    float: left;
    width: 100%;
	}
.pg_btn{
	display: inline-block;
    vertical-align: middle;
    margin-top: 25px;
    width: 250px;
    height: 60px;
    line-height: 58px;
    background: #fbe203;
    border-radius: 15px;
    text-align: center;
    color: #000;
    font-size: 24px;
    font-family: 'Acme', sans-serif;
    text-transform: capitalize;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s;
	}
.s1-prod{
	position: absolute;
    right: 425px;
    top: 300px;
	}
	
/*------------------
SECTION 2
-------------------*/
.section_2{
	float:left;
	width:100%;
	background:#fff;
	padding:65px 0 100px;
	}
.s1-right{
	float:right;
	width:50%;
	text-align:left;
	}
.section_heading{
	color: #000;
    font-size: 28px;
    line-height: 44px;
    font-weight: 700;
    display: inline-block;
    width: 100%;
	text-transform:	capitalize;
	}
.section_heading span{
	display: block;
    font-family: 'Acme', sans-serif;
    font-size: 55px;
    line-height: 65px;
    font-weight: 400;
    color: #63d3ef;
}
.section-para{
	color: #010101;
    font-size: 18px;
    line-height: 28px;
    margin-top: 20px;
    display: inline-block;
    width: 100%;
	}
.s2-prod{
	position: absolute;
    left: 0;
    top: 0;
	}
.s2-list{
	float: left;
    width: 100%;
    margin-top: 70px;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
	}
.s2-list li{
	float: left;
    width: 19%;
    color: #333;
    font-size: 18px;
    line-height: 26px;
	}
.s2-list li:nth-child(odd) {  margin-top: 40px;}

.s2-list li img{display:block;	margin: 0px auto 15px;	max-width: 100px;}
.s2-list li span{
	display: block;
	margin-bottom: 5px;
	font-family: 'Acme', sans-serif;
	font-size: 24px;
	line-height: 32px;
	color: #333;
}
/*SECTION 3*/
.section-3{
	float:left;
	width:100%;
	padding-bottom:70px;
	background:url(../images/gray-bg.jpg) no-repeat center top;
	background-size:cover;
	}
.s3-heading{
	display:inline-block;
	vertical-align:middle;
	color:#000;
	font-size:45px;
	line-height:82px;
	font-weight:800;
	background:url(../images/bs-bg.png) no-repeat center center;
	width:817px;
	height:86px;
	font-family: 'Acme', sans-serif;
	margin-top:-44px;
	}
.package-container{
	float: left;
	width: 100%;
	padding: 0 70px;
	margin-top: 40px;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 20px;
	}
.package{
	width: 32%;
    padding: 20px 20px 30px;
    border: 1px solid #c9c7c3;
    background: #fff;
    float: left;
	}
.bndl{ width:49%;}
.prod-divin-sec2 img{ max-width:240px;}
.package-prod{
	color: #020202;
    font-size: 22px;
    text-transform: uppercase;
    line-height: 30px;
    font-weight: 700;
    display: inline-block;
    width: 100%;
	}
.package-prod span {
    display: block;
    font-family: 'Acme', sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    text-transform: capitalize;
}
.package-price{
	color: #fe2400;
    font-size: 30px;
    line-height: 40px;
    font-weight: 800;
    margin-top: 10px;
    display: inline-block;
    width: 100%;
}
.prod-sec2 {
    display: inline-block;
    max-width: 210px;
    width: 100%;
}
	
.package .pg_btn{max-width:100%;}


/*SECTION 4*/
.section-4{
	float:left;
	width:100%;
	padding:60px 0 60px;
	}
.s4-right{
	float: right;
    width: 46%;
    padding: 44px 0;
    text-align: left;
    position: relative;
    z-index: 1;
	}
.s4-prod{
	position: absolute;
    left: 0;
    top: 0;
	}
ul.s4-list{
	margin-top:40px;
	}
ul.s4-list li{
	width:100%;
	background:#ccf1fa;
	padding:10px 20px;
	border-radius:10px;
	font-size:18px;
	line-height:26px;
	font-weight:bold;
	}
ul.s4_bottom{
	float: left;
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: 70px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 10px;
	}
ul.s4_bottom li{
	float: left;
	width: 31%;
	text-align: left;
	position: relative;
	padding-left: 100px;
	color: #000;
	font-size: 18px;
	line-height: 28px;
	}
ul.s4_bottom li img{
	position:absolute;
	left:0;
	top:0;
	}
ul.s4_bottom li p{
	
	}
ul.s4_bottom li span{
	display: block;
    font-family: 'Acme', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
	margin-bottom:4px;
	}
/*================FOOTER===================*/
/*footer {
	background: #ffffff;
    padding: 20px 0;
    float: left;
    width: 100%;
    border-top: 4px double #63d3ef;
	text-align:center;
}
.ftr-logo {
	margin: 0 auto;
	display: block;
	max-width: 230px;
}
.ftr-cont-info{
	display: inline-block;
    width: 32%;
    text-align: center;
    margin-top: 30px;
}
.ftr-cont-info li, .ftr-cop-info li{
	display: inline-block;
	vertical-align: top;
	font-size: 18px;
	font-weight: 400;
	position: relative;
	padding: 2px 0;
	width: 100%;
}
.ftr-cont-info li a{ color:#2d2d2d;}
.ftr-cont-info li img{
	position:absolute;
	top:6px;
	left: auto;
	margin-left: -20px;
	}
.ftr-cont-info li span, .ftr-cop-info span, ul.ftrlist li span{ text-transform:uppercase; font-weight:600;}
.ftr-cont-info li:nth-child(2):after{
	content: '';
    position: absolute;
    border-right: 1px solid #e1e1e1;
    top: 0px;
    right: 8px;
    height: 24px;
	}
.ftr-cop-info{
	display: inline-block;
	width: 70%;
	margin-top: 10px;
	}
.ftr-cop-info li span, ul.ftrlist li span{
	font-size:18px;
	display:block;
	float:left;
	width:100%;
	}
.ftr-cop-info li{
	float: left;
	width: 100%;
	line-height: 29px;
	}
ul.ftrlist {
	display: inline-block;
	width: 100%;
	margin: 10px 0px 20px;
}
ul.ftrlist li {
	display: inline-block;
	padding: 0 14px 0 12px;
	border-right: 1px solid #e1e1e1;
	font-weight: 400;
	font-size: 18px;
	line-height: 27px;
	text-align: center;
	vertical-align: top;
}
ul.ftrlist li:first-child {
    width: 100%;
	border-right: none;
}
ul.ftrlist li:last-child {
	border-right: none;
}
ul.ftrlist li a {
	color: #464646;
}
.ftrtxt {
	text-align: center;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #63d3ef;
    padding: 8px 0 0 0;
}
.disclmr{
	    float: left;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    
    color: #333;
	margin-top:10px;
}
.disclmr a{
	text-decoration:underline;
	color:#333;
	}
.ftr-rgt {
    float: right;
    width: 100%;
}*/


/*****************************/
/*TERMS- PRIVACY*/

.tems_bg {
	float: left;
	width: 100%;
	padding: 40px 0;
}
.trm-bx {
	width: 100%;
	float: left;
	text-align: left;
}
.trm-bx h1 {
	line-height: 30px;
    color: var(--ink-soft);
    margin: 0;
    padding: 0px 0 10px;
    font-size: 22px;
    float: left;
    width: 100%;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--brand-dark);

}
.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 img {
    display: block;
    margin: 10px 0;
    max-width: 650px;
	}
.trm-bx li {
	font-size: clamp(14px, 3vw, 16px);
    line-height: clamp(24px, 4vw, 26px);
    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: clamp(14px, 3vw, 16px);
    line-height: clamp(24px, 4vw, 26px);
    float: left;
    width: 100%;
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--ink-soft);
}
.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;
}
/********************************/
.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;
	background: rgba(0, 0, 0, 0.7);
}
.pop-up-bg-in {
	position: fixed;
    bottom: 0px;
    padding: 0px;
    margin: 0px;
    border: 0px;
    background: rgba(0,0,0,0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    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:#c4881b;
    appearance: none;
    transition: left 1s ease 0s;
    display: inline-block;
    padding: 10px 20px;
    line-height: 16px;
    border-radius: 5px;
    border: none;
}
.pop-innr p{ color:#fff;
font-size:16px; font-weight:300;}
.no-btn {
    background:#8a3324;
}
.yes-btn {
	
}
.card-error {
    max-width: 250px;
    margin-bottom: 20px;
    display: inline-block;
}		