.green-triangle-list {
  list-style: none; 
  padding: 0;
  margin: 0;
  
  margin-bottom: 0;
  padding-bottom: 0;
}

.green-triangle-list li {
  position: relative;
  line-height: 0.5;
  padding-left: 1.2em; 
  margin-bottom: 0.5em;
}

/* Triangle pointer */
.green-triangle-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0;
  height: 0;
  border-left: 6px solid #006341; 
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

@media screen and (max-width: 900px) {
  .green-triangle-list li{
    line-height: 1.5 !important;
  }
}
