.neem-insectticies-products-banner {
  position: relative;
  width: 100%;

  min-height: 280px;
  background-image: url("../img/organic-products/banner-oil.jpg");
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif !important;
}

.neem-insectticies-products-banner .neem-insectticies-products-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.neem-insectticies-products-banner .neem-insectticies-products-banner-content {
  position: relative;
  z-index: 2;
  padding-left: 8%;
  padding-right: 20px;
  margin-bottom: 20px;
}

.neem-insectticies-products-banner .neem-insectticies-products-banner-title {
  color: #ffffff;
  font-size: 36px !important;
  font-weight: 800 !important;
  margin: 0;
  letter-spacing: -0.5px;
  /* line-height: 1rem; */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif !important;
}
.neem-insectticies-products-banner
  .neem-insectticies-products-banner-content
  h3 {
  color: #242424;
  font-size: 18px !important;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif !important;
  font-weight: 600 !important;

  margin: 8px 0 0 0;

  line-height: 1.4rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.neem-insectticies-products-banner .neem-insectticies-products-svg-divider {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.neem-insectticies-products-banner .neem-insectticies-products-svg-divider svg {
  position: relative;
  display: block;
  width: 100%;
  height: 64px;
}

@media (max-width: 768px) {
  .neem-insectticies-products-banner
    .neem-insectticies-products-banner-content {
    padding-left: 5%;
  }
}
@media (max-width: 690px) {
  .neem-insectticies-products-banner {
    min-height: 250px;
  }
  .neem-insectticies-products-banner .neem-insectticies-products-banner-title {
    font-size: 20px !important;
  }
  .neem-insectticies-products-banner
    .neem-insectticies-products-banner-content
    h3 {
    font-size: 16px;
  }
}

/* all products */
.neem-insecticides-product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1400px;
  width: 85%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.neem-insecticides-product-container .neem-product-card {
  background-color: #ffffff;
  width: calc(50% - 15px);
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 12px;
  box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  border-radius: 8px;
}

.neem-insecticides-product-container .neem-image-section {
  flex: 0 0 45%;
  background-color: #eef7fc;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 15px;
  box-sizing: border-box;
}

.neem-insecticides-product-container .neem-product-image {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  animation: fadeDown 0.8s ease-out forwards;
  will-change: transform, opacity;
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-80px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.neem-insecticides-product-container .neem-info-section {
  flex: 1;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  padding-bottom: 50px;
  box-sizing: border-box;
}

.neem-insecticides-product-container .neem-info-section a {
  text-decoration: none;
}

.neem-insecticides-product-container .neem-product-title {
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4em;
  color: #333333;
  margin: 0 0 12px 0;
}

.neem-insecticides-product-container .neem-product-description {
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif;
  font-size: 15px;
  line-height: 1.6em;
  font-weight: 500;
  color: #666;
  margin: 0;
}

.neem-insecticides-product-container .neem-product-description strong {
  font-weight: 700;
}

.neem-insecticides-product-container .neem-read-more-btn {
  display: inline-block;
  border-radius: 5px;
  font-size: 16px;
  font-family: "Raleway", Helvetica, Arial, Lucida, sans-serif !important;
  font-weight: 700 !important;
  background-color: #7cda24;
  color: #ffffff;
  text-decoration: none;
  padding: 0.4em 1.2em;
  line-height: 1.5em !important;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: background-color 0.2s ease;
}

.neem-insecticides-product-container .neem-read-more-btn:hover {
  background-color: #72cf2f;
}

@media (max-width: 1024px) {
  .neem-insecticides-product-container .neem-product-card {
    width: 100%;
  }
}

@media (max-width: 660px) {
  .neem-insecticides-product-container {
    width: 95%;
    padding: 10px 0;
    gap: 20px;
  }

  .neem-insecticides-product-container .neem-product-card {
    width: 100%;
    flex-direction: column;
    padding: 28px;
  }

  .neem-insecticides-product-container .neem-image-section {
    width: 100%;
    flex: none;
    height: 250px;
    margin-bottom: 15px;
  }

  .neem-insecticides-product-container .neem-product-image {
    max-height: 260px;
  }

  .neem-insecticides-product-container .neem-info-section {
    padding-left: 0;
    width: 100%;
    padding-bottom: 45px;
  }

  .neem-insecticides-product-container .neem-product-title {
    font-size: 18px;
  }

  .neem-insecticides-product-container .neem-product-description {
    font-size: 14px;
  }
}
