.product-banner-section {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.product-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.banner-heading {
  position: relative;
  z-index: 2;
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
@media (max-width: 768px) {
  .banner-heading {
    margin-bottom: 110px;
  }
}

/* -----------------product-list-section-------------- */
.product-list-section {
  padding: 60px 0;
}
.product-heading-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.product-header {
  width: 100%;
  max-width: 135px;
  height: 129px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f2fff6;
  border-radius: 0;
  border: none;
  padding: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding-bottom: 15px;
}

@media (max-width: 768px) {
  .product-heading-container {
    gap: 10px;
  }
  .product-header {
    flex: 0 0 calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .product-header {
    flex: 0 0 calc(25% - 25px);
    max-width: calc(25% - 25px);
  }
}

.product-header:hover {
  transform: scale(1.15);
}
.product-header-text {
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  text-transform: capitalize;
  color: #333333;
  line-height: 15px;
}
.product-card {
  border-radius: 0;
  border: none;
}
.product-image-wrapper,
.product-image-wrapper img {
  width: 100%;
  height: 100%;
}
.card-body {
  background-color: #fbfbfb;
  padding: 20px;
}
.card-heading {
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #333333;
  margin-bottom: 20px;
}
.card-description {
  text-align: justify;
  font-size: 14px;
  font-weight: 300;
  color: #4d4d4d;
  line-height: 19px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-button {
  padding: 13px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  text-align: center;
  border: 1px solid#108100;
  border-radius: 10px;
  color: #108100 !important;
}
.product-button:hover {
  background-color: #108100;
}
.product-button:hover {
  color: #fff !important;
}
.product-header.active {
  background-color: #108100;
}

.product-headercard-body.active .product-header-text,
.product-header.active .product-header-text {
  color: #fff;
}
@media(min-width:992px) and (max-width:1199px){
  .card-heading {
    font-size: 11px;
  }
}
@media(min-width:1200px) and (max-width:1399px){
  .card-heading {
    font-size: 13px;
  }
}