.bullet {
    padding: var(--desktop-section-padding);

    .bullet__container {
        margin: 0 auto;
        width: var(--desktop-width);
    }

    .column {}

    .two-column {
        display: flex;

        .column-1 {
            width: 50%;
        }

        .column-2 {
            width: 50%;
        }
    }

    .item {
        padding: 20px;
        font-size: 20px;

        .bold{
            font-family: "Brand Display Heavy";
        }
    }

    .column-title {
        align-items: center;
        display: flex;

        h2 {
            font-family: "Brand Display Heavy";
            justify-content: center;
            font-size: 60px;
            padding: 0 0 20px;
            width: 100%;
            text-align:  left;
            background-image: linear-gradient(97deg, #69bcff, #26ff7e 42%, #26ff7e 74%, #26ff7e);
            -webkit-text-fill-color: transparent;
            background-clip: text;
           
        }
    }

}

.bullet-dark{
    background: var(--bg-dark-2);
    color: var(--txt-dark-2);

    .item{
        .bold{
            color: var(--txt-light);
        }
    }
}