.navBar {
    position: absolute;
    background-color: #235490;

    top: 0%;
    left: 0%;


    width: 100%;
    height: 100px;

    display: flex;
}

.brandLogoNameContainer {
    position: relative;

    background-color: #235490;

    width: 40%;
    height: 100%;

    float: left;

    display: flex;
}

.logo{
    position: relative;

    font-size: 50px;

    width: 50px;
    height: 50px;


    margin: 25px 50px 25px 25px;

    text-align: center;

    color: whitesmoke;
    font-family: Arial, Helvetica, sans-serif;

    user-select: none;
}

.brandName{
    position: relative;

    color: whitesmoke;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;

    margin-top: 5.5px;
    margin-left: 10px;

    height: 40px;

    user-select: none;

    width: 180px;
}

a{
    text-decoration: none;
    color:whitesmoke;
}

.navBarButtonsContainer {
    position: relative;

    background-color: #235490;

    width: 60%;
    height: 100%;

    float: right;
    
    text-align: center;

    display: flex;
    justify-content: space-between;
}

.navBarButton{
    position: relative;
    width: 20%;
    height: 100%;

    background-color: #235490;

    border: none;

    color: whitesmoke;
    user-select: none;

    font-size: 20px;
}

.navBarButton:hover{
    transition: ease-in;
    transition: 0.5s;
    cursor: pointer;
    background-color: #4b5354;
}

.bodyContent {
    position: absolute;
    background-color: #262626;

    top: 100px;
    left: 0%;

    width: 100%;
    height: calc(100% - 100px);
}

@media screen and (max-width:  850px) {
    .dropDownBarContainer{
        display: block;

        width: 100px;
        height: 100%;

        float: right;
    }

    .dropDownBar1{
        background-color: #262626;

        position: relative;

        width: 100%;
        height: 14px;

        top: 14px;
    }

    .dropDownBar2{
        background-color: #262626;

        position: relative;

        width: 100%;
        height: 14px;

        top: 28px;
    }

    .dropDownBar3{
        background-color: #262626;

        position: relative;

        width: 100%;
        height: 14px;

        top: 42px;
    }

    .navBarButtonsContainer{
        position: absolute;
        display: inline-block;

        height: 100%;
        width: 100px;
    
        right: 14px;
        
        text-align: center;
    }
    .navBarButton{
        display: none;
        position: relative;
        left: 0px;
        background-color: #235490   ;
        min-width: 114px;
        padding: 12px 16px;
        z-index: 1;
    }

    .navBarButtonsContainer:hover .navBarButton{
        display: block;
    }

}

@media screen and (max-width: 500px) {
    .brandName{
       display: none;
    }

    
}


/* colour pallate 
#262626
#4b5354
#235490
#9ecfe7
#e9edef

*/