.blog-article .section_title {
    max-width: 50%;
    margin: 0 auto;
    text-align: center;
}
.blog {
    margin-top: 20px;
    border: 1px solid #fafafa;
}
.blog img {
    border-radius: 3px;
    width: 100%;
}
.blog span {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}
.blog h3 {
    font-size: 22px;
    color: #2a2d43;
    font-weight: 800;
    margin-bottom: 12px;
}
.blog-content {
    padding: 25px;
}
.blog h3 a {
    color: #2a2d43;
}
.blog p {
    color: #2a2d43;
    font-size: 17px;
    font-weight: 500;
}
.blog .read-more-blog {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    background: #00b187;
    display: inline-flex;
    padding: 8px 20px;
    border-radius: 5px;
}
.blog_ratio_img {
    position: relative;
    padding-top: 56.25%;
    display: block;
}
.blog_ratio_img img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
@media(max-width: 992px){
    .blog-article .section_title {
        max-width: 100%;
    }
    .blog p {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .blog {
        margin-bottom: 20px;
    }
}