/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

/* Local Font */
@font-face {
  font-family: "telegraf-ultralight 200.otf";
  src: url("../fonts/telegraf-ultralight 200.otf");
}

@font-face {
  font-family: "roxborough";
  src: url("../fonts/roxborough.ttf");
}

@font-face {
  font-family: 'FONTSPRING DEMO - The Seasons';
  src: url('../fonts/FONTSPRINGDEMO-TheSeasonsLightRegular.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FONTSPRING DEMO - The Seasons';
  src: url('../fonts/FONTSPRINGDEMO-TheSeasonsItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'FONTSPRING DEMO - The Seasons';
  src: url('../fonts/FONTSPRINGDEMO-TheSeasonsBold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FONTSPRING DEMO - The Seasons';
  src: url('../fonts/FONTSPRINGDEMO-TheSeasonsBoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'FONTSPRING DEMO - The Seasons';
  src: url('../fonts/FONTSPRINGDEMO-TheSeasonsLightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'FONTSPRING DEMO - The Seasons';
  src: url('../fonts/FONTSPRINGDEMO-TheSeasonsRegular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}



:root {
  --white: #fff;
  --black: #000;
  --primary: #343f25;
  --secondary: #8c9d75;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #e4e0d0;
  overflow-x: hidden;
  height: 100%;
  font-family: "telegraf-ultralight 200.otf";
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

h3 {
  font-family: "telegraf-ultralight 200.otf";
}

h1,
h2,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
  font-family: "roxborough";
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: "roxborough";
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background-color: var(--primary);
  font-size: 1.125rem;
  color: #e4e0d0;
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
  padding: 22px 2.125rem;
  line-height: normal;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.themeBtn:hover {
  background-color: #e4e0d0;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */

header {
  margin: 0 auto;
  width: 100%;
  padding: 1.25rem 110px;
  transition: 0.3s ease-in-out;
  background-color: #e4e0d0;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  gap: 35px;
  align-items: center;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: #0b4632;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 0;
  display: inline-block;
  position: relative;
}

/* !NAV HEADER CSS */

/* New Imag Shine Css Start  */

/* Image container */
.img-shine {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.img-shine img {
  display: block;
}

/* Common shine base */
.img-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* --- Shine Styles --- */

/* 1. Horizontal */
.style-horizontal::after {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 20%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 80%);
  transform: translateX(-100%);
  animation: shine-horizontal 3s linear infinite;
}

@keyframes shine-horizontal {
  to {
    transform: translateX(100%);
  }
}

/* 2. Reverse */
.style-reverse::after {
  background: linear-gradient(-90deg,
      rgba(255, 255, 255, 0) 20%,
      rgba(255, 255, 255, 0.35) 50%,
      rgba(255, 255, 255, 0) 80%);
  transform: translateX(100%);
  animation: shine-reverse 3s linear infinite;
}

@keyframes shine-reverse {
  to {
    transform: translateX(-100%);
  }
}

/* 3. Dual */
.style-dual::after {
  background: repeating-linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 10%,
      rgba(255, 255, 255, 0) 20%);
  transform: translateX(-100%);
  animation: shine-dual 4s linear infinite;
}

@keyframes shine-dual {
  to {
    transform: translateX(100%);
  }
}

/* 4. Pulse */
.style-pulse::after {
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 35%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 65%);
  transform: translateX(-100%);
  animation: shine-pulse 3s ease-in-out infinite;
}

@keyframes shine-pulse {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* 5. Wave */
.style-wave::after {
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 60%);
  transform: translateX(-100%);
  animation: shine-wave 1.8s ease-in-out infinite;
}

@keyframes shine-wave {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* New Imag Shine Css End  */

/* Top Ban Css Start */

.top-bar {
  background-color: #343f25;
  padding: 0.45rem 0;
  text-align: center;
}

.top-bar a {
  position: absolute;
  right: 1.5rem;
  top: 10px;
  bottom: 0;
  color: #e4e0d0;
  display: none;
}

/* .marquee-container {
  width: 100%; 
  overflow: hidden;
  position: relative;
  display: flex;
  gap: 2rem;
}

.marquee-container p {
  display: inline-block;
  padding: 10px 0;
  white-space: nowrap; 
  margin-right: 0; 
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%); 
  }
  100% {
    transform: translateX(-100%); 
  }
} */

.top-bar marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}

.top-bar marquee p {
  display: inline-block;
  padding: 10px 0;
  white-space: nowrap;
  margin-right: 2rem;
  animation: marquee 20s linear infinite;
}

.top-bar p {
  color: #e4e0d0;
}

.form-inline {
  margin-left: 2.5rem;
}

.form-inline a i {
  height: 44px;
  color: #343f25;
  width: 44px;
  display: grid;
  place-items: center;
  border: 1px solid;
  transition: 0.6s ease;
}

/* Top Ban Css End  */

/* Main Banner Css Start */

.mainbanner {
  background: url(../images/mainBnnr.webp) center/cover no-repeat;
  padding: 0px 3.75rem 5rem 110px;
  z-index: 1;
  height: 965px;
  align-content: end;
  display: flex;
  align-items: flex-end;
}

.mainbanner::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(171deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 50%));
  z-index: -1;
}

.mainbanner h1 {
  margin: 0;
  color: #e4e0d0;
  font-size: 4.25rem;
  line-height: 1;
  font-weight: 500;
  text-transform: none;
  text-shadow: 2px 0px rgb(0 0 0 / 12%);
}

.mainbanner p {
  color: #e4e0d0;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.725rem;
  font-size: 15.3px;
  word-spacing: 2px;
}

 {
  background: transparent;
  border: 1px solid;
}

/* Main Banner Css Start */

/* Brand Sec Css Start */

figure.brand-imag {
  width: fit-content;
  position: relative;
  margin: auto;
}

.brandhover {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  transition: 0.6s ease;
}

.brand-wrapp:hover .brandhover {
  opacity: 1;
}

.brand-content h2 {
  font-size: 34px;
  font-weight: 400;
  text-transform: uppercase;
  color: #212121;
  margin: 1rem 0 0.625rem;
  transition: 0.3s ease;
}

.brand-content p {
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #343f24;
  transition: 0.3s ease;
}

.brand-content .themeBtn {
  background: transparent;
  color: #343f24;
  border: 1px solid #343f24;
  margin-top: 1rem;
  padding: 17px 2.45rem;
}

.brand-sec .brand-wrapp:hover .brand-content .themeBtn {
  color: #616b54;
  border: 1px solid #616b54;
}

.brand-sec .col-md-4:nth-child(1) .brand-wrapp:hover {
    background-image: 
        linear-gradient(rgb(0 0 0 / 20%), rgb(0 0 0 / 20%)),
        url('http://testv84.demowebsitelinks.com/BotanicalWP/wp-content/uploads/2026/01/weq.jpg ');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}




.brand-sec .col-md-4:nth-child(2) .brand-wrapp:hover {
    background-image: 
        linear-gradient(rgb(0 0 0 / 20%), rgb(0 0 0 / 20%)),
        url('http://testv84.demowebsitelinks.com/BotanicalWP/wp-content/uploads/2026/01/qwe.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.brand-sec .col-md-4:nth-child(3) .brand-wrapp:hover {
    background-image: 
        linear-gradient(rgb(0 0 0 / 20%), rgb(0 0 0 / 20%)),
        url('http://testv84.demowebsitelinks.com/BotanicalWP/wp-content/uploads/2026/01/wqe.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.brand-sec .col-md-4:nth-child(4) .brand-wrapp:hover {
    background-image: 
        linear-gradient(rgb(0 0 0 / 20%), rgb(0 0 0 / 20%)),
        url('http://testv84.demowebsitelinks.com/BotanicalWP/wp-content/uploads/2026/02/RitualKitFreshfirsthvr-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.brand-sec .col-md-4:nth-child(1) .brand-wrapp:hover .brand-content .themeBtn,
.brand-sec .col-md-4:nth-child(2) .brand-wrapp:hover .brand-content .themeBtn,
.brand-sec .col-md-4:nth-child(3) .brand-wrapp:hover .brand-content .themeBtn,
.brand-sec .col-md-4:nth-child(4) .brand-wrapp:hover .brand-content .themeBtn{
  background: #8d9d76;
  color: #fff;
}



.brand-wrapp:hover .brand-content h2,
.brand-wrapp:hover .brand-content p {
  color: #ffff;
}

.brand-wrapp:hover .themeBtn {
  color: #8c9d75;
  border: 1px solid #8c9d75;
}

section.brand-sec {
  padding: 117px 110px 4rem;
}

.main-content .btn-group {
  align-items: center;
  gap: 1rem;
  margin-top: 26px;
}

.brand-wrapp {
  text-align: center;
  border: 1px solid;
  padding: 88px 0px 82px 0px;
  /*transition: 0.6s ease;*/
}

/* Brand Sec Css End */

/* Smooking Sec Css Start */
.smooking-box:hover .smooking-content h4,
.smooking-box:hover .smooking-content p,
.smooking-box:hover h5 {
  color: #212121;
}

.smooking-box+.smooking-box {
  margin: 1.125rem 0;
}

.smooking-content ul li {
  list-style: disc;
  color: #e4e0d0;
}

.smooking-content ul li a {
  font-size: 1rem;
  font-weight: 400;
  color: #e4e0d0;
}

.smooking-content ul li+li {
  margin: 0.25rem 0;
}

.smooking-main h6 {
  font-size: 1.125rem;
  color: #e4e0d0;
  padding: 10px 0 0 0;
  letter-spacing: 2px;
  line-height: 1.5;
  display: inline-block;
}

.smooking-main h6 b {
  /* letter-spacing: 2px; */
  text-transform: uppercase;
}

.smooking-main h6 span {
  font-weight: bold;
  color: var(--white);
  text-transform: uppercase;
}

section.smooking-sec {
  padding: 2rem 2.5rem 6rem;
}

.smooking-box:hover {
  background: #8c9d75;
}

.smooking-main {
  background-color: #343f24;
  padding: 110px 65px 5rem 65px;
}

figure.smooking-img {
  width: 100%;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

figure.smooking-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subHead {
  font-size: 35px;
  font-weight: 400;
  /*text-transform: uppercase;*/
  color: #8c9d75;
}
.story-sec .subHead {
  text-transform: uppercase;
}
.mainHead {
  font-size: 66px;
  font-weight: 400;
  color: #e4e0d0;
  text-transform: none;
  line-height: 1.1;
}

.smooking-main p {
  font-size: 1rem;
  line-height: 1.5;
  color: #e4e0d0;
  margin: 1.125rem 0;
  width: 80%;
  text-align: left;
}

.smooking-box {
  display: flex;
  gap: 1rem;
  padding: 3rem 2rem 3rem 1.55rem;
  border: 1px solid rgb(140 157 117 / 50%);
  transition: 0.5s ease;
}

.smooking-box h5 {
  font-size: 1.125rem;
  font-weight: 400;
  color: #ffff;
}

.smooking-content h4 {
  font-size: 2rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #fff;
  transition: 0.3s ease;
}

.smooking-content p {
  width: 100%;
  line-height: 1.5;
  margin: 1rem 0;
  color: #fff;
  transition: 0.3s ease;
  text-align: left;
}

/* Smooking Sec Css End  */

/* Story Sec Css Start */

section.story-sec {
  background-color: #8c9d75;
  padding: 6.25rem 110px 5.25rem 150px;
}

.story-content .subHead {
  color: #212121;
}

.story-content .mainHead {
  color: #212121;
}

.story-content h4 {
  font-size: 25px;
  font-weight: 500;
  text-transform: capitalize;
  color: #212121;
  margin: 0.625rem 0;
}

.story-content p {
  color: #212121;
  font-size: 1.125rem;
  line-height: 1.5;
  width: 87%;
}

.story-content p+p {
  margin: 1.395rem 0;
}

.story-content .themeBtn {
  padding: 1.125rem 3.5rem;
  margin-top: 1rem;
}

/* Story Sec Css End  */

/* Ember Sec Css Start */

figure.ember-img img {
  width: 100%;
}

.ember-content a {
  display: block;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  color: #212121;
  background-color: #8c9d75;
  text-align: center;
  padding: 0.625rem;
}

section.ember-sec {
  padding: 6.25rem 110px 0.2rem;
}

figure.embertop {
  text-align: center;
  margin-bottom: 0.75rem;
}

/* Ember Sec Css End  */

/* Work Sec Css Start */
.work-sec {
  position: relative;
  margin: 0 2.15rem;
  z-index: 1;
  overflow: hidden;
  /* Prevents video from spilling outside the section */
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the video covers the section without distortion */
}

#background-video::before {
  position: absolute;
  content: "";
  inset: 0;
  /* Top, right, bottom, left all 0 */
  background-color: rgba(52, 63, 36, 0.9);
  /* Dark semi-transparent overlay */
  z-index: 1;
  /* Ensures overlay stays above the video but below the text */
}

.work-main {
  position: relative;
  z-index: 2;
  /* Ensures content stays on top of both the video and the overlay */
}

.mainHead {
  color: #fff;
  /* Make sure the text is visible against the video background */
}
.work-form .form-control input::placeholder {
    color: #8c9d75;
}
.work-form .form-control {
  height: 56px;
  /*background: transparent;*/
  border: 1px solid #e4e0d0;
  outline: unset;
  box-shadow: unset;
  border-radius: unset;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #8c9d75;
}

.work-form .form-control {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 400;
  color: #8c9d75;
}
p.hf-message.hf-message-success {
    color: #797f67 !important;
    background: #fff;
    max-width: 500px;
    margin: 0 auto;
}
.work-main .mainHead {
  margin: 0.625rem 0 1.75rem;
}

.work-form button {
  width: 100%;
  border: unset;
  background-color: #e4e0d0;
  height: 56px;
  color: #343f24;
  padding: 0;
}

/* Work Sec Css End  */

/* Create Sec Css Start */

figure.create-imag img {
  width: 100%;
  /* transition: 0.6s ease; */
  height: 522px;
  object-fit: cover;
  transform: scale(1.05);
}

figure.create-imag {
  position: relative;
  overflow: hidden;
}

.create-top {
  text-align: center;
  margin-bottom: 46px;
}

section.create-sec .mainHead {
  color: #212121;
}

section.create-sec .subHead {
  color: #343f24;
  font-weight: bold;
}

figure.create-imag a {
  display: block;
  font-size: 27px;
  font-weight: 500;
  text-transform: capitalize;
  color: #212121;
  padding: 0.625rem;
  text-align: center;
  background-color: #e4e0d0;
  position: absolute;
  bottom: 1.25rem;
  margin: auto;
  right: 1.25rem;
  left: 1.25rem;
}

section.create-sec {
  padding: 110px;
}

figure.create-imag:hover img {
  transform: scale(1.05);
}

figure.create-imag:hover a {
  transform: translatey(-10px);
}

/* Create Sec Css End  */

/* Footer Sec Css Start */
footer {
  background-color: #343f24;
  padding: 110px 165px;
}

.footer-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  border: 1px solid rgb(228 224 208 / 42%);
  padding: 0.75rem 0;
  margin-bottom: 140px;
  position: relative;
}

.footer-list::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -100px;
  margin: auto;
  height: 63px;
  width: 2px;
  background-color: rgb(228 224 208 / 42%);
}

.footer-info {
  /* text-align: center; */
  margin: 1rem 0;
}

.footer-info a {
  font-size: 1.1rem;
  font-weight: 400;
  color: #e4e0d0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

footer p {
  font-size: 1.125rem;
  color: #e4e0d0;
  line-height: 1.4;
  margin-top: 9px;
  text-align: center;
}

.footer-bottom {
  padding: 0.625rem 0;
  border-top: 1px solid #fff;
  margin: 45px 110px 0;
}

.footer-bottom p {
  color: #F5F5DC;
}

/* Footer Sec Css End  */

/* Imag Shine Css Start */

.img-box {
  position: relative;
  overflow: hidden;
}

.img-box img {
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.5s ease;
}

.img-box:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.5),
      transparent);
  transform: skewX(-25deg);
}

.img-box:hover .shine {
  animation: shineMove 0.9s ease forwards;
}

@keyframes shineMove {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}

/* Imag Shine Css End  */

/* Hover Effect Css Start */

ul.footer-list li a:hover {
  color: #fff;
}

ul.footer-list li a {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #e4e0d0;
}

.themeBtn:hover {
  background-color: var(--secondary);
  color: #fff;
}

.main-content .btn-group a:last-child:hover {
  background-color: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}

.brand-content .themeBtn:hover {
  background-color: #ffff;
  color: #343f24;
}

.story-content .themeBtn:hover {
  background-color: var(--white);
  color: var(--primary);
}

.smooking-box:hover .smooking-content ul li {
  color: #212121;
}

.smooking-box:hover .smooking-content ul li a {
  color: #212121;
}

.navbar-nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 0;
  background: #000;
  transition: 0.5s ease;
  bottom: 0;
}

.navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
}

.form-inline a i:hover {
  background: #343f25;
  color: #ffff;
}

/* Hover Effect Css End  */

.ember-content a:hover {
  background: #000;
  color: #fff;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(52 63 36 / 75%);
  backdrop-filter: blur(8px);
  /* blur effect */
  z-index: 999;
  display: none;
}

/* Popup Box */
.popup-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #e4e0d0;
  padding: 100px 80px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  width: 800px;
  text-align: center;
  display: none;
}

/* Button Style */
.popup-box button {
  margin: 30px 10px 0;
  padding: 8px 16px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #e4e0d0;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  width: 250px;
  text-align: center;
}

.popup-box button:last-child {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.popup-box h2 {
  font-size: 60px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 30px;
}

.popup-box p {
  font-size: 21.1px;
  color: #212121;
  line-height: 1.4;
}

/* Ticker end of footer */

.ticker {
  background-color: #344024;
  /* Dark green background */
  padding: 2rem 0 1rem;
  overflow: hidden;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  display: flex;
}

.ticker p {
  white-space: nowrap;
  /* Prevent text from wrapping */
  margin: 0;
  animation: tickerAnimation 45s linear infinite;
  /* Slow down animation */
  color: #F5F5DC;
  /* White text color */
  font-size: 2rem;
  font-weight: lighter;
  font-style: italic;
  /*font-family: 'FONTSPRING DEMO - The Seasons';*/
}

@keyframes tickerAnimation {
  0% {
    transform: translateX(100%);
    /* Start from the right */
  }

  100% {
    transform: translateX(-100%);
    /* End at the left */
  }
}

/* instaram carousel */

section.insta_grid {
  padding: 0 0 5rem;
}

.instaSlide {
  padding-bottom: 5rem;
}

/* Each slide figure */
.instaSlide figure {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  margin: 0;
}

/* Images */
.instaSlide figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Zoom effect on hover */
.instaSlide figure:hover img {
  transform: scale(1.08);
}

/* Instagram icon overlay */
.instaSlide figure i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  color: #fff;
  font-size: 50px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

/* Dark overlay background */
.instaSlide figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* On hover: show icon + overlay */
.instaSlide figure:hover::after {
  opacity: 1;
}

.instaSlide figure:hover i {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Pagination Styles */
.instaSlide .swiper-pagination {
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
}

.instaSlide .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border-radius: 12px;
}

.instaSlide .swiper-pagination-bullet-active {
  background-color: #343f24 !important;
}

.navbar-brand img {
  /* filter: brightness(0.5); */
  width: 455px;
}

.quick-links {
  margin-top: 40px;
  /* text-align: center; */
  color: #fff;
  font-size: 20px;
}

.quick-links-ewe {
  margin-top: 40px;
  /* text-align: center; */
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.quick-links-il {
  margin-top: 20px;
  /* text-align: center; */
}

.quick-links-il li {
  /* text-align: center; */
  margin-bottom: 10px;
  margin-left: 0;
}

.quick-links-il li a {
  color: #fff;
}

.mein-footer-ingir {
  margin-top: 25px;
}

.main-dffncs p {
  color: var(--black);
  font-size: 1.12rem;
  line-height: 1.3;
  margin: 0 0 1rem;
}

.socail-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.socail-icon i {
  font-size: 30px;
  color: #fff;
  margin-left: 0;
  margin-top: 30px;
}

.quick-links a {
  color: #fff;
}

.mein-tescrt {
  color: #e4e0d0;
  line-height: 0;
  font-weight: 400;
  font-size: 19px;
}

.quick-links-span {
  font-size: 17px;
  color: #fff;
  display: flex;
  gap: 1.2rem;
}

.topnav {
  overflow: hidden;
  background-color: #e9e9e9;
}

.search-container a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.search-container a:hover {
  background-color: #ddd;
  color: black;
}

.search-container a.active {
  background-color: #2196f3;
  color: white;
}

.search-container {
  float: right;
}

.search-container input[type="text"] {
  padding: 5px 12px;
  margin-top: 4px;
  font-size: 17px;
  border: none;
  outline: none;
  background-color: unset;
  width: 170px;
}

.search-container form {
  border-bottom: 1px solid #fff;
  margin: 0 0 0 20px;
}

.search-container button {
  float: right;
  padding: 10px 10px;
  background: unset;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.fda_statement {
  display: block;
  font-size: 14px;
  color: #cbcbcb;
  line-height: 1.5;
  margin-top: 15px;
  width: 99%;
  text-align: center;
}

.blends {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1px;
}

.reset-quote {
  font-family: "TheSeason", serif;
  font-size: 20px;
  line-height: 1.6;
}

span.mein-tescrt small {
  font-size: 14px;
}

p.statement {
  font-size: 14px;
}

p.statement small {
  font-size: 14px;
}

.cscdcdsadc {
  font-size: 21.1px;
  color: #212121;
  line-height: 1.4;
  text-decoration: underline !important;
}

.ciikencdfc {
  list-style: disc;
  padding-left: 2rem;

}

.ciikencdfc li {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.3;
}

p.address {
  line-height: 1.3;
}

.main-dffncs p a {
  transition: all 0.2s ease;
}

.main-dffncs p a:hover {
  color: #0b4632;
}

.main-dffncs {
  padding: 0 0 6rem;
}

.footer-info a span {
  display: inline-block;
  position: relative;
  top: 3px;
}

.footer-info li+li {
  margin-top: 8px;
}

.quick-links-span small {
  font-size: 1.3rem;
}

.title {
  font-size: 3rem;
  font-weight: bold;
}

.ciikencdfc li strong {
  font-weight: bold;
  font-size: 1.4rem;
}

section.main-dffncs h2 {
  font-weight: bolder;
}

.main-dffncs p sup {
  font-size: 11px;
  top: -10px;
}
.scdssafdfb{
  font-weight: bolder;
  font-family: 'roxborough';
  margin-bottom: 10px;
  color: #000;
}

	.smooking-main .mainHead {
		font-size: 60px;
	}
	.top-bar .ticker p {
    font-size: 22px;
    padding-left: 30px;
    font-family: "telegraf-ultralight 200.otf" !important;
    text-transform: capitalize;
}
a.footerlogo img {
    padding-top: 40px !important;
}

.brand-sec .col-md-4:nth-child(4) {
  margin-top: 20px;
  display: block;
  position: relative;
  left: 0;
  top: 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.page-id-359 .create-sec {
  padding-top: 0px;
}
.create-sec.Inner-Oage-Sec .col-md-4 a {
  display: block;
  font-size: 27px;
  font-weight: 500;
  text-transform: capitalize;
  color: #212121;
  text-align: center;
  background-color: #e4e0d0;
  position: absolute;
  margin: auto;
  margin-top: auto;
  right: 1.25rem;
  left: 1.25rem;
  margin-top: 5px;
}
.create-sec.Inner-Oage-Sec .col-md-4 .Botttom-Para {
  margin-top: 60px;
}
.create-sec.Inner-Oage-Sec .col-md-4 .themeBtn.align-items-center {
  background-color: var(--primary);
  font-size: 1.125rem;
  color: #e4e0d0;
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
  padding: 22px 2.125rem;
  line-height: normal;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 170px;
}

/* Ritual page css start */


.main-title {
            text-align: center;
            font-size: 3.5rem;
            font-weight: 300;
            letter-spacing: 3px;
            color: #2d3e2d;
            margin-bottom: 30px;
        }
        
        .subtitle {
            text-align: center;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            color: #2d3e2d;
            margin-bottom: 50px;
            padding: 0 15%;
            line-height: 1.8;
        }
        
        .goal-card {
            background: #fff;
            border: 1px solid #343f25;
            margin-bottom: 20px;
            overflow: hidden;
        }
        
        .goal-row {
            display: flex;
            min-height: 120px;
        }
        
        .letter-box {
            background-color: #343f25;
            color: white;
            width: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            font-weight: 300;
            font-family: 'Georgia', serif;
        }
        
        .content-box {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 25px 30px;
            border-right: 1px solid #343f25;
            text-align: center;
        }
        
        .content-title {
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            color: #343f25;
            margin-bottom: 10px;
            text-decoration: underline;
        }
        
        .content-question {
            font-size: 0.85rem;
            font-weight: bold;
            letter-spacing: 0.08em;
            color: #2d3e2d;
        }
        
        .input-box {
            flex: 1.5;
            padding: 20px;
            display: flex;
            align-items: center;
        }
        
        .input-box textarea {
            width: 100%;
            border: none;
            outline: none;
            resize: none;
            font-size: 0.95rem;
            font-family: 'Georgia', serif;
            color: #2d3e2d;
            background: transparent;
            min-height: 60px;
        }
        
        .lnk-contetn {
            text-align: center;
            font-size: 2.2rem;
            letter-spacing: 0.2em;
            color: rgb(45, 62, 45);
            font-weight: 800;
            display: table;
            margin: 2rem auto 0px;
            border-bottom: 1px solid;
            width: 100%;
        }
        
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
                letter-spacing: 0.2em;
            }
            
            .subtitle {
                font-size: 0.8rem;
                padding: 0 5%;
            }
            
            .goal-row {
                flex-direction: column;
            }
            
            .letter-box {
                width: 100%;
                height: 80px;
                font-size: 3rem;
            }
            
            .content-box {
                border-right: none;
                border-bottom: 1px solid #d4cfc7;
            }
        }



/* Ritual page css end */


