/* Reset Code */
        body {
            padding: 0;
            margin: 0;
            background: #FFF;
            font-family: 'Nunito Sans', sans-serif;
        }
     
        body a,
        body button {
            transition: 0.5s all;
            -webkit-transition: 0.5s all;
            -moz-transition: 0.5s all;
            -o-transition: 0.5s all;
            -ms-transition: 0.5s all;
            text-decoration: none;
        }
        
        body a:hover,
        body button:hover {
            text-decoration: none;
            transition: 0.5s all;
            -webkit-transition: 0.5s all;
            -moz-transition: 0.5s all;
            -o-transition: 0.5s all;
            -ms-transition: 0.5s all;
        }

        html {
            scroll-behavior: smooth;
        }
        
        body a:focus,
        a:hover {
            text-decoration: none;
        }

        input[type="button"],
        input[type="submit"] {
            transition: 0.5s all;
            -webkit-transition: 0.5s all;
            -moz-transition: 0.5s all;
            -o-transition: 0.5s all;
            -ms-transition: 0.5s all;
        }

        input[type="button"]:hover,
        input[type="submit"]:hover {
            transition: 0.5s all;
            -webkit-transition: 0.5s all;
            -moz-transition: 0.5s all;
            -o-transition: 0.5s all;
            -ms-transition: 0.5s all;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin: 0;
            padding: 0;
            font-family: 'Roboto Condensed', sans-serif;
        }

        p {
            margin: 0;
            padding: 0;
            font-size: 15px;
            letter-spacing: 1px;
            line-height: 1.9;
            color: #999;
            font-family: 'Nunito Sans', sans-serif;
        }

        ul,
        ol {
            margin: 0;
            padding: 0;
        }

        a:focus,
        a:hover {
            text-decoration: none;
            outline: none
        }

        /* //Reset Code */
        /* colors code */
        .text-bl {
            color: #343a40;
        }

        .text-wh {
            color: #fff;
        }

        .text-li {
            color: #f8f9fa;
        }

        .bg-li {
            background: #f8f9fa;
        }

        .let {
            letter-spacing: 1px;
        }

        /* //colors code */

        
     

        /* header */
        .main-top {
            position: relative;
        }
        header {
            position: absolute;
            width: 100%;
            z-index: 9;
        }

        /* navigation */
        /* CSS Document */
        .toggle-2,
        .toggle,
        [id^=drop] {
            display: none;
        }

        /* Giving a background-color to the nav container. */
        nav {
            margin: 0;
            padding: 0;
        }


        #logo a {
            float: left;
            display: initial;
            font-weight: 700;
            font-size: 40px;
            color: #fff;
            text-shadow: 2px 5px 3px rgba(0, 0, 0, 0.06);
            padding: 0;
        }


        /* Since we'll have the "ul li" "float:left"
        * we need to add a clear after the container. */

        nav:after {
            content: "";
            display: table;
            clear: both;
        }

        /* Removing padding, margin and "list-style" from the "ul",
        * and adding "position:reltive" */
        nav ul {
            float: right;
            padding: 0;
            margin: 0;
            list-style: none;
            position: relative;
        }

        /* Positioning the navigation items inline */
        nav ul li {
            margin: 0px;
            display: inline-block;
            float: left;
        }

        /* Styling the links */
        nav a {
            color: #fff;
            text-transform: capitalize;
            font-weight: 400;
            font-size: 15px;
            padding: 7px 12px;
            border-radius: 4px;
            letter-spacing: 1px;
            display: inline-block;
            transition: 0.5s all;
            -webkit-transition: 0.5s all;
            -moz-transition: 0.5s all;
            -o-transition: 0.5s all;
            -ms-transition: 0.5s all;
        }


        nav ul li ul li:hover {
            color: #000;
            background: #f8f9fa;
            transition: 0.5s all;
            -webkit-transition: 0.5s all;
            -moz-transition: 0.5s all;
            -o-transition: 0.5s all;
            -ms-transition: 0.5s all;
        }

        /* Background color change on Hover */

        .menu li a.active,
        .menu li a:hover {
            color: #333;
            background: #fff;
            transition: 0.5s all;
            -webkit-transition: 0.5s all;
            -moz-transition: 0.5s all;
            -o-transition: 0.5s all;
            -ms-transition: 0.5s all;
        }

        /* Hide Dropdowns by Default
        * and giving it a position of absolute */
        nav ul ul {
            display: none;
            position: absolute;
            top: 36px;
            background: #333;
            padding: 10px;
            border-radius: 4px;
            z-index: 9;
            /* has to be the same number as the "line-height" of "nav a" */
        }

        /* Display Dropdowns on Hover */
        nav ul li:hover>ul {
            display: inherit;
        }

        /* Fisrt Tier Dropdown */
        nav ul ul li {
            width: 170px;
            float: none;
            display: list-item;
            position: relative;
            margin-bottom: 10px;
            border-radius: 4px;
            transition: 0.5s all;
            -webkit-transition: 0.5s all;
            -moz-transition: 0.5s all;
            -o-transition: 0.5s all;
            -ms-transition: 0.5s all;
        }

        nav ul ul li:nth-child(4) {
            margin-bottom: 5px;
        }

        nav ul ul li a {
            color: #fff;
            padding: 5px 10px;
            display: block;
            font-size: 14px;
        }

        /* Second, Third and more Tiers	
        * We move the 2nd and 3rd etc tier dropdowns to the left
        * by the amount of the width of the first tier.
        */
        nav ul ul ul li {
            position: relative;
            top: -60px;
            /* has to be the same number as the "width" of "nav ul ul li" */
            left: 170px;
        }


        /* Change ' +' in order to change the Dropdown symbol */
        li>a:only-child:after {
            content: '';
        }

        a.reqe-button {
            border: 2px solid rgba(255, 255, 255, 0.35);
            border-radius: 4px;
        }

        /* Media Queries
        --------------------------------------------- */
        @media(max-width: 800px) {
            nav a {
                font-size: 14px;
            }

            #logo a {
                font-size: 38px;
            }
        }

        @media (max-width: 768px) {
            nav a {
                padding: 6px 9px;
            }
        }

        @media all and (max-width : 736px) {

            #logo {
                display: block;
                padding: 0;
                width: 100%;
                text-align: center;
                float: none;
            }

            nav {
                margin: 0;
            }

            /* Hide the navigation menu by default */
            /* Also hide the  */
            .toggle+a,
            .menu {
                display: none;
            }

            /* Stylinf the toggle lable */
            .toggle {
                display: block;
                padding: 8px 14px;
                font-size: 15px;
                text-decoration: none;
                border: none;
                float: right;
                background-color: #fff;
                color: #000;
                border-radius: 4px;
                letter-spacing: 1px;
                cursor: pointer;
                transition: 0.5s all;
                -webkit-transition: 0.5s all;
                -moz-transition: 0.5s all;
                -o-transition: 0.5s all;
                -ms-transition: 0.5s all;
            }

            .menu .toggle {
                float: none;
                text-align: center;
                margin: auto;
                max-width: 105px;
                padding: 5px;
                font-weight: normal;
                font-size: 15px;
                letter-spacing: 1px;
            }

            .toggle:hover {
                color: #fc4242;
                transition: 0.5s all;
                -webkit-transition: 0.5s all;
                -moz-transition: 0.5s all;
                -o-transition: 0.5s all;
                -ms-transition: 0.5s all;
            }

            /* Display Dropdown when clicked on Parent Lable */
            [id^=drop]:checked+ul {
                display: block;
                background:rgba(85, 80, 80, 0.575);
                padding: 15px 0;
                text-align: center;
                width: 100%;
            }

            /* Change menu item's width to 100% */
            nav ul li {
                display: block;
                width: 100%;
                padding: 5px 0;
            }

            nav ul ul .toggle,
            nav ul ul a {
                padding: 0 40px;
            }

            nav ul ul ul a {
                padding: 0 80px;
            }

            nav a:hover,
            nav ul ul ul a {
                background-color: transparent;
            }

            nav ul li ul li .toggle,
            nav ul ul a,
            nav ul ul ul a {
                padding: 14px 20px;
                color: #FFF;
                font-size: 17px;
            }

            /* 
            nav ul li ul li .toggle,
            nav ul ul a {
                background-color: #212121;
            } */

            /* Hide Dropdowns by Default */
            nav ul ul {
                float: none;
                position: static;
                color: #fff;
                /* has to be the same number as the "line-height" of "nav a" */
            }

            /* Hide menus on hover */
            nav ul ul li:hover>ul,
            nav ul li:hover>ul {
                display: none;
            }

            /* Fisrt Tier Dropdown */
            nav ul ul li {
                display: block;
                width: 100%;
                padding: 0;
            }

            nav ul ul ul li {
                position: static;
                /* has to be the same number as the "width" of "nav ul ul li" */

            }

            nav a {
                color: #000;
                font-size: 15px;
                padding: 0;
            }

            nav ul ul li a {
                color: #000;
            }

            nav ul ul li a {
                font-size: 15px;
            }

            .menu li a.active,
            .menu li a:hover {
                color: #fc4242;
                background: transparent;
            }
        }

        @media all and (max-width : 375px) {

            nav a,
            .menu .toggle {
                font-size: 14px;
            }

            .toggle {
                padding: 7px 12px;
                font-size: 14px;
            }
        }



        /* inner pages */
        .banner_w3lspvt-2 {
            background: url(https://raw.githubusercontent.com/yujinhongMM/yujinhong/master/0337de5304a7601cc56c8ecdc6488f2f.jpg) no-repeat center;
            background-size: cover;
            -webkit-background-size: cover;
            -moz-background-size: cover;
            -o-background-size: cover;
            -ms-background-size: cover;
            min-height: 300px;
        }

        /* page details */
        .breadcrumb li a {
            color: #fff;
            background: #313131;
            padding: 8px 18px;
            display: inline-block;
            border-radius: 25px;
            font-size: 13px;
            letter-spacing: 1px;
        }

        .breadcrumb-item.active {
            padding-top: .5em;
            font-size: 15px;
            letter-spacing: 1px;
        }

        /* //page details */






.menu a{
color:#fff;
}

#header,#navigator{
display:none;
}