/*==========================
Temple Card
===========================*/

.tbm-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.tbm-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.tbm-card a{

    text-decoration:none;

    color:#222;

    display:block;

}

.tbm-image img{

    width:100%;

    height:230px;

    object-fit:cover;

    display:block;

}

.tbm-content{

    padding:22px;

}

.tbm-title{

    font-size:28px;

    font-weight:700;

    margin:0 0 15px;

    color:#222;

}

.tbm-description{

    font-size:16px;

    color:#666;

    line-height:1.7;

    height:52px;

    overflow:hidden;

    margin-bottom:25px;
}

/* Button */

.tbm-btn{

    display:block;

    width:220px;

    margin:0 auto;

    text-align:center;

    background:#F15501;

    color:#fff;

    padding:14px;

    border-radius:8px;

    font-size:18px;

    font-weight:600;

    letter-spacing:.5px;

    transition:.3s;

}

.tbm-card:hover .tbm-btn{

    background:#d94c00;

}