.navbar-rr
{
    background-color: #1e325d;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    /*padding: 5px 0px 5px 0;*/
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 2;
}

.container-rr
{
    width: 800px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand-rr
{
    height: 60px;
}

.navbar-links-rr
{
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;  
    height: 80px;  
}

.navbar-links-rr li
{
    display: flex; 
    justify-content: center;
    align-items: center;
}

.navbar-links-rr li a
{
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 20px;
    height: 100%;
    align-items: center;
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-links-rr li a:hover
{
    color: orange;
    border-bottom: 2px solid orange;
}

.toggle-rr
{
    position: absolute;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 30px;
    right: 0;
}

.toggle-rr .bar
{
    height: 4px;
    width: 100%;
    background-color: white;
    border-radius: 5px;
}

@media (max-width: 800px)
{
    .navbar-rr
    {
        width: 100%;  
        padding: 5px 0 5px 0;  
    }

    /*.container-rr
    {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        position: relative;
    }*/

    .container-rr
{
    width: 800px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .navbar-brand-rr
    {
        width: 100px;
        margin-left: 20px;
    }

    .toggle-rr
    {
        position: absolute;
        display: flex;
        top: 20px;
        right: 20px;
    }

    .navbar-links-rr
    {
        
        position: absolute;
        top: 100%;
        background-color: #1e325d;
        flex-direction: column;
        justify-content: space-evenly;
        height: 400px;
        width: 100%;
        left: -100%;
        transition: 0.2s ease-in-out;
    }

    .navbar-links-rr li
    {
        text-align: center;
    }

    /*.navbar-links-rr.active
    {
        display: flex;
    }*/
}