/* ================= SUB NAV ================= */
.sub-nav {
  background: #0a8f4c;
  padding: 10px 0;
}

.sub-nav a {
  color: #fff;
  text-decoration: none;
  margin-right: 20px;
  font-size: 14px;
}

/* ================= SECTIONS ================= */
.section {
  padding: 60px 0;
}

.light-bg {
  background: #f5f5f5;
}

.center {
  text-align: center;
}

/* ================= LAYOUT ================= */

.float-container img {
  float: left;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.image {
  width: 50%;
  height: 600px;
  border-radius: 5px;
  margin-right: 20px;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}

.content p {
  margin: 20px 0;
}

/* ================= GREEN SECTION ================= */
.green-section {
  background: #0a8f4c;
  color: #fff;
  padding: 60px 0;
  position: relative;
  /* overflow-x: hidden; */
}

.green-section h3 {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 24px;
}

.green-section-image {
  position: absolute;
  width: 48%;
  height: 200px;
  bottom: 0;
  right: 0;
}

.green-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ================= SLOGAN ================= */
.small-title {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 20px;
}

.slogan {
  font-size: 40px;
  color: #0a8f4c;
}

.slogan-image {
  height: 200px;
}

.slogan-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* ============ LOCATION SECTION ============ */
.location-section p {
  margin: 20px 0;
}

/* ================= CARDS ================= */
.card {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card-image{
  width: 100%;
  height: 400px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-body {
  padding: 30px;
}

.card-body .section-header {
  display: block;
  margin: 35px 0 10px;
  text-align: left;
}

.card-body h3 {
  font-size: 12px;
  letter-spacing: 2px;
  color: #e53935;
  margin-bottom: 20px;
  font-weight: 700;
}

.card-body p {
  margin: 20px 0;
  text-align: justify;
}

/* ================= MILESTONES ================= */
.poly-green {
  background: var(--primary-color);
  padding-bottom: 200px;
}

.poly-green .container {
  background: #fff;
  padding: 30px;
  box-shadow: 0 0 5px rgba(0,0,0,0.15);
}

.milestones {
  position: relative;
  padding: 0;
}

.milestones .container {
  background: #fff;
  padding: 30px;
  padding-top: 0;
  position: relative;
  top: -200px;
  box-shadow: 0 5px 5px rgba(0,0,0,0.15);
}

.milestones ol {
  list-style-position: inside;
  /* padding-left: 20px; */
}

.poly-green p, .milestones li {
  margin: 20px 0;
  text-align: justify;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .two-col,
  .three-col {
      grid-template-columns: 1fr;
  }

  .float-container img {
    float: none;
  }

  .image {
    width: 100%;
    height: 400px;
  }

  .card-body {
    padding: 10px;
  }
}
