.card {
    text-align: center;
    display: inline-block;
    margin-bottom: 25px;
    transition: 0.15s;
    width: 100%;
    margin-right: 2%;
}

.card-title {
    background: #ffff;
    font-size: 1.15em;
    font-weight: 700;
    margin: 0px;
}

.collections {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.card .card-content {
    padding: 10px;
    background: #fff;
    border-radius: 9px;
    position: relative;
    box-shadow: 0 10px 30px rgb(0 0 0 / 7%);
}

@media only screen and (min-width: 480px) {
    .card {
        width: 22%;
    }
}

@media only screen and (min-width: 768px) {
    .card {
        width: 22%;
    }
}