.small-card-block {
    width: 100%;
    height: 320px;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px){
    .small-card-block {
        width: 100%;
        height: 250px;
        margin-bottom: 20px;
    }
}

.small-card {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 1.2rem;
    text-shadow: 0em 0em 0.3em rgba(0,0,0,0.4)!important;
    position: relative;
}
.small-card-link {
    color: white;
    text-decoration: none;
}

.small-card-content {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
}
.small-card-title {
    color: white;
    text-decoration: none;
    font-weight: 500;
    overflow-wrap: break-word;
}

@media screen and (min-width: 1024px) {
    .small-card:hover {
        transform: scale(1.01) ;
        transform-origin: center ;
        transition: transform ease 0.2s;
    }
}