.news_single_block .content_wrapper {
    display: flex;
    flex-direction: row;
    gap: 100px;
    align-items: center;
    justify-content: space-between;
}
.news_single_block .content_wrapper.align_items_start {
    align-items: start;   
}
.news_single_block .content_wrapper.align_items_center {
    align-items: center;   
}
.news_single_block .content_wrapper.align_items_end {
    align-items: end;   
}
.news_single_block.fifty .news_wrapper {
    flex-basis: calc(50% - 55px);
}
.news_single_block.fifty .sidebar_wrapper {
    flex-basis: 50%;
}
.news_single_block.sixty .news_wrapper {
    flex-basis: calc(60% - 55px);
}
.news_single_block.sixty .sidebar_wrapper {
    flex-basis: 40%;
    max-width: 536px;
}
.news_single_block.seventy .news_wrapper {
    flex-basis: calc(70% - 55px);
}
.news_single_block.seventy .sidebar_wrapper {
    flex-basis: 30%;
}

.news_single_block .news_wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px;    
    align-items: start;
}
.news_single_block .news_wrapper .content_col {
    flex-basis: 100% !important;
}

.news_single_block .news_img_wrap {
    position: relative;
}
.news_single_block .news_img_wrap img {
    width: 100%;
    display: block;
}
.news_single_block .post_meta {
    position: absolute;
    bottom: -25px;
    left: 13px;
    display: flex;
}
.news_single_block .post_meta span {
    color: #FFF;
    font-family: "Helvetica";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    padding: 14px 27px;
}
.news_single_block .post_meta .category {
    background: #425A6E;
    margin-right: 15px;
}
.news_single_block .post_meta .date {
    background: #425A6E;
}
.news_single_block .news_wrapper .content_wrap {
    margin-top: 35px;
}
.news_single_block .news_title {
    color: var(--primaryFontColor);
    font-family: "Archivo Black", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
}

.news_single_block .sidebar_wrap {
    flex-shrink: 0;
    background: #E6EDF0;
    padding: 32px 36px;
}
.news_single_block .search_box {
    position: relative;
    margin-bottom: 45px;
}
.news_single_block .search_box input {
    width: 100%;
    border: 1px solid #ddd;
    height: 61px;
    padding: 0 40px 0 12px;
}
.news_single_block .search-btn {
    position: absolute;
    right: 30px;
    top: 23%;
    width: 30px;
    height: 30px;
    border: none;
    background: #fff;
    color: #C20000;
    cursor: pointer;
}
.news_single_block .search-btn i {
    font-size: 28px;
}

.news_single_block .cat_title {
    color: #425A6E;
    font-family: "Archivo Black", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
}
.news_single_block .cat_items {
    list-style: none;
    padding-left: 0;
    gap: 15px;
    padding-top: 20px;
}
.news_single_block .cat_items li {
    color: #80949E;
    font-family: "Archivo Black", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;    
    padding: 8px 12px;
    background: #FFFFFF;
    border:1px solid  #ececec;
}
.news_single_block .cat_items li a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news_single_block .cat_items span {
    width: 46px;
    height: 46px;
    background: #C20000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

@media (min-width: 1044px) {
    .news_single_block .mobHide {
        display: none;
    }
    .news_single_block .sidebar_wrap ul {
        display: flex !important;
    }
    .news_single_block .sidebar_wrap .filterMob {
        display: block !important;
    }
}
@media (max-width: 1044px) {
    .news_single_block .content_wrapper {
        flex-direction: column-reverse;
        gap: 48px;
    }
    .news_single_block .sidebar_wrapper {
        max-width: 100% !important;
        width: 100%;
    }
    .news_single_block .sidebar_wrap {
        padding: 10px 12px;
    }
    .news_single_block .sidebar_wrap .mob-ham-icon svg {
        width: 59px;
        height: 55px;
        fill: var(--primaryFontColor);
    }
    .news_single_block .sidebar_wrap .filterMob,
    .news_single_block .deskHide {
        display: none;
    }
    .news_single_block .mobHide {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
    .news_single_block .sidebar_wrap .filterMob {
        flex-direction: column;
    }
    .news_single_block .search_box {
        margin-top: 40px;
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .news_single_block .news_wrapper {
        flex-direction: column;
    }
    .news_single_block .news_wrapper .btns {
        justify-content: flex-start;
    }
    .news_single_block .post_meta {
        left: 0;
    }
    .news_single_block .post_meta .category {
        display: none;
    }
    .news_single_block .news-slider-nav {
        justify-content: center;
    }
    .news_single_block .cat_title {
        font-size: 30px;
    }
}