.toppanel{
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
}

.toppanel2{
    justify-content: space-between;
    cursor: pointer;
}
.small-logo img{
    height: 100px;
}

.phoneContact , .phoneContact > div{
    display: flex;
    align-items: center;
}

.phoneContact a{
    display: flex;
    align-items: center;
    font-size: 16px;
    white-space: nowrap;
    font-weight: 700;
    text-decoration: none;
}

.phoneContact p {
    padding: 0 10px;
}

nav{
    display: flex;
    position: relative;
    left: 0;
}

nav ul li{
    list-style: none;
    display: inline-block;
    padding: 12px 16px;
    position: relative;
}

nav ul li a{
    color: rgb(0, 100, 185);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

nav ul li::after{
    content: '';
    width: 0%;
    height: 4px;
    border-radius: 2px;
    background: rgb(0, 100, 185);
    display: block;
    margin: auto;
    margin-top: 2px;
    transition: 0.5s;
}

nav ul li:hover::after{
    width: 100%;
}


#burger-bar {
    display:  none;
}

@media(max-width:800px){
    .header {
        position: absolute;
        right: 0;
        width: 100%;
        z-index: 2;
    }

    .toppanel{
        justify-content: space-between;
        padding: 0;
        padding-left: 1rem;
        overflow-x: hidden;
    }

    #burger-bar {
        display:  block;
        padding-top: 5px;
        margin-right: 5vw;
    }

   

    .phoneContact{
        align-items: flex-start;
        padding-top: 10px;
    }
    
    .phoneContact .material-symbols-rounded{
        font-size: 32px !important; 
    }

    nav {
        right: 0;
        transform: translateX(36vw); 
        transition: 0.5s;  
    }

    nav:hover{
        transform: translateX(0vw); 
    }

    nav ul{
        background-color: rgb(198 225 245);
        display: flex;
        flex-direction: column;
        border-radius: 0 0 0 6px;
        border: rgb(0, 100, 185) 2px solid;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
    nav ul li a{
        font-size: 5vw;
        font-weight: 700;
    }    

}

/*NAV END*/