.checkmarks ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 0.5rem;
  max-width: 1050px;
  margin: 3rem auto;
}
@media (max-width: 767px) {
  .checkmarks ul {
    gap: 0.5rem;
  }
}
.checkmarks li {
  font-size: var(--step-3);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1 450px;
  color: black;
}
.checkmarks svg {
  flex: 0 0 57px;
}
@media (max-width: 767px) {
  .checkmarks svg {
    flex: 0 0 36px;
  }
}
.checkmarks img {
  filter: grayscale(1);
  max-height: 54px;
  width: auto;
}
@media (max-width: 767px) {
  .checkmarks img {
    max-height: 32px;
  }
}
