#blog {
    padding: 120px 0 300px;
}
#blog .head {
    padding: 0 0;
    margin: 0 0 150px;
    position: relative;
}
#blog .head .block_title {
    padding: 0 0;
    margin: 0 0;
    font-weight: 900;
    font-size: 85px;
    line-height: 98px;
    color: #292929;
}
#blog .head .arrow_down {
    display: block;
    width: 64px;
    height: 64px;
    position: absolute;
    background-image: url("../images/arrow_d_black.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top:15px;
    right: 0;
}

#blog .blog_item {
    padding: 0 0 100px 0;
    margin:0 0 100px 0;
    border-bottom: 3px solid #292929;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    -webkit-display: flex;
    -webkit-align-items: stretch;
    -webkit-justify-content: flex-start;
    -webkit-flex-wrap: nowrap;
}
#blog .blog_item .img {
    width: 436px;
    min-width: 436px;
    height: 296px;
    margin:0 55px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-display: flex;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    background-size: cover;
    background-position: center;
}
#blog .blog_item .data {
    width: 100%;
    height: 296px;
    position: relative;
    overflow: hidden;
}
#blog .blog_item .data .title {
    display: block;
    font-weight: bold;
    font-size: 38px;
    line-height: 52px;
    text-transform: uppercase;
    color: #292929;
    margin: 0 0 20px;
}
#blog .blog_item .data .desc {
    display: block;
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;
    max-height: 90px;
    overflow: hidden;
    color: #292929;
    margin: 0 0 20px;
}
#blog .blog_item .data .date {
    display: block;
    position: absolute;
    z-index: 2;
    background-color: #fff;
    width: 100%;
    height: 36px;
    left:0;
    bottom: 0;
    background-image: url("../images/arrow_tr_black.svg");
    background-repeat: no-repeat;
    background-position: right -15px center;
    background-size: 65px;
    font-weight: 900;
    font-size: 18px;
    line-height: 36px;
    color: #292929;
}
#blog .btn_circle_yellow {
    margin: 0 auto;
}



@media screen and (max-width: 1640px) {

}

@media screen and (max-width: 1100px) {
    #blog {
        padding: 130px 0 250px;
    }
    #blog .head {
        padding: 0 0;
        margin: 0 0 100px;
    }
    #blog .blog_item {
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        align-items: flex-start;
        -webkit-align-items: flex-start;
    }
    #blog .blog_item .img {
        width: 100%;
        min-width: 100%;
        height: 400px;
        margin:0 0 50px 0;
    }
    #blog .blog_item .data {
        width: 100%;
        min-width: 100%;
        height: auto;
        padding-bottom: 30px;
    }
    #blog .blog_item .data .title {
        font-size: 35px;
        line-height: 50px;
    }
    #blog .blog_item .data .desc {
        max-height: 999px;
    }
    #blog .blog_item .data .date {
        height: 30px;
        background-position: right -11px center;
        background-size: 48px;
        line-height: 30px;
    }

}

@media screen and (max-width: 760px) {
    #blog {
        padding: 50px 0 250px;
    }
    #blog .head {
        padding: 0 0;
        margin: 0 0 80px;
    }
    #blog .head .block_title {
        font-size: 50px;
        line-height: 65px;
    }
    #blog .head .arrow_down {
        display: none;
    }
    #blog .blog_item .img {
        height: 180px;
        margin: 0 0 30px 0;
    }
    #blog .blog_item .data .title {
        font-size: 24px;
        line-height: 30px;
    }




}


/*=======*/