.vbpl {
    position: relative;
    padding-top: 60px;
    padding-bottom: 80px;
    background: var(--Green, #098b43);
}
/* .vbpl::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        #003665 8.2%,
        rgba(2, 89, 167, 0) 52.39%,
        #0059a9 100%
    );
} */
.vbpl > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vbpl .container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.vbpl .container .vbpl-item {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid #2d9e60;
    background: #fff;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
    padding: 24px;
    position: relative;
}
.vbpl .container .vbpl-item .vbpl-item-icon {
    width: 61px;
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 82px;
    border: 1px solid #20df75;
    background: linear-gradient(
        89deg,
        #0cd338 35.5%,
        #11a17f 87.99%,
        #2e398b 150.6%
    );
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.12);
    margin-bottom: 12px;
}
.vbpl .container .vbpl-item .vbpl-item-icon svg {
    width: 32px;
    height: 32px;
    aspect-ratio: 1/1;
}
.vbpl .container .vbpl-item .vbpl-item-name {
    color: var(--text, #101857);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.44; /* 144.444% */
}
.vbpl .container .vbpl-item > img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 141px;
    height: 129px;
    pointer-events: none;
}
@media (max-width: 639px) {
    .vbpl .container {
        padding: 0 16px;
        grid-template-columns: repeat(1, 1fr);
    }
}
