.dg2_cat_shortcode {
  display: flex;
  justify-content: start;
  align-items: stretch;
  flex-direction: column;
  flex-wrap: wrap;
}

.dg2_cat_s_box {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.2); */
  position: relative;
}

.dg2_cat_s_box svg {
  width: 60px;
  height: 60px;
}

.dg2_cat_s_box:before {
  content: '';
  position: absolute;
  right: 0px;
  height: 70%;
  margin: auto;
  width: 1px;
  background: #eee;
}

.dg2_cat_s_box:after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #eee;
  margin: 0 auto;
  bottom: -1rem;
  content: "";
}

.dg2_cat_s_box h2 {
  font-size: 1.3rem;
}

.dg2_cat_s_box p {
  text-align: center;
}

@media (min-width: 900px) {
  .dg2_cat_shortcode {
    flex-direction: row;
  }

  .dg2_cat_s_box {
    width: 33%;
  }
}