
html, body
{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #222;  
    overflow-x: hidden;
}

.header
{
    background: url('../img/1.jpg') center center no-repeat ;
    background-size: cover;
    opacity: 0.75;
    color: white;
    padding: 1rem 0 ;
    text-shadow: 2px 2px 15px #000;
}

.gotoTop
{
    position: fixed;
    bottom : 50px;
    right: 50px;
    width: 60px;
    height: 60px;
    display: none;
    text-align: center;
    line-height: 55px;
    border-radius: 25%;
    opacity: 0.7;
    color: white; 
    background-color: rgb(139, 129, 115);
    z-index: 2000;
}

.gotoTop:hover , .gotoTop:focus 
{
	background-color: rgb(248,249,250);
    color: #3a3f51;
    opacity: 1;
}

.nav-fixed
{
    position:fixed;
    left:0;
    top:0;
    z-index:9999;
    width:100%;
}

.navbar
{
    padding: 0.8rem ;
}

.navbar-nav li
{
    padding-right: 20px;
}

.nav-link
{
    font-size: 1.1em;
}

.navbar-icon-opacity
{
    opacity: 0.3;
}

#sidebar-wave
{
    display: none;
}

.marginL25px
{
    margin-left: 25px;
}

/*---Media Queries --*/
@media all and (max-width: 1200px)
{
    #sidebar-wave
    {
        display: block;
    }

    #sidebar
    {
        border: 1px red solid;
        position: absolute;
        top: 105.59px;
        right: -200px;
        bottom: 0;
        height: 100vh;

        width: 200px;
        transform: translateX(0);
        transition: transform 0.3s;
    }
  
    .sidebar
    {
        /* background-color: rgb(248, 249, 250); */
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
    }

    .nav-link
    {
        text-align: center;
        display: block;
        padding: 0.5rem 1rem;
        height: 66px;
        border-top: 1px solid rgba(255,255,255,0.05);
        border-bottom: 1px solid #2b333c;
        line-height: 66px;
        color: rgba(255,255,255,0.4);

        transform: translateX(200px);
        transition: color 0.3s;
    }

    .nav-link:focus, .nav-link:hover
    {
        text-decoration: none;
        background-color: rgb(255, 255, 255);
        /* color: white; */
    }

    .sidebar-wave
    {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        fill: rgb(248, 249, 250);
        z-index: -1;
    }

    .has-sidebar .sidebar
    {
        transform: translateX(-200px);
    }

    .gotoTop
    {
        position: fixed;
        bottom : 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        line-height: 35px;

    }

}