
.features-grid {
    position: relative;
}
.features-grid {
    display: grid;
    gap: 24px;
}

.feature-box {
    position: relative;
    padding: 16px 36px 16px 16px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 32px;
    background: var(--white-color);
    border-radius: 24px;
    transition: all .3s ease-in-out;
}

.feature-box:before {
    content: "";
    border: 15px solid var(--black-color-10);
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: transparent;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
}
.feature-box:hover{
    box-shadow: 0 15px 40px 7px rgba(0, 0, 0, 0.08);
}
.feature-box img{
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.feature-box .text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 16px 0;
}
.feature-box .text b{
    display: block;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    color: var(--black-color);
}
.feature-box .text span{
    display: block;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    color: var(--black-color-70);
}

.feature-box .text:before {
    content: '';
    position: absolute;
    right: -16px;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--black-color-10);
}
@media (max-width: 767px) {
    .features-grid {
        gap: 8px;
    }
    .features:before {
        content: "";
        width: 100px;
        background: var(--black-color);
        border-radius: 16px;
        opacity: 0.05;
        z-index: -1;
        height: calc(100% + 16px);
        position: absolute;
        left: 50%;
        top: -8px;
        transform: translateX(-50%);
    }
}