.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%;
    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;
    }
}















.title_with_content_image_block {
    --read-more-fade-color: #fff;
}

.title_with_content_image_block.bg_color {
    --read-more-fade-color: var(--twcib-sec-bg-color, #fff);
}

.title_with_content_image_block .parah {
    position: relative;
}

.title_with_content_image_block .parah.is-read-more-collapsible.is-read-more-collapsed {
    max-height: var(--read-more-collapsed-height, 420px);
    overflow: hidden;
}

.title_with_content_image_block .parah.is-read-more-collapsible.is-read-more-collapsed::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 90px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        var(--read-more-fade-color)
    );
}

.title_with_content_image_block .read-more-toggle {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--secondaryFontColor);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.title_with_content_image_block .read-more-toggle[hidden] {
    display: none !important;
}

.title_with_content_image_block .read-more-toggle:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.title_with_content_image_block .read-more-toggle__less {
    display: none;
}

.title_with_content_image_block .read-more-toggle[aria-expanded="true"] .read-more-toggle__more {
    display: none;
}

.title_with_content_image_block .read-more-toggle[aria-expanded="true"] .read-more-toggle__less {
    display: inline;
}

/* Recommended: on stacked mobile layouts, just show the full content */
@media (max-width: 992px) {
    .title_with_content_image_block .parah.is-read-more-collapsible.is-read-more-collapsed {
        max-height: none;
        overflow: visible;
    }

    .title_with_content_image_block .parah.is-read-more-collapsible.is-read-more-collapsed::after {
        display: none;
    }

    .title_with_content_image_block .read-more-toggle {
        display: none;
    }
}