.big-card-block {
    height: 540px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}
@media screen and (max-width: 768px) {
    .big-card-block {
        width: 100%;
        height: 540px;
        margin-bottom: 20px;
    }
}
.big-card {
    position: relative;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding-top: 380px;
    font-family: "Roboto", sans-serif;
    font-size: 1.2rem;
    border-radius: 10px;
    transition: height ease-in-out 0.2s;
}

@media screen and (min-width: 1024px) {
    .big-card:hover {
        height: 103%;
        transform-origin: top;
        transition: height ease-in-out 0.3s;
        box-shadow: -4px 12px 12px 0px rgba(0, 0, 0, 0.35);
    }
}

.big-card-content {
    position: absolute;
    width: 100%;
    bottom: 40px;
}

.big-card-link {
    color: white;
    text-decoration: none;
}
.big-card-title {
    color: white;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2rem;
    text-shadow: 0em 0em 0.3em rgba(0,0,0,0.4)!important;
}