/* Layout with line */
.nb-layout-with-line{
    position: relative;
    padding-bottom: 60px;
    margin-bottom: 10px;
    scroll-margin-top: 100px;


    .layout-title{
        text-align: center;
        font-size: 64px;
        line-height: 70px;
        margin-bottom: 80px;
        position: relative;

        &:before{
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 12px;
            height: 12px;
            background: var(--nb-color-black);
            border-radius: 50%;
        }
    }

    .row{
        justify-content: center;

        .layout{
            display: block !important;
        }
    }
    .row.g-0{
        --bs-gutter-x: 2px;
        --bs-gutter-y: 20px;
    }
}
.nb-layout-with-line:before{
    content: '';
    position: absolute;
    top: calc(70px + 20px);
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: calc(100% - 90px);
    background: var(--nb-color-black);
}

.nb-layout-with-line:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--nb-color-black);
    border-radius: 50%;
}

@media screen and (max-width: 768px) {
    .nb-layout-with-line {

        .layout-title {
            font-size: 40px;
        }
    }
}