.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); /*url(../images/green-bg-overlay.png);*/
    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(--font-ProximaNova-bold);
    font-size: var(--bodyFont);
    font-weight: 700;
    line-height: var(--bodyLh);
    color: var(--black);    
    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(--color-greenSheen);
    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 a:hover {
    /* color: var(--color-lightTeal) !important; */
    /* text-decoration: underline; */
}

.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(--color-greenSheen);
    position: absolute;
    left: 0px;
    top: 9px;
}

.awards-wrap {
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
}
.award-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}
.awards-wrap img {
    /*width: 120px;
    height: 120px;*/
    max-width: 300px;
    max-height: 200px;
    border: 1px solid var(--black);
    padding: 10px;
}
.award_title {
    color: var(--black);
    font-family: var(--font-Mr-Eaves-Bold);
    font-size: var(--preHeadingFont);
    font-style: normal;
    font-weight: 700;
    line-height: var(--preHeadingLh);
    text-transform: capitalize;
}


@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;
    }
    .title_with_content_block .stack-images {
        gap: 40px;
    }
}