/* NAVBAR START*/

.navbar{
    position: sticky;
    left: 0;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 20px;
    background-color: var(--bg-color);
    border-bottom: 2px solid;
    border-color: var(--primary-color);
}

.left-navbar{
    display: flex;
    height: 100%;
    align-items: center;
}

img.logo {
    height: 50px;
    margin-right: 30px;
}

.itemBar{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    color: var(--text-color);
    font-family: Calibri;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.searchBar, .searchBar-aside {  
    width: 400px;
    display: flex;
    padding: 12px 18px;
    gap: 12px;
    border-radius: 12px;
    background: rgba(3, 39, 83, 0.20);
}

input#navSearchInput1, input#navSearchInput2 {
    width: 100%;
    border: none;
    outline: none;
    background: none;
    color: inherit;
}

img.MenuIcon {
    position: absolute;
    top: 25px;
    right: 25px;
    height: 2rem;
    display: none;
}

aside {
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    flex-direction: column;
    gap: 20px;
    width: 80%;
    padding: 1.4rem;
    background-color: var(--primary-color);
    transform: translateX(100%);
    transition: transform 500ms ease-in-out;
    color: #fff;
    display: none;
}

.searchBar-aside {
    width: calc(100% - 40px);
    background: rgba(255, 255, 255, 0.20);
}

aside.aside-open {
    transform: translateX(0);
    transition: transform 500ms ease-in-out;
}

@media screen and (max-width: 976px){
    img.MenuIcon {
        display: block;
    }

    .itemBar{
        display: none;
    }

    .NavLink { color: #fff; }

    .searchBar{
        display: none;
    }

    aside {
        display: flex;
    }
}

/* NAVBAR END*/