
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;1,500&display=swap');

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 { font-weight:700}  
  
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  color: rgba(var(--color-primary-rgb), 1); font-family: 'Poppins', sans-serif; font-size:1rem;
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
color: var(--color-links-hover);
text-decoration: none;
}

.mobile-logo { display:none}

#main {margin-top:156px;}
.icon-top2  a {color:#fff;}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding:69px 0;
  overflow: hidden; float:left; width:100%;
}

.section-header {
  border-bottom: 2px solid var(--color-black);
}

.section-header h2 {
  font-size: 50px;
  color: var(--color-black);
}

.section-header p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Page title
--------------------------------------------------------------*/
.page-title {
font-size:1.875rem; text-transform:uppercase;
color:#232323; margin-bottom:45px; background:url(../img/heading-bg.png) no-repeat center top; padding-top:70px;
}


.page-title2 {
font-size:1.875rem; text-transform:uppercase;
color:#232323; margin-bottom:30px; background:url(../img/heading-bg2.png) no-repeat left top; padding-top:70px; text-align:left
}


/* Form Input Fieldds */
.form-control:active,
.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--color-black);
}

.btn:active,
.btn:focus {
  outline: none;
}

.btn.btn-primary {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.top-bg {background:#6e5b2c; height:40px; line-height:40px; text-align:center; color:#fff}

.header {
transition: all 0.5s;
z-index: 997;
background: #fff;
}
.header  img {transition: .8s all ease;}
.sticked { border-bottom:solid 1px #f6f6f6}
.sticked img { width:45px; transition: .8s all ease;}

.header .logo h1 {
font-size: 30px;
font-weight: 700;
color: var(--color-default);
font-family: var(--font-primary);
}

.icon-top a { font-size:18px;} 
.icon-top a:hover {color:#6e5b2c}

.search-form-wrap {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
  transition: 0.3s all ease;
  visibility: hidden;
  opacity: 0;
}

.search-form-wrap .search-form {
  position: relative;
}

.search-form-wrap .search-form .form-control {
  width: 300px;
  border: none;
  box-shadow: 0 15px 20px -10px rgba(var(--color-black-rgb), 0.1);
  padding-left: 40px;
  padding-right: 40px;
}

.search-form-wrap .search-form .form-control:active,
.search-form-wrap .search-form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.search-form-wrap .search-form .icon {
  position: absolute;
  left: 0;
  top: 7px;
  opacity: 0.5;
  left: 10px;
}

.search-form-wrap .search-form .btn {
  position: absolute;
  top: 2px;
  right: 4px;
  padding: 0;
  margin: 0;
  line-height: 1;
  font-size: 30px;
}

.search-form-wrap .search-form .btn:active,
.search-form-wrap .search-form .btn:focus {
  outline: none;
  box-shadow: none;
}

.search-form-wrap.active {
  visibility: visible;
  opacity: 1;
}

 

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin:10px 0 10px 40px;
    font-family: var(--font-default);
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-default-rgb), 1);
    white-space: nowrap;
    transition: 0.3s;
  }
  
  .logo-mobile a { border:0!important}
  
    .navbar a {border-bottom:solid 2px transparent}

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a { border-bottom:solid 2px #94490b; color:#6e5b2c}

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    margin-left:35px;
    border-radius: 4px;
    color: var(--color-white);
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: var(--color-white);
    background: rgba(var(--color-primary-rgb), 0.8);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-white);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
     border-bottom: solid 2px # 94490b;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.mobile-nav-toggle {
  display: none;
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    padding: 0;
    z-index: 9997;
  }

  .navbar ul {
    display: none;
    position: absolute;
    inset: 55px 15px 15px 15px;
    padding: 10px 0;
    margin: 0;
    border-radius: 10px;
    background-color: var(--color-white);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
   
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    transition: 0.3s;
  }





  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
 color:#6e5b2c
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background: var(--color-white);
    transition: all 0.5s ease-in-out;
    box-shadow: 0px 0px 30px rgba(var(--color-black-rgb), 0.1);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
  }

  .mobile-nav-toggle.bi-x {
    color: var(--color-black);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999;
    color: var(--color-white);
  }

  .mobile-nav-active .navbar {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(var(--color-black-rgb), 0.6);
    transition: 0.3s;
  }

  .mobile-nav-active .navbar>ul {
    display: block;
  }
}




/*Bestseller Products*/
.box-img { background:#f7f5ea; width:100%; padding:40px 40px; min-height:inherit; cursor:pointer; overflow:hidden}
.box-img:hover {background:#f2f2f2}
.product-name  h5 { color:#2d7039; font-size:18px}
.product-name  h4 { color:#494949; font-size:15px; text-transform:capitalize}
.star-yellow {color:#e2af11}
.swiper-button-next, .swiper-button-prev  {width:48px; height:48px; background:#fc963d; text-align:center; line-height:48px; text-align:center; border-radius:100px;}
.swiper-button-next:after, .swiper-button-prev:after { font-size:15px; color:#fff}
.add-to-cart {background:#2d7039;}
.add-to-cart:hover {background:#000;}
.add-to-cart:focus {background:#000;}
.add-to-cart:active {background:#000!important;}
/*Bestseller Products*/



/*about-css*/
.about-css {background: linear-gradient(to right, #fff 30%, #f2f2f2 30%, #f2f2f2 30%); padding:60px 0}
.about--img {margin-left:-180px;}
/*about-css*/


/*Herbal Cream*/ 
.herbal-cream {background:url(../img/herbal-cream.jpg) no-repeat center top #e2eba1; 
padding: 110px 0px 0 0px}
.herbal-cream h2 {font-size:4.5rem; text-transform:uppercase; color:#2d7039; font-weight:700; line-height:4rem; margin-bottom:20px;}
.herbal-cream p {font-size:3rem; line-height:3rem;}
.herbal-cream a {background:#6e5b2c; font-size:24px; padding-left:53px; padding-right:53px}  
/*Herbal Cream*/


/*Blog*/
.blog-top { padding-bottom:50px;}
.blog-box { position:relative}
.blog-box h4 {color:#232323; font-size:18px; margin-top:26px}
.blog-box p {color:#232323; font-size:16px;}
.blog-box {background: linear-gradient(to top, #f7f5ea 55%, #f7f5ea 55%, #fff 55%); padding:30px;  transition: 0.3s;}
.blog-box:hover {background: linear-gradient(to top, #f2f3f1 55%, #f2f3f1 55%, #f2f3f1 55%); padding:30px; cursor:pointer;  transition: 0.3s;}
.box-img2 { overflow:hidden}

.blog-box img {-webkit-transition: all 0.5s linear;
transition: all 0.5s linear;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
.blog-box:hover img {  -webkit-transform: scale3d(1.2, 1.2, 1);
transform: scale3d(1.2, 1.2, 1);}




.box-img2 { overflow:hidden}
.blog-box-in img {-webkit-transition: all 0.5s linear;
transition: all 0.5s linear;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
.blog-box-in:hover img {  -webkit-transform: scale3d(1.1, 1.1, 1);
transform: scale3d(1.1, 1.1, 1);}


 
.arrow-left {background:#6e5b2c; width:40px; height:40px; line-height:40px; text-align:center; display:inline-block; color:#fff; position:absolute; z-index:999; bottom:-20px; font-size:24px}
.arrow-left:hover {background:#2d7039;color:#fff}
.date-css { background:#2d7039; padding:5px 8px; color:#fff; display:inline-block; position:absolute; right:30px;}
.date-css h2 { display:inline-block; font-size:36px; margin:0; padding:0 7px; border-right:solid 2px #fff}
.date-css h3 { display:inline-block; font-size:18px; margin:0; padding:0 7px;}
.swiper-pagination-bullet { width:13px; height:13px;}
/*Blog*/

/*Subscribe*/
.subscribe { padding-top:100px; padding-bottom:100px;
  background: url(../img/subscribe.jpg) no-repeat center top; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

 }
.subscribe h4 { font-size:1.875rem;}
.subscribe input { padding:25px 30px; margin-right:35px;}
.subscribe .btn-success { font-size:20px; padding:0 50px}
/*Subscribe*/


/*product*/
.product-name-2 h5 { font-size:15px; margin-top:15px; min-height:10px; text-transform:capitalize}
.product-name-2 h6 { font-size:1.246rem; color:#6e5b2c; font-weight:600}
.pro-section { position:relative; width:100%; cursor:pointer}
.box-img2 { overflow:hidden}
.pro-section img {-webkit-transition: all 0.5s linear;transition: all 0.5s linear;-webkit-transform: scale3d(1, 1, 1);transform: scale3d(1, 1, 1);}

.pro-section:hover img {-webkit-transform: scale3d(1.1, 1.1, 1);
transform: scale3d(1.1, 1.1, 1);}



.pro-icon {
position: absolute;
left: 0;
right: 0;
margin: 0 auto;
bottom: 0;
text-align: center;
width: 100%;
opacity: 0;
z-index: 99;
background: rgba(0, 0, 0, .4);
top: 0;
transition: 0.3s;
}


.hover-div:hover .pro-icon {opacity:1;  transition: 0.3s;}
.pro-icon a { background:#fff; width:49px; height:49px; border-radius:100%; text-align:center; line-height:54px; display:inline-block; margin:0 5px; font-size:20px;}
.pro-icon a:hover {background:#fc963d; color:#fff;  transition: 0.3s;} 


.link-2 { width:100%!important; height:100%!important; margin:0; padding:0; border-radius:0!important; background:none!important}

.icon-css { position:absolute; bottom:30px; left:0; right:0; width:100%;}

/*product*/


.bg-text {background:#fff; padding:30px; z-index:99; bottom:15px; left:15px; right:15px;}
.bg-text h3 {font-size:1.376875rem; margin:0; padding:0;}
.bg-text .date {color:#999}
.bg-text h3 a:hover {color:#336833}
/*--------------------------------------------------------------
# about
--------------------------------------------------------------*/
.inner-banner {
background: url(../img/header-bg.jpg) no-repeat center top; 
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover; padding:100px 0
}
 
.inner-banner ul { margin:0; padding:0;}
.inner-banner i { display:inline-block;}
.inner-banner li {list-style:none; display:inline-block; color:#fff;}
.inner-banner li a {list-style:none; display:inline-block; color:#fff; font-size:13px;}
.breadcrumb {display:inline-block;}
.breadcrumb li {font-size:12px; color:#fff}
.breadcrumb-item.active {color:#fff}
.breadcrumb-item+.breadcrumb-item::before {color:#fff; content: "\ea6e"; font-family:remixicon!important;font-size:15px;}
.container2 { max-width:1290px}

.breadcrumb-item+.breadcrumb-item::before {padding-right:0;}
.breadcrumb-item+.breadcrumb-item {padding-right:0;}
.breadcrumb-item+.breadcrumb-item {padding-left:0!important;}
.inner-banner h2 {font-size:3.75rem;}
.breadcrumb { border:0;--bs-breadcrumb-margin-bottom:0!important;}
.bg-1 {background: url(../img/bg-1.jpg) no-repeat center top; 
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover; padding-bottom:100px}

.why-choose-us ul { margin:0; padding:0;}
.why-choose-us li { margin:15px 0 25px 0; padding:0 0 0 80px; list-style:none}
.why-choose-us li p {color:#999; margin:0 0 15px 0;}
.why-choose-us li h3 { margin-bottom:15px; font-size:24px;}
.icon-1 { background:url(../img/icon-1.png) no-repeat top left} 
.icon-2 { background:url(../img/icon-2.png) no-repeat top left} 
.icon-3 { background:url(../img/icon-3.png) no-repeat top left} 
/*--------------------------------------------------------------
# about
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.left-side h4 { font-size:20px; font-weight:500; padding-bottom:10px; border-bottom:solid 1px #cacaca; margin-bottom:15px}
.list-css li { line-height:30px}
.list-css li a { line-height:35px; font-weight:500}
.list-css li a:hover {color:#2d7039}
.page-link {color:#2d7039}
.text-green {color:#2d7039}
.add-to-card { background:#2d7039; padding:10px 30px}
.add-to-card:hover { background:#103316; padding:10px 30px}
.add-to-card:active { background:#103316!important}

.input-css-2 i { font-size:20px; color:#011c62; line-height:30px;}
.input-css-2 {background:#eff1f7; padding:3px 10px; border-radius:0;}
.input-css-2 input { font-size:18px}
.nav-tabs { font-size:20px; position:relative}
.nav-tabs::before { width:100%; background:#ebebeb; height:1px; content:""; top:22px; position:absolute; z-index:0}
.nav-tabs .active { color:#2d7039!important }
.nav-tabs .nav-link {color:#999999; position:relative; z-index:99}
.text-danger {color:#f90101!important }
.table>:not(caption)>*>* {padding:1.5rem 1rem;}
.btn-css {background:#f5f5f5; padding:14px 30px; font-weight:600; letter-spacing:.5px; font-size:14px;}
.btn-css:hover {background:#2d7039; color:#fff}
.apply { background:#3e3e3e; font-size:12px; font-weight:600; letter-spacing:1px;}
.apply:hover { background:#447837!important}

.check-out {background:#2d7039; padding:14px 30px; font-weight:600; letter-spacing:.5px; color:#fff; font-size:14px; width:100%;}
.check-out:hover {background:#3e3e3e; color:#fff}

.box-registration .btn {background:#2d7039; color:#fff; width:100%;}
.box-registration .btn:hover {background:#3e3e3e; color:#fff}
.box-boder { border:solid 1px #ebebeb; padding:30px;}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {background:#3e3e3e;}
/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# blog
--------------------------------------------------------------*/
 
.blog-search input {width:250px; padding:10px;} 
.blockquote {border-left:2px solid #2d7039; padding-left:30px; margin-left:30px}
.title-boder { position:relative; }
.title-boder::before { height:2px; background:#498353; width:50px; left:0; right:0; content:""; position:absolute; bottom:-5px;}
/*--------------------------------------------------------------
# blog
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Registration
--------------------------------------------------------------*/
.box-registration { border:solid 3px #ebebeb; border-radius:10px; padding:29px 72px 20px 72px }
.tab2 .nav-item a { background:#f6f6f6; color:#5c5c5d; border-radius:5px!important; padding:15px 40px; 
margin-left:5px; margin-right:5px}
.tab2 .nav-item .active {background:#2d7039; color:#fff}
.input-css { padding:12px; background-color:#f6f6f6; border:solid 1px #ebebeb}

.form-select { padding:12px; background-color:#f6f6f6; border:solid 1px #ebebeb}

.input-css:hover { border:solid 1px #ebebeb; background:#f6f6f6;}
.input-css:hover { border:solid 1px #ebebeb; background:#f6f6f6;}

.box-registration .form-control:active, .box-registration .form-control:focus {
outline: none;
box-shadow: none;
border-color:#ebebeb; background:#f6f6f6;
}

.my-account .form-control:active, .my-account .form-control:focus {
outline: none;
box-shadow: none;
border-color:#ebebeb; background:#f6f6f6;
}


.create-account { padding-top:14px; padding-bottom:14px;}
.btn-forgot  {background: #2d7039;color: #fff;width: 100%;}
.btn-forgot:hover {background: #3e3e3e;color: #fff;}
.try a{color:#999; border-bottom:solid 1px #d6d6d6; padding-bottom:0px}
.try a:hover {color:#2d7039}


/*--------------------------------------------------------------
My Account
--------------------------------------------------------------*/
.nav-pills a { font-size:1.125rem; background:#f5f5f5!important; color:#404040!important; padding:10px 20px 10px 20px; vertical-align:middle; line-height:35px}
.nav-pills a:hover {background:#3d7333!important; color:#fff!important}
.nav-pills .active { background:#3d7333!important; color:#fff!important}
.nav-pills i { float:right; font-size:23px; vertical-align:middle}
.pagination .page-item { margin:0 5px}
.pagination .page-item a { padding:0; width:40px; height:40px; line-height:40px; border-radius:100px; text-align:center}
.pagination .page-item a:hover {background:#336833; color:#fff} 
.pagination .page-item i { font-size:22px;}
.pagination .active {background:#336833; border:solid 1px #336833; color:#fff} 
.page-item:first-child .page-link {border-radius:100px;}
.page-item:last-child .page-link {border-radius:100px;}
/*--------------------------------------------------------------
My Account
--------------------------------------------------------------*/


/*--------------------------------------------------------------
Check out
--------------------------------------------------------------*/
.your-order {background:#f5f5f5; padding:40px;}
/*--------------------------------------------------------------
Check out
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Posts
--------------------------------------------------------------*/
.post-entry-1 {
  margin-bottom: 30px;
}

.post-entry-1 img {
  margin-bottom: 30px;
}

.post-entry-1 h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  font-weight: 500;
}

.post-entry-1 h2 a {
  color: var(--color-black);
}

.post-entry-1.lg h2 {
  font-size: 40px;
  line-height: 1;
}

.post-meta {
  font-size: 13px;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-secondary);
  color:#2d7039;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .custom-border {
    border: none !important;
  }
}

.author .photo {
  margin-right: 10px;
}

.author .photo img {
  width: 40px;
  border-radius: 50%;
  margin-bottom: 0;
}

.author .name h3 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: var(--font-secondary);
}

.trending {
  border: 1px solid rgba(var(--color-black-rgb), 0.1);
}

.trending>h3 {
  color: var(--color-black);
  padding: 20px;
  border-bottom: 1px solid rgba(var(--color-black-rgb), 0.1);
}

.trending .trending-post {
  padding: 0;
  margin: 0;
}

.trending .trending-post li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: block;
}

.trending .trending-post li a {
  display: block;
  padding: 20px;
  border-bottom: 1px solid rgba(var(--color-black-rgb), 0.1);
  position: relative;
  overflow: hidden;
}

.trending .trending-post li a .number {
  position: absolute;
  z-index: -1;
  font-size: 5rem;
  left: -10px;
  top: -20px;
  font-weight: 700;
  color: rgba(var(--color-black-rgb), 0.05);
}

.trending .trending-post li a h3 {
  font-size: 18px;
  color: rgba(var(--color-black-rgb), 0.9);
}

.trending .trending-post li a .author {
  color: rgba(var(--color-black-rgb), 0.7);
  font-weight: 500;
}

.trending .trending-post li a:hover h3 {
  color: rgba(var(--color-black-rgb), 1);
}

.trending .trending-post li:last-child a {
  border-bottom: none;
}

.post-entry-2 {
  margin-bottom: 30px;
}

.post-entry-2 .post-meta {
  font-size: 11px;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-secondary);
  color: rgba(var(--color-black-rgb), 0.4);
  margin-bottom: 10px;
}

.post-entry-2 .author {
  color: rgba(var(--color-black-rgb), 0.7);
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}

.post-entry-2 .thumbnail {
  flex: 0 0 65%;
}

@media (max-width: 960px) {
  .post-entry-2 .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.post-entry-2.half .thumbnail {
  flex: 0 0 50%;
}

@media (max-width: 768px) {
  .post-entry-2.half .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.post-entry-2.small-img .thumbnail {
  flex: 0 0 30%;
}

@media (max-width: 768px) {
  .post-entry-2.small-img .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.img-bg {
  height:800px;
 
  position: relative; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
 
}

@media (max-width: 768px) {
  .img-bg {
    height: 400px;
  }
}

 

.img-bg .img-bg-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  position: relative;
 
}

.img-bg-inner .display-1 { font-size:7.25rem; line-height:7.25rem}
.img-bg-inner .display-2 { font-size:3.125rem}
.img-bg-inner .display-3 { font-size:1.75rem}


@media (max-width: 768px) {
  .img-bg .img-bg-inner {
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 50px;
  }
}

.img-bg .img-bg-inner h2,
.img-bg .img-bg-inner p {
  color: var(--color-white);
}

@media (max-width: 500px) {
  .img-bg .img-bg-inner p {
    display: none;
  }
}

.custom-swiper-button-next,
.custom-swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}

@media (max-width: 768px) {

  .custom-swiper-button-next,
  .custom-swiper-button-prev {
    display: none;
  }
}

.custom-swiper-button-next span,
.custom-swiper-button-prev span {
  font-size: 20px;
  color:#284700;
  transition: 0.3s all ease;
}

.custom-swiper-button-next:hover span,
.custom-swiper-button-next:focus span,
.custom-swiper-button-prev:hover span,
.custom-swiper-button-prev:focus span {
  color:#284700;
}

.custom-swiper-button-next {
  right: 40px; width:48px; height:48px; background:#fff; border-radius:100%; text-align:center; line-height:48px;
}

.custom-swiper-button-prev {
  left: 40px; width:48px; height:48px; background:#fff; border-radius:100%; text-align:center; line-height:48px;
}

.swiper-pagination .swiper-pagination-bullet {
  background-color:#2d7039;
}

.swiper-pagination .swiper-pagination-bullet-active {
   background-color:#6e5b2c;
}

.more {
  font-family: var(--font-secondary);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.more:before {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-black);
}

.post-content {
  padding-left: 10%;
  padding-right: 10%;
}

@media (max-width: 768px) {
  .post-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.post-content .firstcharacter {
  float: left;
  font-family: Georgia;
  font-size: 75px;
  line-height: 60px;
  padding-top: 4px;
  padding-right: 8px;
  padding-left: 3px;
}

.post-content figure {
  position: relative;
  left: 52%;
  min-width: 990px;
  transform: translateX(-50%);
}

@media (max-width: 1255px) {
  .post-content figure {
    min-width: auto;
    left: auto !important;
    transform: none;
  }
}

.post-content figure figcaption {
  font-family: var(--font-secondary);
  font-size: 14px;
  padding: 10px 0 0 0;
}

.aside-title,
.category-title {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--color-black);
}

.category-title {
  border-bottom: none;
}

.custom-pagination a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  font-family: var(--font-secondary);
  margin: 5px;
  transition: 0.3s all ease;
}

.custom-pagination a.active {
  background: var(--color-black);
  color: var(--color-white);
}

.custom-pagination a.active:hover {
  background: rgba(var(--color-black-rgb), 0.9);
}

.custom-pagination a:hover {
  background: rgba(var(--color-black-rgb), 0.1);
}

.custom-pagination a.prev,
.custom-pagination a.next {
  width: auto !important;
  border-radius: 4px;
  padding-left: 10px;
  padding-right: 10px;
}

.custom-pagination a.prev:hover,
.custom-pagination a.next:hover {
  background: rgba(var(--color-black-rgb), 0.1);
}

/* custom tab nav on sidebar */
.aside-block {
  margin-bottom: 30px;
}

.aside-block .custom-tab-nav .nav-item {
  display: inline-block;
}

.aside-block .custom-tab-nav .nav-item button {
  color: var(--color-black);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  margin-right: 20px;
}

.aside-block .custom-tab-nav .nav-item button.active {
  background-color: var(--color-black) !important;
  background-color: transparent !important;
  color: var(--color-black);
  border-bottom: 2px solid var(--color-black);
}

.link-video {
  position: relative;
}

.link-video span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  background-color: rgba(var(--color-black-rgb), 0.2);
  color: var(--color-white);
}

.aside-links li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(var(--color-black-rgb), 0.1);
}

.aside-links li a {
  display: block;
  color: rgba(var(--color-black-rgb), 0.7);
}

.aside-links li a:hover,
.aside-links li a:focus {
  color: rgba(var(--color-black-rgb), 1);
}

.aside-tags li {
  display: inline-block;
}

.aside-tags li a {
  display: inline-block;
  color: rgba(var(--color-black-rgb), 0.7);
  padding:5px 10px;
  margin-bottom: 3px;
  transition: 0.3s all ease; background:#f5f5f5; font-size:12px; text-transform:uppercase;
}

.aside-tags li a:hover,
.aside-tags li a:focus {color:#fff; background:#5c7c27}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comment {
  /* Font not working in <textarea> for this version of bs */
}

.comment .avatar {
  position: relative;
  display: inline-block;
  width: 3rem;
  height: 3rem;
}

.comment .avatar-img,
.comment .avatar-initials,
.comment .avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.comment .avatar-img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.comment .avatar-initials {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  line-height: 0;
  background-color: rgba(var(--color-black-rgba), 0.1);
}

.comment .avatar-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(var(--color-black-rgba), 0.1) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='%23fff' d='M10 9a3 3 0 100-6 3 3 0 000 6zm-7 9a7 7 0 1114 0H3z'/%3e%3c/svg%3e") no-repeat center/1.75rem;
}

.comment .avatar-indicator {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20%;
  height: 20%;
  display: block;
  background-color: rgba(var(--color-black-rgba), 0.1);
  border-radius: 50%;
}

.comment .avatar-group {
  display: inline-flex;
}

.comment .avatar-group .avatar+.avatar {
  margin-left: -0.75rem;
}

.comment .avatar-group .avatar:hover {
  z-index: 1;
}

.comment .avatar-sm,
.comment .avatar-group-sm>.avatar {
  width: 2.125rem;
  height: 2.125rem;
  font-size: 1rem;
}

.comment .avatar-sm .avatar-placeholder,
.comment .avatar-group-sm>.avatar .avatar-placeholder {
  background-size: 1.25rem;
}

.comment .avatar-group-sm>.avatar+.avatar {
  margin-left: -0.53125rem;
}

.comment .avatar-lg,
.comment .avatar-group-lg>.avatar {
  width: 4rem;
  height: 4rem;
  font-size: 1.5rem;
}

.comment .avatar-lg .avatar-placeholder,
.comment .avatar-group-lg>.avatar .avatar-placeholder {
  background-size: 2.25rem;
}

.comment .avatar-group-lg>.avatar+.avatar {
  margin-left: -1rem;
}

.comment .avatar-light .avatar-indicator {
  box-shadow: 0 0 0 2px rgba(var(--color-white-rgba), 0.75);
}

.comment .avatar-group-light>.avatar {
  box-shadow: 0 0 0 2px rgba(var(--color-white-rgba), 0.75);
}

.comment .avatar-dark .avatar-indicator {
  box-shadow: 0 0 0 2px rgba(var(--color-black-rgba), 0.25);
}

.comment .avatar-group-dark>.avatar {
  box-shadow: 0 0 0 2px rgba(var(--color-black-rgba), 0.25);
}

.comment textarea {
  font-family: inherit;
}

.comment .comment-replies-title,
.comment .comment-title {
  text-transform: uppercase;
  color: var(--color-black) !important;
  letter-spacing: 0.1rem;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
}

.comment .comment-meta .text-muted,
.comment .reply-meta .text-muted {
  font-family: var(--font-secondary);
  font-size: 12px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-item {
  text-align: center;
}

.contact .info-item i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.contact .info-item address,
.contact .info-item p {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.accordion-button {font-weight:600}
.accordion-button:not(.collapsed) {color:#232323; background-color:#f2f2f2;}
.accordion-button:focus {box-shadow: none;}


/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
font-size: 16px;
color: rgba(var(--color-white-rgb));
background: url(../img/footer-bg.jpg) no-repeat center top #2d7039; 
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;}

.footer a.footer-link-more {
  color: rgba(var(--color-white-rgb), 0.7);
  display: inline-block;
  position: relative;
}

.footer a.footer-link-more:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-white);
}

.footer a.footer-link-more:hover {
  color: rgba(var(--color-white-rgb), 1);
}

.footer .footer-heading {
  color: var(--color-white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 18px; 
}

.footer .footer-blog-entry li {
  margin-bottom: 20px;
  display: block;
}

.footer .footer-blog-entry li a .post-meta {
  font-size: 10px;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--font-secondary);
  color: rgba(var(--color-white-rgb), 0.4);
  margin-bottom: 0px;
}

.footer .footer-blog-entry li a img {
  flex: 0 0 50px;
  width: 50px;
}

.footer .footer-links li {
  margin-bottom: 10px;
}

.footer .footer-links li a {
  color: rgba(var(--color-white-rgb), 1);
}

.footer .footer-links li a:hover,
.footer .footer-links li a:focus {
  color:#fc963d
}

.footer .footer-links li .bi-chevron-right { font-size:10px;}

.footer .footer-legal {background:#2d7039;padding:10px 0;}

.footer .footer-legal .social-links a {
text-align: center;
display: inline-block;
width:30px; height:30px;
color: var(--color-white);
line-height: 30px; vertical-align:middle
}
.footer .footer-legal .social-links a:hover { color:#000;} 

.footer-content  {padding-bottom:50px}
.orange-btn {background:#fc963d}
.orange-btn:hover {background:#142d17;}
 
.btn-banner { background:#f9dcb5; color:#284700; padding:10px 43px; font-size:24px; letter-spacing:1px;}
.btn-banner:hover { background:#6e5b2c!important; color:#fff!important}  
.btn-banner:active { background:#6e5b2c!important; color:#fff!important}  

.green-btn {background:#2d7039}
.green-btn:hover {background:#142d17;}
.video-icon { width:100%; height:100%; position:absolute; left:0; right:0; top:0; text-align:center; padding:23% 0 23% 0}
.video-icon a { display:block}
.caption-style-4:hover img{
opacity: 1;
transform: scale(1.1,1.1);
-webkit-transform:scale(1.1,1.1);
-moz-transform:scale(1.1,1.1);
-ms-transform:scale(1.1,1.1);
-o-transform:scale(1.1,1.1); 
}

.caption-style-4 img{
margin: 0px;
padding: 0px;
float: left;
z-index: 4; height:250px;
}

.caption-style-4 img{
-webkit-transition:all 0.25s ease-in-out;
-moz-transition:all 0.25s ease-in-out;
-o-transition:all 0.25s ease-in-out;
-ms-transition:all 0.25s ease-in-out;
transition:all 0.25s ease-in-out;
}



.img-h {height:545px;  object-fit: fill;}

.btn-css2 {background:#6e5b2c!important;}

@media (min-width: 1024px) {
.box-css-gift {width:120%; padding:30px;}
}

@media (max-width: 1023px) {
.box-css-gift {width:100%; padding:30px;}
}



.testimonial {min-height:150px; position:relative; padding:0 0 0}

.testimonial .ri-double-quotes-l { font-size:30px; color:#2d7039; float:left; margin-top:-20px;}

.testimonial .ri-double-quotes-r { font-size:30px; color:#2d7039; float:right}

.terms-conditions ol { margin:0; padding:0;}
.terms-conditions li { margin:0 0 20px 0; padding:0;}

.returns ul { margin:0; padding:0;}
.returns li { position:relative}
.returns li { margin:0; padding:1px 0 11px 30px; list-style:none}

.returns li:before {content: "\f133"; 
display: inline-block; left:0; font-size:20px;
font-family: bootstrap-icons !important;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; position:absolute; color:#2d7039; top: -4px;} 

.copyright a {color:#fff}



          
.list-ul  ul { margin:0; padding:0;}
.list-ul  li  { margin:10px 0 10px 0; padding:0 0 0 40px; list-style:none; position:relative}
.list-ul  li i {background:#2d7039; color:#fff;
 width:28px; height:28px; line-height:28px; text-align:center; display:inline-block; border-radius:100px; position:absolute; left:0;}
		  
		  




 