/* =========================
   BOTAKE ABOUT PAGE
========================= */

:root {
  --about-green: #0d7d3c;
  --about-green-dark: #075c2c;
  --about-green-light: #8fc63d;
  --about-yellow: #ffc515;
  --about-cream: #fff1d4;
  --about-ink: #111c2e;
  --about-text: #5b6170;
  --about-line: #dceadf;
  --about-white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body.about-page {
  overflow-x: hidden;
  color: var(--about-ink);
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

/* =========================
   HEADER
========================= */

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

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

.about-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;
}

.about-container {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-right: clamp(20px, 4vw, 65px);
  padding-left: clamp(20px, 4vw, 65px);
}

/* =========================
   ABOUT HERO
========================= */

.about-hero {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 430px;
  overflow: hidden;

  background-image:
    url("../img/about/about-impact-poster.jpg");

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

.about-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(5, 61, 29, 0.88) 0%,
      rgba(5, 61, 29, 0.72) 48%,
      rgba(5, 61, 29, 0.34) 100%
    );
}

.about-hero-content {
  position: relative;
  z-index: 2;

  width: min(100%, 760px);
  padding-top: 75px;
  padding-bottom: 75px;

  color: #ffffff;
}

.about-hero-eyebrow {
  display: inline-block;
  margin-bottom: 13px;

  color: #d9f1c7;

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

.about-hero-content h1 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.12;
}

.about-hero-content > p {
  width: min(100%, 660px);
  margin: 20px 0 25px;

  color: rgba(255, 255, 255, 0.92);

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

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 11px;

  font-size: 14px;
}

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

.about-breadcrumb a:hover {
  color: var(--about-yellow);
}

.about-breadcrumb i {
  color: #b9e969;
  font-size: 10px;
}

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

/* =========================
   GENERAL SECTION HEADINGS
========================= */

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

  color: var(--about-green);

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

.about-section-heading {
  width: min(100%, 820px);
  margin: 0 auto;
}

.about-section-heading h1,
.about-section-heading h2 {
  margin: 0;

  color: var(--about-ink);

  font-size: clamp(34px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.2;
}

.about-section-heading p {
  margin: 18px auto 0;

  color: var(--about-text);

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

.about-page main p {
  font-size: 15px;
  line-height: 1.75;
}

/* =========================
   INTRODUCTION
========================= */

.about-intro-section {
  position: relative;
  overflow: hidden;

  padding:
    clamp(75px, 8vw, 120px)
    0
    95px;

  background: #ffffff;
}

.about-intro-section::before,
.about-intro-section::after {
  position: absolute;

  content: "";

  width: 160px;
  height: 160px;

  border: 22px solid rgba(143, 198, 61, 0.1);

  transform: rotate(35deg);

  pointer-events: none;
}

.about-intro-section::before {
  top: -95px;
  left: -75px;
}

.about-intro-section::after {
  right: -85px;
  bottom: -100px;

  border-color: rgba(13, 125, 60, 0.08);
}

.about-feature-grid {
  margin-top: clamp(55px, 7vw, 85px);
}

.about-feature-card {
  position: relative;

  display: flex;
  align-items: center;
  flex-direction: column;

  height: 100%;
  min-height: 360px;

  padding: 28px 28px 62px;

  text-align: center;

  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 18px;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.about-feature-card:hover {
  transform: translateY(-7px);

  border-color: var(--about-line);

  box-shadow:
    0 20px 45px rgba(8, 82, 40, 0.1);
}

.about-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 120px;
  height: 120px;
  margin-bottom: 28px;

  color: var(--about-green);

  background:
    radial-gradient(
      circle at 35% 30%,
      rgba(143, 198, 61, 0.28),
      rgba(13, 125, 60, 0.08) 64%,
      transparent 65%
    );

  border-radius: 50%;

  font-size: 61px;
}

.about-feature-card h2,
.about-feature-card h3 {
  margin-bottom: 12px;

  color: #07142d;

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

.about-feature-card p {
  margin: 0;

  color: var(--about-text);

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

.about-feature-number {
  position: absolute;
  bottom: 12px;
  left: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 57px;
  height: 57px;

  color: var(--about-green-dark);
  background: #ffffff;

  border: 1px solid var(--about-green);
  border-radius: 50%;

  font-size: 21px;
  font-weight: 600;

  transform: translateX(-50%);

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.about-feature-card:hover .about-feature-number {
  color: #ffffff;
  background: var(--about-green);

  box-shadow:
    0 10px 20px rgba(13, 125, 60, 0.24);
}

/* =========================
   WHY WE EXIST
========================= */

.about-why-section {
  padding:
    clamp(80px, 9vw, 130px)
    0;

  background: #fbfdfb;
}

.about-image-frame {
  position: relative;
  overflow: hidden;

  min-height: 520px;

  border-radius: 20px;

  box-shadow:
    0 25px 65px rgba(7, 67, 32, 0.12);
}

.about-image-frame::after {
  position: absolute;
  right: 18px;
  bottom: 18px;

  content: "";

  width: 110px;
  height: 110px;

  border-right: 4px solid var(--about-green-light);
  border-bottom: 4px solid var(--about-green-light);
  border-radius: 0 0 18px 0;

  pointer-events: none;
}

.about-image-frame img {
  display: block;

  width: 100%;
  height: 100%;
  min-height: 520px;

  object-fit: cover;
}

.about-copy-block {
  padding-left: clamp(0px, 3vw, 42px);
}

.about-copy-block > h2 {
  margin: 0 0 25px;

  color: var(--about-green);

  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.about-copy-block > p {
  color: #252525;

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

.about-vision-mission {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 18px;

  margin-top: 30px;
}

.about-vision-mission > div {
  padding: 22px;

  background: #ffffff;

  border: 1px solid var(--about-line);
  border-radius: 13px;
}

.about-vision-mission h3 {
  margin-bottom: 9px;

  color: var(--about-green-dark);

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

.about-vision-mission p {
  margin: 0;

  color: #333333;

  font-size: 13px;
  line-height: 1.65;
}

/* =========================
   HOW WE GROW
========================= */

.about-grow-section {
  padding:
    clamp(80px, 9vw, 125px)
    0;

  background: #ffffff;
}

.about-grow-grid {
  margin-top: 55px;
}

.about-grow-card {
  position: relative;
  overflow: hidden;

  height: 550px;

  border-radius: 17px;

  box-shadow:
    0 18px 45px rgba(22, 46, 30, 0.12);
}

.about-grow-card img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.55s ease;
}

.about-grow-card:hover img {
  transform: scale(1.05);
}

.about-grow-card-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02) 42%,
      rgba(0, 0, 0, 0.78) 100%
    );
}

.about-grow-card-label {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;

  padding: 17px 20px;

  text-align: center;

  background: #ffffff;
  border: 1px solid rgba(13, 125, 60, 0.2);
  border-radius: 7px;

  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.14);

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.about-grow-card:hover .about-grow-card-label {
  background: #f8fff9;

  transform: translateY(-3px);
}

.about-grow-card-label span {
  display: block;

  color: #075c2c;

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

.about-grow-card-label small {
  display: block;

  margin-top: 6px;

  color: #333333;

  font-size: 12px;
  line-height: 1.5;
}

/* =========================
   IMPACT VIDEO
========================= */

.about-impact-section {
  padding:
    35px
    0
    clamp(90px, 9vw, 125px);

  background: #ffffff;
}

.about-impact-media {
  position: relative;
  overflow: hidden;

  min-height: 620px;

  background: #10251a;

  border-radius: 22px;

  box-shadow:
    0 28px 65px rgba(7, 65, 31, 0.2);
}

.about-impact-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.about-impact-shade {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.56),
      rgba(0, 0, 0, 0.33),
      rgba(0, 0, 0, 0.58)
    );
}

.about-impact-content {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  width: 100%;
  height: 100%;
  padding: 55px 8%;

  color: #ffffff;
  text-align: center;
}

.about-impact-kicker {
  display: inline-block;
  margin-bottom: 12px;

  color: #d9f1c7;

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

.about-impact-content h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(48px, 8vw, 92px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;

  text-shadow:
    0 4px 22px rgba(0, 0, 0, 0.34);
}

.about-impact-content > p {
  width: min(100%, 780px);
  margin: 24px auto 0;

  color: rgba(255, 255, 255, 0.94);

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

.about-impact-points {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 18px 32px;

  margin-top: 34px;
}

.about-impact-points span {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: #ffffff;

  font-size: 13px;
  font-weight: 600;
}

.about-impact-points i {
  color: #b9e969;
  font-size: 20px;
}

/* =========================
   CONTACT BUTTON
   Used in Partner section
========================= */

.about-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 170px;
  min-height: 54px;

  padding: 13px 28px;

  color: #111111 !important;
  background: var(--about-yellow);

  border: 2px solid var(--about-yellow);
  border-radius: 7px;

  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.about-contact-button:hover {
  color: #ffffff !important;
  background: var(--about-green);
  border-color: var(--about-green);

  transform: translateY(-3px);
}

/* =========================
   OUR PILLARS
========================= */

.about-pillars-section {
  padding:
    clamp(80px, 9vw, 125px)
    0;

  background: #fbfdfb;
}

.about-pillar-card {
  background: transparent;
}

/* =========================
   PARTNER CALL TO ACTION
========================= */

.about-partner-section {
  padding:
    35px
    0
    clamp(90px, 10vw, 135px);

  background: #fbfdfb;
}

.about-partner-card {
  position: relative;
  overflow: hidden;

  min-height: 450px;

  border-radius: 22px;

  box-shadow:
    0 24px 60px rgba(9, 64, 32, 0.17);
}

.about-partner-card img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.about-partner-shade {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.79) 0%,
      rgba(0, 0, 0, 0.54) 48%,
      rgba(0, 0, 0, 0.12) 100%
    );
}

.about-partner-content {
  position: relative;
  z-index: 2;

  width: min(100%, 600px);

  padding: clamp(55px, 8vw, 100px);

  color: #ffffff;
}

.about-partner-content > span {
  color: #c8ed8d;

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

.about-partner-content h2 {
  margin: 12px 0 15px;

  color: #ffffff;

  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
}

.about-partner-content p {
  margin-bottom: 26px;

  color: rgba(255, 255, 255, 0.92);

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

.about-footer-brand {
  color: var(--about-green);

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

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
  .about-copy-block {
    padding-left: 0;
  }

  .about-vision-mission {
    grid-template-columns: 1fr;
  }

  .about-grow-card {
    height: 500px;
  }

  .about-impact-media {
    min-height: 610px;
  }

  .about-impact-points {
    gap: 12px 18px;
  }
}

/* =========================
   MOBILE
========================= */

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

  .about-hero {
    min-height: 390px;
    background-position: center;
  }

  .about-hero-content {
    padding-top: 60px;
    padding-bottom: 60px;

    text-align: center;
  }

  .about-hero-content h1 {
    font-size: 40px;
  }

  .about-hero-content > p {
    margin-right: auto;
    margin-left: auto;

    font-size: 14px;
  }

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

  .about-intro-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .about-section-heading h1,
  .about-section-heading h2 {
    font-size: 39px;
  }

  .about-section-heading p {
    font-size: 14px;
    line-height: 1.72;
  }

  .about-feature-grid {
    margin-top: 42px;
  }

  .about-feature-card {
    min-height: 330px;

    padding-right: 18px;
    padding-left: 18px;
  }

  .about-feature-icon {
    width: 105px;
    height: 105px;

    font-size: 52px;
  }

  .about-image-frame,
  .about-image-frame img {
    min-height: 390px;
  }

  .about-copy-block > h2 {
    font-size: 37px;
  }

  .about-copy-block > p {
    font-size: 14px;
  }

  .about-grow-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .about-grow-card {
    height: 470px;
  }

  .about-grow-card-label {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .about-impact-media {
    min-height: 700px;

    border-radius: 14px;
  }

  .about-impact-content {
    width: 100%;
    padding: 45px 8%;
  }

  .about-impact-content h2 {
    font-size: 51px;
  }

  .about-impact-content > p {
    font-size: 14px;
  }

  .about-impact-points {
    align-items: flex-start;
    flex-direction: column;

    width: max-content;
    max-width: 100%;

    margin-right: auto;
    margin-left: auto;

    text-align: left;
  }

  .about-partner-card {
    min-height: 520px;
  }

  .about-partner-shade {
    background: rgba(0, 0, 0, 0.65);
  }

  .about-partner-content {
    width: 100%;

    padding: 55px 30px;

    text-align: center;
  }

  .footer_b1r {
    margin-top: 12px;

    text-align: left !important;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
  .about-container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .about-feature-card h2,
  .about-feature-card h3 {
    font-size: 21px;
  }

  .about-grow-card {
    height: 430px;
  }

  .about-grow-card-label span {
    font-size: 18px;
  }

  .about-impact-media {
    min-height: 735px;
  }

  .about-impact-content h2 {
    font-size: 44px;
  }

  .about-contact-button {
    min-width: 155px;
  }
}