.content_wrapper {
    display: flex;
    flex-direction: row;
    gap: 90px;
    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;   
}
.mul_img .content_wrapper {
    gap: 130px;
}
.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 a:hover {
    color: var(--darkMaroon);
}
.title_with_content_image_block .parah li {
    position: relative;
    list-style-type: none;
    padding-top: 0;
    padding-left: 30px;
}

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

    .title_with_content_image_block .container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .title_with_content_image_block .content_wrapper {
        gap: 0;
    }
    .title_with_content_image_block .content_col {
        padding-top: 70px;
        padding-left: 36px;
        padding-right: 36px;
        text-align: center;
    }
    .title_with_content_image_block .btns {
        justify-content: center;
    }
}