.content-mosaic{
    /* width: 100%;
    max-width: 1200px;
    height: 430px; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
}

.content-mosaic .card{
    width: 120px;
    height: 120px;
    border-radius: 8px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin: 10px;
    text-align: center;
    transition: all 0.25s;
}

.content-mosaic .card:hover{
    transform: translateY(-15px);
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
}

.content-mosaic .card img{
    width: 100px;
    height: 80px;
    /* border-radius: 50%; */
    margin: 5px 0px;
}

.content-mosaic .card h4{
    border-top: 1px solid #cecece;
    font-weight: 300;
    font-size: 15px;
}

/* .content-mosaic .card p{
    padding: 0 1rem;
    font-size: 16px;
    font-weight: 300;
}

.content-mosaic .card a {
    font-weight: 500;
    text-decoration: none;
    color: #3498db;
} */