.featured-initiatives.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
.initiatives-card {
	display: flex;
	flex-direction: column;
	background-color: transparent;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0;
}
.initiatives-card .card-img {
	width: 100%;
	height: 0;
	padding-bottom: 52%;
	background: #eee;;
	background-size: cover;
	overflow: hidden;
	border-radius: 0;
}
.initiatives-card .card-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-ms-transition: all 0.3s ease-out;
     transition: all 0.3s ease-out;
}
.initiatives-card:hover .card-img img {
	transform: scale(1.1);
}
.initiatives-card .card-content {
	padding: 20px;
	background-image: linear-gradient(135deg, #fff 93%, transparent 93%);
}

.initiatives-card .card-content h4 {
	color: #0476C8 !important;
	margin-bottom: 1rem !important;
}
.initiatives-card a:hover h4 {
	text-decoration: underline;
}
.initiatives-card .card-content p {
	color: #000 !important;
	margin-bottom: 0;
	overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2; 
           line-clamp: 2; 
   -webkit-box-orient: vertical;
}