.card-link {
    border-color: #F97002;
    transition: all 0.5s ease;
}

.card-link:hover {
    border-color: #020202;

}

.card-link .btn-card {
    color: #020202;
    background: #CCCCCC;
    transition: all 0.5s ease;
}

.card-link:hover .btn-card {
    color: #fff;
    background: #F97002;
}

.card-link .content-card {
    transform: translateX(0);
    transition: transform 0.5s ease;
}

.card-link:hover .content-card {
    transform: translateX(20px);
}

.card-title {
    color: #5D5D5D;
    transition: color 0.5s ease;
}

.card-link:hover .card-title {
    color: #F97002;
}