@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
a {
  text-decoration: none !important;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

img {
  max-width: 100%;
  width: 100%;
}

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

body {
  font-family: "Raleway", sans-serif;
  max-width: 100%;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 6px;
}
body::-webkit-scrollbar-track {
  background: #2b2a29;
}
body::-webkit-scrollbar-thumb {
  background: #03c600;
}
body::-webkit-scrollbar-thumb:hover {
  background: white;
}

#window-loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(-35deg, #bfbfbf, #f4f4f4, #acacac);
}
#window-loader .logo {
  display: inline-block;
  max-width: 100%;
  padding: 10px;
}
#window-loader .logo img {
  -webkit-animation: loader-anime 2s linear infinite;
          animation: loader-anime 2s linear infinite;
}

@-webkit-keyframes loader-anime {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  10% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes loader-anime {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  10% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
.info-popup {
  position: fixed;
  display: none;
  opacity: 1;
  z-index: 9990;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info-popup .bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
}
.info-popup .inner {
  position: relative;
  z-index: 2;
  padding: 50px 30px;
  background: white;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
  max-width: 900px;
}
.info-popup .inner .head {
  margin-bottom: 30px;
  color: #03c600;
  padding-bottom: 10px;
  border-bottom: 2px solid #eb6e00;
}
.info-popup .inner .head button {
  color: #2b2a29;
}

.text-image-bg {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: url("/assets/home/media/text-background.jpg");
  background-size: cover;
  font-weight: 800;
}

.btn-green {
  font-weight: 600;
  color: #2b2a29;
  border: 2px solid #03c600;
  border-radius: 25px;
  padding: 12px 24px;
  margin-top: 15px;
  font-size: 18px;
}
.btn-green:hover {
  background: #03c600;
  color: White;
}

.breadcrumb {
  margin: 190px 15px 15px;
  border-radius: 0;
  padding: 50px;
  background-image: linear-gradient(45deg, #ca9048, #654113, #6c3e06);
  text-align: center;
}
.breadcrumb h1 {
  color: white;
  display: inline-block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
}
.breadcrumb .page-path {
  margin-top: 15px;
}
.breadcrumb .page-path ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.breadcrumb .page-path ul li {
  display: inline-block;
  padding: 0 3px;
}
.breadcrumb .page-path ul li:after {
  content: "-";
  color: lightgray;
  padding-left: 5px;
  font-weight: 700;
}
.breadcrumb .page-path ul li a {
  color: lightgray;
  padding: 5px;
}
.breadcrumb .page-path ul li a:hover {
  color: White;
}
.breadcrumb .page-path ul li:last-of-type:after {
  display: none;
}
.breadcrumb .page-path ul li:last-of-type a {
  color: #03c600;
  border: 2px dashed;
  border-radius: 20px;
  padding: 5px 15px;
  font-weight: 600;
  cursor: default;
  pointer-events: none;
}

header {
  position: fixed;
  z-index: 9000;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: visibility 0.3s, opacity 0.3s;
  transition: visibility 0.3s, opacity 0.3s;
  visibility: visible;
  opacity: 1;
  background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0.65) 110px, transparent);
  z-index: -1;
}
header .top-menu {
  text-align: right;
  position: relative;
  height: 70px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  overflow: hidden;
}
header .top-menu ul li {
  display: inline-block;
}
header .top-menu .social-media, header .top-menu .contact-links {
  display: inline-block;
}
header .top-menu .social-media ul li, header .top-menu .contact-links ul li {
  padding: 10px;
}
header .top-menu .social-media ul li a, header .top-menu .contact-links ul li a {
  font-size: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 48px;
  height: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  border: 1px dashed;
  color: #2b2a29;
  background: rgba(255, 255, 255, 0.5);
}
header .top-menu .social-media ul li a:hover, header .top-menu .contact-links ul li a:hover {
  color: #03c600;
  border-style: solid;
  border-color: #03c600;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  background: white;
}
header .top-menu .language {
  display: inline-block;
  margin-left: 15px;
}
header .top-menu .language ul {
  border-radius: 50px;
  border: 1px dashed;
}
header .top-menu .language ul li a {
  font-size: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 48px;
  height: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2b2a29;
  font-weight: 500;
}
header .top-menu .language ul li a:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  -webkit-transition: visibility 0.1s, opacity 0.3s;
  transition: visibility 0.1s, opacity 0.3s;
  visibility: hidden;
  opacity: 0;
}
header .top-menu .language ul li a.active {
  font-weight: 600;
}
header .top-menu .language ul li a.active:after {
  visibility: visible;
  opacity: 1;
}
header .mega-menu {
  margin-top: 15px;
}
header .mega-menu ul.parent-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 0 15px;
  position: relative;
}
header .mega-menu ul.parent-menu:before, header .mega-menu ul.parent-menu:after {
  content: "";
  border-top: 2px dashed;
  position: absolute;
  width: 100%;
  left: 0;
}
header .mega-menu ul.parent-menu:before {
  top: 0;
}
header .mega-menu ul.parent-menu:after {
  bottom: 0;
}
header .mega-menu ul.parent-menu > li {
  display: inline-block;
  padding: 0 15px;
}
header .mega-menu ul.parent-menu > li > a {
  padding: 15px 10px;
  font-weight: 700;
  color: #2b2a29;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}
header .mega-menu ul.parent-menu > li > a:before, header .mega-menu ul.parent-menu > li > a:after {
  content: "";
  position: absolute;
  width: 90%;
  border: 1px solid #03c600;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  overflow: hidden;
  z-index: 5;
}
header .mega-menu ul.parent-menu > li > a:before {
  top: 0;
  left: 0;
}
header .mega-menu ul.parent-menu > li > a:after {
  bottom: 0;
  right: 0;
}
header .mega-menu ul.parent-menu > li .submenu {
  position: absolute;
  top: calc(100% - 2px);
  background: white;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-top: 2px solid #03c600;
  padding: 5px 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header .mega-menu ul.parent-menu > li .submenu ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .mega-menu ul.parent-menu > li .submenu ul:before, header .mega-menu ul.parent-menu > li .submenu ul:after {
  display: none;
}
header .mega-menu ul.parent-menu > li .submenu ul li {
  display: block;
}
header .mega-menu ul.parent-menu > li .submenu ul li a {
  padding: 5px;
  font-size: 14px;
  color: #2b2a29;
  white-space: nowrap;
  font-weight: 500;
}
header .mega-menu ul.parent-menu > li .submenu ul li a figure {
  text-align: center;
  padding: 10px;
  border: 1px dashed rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .mega-menu ul.parent-menu > li .submenu ul li a figure img {
  max-height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
header .mega-menu ul.parent-menu > li .submenu ul li a figure figcaption {
  display: inline-block;
  padding: 4px 8px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
header .mega-menu ul.parent-menu > li .submenu ul li a:hover {
  color: #03c600;
}
header .mega-menu ul.parent-menu > li .submenu ul li a:hover figure {
  border: 1px dashed #03c600;
}
header .mega-menu ul.parent-menu > li .submenu.products-menu {
  left: 0;
  width: 100%;
}
header .mega-menu ul.parent-menu > li .submenu.products-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
header .mega-menu ul.parent-menu > li .submenu.products-menu ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
}
header .mega-menu ul.parent-menu > li:hover > a {
  color: #03c600;
}
header .mega-menu ul.parent-menu > li:hover > a:before, header .mega-menu ul.parent-menu > li:hover > a:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
header .mega-menu ul.parent-menu > li:hover .submenu {
  visibility: visible;
  opacity: 1;
}
header .logo {
  padding: 10px 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .logo a {
  max-width: 256px;
  overflow: hidden;
  height: 141px;
}
header .logo a img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .header-button {
  display: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2b2a29;
  font-weight: 500;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  right: 15px;
  bottom: 14px;
  border-top: 2px dashed;
  border-bottom: 2px dashed;
  padding-left: 10px;
}
header .header-button div:first-of-type {
  padding-top: 2px;
}
header .menu-button {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 10px;
  width: 40px;
  height: 18px;
  cursor: pointer;
  display: block;
}
header .menu-button .hamburger-menu,
header .menu-button .hamburger-menu:after,
header .menu-button .hamburger-menu:before {
  width: 40px;
  height: 2px;
}
header .menu-button .hamburger-menu {
  position: relative;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  background: #2b2a29;
  -webkit-transition: all 0ms 300ms;
  transition: all 0ms 300ms;
}
header .menu-button .hamburger-menu.animate {
  background: rgba(255, 255, 255, 0);
}
header .menu-button .hamburger-menu:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  background: #2b2a29;
  -webkit-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
header .menu-button .hamburger-menu:after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  background: #2b2a29;
  -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
header .menu-button .hamburger-menu.animate:after {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
header .menu-button .hamburger-menu.animate:before {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
header.affix {
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 18px rgba(0, 0, 0, 0.5);
  background: white;
}
header.affix .top-menu {
  height: 0;
  margin: 0;
  opacity: 0;
}
header.affix .mega-menu {
  margin-top: 0;
}
header.affix .mega-menu .parent-menu:before, header.affix .mega-menu .parent-menu:after {
  width: 0;
}
header.affix .logo {
  padding: 0;
}
header.affix .logo a {
  height: 47px;
}
header.affix .logo a img {
  -webkit-transform: translateY(-102px);
          transform: translateY(-102px);
}

footer .logo {
  margin: 15px 0;
  padding: 10px;
}
footer .top {
  padding: 50px 0;
  position: relative;
}
footer .top:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% + 20px);
  background: #eef1f2;
  -webkit-transform: skewY(-1deg);
          transform: skewY(-1deg);
  z-index: -1;
}
footer .top h5 {
  color: #03c600;
  border-bottom: 2px solid;
  padding-bottom: 5px;
}
footer .top .footer-menu {
  margin: 15px 0;
}
footer .top .footer-menu ul {
  padding-left: 20px;
}
footer .top .footer-menu ul li {
  list-style: disc;
}
footer .top .footer-menu ul li a {
  color: #3f3f3f;
  font-size: 14px;
  font-weight: 500;
}
footer .top .footer-menu ul li a:hover {
  color: #2b2a29;
}
footer .top .find-us {
  margin: 15px 0;
}
footer .top .find-us ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
footer .top .find-us ul li {
  padding: 10px;
  display: inline-block;
}
footer .top .find-us ul li a {
  font-size: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 50px;
  height: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  border: 1px dashed;
  color: #2b2a29;
  margin: 5px;
}
footer .top .find-us ul li a:hover {
  color: #03c600;
  border-style: solid;
  border-color: #03c600;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
footer .top .find-us ul li.special-button a {
  width: auto;
  height: auto;
  border: none;
  border-radius: 5px;
  padding: 5px;
}
footer .top .find-us ul li.special-button a i {
  font-size: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 50px;
  height: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  border: 1px dashed;
  color: #2b2a29;
  margin: 5px;
}
footer .top .find-us ul li.special-button a:hover {
  color: #03c600;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
footer .top .find-us ul li.special-button a:hover i {
  color: #03c600;
  border-style: solid;
  border-color: #03c600;
}
footer .copyright {
  background: #2b2a29;
  padding: 10px 0;
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 18px rgba(0, 0, 0, 0.5);
}
footer .copyright p, footer .copyright a {
  margin: 10px 0;
  color: White;
  font-size: 14px;
}
footer .copyright p:hover, footer .copyright a:hover {
  color: #03c600;
}

.welcome-image .item {
  outline: none;
  border: none;
}

.welcome-banners {
  padding: 15px;
  margin-top: 175px;
}
.welcome-banners .banner-box {
  position: relative;
  width: 100%;
  height: 720px;
}
.welcome-banners .banner-box:hover .bg-image img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.welcome-banners .banner-box:hover .bg-image:after {
  opacity: 0.5;
}
.welcome-banners .banner-box:hover .content:before {
  width: 100%;
}
.welcome-banners .banner-box.half-box {
  height: 360px;
}
.welcome-banners .banner-box .bg-image {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 4;
  overflow: hidden;
}
.welcome-banners .banner-box .bg-image:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(15deg, rgb(0, 0, 0), transparent 70%, transparent);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
.welcome-banners .banner-box .bg-image img {
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.welcome-banners .banner-box .content {
  position: absolute;
  left: 25px;
  bottom: 25px;
  z-index: 5;
  padding: 10px;
}
.welcome-banners .banner-box .content:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  border-left: 2px solid #03c600;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.welcome-banners .banner-box .content strong {
  color: white;
  font-size: 26px;
  display: block;
  max-width: 400px;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.welcome-banners .banner-box .content p {
  font-size: 20px;
  color: #03c600;
  margin: 0;
  font-weight: 600;
}
.welcome-banners .banner-box .content p, .welcome-banners .banner-box .content strong {
  text-shadow: 0 0 25px rgb(0, 0, 0);
}
.welcome-banners .banner-box .content a {
  background: white;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 16px;
  color: #2b2a29;
}
.welcome-banners .banner-box .content a:hover {
  background: #2b2a29;
  color: #03c600;
  -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
          box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
}

.home-about {
  padding: 10px 0 50px 0;
  /*
      .menuopt {
          display: none;
      }

      .circle, .circle:before, .circle:after {
          border-radius: 50%;
      }

      nav {
          margin: 2em auto;
          min-width: 16em;
          width: 90%;
          max-width: 40em;
      }

      nav ul {
          position: relative;
          padding: 50%;
          max-width: 0;
          max-height: 0;
          list-style: none;
          background: white;
      }

      nav li {
          position: absolute;
          transition: 1s;
      }

      .slice {
          overflow: hidden;
          position: absolute;
          top: 0;
          left: 0;
          width: 50%;
          height: 50%;
          transform-origin: 100% 100%;
          z-index: 5;
      }

      .unsel {
          top: 34%;
          left: 34%;
          width: 32%;
          height: 32%;
          box-shadow: 0 0 .75em;
          background: $black;
          z-index: 10;
      }

      .part-one {
          transform: skewX(50deg);
      }

      .part-two {
          transform: rotate(52deg) skewX(50deg);
      }

      .part-three {
          transform: rotate(104deg) skewX(50deg);
      }

      .part-four {
          transform: rotate(156deg) skewX(50deg);
      }

      .part-five {
          transform: rotate(-156deg) skewX(50deg);
      }

      .part-six {
          transform: rotate(-104deg) skewX(50deg);
      }

      .part-seven {
          transform: rotate(-52deg) skewX(50deg);
      }

      .magnifiable {
          height: 100%;
      }

      nav label {
          cursor: pointer;
      }

      .slice label {
          display: block;
          width: 200%;
          height: 200%;
          transform: skew(-50deg) rotate(-70deg);
          box-shadow: 0 0 .1em black;
          opacity: 1;
          font-weight: 700;
          line-height: 2.7;
          font-size: 1em;
          text-align: center;
          text-decoration: none;
          transition: 1s;
      }

      .slice label:before {
          position: absolute;
          top: 10%;
          left: 10%;
          width: 80%;
          height: 80%;
          border-radius: 50%;
          box-shadow: 0 0 1em rgba(0, 0, 0, .5);
          background-position: 50% 0;
          background-repeat: no-repeat;
          background-size: 35% 35%;
          content: '';
      }

      .slice label:hover {
          opacity: 1;
      }

      .dark label {
          color: white;
      }

      .light label {
          color: black;
      }

      .unsel label {
          display: block;
          height: 100%;
          background: radial-gradient(rgba(0, 0, 0, .5), transparent 50%);
          padding: 5px;

          img {
              filter: brightness(0) invert(1);
          }
      }

      .part-one label, .opart-one:checked ~ nav .unsel {
          background: #f4f5fa;
      }

      .part-two label, .opart-two:checked ~ nav .unsel {
          background: #4a7337;
      }

      .part-three label, .opart-three:checked ~ nav .unsel {
          background: #7B3F00;
      }

      .part-four label, .opart-four:checked ~ nav .unsel {
          background: #ffbf4c;
      }

      .part-five label, .opart-five:checked ~ nav .unsel {
          background: #e4bb73;
      }

      .part-six label, .opart-six:checked ~ nav .unsel {
          background: #d8cabd;
      }

      .part-seven label, .opart-seven:checked ~ nav .unsel {
          background: #ad6423;
      }

      .part-one label:before {
          background-image: url(/assets/home/media/products-circle/hindistan-cevizi.jpg);
      }

      .part-two label:before {
          background-image: url(/assets/home/media/products-circle/avokado.jpg);

      }

      .part-three label:before {
          background-image: url(/assets/home/media/products-circle/kakao.jpg);

      }

      .part-four label:before {
          background-image: url(/assets/home/media/products-circle/kayisi.jpg);

      }

      .part-five label:before {
          background-image: url(/assets/home/media/products-circle/makademya.jpg);

      }

      .part-six label:before {
          background-image: url(/assets/home/media/products-circle/shea.jpg);

      }

      .part-seven label:before {
          background-image: url(/assets/home/media/products-circle/tatli-badem.jpg);

      }

      .slice label:hover:after {
          opacity: 0;
      }

      .opart-one:checked ~ nav .part-one {
          transform: skewX(50deg) scale(1.05);
      }

      .opart-two:checked ~ nav .part-two {
          transform: rotate(52deg) skewX(50deg) scale(1.05);
      }

      .opart-three:checked ~ nav .part-three {
          transform: rotate(104deg) skewX(50deg) scale(1.05);
      }

      .opart-four:checked ~ nav .part-four {
          transform: rotate(156deg) skewX(50deg) scale(1.05);
      }

      .opart-five:checked ~ nav .part-five {
          transform: rotate(-156deg) skewX(50deg) scale(1.05);
      }

      .opart-six:checked ~ nav .part-six {
          transform: rotate(-104deg) skewX(50deg) scale(1.05);
      }

      .opart-seven:checked ~ nav .part-seven {
          transform: rotate(-52deg) skewX(50deg) scale(1.05);
      }

      .opart-one:checked ~ nav .part-one label,
      .opart-two:checked ~ nav .part-two label,
      .opart-three:checked ~ nav .part-three label,
      .opart-four:checked ~ nav .part-four label {
          box-shadow: 0 0 .45em rgba(0, 0, 0, .5);
          opacity: 1;
      }

      .opart-five:checked ~ nav .part-five label,
      .opart-six:checked ~ nav .part-six label,
      .opart-seven:checked ~ nav .part-seven label {
          box-shadow: 0 0 .45em rgba(0, 0, 0, .5);
          opacity: 1;
      }
  */
}
.home-about .images-abstracts {
  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;
  background-image: url("/assets/home/media/general/coconut-bottles.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position-y: center;
  background-size: 1024px;
  height: calc(100% - 30px);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin: 15px;
}
.home-about .images-abstracts .logo img {
  max-width: 256px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.home-about .avo-video {
  margin: 30px 0;
  position: relative;
}
.home-about .avo-video video {
  width: 100%;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}
.home-about .avo-video .volume-control {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: #2b2a29;
  color: #03c600;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
          box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}
.home-about .avo-video .volume-control i {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 20px;
}
.home-about .avo-video .volume-control i:first-of-type {
  visibility: visible;
  opacity: 1;
}
.home-about .avo-video .volume-control i:last-of-type {
  visibility: hidden;
  opacity: 0;
}
.home-about .avo-video .volume-control.active i:first-of-type {
  visibility: hidden;
  opacity: 0;
}
.home-about .avo-video .volume-control.active i:last-of-type {
  visibility: visible;
  opacity: 1;
}
.home-about .content {
  padding: 0 0;
  max-width: 40em;
  color: #2b2a29;
  margin: 5px 15px;
}
.home-about .content h1 {
  font-size: 54px;
  letter-spacing: 2px;
  font-weight: 900;
}
.home-about .content strong {
  font-size: 24px;
  margin-bottom: 20px;
  display: block;
}
.home-about .content p {
  opacity: 0.8;
  letter-spacing: 0.3px;
}
.home-about .content a {
  font-weight: 600;
  color: #2b2a29;
  border: 2px solid #03c600;
  border-radius: 25px;
  padding: 12px 24px;
  margin-top: 15px;
  font-size: 18px;
}
.home-about .content a:hover {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
  color: #03c600;
  border-color: transparent;
}

.certificates-wrapper, .points-of-sale {
  padding: 0 0 70px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.certificates-wrapper .bg-text, .points-of-sale .bg-text {
  position: absolute;
  z-index: 1;
  width: 100%;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.03);
  letter-spacing: 2px;
  font-weight: 900;
  font-size: 70px;
}
.certificates-wrapper .content, .points-of-sale .content {
  width: 100%;
  position: relative;
  z-index: 2;
}
.certificates-wrapper .content h3, .points-of-sale .content h3 {
  text-align: center;
  color: #03c600;
  letter-spacing: 1.5px;
  font-weight: 800;
  padding: 10px 0;
  font-size: 32px;
}
.certificates-wrapper .certificate-slider .item-list, .certificates-wrapper .points-of-sale-slider .item-list, .points-of-sale .certificate-slider .item-list, .points-of-sale .points-of-sale-slider .item-list {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.certificates-wrapper .certificate-slider .item-list .item, .certificates-wrapper .points-of-sale-slider .item-list .item, .points-of-sale .certificate-slider .item-list .item, .points-of-sale .points-of-sale-slider .item-list .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 10px 15px;
  outline: none;
  border: none;
}
.certificates-wrapper .certificate-slider .item-list .item img, .certificates-wrapper .points-of-sale-slider .item-list .item img, .points-of-sale .certificate-slider .item-list .item img, .points-of-sale .points-of-sale-slider .item-list .item img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background: white;
  padding: 15px;
}
.certificates-wrapper .certificate-slider .item-list .slick-arrow, .certificates-wrapper .points-of-sale-slider .item-list .slick-arrow, .points-of-sale .certificate-slider .item-list .slick-arrow, .points-of-sale .points-of-sale-slider .item-list .slick-arrow {
  display: none !important;
}
.certificates-wrapper .certificate-slider .arrows, .certificates-wrapper .points-of-sale-slider .arrows, .points-of-sale .certificate-slider .arrows, .points-of-sale .points-of-sale-slider .arrows {
  padding: 20px 0;
}
.certificates-wrapper .certificate-slider .arrows .slick-arrow, .certificates-wrapper .points-of-sale-slider .arrows .slick-arrow, .points-of-sale .certificate-slider .arrows .slick-arrow, .points-of-sale .points-of-sale-slider .arrows .slick-arrow {
  cursor: pointer;
  font-weight: 700;
  color: #03c600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 8px 15px;
  display: inline-block;
  border: 2px solid;
  line-height: 1;
}
.certificates-wrapper .certificate-slider .arrows .slick-arrow:hover, .certificates-wrapper .points-of-sale-slider .arrows .slick-arrow:hover, .points-of-sale .certificate-slider .arrows .slick-arrow:hover, .points-of-sale .points-of-sale-slider .arrows .slick-arrow:hover {
  color: #bf8b5b;
}

.points-of-sale {
  padding: 30px 0 100px 0;
  margin: 20px 0;
}
.points-of-sale:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70px;
  background: #e6e9ea;
  -webkit-transform: skewY(-1deg);
          transform: skewY(-1deg);
  z-index: 0;
}
.points-of-sale:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 30px;
  background: #bf8b5b;
  z-index: -1;
  -webkit-transform: skewY(1deg);
          transform: skewY(1deg);
}
.points-of-sale .content h3 {
  padding: 10px 20px;
}
.points-of-sale .content h3 strong {
  color: #2b2a29;
}
.points-of-sale .points-of-sale-slider .item-list {
  background: transparent;
  padding: 0;
}
.points-of-sale .points-of-sale-slider .arrows {
  padding: 20px;
}

.home-products {
  padding: 50px 0;
}
.home-products .section-title {
  text-align: center;
}
.home-products .section-title strong {
  color: #03c600;
  font-size: 24px;
}
.home-products .section-title h2 {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(25deg, #3f3f3f, #2b2a29, black);
  font-size: 48px;
  font-weight: 800;
}
.home-products .section-title p {
  max-width: 740px;
  margin: 0 auto;
  opacity: 0.75;
  letter-spacing: 0.5px;
}

.general-products-list {
  padding: 20px 0;
}
.general-products-list .product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 30px;
  height: 100%;
}
.general-products-list .product-item .image-area {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 375px;
          flex: 0 0 375px;
}
.general-products-list .product-item .content-area {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 375px);
          flex: 0 0 calc(100% - 375px);
  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;
}
.general-products-list .product-item .image {
  max-width: 50%;
  width: 100%;
}
.general-products-list .product-item .image figure {
  padding: 30px;
  text-align: center;
  background: url("/assets/home/media/bg-dot.jpg");
  background-size: 15px;
}
.general-products-list .product-item .image figure img {
  max-width: 388px;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}
.general-products-list .product-item .image figure figcaption {
  margin: 10px 0 0 0;
  font-weight: 600;
  color: #eb6e00;
  background: white;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  min-height: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.general-products-list .product-item .content {
  padding: 10px 10px;
  max-width: 50%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.general-products-list .product-item .content h3 {
  color: #2b2a29;
  font-weight: 800;
  font-size: 30px;
  width: 100%;
}
.general-products-list .product-item .content h3 span {
  font-weight: 500;
  color: #03c600;
}
.general-products-list .product-item .content p {
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #2b2a29;
  margin: 10px 0;
  text-indent: 10px;
  font-size: 15px;
  width: 100%;
}
.general-products-list .product-item .content .home-list {
  padding-left: 25px;
  position: relative;
}
.general-products-list .product-item .content .home-list li {
  list-style: disc;
  font-weight: 600;
}
.general-products-list .product-item .content a {
  font-weight: 600;
  color: #2b2a29;
  border: 2px solid #03c600;
  border-radius: 25px;
  padding: 12px 24px;
  margin-top: 15px;
  font-size: 18px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.general-products-list .product-item .content a:hover {
  background: #03c600;
  color: White;
}
.general-products-list .product-item .bg-shape {
  position: absolute;
  z-index: -1;
  width: 40%;
  right: 15px;
  bottom: 30px;
  opacity: 0.2;
}
.general-products-list .product-item.left-side {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  text-align: right;
}
.general-products-list .more-box {
  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;
  height: calc(100% - 60px);
  width: calc(100% - 60px);
  margin: 30px;
  padding: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  position: relative;
}
.general-products-list .more-box .inner {
  position: relative;
  z-index: 1;
}
.general-products-list .more-box .inner img {
  max-width: 480px;
  -webkit-filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.5));
          filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.5));
}
.general-products-list .more-box p {
  display: block;
  font-size: 28px;
  line-height: 1.2;
  color: #03c600;
  text-align: center;
  font-weight: 800;
  margin-top: 10px;
}
.general-products-list .more-box .bg-image {
  position: absolute;
  z-index: -1;
  width: calc(100% - 90px);
  height: calc(100% - 90px);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0.3;
}
.general-products-list .more-box .bg-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-farmers {
  padding: 30px 0 100px 0;
  background-image: url("/assets/home/media/general/farmers-bg.jpg");
  background-repeat: no-repeat;
  background-position-y: bottom;
  background-size: contain;
}
.home-farmers .images {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  position: relative;
  padding-bottom: 65px;
}
.home-farmers .images .vertical-image {
  max-width: 75%;
  margin: 0 0 0 auto;
}
.home-farmers .images .vertical-image img {
  max-height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-farmers .images .horizontal-image {
  position: absolute;
  z-index: 2;
  left: 0;
  max-width: 50%;
  bottom: 0px;
  border-top: 8px solid white;
  border-right: 8px solid white;
  -webkit-box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.25);
          box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  overflow: hidden;
}
.home-farmers .info-box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  margin-top: 100px;
  position: relative;
  background: white;
  left: -80px;
  padding: 70px 50px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.home-farmers .info-box .title {
  color: #2b2a29;
  margin-bottom: 20px;
  border-bottom: 4px solid rgba(0, 0, 0, 0.1);
}
.home-farmers .info-box .title strong {
  font-weight: 800;
}
.home-farmers .info-box .title h2 {
  color: #03c600;
  font-weight: bolder;
  font-size: 48px;
  line-height: 1;
}
.home-farmers .info-box .inner {
  margin: 30px 0;
}
.home-farmers .info-box .inner p {
  color: #2b2a29;
  font-size: 15px;
  text-align: justify;
}
.home-farmers .info-box .features {
  padding: 15px 0;
  margin: 15px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.home-farmers .info-box .features .box-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home-farmers .info-box .features .box-item .icon {
  max-width: 74px;
  padding-right: 10px;
  border-right: 2px solid #03c600;
}
.home-farmers .info-box .features .box-item h4 {
  color: #2b2a29;
  font-size: 18px;
  padding-left: 10px;
  font-weight: 600;
}
.home-farmers .info-box a {
  font-weight: 600;
  color: white;
  background: #2b2a29;
  border-radius: 25px;
  padding: 12px 24px;
  margin-top: 15px;
  font-size: 18px;
}
.home-farmers .info-box a:hover {
  background: white;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  color: #03c600;
}

.home-blog {
  padding: 0 0 40px 0;
}
.home-blog .blog-wrapper {
  padding: 40px 0;
  background: linear-gradient(-25deg, #bf8b5b, #3f3f3f, #2b2a29);
}
.home-blog .blog-wrapper .title {
  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;
  height: calc(100% - 30px);
  margin: 15px 0;
  padding: 20px 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.home-blog .blog-wrapper .title h3 {
  color: white;
  text-align: center;
  margin: 0;
  font-weight: 400;
  text-shadow: 0 0 25px black;
}
.home-blog .blog-wrapper .link-box {
  height: calc(100% - 30px);
  margin: 15px 0;
  max-height: 220px;
}
.home-blog .blog-wrapper .link-box .bg-image {
  height: 100%;
  position: relative;
  z-index: 1;
}
.home-blog .blog-wrapper .link-box .bg-image img {
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.home-blog .blog-wrapper .link-box .bg-image:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-15deg, black, transparent 50%, transparent);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
.home-blog .blog-wrapper .link-box .link-tag {
  color: white;
  font-weight: 600;
  font-size: 28px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 2;
  display: inline-block;
  padding: 15px;
  border-bottom: 5px solid #03c600;
  line-height: 1;
  text-align: right;
  width: 245px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
}
.home-blog .blog-wrapper .link-box a {
  display: block;
  height: 100%;
  overflow: hidden;
}
.home-blog .blog-wrapper .link-box a:hover .bg-image img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.home-blog .blog-wrapper .link-box a:hover .link-tag {
  width: 100%;
}
.home-blog .pre-blogs {
  padding: 50px 0;
}
.home-blog .pre-blogs .title {
  min-height: calc(100% - 30px);
  padding: 30px 30px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  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;
  margin: 15px 0;
}
.home-blog .pre-blogs .title .inner {
  text-align: center;
}
.home-blog .pre-blogs .title .inner h4 {
  color: #03c600;
  font-weight: bolder;
  font-size: 28px;
  line-height: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 5px;
}
.home-blog .pre-blogs .title .inner a {
  font-weight: 600;
  color: #2b2a29;
  border: 2px solid #03c600;
  border-radius: 25px;
  padding: 12px 24px;
  margin-top: 15px;
  font-size: 18px;
}
.home-blog .pre-blogs .title .inner a:hover {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
  color: #03c600;
  border-color: transparent;
}
.home-blog .pre-blogs .pre-blog-slider .item-list .item {
  margin: 15px 10px;
  outline: none !important;
  outline-color: none !important;
}
.home-blog .pre-blogs .pre-blog-slider .item-list .item a {
  outline: none !important;
}
.home-blog .pre-blogs .pre-blog-slider .item-list .item figure {
  margin: 0;
}
.home-blog .pre-blogs .pre-blog-slider .item-list .item figure img {
  max-height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.home-blog .pre-blogs .pre-blog-slider .item-list .item figure figcaption {
  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;
  height: 42px;
  position: relative;
  overflow: hidden;
  margin-top: 5px;
  color: #3f3f3f;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.2;
  text-align: right;
  padding: 0 5px;
}
.home-blog .pre-blogs .pre-blog-slider .item-list .item .bottom {
  padding: 5px 5px 0 5px;
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: 500;
}
.home-blog .pre-blogs .pre-blog-slider .item-list .item .bottom .type {
  color: #03c600;
}
.home-blog .pre-blogs .pre-blog-slider .item-list .item .bottom .date {
  color: #2b2a29;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.home-blog .pre-blogs .pre-blog-slider .slider-arrows {
  padding: 5px 10px;
  text-align: right;
}
.home-blog .pre-blogs .pre-blog-slider .slider-arrows .slick-arrow {
  display: inline-block;
  padding: 6px 12px;
  font-size: 20px;
  background: whitesmoke;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.home-blog .pre-blogs .pre-blog-slider .slider-arrows .slick-arrow:hover {
  color: #03c600;
}

.products-page .product-detail {
  padding: 100px 0 100px 0;
  background-image: url(/assets/home/media/general/product-footer.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: -15px;
}
.products-page .product-detail .product-image {
  padding: 15px;
  position: relative;
}
.products-page .product-detail .product-image .images-slider {
  position: relative;
}
.products-page .product-detail .product-image .images-slider .bg-shape {
  left: -200px;
  position: absolute;
  z-index: 1;
  top: -85px;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  width: 300px;
}
.products-page .product-detail .product-image .images-slider .item-list {
  position: relative;
  z-index: 2;
}
.products-page .product-detail .product-image .images-slider .item-list:after {
  content: "";
  position: absolute;
  width: calc(100% + 3px);
  height: calc(100% + 3px);
  left: -3px;
  top: -3px;
  background: linear-gradient(145deg, #03c600, transparent, transparent 95%);
  z-index: -1;
}
.products-page .product-detail .product-image .images-slider .item-list .item {
  border: none;
  outline: none;
  background: white;
}
.products-page .product-detail .product-image .images-slider .item-list .item img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.products-page .product-detail .product-image .images-slider .slider-nav {
  padding: 10px 30px;
}
.products-page .product-detail .product-image .images-slider .slider-nav .item {
  margin: 12px;
  padding: 5px;
  border: none;
  outline-color: #03c600;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.products-page .product-detail .product-image .images-slider .slider-nav .item.slick-current {
  border-radius: 2px;
  -webkit-box-shadow: 0 0 10px #03c600;
          box-shadow: 0 0 10px #03c600;
  outline: none;
}
.products-page .product-detail .product-image .images-slider .slick-arrow {
  position: absolute;
  bottom: 55px;
  cursor: pointer;
  font-size: 36px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.products-page .product-detail .product-image .images-slider .slick-arrow:hover {
  color: #03c600;
}
.products-page .product-detail .product-image .images-slider .slick-arrow.prev {
  left: 0;
}
.products-page .product-detail .product-image .images-slider .slick-arrow.next {
  right: 0;
}
.products-page .product-detail .product-content h2, .products-page .product-detail .product-content h3 {
  color: #03c600;
  border-bottom: 2px solid;
  padding-bottom: 5px;
  font-size: 32px;
}
.products-page .product-detail .product-content .about {
  margin: 15px 0;
  padding: 28px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  color: #2b2a29;
}
.products-page .product-detail .product-content .about p {
  margin: 0;
}
.products-page .product-detail .product-content .about h3 {
  margin-top: 20px;
  font-size: 20px;
  color: #2b2a29;
  margin-bottom: 20px;
}
.products-page .product-detail .product-content .about .packet-type {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 10px 0;
  padding: 5px 10px;
  border-left: 2px solid #2b2a29;
}
.products-page .product-detail .product-content .about .packet-type figure {
  text-align: center;
  display: none;
}
.products-page .product-detail .product-content .about .packet-type figure img {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.products-page .product-detail .product-content .about .packet-type figure figcaption {
  display: block;
  color: #03c600;
  font-weight: 600;
  font-size: 14px;
  margin: 10px 0 0 0;
}
.products-page .product-detail .product-tabs {
  margin-top: 30px;
}
.products-page .product-detail .product-tabs .nav-tabs {
  border: none;
}
.products-page .product-detail .product-tabs .nav-item .nav-link {
  color: #03c600;
  padding-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 0;
}
.products-page .product-detail .product-tabs .nav-item .nav-link.active {
  background: #03c600;
  color: White;
}
.products-page .product-detail .product-tabs .tab-content {
  margin: 0 0 15px 0;
  padding: 28px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  color: #2b2a29;
}
.products-page .product-detail .product-tabs .tab-content table {
  font-family: Arial;
}
.products-page .product-detail .product-tabs .tab-content table tr, .products-page .product-detail .product-tabs .tab-content table td {
  font-size: 14px;
}
.products-page .product-detail .product-tabs .tab-content table td {
  padding: 0.5rem;
}
.products-page .product-detail .product-tabs .tab-content ul li {
  position: relative;
  padding-left: 15px !important;
  font-size: 14px;
  font-weight: 500;
}
.products-page .product-detail .product-tabs .tab-content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #03c600;
  border-radius: 50%;
}
.products-page .product-detail .product-tabs .tab-content p {
  margin-bottom: 8px !important;
}
.products-page .product-detail .other-products {
  margin: 40px 0;
  background-image: url(/assets/home/media/general/oil-line.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1920px;
}
.products-page .product-detail .other-products h3 {
  color: #03c600;
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 32px;
  border-left: 2px solid;
}
.products-page .product-detail .other-products .other-item {
  height: calc(100% - 30px);
  margin: 15px 0;
}
.products-page .product-detail .other-products .other-item a {
  display: block;
  height: 100%;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #2b2a29;
}
.products-page .product-detail .other-products .other-item a .name {
  text-align: center;
  margin-top: 8px;
  font-weight: 600;
  font-size: 18px;
}
.products-page .product-detail .other-products .other-item a:hover {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  color: #03c600;
}
.products-page .product-detail .products-blogs {
  padding: 40px 0;
}
.products-page .product-detail .products-blogs .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.products-page .product-detail .products-blogs .head h3 {
  color: #03c600;
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 32px;
  border-left: 2px solid;
  margin: 0;
}
.products-page .product-detail .products-blogs .head a {
  font-weight: 600;
  color: #2b2a29;
  border: 2px solid #03c600;
  border-radius: 25px;
  padding: 12px 24px;
  margin-top: 15px;
  font-size: 18px;
}
.products-page .product-detail .products-blogs .head a:hover {
  background: #03c600;
  color: White;
}
.products-page .product-detail .products-blogs .blog-list .item {
  margin: 15px 10px;
  outline: none !important;
}
.products-page .product-detail .products-blogs .blog-list .item figure {
  margin: 0;
}
.products-page .product-detail .products-blogs .blog-list .item figure img {
  max-height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.products-page .product-detail .products-blogs .blog-list .item figure figcaption {
  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;
  height: 42px;
  position: relative;
  overflow: hidden;
  margin-top: 5px;
  color: #3f3f3f;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.2;
  text-align: right;
  padding: 0 5px;
}
.products-page .product-detail .products-blogs .blog-list .item .bottom {
  padding: 5px 5px 0 5px;
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: 500;
}
.products-page .product-detail .products-blogs .blog-list .item .bottom .type {
  color: #03c600;
}
.products-page .product-detail .products-blogs .blog-list .item .bottom .date {
  color: #2b2a29;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.products-page .general-products-list .product-item {
  padding: 20px;
}
.products-page .general-products-list .product-item > .row {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.products-page .general-products-list .product-item .content, .products-page .general-products-list .product-item .image {
  max-width: 100%;
}
.products-page .general-products-list .product-item .image figure {
  background: url(/assets/home/media/bg-dot.png);
}
.products-page .general-products-list .product-item .image figure img {
  max-height: 410px;
  -o-object-fit: contain;
     object-fit: contain;
  background: white;
}
.products-page .general-products-list .product-item .content {
  padding: 15px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.products-page .general-products-list .product-item .content a {
  width: 100%;
  max-width: 230px;
  text-align: center;
  background: rgba(255, 255, 255, 0.25);
  font-size: 16px;
  margin: 8px;
}
.products-page .general-products-list .product-item .content a:hover {
  background: #03c600;
}
.products-page .general-products-list .product-item .content a:last-of-type {
  border-color: #bf8b5b;
}
.products-page .general-products-list .product-item .content a:last-of-type:hover {
  background: #bf8b5b;
}
.products-page .general-products-list .product-item .bg-shape {
  width: 50%;
}
.products-page .general-products-list .product-item#avocado {
  background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(rgba(85, 131, 3, 0.25)), color-stop(rgba(85, 131, 3, 0.25)), to(white));
  background: linear-gradient(to bottom, white, rgba(85, 131, 3, 0.25), rgba(85, 131, 3, 0.25), white);
}
.products-page .general-products-list .product-item#avocado .content {
  border-left: 2px solid rgb(85, 131, 3);
}
.products-page .general-products-list .product-item#coconut {
  background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(rgba(121, 121, 121, 0.3)), color-stop(rgba(121, 121, 121, 0.3)), to(white));
  background: linear-gradient(to bottom, white, rgba(121, 121, 121, 0.3), rgba(121, 121, 121, 0.3), white);
}
.products-page .general-products-list .product-item#coconut .content {
  border-left: 2px solid rgb(121, 121, 121);
}
.products-page .general-products-list .product-item#cocoa {
  background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(rgba(123, 63, 0, 0.25)), color-stop(rgba(123, 63, 0, 0.25)), to(white));
  background: linear-gradient(to bottom, white, rgba(123, 63, 0, 0.25), rgba(123, 63, 0, 0.25), white);
}
.products-page .general-products-list .product-item#cocoa .content {
  border-left: 2px solid rgb(123, 63, 0);
}
.products-page .general-products-list .product-item#macademia {
  background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(rgba(219, 196, 165, 0.3)), color-stop(rgba(219, 196, 165, 0.3)), to(white));
  background: linear-gradient(to bottom, white, rgba(219, 196, 165, 0.3), rgba(219, 196, 165, 0.3), white);
}
.products-page .general-products-list .product-item#macademia .content {
  border-left: 2px solid rgb(219, 196, 165);
}
.products-page .general-products-list .product-item#almond {
  background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(rgba(163, 83, 26, 0.3)), color-stop(rgba(163, 83, 26, 0.3)), to(white));
  background: linear-gradient(to bottom, white, rgba(163, 83, 26, 0.3), rgba(163, 83, 26, 0.3), white);
}
.products-page .general-products-list .product-item#almond .content {
  border-left: 2px solid rgb(163, 83, 26);
}
.products-page .general-products-list .product-item .more-box {
  margin: 0;
  width: 100%;
  height: auto;
}

.corporate-page {
  padding: 50px 0;
}
.corporate-page .about-us .text-area {
  padding: 30px;
  text-align: justify;
  color: #2b2a29;
  text-indent: 10px;
}
.corporate-page .about-us .image {
  padding: 30px;
}
.corporate-page .about-us .image img {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.corporate-page .mision-vision .item-box {
  padding: 30px;
  height: 100%;
}
.corporate-page .mision-vision .item-box .inner {
  padding: 30px;
  -webkit-box-shadow: 0 20px 20px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 20px 20px 5px rgba(0, 0, 0, 0.15);
  height: 100%;
}
.corporate-page .mision-vision .item-box .inner h2 {
  color: #03c600;
}
.corporate-page .mision-vision .item-box .inner p {
  text-align: justify;
  font-size: 17px;
  font-weight: 500;
}

.recipes-page {
  padding: 50px 0;
}
.recipes-page .recipes-list .filters-sidebar {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  margin: 15px 0;
  padding: 20px 10px;
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
}
.recipes-page .recipes-list .filters-sidebar::-webkit-scrollbar {
  width: 6px;
}
.recipes-page .recipes-list .filters-sidebar::-webkit-scrollbar-track {
  background: #2b2a29;
}
.recipes-page .recipes-list .filters-sidebar::-webkit-scrollbar-thumb {
  background: #03c600;
}
.recipes-page .recipes-list .filters-sidebar::-webkit-scrollbar-thumb:hover {
  background: white;
}
.recipes-page .recipes-list .filters-sidebar h2 {
  color: #03c600;
  font-size: 28px;
  line-height: 1;
  text-align: center;
  padding: 10px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.recipes-page .recipes-list .filters-sidebar .filters-group {
  padding: 15px 10px;
  background: rgba(0, 0, 0, 0.03);
  margin-top: 15px;
}
.recipes-page .recipes-list .filters-sidebar .filters-group h3 {
  font-size: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-weight: 600;
  color: #182834;
  margin: 10px 0;
}
.recipes-page .recipes-list .filters-sidebar .filters-group label {
  display: block;
  position: relative;
  padding-left: 40px;
  margin: 14px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.recipes-page .recipes-list .filters-sidebar .filters-group label:hover {
  color: #03c600;
}
.recipes-page .recipes-list .filters-sidebar .filters-group label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.recipes-page .recipes-list .filters-sidebar .filters-group .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.recipes-page .recipes-list .filters-sidebar .filters-group label:hover input ~ .checkmark {
  background-color: #ccc;
}
.recipes-page .recipes-list .filters-sidebar .filters-group label input:checked ~ .checkmark {
  background-color: #03c600;
}
.recipes-page .recipes-list .filters-sidebar .filters-group .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.recipes-page .recipes-list .filters-sidebar .filters-group label input:checked ~ .checkmark:after {
  display: block;
}
.recipes-page .recipes-list .filters-sidebar .filters-group label .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.recipes-page .recipe-detail .main-info {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}
.recipes-page .recipe-detail .main-info .content {
  height: 100%;
  padding: 30px;
}
.recipes-page .recipe-detail .main-info .content h2 {
  color: #03c600;
  font-weight: 700;
  border-bottom: 2px solid;
  letter-spacing: 1px;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.recipes-page .recipe-detail .main-info .content h3 {
  font-size: 22px;
  color: #2b2a29;
  font-weight: 600;
}
.recipes-page .recipe-detail .main-info .content .tags {
  margin: 15px 0;
}
.recipes-page .recipe-detail .main-info .content .tags a {
  padding: 5px 10px;
  margin: 5px;
  border-radius: 50px;
  background: #03c600;
  font-size: 14px;
  color: white;
  font-weight: 600;
}
.recipes-page .recipe-detail .main-info .content .tags a:first-of-type {
  margin-left: 0;
}
.recipes-page .recipe-detail .main-info .content .info {
  font-size: 14px;
  color: #2b2a29;
  text-align: justify;
  font-weight: 500;
}
.recipes-page .recipe-detail .main-info .content .main-product {
  margin-top: 15px;
}
.recipes-page .recipe-detail .main-info .content .main-product a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #2b2a29;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.recipes-page .recipe-detail .main-info .content .main-product a .name {
  padding: 15px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.recipes-page .recipe-detail .main-info .content .main-product a .name h4 {
  text-align: center;
  color: #03c600;
}
.recipes-page .recipe-detail .main-info .content .main-product a .name strong {
  display: block;
  text-align: center;
}
.recipes-page .recipe-detail .main-info .content .main-product a .image img {
  width: 164px;
  height: 164px;
  -o-object-fit: contain;
     object-fit: contain;
  background: white;
}
.recipes-page .recipe-detail .main-info .content .main-product a:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  background: white;
}
.recipes-page .recipe-detail .main-info .content .main-product a:hover .name {
  color: #2b2a29;
}
.recipes-page .recipe-detail .main-info .content .main-product .multiple-products {
  background: #182834;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  padding: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.recipes-page .recipe-detail .main-info .content .main-product .multiple-products .multiple-head {
  color: #03c600;
  width: 100%;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #03c600;
}
.recipes-page .recipe-detail .main-info .content .main-product .multiple-products a {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 20px);
          flex: 0 0 calc(50% - 20px);
  margin: 10px 10px;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recipes-page .recipe-detail .main-info .content .main-product .multiple-products a .name, .recipes-page .recipe-detail .main-info .content .main-product .multiple-products a .image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.recipes-page .recipe-detail .main-info .content .main-product .multiple-products a .image {
  height: 100%;
}
.recipes-page .recipe-detail .main-info .content .main-product .multiple-products a .image img {
  width: 100%;
  height: 100%;
  background: white;
  -o-object-fit: contain;
     object-fit: contain;
}
.recipes-page .recipe-detail .main-info .image {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.recipes-page .recipe-detail .main-info .image a {
  display: block;
  width: 100%;
}
.recipes-page .recipe-detail .material-content, .recipes-page .recipe-detail .recipe-introduction {
  padding: 30px;
  margin: 20px 0;
  background-image: url("/assets/home/media/general/tarif-icindekiler-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  position: relative;
  height: calc(100% - 40px);
}
.recipes-page .recipe-detail .material-content:after, .recipes-page .recipe-detail .recipe-introduction:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(45deg, #2b2a29, #b5803d);
  opacity: 0.85;
}
.recipes-page .recipe-detail .material-content *, .recipes-page .recipe-detail .recipe-introduction * {
  position: relative;
  z-index: 2;
}
.recipes-page .recipe-detail .material-content h4, .recipes-page .recipe-detail .recipe-introduction h4 {
  background: #182834;
  padding: 10px 20px;
  color: White;
  font-weight: 600;
  text-shadow: 0 0 20px black;
  border-bottom: 2px solid #03c600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-size: 24px;
}
.recipes-page .recipe-detail .material-content ul, .recipes-page .recipe-detail .recipe-introduction ul {
  padding-left: 20px;
}
.recipes-page .recipe-detail .material-content ul li, .recipes-page .recipe-detail .recipe-introduction ul li {
  list-style: disc;
  color: white;
  font-weight: 500;
  padding: 5px 0;
}
.recipes-page .recipe-detail .recipe-introduction {
  background-image: url("/assets/home/media/general/tarif-hazirlanis-bg.jpg");
}
.recipes-page .recipe-detail .recipe-introduction:after {
  background: linear-gradient(45deg, #2b2a29, rgba(3, 198, 0, 0.68));
}
.recipes-page .recipe-detail .recipe-introduction h4 {
  border-color: #bf8b5b;
}
.recipes-page .recipe-detail .recipe-introduction ol {
  margin: 0;
  padding: 0;
}
.recipes-page .recipe-detail .recipe-introduction ol li {
  color: White;
  list-style: none;
  font-weight: 500;
  padding: 5px;
}
.recipes-page .recipe-detail .more-recipes {
  margin: 20px 0;
  padding-top: 20px;
}
.recipes-page .recipe-detail .more-recipes h5 {
  font-size: 24px;
  font-weight: 600;
  color: #03c600;
  padding: 5px 10px;
  border-left: 2px solid;
  margin-bottom: 30px;
}
.recipes-page .general-recipe-list .item {
  margin: 15px 0;
}
.recipes-page .general-recipe-list .item a {
  outline: none !important;
}
.recipes-page .general-recipe-list .item figure {
  margin: 0;
}
.recipes-page .general-recipe-list .item figure img {
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.recipes-page .general-recipe-list .item figure figcaption {
  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;
  height: 42px;
  position: relative;
  overflow: hidden;
  margin-top: 5px;
  color: #3f3f3f;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.2;
  text-align: right;
  padding: 0 5px;
}
.recipes-page .general-recipe-list .item .bottom {
  padding: 5px 5px 0 5px;
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: 500;
}
.recipes-page .general-recipe-list .item .bottom .type {
  color: #03c600;
}
.recipes-page .general-recipe-list .item .bottom .date {
  color: #2b2a29;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.contact-page {
  padding: 50px 0;
}
.contact-page .address-tag {
  margin-top: 120px;
  padding: 30px 20px 30px 20px;
  text-align: center;
  background: #2b2a29;
  position: relative;
  margin-bottom: 20px;
}
.contact-page .address-tag:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  height: 2px;
  width: 90%;
  background: #03c600;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.contact-page .address-tag .logo {
  max-width: 256px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  margin-top: -130px;
  -webkit-box-shadow: 0 0 15px gray;
          box-shadow: 0 0 15px gray;
  margin-left: auto;
  margin-right: auto;
}
.contact-page .contact-info-item {
  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;
  padding: 50px 30px;
  height: 100%;
}
.contact-page .contact-info-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  color: #2b2a29;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.contact-page .contact-info-item a .icon {
  color: #03c600;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px dashed;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 32px;
  margin-right: 10px;
}
.contact-page .contact-info-item a strong {
  display: block;
  width: 100%;
  line-height: 1;
}
.contact-page .contact-form {
  text-align: center;
  margin: 20px 0;
}
.contact-page .contact-form h2 {
  color: #03c600;
  font-weight: 700;
}
.contact-page .contact-form form {
  padding: 70px 60px;
  background: #2b2a29;
  position: relative;
}
.contact-page .contact-form form:after {
  content: "";
  position: absolute;
  z-index: 0;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  left: 20px;
  top: 20px;
}
.contact-page .contact-form form .form-group {
  margin: 20px 0;
  position: relative;
  z-index: 2;
}
.contact-page .contact-form form .form-group input, .contact-page .contact-form form .form-group textarea {
  width: 100%;
  background: transparent;
  padding: 8px 10px;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  outline: none;
  font-weight: 500;
  color: White;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact-page .contact-form form .form-group input:focus, .contact-page .contact-form form .form-group textarea:focus {
  border-color: #03c600;
  color: #03c600;
}
.contact-page .contact-form form .submit-button {
  margin-top: 30px;
  position: relative;
  z-index: 2;
}
.contact-page .contact-form form .submit-button button {
  border: 2px solid #03c600;
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: transparent;
  outline: none;
  padding: 10px;
  font-size: 20px;
  font-weight: 600;
  width: 100%;
  border-radius: 50px;
  max-width: 480px;
  margin: 0 auto;
}
.contact-page .contact-form form .submit-button button:hover {
  background: #03c600;
}

.farmers-page {
  padding: 50px 0;
}
.farmers-page .info-box {
  padding: 30px;
  margin: 20px 0;
}
.farmers-page .info-box h2, .farmers-page .info-box h3 {
  color: #03c600;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}
.farmers-page .info-box h2 strong, .farmers-page .info-box h3 strong {
  color: #2b2a29;
}
.farmers-page .info-box p {
  text-align: justify;
  font-weight: 500;
  font-size: 15px;
}
.farmers-page .image {
  margin: 30px 0;
  height: calc(100% - 60px);
}
.farmers-page .image a {
  display: block;
  height: 100%;
}
.farmers-page .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 360px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1440px) {
  .container {
    max-width: 1430px;
  }
}
@media screen and (max-width: 1439px) {
  header .logo {
    padding: 6px 12px;
  }
  header .logo a {
    max-width: 220px;
    height: 122px;
  }
  header .mega-menu {
    margin: 0;
  }
  header .mega-menu nav > ul > li {
    padding: 10px 6px;
  }
  header .mega-menu nav > ul > li > a {
    font-size: 15px;
    padding: 10px 6px !important;
  }
  header .top-menu .social-media ul li, header .top-menu .contact-links ul li {
    padding: 10px 6px;
  }
  header .top-menu .social-media ul li a, header .top-menu .contact-links ul li a {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  header .top-menu .language ul li a {
    font-size: 18px;
    width: 42px;
    height: 42px;
  }
  header.affix .logo a {
    max-width: 228px;
  }
  header.affix .logo a img {
    -webkit-transform: translateY(-87px);
            transform: translateY(-87px);
  }

  .home-about .content h1 {
    font-size: 44px;
  }

  .home-about .content strong {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .home-about .content p {
    opacity: 0.9;
    font-size: 14px;
  }

  .general-products-list .product-item .content h3 {
    font-size: 28px;
  }

  .general-products-list .product-item .content a {
    font-size: 16px;
    padding: 10px 20px;
  }

  footer .top .find-us ul li {
    padding: 5px 0;
  }

  .home-farmers .images .horizontal-image {
    right: 45px;
    bottom: 45px;
    left: auto;
  }

  .home-blog .blog-wrapper .title h3 {
    font-size: 26px;
  }

  footer .top .find-us ul li a {
    width: 42px;
    height: 42px;
    margin: 4px;
  }

  .general-products-list .product-item .content p {
    margin: 10px 0;
  }

  .general-products-list .product-item .image figure {
    height: 100%;
  }

  .breadcrumb {
    margin: 160px 15px 15px;
  }

  .products-page .product-detail .product-image .images-slider .slick-arrow {
    bottom: 38px;
  }

  .general-products-list .product-item .content-area {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 275px);
            flex: 0 0 calc(100% - 275px);
  }

  .general-products-list .product-item .image-area {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 275px;
            flex: 0 0 275px;
  }
}
@media screen and (max-width: 1199px) {
  header > .container {
    max-width: 100%;
  }
  header .top-menu {
    margin-bottom: 42px;
    position: relative;
    z-index: 10;
  }
  header .logo {
    position: relative;
    z-index: 10;
    left: 15px !important;
  }
  header .header-menu .mega-menu {
    position: fixed;
    right: -100%;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    height: 100%;
    width: 100%;
    top: 0;
    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;
    background: rgba(255, 255, 255, 0.95);
    padding: 150px 0 100px 0;
  }
  header .header-menu .mega-menu .parent-menu:before, header .header-menu .mega-menu .parent-menu:after {
    width: 0;
    display: none;
  }
  header .header-menu .mega-menu nav {
    max-width: 960px;
    max-height: 100%;
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  header .header-menu .mega-menu nav ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    background: white;
    margin: 10px 0;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  header .header-menu .mega-menu nav ul li a {
    font-size: 18px;
    display: block;
    width: 100%;
  }
  header .header-menu .mega-menu nav ul li a:before, header .header-menu .mega-menu nav ul li a:after {
    display: none !important;
  }
  header .header-menu .mega-menu nav ul li a figure {
    margin: 0;
  }
  header .header-menu .mega-menu nav ul li.has-submenu {
    position: relative;
  }
  header .header-menu .mega-menu nav ul li.has-submenu:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #2b2a29 transparent transparent transparent;
  }
  header .header-menu .mega-menu nav ul li.has-submenu a {
    display: inline-block;
    width: auto;
  }
  header .header-menu .mega-menu nav ul li .submenu {
    top: 0;
    margin-bottom: 0;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    max-height: 0;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    padding: 0;
  }
  header .header-menu .mega-menu nav ul li:hover:after {
    border-color: #03c600 transparent transparent transparent;
  }
  header .header-menu .mega-menu nav ul li:hover .submenu {
    max-height: unset;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    padding: 10px;
  }
  header .header-menu .mega-menu nav ul li:hover .submenu ul li {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  header .header-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header.menu-opened {
    -webkit-box-shadow: 0 0 20px rgb(0, 0, 0);
            box-shadow: 0 0 20px rgb(0, 0, 0);
  }
  header.menu-opened .header-menu .mega-menu {
    right: 0;
  }
  header.affix .header-button {
    bottom: 7px;
    border: none;
  }
  header.affix .header-menu .mega-menu {
    padding: 100px 0 100px 0;
  }
  .home-about .content h1 {
    font-size: 38px;
  }

  .home-about .content strong {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .home-about .content a {
    padding: 10px 20px;
    font-size: 16px;
  }

  .points-of-sale .content h3, .home-products .section-title h2 {
    font-size: 28px;
  }

  .home-farmers .info-box .title h2 {
    font-size: 38px;
  }

  .home-farmers .info-box h3 {
    font-size: 24px;
  }

  .home-farmers .info-box {
    margin-top: 60px;
    padding: 50px 30px;
  }

  .home-farmers .info-box .features .box-item .icon {
    max-width: 60px;
  }

  .home-farmers .info-box .features .box-item h4 {
    font-size: 16px;
  }

  .home-farmers .info-box .inner {
    margin: 20px 0;
  }

  .home-farmers .info-box .inner p {
    font-size: 14px;
  }

  .home-farmers .images .horizontal-image {
    right: 65px;
    bottom: 45px;
  }

  .home-farmers .images .vertical-image {
    max-width: 80%;
  }

  .home-blog .blog-wrapper .title h3 {
    font-size: 20px;
  }

  .home-blog .blog-wrapper .link-box .link-tag {
    font-size: 20px;
  }

  .points-of-sale .points-of-sale-slider .item-list .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
  }

  .breadcrumb {
    margin: 160px 15px 15px;
    padding: 30px;
  }
  .breadcrumb h1 {
    font-size: 32px;
  }

  .farmers-page .info-box {
    padding: 10px;
  }
  .farmers-page .info-box h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .farmers-page .info-box h3 {
    font-size: 26px;
  }

  .farmers-page .image {
    margin: 20px 0;
    height: calc(100% - 40px);
  }

  .home-blog .pre-blogs .title .inner h4 {
    font-size: 24px;
  }

  .home-blog .pre-blogs .title {
    padding: 20px 10px;
  }

  .home-blog .pre-blogs .title p {
    font-size: 14px;
  }

  .home-blog .pre-blogs .title .inner a {
    padding: 10px 20px;
    font-size: 16px;
  }

  .products-page .product-detail .product-image .images-slider .slick-arrow {
    bottom: 28px;
  }

  .products-page .product-detail .product-content h2, .products-page .product-detail .product-content h3, .products-page .product-detail .other-products h3, .products-page .product-detail .products-blogs .head h3 {
    font-size: 28px;
  }

  .products-page .product-detail .product-tabs .nav-item .nav-link {
    font-size: 18px;
  }

  .general-products-list .product-item .content-area {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 375px);
            flex: 0 0 calc(100% - 375px);
  }

  .general-products-list .product-item .image-area {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 375px;
            flex: 0 0 375px;
  }
}
@media screen and (max-width: 991px) {
  header .header-menu .mega-menu nav {
    max-width: 720px;
  }

  header .mega-menu ul.parent-menu > li .submenu ul li a figure img {
    height: 150px;
    -o-object-fit: contain;
       object-fit: contain;
  }

  header .header-menu .mega-menu nav ul li:hover .submenu ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
  }

  .home-about .content h1, .home-farmers .info-box .title h2 {
    font-size: 32px;
  }

  .home-farmers .info-box h3 {
    font-size: 20px;
  }

  .home-farmers .info-box {
    left: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .home-farmers .images {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding-bottom: 20px;
  }

  .home-farmers .images .vertical-image {
    max-width: 100%;
  }

  .home-farmers .images .horizontal-image {
    right: -15px;
    bottom: 130px;
    max-width: 90%;
  }

  footer .logo a {
    text-align: center;
    display: block;
  }
  footer .logo a img {
    max-width: 320px;
    margin: 0 auto;
  }

  .general-products-list .product-item .content h3 {
    font-size: 24px;
  }

  .general-products-list .product-item .content p {
    font-size: 14px;
  }

  .corporate-page .about-us .text-area {
    font-size: 14px;
    padding: 10px;
  }

  .corporate-page .about-us .image {
    padding: 10px;
  }

  .farmers-page .info-box {
    padding: 5px;
    margin: 15px 0;
  }
  .farmers-page .info-box h2 {
    font-size: 26px;
  }
  .farmers-page .info-box h3 {
    font-size: 24px;
  }

  .farmers-page .image {
    margin: 15px 0;
    height: calc(100% - 30px);
  }

  .home-blog .pre-blogs .title .inner h4 {
    font-size: 22px;
  }

  .home-blog .pre-blogs .title .inner a {
    padding: 10px 20px;
    font-size: 16px;
  }

  .products-page .product-detail .product-image .images-slider .slick-arrow {
    bottom: 80px;
  }

  .products-page .product-detail .product-content h2, .products-page .product-detail .product-content h3, .products-page .product-detail .other-products h3, .products-page .product-detail .products-blogs .head h3 {
    font-size: 26px;
  }

  .products-page .product-detail .product-tabs .nav-item .nav-link {
    font-size: 18px;
  }

  .products-page .product-detail .product-content .about {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 767px) {
  header .header-menu .mega-menu nav {
    max-width: 540px;
  }
  header .header-menu .mega-menu nav ul li .submenu.products-menu ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 3px 0;
  }
  header .header-menu .mega-menu nav ul li .submenu.products-menu ul li a {
    display: block;
    width: 100%;
    padding: 3px 0;
  }
  header .header-menu .mega-menu nav ul li .submenu.products-menu ul li a figure {
    padding: 3px 5px;
  }
  header .header-menu .mega-menu nav ul li .submenu.products-menu ul li a figure img {
    display: none;
  }
  header .header-menu .mega-menu nav ul li .submenu.products-menu ul li a figure figcaption {
    display: block;
    width: 100%;
    padding: 5px 10px;
  }

  .home-about .content h1 {
    font-size: 28px;
  }

  .points-of-sale .content h3, .home-products .section-title h2 {
    font-size: 24px;
  }

  .home-farmers .images {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-bottom: 20px;
  }

  .home-farmers .info-box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .home-farmers .images .vertical-image {
    max-width: 75%;
  }

  .home-farmers .images .horizontal-image {
    left: 0;
    bottom: -10px;
    max-width: 85%;
    right: auto;
  }

  .home-farmers .info-box a {
    font-size: 16px;
    padding: 10px 20px;
  }

  .points-of-sale .points-of-sale-slider .item-list .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 0;
  }
  .points-of-sale .points-of-sale-slider .item-list .item img {
    padding: 8px;
  }

  .general-products-list .product-item .content a {
    font-size: 14px;
    padding: 8px 16px;
  }

  .general-products-list .product-item .content h3 {
    font-size: 20px;
  }

  .general-products-list .product-item .image figure {
    padding: 10px 30px;
  }

  .breadcrumb {
    margin: 160px 15px 15px;
    padding: 30px;
  }
  .breadcrumb h1 {
    font-size: 24px;
  }
  .breadcrumb .page-path ul li a {
    font-size: 14px;
  }

  .corporate-page .about-us .text-area {
    padding: 0;
  }

  .farmers-page .info-box h2 {
    font-size: 24px;
  }
  .farmers-page .info-box h3 {
    font-size: 22px;
  }
  .farmers-page .info-box p {
    font-size: 14px;
  }

  .home-blog .pre-blogs .title .inner h4 {
    font-size: 20px;
  }

  .home-blog .pre-blogs .title .inner a {
    padding: 8px 16px;
  }

  .products-page .product-detail .product-image .images-slider .slick-arrow {
    bottom: 85px;
  }

  .products-page .product-detail .product-image .images-slider .bg-shape {
    display: none;
  }

  .products-page .product-detail {
    padding: 50px 0;
  }

  .products-page .product-detail .product-content h2, .products-page .product-detail .product-content h3, .products-page .product-detail .other-products h3, .products-page .product-detail .products-blogs .head h3 {
    font-size: 24px;
  }

  .products-page .product-detail .product-content .about p {
    font-size: 14px;
  }

  .products-page .product-detail .product-tabs .nav-item .nav-link {
    font-size: 16px;
  }

  .products-page .product-detail .products-blogs .head a {
    font-size: 16px;
    padding: 8px 16px;
  }

  .products-page .product-detail .product-content .about {
    padding: 15px 10px;
  }

  .general-products-list .product-item .content-area {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .general-products-list .product-item .image-area {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 375px;
  }
}
@media screen and (max-width: 575px) {
  header .header-button {
    position: relative;
    -webkit-transform: none;
            transform: none;
    bottom: 0;
    padding-left: 0;
    border: none;
  }
  header .header-button .text {
    display: none;
  }
  header .logo {
    left: 10px;
  }
  header .top-menu {
    position: fixed;
    right: -100%;
    bottom: 15px;
    text-align: center;
    width: 100%;
  }
  header.menu-opened .top-menu {
    right: 0;
    margin: 0;
  }
  header.affix.menu-opened .top-menu {
    height: 70px;
    opacity: 1;
  }
  header.affix .header-button {
    bottom: 0;
  }

  header .header-menu .mega-menu nav ul li a {
    font-size: 16px;
  }

  header .logo a {
    max-width: 180px;
    height: 99px;
  }

  header.affix {
    padding: 5px 0;
  }

  header.affix .logo a {
    max-width: 189px;
    height: 31px;
  }

  header.affix .logo a img {
    -webkit-transform: translateY(-75px);
            transform: translateY(-75px);
  }

  .home-farmers .content {
    margin: 0;
  }

  .home-products .section-title h2, .points-of-sale .content h3, .home-products .section-title h2, .points-of-sale .content h3 {
    font-size: 20px;
  }

  .home-products .section-title strong {
    font-size: 18px;
  }

  .home-products .section-title p {
    font-size: 14px;
  }

  .general-products-list .product-item .image {
    max-width: 100%;
  }

  .general-products-list .product-item .content {
    max-width: 100%;
    margin-top: 15px;
  }

  .breadcrumb {
    margin: 120px 15px 0px;
    padding: 20px 10px;
  }
  .breadcrumb h1 {
    font-size: 20px;
    margin: 0;
  }
  .breadcrumb .page-path ul li a {
    font-size: 13px;
  }

  .corporate-page .mision-vision .item-box .inner h2 {
    font-size: 24px;
  }

  .corporate-page .mision-vision .item-box .inner p {
    font-size: 15px;
  }

  .contact-page .contact-info-item a {
    font-size: 18px;
  }
  .contact-page .contact-info-item a .icon {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .contact-page .contact-form h2 {
    font-size: 24px;
  }

  .contact-page .contact-form form {
    padding: 24px 16px;
  }
  .contact-page .contact-form form:after {
    display: none;
  }

  .contact-page .contact-form form .submit-button button {
    font-size: 16px;
  }

  .contact-page .contact-info-item {
    padding: 20px;
  }

  .contact-page .contact-form form .form-group input, .contact-page .contact-form form .form-group textarea {
    font-size: 14px;
  }

  .products-page .product-detail .product-image .images-slider .slick-arrow {
    bottom: 20px;
  }

  .products-page .product-detail .product-tabs .nav-item .nav-link {
    font-size: 14px;
  }
}