.title_with_content_color_palatte_block.bg_color {
    background: var(--twccpb-sec-bg-color);
    position: relative;
}
.title_with_content_color_palatte_block.bg_color::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: var(--twccpb-bg-overlay-img);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

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

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

.common-brand-grid {
    display: grid;
    gap: 73px;
    grid-template-columns: 1fr 1fr;
}
.common-brand-grid.one_col {
    grid-template-columns: 1fr;
}

.color-cir-wrap {
    display: flex;
    gap: 20px 60px;
    flex-wrap: wrap;
    /* justify-content: center; */
}
.color-cir-wrap .circle {
    height: 108px;
    width: 108px;
    border-radius: 100%;
    background-color: red;
    margin-bottom: 20px;
}
.color-cir-wrap .font-bold {
    font-weight: 700;
}

@media(max-width:992px) {
    .content_wrapper,
    .reverse .content_wrapper {
        flex-direction: column;
        gap: 37px;
    }
    .content_wrapper > * {
        width: 100%;
        flex-basis: 100% !important;
        flex-grow: 1;
    }
}
@media(max-width:768px) {
    .common-brand-grid {
        grid-template-columns: 1fr;
    }
}
