.title_with_content_image_block.bg_color {
    background: var(--twcib-sec-bg-color);
    position: relative;
}
.title_with_content_image_block.bg_color::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: var(--twcib-bg-overlay-img);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.title_with_content_image_block .container {
    z-index: 99;
}
.content_wrapper {
    display: flex;
    flex-direction: row;
    gap: 70px; /*55px;*/
    align-items: center;
}
.content_wrapper.align_items_start {
    align-items: start;   
}
.content_wrapper.align_items_center {
    align-items: center;   
}
.content_wrapper.align_items_end {
    align-items: end;   
}

.fifty .content_col {
    flex-basis: calc(50% - 55px);
}
.fifty .img_col {
    flex-basis: 50%;
}
.sixty .content_col {
    flex-basis: calc(60% - 55px);
}
.sixty .img_col {
    flex-basis: 40%;
}
.seventy .content_col {
    flex-basis: calc(70% - 55px);
}
.seventy .img_col {
    flex-basis: 30%;
}
.content_wrapper .img_col .img_wrap img {
    max-width: 100%;
}

.reverse .content_wrapper {
    flex-direction: row-reverse;
}

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

.title_with_content_image_block .bottom_content_wrapper {
    margin-top: 40px;
}

@media(max-width:1200px) {
    .content_wrapper .img_col .img_wrap img {
        width: 100%;
    }
}
@media(max-width:992px) {
    .content_wrapper,
    .reverse .content_wrapper {
        flex-direction: column;
        gap: 37px;
    }
    .content_wrapper .img_col .img_wrap {
        text-align: center;
    }
    .content_wrapper > * {
        width: 100%;
        flex-basis: 100% !important;
        flex-grow: 1;
    }
}