.content_with_bgimage {
    padding: 65px 0;
    position: relative;
}
.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 .common-heading {
    text-align: center;
    color: var(--white) !important;
}
.content_with_bgimage .list_wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px 65px;
    margin-top: 100px;
}
.content_with_bgimage .list_wrap.two_col {
    grid-template-columns: repeat(2, 1fr);
}
.content_with_bgimage .list_wrap.one_col {
    grid-template-columns: 1fr;
}
.content_with_bgimage .list_wrap .list_items {
    position: relative;
    padding: 62px 36px 36px;
    border: none;
    border-radius: 28px;
    text-align: center;
    height: 100%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
}
.content_with_bgimage .list_wrap .list_items .icon-box-big {
    text-align: center;
    align-self: center;
    transform: translateY(-50%);
    position: absolute;
    top: 0;
}
.content_with_bgimage .item_title {
    font-size: var(--font-25);
    line-height: 27px;
    color: var(--darkBlue);
    font-weight: bold;
    margin-bottom: 19px;
}

.item_content_wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.item_content_wrap .content * {
    font-size: var(--font-20);
    color: var(--darkBlue);
}
.item_content_wrap hr {
    margin: 1px;
    border-top: 2px solid var(--darkBlue);
}
.item_content_wrap .tag_line {
    font-size: var(--font-25);
    line-height: 27px;
    color: var(--darkBlue);
    font-weight: bold;
    margin-bottom: 19px;
}

.item_list_wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.item_list_wrap .single_item {
    display: flex;
    text-align: left;
    font-size: var(--font-20);
    line-height: 27px;
    color: var(--darkBlue);
}
.item_list_wrap .single_item svg {
    line-height: inherit;
    width: 35px;
    height: 35px;
	flex: 0 0 35px;
}
.item_list_wrap .single_item img {
    width: 34px;
    height: 34px;
}
.item_list_wrap .single_item span {
    margin-left: 20px;
}

@media(max-width:1200px) {
    .content_with_bgimage .list_wrap,
    .content_with_bgimage .list_wrap.two_col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:767px) {
    .content_with_bgimage .list_wrap,
    .content_with_bgimage .list_wrap.two_col {
        grid-template-columns: 1fr;
    }
    .content_with_bgimage {
        padding: 50px 0;
    }
    .content_with_bgimage .list_wrap {
        margin-top: 70px;
    }
}