/* Boxen */
.box-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}

.box {
  width: 100%;
  min-width: 200px;
  text-align: center;
  margin-bottom: 2em;
}

.box h2 {
  font-size: 1.5em;
  font-weight: 700;
  margin: 0 0 1.25em 0;
  padding: 0;
}

.box h2::before {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-size: 0.75em;
  background: #292c37;
  color: #fff;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  display: inline-block;
}

.box-left h2::before {
  content: "\f118";
}

.box-middle h2::before {
  content: "\f0c3";
}

.box-right h2::before {
  content: "\f021";
}