/* BEGIN b-card-39 */
.b-card-39 {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 22px 10px;
    border: 2px solid var(--color-main);
    border-radius: 12px;
    box-shadow: rgb(223 63 63 / 55%) 0px 2px 8px 0px;
}
.b-card-39::after {
    content: '';
    display: table;
    clear: both;
}
.b-card-39 .b_icon {
    float: left;
    width: 70px;
    margin-right: 15px;
    text-align: center;
    position: relative;
}
.b-card-39 .b_icon::after {
    content: '';
    width: 2px;
    height: 58px;
    background: var(--color-main);
    position: absolute;
    right: -5px;
}
.b-card-39 .b_icon>i {
    color: #05a;
    font-size: 55px;
}
.b-card-39 .b_content {
    float: left;
    width: calc(100% - 85px);
}
.b-card-39 .b_title {
    font-size: 16px;
    /* font-weight: bold; */
    line-height: 1.125em;
    margin-bottom: 7px;
}
.b-card-39 .b_desc {
    text-align: justify;
}
.b-card-39:hover .b_title {
    color: #fff;
}
.b-card-39:hover {
    background: var(--color-main);
}
.b-card-39:hover .b_icon::after {
    background: #fff;
}
.b-card-39:hover .b_icon img {
    transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transition: all 1s;
}
/* END b-card-39 */