:root {
  /* green color */
  --green-50: #e1ffdf;
  --green-100: #ccff33;
  --green-200: #9ef01a;
  --green-300: #70e000;
  --green-400: #38b000;
  --green-500: #008000;
  --green-600: #007200;
  --green-700: #006400;
  --green-800: #004b23;

  /* text colors */
  --main-text: #303030;
  --dark-text: #000000;
  --light-text: #fefefe;
  --white-bg: #fff;
  --color-black-rgb: 0, 0, 0;

  --color-white: #ffffff;
  --color-white-rgb: 255, 255, 255;

  --color-primary: #38b000;
  --color-default: #1a1f24;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
  overflow-x: hidden;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  /* overflow-x: hidden; */
  /* max-width: 100vw; */
}

a {
  color: #81ba45;
  text-decoration: none;
}

a:hover {
  color: #6ed56a;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", sans-serif;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #d47b07;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 40%;
  width: 30px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #81ba45;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #e26600;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
  /* border-bottom: 3px solid rgb(0, 209, 28); */
  margin-bottom: -66px;
}
#header.header-scrolled,
#header.header-inner-pages {
  background: rgb(0 0 0 / 81%);
  box-shadow: 0px 4px 24px 0px rgba(0, 22, 100, 0.06);
  backdrop-filter: blur(8px);
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 5px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Lato", sans-serif;
}
#header .logo a {
  color: #fff;
}
#header .logo img {
  max-height: 50px;
}
/* @media (max-width: 992px) {
  #header {
    border: 0;
  }
} */

/* ----------------------------------------------------------
# Contact Info Bar
-------------------------------------------------------------*/
.contact-info-bar-container {
  background-color: #25b83d;
  background: url("../img/pattern.svg");
}

.contact-info-item {
  list-style: none;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.contact-info-item a {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
}

@media (max-width: 991px) {
  .contact-info-bar-container {
    display: none;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.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;
  padding: 10px 0 10px 30px;
  /* text-transform: uppercase; */
  font-size: 14px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i,
.navbar a:focus i {
  font-size: 13px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #81ba45;
}
.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: rgb(29, 29, 29);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 20px;
}
.navbar .dropdown ul li {
  min-width: 200px;
  /* padding: 9px 5px; */
  margin: 0px 9px;
}

.navbar .dropdown ul li:hover {
  border: 2px solid #81ba45;
  border-radius: 20px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  color: #ffffff;
}
.navbar .dropdown ul a i {
  font-size: 16px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #81ba45;
  font-weight: 700;
}
.navbar .dropdown:hover > ul {
  opacity: 0.9;
  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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: rgb(202, 202, 202);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  /* overflow: hidden; */
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(34, 39, 43, 0.9);
  transition: 0.3s;
  z-index: 999;
  max-width: 100vw;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  height: 90vh;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: rgb(24, 24, 24);
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #ffffff;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #81ba45;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: rgb(26, 26, 26);
  box-shadow: 0px 0px 30px rgba(59, 59, 59, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #81ba45;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 20px);
  background-color: rgba(51, 75, 61, 0.8);
  overflow: hidden;
  position: relative;
}
#hero .hero,
#hero .hero-inner,
#hero .hero-item,
#hero .hero-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .hero-item::before {
  content: "";
  background-color: rgba(12, 14, 12, 0.685);
}

.hero-video {
  object-fit: cover;
  min-height: 100vh;
  min-width: 100%;
}

#hero .hero-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  text-align: center;
  left: 28%;
}
@media (max-width: 1440px) {
  #hero .hero-container {
    left: 20%;
    top: 50px;
  }
}
@media (max-width: 1320px) {
  #hero .hero-container {
    left: 17%;
    top: 50px;
  }
}
@media (max-width: 1024px) {
  #hero .hero-container {
    left: 10%;
  }
}

@media (max-width: 820px) {
  #hero .hero-container {
    left: 3%;
  }
}
.hero-logo {
  width: 400px;
  margin-bottom: 25px;
}

#hero h2 {
  color: #fff;
  text-align: center;
  font-family: "DG Trika";
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#hero h2 img{
  width: 100%;
}
#hero p {
  color: #fff;
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  max-width: 800px;
  align-self: stretch;
}

@media (max-width: 600px) {
  #hero p {
    font-size: 18px;
  }
  #hero .hero-container {
    /* height: calc(100vh - 176px); */
    left: 0;
    
  }
  .hero-logo {
    width: 300px;
  }
  
}

#hero .btn-get-started {
  display: flex;
  width: 40%;
  height: 56px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 3px;
  border-radius: 80px;
  background: var(--Light-Green, #81ba45);
  color: #fff;
  margin: auto;
}
#hero .btn-get-started:hover {
  background: #81ba45;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
  #hero .btn-get-started {
    width: 60%;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
  
}

.hero-waves {
  display: block;
  width: 100%;
  height: 70px;
  position: absolute;
  bottom: 0;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@media (max-width: 768px) {
  .hero-waves{
    height: 30px;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
}
.product-items-herbs {
  padding: 20px 0 !important;
}

.section-bg {
  background-color: #fafafb;
}

.section-title {
  padding-bottom: 40px;
}
.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: #888;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ff8664;
  margin: 4px 10px;
}
.section-title h3 {
  font-size: 32px;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

@media (max-width: 600px) {
  .section-title {
    margin-left: 20px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .section-title {
  display: flex;
  padding: 16px 10px;
  margin-bottom: 15px;
  justify-content: start;
  align-items: center;
  gap: 16px;
}
.about .section-title h3 {
  padding: 12px 40px;
  border-radius: 40px;
  color: #fff;
  background: var(--Yellow, #e8aa27);
  font-size: 18px;
}
.about .about-text-container {
  margin-top: -80px;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .about .section-title {
    padding-left: 26px;
  }
  .about .about-text-container {
    margin-left: 0px;
    padding-left: 36px;
  }
}
@media (max-width: 600px) {
  .about .section-title {
    margin-left: 0px;
    padding-left: 10px;
  }
  .about .about-text-container {
    margin-left: 0px;
    padding-left: 20px;
  }
}

.about .icon-boxes h3 {
  color: #000;
  font-family: "Open Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 15px;
}
.about .icon-boxes h3 span {
  color: var(--Light-Green, #81ba45);
}
.about .icon-box {
  margin-top: 10px;
}
.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 28px;
  margin-right: 5px;
  border: 2px solid #81ba45;
  border-radius: 50px;
  transition: 0.5s;
}
.about .icon-box .icon i {
  color: #81ba45;
  font-size: 24px;
}
/* .about .icon-box:hover .icon {
  background: #81ba45;
  border-color: #81ba45;
}
.about .icon-box:hover .icon i {
  color: #fff;
} */
.about .icon-box .title {
  margin-left: 65px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}
.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}
.about .icon-box .description {
  margin-left: 65px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}
.counts .count-box {
  display: grid;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.counts .count-box i {
  display: block;
  font-size: 40px;
  color: #81ba45;
  float: left;
  margin: -5px 0 0 0;
}
.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #fda31b;
  margin-top: 12px;
}
.counts .count-box p {
  padding: 12px 0 0 0;
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .service-box {
  height: 100%;
  padding: 0px 0px 25px 0px;
  transition: 0.3s;
  border-radius: 25px;
  box-shadow: 0px 0px 10px 3px #00000014;
}

/* .services .service-box .icon {
  font-size: 36px;
  padding: 20px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
} */
.certificates .section-title h3,
.services .section-title h3 {
  text-align: center;
  color: #006838;
  margin-bottom: 1.5rem;
}
.services .service-box .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.services .service-box .icon img {
  width: 93%;
  height: 220px;
  object-fit: cover;
  margin-top: -28px;
  border-radius: 20px;
}

.services .service-box h3 {
  color: #444444;
  font-weight: 700;
}
.services .service-box p,
.services .service-box h3 {
  padding: 10px 25px;
  margin: 0;
}

.services .service-box p {
  margin-bottom: 10px;
  font-weight: 400;
}

.services .service-box h3 small {
  color: var(--color-primary);
  /* font-weight: 600; */
  font-size: 12px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  padding: 4px 4px 3px 4px;
  position: absolute;
  right: 30px;
}
.services .service-box .read-more {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 7px 25px;
}
.services .service-box .read-more span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.services .service-box .read-more i {
  font-size: 22px;
  margin-left: 5px;
  color: #343330;
}

.products-readmore-btn {
  border-radius: 50px;
  margin: 0 0 10px 10px;
  padding: 5px 5px;
}

.services .service-box:hover h3,
.services .service-box:hover p,
.services .service-box:hover h3 small,
.services .service-box:hover .read-more {
  color: #81ba45;
  cursor: pointer;
}
.services .service-box:hover h3 small {
  border: 1px solid #81ba45;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: url(../img/cta-bg.jpg) center center;
  background-size: cover;
  /* padding: 50px 0; */
  height: 45vh;
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.cta h3 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta p {
  color: #fff;
  font-size: 18px;
}
.cta .cta-btn {
  display: flex;
  width: 313px;
  height: 56px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 80px;
  background: var(--Yellow, #e8aa27);
  color: #fff;
  text-align: center;
  margin: auto;
}
/*--------------------------------------------------------------
# Our Statistics
--------------------------------------------------------------*/
.our-statistics {
  padding: 60px 0;
  position: relative;
  width: 100%;
  background-image: url("../img/statistics.png");
  background-size: cover;
  background-position: center;
  border-bottom: 20px solid transparent;
  border-image: url("../img/grass 1.png") 30 round;
}

.statistic-inner {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 20px;
}
.our-statistics h3 {
  font-size: 32px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 2rem;
}
/*--------------------------------------------------------------
# Certificates
--------------------------------------------------------------*/
.certificates {
  background: url(../img/bg-certificates.png) center center;
  background-size: cover;
}
.certificates .member {
  text-align: center;
  margin-bottom: 20px;
  min-height: 100% !important;
  /* border: 1px solid #81BA45; */
  border-radius: 20px;
  /* background: #343a40; */
  position: relative;
  /* overflow: hidden; */
  /* border-radius: 4px; */
  /* min-height: 100%; */
}

@media only screen and (max-width: 500px) {
  .certificates .member {
    min-height: initial;
  }
}

.certificates .member img {
  min-height: 100% !important;
  min-width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* .certificates .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
} */
/* .certificates .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
} */
/* .certificates .member .member-info-content h4 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
} */
/* .certificates .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
} */
.certificates .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}
.certificates .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
}
.certificates .member .social a:hover {
  color: #fff;
}
.certificates .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.member-info-content {
  margin-top: 10px;
}
.member-info-content a {
  border-radius: 16px;
  background: var(--Yellow, #e8aa27);
  display: flex;
  position: absolute;
  bottom: 10%;
  left: 3%;
  width: 93%;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .member-info-content a{
    bottom: 13%;
    left: 4%;
    padding: 12px;
    gap: 5px;
  }
}
@media only screen and (max-width: 480px){
  .member-info-content a {
    padding: 10px;
    gap: 1px;
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact h3{
  text-align: center;
  font-weight: 800;
  color: #006838;
  font-size: 40px;
}
.contact .section-title p{
  text-align: center;
  width: auto;
  color: #000;
  font-weight: 500;
}
.contact .info {
  padding: 30px 40px;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(112, 84, 22, 0.1);
  text-align: center;
}
.contact .info i {
  font-size: 40px;
  color: #81ba45;
  margin-bottom: 5px;
}
.contact .info h4 {
  padding: 0;
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
}
.contact .info p {
  font-size: 14px;
}
.contact .php-email-form {
  width: 100%;
  padding: 20px 30px;
  background-color: #fff;
  box-shadow: 0px 0px 1px 1px #00000014;
  border-radius: 10px;
}
.contact .php-email-form h2{
  color: var(--Green, #006838);
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.contact .php-email-form  hr{
  width: 30%;
  height: 4px;
  border-radius: 5px;
  color: var(--Yellow, #e8aa27);
  opacity: 1;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #81ba45;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form label {
  font-family: "Lato", sans-serif;
  margin-bottom: 5px;
  color: #000000;
  font-weight: 500;
  font-size: 14px;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
  background-color: #9091910d;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #81ba45;
}
.contact .php-email-form input {
  padding: 10px 15px;
  border: none;

}
.contact .php-email-form textarea {
  padding: 12px 15px;
  border: none;
}
.contact .php-email-form button[type="submit"] {
  background: #fff;
  border: 2px solid #81BA45;
  padding: 10px 35px;
  transition: 0.4s;
  background: #81ba45;
  color: #fff;
  border-radius: 25px;
}
.contact .php-email-form button[type="submit"]:hover {
  background: #81ba45;
}
@media (max-width: 1024px) {
  .contact .php-email-form {
    padding: 30px 15px 15px 15px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .contact .php-email-form {
    margin-bottom: 2rem;
  }
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f7f8f8;
  min-height: 200px;
  margin-top: 65px;
  display: flex;
  align-items: center;
}

.herbs-bg {
  background: linear-gradient(rgba(22, 26, 12, 0.808), rgba(53, 54, 47, 0.377)),
    url(../img/herbs.png);
  background-size: cover;
}

.spices-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.808), rgba(0, 0, 0, 0.377)),
    url(../img/spices.jpg);
  background-size: cover;
}

.seeds-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.808), rgba(0, 0, 0, 0.377)),
    url(../img/seeds.jpg);
  background-size: cover;
}

.vegetables-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.808), rgba(0, 0, 0, 0.377)),
    url(../img/vegetables.jpg);
  background-size: cover;
}

.fruits-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.808), rgba(0, 0, 0, 0.377)),
    url(../img/fruits.jpg);
  background-size: cover;
}

.oils-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.808), rgba(0, 0, 0, 0.377)),
    url(../img/oils.jpg);
  background-size: cover;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}
.breadcrumbs h2 {
  font-size: 48px;
  text-align: center;
  font-weight: 600;
  color: var(--light-text);
  margin-top: 16px;
  margin-bottom: 0;
}

.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: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 20px;
}

.product-dropdown a {
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
}

.product-dropdown a:hover {
  color: #ffffff;
}

.product-dropdown ul li {
  padding: 9px 5px;
  margin: 2px 9px;
}
.product-dropdown ul li:hover {
  border: 2px solid var(--color-primary);
  border-radius: 20px;
}

.dropdown ul li {
  min-width: 200px;
}
.dropdown ul a {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  color: #123b0f;
}
.dropdown ul a i {
  font-size: 16px;
}
.dropdown ul a:hover,
.dropdown ul .active:hover,
.dropdown ul li:hover > a {
  color: #1e8117;
  font-weight: 700;
}
.dropdown:hover > ul {
  opacity: 0.9;
  top: 100%;
  visibility: visible;
}
.dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
/* .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
} */
@media (max-width: 1366px) {
  .dropdown .dropdown ul {
    left: -90%;
  }
  .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: url('../img/Footer.svg') no-repeat no-repeat;
  background-size: cover;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  border-bottom: 1px solid #ffffff70;
  padding: 60px 0 0px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
  
}
#footer .footer-top .footer-info img {
  margin-top: 0.5rem;
 margin-bottom: 1rem;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Lato", sans-serif;
  color: #fff;
  padding: 0 15px;
}
#footer .footer-top .social-links {
  margin-left: 1rem;
}
#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #e8aa27;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #e8aa27;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #e8aa27;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #e8aa27;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact p {
  line-height: 26px;
}
#footer .footer-top .footer-contact a{
  color: #e8aa27;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/* products page */

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.product-item {
  box-shadow: 0px 0px 10px #0000001f;
  border-radius: 30px 30px 2px 2px;
}
.product-items .img {
  border-radius: 30px;
  overflow: hidden;
  /* box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1); */
  border: 2px solid #88a70161;
}
.product-items .img img {
  transition: 1.5s;
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.product-items .details {
  padding: 10px 10px 20px;
  margin: 0px 10px;
  transition: all ease-in-out 0.3s;
  background: var(--color-white);
  position: relative;
  background: rgba(var(--color-white-rgb), 0.9);
  text-align: center;
  border-radius: 8px;
  /* box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1); */
}

/* .product-items-herbs .details {
  padding: 15px 30px 30px 30px;
} */

.product-items .details h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 0 0 10px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}
.product-items .details p {
  line-height: 24px;
  font-size: 14px;
  text-align: left;
  margin-bottom: 0;
}
.product-items .product-item:hover .details h3 {
  color: var(--color-primary);
}
.product-items .product-item:hover .details .icon {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
}
.product-items .product-item:hover .details .icon i {
  color: var(--color-primary);
}
.product-items .product-item:hover .img img {
  transform: scale(1.06);
}

/* extra styles */
.hero-description {
  font-size: 22px;
}

/* organic styles */
.organic-text {
  display: inline-block;
  color: var(--main-text);
  font-weight: 400;
  font-size: 18px;
}

.organic-tag {
  display: inline-block;
  background-color: var(--green-500);
  color: #fff;
  padding: 3px;
  border-radius: 25px;
}

.organic-tag span {
  padding-right: 5px;
  font-weight: 600;
}

.organic-tag i {
  border: 3px solid #fff;
  border-radius: 50%;
  padding: 5px;
}

.small-organic-tag {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 23px;
  border: 3px solid var(--green-500);
  color: var(--green-500);
  background-color: #fff;
  padding: 4px 7px 1px 7px;
  border-radius: 25px;
  margin-bottom: 10px;
  transition: 0.4s;
}
