    .bwj-process ol {
      margin: 0;
      margin-left: -0.5rem;
      padding: 0;
      list-style: none;
      counter-reset: item;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
    }
    .bwj-process ol > li {
      display: block;
      margin: 0;
      padding: 0;
      width: 33.3%;
      position: relative;
      counter-increment: item;
    }
    @media  (min-width: 601px) and (max-width: 1050px) {
      .bwj-process ol > li {
        width: 50%;
      }
    }
    @media  (max-width: 600px) {
      .bwj-process ol > li {
        width: 100%;
      }
    }
    .bwj-process ol > li::before {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      content: counter(item);
      background-color: var(--bwj-theme-primary);
      color: var(--bwj-white);
      position: absolute;
      top: 0;
      left: 1rem;
      font-size: 2rem;
      line-height: 4rem;
      font-weight: 700;
      z-index: 1;
    }
    .bwj-process ol > li > div {
      padding-top: 1.5rem;
      padding-left: 2.5rem;
    }
    .bwj-process .image-container {
      border-radius: 1rem;
      overflow: hidden;
    }
    .bwj-process .image {
      width: 100%;
    }
    .image-container.graphic {
      position: relative;
      padding-top: 72.5%;
    }
    .image-container.graphic > div {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
    }
