.services {
    padding: 100px 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    overflow: hidden;
    padding: 32px;
    transition: .35s ease;
}

.card:hover {
    transform: translateY(-8px);
}

.card-image {
    height: 190px;
    margin: -32px -32px 24px;
    overflow: hidden;
    background: #f4f8fb;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card h3 {
    margin: 0 0 14px;
    font-size: 23px;
}

.card p {
    margin: 0 0 24px;
    color: #5b6b79;
}
