.homehowbuy{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--wp--preset--spacing--75);
}
    .homehowbuy_top{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding-left: var(--wp--style--root--padding-left);
        padding-right: var(--wp--style--root--padding-right);
        position: relative;
    }
        .homehowbuy_top-narrow{
            display: flex;
            flex-direction: column;
            gap: var(--wp--preset--spacing--70);
            width: 100%;
            max-width: var(--wp--style--global--content-size);
            position: relative;
            z-index: 2;
        }
    .homehowbuy_bottom{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding-left: var(--wp--style--root--padding-left);
        padding-right: var(--wp--style--root--padding-right);
        padding-bottom: var(--wp--preset--spacing--70);
        position: relative;
    }
        .homehowbuy_bottom::before{
            content: "";
            height: calc(50% + (var(--wp--preset--spacing--70) / 2));
            width: 100%;
            background: var(--wp--preset--color--nv-blue-lighter);
            position: absolute;
            left: 0;
            bottom: 0;
            z-index: 1;
        }
        .homehowbuy_bottom-narrow{
            display: flex;
            flex-direction: column;
            gap: var(--wp--preset--spacing--70);
            width: 100%;
            max-width: var(--wp--style--global--content-size);
            position: relative;
            z-index: 2;
        }
            .homehowbuy_items{
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: var(--wp--preset--spacing--60);
                width: 100%;
                counter-reset: homehowbuycounter;
            }
                .homehowbuy_item{
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: var(--wp--preset--spacing--50);
                    width: calc((100% - (2 * var(--wp--preset--spacing--60))) / 3);
                    background: var(--wp--preset--color--nv-blue-dark);
                    color: var(--wp--preset--color--nv-white) !important;
                    padding: var(--wp--preset--spacing--70);
                    position: relative;
                    transition: all .2s ease-in-out;
                }
                .homehowbuy_item:hover{
                    background: var(--wp--preset--color--nv-blue-lighter);
                    color: var(--wp--preset--color--nv-blue-dark) !important;
                }
                    .homehowbuy_item-number{
                        color: var(--wp--preset--color--nv-blue-cyan);
                        font-size: var(--wp--preset--font-size--45);
                    }
                        .homehowbuy_item-number::before{
                            counter-increment: homehowbuycounter;
                            content: counter(homehowbuycounter) ". ";
                        }
                    .homehowbuy_item-title{
                        font-size: var(--wp--preset--font-size--24);
                        font-weight: 900;
                        text-transform: uppercase;
                    }
                    .homehowbuy_item-text{
                    }
                        .homehowbuy_item-text *:first-child{
                            margin-block-start: 0;
                        }
                        .homehowbuy_item-text *:last-child{
                            margin-block-end: 0;
                        }
                    .homehowbuy_item-button{
                        flex-shrink: 0;
                        display: flex;
                        flex-direction: row;
                        align-items: flex-end;
                        gap: 7px;
                        position: relative;
                    }
                        .homehowbuy_item-button-dot{
                            width: 6px;
                            height: 6px;
                            background: var(--wp--preset--color--nv-blue-cyan);
                            transition: width .2s ease-in-out;
                        }
                        .homehowbuy_item:hover .homehowbuy_item-button-dot {
                            width: 16px;
                        }
                        .homehowbuy_item-button-label{
                            line-height: 14px;
                            color: var(--wp--preset--color--nv-blue-cyan);
                            font-size: var(--wp--preset--font-size--20);
                            font-weight: 600;
                        }

@media (max-width: 1280px) {

    .homehowbuy_item{
        padding: var(--wp--preset--spacing--65);
    }

}

@media (max-width: 1024px) {

    .homehowbuy_item{
        width: 100%;
    }

}