.title_with_content_block.bg_color {
    background: var(--sec-bg-color);
    position: relative;
}
.title_with_content_block.bg_color::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: var(--bg-overlay-img);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.title_with_content_block .main_wrapper {
    max-width: var(--c-c-width);
    margin: 0 auto;
}

.title_with_content_block .container {
    z-index: 99;
}

.service-opt-lists {
    padding: 0;
    text-align: left !important;
}
.content_align_center .service-opt-lists,
.content_align_center .awards-wrap {
    margin: 0 auto;
}
.service-opt-lists.col_list {
    /*display: flex;
    gap: 50px;
    justify-content: space-between;*/
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 0px 30px;
}
li .so_title {
    font-family: var(--h4FontFamily);
    font-size: var(--h4DeskFont);
    line-height: var(--h4DeskLineHt);
    font-style: var(--h4FontStyle);
    font-weight: var(--h4FontWt);
    color: var(--primaryFontColor);
    margin-bottom: 13px;
}

.service-opt-lists li {
    position: relative;
    list-style-type: none;
    padding-bottom: 20px;
    padding-top: 15px;
    padding-left: 30px;
}
.service-opt-lists li::after {
    content: '';
    height: 2px;
    width: 2px;
    padding: 6px;
    border-radius: 11px;
    background-color: var(--secondaryFontColor);
    position: absolute;
    left: 0px;
    top: 22px;
}
/*.service-opt-lists li:not(:last-child) {
    border-bottom: 1px solid #F1F1F1;
}*/
.service-opt-lists.col_list li::after {
    content: none;
}

.title_with_content_block .parah a {
    text-decoration: none;
}
.title_with_content_block .parah li {
    position: relative;
    list-style-type: none;
    padding-top: 0;
    padding-left: 30px;
}
.title_with_content_block .parah li::after {
    content: '';
    height: 2px;
    width: 2px;
    padding: 6px;
    border-radius: 11px;
    background-color: var(--secondaryFontColor);
    position: absolute;
    left: 0px;
    top: 9px;
}
.text_white .parah li::after {
    background-color: var(--white);
}

@media(max-width:767px) {
    .centered-container .sub-heading {
        font-size: 20px;
    }
    .green-bg-content-center-sec .btns {
        margin-top: 30px;
    }
    .green-bg-content-center-sec::after {
        background-position: center right -450px;
    }
}