﻿



* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, Arial, Helvetica, sans-serif;
    text-transform: capitalize;
    text-decoration: none;
}

body {
    padding-top: 50px;
    padding-bottom: 10px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /*background: #ffffff;*/
    background: linear-gradient(to right,#197696,#ffffff);
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    padding: 0px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

    .header .logo {
        font-weight: bolder;
        font-size: 20px;
        color: #333;
    }

    .header .navbar ul {
        list-style: none;
    }
        .header .navbar ul li {
            position: relative;
            float: left;
        }

            .header .navbar ul li a {
                font-size: 15px;
                padding: 10px;
                color: #333;
                display: block;
            }

                .header .navbar ul li a:hover {
                    background-color: #333;
                    color: #fff;
                }

            .header .navbar ul li ul {
                position: absolute;
                left: 0;
                width: 250px;
                background: #fff;
                display: none;
            }

                .header .navbar ul li ul li {
                    width: 250px;
                    border-top: 1px solid rgba(0,0,0,.1);
                }

                    .header .navbar ul li ul li ul {
                        left: 200px;
                        top: 0;
                    }

            .header .navbar ul li:focus-within > ul,
            .header .navbar ul li:hover > ul {
                display: initial;
            }

#menu-bar {
    display: none;
}

.header label {
    font-size: 20px;
    color: #333;
    cursor: pointer;
    display: none;
}

.IndexDiv {
    position: fixed;
    background: linear-gradient(to right,#ffffff,#948282);
    top: 0;
    left: 0;
    min-height: 100%;
    min-width: 100%;
}


@media(max-width:991px) {
    .header {
        padding: 10px;
    }

        .header label {
            display: initial;
        }

        .header .navbar {
            position: absolute;
            top: 50px;
            left: 0;
            right: 0;
            background: #fff;
            border-top: 1px solid rgba(0,0,0,.1);
            display: none;
        }

            .header .navbar ul li {
                width: 100%;
                background: linear-gradient(to right,#197696,#ffffff);
            }

                .header .navbar ul li ul {
                    position: relative;
                    width: 100%;
                }

                    .header .navbar ul li ul li {
                        background: #eee;
                        background: linear-gradient(to right,#ffffff,#197696);
                    }

                        .header .navbar ul li ul li ul {
                            width: 100%;
                            left: 0;
                        }

    #menu-bar:checked ~ .navbar {
        display: initial;
    }
    .HidenMenu{
        display:none;
    }
}


/* Move down content because we have a fixed navbar that is 50px tall */
/*body {
    padding-top: 50px;
    padding-bottom: 20px;
}*/

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
/*.body-content {
    padding-left: 15px;
    padding-right: 15px;
}*/

/* Set widths on the form inputs since otherwise they're 100% wide */
/*input,
select,
textarea {
    max-width: 280px;
}*/


/* Responsive: Portrait tablets and up */
/*@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding: 0;
    }
}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: #777;
    border-color: #fff
}


