.box {
  width: 100%;
  height: auto;
  /* background-color: gold; */
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  cursor: pointer;
}

.box .card {
  width: 32.5%;
  /* height: 400px; */
  margin-bottom: 15px;
  /* background-color: aqua; */
  border: 1px solid #e4e1e1;
}

.box .card:hover {
  box-shadow: 0 0 10px #ccc;
  background-color: #c0af9f;
  transition: all 0.5s;
  color: #fff;
  span {
    color: #fff;
  }
}

.box .title {
  width: 95%;
  padding: 15px;
}

.box .title p {
  margin-bottom: 10px;
}

.box .title span {
  font-size: 14px;
  color: #ccc;
}

.box div img {
  width: 100%;
  /* height: 75%; */
}
