// Landing Page Demo Section Styling Here
.home-page-demo-section {
    position: relative;
    z-index: 0;
    margin-top: 120px;

    .demo-title {
        margin-bottom: 55px;

        .landing-shape {
            position: absolute;
            z-index: -1;
            left: 180px;
            top: 0px;
            width: 74px;

            .path {
                stroke-dasharray: 1000;
                stroke-dashoffset: 1000;
                animation: dash 4s ease-out forwards;
            }
        }

        .title {
            font-size: 24px;
            line-height: 30px;
            font-weight: 700;
            font-family: var(--heading-font);
            color: #232323;
        }
    }
}

.inner-pages-section {
    position: relative;
    z-index: 0;
    margin-top: 120px;

    .landing-shape-02 {
        position: absolute;
        z-index: -1;
        left: -126px;
    }

    &.inner-bg {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding: 120px 0px 200px 70px;
        position: relative;
        z-index: 0;

        &::before {
            content: '';
            position: absolute;
            z-index: -1;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 1, 30, 0.8);
        }
    }

    .demo-title {
        margin-bottom: 55px;

        .landing-shape {
            position: absolute;
            z-index: -1;
            left: 269px;
            top: 2px;
            width: 65px;

            .path {
                stroke-dasharray: 1000;
                stroke-dashoffset: 1000;
                animation: dash 4s ease-out forwards;
            }
        }

        .title {
            font-size: 24px;
            line-height: 30px;
            font-weight: 700;
            font-family: var(--heading-font);
            color: #fff;
        }
    }
}