/* Feature List Component Styles */

.ejs-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ejs-feature-list li {
  position: relative;
  padding-left: 30px;
}

.ejs-feature-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  width: 22.5px;
  height: 22.5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
}

.ejs-feature-list li:nth-child(odd)::before {
  background-color: #184478;
}

.ejs-feature-list li:nth-child(even)::before {
  background-color: #438AE6;
}