/* Product Grid */

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
}

.product-icon {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom:8px;

}

.product-icon i {
  font-size: 28px;
  color: #808080;
  padding: 10px;
}

.info-card:hover .product-icon i {
  color: #0276EB;
}

.info-card:hover .product-icon {
  background: #E6F2FE;
}

.info-card:hover .learn-more {
  color: #0276EB;
}

.info-card:hover .product-name {
  color: #0276EB;
}

/* Content */

.product-name {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 40px;
  letter-spacing: 3%;
}

.product-subtitle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  margin-bottom: 16px;
  line-height: 1.6;
  font-weight: 700;
  font-size: 14px;
  height: 39px;
}

.product-subtitle:hover {
  color: #000;
}

.product-description {
  height: 80px;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 18px;
}

/* Learn More */

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: .3s ease;
}





@media(max-width:992px) {

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:768px) {
.product-subtitle{
height:auto;
}

  .layer-grid {
    padding-inline: 0 !important;
  }


}

@media(max-width:576px) {

  .products-grid {
    grid-template-columns: 1fr;
  }

}