/* .................................................................  */
      /* Start Navigation Baar CSS  */

      header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: #ffffff;
            box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
            padding: 0px 0px;
            display: flex;
            text-align: center;
            justify-content: space-between;
            z-index: 100;
        }

        header .openmenubaar {
            display: flex;
            justify-content: right;
            align-items: center;
            padding: 0 10px;
            color: #000;
        }

        header .openmenubaar .img {
            width: 35px;
            cursor: pointer;
            color: #000;
            
        }

        .Logo {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .Logo .imglogo {
            width: 100px;
        }

        header .custom-navbar ul {
            list-style: none;
        }

        header .custom-navbar ul li {
            position: relative;
            float: left;
        }

        header .custom-navbar ul li a {
            padding: 20px;
            font-size: 20px;
            color: #333;
            display: block;
            text-align: left;
            text-decoration: none;
        }

        header .custom-navbar ul li a:hover {
            background: #333;
            color: #fff;
        }

        header .custom-navbar ul li ul {
            position: absolute;
            left: 0;
            width: 200px;
            background: #fff;
            display: none;
        }

        header .custom-navbar ul li ul li {
            width: 100%;
            border-top: 1px solid #35353593;
        }

        header .custom-navbar ul li ul li ul {
            left: -200px;
            top: 0;
        }

        header .custom-navbar ul li:focus-within > ul,
        header .custom-navbar ul li:hover > ul {
            display: initial;
        }
        .custom-navbar ul ul.open {
    display: block !important;
}


        @media (max-width: 768px) {
            header {
                padding: 16px;
                background-color: #ffffff;
                z-index: 100;
            }

            header .custom-navbar {
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: #ffffff;
                border-top: 1px solid #00000093;
                z-index: 99;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-80px);
                transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease;
                max-height: 90vh;
                overflow-y: auto;
            }

            header .custom-navbar ul {
                width: 100%;
                padding: 0px 0;
            }

            header .custom-navbar ul li {
                width: 100%;
            }

            header .custom-navbar ul li ul {
                position: relative;
                width: 100%;
            }

            header .custom-navbar ul li ul li {
                background: #eee;
            }

            header .custom-navbar ul li ul li ul {
                width: 100%;
                left: 0px;
            }

            /* Show class for toggle */
            header .custom-navbar.show {
                opacity: 1 !important;
                visibility: visible !important;
                transform: translateY(0px) !important;
                z-index: 99;
            }
            .custom-navbar ul ul.open {
    display: block !important;
}

        }

        @media (min-width: 769px) {
            .openmenubaar .img{
                display: none;
            }
            header {
                padding: 0px 0px;
                background-color: #fff;
            }

            .Logo .imglogo {
                width: 130px;
                margin-left: 30px;
            }

            header .custom-navbar ul {
                width: 100%;
                padding: 0px 0;
                scroll-behavior: smooth;
            }

            header .custom-navbar ul li ul {
                scroll-behavior: smooth;
            }

            header .custom-navbar ul li ul li ul {
                max-height: 500px;
                overflow-y: auto;
                scroll-behavior: smooth;
            }
        }








      /* End Navigation Baar CSS */


    /* ......................         */