/* BEGIN b-card-2 */
.b-card-2 {
    display: block;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
}
.b-card-2::after {
    content: '';
    display: table;
    clear: both;
}
.b-card-2 .b_thumb {
    float: left;
    width: 200px;
    margin-right: 15px;
}
.b-card-2 .b_title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.125em;
    padding-top: 10px;
    margin-bottom: 10px;
    color: #0955a0;
    -webkit-transition: 0.3s color ease-in-out;
    -o-transition: 0.3s color ease-in-out;
    transition: 0.3s color ease-in-out;
}
.b-card-2 .b_title span {
    display: block;
}
.b-card-2 .b_title::after {
    content: '';
    display: inline-block;
    width: 80px;
    height: 1px;
    background-color: #ccc;
}
.b-card-2 .b_desc {
    text-align: justify;
    color: #666;
}
@media (max-width: 479px) {
    .b-card-2 .b_thumb {
        width: 150px;
    }
    .b-card-2 .b_title {
        font-size: 15px;
    }
}
.b-card-2:hover .b_title {
    color: #ec232b;
}

/* END b-card-2 */