
  .hero {
    position: relative;
    padding: 115px;
    background-image: linear-gradient(to right, #152A48 50%, #152A4800 100%);
    background-color: var(--secondary-color); /* fallback */
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    color: var(--light-text-color);
    overflow: hidden;
}

  
  .hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    z-index: 1;
  }
  
  .hero .container {
    position: relative;
    z-index: 2;
    margin-left: 20px;
  }
  
  .hero__content {
    padding: var(--spacing-lg) 0;
  }

  .hero-divider {
    width: 100px;
    height: 1px;
    background-color: #D1743B;
    margin-top: 10px;
    margin-left: 0px;
    border-color: #D1743B;
  }
  
  .hero__eyebrow {
    font-size: 50px;
    text-transform: capitalize;
    font-weight: 600;
    color: #0F294A;
    letter-spacing: 1px;
    line-height: 45px;
    font-family: "Helvetica Now Text", Sans-serif;
}
  
  .hero__title {
    font-size: 50px;
    line-height: 1.2;
    margin-top:10px;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .hero__subtitle {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: var(--spacing-md);
    color: #fff;
    font-family: "Helvetica Now Text", Sans-serif;
  }
  
  .hero__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.6em;
    color: #fff;
    max-width: 600px;
    
  }
  
  .hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
  }
  
  .hero__image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  .hero__image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  a.button.button-primary.hero__button{
      background-color: #D1743B;
    font-family: "Helvetica Now Text", Sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #D1743B;
    border-radius: 40px 40px 40px 40px;
    padding: 20px 50px 20px 50px;
    color:#fff; 
    line-height:16px;
    margin-right:20px;
  }
  a.button.button-primary.hero__button:hover{
    background:transparent;
    color:#D1743B;
  }
  
  a.button.button-secondary.btp__button{
    background: transparent;
    font-family: "Helvetica Now Text", Sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #fff;
    border-radius: 40px 40px 40px 40px;
    padding: 20px 50px 20px 50px;
    color:#fff; 
    line-height:16px;
  }

  a.button.button-secondary.btp__button:hover{
    background:#D1743B;
    color:#D1743B;
  }
  
  
  @media(max-width:1024px){
    .hero{
      padding:100px ;
    }
    .feature-cards__content-col{
      width:100% !important;
    }
    .feature-cards__image-col {
      width: 100% !important;
    }
  }
  
  
  
  @media (max-width: 991px) {
    c
    .hero__title {
      font-size: 2.5rem;
    }
    
    .hero__subtitle {
      font-size: 1.25rem;
    }
  }

  @media (min-width: 767px) {
    .hero{
      padding:100px 20px;
    }
    .hero-content-wrapper {
      width: 50%;
   }
    
  @media (max-width: 767px) {
    .hero {
      padding: 20px;
    }
    
    .hero__content {
      padding: 20px;
      text-align: left;
    }
    
    .hero__title {
      font-size: 2rem;
    }
    
    .hero__subtitle {
      font-size: 1.1rem;
    }
    
    .hero__description {
      margin-left: auto;
      margin-right: auto;
    }
    
    .hero__buttons {
      justify-content: center;
    }
    
    .hero__image-wrapper {
      margin-top: var(--spacing-md);
    }
    .hero__eyebrow{
      font-size:45px;
    }
  }