.seo-text {
  position: relative;
  border-radius: 18px;
  margin-top: 30px;
}

.seo-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1b1f2bc7;
  z-index: 0;
}

.seo-title {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.seo-content {
  padding: 0 5%;

  position: relative;
  font-weight: 600;
}

.seo-content ol {
  counter-reset: custom-counter;
  list-style: none;
  padding-left: 40px;
}

.seo-content ol li {
  position: relative;
  counter-increment: custom-counter;
  margin-bottom: 10px;
  padding-left: 36px;
}

.seo-content ol li::before {
  content: counter(custom-counter);
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 1.08333rem;
  font-weight: 500;
  background-color: var(--primarybtnbg);
  border-radius: 50%;
  color: #fff;
  box-sizing: border-box;
}

.seo-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seo-content ul li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

.seo-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: white;
  background-color: #4caf50;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 2px;
}
