@font-face {
  font-family: kalam;
  src: url(../fonts/Kalam-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: kalam;
  src: url(../fonts/Kalam-Light.ttf);
  font-weight: 300;
}

@font-face {
  font-family: kalam;
  src: url(../fonts/Kalam-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins-Medium.ttf);
  font-weight: 600;
}

@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins-SemiBold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins-Bold.ttf);
  font-weight: 800;
}

:root {
  --veg-font: "Poppins";
  --veg-font-two: "kalam";
  --veg-gray: #757873;
  --veg-gray-rgb: 117, 120, 115;
  --veg-white: #ffffff;
  --veg-white-rgb: 255, 255, 255;
  --veg-base: #639b42;
  --veg-base-rgb: 31, 99, 6;
  --veg-black: #0e2207;
  --veg-black-rgb: 14, 34, 7;
  --veg-primary: #f26c25;
  --veg-primary-rgb: 255, 205, 30;
  --veg-extra: #ecf39e;
  --veg-extra-rgb: 248, 246, 241;
  --veg-bdr-radius: 10px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}
.hideItem {
  display: none;
}


body.locked {
	overflow: hidden;
}

body {
  font-family: var(--veg-font);
  color: var(--veg-gray);
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--veg-gray);
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--veg-font);
}

p {
  font-size: 18px;

  color: #000000;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  border-color: var(--veg-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--veg-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--veg-base);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--veg-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;

  color: var(--veg-white);
  font-size: 18px;
  font-weight: 600;
  padding-top: 7px;
  padding-bottom: 8px;
  padding-left: 30px;
  padding-right: 30px;

  border-radius: 32px;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
}

.thm-btn::before {
  position: absolute;
  content: "";
  background-color: var(--veg-black);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 0px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}

.thm-btn:hover {
  color: var(--veg-white);
  font-weight: 500;
}

.thm-btn:hover:before {
  height: 380%;
}

.section-title {
  position: relative;
  display: block;
  margin-top: -8px;
}

.section-title__tagline {
  font-size: 22px;
  text-align: left;
  font-family: var(--veg-font-two);
  color: var(--veg-primary);
  font-weight: 400;
}

.section-title__title {
  margin: 0;
  color: var(--veg-black);
  font-size: 30px;
  line-height: 45px;
  font-weight: 700;
  margin: 10px 0;

  text-transform: uppercase;
}
.section-title__title img {
  position: absolute;
  right: 230px;
  top: 15px;
}

.section-title__icon {
  position: relative;
  display: inline-block;
}

.section-title__icon img {
  width: auto;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show > .btn-light.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--veg-primary);
  color: #fff;
}

.bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--veg-base);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu > li > a:hover {
  background: var(--veg-black);
  color: var(--veg-white);
  cursor: pointer;
}
/* 
.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(../images/resources/vegLogo.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
} */

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 99;
}

.main-header__wrapper {
  position: relative;
  display: block;
  padding: 0px 40px 0px;
  background-color: rgb(255, 255, 255);
  /* box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07); */
}

.main-header__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.main-header__logo {
  display: block;
}

.main-header__logo img {
  width: 4rem;
}
.main-header__menu-box {
  display: block;
}

.main-header__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-list li + li {
  margin-left: 15px;
}

.main-header__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  top: 1px;
}

.main-header__contact-list li .icon i {
  position: relative;
  display: inline-block;
  font-size: 12px;
  color: var(--veg-primary);
}

.main-header__contact-list li .text {
  margin-left: 10px;
}

.main-header__contact-list li .text p {
  font-size: 14px;
  font-weight: 500;
  color: var(--veg-white);
  line-height: 14px;
}

.main-header__contact-list li .text p a {
  color: var(--veg-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__contact-list li .text p a:hover {
  color: var(--veg-primary);
}

.main-header__social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--veg-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__social a:hover {
  color: var(--veg-primary);
}

.main-header__social a + a {
  margin-left: 25px;
}

.main-header__menu-box-bottom {
  display: block;
}

.main-menu {
  display: block;
}

.main-menu__wrapper {
  display: block;
}

.main-menu__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 40px;
}

.main-menu__left {
  display: block;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__right {
  position: relative;
  display: block;
  margin-left: 260px;
}

.main-menu__search-cart-btn-box {
  display: flex;
  align-items: center;
  padding: 23.5px 0;
}

.main-menu__search-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 20px;
  padding: 9.5px 0;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 25px;
  color: var(--veg-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--veg-base);
}

.main-menu__search:after {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -30px;
  width: 1px;
  background-color: #ece9e0;
}

.main-menu__cart-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 9.5px 0;
}

.main-menu__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 25px;
  color: var(--veg-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__cart:hover {
  color: var(--veg-base);
}

.main-menu__btn-box {
  position: relative;
  display: block;
  margin-left: 30px;
}

.main-menu__btn {
  padding-right: 8px;
  font-size: 13px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.main-menu__btn i {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  line-height: 30px;
  font-size: 11px;
}

.main-header__phone-contact-box {
  position: relative;
  display: block;
  max-width: 145px;
  width: 100%;
}

.main-header__call-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 122px;
  width: 122px;
  border-radius: 50%;
  left: 12px;
}

.main-header__call-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #eeece4;
  top: 0;
  left: 0;
  border-radius: 50%;
  animation: videoBtnAnim 3s ease-in infinite;
}

.main-header__call-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  width: 75px;
  border-radius: 50%;
}

.main-header__call-inner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #eeece4;
  top: 0;
  left: 0;
  border-radius: 50%;
  animation: videoBtnAnim 5s ease-in-out infinite;
}

@keyframes videoBtnAnim {
  0%,
  100% {
    transform: scale(0.85);
  }

  25%,
  75% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.main-header__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid var(--veg-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__call-box:hover .main-header__call-icon {
  background-color: var(--veg-base);
}

.main-header__call-icon span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--veg-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__call-box:hover .main-header__call-icon span {
  color: var(--veg-white);
}

.main-header__phone-number {
  position: absolute;
  top: 3px;
  left: 50%;
  right: 0;
  width: 100%;
  background-color: var(--veg-base);
  text-align: center;
  border-radius: 5px;
  padding: 0px 0;
  transform: translateX(-50%) translateY(-70%);
  transition: 500ms ease;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}

.main-header__phone-contact-box {
  cursor: pointer;
}

.main-header__phone-contact-box:hover .main-header__phone-number {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0%);
}

.main-header__phone-number:hover {
  background-color: var(--veg-primary);
}

.main-header__phone-number:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 5px solid var(--veg-base);
  transform: translateX(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__phone-number:hover:before {
  border-top: 5px solid var(--veg-primary);
}

.main-header__phone-number a {
  font-size: 13px;
  color: var(--veg-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__phone-number:hover a {
  color: var(--veg-black);
}

.stricky-header .main-menu__wrapper-inner {
  padding-right: 40px;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list > li > ul,
  .main-menu .main-menu__list > li > ul > li > ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list > li > ul,
  .stricky-header .main-menu__list > li > ul > li > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
  padding-top: 30.5px;
  padding-bottom: 30.5px;
  position: relative;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
  margin-left: 75px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  font-size: 1.05rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--veg-gray);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
  color: var(--veg-black);
  text-shadow: 0.3px 0 0 rgba(14, 34, 7, 0.8);
}

.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease,
    -webkit-transform 700ms ease;
  z-index: 99;
  background-color: rgb(255, 255, 255);
  padding: 31px 20px 31px;
  border-bottom-left-radius: var(--veg-bdr-radius);
  border-bottom-right-radius: var(--veg-bdr-radius);
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list > li > ul > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul > li > ul {
  display: none;
}

.main-menu .main-menu__list > li:hover > ul,
.main-menu .main-menu__list > li > ul > li:hover > ul,
.stricky-header .main-menu__list > li:hover > ul,
.stricky-header .main-menu__list > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list > li > ul > li,
.main-menu .main-menu__list > li > ul > li > ul > li,
.stricky-header .main-menu__list > li > ul > li,
.stricky-header .main-menu__list > li > ul > li > ul > li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list > li > ul > li + li,
.main-menu .main-menu__list > li > ul > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li > ul > li + li {
  border-top: none;
  margin-top: 10px;
}

.main-menu .main-menu__list > li > ul > li > a,
.main-menu .main-menu__list > li > ul > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > ul > li > a {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: var(--veg-gray);
  letter-spacing: 0;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 20px 5px;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--veg-white);
  border-radius: var(--veg-bdr-radius);
}

.main-menu .main-menu__list > li > ul > li:hover > a,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a {
  background-color: var(--veg-extra);
  color: var(--veg-black);
  text-shadow: 0.3px 0 0 rgba(14, 34, 7, 0.8);
}

.main-menu .main-menu__list > li > ul > li > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li > a::before,
.stricky-header .main-menu__list > li > ul > li > a::before,
.stricky-header .main-menu__list > li > ul > li > ul > li > a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  font-size: 14px;
  color: var(--veg-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list > li > ul > li:hover > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a::before,
.stricky-header .main-menu__list > li > ul > li:hover > a::before,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-three__main-menu-box .main-menu__list > .megamenu,
.main-menu-two__main-menu-box .main-menu__list > .megamenu,
.main-menu__wrapper .main-menu__list > .megamenu {
  position: static;
}

.main-menu-three__main-menu-box .main-menu__list > .megamenu > ul,
.main-menu-two__main-menu-box .main-menu__list > .megamenu > ul,
.main-menu__wrapper .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
  padding: 0;
}

.main-menu-three__main-menu-box .main-menu__list > .megamenu > ul > li,
.main-menu-two__main-menu-box .main-menu__list > .megamenu > ul > li,
.main-menu__wrapper .main-menu__list > .megamenu > ul > li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease,
    -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--veg-base);
  cursor: pointer;
}

.mobile-nav__buttons a + a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--veg-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--veg-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--veg-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--veg-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--veg-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list > li > a > .main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--veg-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content
  .main-menu__list
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a.expanded {
  color: var(--veg-base);
}

.mobile-nav__content .main-menu__list > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
  width: 30px;
  height: 30px;
  background-color: var(--veg-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a
  > button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--veg-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--veg-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--veg-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a + a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--veg-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--veg-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li + li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--veg-base);
}

.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--veg-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/* scrollBar */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--veg-primary);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--veg-base);
}

/* Main header */

.mainHeader {
  background-image: url(../images/home/bgShape2.png);
  background-repeat: no-repeat;
  background-size: 100vw;
  padding: 20px 0 65px;
  background-position-y: -35px;
}
.mainHeader .row {
  align-items: center;
}

.mainHeader .thm-btn {
  color: var(--veg-primary);
  padding-left: 0;
  margin-top: 10px;
}

.mainHeader .thm-btn:hover {
  color: var(--veg-white);
  font-weight: 500;
  padding-left: 30px;
}

.swiper-slide:nth-child(3) {
  margin-top: 90px;
}

.headerIntro {
  text-align: left;
}

.service-box {
  background-image: url(../images/Test/backGroundService.svg);
  background-size: 335px;
  background-position: left top;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
.service-icon {
  width: 100%;
  height: 220px;
  padding: 20px;
  text-align: center;
  transition: all 0.5s ease;
}

.service-content {
  background-image: url(../images/Test/backGroundService.svg);
  background-size: 335px;
  background-position: left top;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  width: 100%;
  height: 220px;
  padding: 20px;
  text-align: center;
  transition: all 0.5s ease;
  background-color: #132a13;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform: translateY(110px) rotateX(-90deg);
  -moz-transform: translateY(110px) rotateX(-90deg);
  -ms-transform: translateY(110px) rotateX(-90deg);
  -o-transform: translateY(110px) rotateX(-90deg);
  transform: translateY(110px) rotateX(-90deg);
}
.service-box .service-icon .front-content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.service-box .service-icon .front-content h3 {
  font-size: 30px;
  font-family: var(--veg-font-two);
  color: #fff;
  font-weight: 600;
  text-align: left;
  margin-top: 15px;
  text-transform: uppercase;
}
.service-box .service-icon .front-content h3 span {
  font-size: 20px;
}
.service-box .service-content h3 {
  font-size: 30px;
  font-family: var(--veg-font-two);

  font-weight: 700;
  color: var(--veg-extra);
  margin: 20px 0 10px;
  text-transform: uppercase;
}

.service-box .service-content p {
  color: white;
  font-size: 15px;
}
.orange {
  background-color: var(--veg-primary);
}
.green {
  background-color: var(--veg-base);
}

.service-box:hover .service-icon {
  opacity: 0;
  -webkit-transform: translateY(-110px) rotateX(90deg);
  -moz-transform: translateY(-110px) rotateX(90deg);
  -ms-transform: translateY(-110px) rotateX(90deg);
  -o-transform: translateY(-110px) rotateX(90deg);
  transform: translateY(-110px) rotateX(90deg);
}
.service-box:hover .service-content {
  opacity: 1;
  -webkit-transform: rotateX(0);
  -moz-transform: rotateX(0);
  -ms-transform: rotateX(0);
  -o-transform: rotateX(0);
  transform: rotateX(0);
}

.about-one {
  position: relative;
  display: block;
  padding: 35px 0 25px;
  z-index: 1;
}



/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
	position: relative;
	display: block;
	border-bottom: 1px solid #ece9e0;
}

.brand-one__inner {
	position: relative;
	display: block;
	padding: 5px 0 60px;
}

.brand-one__shape-1 {
	position: absolute;
	top: 0;
	left: 0;
}

.brand-one__shape-1 img {
	width: auto;
}

.brand-one__shape-2 {
	position: absolute;
	top: -50px;
	right: 0;
}

.brand-one__shape-2 img {
	width: auto;
}

.brand-one__carousel {
	position: relative;
	display: block;
}

.brand-one__single {
	position: relative;
	display: block;
	text-align: center;
	line-height: 0;
	z-index: 1;
}

.brand-one__single:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--veg-extra);
	border-radius: var(--veg-bdr-radius);
	opacity: 0;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	z-index: -1;
}

.brand-one__single:hover:before {
	opacity: 1;
}

.brand-one__img {
	position: relative;
	display: inline-block;
	z-index: 10;
}

.brand-one__img > img {
	position: relative;
	-webkit-transition: 500ms;
	transition: 500ms;
	opacity: 0.2;
}

.brand-one__single:hover .brand-one__img > img {
	opacity: 0.6;
}


/*--------------------------------------------------------------
# Healthy Food
--------------------------------------------------------------*/
.healthy-food-one {
	position: relative;
	display: block;
	padding: 0 0 12rem;
	z-index: 1;
}

.healthy-food-one__bg {
	position: absolute;
	bottom: 120px;
	left: -77px;
	width: 824px;
	height: 342px;
	opacity: 0.1;
	background-position: bottom center;
	background-repeat: no-repeat;
	z-index: 2;
}

.healthy-food-one__left {
	position: relative;
	display: block;
	margin-right: 100px;
}

.healthy-food-one__img {
	position: relative;
	display: block;
	z-index: 2;
}

.healthy-food-one__img::before {
	position: absolute;
	content: "";
	top: 40px;
	bottom: 40px;
	right: -20px;
	width: 20px;
	background-color: var(--veg-primary);
	border-top-right-radius: var(--veg-bdr-radius);
	border-bottom-right-radius: var(--veg-bdr-radius);
	z-index: -1;
}

.healthy-food-one__img img {

	border-radius: var(--veg-bdr-radius);
}

.healthy-food-one__right {
	position: relative;
	display: block;
}

.healthy-food-one .section-title {
	margin-bottom: 27px;
}

.healthy-food-one__list {
	position: relative;
	display: flex;
	align-items: center;
	margin-top: 43px;
}

.healthy-food-one__single {
	position: relative;
	display: block;
	text-align: center;
	max-width: 170px;
	width: 100%;

	padding: 27px 0 25px;
	z-index: 1;
}

.healthy-food-one__single:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: "";
	background-color: var(--veg-black);
	border-radius: var(--veg-bdr-radius);
	transform: scale(0, 1);
	transition: all 600ms ease;
	-moz-transition: all 600ms ease;
	-webkit-transition: all 600ms ease;
	-ms-transition: all 600ms ease;
	-o-transition: all 600ms ease;
	z-index: -1;
}

.healthy-food-one__single:hover:before {
	transform: scale(1, 1);
}

.healthy-food-one__single:hover {
	border: none;
}

.healthy-food-one__single + .healthy-food-one__single {
	margin-left: 30px;
}

.healthy-food-one__content {
	position: relative;
	display: block;
}

.healthy-food-one__icon {
	position: relative;
	display: block;
	margin-bottom: 4px;
}

.healthy-food-one__icon span {
	position: relative;
	display: inline-block;
	font-size: 64px;
	color: var(--veg-base);
	transition: all 500ms linear;
	transition-delay: 0.1s;
}

.healthy-food-one__single:hover .healthy-food-one__icon span {
	transform: scale(0.9);
	color: var(--veg-extra);
}

.healthy-food-one__title {
	font-size: 25px;
	font-weight: 700;
	color: var(--veg-black);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.healthy-food-one__content small {
	font-size: 15px;
	font-weight: 500;
	color: var(--veg-base);
}

.healthy-food-one__single:hover .healthy-food-one__title {
	color: var(--veg-white);
}

/* .productPhotos {
    margin-bottom: 100px;
}

.productPhotos img {
	
	filter:blur(1px);
	border-radius: 10px;
}

.productPhotos img:hover {
    transition: .35s ease-in-out;
    box-shadow: -1px 1px 7px -1px #252525;
    border-radius:0;

    filter: none;
}

.button {
	font-size: 34px;
    color: #000000;
    position: relative;
    bottom: 50%;
    text-align: center;
	opacity: 0;

}

.productPhotos  .button:hover {
	opacity: 1;

} */

.productPhotos {
  margin-bottom: 150px;
  position: relative;
}

.productPhotos img {
  filter: blur(1px);
  border-radius: 10px;
}

.productPhotos img:hover {
  transition: 0.35s ease-in-out;
  box-shadow: -1px 1px 7px -1px #252525;
  border-radius: 0;
  filter: none;
}

.button {
  font-size: 34px;
  color: #000000;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  text-align: center;
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}

.productPhotos:hover .button {
  opacity: 1;
}

.button .thm-btn {
  background-color: var(--veg-primary);
}
.button .thm-btn:hover {
  transform: scale(1.09);
}

.button .thm-btn::before {
  background-color: var(--veg-base);
}

.omgOne {
  position: relative;
  z-index: 2;
}

.omgImg {
  position: relative;
  z-index: 1;
}

.productFilter {
  background-image: url(../images/home/_bg_1.png);
  background-size: cover;
  padding-bottom: 100px;
}

.filter .nav-link {
  height: 36px;
  padding: 0 25px;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  background: #fff;
  margin-right: 10px;
  font-size: 15px;
}
.filter .nav-link:hover {
  color: var(--veg-black);
}

.nav-item .active {
  color: white;
  background-color: var(--veg-primary);
}

.wrapper {
  width: 300px;
  height: 375px;
  background: white;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0;
  transform: scale(0.95);
  transition: box-shadow 0.5s, transform 0.5s;
  margin-bottom: 50px;
}
.wrapper:hover {
  transform: scale(1);
  box-shadow: 5px 20px 30px rgba(0, 0, 0, 0.2);
}
.wrapper .container {
  width: 100%;
  height: 100%;
}
.wrapper .container .top {
  height: 80%;
  width: 100%;
  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
}
.wrapper .container .top img {
  height: 100%;
}
.wrapper .container .bottom {
  width: 100%;

  transition: transform 0.5s;
}
.wrapper .container .bottom.clicked {
  transform: translateX(-50%);
}
.wrapper .container .bottom h1 {
  margin: 0;
  padding: 0;
}
.wrapper .container .bottom p {
  margin: 0;
  padding: 0;
}

.wrapper .inside {
  z-index: 9;
  background: var(--veg-base);
  width: 120px;
  height: 120px;
  position: absolute;
  top: -70px;
  right: -70px;
  border-radius: 0px 0px 200px 200px;
  transition: all 0.5s, border-radius 2s, top 1s;
  overflow: hidden;
  filter: opacity(0.9);
}
.wrapper .inside .icon {
  position: absolute;
  right: 82px;
  font-size: 18px;
  top: 75px;

  color: white;
  opacity: 1;
}
.wrapper .inside:hover {
  width: 100%;
  right: 0;
  top: 0;
  border-radius: 0;
  height: 80%;
}
.wrapper .inside:hover .icon {
  opacity: 0;
  right: 15px;
  top: 15px;
}
.wrapper .inside:hover .contents {
  opacity: 1;
  transform: scale(1);
  transform: translateY(0);
}
.wrapper .inside .contents {
  padding: 5%;
  opacity: 0;
  transform: scale(0.5);
  transform: translateY(-200%);
  transition: opacity 0.2s, transform 0.8s;
}
.wrapper .inside .contents table {
  text-align: left;
  width: 100%;
}
.wrapper .inside .contents h1,
.wrapper .inside .contents p,
.wrapper .inside .contents table {
  color: white;
}
.wrapper .inside .contents p {
  font-size: 13px;
}

.productData h4 {
  color: #f26c25;
  font-weight: 600;
  font-family: "NotoSansLaoLooped";
}

.productData h6 {
  color: #777777;
  font-size: 18px;
}

.progressStepsSection .section-title__tagline {
  text-align: center;
}

.scrollItem button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: fixed;
  bottom: 800px;
  right: 330px;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: 0.9s;
  background-color: var(--veg-primary);
  border: none;
  box-shadow: 0px 0px 2px 5px #f5bea1;
  font-size: 30px;
  text-align: center;
  line-height: 0;
}

.scrollItem button:hover {
  color: #fff;
  transform: scale(1.2);
}

.scrollItem button.active {
  visibility: visible;
  opacity: 1;
  bottom: 40px;
  right: 40px;
}

.float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 115px;
  right: 40px;
  background-color: #639b42;
  box-shadow: 0px 0px 2px 5px #a0d184;

  border-radius: 50px;
  text-align: center;
  transition: 0.9s;
  z-index: 100;
  color: #000;
}

.my-float {
  font-size: 30px;
}
.float i {
  padding: 10px 0 0;
}
.float:hover {
  transform: scale(1.2);
  color: #fff;
}

/* .tool-tip {
	width: 125px;
	height: 50px;
	position: absolute;
	top: -50px;
	left: 50%;
	border-radius: 50px;
	background-color: #333;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 11px;
	line-height: 50px;
	color: #fff;
	text-align: center;
	transform: translateX(-50%) scale(0);
	transform-origin: bottom center;
	transition: all 0.4s cubic-bezier(1, 0, 0.4, 1);
  }
  .tool-tip:after {
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #333;
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	bottom: -10px;
	transform: translateX(-50%);
  } */

a[data-tool-tip]::after {
  content: attr(data-tool-tip);
  position: absolute;
  display: block;
  background: var(--veg-primary);
  padding: 10px 15px;
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
  border-radius: 100px;
  bottom: 0;
  right: 50px;
  transform: scale(0);
  transition: all 0.15s ease-in-out 0.1s;
  opacity: 0;
}

a[data-tool-tip]:hover::after {
  transform: scale(1);
  bottom: 120%;
  opacity: 0.9;
}

.vegetablesHome {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 30px;
}
.vegetablesHome img {
  /* width: 30%; */
  margin-top: 20px;
}

.fruitsHome {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 30px;
}
.fruitsHome img {
  /* width: 35%; */
  margin-top: 20px;
}

/* about page */
.page-header {
  position: relative;
  display: block;
  /* padding: 134px 0 127px; */
  padding: 75px 0;
  background-color: var(--veg-black);
  overflow: hidden;
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.page-header-bg:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--veg-black), 0.5);
}

.page-header__inner {
  position: relative;
  display: block;
  z-index: 15;
  text-align: center;
}

.page-header__inner h2 {
  font-size: 82px;
  color: white;
  font-weight: 700;
  line-height: 90px;
  margin-top: 1rem;
  text-transform: uppercase;
}
.thm-breadcrumb {
  position: relative;
  display: inline-block;
  background-color: rgba(white, 0.1);
  padding: 2px 29px 2px;
  border-radius: 22px;
  margin-bottom: 13px;
}

.thm-breadcrumb a {
  position: relative;
  display: inline-block;
  color: var(white);
  font-size: 1.2rem;
  font-family: var(--veg-font-two);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb a:hover {
  color: var(--veg-primary);
}

.about-three__right .thm-btn {
  color: white;
  padding-left: 30px;
  background-color: var(--veg-base);
  margin-top: 15px;
}

.about-three__right .thm-btn:hover {
  color: var(--veg-black);
}

.Our_story {
  margin-top: 70px;
}
.ourMission {
  margin-top: 70px;
  /* background-image: url(../images/Test/waveUp.svg); */
  background-repeat: no-repeat;

  margin-bottom: 100px;
}

.ourMission .about-one-shape-1 {
  bottom: 15%;
}

.orgBox {
  box-shadow: rgb(170 170 170) 0px 2px 11px -3px;
  background-color: white;
  transition: 0.3s;
  padding: 40px 35px;
  border-radius: 25px;
  i {
    color: var(--veg-base);
  }
}

.orgBox i {
  font-size: 45px;
  margin-right: 25px;
  padding-bottom: 25px;
}
.orgBox:hover {
  background-color: var(--veg-base);
  animation: pulse 1s;

  transition: 0.3s;
  i {
    color: var(--veg-black);
  }
  h2 {
    color: var(--veg-extra);
  }
  h5 {
    color: var(--veg-extra);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.about-three__right .thm-btn {
  color: white;
  padding-left: 30px;
  background-color: var(--veg-base);
  margin-top: 15px;
}

.about-three__right .thm-btn {
  color: white;
  padding-left: 30px;
  background-color: var(--veg-base);
  margin-top: 15px;
}

.about-three__right .thm-btn:hover {
  color: var(--veg-black);
}

.ourMission {
  margin-top: 70px;
  background-repeat: no-repeat;

  margin-bottom: 100px;
}

.ourMission .about-one-shape-1 {
  bottom: 34%;
}

.ourMission .section-title__tagline img {
  background-color: #f26c25;
  border-radius: 29px;
  padding: 5px;
}

.orgBox {
  box-shadow: rgb(170 170 170) 0px 2px 11px -3px;
  background-color: white;
  transition: 0.3s;
  padding: 40px 35px;
  border-radius: 25px;
  i {
    color: var(--veg-base);
  }
}

.orgBox i {
  font-size: 45px;
  margin-right: 25px;
  padding-bottom: 25px;
}
.orgBox:hover {
  background-color: var(--veg-base);
  animation: pulse 1s;

  transition: 0.3s;
  i {
    color: var(--veg-black);
  }
  h2 {
    color: var(--veg-extra);
  }
  h5 {
    color: var(--veg-extra);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.ourVision .about-three__left img {
  box-shadow: none;
}
.about-three__right .about-three {
  margin-top: 25%;
}

.ourVision .about-three__right {
  margin-top: 25%;
}

.contactUs .page-header__inner h2 {
  color: var(--veg-base);
}

.owl-dots {
  display: none;
}

.owl-nav .owl-prev {
  position: absolute;
  top: 130px;
  left: -18px;
}

.owl-nav span {
  font-size: 80px;
  color: #75ab0a;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent;
  color: #fff;
  text-decoration: none;
}

.owl-theme .owl-next {
  position: absolute;
  top: 130px;
  right: -18px;
}
/* contact form */
.contact-one__form {
  background-color: var(--veg-base);
  padding: 55px;
  border-radius: 15px;
}
.contact-one__form-box {
  margin-top: 20px;
}
.philosophy {
  align-items: center;
}
/* calendar page */
.filterOption{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.datePicker{
  margin-right: 10px;
}
.datetimepicker-dummy.is-primary .datetimepicker-clear-button{
  color: var(--veg-black);
}
.datetimepicker.is-primary .datepicker-nav{
  background: var(--veg-base);
}

.datetimepicker.is-primary .datepicker-body .datepicker-dates .datepicker-days .datepicker-date .date-item.is-active{
  background-color: var(--veg-primary);
  border-color:  var(--veg-primary);
}
.datetimepicker-dummy.is-primary .datetimepicker-dummy-wrapper::before, .datetimepicker-dummy.is-primary .datetimepicker-dummy-wrapper:before, .datetimepicker-dummy.is-primary::before, .datetimepicker-dummy.is-primary:before{
  background-color: var(--veg-primary);
}

.datetimepicker.is-primary .datepicker-body .datepicker-dates .datepicker-days .datepicker-date .date-item.is-today{
  background-color: var(--veg-primary);
  border-color:  var(--veg-primary);
}
.datetimepicker.is-primary .datepicker-body .datepicker-dates .datepicker-days .datepicker-date .date-item:hover{
  border-color:  var(--veg-primary);
}
.datetimepicker.is-primary .datepicker-body .datepicker-dates .datepicker-days .datepicker-date.datepicker-range .date-item{
  background-color: var(--veg-primary);
}
.calendarItems{
  margin-top: 60px;
}
.calendar .page-header-bg {
  background-position: bottom;
}
/* calendar table  */





.menu-block { margin-bottom: 30px; }

.menu-content { border-bottom: 1px solid #e0e6e3; margin-bottom: 30px; }
/* .dish-img { } */
.dish-content { margin-top: 12px; margin-bottom: 40px; }
.dish-meta { font-size: 12px; text-transform: uppercase; display: block; width: 210px; line-height: 1.7; }
.dish-title { margin-bottom: 6px; font-size: 15px; text-transform: uppercase; font-weight: 500; position: relative; }

.well-block .dish-meta { width: 100%; }
.well-block .dish-price { font-size: 26px; color: #e03c23; font-weight: 500; font-family: 'Zilla Slab', serif; position: inherit; }












/* all products page */
.serachRow {
  background-color: #cfe9bc;
  padding: 10px 5px;

  border-radius: 10px;
}

.searchInputWrapper {
  position: relative;
}

.searchInput {
  width: 60%;
  height: auto;
  padding: 5px 15px;
  border-radius: 2rem;
  border: none;
  transition: transform 0.1s ease-in-out;
}

.filterRow {
  background-color: #cfe9bc;
  padding: 20px 5px;
  border-radius: 10px;
}
::placeholder {
  color: #c2c2c2;
}

/* hide the placeholder text on focus */
:focus::placeholder {
  text-indent: -999px;
}

.searchInput:focus {
  outline: none;
  transform: scale(1.05);
  transition: all 0.1s ease-in-out;
}

.searchInputIcon {
  position: absolute;
  left: 375px;
  top: 12px;
  color: var(--veg-primary);
  transition: all 0.1s ease-in-out;
}

.container:focus-within > .searchInputWrapper > .searchInputIcon {
  right: 0.2rem;
}

.card-hover {
  border-radius: 15px;
  width: 100%;
  height: 310px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-hover img {
  max-width: 100%;
  height: auto;
}

.card-hover:has(.card-hover__link:hover) .card-hover__extra {
  transform: translateY(0);
  transition: transform 0.35s;
}
.card-hover:hover .card-hover__content {
  background-color: var(--veg-primary);
  bottom: 100%;
  transform: translateY(100%);
  padding: 30px 30px 65px;
  transition: all 0.35s cubic-bezier(0.1, 0.72, 0.4, 0.97);
}
.card-hover:hover .card-hover__link {
  opacity: 1;
  transform: translate(-50%, 0);
  transition: all 0.3s 0.35s cubic-bezier(0.1, 0.72, 0.4, 0.97);
}
.card-hover__link:hover {
  background-color: white;
  border-radius: 35px;
  color: var(--veg-primary);
  font-size: 12px;
  font-weight: 700;
}
.card-hover:hover img {
  transform: scale(1);
  transition: 0.35s 0.1s transform cubic-bezier(0.1, 0.72, 0.4, 0.97);
}
.card-hover__content {
  width: 100%;
  text-align: center;
  background-color: var(--veg-base);
  padding: 20px;
  /* padding: 0 60px 50px; */
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(0);
  transition: all 0.35s 0.35s cubic-bezier(0.1, 0.72, 0.4, 0.97);
  will-change: bottom, background-color, transform, padding;
  text-transform: uppercase;

  z-index: 1;
}

.card-hover__title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  font-family: 'Poppins';
}

.card-hover__text {
  font-size: 0.75rem;
}
.card-hover__link {
  position: absolute;

  left: 50%;
  transform: translate(-50%, 10%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-decoration: none;
  color: white;
  opacity: 0;
  padding: 10px;
  transition: all 0.35s;
}

.card-hover__extra {
  height: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  font-size: 1.5rem;
  text-align: center;
  background-color: #86b971;
  padding: 80px;
  bottom: 0;
  z-index: 0;
  color: #dee8c2;
  transform: translateY(100%);
  will-change: transform;
  transition: transform 0.35s;
}

.card-hover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: -1;
  transform: scale(1.2);
  transition: 0.35s 0.35s transform cubic-bezier(0.1, 0.72, 0.4, 0.97);
}
/* .filterNone{
	display: none;
  } */

.select-wrapper {
  position: relative;
  width: 100%;
}

.select {
  width: 40%;
  height: auto;
  padding: 7px 15px;
  border-radius: 2rem;
  border: none;
  transition: transform 0.1s ease-in-out;
}
.select:focus {
  outline: none;
  transform: scale(1.05);
  transition: all 0.1s ease-in-out;
}
.select::-ms-expand {
  display: none;
}
/* Custom Select wrapper */

.items-head p {
  padding: 5px 20px;
  margin: 10px;
  color: var(--veg-black);
  font-weight: bold;
  font-size: 25px;
}

.items-head hr {
  width: 25%;
  margin: 0px 30px;
  border: 1px solid var(--veg-black);
}

.items-body {
  padding: 10px;
  margin: 10px;
  display: grid;
  grid-gap: 10px;
}

.items-body-content {
  padding: 10px;
  padding-right: 0px;
  display: grid;
  grid-template-columns: 10fr 1fr;
  grid-gap: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  color: var(--veg-black);
  font-weight: 600;
  font-size: 17px;
}

.items-body-content:hover {
  border-radius: 15px;
  color: var(--veg-primary);
}

.items-body-content i {
  align-self: center;
  font-size: 15px;
  color: var(--veg-primary);
  font-weight: bold;
  animation: icon 1.5s infinite forwards;
}

@keyframes icon {
  0%,
  100% {
    transform: translate(0px);
  }
  50% {
    transform: translate(3px);
  }
}

/* .filiterCard */

.allProducts .card {
  background-color: transparent;
  border: none;
}

.allProducts .card-body {
  padding: 0;
}

.allProducts .list-group-item {
  background-color: transparent;
  border: none;
  padding: 5px 15px;
  font-size: 15px;
}
.allProducts .list-group-item.active {
  background-color: var(--veg-primary);
  border-radius: 10px;
  font-size: 15px;
}

/* single product */

.singleProduct {
  background-image: url(../images/home/_bg_1.png);
  background-size: cover;

}
.tabs {
  display: flex;
}

#owl-demo img {
  border-radius: 15px;
 
}


.title-head hr {
  width: 15%;
  margin: 5px 0px 0px;
  border: 1px solid var(--veg-base);
  text-transform: uppercase;
}

.tabs [class^="tab"] label,
.tabs [class*=" tab"] label {
  color: var(--veg-primary);
  font-weight: 500;
  font-family: "kalam";
  cursor: pointer;
  display: block;
  font-size: 20px;

  line-height: 1em;
  padding: 20px 0;
  text-align: center;
}

.tabs [class^="tab"] [type="radio"],
.tabs [class*=" tab"] [type="radio"] {
  border-bottom: 1px solid rgba(239, 237, 239, 0.5);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tabs [class^="tab"] [type="radio"]:hover,
.tabs [class^="tab"] [type="radio"]:focus,
.tabs [class*=" tab"] [type="radio"]:hover,
.tabs [class*=" tab"] [type="radio"]:focus {
  border-bottom: 1px solid var(--veg-primary);
}

.tabs [class^="tab"] [type="radio"]:checked,
.tabs [class*=" tab"] [type="radio"]:checked {
  border-bottom: 2px solid var(--veg-base);
}

.tabs [class^="tab"] [type="radio"]:checked + div,
.tabs [class*=" tab"] [type="radio"]:checked + div {
  opacity: 1;
}

.tabs [class^="tab"] [type="radio"] + div,
.tabs [class*=" tab"] [type="radio"] + div {
  display: block;
  opacity: 0;
  padding: 2rem 0;
  width: 90%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tabs .tab-2 {
  width: 33.33%;
}

.tabs .tab-2 [type="radio"] + div {
  width: 300%;
  margin-left: 100%;
}

.tabs .tab-2 [type="radio"]:checked + div {
  margin-left: 0;
}

.tabs .tab-2:nth-child(2) [type="radio"] + div {
  margin-left: -100%;
}

.tabs .tab-2:nth-child(3) [type="radio"] + div {
  margin-left: -200%;
}

.title-head h5{
	font-family: kalam;
    color: var(--veg-primary);
	text-transform: capitalize;
}
.title-head h1 {
  margin: 15px 0;
  font-weight: 600;
}

/* product details table */

table {
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table tr {
  background-color: transparent;
  border-bottom: 1px solid #ddd;
  padding: 0.35em;
}

table th,
table td {
  padding: 0.625em;
color: var(--veg-black);
font-weight: 600;
  text-align: center;
}

table th {
  font-weight: 700;
  font-size: 0.95em;
color:var(--veg-base);
  text-transform: uppercase;
}

/* general styling */

/* contact page */
.google-map {
  position: relative;
  display: block;
}

.contact-details {
  position: relative;
  display: block;
  margin-top: 50px;
  padding-bottom: 55px;
  border-bottom: 1px solid #ece9e0;
}

.contact-details__left {
  position: relative;
  display: block;
}

.contact-details__single {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-details__single-last {
  margin-right: -9px;
}

.contact-details__icon {
  position: relative;
  display: inline-block;
}

.contact-details__icon span {
  font-size: 32px;
  color: var(--veg-base);
}

.contact-details__text {
  position: relative;
  display: block;
  margin-left: 12px;
  top: 1px;
}

.contact-details__text h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  font-family: var(--veg-font);
}

.contact-details__text h3 a {
  color: var(--veg-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-details__text h3 a:hover {
  color: var(--veg-base);
}

.contact-details__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 68px;
  position: relative;
  top: 9px;
}

.contact-details__social a {
  position: relative;
  height: 43px;
  width: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--veg-black);
  background-color: var(--veg-extra);
  font-size: 14px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.contact-details__social a:hover {
  color: white;
  background-color: var(--veg-base);
}

.contact-details__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--veg-base);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.contact-details__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.contact-details__social a + a {
  margin-left: 10px;
}
.contact-two {
  position: relative;
  display: block;
  padding: 55px 0 120px;
  z-index: 1;
}

.contact-one {
  position: relative;
  display: block;
}

.contact-one__left {
  position: relative;
  display: block;
}

.contact-one .section-title {
  margin-bottom: 28px;
}

.contact-one__contact-list {
  position: relative;
  display: block;
  margin-top: 26px;
}

.contact-one__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-one__contact-list li + li {
  margin-top: 28px;
}

.contact-one__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  width: 54px;
  background-color: var(--veg-base);
  border-radius: 50%;
  font-size: 16px;
  color: white;
  top: 4px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-one__contact-list li:hover .icon {
  background-color: var(--veg-black);
  color: var(--veg-base);
}

.contact-one__contact-list li .content {
  margin-left: 18px;
}

.contact-one__contact-list li .content h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  font-family: var(--veg-font);
}

.contact-one__contact-list li .content h4 a {
  color: var(--veg-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-one__contact-list li .content h4 a:hover {
  color: var(--veg-black);
}

.contact-one__right {
  position: relative;
  display: block;
  padding: 45px 60px 45px;
  background-color: #b5cea2;
  border-radius: var(--veg-bdr-radius);
  z-index: 1;
}

.contact-one__bg {
  position: absolute;
  bottom: 0;
  left: 45px;
  width: 709px;
  height: 183px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.contact-one__form-box {
  position: relative;
  display: block;
}

.contact-one__form {
  position: relative;
  display: block;
}

.contact-one__form .row {
  --bs-gutter-x: 20px;
}

.contact-one__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="email"] {
  height: 64px;
  width: 100%;
  border: none;
  background-color: white;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--veg-gray);
  display: block;
  font-weight: 500;
  border-radius: var(--veg-bdr-radius);
}

.contact-one__input-box textarea {
  font-size: 14px;
  color: var(--veg-gray);
  height: 150px;
  width: 100%;
  background-color: white;
  padding: 20px 30px 20px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
  border-radius: var(--veg-bdr-radius);
}

.contact-one__input-box.text-message-box {
  height: 150px;
}




















/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
	position: relative;
	display: block;
	background-color: var(--veg-base);
	z-index: 1;
}

.site-footer__top {
	position: relative;
	display: block;
	padding: 55px 0 30px;
	z-index: 1;
}

.site-footer__top-inner {
	position: relative;
	display: block;
}

.site-footer-shape-1 {
	position: absolute;
	bottom: -204px;
	left: 0;
	right: 0;
	height: 224px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0.03;
	z-index: -1;
}

.footer-widget__about {
	position: relative;
	display: block;
	top: 7px;
}

.footer-widget__logo {
	position: relative;
	display: block;
}

.footer-widget__about-text-box {
	position: relative;
	display: block;

}

.footer-widget__about-text {
	font-weight: 600;
	color:white;
	font-size: 15px;
	padding-right: 20px;
}

.footer-widget__Explore {
	position: relative;
	display: block;
}

.footer-widget__title-box {
	position: relative;
	display: block;
	margin-bottom: 24px;
}

.footer-widget__title {
	font-size: 20px;
	color:white;
	line-height: 28px;
	font-weight: 700;
	font-family: var(--veg-font);
}

.footer-widget__Explore-list {
	position: relative;
	display: block;
}

.footer-widget__Explore-list li + li {
	margin-top: 9px;
}

.footer-widget__Explore-list li a {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	color:var(--veg-black);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	z-index: 1;
}

.footer-widget__Explore-list li a:hover {
	color:white;
}

.footer-widget__news {
	position: relative;
	display: block;
}

.footer-widget__news-list {
	position: relative;
	display: block;
	padding-top: 9px;
}

.footer-widget__news-list li {
	position: relative;
	display: block;
	padding-left: 90px;
}

.footer-widget__news-list li + li {
	margin-top: 43px;
}

.footer-widget__news-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 70px;
	border-radius: 5px;
}

.footer-widget__news-img img {
	width: 100%;
	border-radius: 5px;
}

.footer-widget__news-content {
	position: relative;
	display: block;
	top: -8px;
}

.footer-widget__news-date {
	font-size: 12px;
	font-weight: 700;
	color: var(--veg-primary);
	line-height: 25px;
}

.footer-widget__news-sub-title {
	font-size: 16px;
	font-weight: 700;
	line-height: 25px;
	font-family: var(--veg-font);
}

.footer-widget__news-sub-title a {
	color:white;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.footer-widget__news-sub-title a:hover {
	color: var(--veg-primary);
}

.footer-widget__Contact {
	position: relative;
	display: block;
	margin-left: 70px;
}

.footer-widget__Contact-list {
	position: relative;
	display: block;
}

.footer-widget__Contact-list li {
	position: relative;
	display: flex;
	align-items: center;
}

.footer-widget__Contact-list li + li {
	margin-top: 5px;
}

.footer-widget__Contact-list li .icon {
	position: relative;
	font-size: 13px;
	margin-right: 20px;
	display: flex;
	align-items: center;
}

.footer-widget__Contact-list li .icon span {
	color: var(--veg-primary);
	position: relative;
	display: inline-block;
}

.footer-widget__Contact-list li .text p {
	font-size: 16px;
	font-weight: 500;
	color:var(--veg-black);
}

.footer-widget__Contact-list li .text p a {
	color:var(--veg-black);
}

.footer-widget__Contact-list li .text p a:hover {
	color:white;
	transition: all 500ms ease;
}

.footer-widget__Contact-form {
	position: relative;
	display: block;
	margin-top: 24px;
}

.footer-widget__Contact-input-box {
	position: relative;
	display: block;
}

.footer-widget__Contact-input-box input[type="email"] {
	height: 65px;
	width: 100%;
	border: none;
	outline: none;
	padding-left: 30px;
	padding-right: 65px;
	background-color:white;
	border-radius: 33px;
	font-size: 14px;
	font-weight: 500;
	color: var(--veg-gray);
}

.footer-widget__Contact-btn {
	position: absolute;
	top: 50%;
	right: 12px;
	height: 40px;
	width: 40px;
	border: none;
	border-radius: 50%;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--veg-primary);
	color: var(--veg-black);
	transform: translateY(-50%);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.footer-widget__Contact-btn:hover {
	background-color: var(--veg-base);
	color:white;
}

.site-footer__bottom {
	position: relative;
	display: block;
	z-index: 1;
}

.site-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	padding: 22px 0 22px;

}

.site-footer__bottom-inner:before {
	content: "";
	position: absolute;
	bottom: 0;
	right: -10000000px;
	left: 100%;
	top: 0;
	background-color: #0a1905;
	z-index: -1;
}

/* .site-footer__bottom-scroll {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
}

.site-footer__bottom-scroll a {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	top: 0;
	bottom: 0;
	width: 80px;
	background-color: var(--veg-base);
	border-top-left-radius: var(--veg-bdr-radius);
	color:white;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.site-footer__bottom-scroll a:hover {
	background-color:white;
	color: var(--veg-black);
} */

.site-footer__bottom-text {
	font-size: 16px;
	font-weight: 500;
	line-height: 26px;
	color: var(--veg-black);
}

.site-footer__bottom-text a {
	color: inherit;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
	color: blue;
}

.site-footer__social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.site-footer__social a {
	position: relative;
	height: 40px;
	width: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	color:white;
	font-size: 15px;
	background-color: var(--veg-black);
	border-radius: 50%;
	overflow: hidden;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	z-index: 1;
}

.site-footer__social a:hover {
	color: var(--veg-base);
}

.site-footer__social a:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background-color:white;
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	-webkit-transition-property: all;
	transition-property: all;
	opacity: 1;
	-webkit-transform-origin: top;
	transform-origin: top;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	z-index: -1;
}

.site-footer__social a:hover:after {
	opacity: 1;
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

.site-footer__social a + a {
	margin-left: 10px;
}

/* progress steps */

.progressContainer {
	background: linear-gradient(
			180deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.75) 50%,
			rgba(255, 255, 255, 1) 100%
		),
		url(/assets/images/Test/farmer.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom;
}

.progressSteps {
	box-sizing: content-box;
	padding: 0 12px;
	max-width: 640px;
	margin: 0 auto;
}

.step-list {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.step-list__item {
	counter-increment: step-counter;
	position: relative;
}
.step-list__item:before {
	content: counter(step-counter);
	font-weight: 600;
	color: var(--veg-base);
}
.step-list__item h2 {
	font-weight: 500;
	text-align: -webkit-left;

	font-size: 25px;
	line-height: 30px;
	margin-top: 3.5rem;
	margin-left: 2rem;
}
.step-list__item .icon {
	border-radius: 50%;
	display: block;
	flex: 0 0 auto;
}
.step-list__item .icon img {
	width: 100%;
	height: 100%;
}
.step-list__item .body {
	font-size: 12px;
	line-height: 18px;
	font-weight: 300;
}
.step-list__item .content {
	display: flex;
	flex-direction: row;
}
.step-list__item:first-child .icon {
	background: var(--veg-base);
	transition: transform 0.3s ease, box-shadow 0.3s linear;
	transition-delay: 300ms;
}
.step-list__item .icon:hover {
	transform: scale(1.1) translateY(0) translateZ(0);
	box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.step-list__item:nth-child(2) .icon {
	background: var(--veg-primary);
	transition: transform 0.3s ease, box-shadow 0.3s linear;
	transition-delay: 300ms;
}
.step-list__item:nth-child(3) .icon {
	background: var(--veg-base);
	transition: transform 0.3s ease, box-shadow 0.3s linear;
	transition-delay: 300ms;
}
.step-list__item:nth-child(4) .icon {
	background: var(--veg-primary);
	transition: transform 0.3s ease, box-shadow 0.3s linear;
	transition-delay: 300ms;
}
.step-list__item:nth-child(5) .icon {
	background: #fef3f3;
}
.step-list__item:nth-child(odd) .content {
	justify-content: flex-start;
}
.step-list__item:nth-child(even) .content {
	justify-content: flex-end;
}
.step-list__item:first-child > .step-list__item__inner:before {
	content: none;
}
.step-list__item:last-child > .step-list__item__inner:after {
	content: none;
}
.step-list__item + li {
	margin-top: 84px;
}
.step-list__item + li > div {
	margin-top: -1px;
}
@media screen and (max-width: 600px) {
	.step-list__item {
		display: flex;
	}
	.step-list__item:before {
		content: counter(step-counter);
		position: relative;
		font-size: 36px;
		line-height: 42px;
		font-weight: 300;
		color: #000000;
		margin-right: 12px;
	}
	.step-list__item .icon {
		order: 0;
		width: 75px;
		height: auto;
		padding: 15px;

		position: absolute;
		left: -9px;
		top: 42px;
	}
	.step-list__item .body {
		order: 1;
		margin-top: 8px;
		margin-left: 12px;
	}
	.step-list__item .content {
		align-items: flex-start;
	}
	.step-list__item .content:before {
		content: "";
		position: absolute;
		border-left: #d8d8d8;
		height: 100%;
		left: 9px;
		bottom: 0;
		display: block;
		width: 1px;
		background: #d8d8d8;
		top: 84px;
	}
	.step-list__item:last-child .content:before {
		content: none;
	}
}
@media screen and (min-width: 601px) {
	.step-list__item:before {
		content: counter(step-counter);
		position: absolute;
		font-size: 90px;
		line-height: 1;
		font-weight: 300;
		color: var(--veg-base);
	}
	.step-list__item .icon {
		width: 125px;
		height: 125px;
		padding: 25px;
	}
	.step-list__item .body {
		flex: 0 1 33.3333%;
		margin-top: 84px;
	}
	.step-list__item .content {
		align-items: flex-end;
	}
	.step-list__item > .step-list__item__inner {
		position: relative;
	}
	.step-list__item > .step-list__item__inner:before,
	.step-list__item > .step-list__item__inner:after {
		border-width: 0px;
		border-style: solid;
		border-color: #d3ecc0;
		display: block;
		content: "";
		position: absolute;
		height: 42px;
		width: calc(33.3333% - 42px);
	}
	.step-list__item:nth-child(odd) > .step-list__item__inner {
		text-align: right;
	}
	.step-list__item:nth-child(odd) > .step-list__item__inner:before,
	.step-list__item:nth-child(odd) > .step-list__item__inner:after {
		border-left-width: 2px;
		left: calc(33.3333% - 21px);
	}
	.step-list__item:nth-child(odd) > .step-list__item__inner:before {
		border-top-width: 1px;
		border-top-left-radius: 42px;
		margin-top: -42px;
	}
	.step-list__item:nth-child(odd) > .step-list__item__inner:after {
		border-bottom-width: 1px;
		border-bottom-left-radius: 42px;
		margin-bottom: -42px;
	}
	.step-list__item:nth-child(odd):before {
		left: 0;
		margin-left: 33.3333%;
		transform: translateX(-100%);
	}
	.step-list__item:nth-child(odd) .icon {
		margin-left: 72px;
	}
	.step-list__item:nth-child(even) > .step-list__item__inner:before,
	.step-list__item:nth-child(even) > .step-list__item__inner:after {
		border-right-width: 2px;
		right: calc(33.3333% - 21px);
	}
	.step-list__item:nth-child(even) > .step-list__item__inner:before {
		border-top-width: 1px;
		border-top-right-radius: 42px;
		margin-top: -42px;
	}
	.step-list__item:nth-child(even) > .step-list__item__inner:after {
		border-bottom-width: 1px;
		border-bottom-right-radius: 42px;
		margin-bottom: -42px;
	}
	.step-list__item:nth-child(even):before {
		right: 0;
		margin-right: 33.3333%;
		transform: translateX(100%);
	}
	.step-list__item:nth-child(even) .icon {
		margin-right: 72px;
	}
	.step-list__item:nth-child(even) .body {
		order: 1;
	}
}

/* product card */

.product-grid {
	background-color: #fff;
	font-family: "Montserrat", sans-serif;
	text-align: center;

	box-shadow: 0 18px 13px -8px #d6d6d6;
}
.product-grid:hover {
	background-color: #b5cea2;
}
.product-grid .product-image {
	overflow: hidden;
	position: relative;
}
.product-grid .product-image a.image {
	display: block;
}
.product-grid .product-image img {
	width: 100%;
	min-height: 19rem;
	max-height: 25rem;
}
.product-grid .product-image .pic-1 {
	transition: all 0.3s ease 0s;
}
.product-grid .product-image:hover .pic-1 {
	transform: translateX(100%);
}
.product-grid .product-image .pic-2 {
	width: 100%;
	height: 100%;
	transform: translateX(-101%);
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.3s ease-out 0s;
}
.product-grid .product-image:hover .pic-2 {
	transform: translateX(0);
}


.product-grid .product-content {
	text-align: center;
	padding: 20px 15px 20px 15px;
}
.product-grid .title {
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	margin: 0 0 8px;
}
.product-grid .title a {
	color: var(--veg-black);
	transition: all 0.3s ease 0s;
	text-decoration: none;
	font-weight: 700;
	font-family: var(--veg-font-two);
	font-size: 30px;
}
.product-grid .title a:hover {
	color: var(--bs-hover);
}
.product-grid .price {
	color: var(--veg-primary);
	font-size: 16px;
	font-weight: 500;
}
.product-grid .price span {
	color: var(--veg-base);
	font-size: 14px;
	font-weight: 400;
	margin: 0 5px 0 0;
}
@media screen and (max-width: 990px) {
	.product-grid {
		margin: 0 0 30px;
	}
}
/* 

.owl-nav {
	display: none;
} */


.theFooter{
	justify-content: space-evenly;
}

.tabsNav{
	justify-content: center;
	
}

.tabsNav a{
	color: #b5cea2;
}
.tabsNav a:hover{border-bottom: solid 2px #000;}
.tabsNav a:visited{border-bottom: solid 2px var(--veg-primary);}

.about-three__right .thm-btn{
	color:white;
	padding-left:30px;
	background-color: var(--veg-base);
	margin-top: 15px;
}

.about-three__right .thm-btn:hover{

	color:var(--veg-primary);
}

.Our_story {
	margin-top: 70px;
  }
.ourMission{
	margin-top: 70px;
	/* background-image: url(../images/Test/waveUp.svg); */
	background-repeat: no-repeat;

	margin-bottom: 100px;

}

.ourMission .about-one-shape-1{
	bottom:15%;
}

.orgBox{
	box-shadow:rgb(170 170 170) 0px 2px 11px -3px;
	background-color: white;
    transition: .3s;
	padding: 40px 35px;
	border-radius: 25px;
	i{
		color: var(--veg-base);
	}
  }

  .orgBox i{
	font-size: 45px;
    margin-right: 25px;
    padding-bottom: 25px;
  }
  .orgBox:hover {
	background-color:var(--veg-base);
	animation: pulse 1s;

	transition: .3s;
	i{
		color: var(--veg-primary);
	}
	h2{
		color: var(--veg-extra);
	}
	h5{
		color: var(--veg-extra);
	}
  }
  @keyframes pulse {
	0% {
	  transform: scale(1);
	}
	70% {
	  transform: scale(.9);
	}
	  100% {
	  transform: scale(1);
	}
  }
  .about-three__right .thm-btn {
  color: white;
  padding-left: 30px;
  background-color: var(--veg-base);
  margin-top: 15px;
}

.about-three__right .thm-btn {
	color: white;
	padding-left: 30px;
	background-color: var(--veg-base);
	margin-top: 15px;
  }
  
  .about-three__right .thm-btn:hover {
	color: var(--veg-primary);
  }
  
 
  
  .ourMission {
	margin-top: 70px;
	background-repeat: no-repeat;
  
	margin-bottom: 100px;
  }
  
  .ourMission .about-one-shape-1 {
	bottom: 34%;
  }
  
  .ourMission .section-title__tagline img{
	background-color: #f26c25;
	  border-radius: 29px;
	  padding: 5px;
  }
  
  .orgBox {
	box-shadow: rgb(170 170 170) 0px 2px 11px -3px;
	background-color: white;
	transition: 0.3s;
	padding: 40px 35px;
	border-radius: 25px;
	i {
	  color:var(--veg-base);
	}
  }

  
  .orgBox i {
	font-size: 45px;
	margin-right: 25px;
	padding-bottom: 25px;
  }
  .orgBox:hover {
	background-color: var(--veg-base);
	animation: pulse 1s;
  
	transition: 0.3s;
	i {
	  color: var(--veg-primary);
	}
	h2 {
	  color: var(--veg-extra);
	}
	h5 {
	  color: var(--veg-extra);
	}
  }
  @keyframes pulse {
	0% {
	  transform: scale(1);
	}
	70% {
	  transform: scale(0.9);
	}
	100% {
	  transform: scale(1);
	}
  }
  
  .ourVision .about-three__left img {
	box-shadow: none;
  }
  .about-three__right .about-three {
  margin-top:25%;
  }
/*   
  .Our_story .about-one__left{
  margin-top:10%;
  } */
  
  .ourVision .about-three__right{
  margin-top:25%;
  }
  