.card {
    border: 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin: 10px;

    &:hover {
        transform: scale(1.05);
        transition-duration: 200ms;
    }
}
.card .bg-image {
    height: 230px;
    overflow: hidden;
}

.card .bg-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.card .coach {
    align-items: center;
    justify-content: center;
}

.card .coach .pic {
}

.card .coach .pic img {
    border-radius: 50%;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    object-fit: cover;
    width: 50px;
    height: 50px;
}

.card .coach .link {
    text-decoration: none;
    font-weight: bold;
    color: inherit;
}

.card .card-body {
    position: relative;
    padding-top: 10px;
}

.card .card-body .card-date{
    position: absolute;
    width: 25%;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 10px;
    /*top: -25%;*/
    top: -60px;
    right: 10%;
    padding: 5px;
}

.card .card-body .card-date .day{
    font-size: 25px;
    font-weight: bold;
    line-height: 25px;
    display: block;
}

.card .card-body .card-date .month{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    line-height: 16px;
    display: block;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 0;
}

.card  i{
    color: var(--primary-color);
}

.card .f-end {
    margin-left: auto;
}
