.content_with_bgimage {
    padding: 85px 0;
    position: relative;
    margin: 0;
}
.content_with_bgimage::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0000006e;
    content: '';
    z-index: -1; 
}
.content_with_bgimage .bg_img img {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center left;
}
.content_with_bgimage .container {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}


.content_with_bgimage .content_wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
    position: relative;
}
.content_with_bgimage .content_wrapper .title_wrap {
    margin-bottom: 80px;
}
.content_with_bgimage .content_wrapper .common-title {
    color: var(--white);
    text-align: center;
}
.content_with_bgimage .list_wrap {
    display: flex;
    align-items: stretch; /*flex-start;*/
    gap: 20px;
}
.item_content_wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}
.item_content_wrap .content * {
    color: var(--darkBlue);
    font-size: 20px;
    font-family: var(--font-opensans);
    font-weight: 400;
    line-height: 27px;
}
.item_content_wrap .tag_line {
    font-size: var(--btnFont);
    line-height: 27px;
    color: var(--darkBlue);
    font-weight: bold;
    margin-bottom: 19px;
}
.content_with_bgimage .list_wrap > * {
    flex-grow: 1;
    background-color: #fff;
    border-radius: 13px;
    padding: 52px 36px 50px;
    flex-basis: 50%;
}
.content_with_bgimage .list_wrap .item_title {
    color: var(--darkBlue);
    text-transform: capitalize;
    font-size: var(--btnFont);
    font-weight: 700;
    line-height: 27px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
}
.content_with_bgimage .list_wrap ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.content_with_bgimage .list_wrap ul li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.content_with_bgimage .list_wrap ul li .item_text {
    flex-grow: 1;
    max-width: 260px;
}
.content_with_bgimage .list_wrap ul li .item_text * {
    font-size: var(--bodyFont);
    line-height: 27px;
    color: var(--darkBlue);
    font-weight: 500;
    margin: 0;
}
.content_with_bgimage .list_wrap .list_items {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 388px;
    margin: 0 auto;
}
.content_with_bgimage .list_wrap .list_items .icon-box-big {
    text-align: center;
    align-self: center;
    transform: translateY(-50%);
    position: absolute;
    top: 0;
    width: 85px;
    height: 85px;
    flex: 0 0 85px;
}
.content_with_bgimage .list_wrap .list_items svg {
    line-height: inherit;
    /*margin-right: 20px;*/
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
}

@media(max-width:1200px) {
    .content_with_bgimage .list_wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 70px 30px;
    }
}
@media(max-width:767px) {
    .content_with_bgimage .list_wrap {
        grid-template-columns: 1fr;
    }
    .content_with_bgimage {
        padding: 60px 0;
    }
    .content_with_bgimage .list_wrap {
        margin-top: 70px;
    }
    .content_with_bgimage .content_wrapper .title_wrap {
        margin-bottom: 0px;
    }
}

@media(max-width:400px) {
    .content_with_bgimage .list_wrap ul li {
        gap: 20px;
    }
    .content_with_bgimage .list_wrap ul li .item_icon img {
        width: 65px;
        height: 65px;
    }
    .content_with_bgimage .list_wrap .list_items {
        min-width: 200px;
        max-width: 100%;
    }
    .list_items .primary-btn {
        width: var(--btn-width, 200px);
    }
}