.flexcenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
h4 {
  margin: 0;
  margin-top: 50px;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
  color: #3a3b3a;
}
h2 {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 20px;
  line-height: 25px;
  font-weight: bold;
  color: #206ab1;
  text-align: left;
  text-transform: uppercase;
}
h2:after {
  content: "";
  position: relative;
  top: 100%;
  left: 0;
  right: 0;
  display: block;
  margin: 35px 0 25px;
  width: 100px;
  height: 2px;
  background-image: linear-gradient(to right, #2464ac 0%, #009cd8 100%);
}
h2 ~ h2:after {
  display: none;
}
@media screen and (max-width: 1024px) {
  h2 {
    margin-bottom: 20px;
  }
  h2:after {
    margin: 30px 0 10px;
  }
}
ul {
  list-style: none;
}
ul > li {
  position: relative;
  padding: 5px 0;
}
ul > li:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  width: 11px;
  height: 13px;
  background-image: url("../img/o-liste.png");
  background-size: cover;
}
ul > li > ul {
  padding: 10px 0 10px 20px;
}
ul > li > ul > li {
  position: relative;
}
ul > li > ul > li:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  width: 11px;
  height: 13px;
  background-image: url("../img/o-liste.png");
  background-size: cover;
}
/*# sourceMappingURL=editor-style.css.map */