@import url('https://fonts.googleapis.com/css?family=Roboto');

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.navigation {
    height: 5rem;
    background: linear-gradient(45deg, #0d141c, #0d141c);
}

.brand {
    /* position: absolute;
    padding-left: 20px;
    float: left;
    line-height: 55px;
    text-transform: uppercase;
    font-size: 1.4em; */

    position: absolute;
    padding-left: 1px;
    float: left;
    line-height: 79px;
    text-transform: uppercase;
    font-size: 1.4em;
    left: 8rem;
}
.logo{
    /* width: auto; */
    height: 5rem;
    filter: invert(1);
}

.brand a,
.brand a:visited {
    color: #ffffff;
    text-decoration: none;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
}

nav {
    /* display: flex; */
    float: right;
    position: absolute;
    right: 8rem;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    float: left;
    position: relative;
}

nav ul li a,
nav ul li a:visited {
    display: block;
    padding: 0 20px;
    line-height: 75px;
    color: #fff;
    background: #262626;
    text-decoration: none;
}

nav ul li a {
    background: transparent;
    color: #FFF;
}

nav ul li a:hover,
nav ul li a:visited:hover {
    /* background: #2c2d2d; */
    color: #ffffff;
}

.navbar-dropdown li a {
    background: #000000;
}

nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
    padding-left: 4px;
    content: ' \025BE';
}

nav ul li ul li {
    min-width: 190px;
}

nav ul li ul li a {
    padding: 15px;
    line-height: 20px;
}

.navbar-dropdown {
    position: absolute;
    right: 0;
    display: none;
    z-index: 1;
    /* background: #fff; */
    box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.25);
}

/* Mobile navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    height: 55px;
    width: 70px;
}
.slider{
    padding: 0px 10px 0px 16px;
    color: white;
}
#bars{

}
.bars-container{
    display: flex;
    justify-content: center;
}
.bar{
    width: 8px;
    background-color: red;
    /* padding: -9px 12px; */
    margin: 0.5px;
}
.newArr{
    margin: auto;
    font-size: 1rem;
    padding: 10px 10px;
    border-radius: 3px;
}
.newArr:hover{
    background-color: #2c2d2d;
}
.newArrCenter{
    display: flex;
}
.btn{
    text-decoration: none;
    color: white;
    background-color: transparent;
    border: none;
}
.addHover:hover{
    background-color: #2c2d2d;
}
@media screen and (max-width: 1000px){
    .brand{
        left: 3rem;
    }
    nav{
        right: 3rem;
    }
}
@media screen and (min-width: 1000px){
    .brand{
        left: 3rem;
    }
    nav{
        right: 3rem;
    }
}
@media only screen and (max-width: 800px){
    .ham{
        margin-top: 0.3rem;
        padding: 1.4rem 1rem;
        background: linear-gradient(45deg, #0d141c, #0d141c);
    }
    .addHover{
        background: linear-gradient(45deg, #0d141c, #0d141c);
    }
    .newArr{
        padding: 10px 1px;
    }
    nav ul li a,
    nav ul li a:visited{
    background: linear-gradient(45deg, #0d141c, #0d141c);
    }
    .navbar-dropdown li a {
        background: transparent;
    }
}


@media only screen and (max-width: 800px) {
    .nav-list{
        position: absolute;
        top: 5rem;
        /* right: 0px; */
        left: 3rem;
        width: 100vw;
        /* background: red; */
        background: linear-gradient(45deg, #0d141c, #0d141c);
    }
    .newArrCenter{
        display: block;
    }
    .nav-mobile {
        display: block;
    }

    nav {
        width: 100%;
        padding: 55px 0 15px;
    }

    nav ul {
        display: none;
    }

    nav ul li {
        float: none;
    }

    nav ul li a {
        padding: 15px;
        line-height: 20px;
        background: #262626;
    }

    nav ul li ul li a {
        padding-left: 30px;
    }

    .navbar-dropdown {
        position: static;
    }

    @media screen and (min-width:800px) {
        .nav-list {
            display: block !important;
        }
    }

    #navbar-toggle {
        position: absolute;
        left: 18px;
        top: 15px;
        margin-top: 0.8rem;
        cursor: pointer;
        padding: 10px 35px 16px 0px;
    }

    #navbar-toggle span,
    #navbar-toggle span:before,
    #navbar-toggle span:after {
        cursor: pointer;
        border-radius: 1px;
        height: 3px;
        width: 30px;
        background: #ffffff;
        position: absolute;
        display: block;
        content: '';
        transition: all 300ms ease-in-out;
    }

    #navbar-toggle span:before {
        top: -10px;
    }

    #navbar-toggle span:after {
        bottom: -10px;
    }

    #navbar-toggle.active span {
        background-color: transparent;
    }

    #navbar-toggle.active span:before,
    #navbar-toggle.active span:after {
        top: 0;
    }

    #navbar-toggle.active span:before {
        transform: rotate(45deg);
    }

    #navbar-toggle.active span:after {
        transform: rotate(-45deg);
    }
}

@media screen and (min-width:800px) {
    .nav-list {
        display: block !important;
    }
    .newArr{
        margin-top: 1.3rem;
    }
}