.category-home {
  background: #F4F4F4;
  padding: 100px 0;
}
.category-home h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 70px;
}
.category-home .list-category-home div[class^="col"] {
  margin-bottom: 30px;
}

.category-home .item-category-container {
  background: #fff;
  padding: 35px;
  border: 1px solid #E5E5E5;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  box-shadow: 0px 0px 16px -5px transparent;
}
.category-home .item-category-container h3 {
  color: #42494A;
  font-size: 20px;
  position: relative;
  margin-bottom: 25px;
}
.category-home .item-category-container h3:before {
  position: absolute;
  content: "";
  width: 34px;
  height: 2px;
  background: #F05A27;
  bottom: -25px;
  left: calc(50% - 17px);
}
.category-home .item-category-container p {
  margin-top: 25px;
  margin-bottom: 0;
  color: #757E80;
}
.category-home .item-category-container:hover {
  transition: all 0.2s;
  transform: scale(1.05);
  box-shadow: 0px 0px 16px -5px rgba(0, 0, 0, 0.1);
}
