.myword .title {
  width: 100%;
  font-size: 35px;
  text-align: center;
  margin: 70px 0 120px;
  position: relative;
}
.myword .title:after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  border-radius: 5px;
  width: 100px;
  height: 8px;
  background-color: #ffa200;
}
.card {
  margin: auto;
  border-radius: 15px;
}
.card .card-title {
  position: relative;
}
.card .card-title:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  height: 98%;
  transform: translateY(-50%);
  left: -15px;
  width: 6px;
  background-color: #ffa200;
  border-radius: 5px;
}
.wall {
  margin-bottom: 200px;
}
@media screen and (max-width: 428px) {
  tbody .title {
    margin: 30px 0 80px;
  }
  .wall {
    margin-bottom: 70px;
  }
}
