.products-list ul {
  padding: 0;
  list-style: none;
}
.products-list ul li {
  margin-bottom: 30px;
  text-align: center;
  height: 450px;
}
.products-list .product-inner {
  background: rgb(5, 14, 73);
  padding: 35px 30px 40px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.products-list img {
  width: 100%;
}
.products-list h3 {
  margin: 30px 0 25px;
  display: block;
  display: -webkit-box;
  font-size: 20px;
  line-height: 1.5;
  height: 30px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.products-list p.intro {
  padding: 0 5px;
  margin-bottom: 30px;
  display: block;
  display: -webkit-box;
  font-size: 16px;
  line-height: 1.7;
  height: 81.6px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}
@media (max-width: 1199px) {
  .products-list ul li {
    margin-bottom: 0px;
  }
}
@media (max-width: 991px) {
  .products-list ul li {
    margin-bottom: 0px;
    height: 500px;
  }
  .products-list p.intro {
    height: 160px;
  }
}
@media (max-width: 767px) {
  .products-list ul li {
    margin-bottom: 30px;
    height: auto;
  }
}
a, a:hover {
  color: white;
}