@charset "utf-8";

body {
    margin: 0;
    padding: 0;
	font-family: 'Noto Sans', sans-serif;

}

.responsive-bar
{
display: none;
}

nav {
width: 100%;
height: 100px;
position: fixed;
top: 0;
left: 0;
padding: 10px 100px;
box-sizing: border-box;
transition: .5s;
z-index: 999;

}

nav.white
{
    background: rgb(255, 255, 255);
    box-shadow: 0px 1px 1px rgba(128, 128, 128, 0.774);
}

nav .logo {
    float: left;
}

nav .logo img {
    height: 80px;
    transition: .5s;
}

nav ul {
float: right;
margin-top: 8px;
padding: 0;
display: flex;

}

nav ul li {
list-style: none;
}


nav ul li a {
    line-height: 80px;
    color: #000;
    padding: 5px 20px;
    text-decoration: none;
    text-transform: uppercase;
    transition: .5s;

    }


    nav ul li a.active,
    nav ul li a:hover {
        color: #fff;
        background: rgb(204, 39, 27);
    
    }


@media (max-width: 1066px)
{


    .responsive-bar
    {
        display: block;
        width: 100%;
        height: 60px;
        background: white;
        position: fixed;
        top: 0;
        left: 0;
        padding: 5px 20px;
        box-sizing: border-box;
        z-index: 1000;

    }

    .responsive-bar .logo img
        {
            float: left;
            height: 50px;
        }

        .responsive-bar .menu img
{
       float: right;
      padding-top: 12px;
      cursor: pointer;

        }

        nav,
        nav.white
{
    background: #262626;
    height: 60px;
    padding: 0;
}

nav .logo
{
display: none;

}

nav ul
{

    position: absolute;
    width: 100%;
    top: 40px;
    background: white;
    float: none;
    display: none;
    left: 0;

}


nav ul.active
{

    display: block;
}

nav ul li
{
width: 100%;

}

nav ul li a
{
display: block;
padding: 0;
width: 100%;
text-align: center;
color: rgb(0, 0, 0);
}

}


    .footer
{
    position: relative;
    top: 0;
    left: 0;
    height: 100px;
    width: 100%;
    background-color: #0a3141;   
}



.footer1 p {
    overflow: hidden;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;

}

