.tile-card {
    height: 400px;
    background-color:rgb(255, 255, 255);
    color: white;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
    }

.imgCard {
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3%;
    margin-bottom: 3%;
    }

.imgCard img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    }

.tile-title {
    font-size: 1.2rem;
    margin-left: 10px;
    text-align: left;
    color:rgb(0, 0, 0);
    }

.tile-body {
    /*flex-grow: 1;
    text-align: justify;
    margin: 0 10px;
    color:rgb(0, 0, 0);*/

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;

    overflow: hidden;
    text-overflow: ellipsis;

    text-align: justify;
    margin: 0 10px;
    color: rgb(0, 0, 0);

    line-height: 1.5em;
    max-height: calc(1.5em * 6);
}


.tile-footer {
    text-align: left;
    margin-bottom: 5px;
    margin-left: 5%;
    margin-bottom: 5%;
    }

.btn-primary {
    background-color: #120a8f;
    border-color: #120a8f;
    }