@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Yatra+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Oswald:wght@200..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Yatra+One&display=swap');
: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: "Ubuntu", sans-serif;
  color: #444444;
  font-weight: 400;
  /* overflow-x: hidden; */
  /* max-width: 100vw; */
}

a {
  color: #60c900;
  text-decoration: none;
}

a:hover {
  color: #60c900;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "IBM Plex Sans", 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 #83b541;
  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: #83b541;
  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: #60c900;
  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(24, 24, 24);
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 5px 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Yatra One", system-ui;
  font-weight: 600;
}
#header .logo a {
  color: #fff;
}
#header .logo img {
  max-height: 75px;
}
/* @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: "IBM Plex Sans", 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: #60c900;
}
.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 #60c900;
  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: #60c900;
  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;
  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: #60c900;
}
.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: #60c900;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 30px);
  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.568);
}

.hero-video {
  object-fit: cover;
  min-height: 100vh;
  min-width: 100%;
  width: 100%;
}

#hero .hero-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 100px;
  padding-right: 100px;
  text-align: left;
}

.hero-logo {
  width: 450px;
  margin-bottom: 5px;
  position: relative;
  left: -2.5rem;

}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}
#hero p {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  margin: 0 auto 30px auto;
  color: #fff;
  max-width: 700px;
}

@media (max-width: 600px) {
  #hero p {
    font-size: 18px;
  }
  #hero .hero-container {
    /* height: calc(100vh - 176px); */
    left: 20px;
    padding-right: 20px;
  }
  .hero-logo {
    width: 300px;
  }
}

#hero .btn-get-started {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #60c900;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #60c900;
  background: none;

  border-radius: 20px;

  /* background: rgb(29, 29, 29); */

  /* color: #fff;
  background: #60c900; */
}

#hero .btn-get-started:hover {
  background: #60c900;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# 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 {
  padding-left: 70px;
}
.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 {
  font-size: 28px;
  font-weight: 700;
  color: #394047;
  margin-bottom: 15px;
}
.about .icon-box {
  margin-top: 10px;
}
.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid #60c900;
  border-radius: 50px;
  transition: 0.5s;
}
.about .icon-box .icon i {
  color: #60c900;
  font-size: 24px;
}
.about .icon-box:hover .icon {
  background: #60c900;
  border-color: #60c900;
}
.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;
}
.about .about-media-box {
  background: url("../img/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 200px;
  max-height: 600px;
  margin-top: -25px;
  width: 580px;
  border-radius: 5px;
  box-shadow: 1px 2px 3px #0000003d;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}
.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(242, 135, 5, 0.1);
  padding: 30px;
  width: 100%;
}
.counts .count-box i {
  display: block;
  font-size: 40px;
  color: #60c900;
  float: left;
  margin: -5px 0 0 0;
}
.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #60c900;
  margin-left: 50px;
}
.counts .count-box p {
  padding: 12px 0 0 14px;
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .service-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  height: 100%;
  padding: 40px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}
.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;
}

.services .service-box .icon img {
  width: 200px;
  border-radius: 6px;
}

.services .service-box h3 {
  color: #444444;
  font-weight: 700;
}

.services .service-box h3 small {
  color: var(--green-600);
  font-weight: 600;
  font-size: 16px;
  border: 1px solid var(--green-500);
  border-radius: 20px;
  padding: 3px 10px;
}
.services .service-box .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}
.services .service-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}
.services .service-box.green-herbs {
  border-bottom: 3px solid #004b23;
}
.services .service-box.green-herbs .icon {
  color: #004b23;
  background: #d8f3db;
}
.services .service-box.green-herbs .read-more {
  color: #0c6435;
}
.services .service-box.green-herbs:hover {
  background: #045a2c;
}
.services .service-box.orange {
  border-bottom: 3px solid #f68c09;
}
.services .service-box.orange .icon {
  color: #f68c09;
  background: #fde3c4;
}
.services .service-box.orange .read-more {
  color: #f68c09;
}
.services .service-box.orange:hover {
  background: #f68c09;
}
.services .service-box.green {
  border-bottom: 3px solid #08da4e;
}
.services .service-box.green .icon {
  color: #08da4e;
  background: #cffddf;
}
.services .service-box.green .read-more {
  color: #08da4e;
}
.services .service-box.green:hover {
  background: #08da4e;
}
.services .service-box.red-spices {
  border-bottom: 3px solid #e94a22;
}
.services .service-box.red-spices .icon {
  color: #e94a22;
  background: #f3e8e5;
}
.services .service-box.red-spices .read-more {
  color: #e94a22;
}
.services .service-box.red-spices:hover {
  background: #e94a22;
}
*******
.services .service-box.gum-color {
  border-bottom: 3px solid #cc6f25;
}
.services .service-box.gum-color .icon {
  color: #cc6f25;
  background: #f3e8e5;
}
.services .service-box.gum-color .read-more {
  color: #cc6f25;
}
.services .service-box.gum-color:hover {
  background: #cc6f25;
}
.services .service-box.yellow-seeds {
  border-bottom: 3px solid #ccbd36;
}
.services .service-box.yellow-seeds .icon {
  color: #ccbd36;
  background: #f8f5dd;
}
.services .service-box.yellow-seeds .read-more {
  color: #ccbd36;
}
.services .service-box.yellow-seeds:hover {
  background: #ccbd36;
}
.services .service-box.yellow-oils {
  border-bottom: 3px solid #a0b943;
}
.services .service-box.yellow-oils .icon {
  color: #a0b943;
  background: #f1f7db;
}
.services .service-box.yellow-oils .read-more {
  color: #a0b943;
}
.services .service-box.yellow-oils:hover {
  background: #a0b943;
}
.services .service-box:hover h3,
.services .service-box:hover p,
.services .service-box:hover h3 small,
.services .service-box:hover .read-more {
  color: #fff;
}
.services .service-box:hover h3 small {
  border: 1px solid #fff;
}
.services .service-box:hover .icon {
  background: #fff;
}
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(12, 13, 14, 0.8), rgba(12, 13, 14, 0.8)),
    url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 50px 0;
}
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta p {
  color: #fff;
}
.cta .cta-btn {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 20px;
  background: none;
  border: 2px solid #60c900;
  border-radius: 50px;
  color: #60c900;
}
.cta .cta-btn:hover {
  background: #60c900;
  color: #fff;
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #60c900;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b5df8e;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}
.team .member p a{
  color: #000000;
  transition: all .25s;
}
.team .member p a:hover{
  color: #60c900;
}
.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #60c900;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #60c900;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Certificates
--------------------------------------------------------------*/
.certificates .member {
  text-align: center;
  margin-bottom: 20px;
  min-height: 100% !important;
  /* border: 1px solid #60c900; */
  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: #60c900;
}
.certificates .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.member-info-content {
  margin-top: 10px;
  text-transform: capitalize;
}
.member-info-content a {
  color: #60c900;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.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: #60c900;
  margin-bottom: 5px;
}
.contact .info h4 {
  padding: 0;
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "IBM Plex Sans", sans-serif;
}
.contact .info p {
  font-size: 14px;
}
.contact .php-email-form {
  width: 100%;
  padding: 0 30px;
}
.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 #60c900;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form label {
  font-family: "IBM Plex Sans", sans-serif;
  margin-bottom: 5px;
  color: #777777;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #60c900;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type="submit"] {
  background: #fff;
  border: 2px solid #60c900;
  padding: 10px 35px;
  transition: 0.4s;
  background: #60c900;
  color: #fff;
  border-radius: 25px;
}
.contact .php-email-form button[type="submit"]:hover {
  background: #83b541;
  border: 2px solid #83b541;
}
@media (max-width: 1024px) {
  .contact .php-email-form {
    padding: 30px 15px 15px 15px;
  }
}
@media (max-width: 768px) {
  .contact .php-email-form {
    padding: 15px 0 0 0;
  }
}
@-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;
}
.gum-arabic-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.808), rgba(0, 0, 0, 0.377)),
    url(../img/gum-arabic-1.jpg);
  background-size: cover;
  background-attachment: fixed;
}
@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: #2e3339;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #272c30;
  border-top: 1px solid #394047;
  border-bottom: 1px solid #394047;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
  background: rgb(29, 34, 38);
  border-top: 4px solid #60c900;
  text-align: center;
  padding: 30px 20px;
}
#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  background: #394047;
  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: #60c900;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  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: #60c900;
  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: #60c900;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact p {
  line-height: 26px;
}
#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 .details ::after{
  /* position: relative; */
}
/* .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;
}
