.title {
  position: relative;
  color: #333;
  font-weight: bold;
  font-size: 1.3em;
  padding: 0 .5em .5em 2em;
  border-bottom: 1px solid #ccc;
  margin-top: 20px;
}
.title::before,
.title::after {
  position: absolute;
  content: '';
  border-radius: 100%
}
.title::before {
  top: .2em;
  left: .2em;
  z-index: 2;
  width: 18px;
  height: 18px;
  background: rgba(150, 150, 150, .5);
}
.title::after {
  top: .7em;
  left: .7em;
  width: 13px;
  height: 13px;
  background: rgba(210, 210, 210, .5);
}