.icon-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}


.style-1-item {
    background: var(--footer-bg-color);
    padding: 1rem 1rem 0 1rem;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    /* min-width: 300px; */
    /* width: calc((100% /3) - 2rem); */
}
.style-1-item h3{
    margin: 0 -1rem;
    padding: 0.5rem 1rem;
    border-radius: 0 0 1rem 1rem;
    font-size: 1.2rem;
    font-family: var(--body-font-family);
    color: #ffffff;
    font-weight: 400;
    min-height: 110px;
    text-wrap: pretty;
}
.style-1-item .svg-icon-wrap{
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 100px; */
    margin: 0 auto 2rem;
    background: #0000004f;
    border-radius: 50%;
}
.style-1-item .svg-icon{
    width: 90px;
    height: 90px;
    /* filter: url(#blur1); */
    fill: var(--t4-white);
    opacity: 0.8;
}