/* =========================
   BOTAKE POLICY PAGES
========================= */

.policy-page {
  overflow-x: hidden;
  color: #1c2533;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.policy-page #header .navbar-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.policy-page #header .site-logo {
  display: block;
  width: 140px !important;
  max-width: 140px !important;
  height: auto !important;
  max-height: 85px !important;
  object-fit: contain;
}

.policy-page #header #cart-count {
  position: absolute;
  top: -8px;
  right: -8px;

  display: none;
  align-items: center;
  justify-content: center;

  min-width: 22px;
  height: 22px;
  padding: 0 6px;

  color: #ffffff;
  background: #149253;
  border-radius: 50px;

  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.policy-container {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding-right: clamp(20px, 5vw, 70px);
  padding-left: clamp(20px, 5vw, 70px);
}

/* POLICY HERO */

.policy-hero {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 330px;
  overflow: hidden;

  background-image:
    linear-gradient(
      90deg,
      rgba(5, 77, 37, 0.92),
      rgba(5, 77, 37, 0.65)
    ),
    url("../img/aerial-view-green-farm-field-with-rows-crops-photo.jpg");

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.policy-hero-content {
  width: min(100%, 820px);
  padding-top: 65px;
  padding-bottom: 65px;

  color: #ffffff;
}

.policy-hero-eyebrow {
  display: inline-block;
  margin-bottom: 10px;

  color: #d9f4c4;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.policy-hero h1 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(38px, 6vw, 62px);
  font-weight: 700;
  line-height: 1.15;
}

.policy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-top: 20px;

  font-size: 14px;
}

.policy-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.policy-breadcrumb a:hover {
  color: #ffc515;
}

.policy-breadcrumb i {
  color: #aee66d;
  font-size: 10px;
}

.policy-breadcrumb span {
  color: rgba(255, 255, 255, 0.78);
}

/* POLICY CONTENT */

.policy-content-section {
  padding: clamp(65px, 8vw, 105px) 0;
  background: #f8fbf9;
}

.policy-document {
  width: min(100%, 960px);
  margin: 0 auto;

  padding: clamp(28px, 5vw, 60px);

  background: #ffffff;

  border: 1px solid #dceadf;
  border-radius: 16px;

  box-shadow:
    0 18px 50px rgba(7, 70, 35, 0.08);
}

.policy-document h2 {
  margin: 0 0 20px;

  color: #075c2c;

  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
}

.policy-introduction {
  margin-bottom: 35px;

  color: #40464f;

  font-size: 16px;
  line-height: 1.8;
}

.policy-block {
  padding: 27px 0;
  border-top: 1px solid #e2ece5;
}

.policy-block:first-of-type {
  border-top: 0;
}

.policy-block h3 {
  margin: 0 0 14px;

  color: #0d7d3c;

  font-size: 21px;
  font-weight: 700;
}

.policy-block p {
  margin: 0 0 14px;

  color: #333333;

  font-size: 15px;
  line-height: 1.8;
}

.policy-block p:last-child {
  margin-bottom: 0;
}

.policy-list {
  margin: 12px 0 0;
  padding: 0;

  list-style: none;
}

.policy-list li {
  position: relative;

  margin-bottom: 10px;
  padding-left: 25px;

  color: #333333;

  font-size: 15px;
  line-height: 1.7;
}

.policy-list li:last-child {
  margin-bottom: 0;
}

.policy-list li::before {
  position: absolute;
  top: 9px;
  left: 3px;

  content: "";

  width: 8px;
  height: 8px;

  background: #149253;
  border-radius: 50%;
}

/* RESPONSIVE */

@media screen and (max-width: 767px) {
  .policy-page #header .site-logo {
    width: 115px !important;
    max-width: 115px !important;
    max-height: 70px !important;
  }

  .policy-hero {
    min-height: 300px;
  }

  .policy-hero-content {
    padding-top: 55px;
    padding-bottom: 55px;
    text-align: center;
  }

  .policy-breadcrumb {
    justify-content: center;
  }

  .policy-document {
    padding: 27px 20px;
  }

  .policy-block h3 {
    font-size: 19px;
  }

  .policy-introduction,
  .policy-block p,
  .policy-list li {
    font-size: 14px;
  }
}