@charset "utf-8";
/* CSS Document */

  :root{
    --forest:#0f3d24;
    --forest-deep:#0a2e1a;
    --forest-light:#1e5c37;
    --gold:#d9ae4e;
    --gold-light:#f0d698;
    --cream:#faf7ee;
    --text-dark:#1c2b22;
    --text-muted:#5b6b60;
  }

  *{box-sizing:border-box;}

  body{
    font-family:'Poppins', sans-serif;
    color:var(--text-dark);
    background:var(--cream);
    overflow-x:hidden;
  }

  h1,h2,h3,h4,.display-font{
    font-family:'Playfair Display', serif;
  }

  a{text-decoration:none;}

  .section-eyebrow{
    color:var(--gold);
    font-weight:700;
    letter-spacing:2px;
    font-size:.85rem;
    text-transform:uppercase;
  }
  .section-eyebrow::after{
    content:"";
    display:inline-block;
    width:36px;
    height:2px;
    background:var(--gold);
    margin-left:10px;
    vertical-align:middle;
  }
  .section-title{
    font-weight:800;
    color:var(--forest-deep);
  }

  /* ===== Top bar ===== */
  .topbar{
    background:var(--forest-deep);
    color:#dfe8e2;
    font-size:.82rem;
    padding:6px 0;
  }
  .topbar a{color:#dfe8e2;}
  .topbar a:hover{color:var(--gold-light);}

  /* ===== Navbar ===== */
  .main-nav{
    background:#fff;
    padding:14px 0;
    box-shadow:0 2px 12px rgba(0,0,0,.05);
  }
  .brand-mark{
    width:46px;height:46px;
    border-radius:50%;
    background:radial-gradient(circle at 30% 30%, var(--forest-light), var(--forest-deep));
    display:flex;align-items:center;justify-content:center;
    color:var(--gold-light);
    font-size:1.4rem;
  }
  .brand-text{
    font-family:'Playfair Display',serif;
    font-weight:800;
    color:var(--forest-deep);
    line-height:1;
    font-size:1.35rem;
    letter-spacing:.5px;
  }
  .brand-sub{
    font-size:.62rem;
    letter-spacing:3px;
    color:var(--gold);
    font-weight:600;
  }
  .main-nav .nav-link{
    color:var(--text-dark);
    font-weight:600;
    font-size:.92rem;
    margin:0 10px;
    position:relative;
  }
  .main-nav .nav-link.active{color:var(--forest-light);}
  .main-nav .nav-link.active::after{
    content:"";
    position:absolute;left:0;bottom:-4px;
    width:100%;height:2px;background:var(--gold);
  }
  .btn-forest{
    background:var(--forest-deep);
    color:#fff;
    font-weight:600;
    padding:10px 24px;
    border-radius:6px;
    border:2px solid var(--forest-deep);
    transition:.25s;
  }
  .btn-forest:hover{background:transparent;color:var(--forest-deep);}
  .btn-outline-forest{
    background:transparent;
    color:var(--forest-deep);
    font-weight:600;
    padding:9px 24px;
    border-radius:6px;
    border:2px solid var(--forest-deep);
    transition:.25s;
  }
  .btn-outline-forest:hover{background:var(--forest-deep);color:#fff;}
  .btn-gold{
    background:var(--gold);
    color:var(--forest-deep);
    font-weight:700;
    padding:10px 24px;
    border-radius:6px;
    border:2px solid var(--gold);
    transition:.25s;
  }
  .btn-gold:hover{background:transparent;color:var(--gold);}

  /* ===== Hero Carousel ===== */
  .hero-slide{
    position:relative;
    min-height:640px;
    display:flex;
    align-items:center;
    overflow:hidden;
  }
  .hero-slide::before{
    content:"";
    position:absolute;inset:0;
    background:
      radial-gradient(circle at 82% 30%, rgba(217,174,78,.16), transparent 45%),
      linear-gradient(120deg, #fbf8ef 0%, #f4efe0 55%, #eee6cf 100%);
    z-index:0;
  }
  .hero-leaf{
    position:absolute;
    color:rgba(30,92,55,.12);
    font-size:5rem;
    z-index:0;
  }
  .hero-content{position:relative;z-index:2;}
  .hero-badge{
    display:inline-block;
    background:var(--gold);
    color:var(--forest-deep);
    font-weight:700;
    padding:7px 18px;
    border-radius:4px;
    margin:10px 0 18px;
  }
  .hero-kicker{
    font-family:'Playfair Display',serif;
    font-style:italic;
    color:var(--forest-light);
    font-size:1.4rem;
  }
  .hero-title{
    font-size:2.7rem;
    font-weight:800;
    color:var(--forest-deep);
    line-height:1.15;
  }
  .hero-title .accent{color:var(--forest-light);}
  .hero-visual{
    position:relative;
    z-index:1;
    height:460px;
    display:flex;align-items:center;justify-content:center;
  }
  .hero-ring{
    position:absolute;
    width:340px;height:340px;
    border-radius:50%;
    border:3px solid var(--gold);
    opacity:.55;
  }
  .bottle{
    position:relative;
    width:120px;height:280px;
    background:linear-gradient(180deg,#fff, #f1f1f1);
    border-radius:14px 14px 20px 20px;
    box-shadow:0 25px 45px rgba(15,61,36,.25);
    display:flex;flex-direction:column;align-items:center;
    z-index:3;
  }
  .bottle-cap{
    width:60px;height:34px;
    background:var(--forest-light);
    border-radius:6px 6px 0 0;
    margin-top:-20px;
  }
  .bottle-label{
    margin-top:26px;
    width:92px;height:150px;
    background:#fff;
    border:2px solid var(--forest-light);
    border-radius:6px;
    display:flex;flex-direction:column;align-items:center;justify-content:center;
    text-align:center;
    font-size:.62rem;
    font-weight:700;
    color:var(--forest-deep);
    padding:6px;
  }
  .bottle-label i{color:var(--forest-light);font-size:1.2rem;margin-bottom:4px;}
  .natural-tag{
    position:absolute;
    bottom:30px; right:calc(50% - 190px);
    width:82px;height:82px;
    border-radius:50%;
    background:var(--gold);
    color:var(--forest-deep);
    display:flex;flex-direction:column;align-items:center;justify-content:center;
    font-weight:800;font-size:.75rem;text-align:center;
    box-shadow:0 10px 22px rgba(0,0,0,.2);
    z-index:4;
  }
  .family-icon{
    position:absolute;
    right:0; top:10%;
    width:210px;height:340px;
    border-radius:110px 110px 20px 20px;
    background:linear-gradient(160deg, var(--forest-light), var(--forest-deep));
    display:flex;align-items:flex-end;justify-content:center;
    color:var(--gold-light);
    font-size:5rem;
    z-index:2;
    opacity:.9;
  }

  .carousel-indicators [data-bs-target]{
    background-color:var(--forest-deep);
    width:10px;height:10px;border-radius:50%;
  }
  .carousel-control-prev-icon, .carousel-control-next-icon{
    filter:invert(30%) sepia(40%) saturate(600%) hue-rotate(85deg);
    background-color:rgba(255,255,255,.7);
    border-radius:50%;
    padding:18px;
  }

  /* ===== Features strip ===== */
  .features-strip{
    background:var(--forest-deep);
    margin-top:-40px;
    position:relative;
    z-index:5;
    border-radius:14px;
    max-width:1200px;
  }
  .feature-item{
    color:#fff;
    padding:26px 10px;
    display:flex;align-items:center;gap:14px;
    border-right:1px solid rgba(255,255,255,.12);
  }
  .feature-item:last-child{border-right:none;}
  .feature-icon-circle{
    width:46px;height:46px;min-width:46px;
    border-radius:50%;
    border:1.5px solid var(--gold);
    display:flex;align-items:center;justify-content:center;
    color:var(--gold);
    font-size:1.2rem;
  }
  .feature-item span{font-weight:600;font-size:.9rem;}

  /* ===== About ===== */
  .about-visual{
    position:relative;
    height:380px;
  }
  .about-tree-frame{
    width:88%;height:100%;
    margin:0 auto;
    border-radius:50% 50% 20px 20px / 60% 60% 20px 20px;
    background:linear-gradient(180deg,#fdf6df, #e9dcae);
    display:flex;align-items:center;justify-content:center;
    overflow:hidden;
    border:6px solid #fff;
    box-shadow:0 20px 40px rgba(0,0,0,.1);
  }
  .about-tree-frame i{font-size:9rem;color:var(--forest-light);}
  .about-quote-card{
    position:absolute;
    bottom:-14px; right:-10px;
    background:var(--forest-deep);
    color:var(--gold-light);
    padding:22px 26px;
    border-radius:10px;
    max-width:230px;
    font-family:'Playfair Display',serif;
    font-size:1.2rem;
    font-weight:700;
    box-shadow:0 15px 30px rgba(0,0,0,.2);
  }
  .about-quote-card i{color:var(--gold);font-size:1.5rem;}
  .vision-mission .vm-icon{
    width:44px;height:44px;min-width:44px;
    border-radius:50%;
    background:var(--cream);
    border:1.5px solid var(--gold);
    color:var(--forest-light);
    display:flex;align-items:center;justify-content:center;
  }

  /* ===== Product section ===== */
  .product-section{
    background:radial-gradient(circle at 20% 20%, var(--forest-light), var(--forest-deep) 60%);
    color:#fff;
  }
  .product-bottle-wrap{
    display:flex;align-items:center;justify-content:center;
    height:340px;
  }
  .product-benefit i{
    color:var(--gold);
    font-size:1.7rem;
    margin-bottom:10px;
  }
  .product-benefit{text-align:center;}
  .product-benefit p{font-size:.85rem;font-weight:600;margin:0;}

  /* ===== Business opportunity ===== */
  .price-card{
    background:var(--forest-deep);
    color:#fff;
    border-radius:14px;
    padding:34px 20px;
    text-align:center;
  }
  .price-card .price{
    font-size:2.2rem;font-weight:800;color:var(--gold-light);
  }
  .step-circle{
    width:64px;height:64px;
    border-radius:50%;
    border:2px solid var(--forest-light);
    display:flex;align-items:center;justify-content:center;
    font-size:1.5rem;color:var(--forest-light);
    margin:0 auto 12px;
    position:relative;
    background:#fff;
  }
  .step-num{
    position:absolute;top:-8px;right:-8px;
    width:26px;height:26px;border-radius:50%;
    background:var(--gold);color:var(--forest-deep);
    font-size:.8rem;font-weight:800;
    display:flex;align-items:center;justify-content:center;
  }
  .step-arrow{color:var(--gold);font-size:1.4rem;}
  .why-card{
    background:#fff;
    border-radius:10px;
    padding:22px 14px;
    text-align:center;
    box-shadow:0 8px 22px rgba(15,61,36,.06);
    height:100%;
  }
  .why-card i{font-size:1.6rem;color:var(--forest-light);margin-bottom:10px;}
  .why-card p{font-size:.85rem;font-weight:600;margin:0;}

  /* ===== Leaders ===== */
  .leaders-section{
    background:linear-gradient(180deg, var(--forest-deep), #06200f);
    color:#fff;
  }
  .leader-card{text-align:center;}
  .leader-photo{
    width:130px;height:130px;
    border-radius:50%;
    margin:0 auto 14px;
    background:linear-gradient(160deg,#dfe8e0,#fff);
    border:4px solid var(--gold);
    display:flex;align-items:center;justify-content:center;
    color:var(--forest-deep);
    font-size:2.6rem;
    position:relative;
  }
  .leader-name{font-weight:700;margin-bottom:2px;}
  .leader-title{color:var(--gold-light);font-size:.8rem;}
  .success-cta{
    background:linear-gradient(135deg,#12451f,#0a2e1a);
    border-radius:14px;
    padding:30px;
    height:100%;
    display:flex;flex-direction:column;justify-content:center;
    text-align:center;
    border:1px solid rgba(217,174,78,.3);
  }

  /* ===== Testimonials ===== */
  .testimonial-card{
    background:#fff;
    border-radius:12px;
    padding:26px;
    box-shadow:0 8px 22px rgba(15,61,36,.06);
    height:100%;
  }
  .testimonial-card .stars{color:var(--gold);font-size:.85rem;margin-bottom:10px;}
  .reviewer-avatar{
    width:42px;height:42px;border-radius:50%;
    background:var(--forest-light);
    color:#fff;display:flex;align-items:center;justify-content:center;
    font-weight:700;
  }

  /* ===== Certificates ===== */
  .cert-badge{
    text-align:center;
    color:var(--forest-deep);
  }
  .cert-badge .cert-circle{
    width:74px;height:74px;
    border-radius:50%;
    border:2px solid var(--gold);
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 10px;
    font-size:1.6rem;
    color:var(--forest-light);
  }
  .cert-badge span{font-size:.78rem;font-weight:700;}

  /* ===== CTA ===== */
  .cta-strip{
    background:var(--forest-deep);
    color:#fff;
  }

  /* ===== Page banner ===== */
  .page-banner{
    position:relative;
    min-height:280px;
    display:flex;align-items:center;
    overflow:hidden;
  }
  .page-banner::before{
    content:"";
    position:absolute;inset:0;
    background:
      radial-gradient(circle at 85% 20%, rgba(217,174,78,.18), transparent 45%),
      linear-gradient(120deg, var(--forest-deep) 0%, var(--forest-light) 100%);
    z-index:0;
  }
  .page-banner i.bi{
    position:absolute;
    color:rgba(255,255,255,.06);
    font-size:9rem;
    right:6%;
    top:50%;
    transform:translateY(-50%);
    z-index:0;
  }
  .page-banner .content{ position:relative;z-index:2; color:#fff; }
  .breadcrumb-custom a{color:var(--gold-light);}
  .breadcrumb-custom span{color:#cfe0d5;}

  /* ===== Story section ===== */
  .story-visual{ position:relative; height:380px; }
  .story-frame{
    width:88%;height:100%;margin:0 auto;
    border-radius:20px 120px 20px 120px;
    background:linear-gradient(160deg,#fdf6df,#e9dcae);
    display:flex;align-items:center;justify-content:center;
    overflow:hidden;border:6px solid #fff;
    box-shadow:0 20px 40px rgba(0,0,0,.1);
  }
  .story-frame i{font-size:8rem;color:var(--forest-light);}
  .story-badge{
    position:absolute; top:-14px; left:-10px;
    background:var(--gold); color:var(--forest-deep);
    font-weight:800; padding:14px 20px; border-radius:10px;
    box-shadow:0 15px 30px rgba(0,0,0,.15);
    text-align:center; line-height:1.1;
  }
  .story-badge .num{ font-size:1.6rem; }
  .story-badge .lbl{ font-size:.65rem; letter-spacing:1px; }

  /* ===== Vision Mission Values ===== */
  .vmv-card{
    background:#fff; border-radius:12px; padding:32px 24px; text-align:center;
    box-shadow:0 10px 26px rgba(15,61,36,.07); height:100%;
    border-bottom:3px solid transparent; transition:.25s;
  }
  .vmv-card:hover{ border-bottom-color:var(--gold); transform:translateY(-4px); }
  .vmv-icon{
    width:70px;height:70px;border-radius:50%;
    background:var(--forest-deep); color:var(--gold-light);
    display:flex;align-items:center;justify-content:center;
    font-size:1.8rem; margin:0 auto 18px;
  }

  /* ===== Journey timeline ===== */
  .timeline{ position:relative; padding-left:0; }
  .timeline::before{
    content:""; position:absolute; left:20px; top:0; bottom:0; width:2px;
    background:repeating-linear-gradient(to bottom, var(--gold) 0 8px, transparent 8px 16px);
  }
  .timeline-item{ position:relative; padding-left:56px; margin-bottom:34px; }
  .timeline-item:last-child{margin-bottom:0;}
  .timeline-dot{
    position:absolute; left:8px; top:2px;
    width:26px;height:26px;border-radius:50%;
    background:var(--forest-deep); border:3px solid var(--gold);
  }
  .timeline-year{ color:var(--gold); font-weight:800; letter-spacing:1px; font-size:.85rem; }

  /* ===== Why choose ===== */
  .choose-section{
    background:radial-gradient(circle at 20% 20%, var(--forest-light), var(--forest-deep) 60%);
    color:#fff;
  }
  .choose-item{ display:flex; gap:16px; align-items:flex-start; margin-bottom:26px; }
  .choose-item i{
    width:48px;height:48px;min-width:48px;border-radius:50%;
    background:rgba(217,174,78,.15); color:var(--gold);
    display:flex;align-items:center;justify-content:center;font-size:1.3rem;
  }
  .choose-visual{ position:relative; height:380px; display:flex; align-items:center; justify-content:center; }
  .choose-ring{ position:absolute; width:300px;height:300px;border-radius:50%;border:2px dashed rgba(217,174,78,.5); }
  .choose-circle{
    width:220px;height:220px;border-radius:50%;
    background:linear-gradient(160deg,#fff,#eee);
    display:flex;flex-direction:column;align-items:center;justify-content:center;
    color:var(--forest-deep); box-shadow:0 25px 50px rgba(0,0,0,.25);
  }
  .choose-circle i{font-size:3rem;color:var(--gold);}
  .choose-circle span{font-weight:800;margin-top:8px;}

  /* ===== Stats ===== */
  .stat-box{ text-align:center; }
  .stat-box .num{ font-size:2.3rem; font-weight:800; color:var(--forest-deep); font-family:'Playfair Display',serif; }
  .stat-box .lbl{ font-size:.85rem; color:var(--text-muted); font-weight:600; }

  /* ===== Certificates ===== */
  .cert-badge{ text-align:center; color:var(--forest-deep); }
  .cert-badge .cert-circle{
    width:74px;height:74px;border-radius:50%;border:2px solid var(--gold);
    display:flex;align-items:center;justify-content:center;margin:0 auto 10px;
    font-size:1.6rem;color:var(--forest-light);
  }
  .cert-badge span{font-size:.78rem;font-weight:700;}

  /* ===== Product hero ===== */
  .bottle{
    position:relative; width:150px;height:340px;
    background:linear-gradient(180deg,#fff, #f1f1f1);
    border-radius:16px 16px 24px 24px;
    box-shadow:0 25px 45px rgba(15,61,36,.25);
    display:flex;flex-direction:column;align-items:center;
  }
  .bottle-cap{ width:74px;height:40px; background:var(--gold); border-radius:6px 6px 0 0; margin-top:-24px; }
  .bottle-label{
    margin-top:30px; width:112px;height:190px; background:#fff; border:2px solid var(--gold);
    border-radius:8px; display:flex;flex-direction:column;align-items:center;justify-content:center;
    text-align:center; font-size:.7rem; font-weight:700; color:var(--forest-deep); padding:8px;
  }
  .bottle-label i{color:var(--gold);font-size:1.6rem;margin-bottom:6px;}
  .product-hero-visual{ position:relative; height:420px; display:flex;align-items:center;justify-content:center; }
  .product-ring{ position:absolute; width:320px;height:320px; border-radius:50%; border:2px dashed var(--gold); opacity:.6; }
  .natural-tag{
    position:absolute; bottom:30px; right:calc(50% - 190px);
    width:88px;height:88px;border-radius:50%; background:var(--gold); color:var(--forest-deep);
    display:flex;flex-direction:column;align-items:center;justify-content:center;
    font-weight:800;font-size:.75rem;text-align:center; box-shadow:0 10px 22px rgba(0,0,0,.2);
  }
  .price-tag{ font-size:1.8rem; font-weight:800; color:var(--forest-deep); }
  .price-tag .old{ font-size:1.1rem; color:var(--text-muted); text-decoration:line-through; font-weight:500; margin-left:10px; }
  .rating-stars{color:var(--gold);}

  /* ===== Ingredients / Tulsi types ===== */
  .tulsi-card{
    background:#fff; border-radius:12px; padding:26px 18px; text-align:center; height:100%;
    box-shadow:0 8px 22px rgba(15,61,36,.06); border-top:3px solid var(--gold);
  }
  .tulsi-card i{ font-size:1.8rem; color:var(--forest-light); margin-bottom:12px; }

  /* ===== Benefits dark ===== */
  .benefits-section{ background:radial-gradient(circle at 20% 20%, var(--forest-light), var(--forest-deep) 60%); color:#fff; }
  .benefit-row{ display:flex; gap:16px; align-items:flex-start; margin-bottom:24px; }
  .benefit-row i{
    width:46px;height:46px;min-width:46px;border-radius:50%;
    background:rgba(217,174,78,.15); color:var(--gold);
    display:flex;align-items:center;justify-content:center;font-size:1.2rem;
  }

  /* ===== How to use ===== */
  .use-step{ text-align:center; }
  .use-step .circle{
    width:70px;height:70px;border-radius:50%; border:2px solid var(--forest-light);
    display:flex;align-items:center;justify-content:center; font-size:1.6rem; color:var(--forest-light);
    margin:0 auto 14px; background:#fff; position:relative;
  }
  .use-step .num{
    position:absolute;top:-8px;right:-8px;width:26px;height:26px;border-radius:50%;
    background:var(--gold);color:var(--forest-deep);font-size:.8rem;font-weight:800;
    display:flex;align-items:center;justify-content:center;
  }

  /* ===== FAQ ===== */
  .accordion-button{ font-weight:600; color:var(--forest-deep); }
  .accordion-button:not(.collapsed){ background:var(--cream); color:var(--forest-deep); box-shadow:none; }
  .accordion-button:focus{ box-shadow:none; border-color:var(--gold); }

  /* ===== Certificates ===== */
  .cert-badge{ text-align:center; color:var(--forest-deep); }
  .cert-badge .cert-circle{
    width:74px;height:74px;border-radius:50%;border:2px solid var(--gold);
    display:flex;align-items:center;justify-content:center;margin:0 auto 10px;
    font-size:1.6rem;color:var(--forest-light);
  }
  .cert-badge span{font-size:.78rem;font-weight:700;}

  .cta-strip{ background:var(--forest-deep); color:#fff; }

  .site-footer{ background:#06200f; color:#c7d3c9; }
  .site-footer h6{color:#fff;font-weight:700;margin-bottom:16px;}
  .site-footer a{color:#c7d3c9;} .site-footer a:hover{color:var(--gold-light);}
  .social-circle{
    width:36px;height:36px;border-radius:50%;border:1px solid rgba(255,255,255,.25);
    display:flex;align-items:center;justify-content:center;color:#fff;
  }
  .footer-bottom{ background:#04160a; font-size:.82rem; color:#8fa196; }

  @media (max-width:767px){
    .page-banner{min-height:200px;text-align:center;}
    .page-banner .content{width:100%;}
    .natural-tag{right:calc(50% - 130px);}
  }
  
    /* ===== Contact info cards ===== */
  .info-card{
    background:#fff; border-radius:12px; padding:30px 24px; text-align:center; height:100%;
    box-shadow:0 8px 22px rgba(15,61,36,.06); transition:.25s; border-bottom:3px solid transparent;
  }
  .info-card:hover{ transform:translateY(-4px); border-bottom-color:var(--gold); }
  .info-icon{
    width:64px;height:64px;border-radius:50%; background:var(--forest-deep); color:var(--gold-light);
    display:flex;align-items:center;justify-content:center; font-size:1.5rem; margin:0 auto 16px;
  }

  /* ===== Form + map ===== */
  .contact-form-wrap{
    background:#fff; border-radius:14px; padding:36px; box-shadow:0 15px 40px rgba(15,61,36,.08);
  }
  .form-control, .form-select{
    border:1.5px solid #e2ddc9; border-radius:8px; padding:11px 14px;
  }
  .form-control:focus, .form-select:focus{
    border-color:var(--forest-light); box-shadow:0 0 0 .2rem rgba(30,92,55,.12);
  }
  .form-label{ font-weight:600; font-size:.88rem; color:var(--forest-deep); }

  .map-panel{
    height:100%; min-height:340px; border-radius:14px; overflow:hidden; position:relative;
    background:linear-gradient(160deg, var(--forest-light), var(--forest-deep));
    display:flex; align-items:center; justify-content:center; color:#fff;
  }
  .map-panel i{ font-size:4rem; color:var(--gold); margin-bottom:14px; }
  .map-pin{
    position:absolute; width:16px;height:16px;border-radius:50%; background:var(--gold);
    box-shadow:0 0 0 8px rgba(217,174,78,.25);
  }

  /* ===== Hours ===== */
  .hours-row{ display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px dashed #e2ddc9; }
  .hours-row:last-child{ border-bottom:none; }

  /* ===== Footer ===== */
  .site-footer{
    background:#06200f;
    color:#c7d3c9;
  }
  .site-footer h6{color:#fff;font-weight:700;margin-bottom:16px;}
  .site-footer a{color:#c7d3c9;}
  .site-footer a:hover{color:var(--gold-light);}
  .social-circle{
    width:36px;height:36px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.25);
    display:flex;align-items:center;justify-content:center;
    color:#fff;
  }
  .footer-bottom{
    background:#04160a;
    font-size:.82rem;
    color:#8fa196;
  }

  @media (max-width:991px){
    .hero-title{font-size:2.1rem;}
    .family-icon{display:none;}
    .feature-item{border-right:none;border-bottom:1px solid rgba(255,255,255,.12);}
    .feature-item:last-child{border-bottom:none;}
    .features-strip{margin-top:0;border-radius:0;}
    .about-quote-card{position:static;margin-top:14px;max-width:100%;}
  }
  @media (max-width:767px){
    .hero-slide{min-height:auto;padding:50px 0;}
    .hero-visual{height:320px;}
    .natural-tag{right:calc(50% - 130px);}
  }