:root {
    /* background color  */
    --bg-primary-dark: #191a19;
    --bg-secondary: #1e5128;
    --bg-primary-light: #4e9f3d;
    --bg-secondary-light: #d8e9a8;
  
    /*color */
    --text-primary-dark: #191a19;
    --text-secondary: #1e5128;
    --text-primary-light: #4e9f3d;
    --text-secondary-light: #d8e9a8;
  
    /* font family  */
    --font-family-primary: "Montserrat", sans-serif;
    --font-family-secondary: "Josefin Sans", sans-serif;
    --font-family-tertiry: "Poppins", sans-serif;
  }
  @media (max-width: 768px) {
    .product-heading-3{
       font-size: 18px !important;
       text-align: left !important;
    }
    .promise-section{
      background-image: url(/assets/images/product/testimonial1.png);
      height: auto !important;
      padding: 40px 0px !important;
      background-size: cover !important;
    }
    .promise-section p{
      text-align: justify !important;
    }
  }
  .color-g {
    color: var(--bg-primary-light);
  }
  .pages-header{
    background-image: url(/assets/images/home/qlty1.png);
    height: 200px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px !important;
  }

.product-heading-3{
    font-family: var(--font-family-tertiry);
    font-size: 25px;
    font-weight: 600;
}
.pages-heading-1{
    text-align: center;
    font-family: var(--font-family-tertiry);
    font-weight: 700;
   
}
 .product-content{
    display: block;
   padding: 20px;
   box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px;
}



.product-img img:hover{
   
    transition: 1s ease-in;
    cursor: pointer;
}

.product-img p{
    font-family: var(--font-family-secondary);
    margin: 20px 0px;
}
 
.hero-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  background: var(--bg-primary-light);
  font-family: "Montserrat", sans-serif;
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;
  border: none;
}

.hero-button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: var(--bg-secondary);
  color: #fff !important;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}

.hero-button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
  
}

.hero-button span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 10px 40px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3em;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.hero-button:hover span {
  color: var(--text-secondary-light);
  animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}
  .product-heading-4{
    font-family: var(--font-family-tertiry);
    font-weight: 700;
    text-decoration: underline;
    color: var(--text-primary-dark);
    font-size: 25px;

  }
  .promise-section{
    background-image: url(/assets/images/product/testimonial1.png);
    background-attachment: fixed;
    height: 400px;
    background-size: contain;
  }
  .promise-section .container{
    background-color: rgba(133, 227, 86, 0.493);
    backdrop-filter: blur(5px);
    padding: 50px;
    width: 95%;
  }
  .promise-section p{
    font-family: var(--font-family-secondary);
    line-height: 30px;
    color: var(--text-primary-dark);
  }




 