#article {
    padding: 140px 0 300px;
}
#article .article_date {
    display: block;
    border-bottom: 3px solid #292929;
    margin: 0 0 82px;
    padding: 0 0 30px;
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
    color: #292929;
}
#article .article_head {
    padding: 0 70px 0 0;
    margin: 0 0 50px;
    position: relative;
}
#article .article_head .article_title {
    padding: 0 0;
    margin: 0 0;
    font-weight: bold;
    font-size: 48px;
    line-height: 65px;
    text-transform: uppercase;
    color: #292929;
}
#article .article_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:50%;
    right: 0;
    margin-top: -32px;
}
#article .article_footer {
    margin:50px 0 0;
    padding:60px 0 0 ;
    border-top: 3px solid #292929;
}
#article .article_footer span {
    display: inline-block;
    vertical-align: top;
    font-weight: normal;
    font-size: 15px;
    line-height: 15px;
    text-transform: uppercase;
    color: #292929;
    padding:3px 0 0 0;
    margin: 0 30px 0 0;
}
#article .article_footer a {
    display: inline-block;
    vertical-align: top;
    font-weight: bold;
    font-size: 15px;
    line-height: 15px;
    text-transform: uppercase;
    color: #292929;
    margin: 0 30px 0 0;
    padding:3px 38px 0 0;
    background-position: right center;
    background-size: 26px;
    background-repeat: no-repeat;
    background-image: url("../images/arrow_tr_black.svg");
}
#article .article_footer a:hover {
    color: #1E3EAE;
    background-image: url("../images/arrow_tr_blue.svg");
}

@media screen and (max-width: 1100px) {
    #article {
        padding: 80px 0 250px;
    }
    #article .article_head {
        padding: 0 0;
    }
    #article .article_head .article_title {
        font-size: 36px;
        line-height: 42px;
    }
    #article .article_head .arrow_down {
        display: none;
    }
}

@media screen and (max-width: 760px) {
    #article {
        padding: 50px 0 250px;
    }
    #article .article_date {
        margin: 0 0 50px;
    }
    #article .article_head {
        margin: 0 0 30px;
    }
    #article .article_head .article_title {
        font-size: 24px;
        line-height: 30px;
    }
    #article .article_footer span {
        margin: 0 5px 0 0;
    }
    #article .article_footer a {
        margin: 0 10px 0 0;
        padding: 3px 30px 0 0;
    }
    #article .article_footer a:last-child {
        margin: 0 0;
    }


}


/*=======*/