#we-provide {
    background-image: url(../assets/we-provideBg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
}
#we-provide h2,
#we-provide p {
    color: var(--gray95) !important;
}
.provide_items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px;
}
.provide_item {
    background-color: white;
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.provide_item div {
    background-color: var(--red);
    border-radius: 50%;
    min-width: 52px;
    min-height: 52px;
    max-width: 52px;
    max-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.provide_item h5 {
    font-weight: 700 !important;
    color: var(--gray1) !important;
    font-size: 18px;
}
@media (max-width: 1000px) {
    .provide_items {
        grid-template-columns: 1fr;
    }
}
