
    /* nav-bar */

    .nb_blog_navbar {
        display: flex;
        justify-content: space-between;
        margin-block: 10px;
        overflow: visible !important;
    }

    .nb_left_nav,
    .nb_right_nav {
        display: flex;
        align-items: center;
    }

    .nb_left_nav {
        gap: 1rem;
    }

    .nb_right_nav {
        width: 60%;
        justify-content: flex-end;
        gap: 3rem;
    }

    .mob_search_icon {
        display: none;
    }

    /* hamburger */
    .hamburger-lines {
        cursor: pointer;
        width: 29px;
        height: 18px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 6px;
        position: relative;
        top: -3px;
    }


    .hamburger-lines .line {
        height: 2px;
        width: 100%;
        border-radius: 10px;
        background: #FFFFFF;
        border: 2px solid #444444
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        width: 230px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 10;
        top: 55px;
    }

    .dropdown-content.active {
        display: block;

    }

    #mobileBackground {
        display: none;
    }


    .dropdown {
        padding: 12px 20px;
        transition: 0.2s ease-out;
    }


    .dropdown:hover .dropdown-content {
        display: block;
    }

    .nav_close_btn {
        position: absolute;
        top: 0px;
        right: 10px;
        cursor: pointer;
        font-size: 2.5rem;
        color: #FFFFFF;
    }

    .nav_link {

        overflow-y: scroll;
        max-height: 33rem;
        padding-bottom: 2rem;
    }

    .nav_link::-webkit-scrollbar {
        width: 5px;
        /* Width of the scrollbar */
    }

    .nav_link::-webkit-scrollbar-thumb {
        background: #cccccc;
        /* Color of the scrollbar thumb */
        border-radius: 5px;
        /* Rounded corners for the thumb */
    }

    .nav_link a {
        display: block;
        text-decoration: none;
        color: #000000;
        font-size: 14px;
        font-size: 14px;
        font-weight: 600;
        line-height: 17.07px;
        text-align: left;
    }

    .nav_link a:last-child {
        border-bottom: none;
    }

    .nav_signin_container {
        background-color: #fd3753;
    }

    .signin_link {
        color: #fff;
        display: flex;
        align-items: center;
        padding-block: 10px;
        margin-inline: 20px;
        gap: 5px;
        font-size: 13px;
        font-weight: 700;
        line-height: 18.29px;
        text-align: left;
        cursor: pointer;

    }

    .LoginCase {

        color: #fff;
        display: flex;
        align-items: center;
        padding-block: 10px;
        margin-inline: 20px;
        gap: 5px;
        font-size: 13px;
        font-weight: 700;
        line-height: 18.29px;
        text-align: left;
    }

    .nav_post_prop {
        display: none;
    }

    .nav_searchbar {
        display: none;
    }

    .search_trending_questions h2 {
        font-size: 16px;
        padding-block: 6px;
        margin-inline: 12px;
    }

    .search_trending_questions ul li {
        list-style-type: none;
        padding-block: 6px;
        border-bottom: 1px solid #ccc;
        margin-inline: 12px;
        font-size: 14px;
    }



    .sub_head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-block: 10px;
        cursor: pointer;
        color: #777;
        font-size: 14px;
        border-bottom: .5px solid #444;
        overflow: hidden;
        margin-inline: 20px;
    }

    .sub_head:last-child {
        border-bottom: none;
    }

    .sub_head_links {
        max-height: 0;
        overflow: hidden;
        margin-inline: 20px;
        transition: max-height 0.2s;
    }

    .sub_head_links a {
        padding-block: 10px;
    }


    .down-icon {
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid #333;
        display: inline-block;
        margin-inline: 10px;
        transition: transform 0.2s;
    }

    .down-icon.active {
        transform: rotate(-180deg);
    }


    .sub_head.nested {
        padding: 0;
        margin-inline: 0;
        background-color: #f9f9f9;
        border-bottom: none;
    }


    .sub_head_links.nested-links {
        margin-inline: 0;
    }

    .sub_head_links.nested-links a {
        font-size: 13px;
    }


    @media screen and (max-width: 660px) {
        .dropdown-content {
            display: block;
            width: 75%;
            height: 100vh;
            top: 0px;
            left: -100%;
            position: fixed;
            transition: left 0.3s ease-in-out;
            overflow-y: scroll;
        }

        .dropdown-content.active {
            left: 0;

        }

        #mobileBackground {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background-color: rgba(0, 0, 0, 0.5);
        }

        #mobileBackground.active {
            display: block;
        }

        .nav_signin_container {
            padding-block: 20px 10px;
            margin-bottom: 25px;

        }

        .nav_post_prop {
            display: block;
            background-color: #FFFFFF;
            width: fit-content;
            border-radius: 4px;
            margin-inline: 20px;
        }

        .nav_post_prop a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 700;
            line-height: 18.29px;
            text-align: center;
            color: #000000;
            padding: 5px;
            margin: 0;
        }

        .nav_searchbar {
            display: block;
            position: relative;
            bottom: -25px;
            left: 5%;
            width: 90%;
            background: white;
            /*         border: 1px solid #FD3753; */
            border-radius: 17px;
        }

        .nav_searchbar input {
            width: 100%;
            height: 33px;
            border-radius: 57px;
            padding-inline: 10px;
            border: 1px solid #FD3753;
            font-size: 14px;
            font-weight: 400;
            line-height: 16.94px;
            text-align: left;
            color: #444444;
            outline: none;
        }

        .nav_searchbar svg {
            border: none;
            background: transparent;
            position: absolute;
            right: 5%;
            top: 5px;
            cursor: pointer;
        }

        .search_trending_questions h2 {
            font-size: 14px;
        }

        .search_trending_questions li {
            font-size: 12px;
            list-style-type: none;
        }

    }

    .nb_blog_property_add_button {
        background-color: #4B9C76;
        padding: 4px 16px 4px 16px;
        border-radius: 4px;
        cursor: pointer;
    }

    .nb_blog_property_add_button a {
        font-weight: 700;
        color: #F9F9F9;
    }

    /* search bar */
    .nb_blog_searchbar {
        position: relative;
        width: 47%;
    }

    .nb_blog_searchbar input {
        width: 100%;
        height: 33px;
        border-radius: 57px;
        padding-inline: 10px;
        border: none;
        background: #FFFFFF;
        box-shadow: 0px 0px 4px 0px #0000001A;
        font-size: 14px;
        font-weight: 400;
        line-height: 16.94px;
        text-align: left;
        color: #444444;
        outline: none;
    }

    .resultBox {
        position: absolute;
        background: white;
        width: 100%;
        top: 0px;
        padding-top: 34px;
        z-index: -2;
        box-shadow: 0px 0px 4px 0px #0000001A;
        border-radius: 15px;
    }

    .suggestion-item {
        padding-block: 6px;
        border-bottom: 1px solid #ccc;
        margin-inline: 12px;
    }

    a.suggestions-items-link {
        font-size: 14px;
    }

    .nb_blog_searchbar svg {
        border: none;
        background: transparent;
        position: absolute;
        right: 10px;
        top: 5px;
        cursor: pointer;


    }

    @media screen and (max-width: 991px) {
        /*             .nb_blog_logo img {
                width: 185px;
                height: auto;
            } */

        .nb_right_nav {
            gap: 1rem;
        }

        .nb_blog_property_add_button {
            padding: 4px 6px 4px 6px;
        }

        .nb_blog_property_add_button a {
            font-weight: 600;
            font-size: 14px;
        }
    }


    @media screen and (max-width: 660px) {
        nav {
            box-shadow: 0px 4px 7.3px 0px #00000026;
        }

        .nb_left_nav {
            gap: 2rem;
        }

        .hamburger-lines {
            width: 27px;
            height: 19px;
        }

        .hamburger-lines .line {
            height: 3px;
            width: 100%;
            background: #444444;
            border: none;
        }

        /*             .nb_blog_logo img {
                width: 158px;
            } */

        .nb_right_nav {
            display: none;
        }

        .mob_search_icon {
            display: block;
            margin-right: 10px;
        }

        .resultBox {
            position: relative;
            z-index: 1;
            padding-top: 0;
        }

    }

    /* nav bar ends */
