.br-nav {

    background-color: white;
    position: fixed;
    top: 0;
    width: 100%;
    clear: both;
    z-index: 100;
    height: 57px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}

/* The Modal (background) */
.modal {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: transparent; /* Black w/ opacity */
    transition: 0.5s;
}


.br-nav-icon {
    cursor: pointer;
    padding: 4px 7px 4px 7px;
    margin-top: 10px;
    float: left;
    margin-right: 13px;
    margin-left: 13px;
    margin-bottom: 10px;
    border-radius: 3px;
    background-color: transparent;
    border: 0;
    font-size: 14px;
    font-family: Samim;
    border: 1px solid transparent;
}

.br-nav-icon span {
    vertical-align: middle;
    color: #4a4a4a;
}

.br-nav-icon:hover {
    /* border: 1px solid #e0e0e0;*/
    background-color: rgba(236, 236, 236, 0.9);
    /*  background-color: rgba(238, 238, 238, 0.9); */
}

.br-nav a {
    text-decoration: none;
    text-align: center;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    cursor: pointer;
    color: #4a4a4a;
}


/******************* Start MainMenu Menu *******************/
@media screen and (min-width: 821px)  /* Main Menu For Desktop */ {
    .modal {
        display: none;
    }

    .br-nav-arm {
        padding-top: 8px;
        padding-bottom: 3px;
        padding-right: 15px;
        float: right;
        margin-left: 20px;
    }

    .br-nav-arm:hover {
        transition: 3s;
        filter: hue-rotate(170deg);
    }

    #nav-mobile {
        display: none;
    }


    .br-nav-items {
        display: block;
        float: right;
        margin-top: 14px;
    }

    .br-nav-items a {

        padding: 5px 13px;
        float: right;
        border-bottom: transparent solid 3px;
        padding-bottom: 10px;
    }

    .br-nav-items a:hover {
        padding-bottom: 17px;
        transition: 0.3s;
        border-bottom: #ef5661 solid 3px;

    }
}

@media screen and (max-width: 820px) and (min-width: 0px) /* Main Menu For Mobile */ {
    .br-user-text {
        display: none;
    }

    #nav-mobile {
        transition: 0.5s;
        float: right;
        display: block;
    }

    .br-nav-arm {
        padding-top: 8px;
        padding-bottom: 3px;
        display: block;
        width: 76px;
        margin: 0 auto;

    }

    .br-nav-arm:hover {
        transition: 4s;
        filter: hue-rotate(170deg);
    }

    .br-nav-items {
        position: fixed;
        background-color: rgb(107, 107, 107);

        top: 57px;
        right: -200px;
        width: 200px;
        height: 100%; /* Full height */

        z-index: 2;
        padding: 20px 0;
        transition: 0.5s;

    }

    .br-nav-items a {
        display: inline-block;

        padding: 12px 16px;
        text-decoration: none;
        width: 100%;
        text-align: right;
        color: white;
        transition: 0.1s;


    }

    .br-nav-items a:hover {
        color: #4a4a4a;
        background-color: #c2c2c2;
    }

}


/******************* End MainMenu Menu *******************/
    
