.card {
    position: relative;
    background-color: #ffffff;
    margin: 15px;
    padding: 20px;
    height: 490px;
}

.card-body {
    padding-left: 1px;
}

.card:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}

.card img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
} 

.card-title {
    font-family: "Rubik";
    font-size: 17px;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: 0.34px;
    text-align: left;
    color: #16202d;
}

.card-text {
    font-family: "HelveticaNeue";
    font-size: 23px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.7px;
    text-align: left;
    color: #16202d;
}

.card-foot {
    position: absolute;
    bottom: 12px;
    font-family: "Rubik";
    font-size: 17px;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: 1.7px;
    color: #4d1edf;
}

.card-foot img {
    height: 10px;
}

@media only screen and (min-width: 550px) {
    .card {
        height: 580px;
        margin-left: 50px;
        margin-right: 50px;
    } 


}

@media only screen and (min-width: 768px) {
    
    .card {
        height: 415px;
        margin: 15px;
    }

    .card-text {
        font-size: 19px;
    }
}

@media only screen and (min-width: 1024px) {

    .card {
        height: 500px;
    }

    .card-text {
        font-size: 25px;
    }
}








