.nls-general-block-f {
    text-align: center;
    background-size: cover;
    background-position: center center;
}
.nls-general-block-f .nls-block-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Create 3 equal-width columns */
    gap: var(--global-space); /* Gap between the grid items */
    padding: var(--global-space) 0;
    text-align: left;
}
.nls-general-block-f img {
    border-radius: 15px 15px 0 0 ;
}
.nls-general-block-f .nls-block-content {
    background-color: #fff;
    border-radius: 15px;
}

.nls-general-block-f .nls-content {
    padding: 32px;
}
.nls-general-block-f .nls-result {
    color: #007E00;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
}
.nls-general-block-f .nls-results {
    color: #007E00;
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
}
@media (max-width: 980px) {
    .nls-general-block-f .nls-block-container {
        display: block;
    }
    .nls-general-block-f .nls-block-content {
        margin-bottom: var(--global-space);
    }
    .nls-general-block-f .nls-block-wrapper {
        padding-bottom: 0px;
    }
    .nls-general-block-f .nls-block-container {
        padding-bottom: 0px;
    }
}