.product-hd {
  background-image: url(../images/products.jpg);
}
.funcgroup {
  flex-basis: 33%;
  padding-right: 30px;
}
.funcgroup + .funcgroup-title {
  margin-top: 50px;
}
.funcgroup-title {
  margin-bottom: 20px;
  padding: 20px 0 20px 20px;
  font-size: 24px;
  border-left: 5px solid #4d6d9c;
}
.func2 {
  padding: 40px 16px;
  border-radius: 4px;
}
.func2:hover {
  background-color: #49aaad;
  color: #fff;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  animation: product_in 0.3s linear 0s;
}
.func2:hover .func-desc {
  color: inherit;
}
.func2 .func-icon {
  display: block;
  text-align: center;
}
.func2 .func-title {
  font-size: 18px;
  line-height: 70px;
  text-align: center;
}
.func2 .func-desc {
  color: #777;
  font-size: 16px;
  text-indent: 2em;
  min-height: 70px;
}
@keyframes product_in {
  from {
    translate: 0 -10px;
  }
  to {
    translate: 0 0;
  }
}
