/**Card | Style 03*/
.card-style03 {
    display: block;
    position: relative;
    width: 100%;
    min-height: 250px;
    border-radius: .5rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    text-decoration: none;
    box-sizing: border-box;
    background-origin: content-box;
    padding: 3rem;
}

.card-style03:hover {
    color: unset !important;
}

.card-style03::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: .5rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.card-style03:hover::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}

.card-style03 .image-card-body {
    z-index: 5;
    color: white;
    position: absolute;
    left: 1rem;
    bottom: 1rem;
}

.card-style03 .image-card-body small {
    font-size: .8rem;
}