.services-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.service-item {
    width: 100%;
    padding: 1rem;
}

.service-item img {
    width: 64px;
    height: 64px;
}

.item-wrapper {
    width: 100%;
    height: 100%;
    padding: 2rem 1.75rem;
    /*display: inline-flex;*/

    border-radius: 0.75rem;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    box-shadow: var(--tw-shadow);
    /* center */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.item-wrapper:hover {
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    box-shadow: var(--tw-shadow);
}

.item-title {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700;
}

.item-description {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 400;
    display: none;
}

.rounded-md {
    border-radius: 0.25rem;
}

.divider {
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .service-item {
        width: 33.3%;
    }
}