.services-item {
    height: 192px;
    padding: 1em;
    border: 1px solid #eee;
    border-radius: 1em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.services-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
}
.service-item-title h3 {
    text-align: center;
    font-size: 1em;
    margin: 0;
}
@media screen and (max-width: 992px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 576px) {
    .services-list {
        grid-template-columns: repeat(1, 1fr);
    }    
}