.needs-section {
  display: flex;
  flex-wrap: wrap;
}

.needs-section > * {
  flex: 1;
}

.need-card {
  position: relative;
  background: #fff;
  padding: 3px;
  cursor: pointer;
  margin-right: 0;
  transition: all 0.5s;
}
.need-card:last-child {
  margin-left: 0;
}
.need-card .need-card-img {
  width: 100%;
  display: block;
  
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.need-card:hover img {
  scale: 1.01;
}
.need-card .need-card-img img {
  width: 100%;
  display: block;
  transition: all 0.5s;
}
.need-card-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  box-shadow: inset 0px -50px 50px -20px rgba(0, 0, 0, 0.8);
  z-index: 2;
  pointer-events: none;
}
.need-card .need-card-content {
  position: absolute;
  bottom: 0;
  padding: 20px;
  z-index: 5;
}

.need-card .need-card-content h2 {
  color: #fff;
  font-size: 23px;
}

.news-section.Needs .ncf-header-icon {
  background-color: #666;
  margin-top: 5px;
  padding: 3px 7px;
  color: #fff;
  background-color: #cc4129;
  cursor: pointer;
  transition: background-color 0.2s;
}
.news-section.Needs .ncf-header-icon:hover {
  background-color: #666;
}
.news-section.Needs .ncf-header-icon i {
  background-color: transparent;
  padding: 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .need-card {
    width: 50% !important;
  }
}
