@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {

  --gold: #d4af37;
  --green: #0b3b2f;
  --green-light: #4fbf9f;
  --white: #ffffff;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.about-hero {

  position: relative;
  height: 100vh;
  overflow: hidden;

  display: flex;
  align-items: center;

}

.hero-bg {

  position: absolute;
  inset: 0;
  z-index: -3;

}

.hero-bg img {

  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomHero 18s ease-in-out infinite alternate;

}

.hero-overlay {

  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(0, 35, 20, 0.96) 0%,
      rgba(0, 45, 27, 0.91) 32%,
      rgba(0, 45, 27, 0.78) 62%,
      rgba(0, 35, 20, 0.80) 100%);



  z-index: -2;

}

.hero-content {

  width: min(1500px, calc(100% - 100px));
  margin: 0 auto;
  animation: fadeUp 1s ease forwards;

}

.hero-badge {

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 34px;

  border-radius: 40px;

  background: rgba(212, 175, 55, .18);

  border: 1px solid rgba(212, 175, 55, .45);

  backdrop-filter: blur(12px);

  font-family: Inter;

  letter-spacing: 3px;

  font-size: .85rem;

  font-weight: 600;

  color: var(--gold);

  margin-bottom: 35px;

  animation: fadeUp .8s ease;

}

.hero-title {

  font-family: "Cormorant Garamond", serif;

  font-size: 5rem;

  font-weight: 600;

  line-height: 1.05;

  color: white;

  margin-bottom: 25px;

}

.hero-title span {

  display: block;

  font-style: normal;

  font-weight: 500;

  color: #d4af37
}

.hero-text {

  max-width: 900px;

  margin: 0 0 55px;

  font-size: 1.18rem;

  line-height: 1.9;

  color: rgba(255, 255, 255, .85);

  font-family: Inter;

}

.hero-buttons {

  display: flex;
  gap: 25px;
  justify-content: flex-start;
  flex-wrap: wrap;

}

.btn-primary {

  padding: 18px 42px;

  background: var(--gold);

  color: #17351d;

  text-decoration: none;

  font-weight: 700;

  font-family: Inter;

  border-radius: 10px;

  transition: .35s;

  box-shadow: 0 12px 35px rgba(212, 175, 55, .25);

}

.btn-primary:hover {

  transform: translateY(-6px);

  box-shadow: 0 18px 45px rgba(212, 175, 55, .45);

}

.btn-outline {

  padding: 18px 42px;

  border: 1px solid rgba(212, 175, 55, .6);

  color: var(--gold);

  text-decoration: none;

  font-family: Inter;

  font-weight: 600;

  border-radius: 10px;

  background: rgba(255, 255, 255, .03);

  backdrop-filter: blur(10px);

  transition: .35s;

}

.btn-outline:hover {

  background: var(--gold);

  color: #17351d;

  transform: translateY(-6px);

}

.scroll-down {

  position: absolute;

  bottom: 35px;

  left: 50%;

  transform: translateX(-50%);

}

.scroll-down span {

  display: block;

  width: 22px;

  height: 22px;

  border-left: 3px solid white;

  border-bottom: 3px solid white;

  transform: rotate(-45deg);

  animation: scroll 2s infinite;

}

@keyframes scroll {

  0% {

    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);

  }

  50% {

    opacity: 1;

  }

  100% {

    opacity: 0;
    transform: rotate(-45deg) translate(-12px, 12px);

  }

}

@keyframes fadeUp {

  from {

    opacity: 0;
    transform: translateY(60px);

  }

  to {

    opacity: 1;
    transform: translateY(0);

  }

}

@keyframes zoomHero {

  from {

    transform: scale(1);

  }

  to {

    transform: scale(1.12);

  }

}

@media(max-width:992px) {

  .hero-title {

    font-size: 3.8rem;

  }

  .hero-text {

    font-size: 1rem;

  }

}

@media(max-width:768px) {

  .about-hero {

    padding: 120px 20px;

    height: auto;

    min-height: 100vh;

  }

  .hero-content {

    width: 100%;

    margin: 0;

  }

  .hero-title {

    font-size: 2.8rem;

  }

  .hero-title span {

    font-size: 2.7rem;

  }

  .hero-buttons {

    flex-direction: column;

  }

  .btn-primary,
  .btn-outline {

    width: 100%;

    text-align: center;

  }

  .hero-badge {

    font-size: .75rem;

    padding: 10px 22px;

  }

}

/* ===================================
   OUR STORY - COMPACT PREMIUM DESIGN
=================================== */

.our-story {
  background: #004225;
  padding: 90px 7%;
  position: relative;
  overflow: hidden;
}

.our-story::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(rgba(212, 175, 55, .08), transparent 70%);
}

.story-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: start;
}

/* LEFT */

.story-left {
  position: sticky;
  top: 120px;
}

.story-tag {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(212, 175, 55, .35);
  border-radius: 30px;
  color: #D4AF37;
  font: 600 .75rem Inter, sans-serif;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.story-title {
  font-family: "Cormorant Garamond", serif;
  color: #FFFFF0;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 18px;
}

.story-line {
  width: 70px;
  height: 2px;
  background: #D4AF37;
  margin-bottom: 20px;
}

.story-small {
  color: rgba(255, 255, 240, .75);
  font: 400 .95rem/1.8 Inter, sans-serif;
}

/* RIGHT */

.story-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Smaller cards */

.story-card {
  position: relative;
  background: rgba(255, 255, 240, .04);
  border: 1px solid rgba(255, 255, 240, .08);
  border-radius: 18px;
  padding: 28px 32px 28px 36px;
  transition: .35s;
}

.story-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, .35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
}

.quote-mark {
  position: absolute;
  top: 8px;
  left: 18px;
  font-size: 3.2rem;
  color: #D4AF37;
  font-family: "Cormorant Garamond", serif;
  opacity: .85;
}

.story-card p {
  margin-top: 12px;
  color: rgba(255, 255, 240, .88);
  font: 400 1rem/1.9 Inter, sans-serif;
}

/* Responsive */

@media(max-width:991px) {

  .story-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-left {
    position: static;
  }

  .story-title {
    font-size: 2.5rem;
  }

}

@media(max-width:768px) {

  .our-story {
    padding: 70px 20px;
  }

  .story-title {
    font-size: 2.2rem;
  }

  .story-card {
    padding: 24px;
  }

  .story-card p {
    font-size: .95rem;
    line-height: 1.8;
  }

  .quote-mark {
    font-size: 2.8rem;
  }

}

.left-card-slider {

  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  border-radius: 18px;

}

.left-slide {

  position: absolute;
  inset: 0;

  opacity: 0;
  visibility: hidden;

  transform: translateY(35px) scale(.96);

  transition:
    opacity .9s ease,
    transform .9s ease,
    visibility .9s;

}

.left-slide.active {

  opacity: 1;
  visibility: visible;

  transform: translateY(0) scale(1);

  z-index: 2;

}

.left-slide img {

  width: 100%;
  height: 100%;
  object-fit: cover;

}

.overlay {

  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 40px;

  background: linear-gradient(to top,
      rgba(0, 0, 0, .82),
      rgba(0, 0, 0, .15));

  color: #fff;

}

.overlay h3 {

  font-size: 2rem;
  margin-bottom: 15px;

}

.overlay p {

  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 20px;

}

.overlay span {

  color: #d4af37;
  font-weight: 600;

}

/*====================================================
    OUR APPROACH SECTION
====================================================*/

.journey-section {
  background: #004b2c;
  padding: 100px 0;
}

.journey-section .container {
  width: min(1320px, 92%);
  margin: auto;
}

/*====================================================
    HEADING
====================================================*/

.journey-heading {
  max-width: 760px;
  margin-bottom: 60px;
}

.section-tag {

  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: #d4af37;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;

  margin-bottom: 18px;
}

.section-tag::after {

  content: "";
  width: 70px;
  height: 1px;
  background: #8f8f8f;

}

.journey-heading h2 {

  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  line-height: 1.08;
  color: #f5f1e6;

  margin-bottom: 20px;

}

.journey-heading p {

  max-width: 680px;

  color: #d8d8d8;

  font-size: 15px;

  line-height: 1.8;

}

/*====================================================
    GRID
====================================================*/

.journey-grid {

  display: grid;

  grid-template-columns: 1.5fr 1fr;

  gap: 30px;

  align-items: start;

}

/*====================================================
    LEFT CARD
====================================================*/

.left-card {

  position: relative;

  height: 560px;

  border-radius: 14px;

  overflow: hidden;

  background: #111;

  box-shadow: 0 20px 60px rgba(0, 0, 0, .30);

}

/* foreground image – fades in/out */
#leftImage {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* background layer – sits beneath foreground during crossfade */
.left-card__bg-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  pointer-events: none;
}

/* ── Text transition ── */
#leftTitle,
#leftDescription,
#leftFooter {
  transition:
    opacity 0.38s ease,
    transform 0.38s ease;
  opacity: 1;
  transform: translateY(0);
}

/* Exit state – fade down slightly then content swaps */
#leftTitle.text-exit,
#leftDescription.text-exit,
#leftFooter.text-exit {
  opacity: 0;
  transform: translateY(12px);
}

.left-overlay {

  position: absolute;

  inset: 0;

  z-index: 3;
  /* above #leftImage (z-index:2) and bg-layer (z-index:1) */

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 42px;

  background:
    linear-gradient(to top,
      rgba(0, 0, 0, .85) 15%,
      rgba(0, 0, 0, .40) 45%,
      rgba(0, 0, 0, .05) 100%);

}

/*====================================================
    ICON
====================================================*/

.left-icon {

  width: 36px;
  margin-bottom: 18px;

}

.left-icon img {

  width: 100%;

}

/*====================================================
    LEFT CONTENT
====================================================*/

.left-overlay h3 {

  color: #fff;

  font-family: "Cormorant Garamond", serif;

  font-size: 36px;

  line-height: 1.1;

  margin-bottom: 14px;

}

.left-overlay p {

  color: #ececec;

  font-size: 14.5px;

  line-height: 1.8;

  max-width: 560px;

}

.left-footer {

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-top: 35px;

}

.left-footer span {

  color: #d4af37;

  font-size: 15px;

  font-weight: 600;

}

.left-footer a {

  width: 50px;
  height: 50px;

  border-radius: 50%;

  background: #d4af37;

  display: flex;

  justify-content: center;
  align-items: center;

  color: #05311d;

  text-decoration: none;

  transition: .35s;

}

.left-footer a:hover {

  transform: translateX(6px);

}

/*====================================================
    RIGHT COLUMN
====================================================*/

.right-cards {

  display: flex;

  flex-direction: column;

  gap: 24px;

}

/*====================================================
    RIGHT CARD
====================================================*/

.right-card {

  position: relative;

  height: 224px;

  border-radius: 14px;

  overflow: hidden;

  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);

}

.right-card img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

}

.card-overlay {

  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 28px;

  background:
    linear-gradient(to top,
      rgba(0, 0, 0, .88),
      rgba(0, 0, 0, .30),
      rgba(0, 0, 0, .05));

}

/*====================================================
    CARD ICON
====================================================*/

.card-icon {

  width: 26px;

  margin-bottom: 12px;

}

.card-icon img {

  width: 100%;

}

/*====================================================
    CARD TEXT
====================================================*/

.card-overlay h4 {

  color: #fff;

  font-family: "Cormorant Garamond", serif;

  font-size: 34px;

  line-height: 1.08;

  margin-bottom: 12px;

}

.card-overlay p {

  color: #ececec;

  font-size: 15px;

  line-height: 1.7;

  margin-bottom: 18px;

}

.card-overlay a {

  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: #d4af37;

  color: #06331f;

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  transition: .3s;

}

.card-overlay a:hover {

  transform: translateX(6px);

}

/*====================================================
    RESPONSIVE
====================================================*/

@media(max-width:991px) {

  .journey-grid {

    grid-template-columns: 1fr;

  }

  .right-cards {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

  }

  .left-card {

    height: 620px;

  }

}

@media(max-width:768px) {

  .right-cards {

    grid-template-columns: 1fr;

  }

  .right-card {

    height: auto;

  }

  .right-card img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

  }

  .card-overlay {

    position: relative;

    padding: 24px;

  }

  .journey-heading h2 {

    font-size: 42px;

  }

  .left-card {

    height: 500px;

  }

  .left-overlay h3 {

    font-size: 38px;

  }

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {

  background: #012f22;
  font-family: Georgia, serif;
  color: white;

}

.timeline-section {
  width: 100%;
  background: #004225;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.timeline {

  position: relative;
  width: 1000px;
  max-width: 92%;
  margin: auto;
  padding: 60px 0;

}

/* CENTER LINE */

.center-line {

  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: #3d5c3b;

}

/* GOLD PROGRESS */

.progress-line {

  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 3px;
  height: 0;
  background: #d9b23f;
  transition: height .2s linear;

}

/* ITEMS */

.timeline-item {

  position: relative;
  display: flex;
  margin: 180px 0;
  align-items: center;

}

/* LEFT */

.left {

  justify-content: flex-start;

}

/* RIGHT */

.right {

  justify-content: flex-end;

}

/* CARD */

.card {

  width: 480px;
  padding: 35px;
  border: 1px solid rgba(214, 174, 60, .35);
  border-radius: 18px;
  background: #063f2e;

  transition: 1s cubic-bezier(.23, 1, .32, 1);
  opacity: 0;

}

/* Hidden Positions */

.left .card {

  transform: translateX(-120px);

}

.right .card {

  transform: translateX(120px);

}

/* ACTIVE */

.timeline-item.show .card {

  opacity: 1;
  transform: translateX(0);

}

/* DOT */

.dot {

  position: absolute;

  left: 50%;
  transform: translateX(-50%);

  width: 18px;
  height: 18px;

  border-radius: 50%;
  background: #d9b23f;

  z-index: 5;

  transition: .5s;

}

/* Glow */

.timeline-item.show .dot {

  box-shadow:
    0 0 20px #d9b23f,
    0 0 40px #d9b23f,
    0 0 60px #d9b23f;

  transform: translateX(-50%) scale(1.3);

}

.card h2 {

  margin-bottom: 20px;
  font-size: 34px;

}

.card p {

  line-height: 1.8;
  opacity: .8;
  margin-bottom: 25px;

}

.card span {

  color: #d9b23f;
  font-style: normal;
  font-size: 24px;

}

/*==========================
 MOBILE TIMELINE
==========================*/

@media (max-width: 768px) {

  .timeline {
    width: 100%;
    padding: 60px 20px;
  }

  /* Move line to left */

  .center-line,
  .progress-line {
    left: 28px;
    transform: none;
  }

  .timeline-item {
    width: 100%;
    justify-content: flex-start !important;
    margin: 70px 0;
    padding-left: 65px;
  }

  /* Move dots */

  .dot {
    left: 20px;
    transform: none;
  }

  .timeline-item.show .dot {
    transform: scale(1.2);
  }

  /* Cards */

  .card {
    width: 100%;
    max-width: none;
    padding: 25px;
  }

  /* Both left & right cards animate from right */

  .left .card,
  .right .card {
    transform: translateX(60px);
    opacity: 0;
  }

  .timeline-item.show .card {
    transform: translateX(0);
    opacity: 1;
  }

  .card h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .card span {
    font-size: 20px;
  }

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.people-section {

  width: 100%;
  background: #004225;
  padding: 100px 0;
  margin: 0;

}

.people-inner {

  width: 90%;
  max-width: 1200px;
  margin: 0 auto;

}

.section-tag {

  color: #d4af37;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 35px;

}

.people-image {

  display: flex;
  justify-content: center;
  margin-bottom: 70px;

}

.people-image img {

  width: 100%;
  max-width: 900px;
  /* Reduce image size here */
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  display: block;

}

.people-content {

  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;

}

.people-content h2 {

  color: #F5F2EA;
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.15;

}

.people-content p {

  color: #c9c9c9;
  font-size: 15px;
  line-height: 1.8;
  max-width: 700px;

}

@media(max-width:768px) {

  .people-content {

    grid-template-columns: 1fr;
    gap: 35px;

  }

  .people-content h2 {

    font-size: 42px;

  }

  .people-content p {

    font-size: 10px;


  }

  .people-image img {

    max-width: 100%;
    height: 280px;

  }

}

/*=========================
 NETWORK SECTION
=========================*/

.network-section {

  width: 100%;
  background: #004225;
  padding: 100px 0;
  margin: 0;

}

.network-inner {

  max-width: 1400px;
  margin: auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;

}

/* Left */

.network-content {

  display: flex;
  flex-direction: column;
  justify-content: center;

}

.section-tag {

  color: #D6AE3C;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 20px;

}

.network-content h2 {

  font-family: Georgia, serif;
  color: #F4F0E8;
  font-size: 45px;
  line-height: 1.1;
  margin-bottom: 30px;

}

.network-content p {

  color: rgba(255, 255, 255, .75);
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 45px;

}

/* Bottom Points */

.network-points {

  display: flex;
  align-items: flex-start;
  gap: 25px;

}

.line {

  width: 4px;
  height: 110px;
  background: #D6AE3C;
  border-radius: 20px;

}

.points {

  display: flex;
  flex-direction: column;
  gap: 18px;

}

.points span {

  color: white;
  letter-spacing: 3px;
  font-size: 17px;
  font-weight: 700;

}

/* Image */

.network-image {

  border-radius: 30px;
  overflow: hidden;

}

.network-image img {

  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 30px;

}

@media(max-width:992px) {

  .network-inner {

    grid-template-columns: 1fr;
    gap: 50px;

  }

  .network-content {

    order: 2;

  }

  .network-image {

    order: 1;

  }

  .network-content h2 {

    font-size: 42px;

  }

  .network-content p {

    font-size: 18px;

  }

}

@media(max-width:768px) {

  .network-section {

    padding: 70px 20px;

  }

  .network-content h2 {

    font-size: 38px;

  }

  .network-content p {

    font-size: 16px;
    line-height: 1.8;

  }

  .network-image {

    border-radius: 20px;

  }

  .network-image img {

    border-radius: 20px;

  }

  .network-points {

    gap: 18px;

  }

  .line {

    height: 90px;

  }

  .points span {

    font-size: 14px;
    letter-spacing: 2px;

  }

}

/*=========================
INSIGHTS SECTION
=========================*/

.insights {

  width: 100%;
  padding: 100px 5vw;
  color: var(--ded-ivory);

  background:

    radial-gradient(circle at 15% 50%,
      rgba(212, 175, 55, 0.05),
      transparent 30%),

    radial-gradient(circle at 85% 20%,
      rgba(212, 175, 55, 0.04),
      transparent 28%),

    var(--ded-green, #004225);

}

.insights-top {

  max-width: 1400px;
  margin: 0 auto 70px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.insights-heading {

  max-width: 700px;

}

.tag {

  color: #D6AE3C;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 700;

}

.insights h2 {

  font-size: 34px;
  color: #F6F3EC;
  line-height: 1.2;
  margin: 25px 0;
  font-family: Georgia, serif;

}

.insights p {

  color: rgba(255, 255, 255, .7);
  font-size: 20px;
  line-height: 1.8;

}

/* Buttons */

.slider-buttons {

  display: flex;
  gap: 18px;

}

.slider-buttons button {

  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(214, 174, 60, .4);

  background: transparent;
  color: #D6AE3C;

  font-size: 22px;
  cursor: pointer;
  transition: .3s;

}

.slider-buttons button:hover {

  background: #D6AE3C;
  color: #012b1d;

}

/* Cards */

.cardss {

  display: flex;
  gap: 50px;
  overflow-x: auto;

  scrollbar-width: none;
  padding-left: 10px;


}

.cards::-webkit-scrollbar {

  display: none;

}

.cards {

  min-width: 50px;
  width: 380px;

  background: #F5F1E8;

  padding: 45px;

  border-radius: 28px;

  flex-shrink: 0;

}

.card-tag {

  color: #B68C1C;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;

}

.cards h3 {

  margin: 35px 0 25px;

  color: #163323;

  font-size: 20px;

  line-height: 1.2;

  font-family: Georgia, serif;

}

.cards p {

  color: #4B4B4B;

  font-size: 18px;

  line-height: 1.8;

}

@media(max-width:768px) {

  .insights {

    padding: 70px 20px;

  }

  .insights-top {

    flex-direction: column;
    align-items: flex-start;
    gap: 30px;

  }

  .insights h2 {

    font-size: 28px;

  }

  .insights p {

    font-size: 16px;

  }

  .slider-buttons {

    align-self: flex-end;

  }

  .cards {

    min-width: 260px;
    padding: 25px;
    width: 85vw;
    max-width: 340px;

  }

  .cards h3 {

    font-size: 28px;

  }

  .cards p {

    font-size: 16px;

  }

}

/*=========================
 CTA SECTION
==========================*/

.cta {

  padding: 140px 20px;
  background: #004225;

}

.cta-container {

  max-width: 1100px;
  margin: auto;
  text-align: center;

}

.cta h2 {

  font-family: Georgia, serif;
  font-size: 78px;
  line-height: 1.15;
  color: #F6F3EC;
  font-weight: 500;
  margin-bottom: 60px;

}

/* Buttons */

.cta-buttons {

  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;

}

.cta-buttons a {

  text-decoration: none;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;

  padding: 22px 48px;

  border-radius: 60px;

  transition: .35s ease;

}

/* White Button */

.btn-primary {

  background: #F5F2EA;
  color: #012b1d;

}

.btn-primary:hover {

  background: #D6AE3C;
  color: #012b1d;

}

/* Outline Button */

.btn-secondary {

  border: 1px solid rgba(214, 174, 60, .45);
  color: #D6AE3C;

}

.btn-secondary:hover {

  background: #D6AE3C;
  color: #012b1d;

}

/* Subtitle */

.cta-subtitle {

  color: rgba(255, 255, 255, .35);
  font-size: 14px;
  letter-spacing: 4px;
  font-weight: 700;

}

@media(max-width:992px) {

  .cta h2 {

    font-size: 56px;

  }

}

@media(max-width:768px) {

  .cta {

    padding: 90px 20px;

  }

  .cta h2 {

    font-size: 38px;
    line-height: 1.3;

  }

  .cta-buttons {

    flex-direction: column;
    align-items: center;
    gap: 18px;

  }

  .cta-buttons a {

    width: 100%;
    max-width: 350px;
    text-align: center;

  }

  .cta-subtitle {

    font-size: 12px;
    letter-spacing: 3px;

  }

}