/*
 Theme Name:   David Doyle Electrical Child
 Description:  David Doyle Electrical Child theme
 Author:       The Brand Geeks
 Author URI:   https://thebrandgeeks.com
 Template:     generatepress
 Version:      0.1
*/

.entry-content {
  counter-reset: h2counter;
}

.numbered {
  display: flex;
  align-items: flex-start;
}

.numbered:before {
  content: counter(h2counter);
  counter-increment: h2counter;
  counter-reset: h3counter;
  display: flex;
  flex: 0 0 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-right: 0.75em;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 700;
  background-color: #157bb4; /* change color of circle */
  color: #fff;
}