.tick-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.tick-list li {
  background: url("../images/Tick.svg") no-repeat left center;
  background-size: 0.85vw 0.85vw;
  padding-left: 1.5vw;
  display: flex;
  align-items: center;
  min-height: 1.04vw;
  color: var(--primary-color);
}

.gradient-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}

.gradient-list li {
  /* display: flex; */
  align-items: center;
}

.gradient-list li::before {
  content: "";
  width: 0.3vw;
  height: 0.3vw;
  background: var(--gradient);
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.8vw;
}
