/*===========================================================================================
    Start Features Area
=============================================================================================*/
.features.style2 .features-wrapper {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.features.style2 .features-card {
  padding: 32px;
  border-radius: 16px;
  background: var(--white-color);
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 4px rgba(6, 40, 61, 0.12);
}
.features.style2 .features-card:hover {
  box-shadow: 0px 24px 72px rgba(6, 40, 61, 0.12);
}
.features.style2 .features-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.features.style2 .features-content {
  margin-top: 16px;
}
.features.style2 .features-content h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin: 0;
}
.features.style2 .features-content p {
  margin-top: 12px;
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .features.style2 .features-card {
    padding: 24px;
  }
  .features.style2 .features-content h4 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features.style2 .features-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .features.style2 .features-content h4 {
    font-size: 24px;
    line-height: 120%;
  }
}

@media only screen and (max-width: 767px) {
  .features.style2 .features-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .features.style2 .features-content h4 {
    font-size: 18px;
    line-height: 120%;
  }
  .features.style2 .features-card {
    padding: 24px;
  }
}

/*===========================================================================================
    End Features Area
=============================================================================================*/
