:root {
  --zero: #1b3930;
  --one: #3c6255;
  --two: #61876e;
  --three: #269746;
  --four: #c0c985;
  --five: #8b6e55;
}

element.style {
  --bs-scroll-height: 100px;
}
/* ------------------Navbar------------------------- */
.navbar-brand {
  color: white !important;
  font-weight: 600;
  font-size: 20px;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent !important;
  transition: background-color 0.6s ease;
}
.navbar.scrolled {
  background-color: rgba(27, 57, 48, 0.9) !important;
  display: none;
}
.navbar .nav-link {
  font-size: 16px;
  font-weight: 200;
  color: white;
  margin-left: 25px;
}
.navbar-nav.custom-nav {
  width: 60%;
  /* padding-top: 18px; */
}
.navbar-nav .nav-link.active {
  /* text-decoration: underline; */
  color: #fff;
  font: bold;
  font-weight: 200;
  border-bottom: #fff 5px solid;
}
.search-btn {
  background-color: transparent;
  color: #fff;
}
.search-btn::placeholder {
  color: white;
}

.navbar {
  background-color: transparent;
  transition: 0.6s;
}

.nav-link,
.navbar-brand {
  color: var(--zero);
}

/* HOme */
body {
  font: 14px/2 "Open sans", sans-serif;
  letter-spacing: 0.05em;
}

.btn {
  display: inline-block;
  padding: 13px 20px;
  color: #fff;
  text-decoration: none;
  position: relative;
  background: transparent;
  border: 1px solid #e1e1e1;
  font: 12px/1.2 "Oswald", sans-serif;
  letter-spacing: 0.4em;
  text-align: center;
  text-indent: 2px;
  text-transform: uppercase;
  transition: color 0.1s linear 0.05s;
}
.btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e1e1e1;
  z-index: 1;
  opacity: 0;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}
.btn::after {
  transition: border 0.1s linear 0.05s;
}
.btn .btn-inner {
  position: relative;
  z-index: 2;
}
.btn:hover {
  color: #373737;
  transition: color 0.1s linear 0s;
}
.btn:hover::before {
  top: 0;
  height: 100%;
  opacity: 1;
  transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}
.btn:hover::after {
  border-color: #373737;
  transition: border 0.1s linear 0s;
}

.slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.slideshow .slide.is-active {
  display: block;
}
.slideshow .slide.is-loaded {
  opacity: 1;
}
.slideshow .slide .caption {
  padding: 0 100px;
}
.slideshow .slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
}
.slideshow .slide .image-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.slideshow .slide .image {
  width: 100%;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.slideshow .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slideshow .slide .title {
  margin: 0 auto 15px;
  max-width: 1000px;
  font: 300 50px/1.2 "Oswald", sans-serif;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.slideshow .slide .text {
  margin: 0 auto;
  max-width: 1000px;
  font-size: 18px;
  line-height: 1.4;
}
.slideshow .slide .btn {
  margin: 15px 0 0;
  border-color: #fff;
}
.slideshow .slide .btn::before {
  background: #fff;
}
.slideshow .pagination {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
  height: 12px;
  cursor: default;
  z-index: 2;
  text-align: center;
}
.slideshow .pagination .item {
  display: inline-block;
  padding: 15px 5px;
  position: relative;
  width: 46px;
  height: 32px;
  cursor: pointer;
  text-indent: -999em;
  z-index: 1;
}
.slideshow .pagination .item + .page {
  margin-left: -2px;
}
.slideshow .pagination .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 5px;
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease;
}
.slideshow .pagination .item::after {
  width: 0;
  background: #fff;
  z-index: 2;
  transition: width 0.2s ease;
}
.slideshow .pagination .item:hover::before,
.slideshow .pagination .item.is-active::before {
  background-color: #fff;
}
.slideshow .arrows .arrow {
  margin: -33px 0 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 3;
}
.slideshow .arrows .prev {
  left: 30px;
}
.slideshow .arrows .prev:hover .svg {
  left: -10px;
}
.slideshow .arrows .next {
  right: 30px;
}
.slideshow .arrows .next:hover .svg {
  left: 10px;
}
.slideshow .arrows .svg {
  position: relative;
  left: 0;
  width: 14px;
  height: 26px;
  fill: #fff;
  transition: left 0.2s ease;
}

/* -------Icons-------- */
.icon-cards {
  color: var(--two);
}
/* About Us */
.about-us-2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(images/about.png);
  /* height: 70vh; */
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  font-family: "Oswald", sans-serif !important;
}
.section-title {
  font-size: 45px;
  color: var(--zero);
  font-family: "Oswald", sans-serif !important;
  align-self: center;
  text-align: center;
  padding-bottom: 30px;
}
.about-us-2 h2 {
  font-size: 40px;
}
.about-us-2 p {
  font-size: 17px;
  color: #d9d7d7;
}
.shipping {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url(images/shipping/sixteen-miles-out-IVCI2rmcJE8-unsplash.jpg);
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  font-family: "Oswald", sans-serif !important;
}
.shipping p {
  font-size: 20px;
  color: black;
  font-weight: 500;
}
/*Olive Products  */
.olive-cards {
  flex-wrap: wrap;
}
.card {
  transition: all 0.3s ease;
  transform-origin: center center;
  filter: brightness(1); /* Initial brightness */
  margin-bottom: 15px;
}
.card-img-top {
  height: 300px !important;
}
@media (max-width: 1000px) {
  .card-img-top {
    height: 150px !important;
  }
  .card {
    margin-bottom: 15px;
    width: 150px;
  }
}
@media (max-width: 720px) {
  .card-img-top {
    height: auto !important;
  }
  .card {
    margin-bottom: 15px;
  }
}

.card:hover {
  transform: scale(0.98); /* Zoom in slightly */
  filter: brightness(0.7); /* Reduce brightness on hover */
}

/* ----------Our Products---------- */
.prod-txt {
  font-size: 24px;
  color: var(--zero);
}
.prod-layer {
  transition: all ease-out 0.6s;
  transform: rotateY(180deg);
}
.details {
  opacity: 0;
  transition: all ease-out 0.3s;
  top: 42%;
  left: 30%;
  text-decoration: none;
  color: var(--four);
  font-size: 25px;
}
.product-card:hover .details {
  visibility: visible;
  opacity: 1;
}
.product-card:hover .prod-layer {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  transform: rotateY(360deg);
}
/* --------Quality---------- */

/* ----------Contact--------- */
.contact {
  color: var(--three);
  font-size: large;
}
.icon-circle {
  width: 50px;
  height: 50px;
  vertical-align: middle;
}
.icon-serv i {
  color: var(--one);
}
.list-group-item {
  border: none; /* Remove the bottom border from list items */
}
#contact {
  background-color: #f8f9f2;
}
.form-control {
  background-color: #f8f9f2;
}
.con-info,
.con-form {
  background-color: #f8f9f2;
}
.get-in-touch {
  color: var(--zero);
}

/* ----------chat---------- */
.chat-section {
  background-color: var(--one);
  color: white;
}
.chat-btn {
  background-color: #157a3a;
  border: 0px;
}
.chat-btn:hover {
  border: 0px;
  background-color: #0f5328;
}
.chat-btn a {
  color: white;
  transition: all 0.3s, color 0.3s;
  text-decoration: none;
}
.cc {
  font-size: 15px;
}
ul {
  list-style: none;
}
.chat-icon {
  font-size: 20px;
  margin-right: 8px;
}
/* -------------footer----------- */
.list-group li,
.list-group ul {
  background-color: #f8f9f2 !important;
}
.list-group li a {
  background-color: #f8f9f2 !important;
  color: var(--one);
  text-decoration: none !important;
}
.sub {
  background-color: var(--zero) !important;
  color: white;
}
.sub:hover {
  background-color: var(--one) !important;
}
.list-group li a:hover {
  color: var(--zero) !important;
}
.list-group li:hover i {
  color: var(--zero) !important;
}

footer {
  background: var(--zero);
  padding: 30px;
}

.list-group-f li a {
  color: white;
  text-decoration: none;
}

.footer,
footer p {
  word-spacing: 2px;
  line-height: 1.6;

  font-size: 15px;
}
.footer {
  background-color: #0b251c;
  color: white;
  margin-bottom: 0px !important;
}
.footer a {
  color: white;
  text-decoration: none;
}

.world-map-caption {
  margin-top: 10px; /* Add space between image and caption */
  font-size: 14px; /* Adjust font size */
  color: #888; /* Choose a color that complements your design */
}

/* --------------------------- */

.col-6 {
  /* width: 17rem; */
  padding-left: 10px;
  padding-bottom: 10px;
}

/* Styles for phone-sized screens (up to 767px wide) */
@media only screen and (max-width: 767px) {
  .col-6 {
    width: 7rem !important;
    flex-basis: 50% !important;
    padding: 0px 20px 20px 0px;
  }
  .navbar-nav .nav-link.active {
    /* text-decoration: underline; */
    color: #fff;
    font: bold;
    font-weight: 200;
    border-bottom: none;
  }
}
