/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  calculation of the height of the owl-item that breaks page layouts
  */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.w-5- {
  width: 5px;
}

.w-10- {
  width: 10px;
}

.w-15- {
  width: 15px;
}

.w-20- {
  width: 20px;
}

.w-25- {
  width: 25px;
}

.w-30- {
  width: 30px;
}

.w-35- {
  width: 35px;
}

.w-40- {
  width: 40px;
}

.w-45- {
  width: 45px;
}

.w-50- {
  width: 50px;
}

.w-55- {
  width: 55px;
}

.w-60- {
  width: 60px;
}

.w-65- {
  width: 65px;
}

.w-70- {
  width: 70px;
}

.w-75- {
  width: 75px;
}

.w-80- {
  width: 80px;
}

.w-85- {
  width: 85px;
}

.w-90- {
  width: 90px;
}

.w-95- {
  width: 95px;
}

.w-100- {
  width: 100px;
}

* {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

em {
  font-style: normal;
}

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

.text-start {
  text-align: start !important;
}

.text-end {
  text-align: end;
}

.text-center {
  text-align: center;
}

ol,
ul,
h1,
h2,
h3,
h5,
h4,
h6 {
  margin: 0;
  padding: 0;
}

.pxt {
  margin-top: 50px;
}

.pxl {
  margin-top: 150px;
}

a {
  text-decoration: none !important;
  color: inherit;
}

html {
  overflow-x: hidden;
}

body {
  width: 100vw;
  overflow-x: hidden;
  display: block;
  font-family: "Lato", serif;
  text-align: start;
}

:focus-visible,
.form-control:focus,
button:focus {
  outline: none;
  box-shadow: unset;
}

.nave-responsive {
  display: none;
}

.container {
  max-width: 1080px;
}

.sticky-header .header-bar {
  position: fixed;
  width: 100%;
  height: 70px;
  background: #fff;
  transition: 0.3s ease-in-out;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
  top: 0;
  z-index: 9;
}
.sticky-header .header-bar .logo {
  transition: 0.3s ease-in-out;
  transform: scale(0.8);
}
.sticky-header .header-bar .menu-bar {
  height: 70px;
  transition: 0.3s ease-in-out;
}

.sm-header {
  background-color: #252639;
  position: relative;
  z-index: 1;
  min-height: 30px;
}

.bg-text span {
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.h-list {
  display: flex;
  align-items: center;
  justify-content: end;
}
.h-list .sm-header-list,
.h-list .sm-socila-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin: 0;
}
.h-list .sm-header-list li {
  position: relative;
  margin: 0 0.7em;
}
.h-list .sm-header-list li a {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.h-list .sm-header-list li a:hover {
  color: #ffffff;
}
.h-list .sm-header-list li a::after {
  border-color: hsla(0, 0%, 100%, 0.2);
  border-left: 1px solid rgba(0, 0, 0, 0.23);
  content: "";
  height: 15px;
  position: absolute;
  top: 8px;
  width: 1px;
  right: -10px;
}
.h-list .sm-header-list li:last-child a::after {
  display: none;
}

.logo {
  height: 100px;
  padding: 10px;
  transition: 0.3s ease-in-out;
}
.logo img {
  width: auto;
  height: 100%;
  max-height: 100%;
  min-height: 100%;
  max-width: 100%;
  min-width: 100%;
  transition: 0.3s ease-in-out;
}

.menu-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row nowrap;
  width: 100%;
  height: 90px;
  transition: 0.3s ease-in-out;
}

.header-bar {
  height: 90px;
  transition: 0.3s ease-in-out;
}

ul.list-menu {
  display: flex;
  align-items: center;
  justify-content: end;
}
ul.list-menu li {
  color: hsla(0, 0%, 40%, 0.85);
  font-size: 13px;
  margin: 0 5px;
  text-transform: uppercase;
  font-weight: 700;
  font-style: normal;
}
ul.list-menu li:hover {
  color: hsla(0, 0%, 7%, 0.85);
}

.search_ {
  position: relative;
}
.search_:hover .search-box {
  transition: opacity 0.25s, visibility 0.25s;
  visibility: visible;
  opacity: 1;
}
.search_ .fl-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  top: -11px;
  background: #ffffff;
  transform: rotate(45deg);
  border: 2px solid #ddd;
  z-index: 2;
  border-bottom: 0;
  border-right: 0;
  left: 20px;
}
.search_ .search-box {
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  padding: 15px 20px;
  border: 2px solid #ddd;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  color: #777;
  transition: opacity 0.25s, visibility 0.25s;
  top: 30px;
  left: -20px;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
.search_ .search-box .st-box {
  display: flex;
  align-items: center;
  justify-content: start;
}
.search_ .search-box .st-box input {
  padding: 5px 10px;
  border: 2px solid #ddd;
}
.search_ .search-box .st-box button {
  padding: 6px 10px;
  background-color: #3f7a33;
  color: #ffffff;
  border: 1px solid #3f7a33;
}

.main-sec {
  position: relative;
  background-image: url("../../../imgs/main-layer.png");
  background-size: contain;
  background-attachment: fixed;
  height: 100%;
}

.banner {
  height: 600px;
}
.banner .bg-banner {
  height: 600px;
}
.banner .bg-banner:hover button.owl-prev,
.banner .bg-banner:hover button.owl-next {
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  opacity: 1;
}
.banner .bg-banner .item {
  height: 600px;
  position: relative;
}
.banner .bg-banner .item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .bg-banner .item .fk-border-layer {
  position: absolute;
  height: 97%;
  border: 2px dashed #ffffff;
  top: 1%;
  left: 22px;
  width: 98%;
  display: none;
}
.banner .bg-banner button.owl-prev,
.banner .bg-banner button.owl-next {
  position: absolute !important;
  top: 50% !important;
  width: 30px;
  height: 30px;
  border: 1px solid #ffffff !important;
  border-radius: 50% !important;
  color: #fff;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.banner .bg-banner button.owl-prev:hover,
.banner .bg-banner button.owl-next:hover {
  background: #3f7a33;
}
.banner .bg-banner button.owl-prev {
  left: 20px;
}
.banner .bg-banner button.owl-next {
  right: 20px;
}
.banner .bg-banner .owl-dots {
  bottom: 15px;
  left: 20%;
  line-height: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 20%;
  text-align: center;
}
.banner .bg-banner .owl-dots .owl-dot span {
  width: 20px !important;
  height: 7px !important;
  border-radius: 7px 0 !important;
}

.main-text-tittle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
  width: 100%;
  margin-bottom: 40px;
}
.main-text-tittle span {
  border: 2px solid rgba(0, 0, 0, 0.1);
  padding: 8px 30px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  color: #555;
  position: relative;
}
.main-text-tittle b {
  background-color: currentColor;
  display: block;
  flex: 1;
  height: 2px;
  opacity: 0.1;
}

.card-sec {
  text-align: center;
}
.card-sec img {
  width: 90px;
  height: 93px;
  margin: 5px auto;
}
.card-sec h4 {
  color: #466444;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 0;
}
.card-sec p {
  color: #466444;
  font-size: 16px;
  font-weight: 500;
}

marquee {
  background: #252639;
  margin: 30px 0 0 0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.olives-banner .item,
.Pickled-vegetables .item,
.Black-olives-banner .item {
  height: 205px;
  border-radius: 6px;
  /* box-shadow: 0px 12px 16px #c7c7c7; */
}
.olives-banner .item img,
.Pickled-vegetables .item img,
.Black-olives-banner .item img {
  height: 100%;
}

.Our-Vision-text p {
  font-size: 18px;
  font-weight: 400;
  color: #466444;
}

.Certificates-img img {
  width: 100%;
  height: 100%;
  padding: 10px;
}

section.footer- {
  position: relative;
  width: 100%;
  margin-top: 50px;
}
section.footer- .top-footer {
  background-color: #252639;
  padding: 30px 0 0;
}
section.footer- .top-footer .footer-text span {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  color: #f1f1f1;
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: block;
}
section.footer- .top-footer .footer-text span:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background: hsla(0, 0%, 100%, 0.3);
  bottom: 0;
  left: 0;
}
section.footer- .top-footer .f-details p {
  color: #f1f1f1;
  font-size: 16px;
  margin-bottom: 20px;
}
section.footer- .top-footer .f-socila {
  display: flex;
  align-items: center;
}
section.footer- .top-footer .f-socila span {
  width: 40px;
  height: 40px;
  border: 2px solid hsla(0, 0%, 100%, 0.5);
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 5px;
  color: #fff;
  transition: 0.3s ease-in-out;
}
section.footer- .top-footer .f-socila span.f-book-icon:hover {
  background: #bdbdbd;
}
section.footer- .top-footer .f-socila span.mail-icon:hover {
  transition: 0.3s ease-in-out;
  background: #111;
}

.list-f-details ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(136, 136, 136, 0.4784313725);
  align-items: center;
  display: flex;
  width: 60%;
}

.badge.post-date {
  margin-inline-end: 10px;
  border: 2px solid #f1f1f1;
  border-radius: 0;
  color: #f1f1f1;
  font-weight: 700;
}
.badge.post-date .badge-text-d {
  color: #f1f1f1;
  font-size: 16px;
}
.badge.post-date .badge-text-d em {
  display: block;
  font-size: 12px;
}

.list-f-details ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(136, 136, 136, 0.4784313725);
  align-items: center;
  display: flex;
  width: 60%;
}

.badge-text-d {
  color: #f1f1f1;
  font-size: 16px;
}

.badge.post-date {
  margin-inline-end: 10px;
  border: 2px solid #f1f1f1;
  border-radius: 0;
  color: #f1f1f1;
  font-weight: 700;
}

.brm-footer {
  background-color: #1b1c2f;
  padding: 10px 0 15px;
}
.brm-footer .f-home-list ul {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(221, 221, 221, 0.3098039216);
  margin-bottom: 5px;
  padding-bottom: 5px;
  opacity: 0.8;
  flex-wrap: wrap;
}
.brm-footer .f-home-list ul li {
  margin-inline-end: 10px;
  color: rgba(255, 255, 255, 0.5019607843);
}
.brm-footer .f-home-list ul li:hover {
  color: #fff;
}
.brm-footer .f-home-list .copy-wr {
  color: rgba(255, 255, 255, 0.5019607843);
  font-size: 16px;
}

.payment-icons {
  display: flex;
  align-items: center;
  justify-content: end;
}
.payment-icons .payment-icon {
  background-color: rgba(0, 0, 0, 0.52);
  border-radius: 5px;
  display: inline-block;
  margin: 3px 3px 0;
  opacity: 0.6;
  padding: 3px 5px 5px;
  transition: opacity 0.3s;
}
.payment-icons .payment-icon:hover {
  opacity: 1;
}
.payment-icons .payment-icon svg {
  height: 20px;
  vertical-align: middle;
  width: auto !important;
  fill: #fff;
}

.watchapp-icon {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
}
.watchapp-icon span {
  background: #41d44a;
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  right: 55px;
  padding: 2px 10px;
  border-radius: 8px;
  color: #fff;
  top: 7px;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.watchapp-icon:hover span {
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.breadcrumb-sec {
  padding: 20px 0;
}
.breadcrumb-sec a {
  color: #466444;
  font-weight: 400;
}
.breadcrumb-sec em {
  margin: 0 10px;
}
.breadcrumb-sec span {
  color: #222;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0;
}

.p-list-details h4 {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
  color: #466444;
}
.p-list-details h4:before {
  content: "";
  position: absolute;
  bottom: 0px;
  background: #777;
  width: 30px;
  height: 2px;
}
.p-list-details ul li {
  padding: 6px 0;
  color: #466444;
  border-bottom: 1px solid #ececec;
}
.p-list-details ul li.active {
  font-weight: bold;
  color: #000 !important;
}

.card-p-details {
  border-radius: 6px;
  margin: 12px 0;
  padding: 10px;
  text-align: center;
}
.card-p-details img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-p-details h5 {
  font-size: 20px;
  padding-bottom: 10px;
  color: #466444;
}
.card-p-details p {
  font-size: 16px;
  font-weight: 400;
  color: #466444;
}

.item-img {
  height: 400px;
  position: relative;
}
.item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.item-img .maxmize-img button {
  position: absolute;
  bottom: 50px;
  width: 50px;
  height: 50px;
  border: 1px solid #bdbdbd;
  background: unset;
  border-radius: 50%;
  font-size: 22px;
  color: #bdbdbd;
}

.top-p-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.arrows-itemc {
  display: flex;
  align-items: center;
}
.arrows-itemc .btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #466444;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  margin-inline-start: 10px;
  cursor: pointer;
}

.sm-breadcrumb .breadcrumb-sec {
  padding: 10px 0;
}
.sm-breadcrumb h4 {
  font-size: 22px;
  padding: 0px 0px 10px 0;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  color: #466444;
  margin-bottom: 10px;
}
.sm-breadcrumb h4:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background: hsla(0, 0.28%, 61.24%, 0.3);
  bottom: 0;
  left: 0;
}

.all-details h3 {
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 20px;
  color: hsla(0, 0%, 40%, 0.85);
  text-transform: uppercase;
}
.all-details ul.info-list li {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 25px;
  padding-bottom: 20px;
  color: #466444;
}
.all-details span {
  font-size: 16px;
  padding-bottom: 10px;
  display: inline-block;
  color: #466444;
}
.all-details span em {
  font-weight: 600;
}
.all-details ul.social-list-links {
  display: flex;
  align-items: center;
  justify-content: start;
}
.all-details ul.social-list-links li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #d1d1d1;
  border-radius: 50%;
  margin-inline-end: 10px;
  color: #466444;
}

.location-page {
  padding-top: 30px;
}
.location-page h4 {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  padding-bottom: 20px;
  color: #466444;
}
.location-page .img-location {
  width: 610px;
  height: 360px;
  margin: 0 auto;
  cursor: pointer;
}
.location-page .img-location img {
  width: auto;
  height: 100%;
  max-height: 100%;
  min-height: 100%;
  max-width: 100%;
  min-width: 100%;
  padding: 10px;
}

.location-map {
  padding: 30px 0;
}
.location-map h5 {
  position: relative;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
  padding-bottom: 20px;
  color: #466444;
}
.location-map h5:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ececec;
  bottom: 0;
  left: 0;
}
.location-map .our-lcation {
  width: 500px;
  height: 360px;
}

.call-us {
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 10px 0;
}
.call-us img {
  width: 45px;
  height: 45px;
}
.call-us span {
  padding-inline-start: 10px;
  font-weight: 700;
  color: #555;
}

.social-link {
  display: flex;
}
.social-link span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: 10px;
  border: 2px solid hsla(0, 0%, 34.08%, 0.5);
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}
.social-link span:hover {
  transition: 0.3s ease-in-out;
  background: #252639;
  color: #fff;
}

.cart-sec {
  position: relative;
  font-size: 20px;
  color: #466444;
}

.form-g {
  background: #fff;
  padding: 20px;
  margin: 10px 0;
  box-shadow: 0px 5px 8px rgba(191, 191, 191, 0.4705882353);
  border-radius: 6px;
}

@media (max-width: 990px) {
  .container {
    width: 100%;
    max-width: 100%;
  }
  .dog {
    overflow: hidden;
  }
  .col-md-6 {
    width: 100%;
    max-width: 100%;
  }
  .Certificates-img {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .h-list {
    display: none;
  }
  .bg-text {
    width: 100%;
    text-align: center;
  }
  .sticky-header .nave-responsive {
    top: 0;
    transition: 0.3s ease-in-out;
  }
  .nave-responsive {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    top: 30px;
    background: #FAFAFA;
    box-shadow: 2px 4px 24px 0px rgba(0, 0, 0, 0.05);
    z-index: 99;
    padding: 10px 15px;
    transition: 0.3s ease-in-out;
  }
  .nave-responsive a img {
    height: 60px;
  }
  .nave-responsive .bar {
    font-size: 28px;
  }
  .nave-responsive .bar i {
    color: #466444;
  }
  .menu-bar.open {
    left: 0;
  }
  .menu-bar .logo {
    display: none;
  }
  .menu-bar {
    position: fixed;
    width: 80%;
    padding-top: 20px;
    background-color: #ffffff;
    z-index: 44;
    /* width: inherit; */
    height: 100%;
    left: -100%;
    top: 100px;
    transition: left 0.5s;
    flex-direction: column;
    padding-bottom: 200px;
  }
  .menu-bar nav {
    width: 100%;
  }
  .menu-bar ul {
    flex-direction: column;
  }
  .menu-bar ul li {
    width: 100%;
    text-align: start;
    padding: 10px 20px;
    border-bottom: 1px solid #ececec;
    margin-bottom: 10px;
  }
  .sticky-header .header-bar .menu-bar {
    top: 60px;
    height: 100%;
  }
  .header-bar {
    height: 0;
  }
  .banner {
    height: 200px;
  }
  .banner .bg-banner {
    height: 200px;
  }
  .banner .bg-banner .item {
    height: 250px;
  }
  .banner .bg-banner .item img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .olives-banner .item,
  .Pickled-vegetables .item,
  .Black-olives-banner .item {
    width: 100%;
  }
  .olives-banner .item img,
  .Pickled-vegetables .item img,
  .Black-olives-banner .item img {
    height: 100%;
  }
  .menu-bar.open .search_ > i {
    display: none;
  }
  .menu-bar.open .search_ .search-box {
    position: relative;
    opacity: 1;
    visibility: visible;
    width: 100%;
    box-shadow: unset;
    border: unset;
    padding: 10px 20px;
    background-color: unset;
    top: 0;
  }
  .menu-bar.open .search_ .search-box span.fl-icon {
    display: none;
  }
  .fk-layer.open {
    left: 0;
  }
  .fk-layer {
    position: fixed;
    width: 100%;
    top: 0;
    left: -100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2588235294);
    z-index: 2;
  }
  .item-img {
    width: 100%;
  }
  .location-page .img-location,
  .location-map .our-lcation iframe,
  .location-map .our-lcation {
    width: 100% !important;
  }
  .img-location img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .page-details .col-md-4 {
    display: none;
  }
  .card-p-details img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: auto;
  }
  .page-details .col-md-6 {
    width: 50%;
    max-width: 50%;
  }
  .Certificates .col-md-3 {
    width: 50%;
    max-width: 50%;
  }
  section.main-banner {
    margin-top: 60px;
  }
}
@media (max-width: 576px) {
  .page-details .col-md-6,
  .Certificates .col-md-6 {
    width: 50%;
    max-width: 50%;
  }
  .fk-header {
    width: 100%;
    height: 40px;
  }
}/*# sourceMappingURL=style.css.map */