.product-features {
  background: #1E1E1E;
  padding: 60px 0;
  margin-bottom: 30px;
  overflow: hidden;
}

.img-holder {
  position: relative; 
}
.img-holder img {
  display: block;
  margin: auto;
  margin-top: -25px;
  position: relative;
}
.img-holder::before {
  content: " ";
  display: block;
  width: 751px;
  height: 811px;
  background: url('https://24135142.fs1.hubspotusercontent-na1.net/hubfs/24135142/glow1-1.png') center left no-repeat;
  background-size: 100%;
  position: absolute;
  left: 57%; 
  top: 55%;
  transform: translate(-50%, -50%);
}
.pf-content {
  width: 492px;
  max-width: 100%;
  position: relative;
  z-index: 1;  
}
.product-features h2 {
  color: #FFF;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}
.product-features h3 {
  color: var(--color-green); 
  font-size: 22px;
  font-weight: 500;
}
.product-features p {
  color: #7B7B7B;
  font-size: 18px;
  margin-top: 28px;
  line-height: 1.3;
}
.product-features ul {
  list-style: disc;
  margin-top: 35px;
  margin-left: 20px;
}
.product-features li {
  color: #00A379;
  font-size: 20px;
  
}
.product-features .read-more {
  color: #FFF;
  text-decoration: none;
  display: inline-block;
  margin-top: 42px;
  font-weight: 500;
  font-size: 22px;
}
.product-features .read-more:hover {
  opacity: 0.85;
}
.product-features .read-more i {
  font-size: 18px;
  padding-left: 9px;
  position: relative;
  top: 1px;
} 

/* Responsive */
@media (max-width: 1200px) {
  .img-holder::before {
    width 605px;
    height: 655px;
    position: absolute;
    left: 50%; 
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 768px) {
  .product-features h2 {
    font-size: 35px;
  } 
  .product-features h3 {
    font-size: 20px;
  }
  .img-holder img {
    margin-top: 40px; 
  }
  .img-holder::before {
    width 505px;
    height: 546px;
    background-size: 100% 100%;
  }
}