.product-cards {
  display: block;
  width: 100%
}
.title-wrraper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 117px;
  justify-content: space-between;
}
.product-cards .product-area {
  display: flex;
  height: auto;
  width: 100%
}

.product-cards .product-area .product {
  margin: 0px 12px;
  padding: 0 20px;
  width: calc(33.33333% - 24px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-cards .product-area .product.featured {
  border-bottom-color: #28cd50;
  border: 1px solid #28cd50;
}

.product-cards .product-area .product.featured .title {
  background: #28cd50;
  border-bottom: 1px solid #28cd50;
}
.product-cards .product-area .product.featured .title:after {display:none;}

.product-cards .product-area .product.featured .title h4 {
  color: #fff;
}

.product-cards .product-area .product .title {
  position:relative;
  border-bottom: 1px solid #fff;
  padding: 15px;
}
{#.product-cards .product-area .product .title:after {
  background: #a4a4aa;
  content: "";
  display: block;
  height: 1px;
  width: calc(100% - 30px);
  position: absolute;
  bottom: 0;
}#}

.product-cards .product-area .product .title p {
  color: #fff;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
}

.product-cards .product-area .product .title h4 {
  font-size: 1.5rem;
  line-height: 2.25rem;
  margin: 0
}

.product-cards .product-area .product .description {
  padding: 15px;
  width: 100%;
  height: 100%;
}
.product-cards .description ul li:before {
  content: "";
  background: url(https://www.cinchhomeservices.com/hubfs/%E2%9C%93.svg);
  width: 16px;
  height: 16px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 1px;
  top: 5px;
}
.product-cards .description ul li{
  position: relative;
  list-style: none;
  padding-left: 25px;
  margin-bottom: 5px;
  text-align: left;
}
.product-cards .description li p {
  margin-top: 0.65em;
  margin-bottom: 0;
}
.product-cards .product-area .product .description a{text-decoration:underline;}
.product-cards .product-area .product .img {
  width: 100%;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.product-cards .product-area .product .img img {
  max-width: 100%
}
.cta-cover{
  margin: 20px auto;
}
.cta{
  background: #21c043;
  width: 315px;
  align-items: center;
  border-radius:3px;
}
.cta-content {
  text-align: center;
  font-weight: 600;
  color: #fff;
  padding: 10px 0;
}
.starting-price{
  margin: inherit;
  margin-top: -30px;
}
/* medias */
/* XS */
@media (max-width: 767px){
  .product-cards .product-area {
    display:block
  }

  .product-cards .product-area .product {
    width: 100%;
    margin: 15px auto;
    max-width: 600px;
  }
  .product-cards .product-area .product .description{min-height:auto;}
}