.home__block_news {
    display: flex;
    display: -ms-flex;
    justify-content: space-between;
    -ms-justify-content: space-between;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    margin: 50px 0;
    padding: 30px;
    background: #f1f8e8;
}
.home__block_new {
    position: relative;
    width: 49%;
    height: 280px;
    background-color: #fff;
    border-radius: 15px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.home__block_new:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
}
.home__block_new-title {
    position: relative;
    z-index: 1;
    font-size: 24px;
    font-weight: 600;
    padding: 15px;
    text-align: left;
    max-width: 80%;
    color: #75bc20;
}

/*fix*/
html body .page_sub .page-content p {
    margin: 0;
}

@media(max-width: 991px) {
    .home__block_new {
        height: 240px;
    }
    .home__block_new-title {
        font-size: 18px;
    }
}

@media(max-width: 775px) {
    .home__block_new {
        width: 100%;
    }
    .home__block_new:first-child {
        margin-bottom: 10px;
    }
}
@media(max-width: 479px) {
    .home__block_new {
        height: 180px;
    }
    .home__block_new-title {
        font-size: 13px;
    }
}