ol.sunflower-list {
  list-style: none !important;
  counter-reset: count;
  padding-left: 0;
}

ol.sunflower-list li {
  counter-increment: count;
  padding-left: 3rem;
  position: relative;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

ol.sunflower-list li::before {
  content: counter(count);
  position: absolute;
  left: 0;
  top: 0em;   /* THIS is where you nudge it up/down */
  font-family: 'MADE Sunflower';
  font-size: 4em;
  color: #CB5B3B;
  line-height: 1;
}