.practices-list ._item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    text-decoration: none;
    transition: transform 0.2s;
}

.practices-list ._item:hover {
    transform: scale(1.025);
}

.practices-list ._picture {
    width: 100%;
}

.practices-list ._name {
    color: #2d4c7d;
    height: 70px;
}
@media (max-width: 480px) {
    .practices-list ._item {
        margin-bottom: 10px;
    }
    .practices-list ._name {
        /* font-size: 13px; */
        padding: 5px;
        min-height: 40px;
        height: auto;
    }
}