.cards {
  margin-top: 6rem;
  justify-content: space-around;
}
.card {
  max-width: 350px;
  background-color: #126c35;
  color: #fff;
  position: relative;
  margin-top: 115px;
  margin-bottom: 30px;
}

.card::after { 
  content: "";
  position: absolute;
  bottom: -0.9rem;
  left: 0rem;
  display: block;
  height: 7px;
  width: 100%;
  background: #FECA18;
}

.card a {
  color: inherit;
  text-decoration: none;
}

.card-thumb {
  width: 100%;
  text-align: left;
}
/* Bee Anime */
.card-thumb img {
  position: absolute;
  left: -20px;
  transition: transform 1s;
}
.card:hover img {
  transform: translateX(140%);
}

.card-thumb img {
  width: 150px;
  margin-top: -8rem;
}

.card-title {
  margin: 5px 0;
  font-size: 1.8rem;
  text-align: center;
  color: #FECA18;
}
.card-excerpt {
  letter-spacing: 1px;
  text-align: center;
}
@media (max-width: 1399px) {
  .card{
    min-width: 350px;
    width: auto;
  }
}
.card-content ul {
  list-style: none;
  text-align: center;
  margin-left:-20px;
}