.feature-cards-section {
  padding: 60px 20px;
  background-color: #ffffff;
}


.feature-cards-section .feature-top-heading {
  text-align: center;
  margin-bottom: 48px;
}

.feature-cards-section .feature-top-heading h3 {
  font-size: 44px;
  font-weight: 600;
  margin: 0;
}

.feature-cards-section .feature-top-heading p {
  font-size: 18px;
}
.feature-cards-section .feature-cards-grid {
  display: flex;
  gap: 2px;
}

.feature-cards-section .feature-card-item {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-cards-section .card-icon-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  padding: 10px;
}

.feature-cards-section .card-icon-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.feature-cards-section .card-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
  display: block;
}

.feature-cards-section .card-content p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .feature-cards-section .content-wrapper {
    padding: 0px;
  }
  .feature-cards-section .card-icon-wrap {
    margin-bottom: 25px;
  }
  .feature-cards-section .card-icon-wrap {
    height: 55px;
    width: 55px;
  }
  .feature-cards-section .feature-card-item {
    align-items: center;
    padding: 32px !important;
    justify-content: center;
  }
  .feature-cards-section .feature-card-item {
    text-align: center;
  }  
  .feature-cards-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
  }
  .feature-cards-section .feature-card-item {
    flex: auto;
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-cards-section .card-icon-wrap {
    margin-bottom: 15px;
  }
  .feature-cards-section .content-wrapper {
    padding: 0px;
  }
  .feature-cards-section .card-icon-wrap {
    height: 55px;
    width: 55px;
  }
}
.feature-top-heading h2 {
  font-size: 28px;
}

}