ul.wp-block-list {
    list-style-type: disc;
    margin: 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: 20px;
    list-style-type: decimal;
}

figure.wp-block-table {
    margin-bottom: 30px;
}

figure.alignright img {
    margin: 10px 0px 10px 50px;
    border-radius: 10px;
}

figure.alignleft img {
    margin: 10px 50px 10px 0px;
    border-radius: 10px;
}

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: 10px;
}

h3.wp-block-heading {
    margin-bottom: 10px;
}

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: none;
    text-decoration-color: none;
    color: #3196cb;
}

.page-template-default p a:hover {
    color: #80ad69;
}


.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__link {
    text-transform: capitalize;
    letter-spacing: 1px;
    line-height: 1;
    color: #fff;
    padding: 5px 22px;
    height: 40px;
    min-width: 165px;
    background: #ff6343;
    position: relative;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--glb--transition);
    z-index: 2;
    margin-top: 10px;
}

.wp-block-button:hover .wp-block-button__link {
    background: #fff;
    color: #ff6343;
    border: 1px solid #ff6343;
}

/* 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;
}

.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: 25px;
    margin-bottom: 10px;
}

/* 7-05-25 */
.dflt_page h3.wp-block-heading {
    margin-bottom: 10px;
    margin-top: 20px;
}

.dflt_page p {
    margin: 15px 0px;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    /* color: rgb(0, 68, 102); */
    letter-spacing: -0.88px;
    font-family: var(--heading-font);
    font-weight: 600;
    margin-bottom: 20px;
}

/* 
h3 {
    font-size: 30px;
    line-height: 40px;
} */

/* 
h4 {
    font-size: 20px;
    line-height: 30px;
}

h5 {
    font-size: 18px;
    line-height: 30px;
}

h6 {
    font-size: 15px;
    line-height: 20px;
} */

.dflt_page {
    padding: var(--glb_padd);
    padding-bottom: 15%;
}

.dflt_pag ul {
    padding-left: 20px;
}

.dflt_pag ul li {
    position: relative;
    padding-left: 0;
}

.dflt_pag ul li::after {
    content: '';
    position: absolute;
    background: url(../images/tick_mark.png) no-repeat left;
    width: 18px;
    height: 18px;
    left: 0;
    top: 6px;
}


.dflt_pag::before {
    display: none;
}

blockquote.wp-block-quote:hover {
    background: rgb(8, 34, 90);
}

blockquote.wp-block-quote:hover p {
    color: #fff;
}

blockquote:hover:before {
    color: #fff;
}

blockquote:hover::after {
    color: #fff;
}

.page-template-default p a:hover {
    color: rgb(8, 34, 90);
}

/* h2 {
    font-size: 50px;
    line-height: 60px;

} */

/* 17-09-25  */
.why_us_sec.dflt_pag {
    margin-top: -581px;
}

.why_us_sec.dflt_pag h3 {
    margin-top: 25px;
    line-height: 28px;
    font-size: 20px;
    margin-bottom: 10px;
}

.dflt_pag ul {
    margin-top: 10px;
    margin: 0;
    margin-left: 20px;
}

.why_us_sec.dflt_pag .container p:not(:first-child) {
    padding-left: 20px;
}

.why_us_sec.dflt_pag .container a {
    color: var(--light_black);
    transition: var(--transtn);
}

.why_us_sec.dflt_pag .container p a:hover {
    text-decoration: underline;
}

/* 17-09-25  */
/* 18-09-25 */
section.banner_sec.approach_bnr.dflt_bnr {
    padding: 190px 0 150px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.bnnr_txt.single_page_content {
    position: relative;
    top: unset;
    text-align: center;
}

.why_us_sec.dflt_pag {
    margin-top: 0;
}

/* 18-09-25 */

/* responsive */

@media(max-width: 1499px) {
    .why_us_sec.dflt_pag {
        margin-top: 0;
    }
}

@media(max-width: 1399px) {
    /* section.banner_sec.approach_bnr.dflt_bnr {
        padding: 210px 0 170px;
    } */
}

@media(max-width: 1199px) {

    /* h1 {
        font-size: 60px;
        line-height: 70px;
        padding-left: 0;
    }

    h2 {
        font-size: 48px;
        line-height: 42px;

    } */
    .why_us_sec.dflt_pag {
        margin-top: 0;
    }

    section.banner_sec.approach_bnr.dflt_bnr {
        padding: 160px 0 150px;
    }

}

@media(max-width: 991px) {
    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        margin-bottom: 30px !important;
    }

    section.banner_sec.approach_bnr.dflt_bnr {
        padding: 130px 0 110px;
    }
}

@media(max-width: 767px) {
    /* h1 {
        font-size: 50px;
        line-height: 60px;
        padding-left: 0;
    }

    h2 {
        font-size: 30px;
        line-height: 30px;

    }


    h3 {
        font-size: 25px;
        line-height: 30px;
    }

    h4 {
        font-size: 20px;
        line-height: 22px;
    } */

    .page-template-default .wp-block-image.alignright {
        float: unset;
        width: 100%;
        text-align: center;
    }

    figure.alignleft img {
        margin: 10px 20px 10px 0px;
    }

    .dflt_page {
        padding-bottom: 15%;
    }

}

@media(max-width: 575px) {
    section.banner_sec.approach_bnr.dflt_bnr {
        padding: 140px 0 80px;
    }
}

@media(max-width: 480px) {
    .page-template-default .wp-block-image.alignleft {
        float: unset;
        width: 100%;
        text-align: center;
    }


}