
  
  .hero-container {
    --start-color: rgba(255, 255, 255, 0);
    --end-color: rgba(0, 0, 0, 0);
    background-image: linear-gradient(-160deg, var(--start-color), var(--end-color)); 
  }
  
  .hero-text {
    display: grid;
    padding: 5rem 0;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  @media (max-width: 768px) {
    .hero-text {
      grid-template-columns: 1fr;
      padding: 2rem 0;
    }
    .hero-container {
      padding: 0 1rem;
    }
  }

  .hero-text .hero {
    xbackground-color: #eee;
    position: relative;
  }

  @media (max-width: 768px) {
    .hero-text .hero {
      display: none;
    }
  }

  .hero-text .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
  }

  .hero-text .text {
    xpadding: 2rem 0;
  }

  .hero-text h1,
  .hero-text h2 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
  }

  .hero-text h2 {
    font-size: 1.6rem;
  }

  .hero-text .text ul {  
    padding: 0;
    list-style-position: inside;
  }