.features-box .card, .products .card {
    background: rgba(219, 243, 255, 1);
    border: none;
}
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.btn-primary {
    background: rgba(0, 131, 200, 1);
}
.products .card img {
    object-fit: cover;
    max-height: 230px;
	width: 100%;
}
.products p {
    min-height: 75px;
}
.breadcrumb {
	display: none;
}
.insight-content h4, .cs_insights h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.cs_insights h3 {
    font-size: 1.4rem;
    -webkit-line-clamp: 4;
}