    h1 {
      font-weight: 700;
      line-height: 2rem;
      padding: 25px 0;
    }
    h2 {
      font-weight: 700;
      line-height: 2rem;
    }
    h3 {
      color: #D61F29;
    }

    /*  HERO  */
      .hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: url("/assets/hero/product-mobile-bg.svg");
        background-repeat: no-repeat;
        background-size: cover;
        width: 100vw;
        height: calc(100vh - 53px);
      }
      .hero .right, .hero .left {
        padding: 0 25px;
      }
      .hero .right {
        display: flex;
        flex-direction: column;
      }
      .hero .productName {
        font-size: 3em;
        font-weight: bold;
        line-height: 2.5rem;
        color: #D61F29;
      }
      .hero .productHeadline {
        font-size: 2em;
        line-height: 2rem;
        color: white;
      }
      .hero .spacer {
        border-top: 1px solid white;
        width: 100px;
        margin: 25px 0 0;
        padding: 25px 0 0;
      }
      .hero .productSubheading {
        font-size: 1em;
        line-height: 1.5rem;
        color: white;
      }
    /*  HERO END  */

    /*  OVERVIEW  */
    .overview {
      padding: 25px;
    }
    .overview .breadcrumb {
      color: #D61F29;
      text-transform: uppercase;
      font-size: 1.2em;
      font-weight: 700;
    }
    .overview .split .left img {
      display: none;
    }
    /*  OVERVIEW END  */

    /*  SECTIONS  */
    .sections {
      padding: 25px;
    }
    .section {
      padding-top: 25px;
    }
    .section .step {
      display: flex;
      align-items: center;
      font-size: 2em;
      color: black;

/*      -webkit-text-stroke-color: #D61F29;
      -webkit-text-stroke-width: 1.00px; */
    }
    /*  SECTIONS END  */



@media only screen and (min-width: 787px) {
  /*  HERO  */
    .hero {
      flex-direction: row;
      align-items: center;
      justify-content: space-evenly;
      column-gap: 5%;
      background: url("/assets/hero/product-bg.svg");
      background-position: center;
      background-size: cover;
      width: 100%;
    }
    .hero .left, .hero .right {
      width: 30%;
    }
    .hero .productName {
      font-size: 4em;
    }
  /* HERO END */

  /* OVERVIEW */
  .overview {
    width: 80%;
    margin: 0 auto;
  }
  /* OVERVIEW END */
  
  /* SECTIONS */
  .split {
    display: flex;
  }
  .split .left {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .split .left img {
    display: block !important;
    width: 60%;
  }
  .split .right {
    width: 40%;
  }
  /* SECTIONS END */

  /*  SECTIONS  */

  .sections {
    width: 80%;
    margin: 0 auto;
  }

  .section {
    display: flex;
  }
  .section .step {
    font-size: 8em;
    width: 40%;
    justify-content: center;
  }
  .section .statement {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 40%;
  } 

  /*  SECTIONS END  */



}