.chapters {
  padding: 60px 0;
}
.chapters h2 {
  margin: 0 0 35px;
  font-size: 24px;
  color: #191919;
  font-weight: 600;
  text-align: center;
}
.chapters .chapter {
  list-style: none;
  margin: 0;
  padding: 0;
}
.chapters .chapter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.chapters .chapter li {
  width: 100%;
  margin: 0 0 30px;
}
.chapters .chapter li.start {
  display: flex;
  align-items: center;
  justify-content: center;
} 
.chapters .chapter li.start span {
  font-size: 48px;
  color: #ff4800;
  font-weight: 400;
  font-style: italic;
}
.chapters .chapter li.start img {
  margin-left: 25px;
  transform: rotate(180deg);
}
.chapters .chapter li a {
  display: block;
  background-color: #fff;
  padding: 30px;
  height: 100%;
  color: #000;
  font-size: 24px;
  border: 2px solid #ececec;
  transition: all .5s ease 0s;
  box-shadow: 0px 0px 14.49px 6.51px rgba(26, 23, 23, 0.04);
}
.chapters .chapter li a strong {
  display: block;
  margin: 0 0 23px;
  color: #ff4800;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.chapters .chapter li a h3 {
  margin: 0 0 25px;
  font-size: 22px;
  color: #010000;
  font-weight: 300;
}
.chapters .chapter li a p {
  margin: 0;
  font-size: 14px;
  color: #010000;
  font-weight: 400;
}
.chapters .chapter li a:hover,
.chapters .chapter li a.active {
  border: 2px solid #ff4800;
  background-color: #ff4800;
  color: #fff;
}
.chapters .chapter li a:hover strong,
.chapters .chapter li a.active strong {
  color: #fff;
}
@media (min-width: 1200px) {
  .chapters h2 {
    margin: 0 0 55px;
  }
  .chapters .chapter li {
    padding: 0 15px;
    width: 33.3%;
  }
  .chapters .chapter li a {
    padding: 60px 70px;
  }
}