.single_page_content p.has-x-large-font-size {
    margin-top: 15px;
    line-height: 1;
  }
  
  ul.wp-block-list {
    list-style-type: disc;
    margin: 10px 20px;
  }
  .wp-block-table .has-fixed-layout {
    table-layout: fixed;
    width: 100%;
    height: 100%;
    font-size: 16px;
  }
  td.has-text-align-center {
    padding: 20px;
  }
  ol.wp-block-list {
    list-style: disc;
    margin: 10px 20px;
    list-style-type: decimal;
  }
  figure.wp-block-table {
    margin-bottom: 30px;
  }
  figure.alignright img {
    margin: 10px 0px 10px 10px;
  }
  figure.alignleft img {
    margin: 10px 17px 10px 0px;
  }
  figure.aligncenter img {
    margin: 10px 10px 10px 10px;
  }
  
  .wp-block-button__link.wp-element-button {
    text-transform: capitalize;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    padding: 5px 25px;
    height: 50px;
    min-width: 140px;
    position: relative;
    background-color: var(--primary_clr);
    border-radius: 25px;
    border: 1px solid var(--primary_clr);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0px 10px 9.5px rgba(34, 34, 34, 0.28));
    background-color: var(--primary_clr);
    transition: all 0.6s ease;
  }
  .wp-block-button__link.wp-element-button:hover {
    color: var(--primary_clr);
    border: 1px solid var(--primary_clr);
    background: #fff;
  }
  */ .wp-block-code {
    border: 2px solid #00aa14;
    margin: 20px;
  }
  .wp-block-code code {
    color: #fff;
    background: #000;
    padding: 20px;
  }
  .wp-block-details {
    margin: 10px;
  }
  figcaption.wp-element-caption {
    font-size: 20px;
    margin: 40px 0 0;
  }
  figcaption.wp-element-caption strong {
    margin-bottom: 20px;
  }
  p.has-text-align-center.has-large-font-size {
    color: #fff;
  }
  h1.wp-block-heading {
    color: var(--ttle_clr);
    margin-bottom: 15px;
    font-size: 50px;
    line-height: 50px;
    font-weight: 500;
  }
  h2.wp-block-heading {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 24px;
  }
  h3.wp-block-heading {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
  }
  .wp-block-list li {
    margin-bottom: 7px;
  }
  h4.wp-block-heading {
    margin-bottom: 10px;
  }
  h5.wp-block-heading {
    margin-bottom: 10px;
  }
  h6.wp-block-heading {
    margin-bottom: 10px;
    color: var(--bs-heading-color);
    text-transform: unset;
    letter-spacing: unset;
  }
  
  .wp-block-pullquote {
    padding: 2em 0;
    font-size: 16px;
  }
  
  .wp-block-pullquote blockquote cite {
    font-family: inherit;
    font-size: 16px;
    line-height: 28px;
  }
  
  .wp-block-preformatted {
    font-family: inherit;
    color: inherit;
    position: relative;
    font-size: 16px;
    line-height: 28px;
  }
  
  .wp-block-verse {
    font-family: inherit;
    color: inherit;
    position: relative;
    font-size: 16px;
    line-height: 28px;
  }
  
  .wp-block-table {
    overflow-x: auto;
    font-size: 16px;
    line-height: 30px;
    margin-top: 40px;
  }
  .page-template-default .wp-block-image.aligncenter {
    margin: auto;
  }
  
  .page-template-default .wp-block-image.alignleft {
    float: left;
  }
  
  .page-template-default .wp-block-image.alignright {
    float: right;
  }
  
  ol.wp-block-list li::marker {
    color: var(--primary_clr);
  }
  ul.wp-block-list li::marker {
    color: var(--primary_clr);
  }
  
  .page-template-default p a {
    cursor: pointer;
    color: var(--primary_clr);
    text-decoration: underline;
    text-decoration-color: var(--primary_clr);
  }
  
  .page-template-default strong {
    font-weight: bold;
  }
  
  blockquote {
    max-width: 600px; /* Increased max-width for slightly larger blockquotes */
    text-align: left; /* Align text to the left for better readability */
    margin: 30px auto; /* Center blockquote horizontally with auto margins */
    padding: 25px 30px; /* Adjusted padding for more balanced spacing */
    font-family: "Arial", Helvetica, sans-serif; /* Specified font stack */
    font-size: 18px; /* Slightly smaller font size for better readability */
    color: #333; /* Darker text color for better contrast */
    background: #f4f4f4; /* Lighter background for a more subtle look */
    border-left: 5px solid var(--primary_clr); /* Added a blue left border for emphasis */
    border-radius: 15px; /* Reduced border-radius for a more subtle curve */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow for a floating effect */
    line-height: 1.6; /* Increased line-height for better text spacing */
    position: relative; /* Required for positioning the quote marks */
    padding-left: 50px; /* Added padding to create space for the quote marks */
    transition: background 0.3s ease, transform 0.3s ease; /* Smooth hover effects */
  }
  
  blockquote::before {
    content: "“"; /* Open quotation mark */
    font-size: 3em; /* Larger size for the quote mark */
    color: var(--primary_clr); /* Match the blue color of the border */
    position: absolute; /* Position it absolutely within the blockquote */
    left: 10px; /* Space from the left edge */
    top: 10px; /* Position it near the top of the blockquote */
  }
  
  blockquote::after {
    content: "”"; /* Close quotation mark */
    font-size: 3em; /* Same size as the opening quote mark */
    color: var(--primary_clr); /* Match the blue color of the border */
    position: absolute; /* Position it absolutely within the blockquote */
    right: 10px; /* Space from the right edge */
    bottom: 10px; /* Position it near the bottom of the blockquote */
  }
  
  blockquote:hover {
    background: #8c281736; /* Lighter blue background on hover */
    transform: translateY(-5px); /* Subtle lift effect on hover */
  }
  
  blockquote cite {
    display: block; /* Make the citation a block element */
    text-align: right; /* Align citation to the right */
    font-size: 14px; /* Smaller font for citation */
    color: #555; /* Lighter text color for citation */
    margin-top: 10px; /* Space between the quote and the citation */
    font-style: italic; /* Italicize the citation */
  }
  
  /* 27----11-24-----------------start---button----hover */
  .wp-block-button {
    text-transform: capitalize;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    padding: 14px 50px;
    height: 50px;
    min-width: 140px;
    position: relative;
    background-color: var(--primary_clr);
    border-radius: 25px;
    border: 1px solid var(--primary_clr);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0px 10px 9.5px rgba(34, 34, 34, 0.28));
    transition: all 0.6s ease;
  }
  .wp-block-button::after {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 25px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0);
    transition: all 0.6s ease;
  }
  .wp-block-button:hover:after {
    transform: scale(1);
  }
  
  .wp-block-button__link {
    background-color: transparent;
    /* border-radius: 9999px; */
    /* box-shadow: none; */
    /* text-decoration: none; */
    padding: 0;
    /* font-size: 1.125em; */
    position: relative;
    z-index: 5;
    color: #ffff;
  }
  .wp-block-button:hover .wp-block-button__link {
    color: var(--primary_clr);
  }
  /* 27----11-24-----------------start---button----hover -----------end*/
  
  /* 03-12-2024 */
  .page-template-default blockquote.wp-block-quote {
    margin-top: 80px;
  }
  
  .page-template-default .wp-block-buttons > .wp-block-button {
    display: inline-flex;
    justify-content: center;
    padding: 0;
  }
  .single_page_content ul li,
  .single_page_content ol li {
    font-weight: 300;
  }
  .single_page_content div p {
    max-width: 100%;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .page-template-default .wp-block-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 0;
  }
  
  .page-template-default .zigzag_sec .zigzag_row:nth-child(odd) .zigzag_txt {
    padding-left: 0;
  }
  .page-template-default figure.wp-block-image.size-large {
    margin-bottom: 20px;
  }
  .page-template-default figure.wp-block-image.size-large img {
    object-fit: cover;
    width: 100%;
    height: 500px;
  }
  .page-template-default .zigzag_txt h4 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  
  /* for product details content start */
  
  .single_product_content ul {
    padding-left: 30px;
    list-style-type: circle;
  }
  
  .single_product_content > ul {
    list-style-type: disc;
  }
  
  .single_product_content ol {
    padding-left: 30px;
    list-style-type: decimal;
  }
  
  .single_product_content > *:not(:last-child) {
    margin-bottom: 15px;
  }
  
  .single_product_content a {
    text-decoration: underline;
    color: #8c2817;
  }
  
  .single_product_content em {
    font-style: italic;
  }
  
  .single_product_content strong {
    font-weight: bold;
  }
  
  .single_product_content blockquote::after {
    bottom: -20px;
  }
  
  /* for product details content end */