.hero-section {
  background:  url("/static/images/implemented/implemented-bg.b83cb70ab945.webp") no-repeat top center;
  background-size: cover;
  height: 320vh;
  margin-top: 0;
  padding-top: 0;
  position: relative;
  z-index: 0;
}

.hero-section h1 {
  color: #fff;
  font-family: "Kufam", sans-serif;
  /* position: absolute;
  top: 50%;
  left: 50%; */
  /* transform: translate(-50%, -50%); */
  font-size: 36px;
  font-weight: 900;
  padding: 150px 120px 50px;
}

.section{
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 20px 72px;
}

.section h2{
  margin: 0 0 8px;
  font-size: 44px;
  font-weight: 800;
  text-align: center;
  letter-spacing:.2px;
  font-family: "Kufam", sans-serif;
}

.section p.lead{
  margin: 0 auto 36px;
  max-width: 860px;
  font-size: 21px;
  color: var(--muted);
  text-align: center;
  font-family: "Kufam", sans-serif;
}

/* Responsive grid */
.cards{
  display:grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

/* Card */
.card{
  background: #55758C;
  border-radius: 22px;
  padding: 18px 18px 22px;
  box-shadow: 0 14px 28px rgba(0,0,0,.28);
  max-width: 435px;
}

/* Top image with rounded corners & fixed aspect */
.card__media{
  overflow:hidden;
  border-radius: 14px;
  aspect-ratio: 4 / 3;        /* keeps the same shape on all screens */
  margin-bottom: 14px;
}
.card__media img{
  width:100%;
  height:100%;
  object-fit: cover;          /* crops nicely */
  display:block;
}

.card-text-box{
  padding: 15px 20px 15px;
  background-color: #112E2EB5;
    border-radius: 20px;
}
.card__title{
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}

.card__text{
    font-weight: 400;
  margin:0;
  font-size: 20px;
  line-height: 1.8;
  color: #fff;
}



.path-section{
    background-color: #1D1F22;
    padding: 20px;
}

.path-section div{
    max-width: 65%;
    padding: 10px var(--gap);
    margin: auto;
}

.path-section p{
    margin-top: 0;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 400;
    color: #7E8989;
}

.path-section p span{
    color: #0069B4;
}

.spacer{
    height: 25vh;
    background-color: #031227;
}

@media (max-width: 768px) {
  .hero-section {
    height: 491vh;
  }
  
    
}

@media (max-width:576px){
  .hero-section h1 {
    font-size: 24px;
    line-height: 35px;
    text-align: start;
  }
}