/* BEGIN b-card-21 */
.b-card-21 {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #df1854;
    border-radius: 5px;
    overflow: hidden;
}
.b-card-21 .b_content{
  padding: 10px;
}
.b-card-21 .b_thumb img {
    transition: all 0.5s;
}
.b-card-21 .b_title {
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 10px;
    transition: 0.5s color ease-in-out;
}
.b-card-21 .b_desc {
    margin: 0;
    overflow: hidden;
}
.b-card-21:hover .b_title {
    color: #df1854;
}
.b-card-21:hover .b_thumb img {
    transform: scale(1.1);
}
/* END b-card-21 */

/* Dev custom b-card-21 */
.b-card-21 .b_thumb img {
   border-radius: 5px;
}
.b-card-21 .b_title {
    height: 45px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.ht-ratio__img {
    height: 100%;
    max-height: 224px;
}
.s-titles{
    font-weight: bold;
    color: #df1854;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.b-card-21 .b_desc {
    margin: 0;
    overflow: hidden;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

@media screen and (max-width: 575px) {
    .b-card-21{
        background: linear-gradient(180deg, #DFA2A7 0%, #df1854 100%);
        color: #fff;
    }
    .ht-ratio__img {
        max-height: fit-content;
    }
    .s-sytem-1 {
        margin-top: 0 !important;
    }
}