ul.cube {
    list-style-type: none;
    padding-left: 48px;
    margin-top: 32px;
    @extend.mb-6;

    li {
        position:relative;
        margin-bottom: 24px;

        &:before {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            background: $iceblue;
            left: -40px;
            top: 8px;
        }
    }
}