#header{
    position: sticky;
    top: 0;
    z-index: 100000;
    background: white;
}

.header{
    height: 7vh;
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
    align-items: center;
    margin-bottom: 1vh;
}

.titleHeader{
    font-weight: bold;
    font-size: 30px;
}

.logo{
    text-align: end;
}

.logo>img{
    width:  40%;
}

.menu{
    display: flex;
    gap: 30px;
}

.logout{
    width: 100%;
    text-align: center;
}

.itemMenu{
    cursor: pointer;
    position: relative;
}

.itemMenu:hover::after{
    width: 100%;
}

.itemMenu::after{
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    background: var(--mainBlue);
    bottom: 0;
    left: 0;
    transition: 0.5s;
}

.selectedItemMenu{
    position: relative;
    color: var(--mainBlue);
}

.selectedItemMenu::after{
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    background: var(--mainBlue);
    bottom: 0;
    left: 0;
    transition: 0;
}

.logout>span{
    color: var(--mainColor);
    cursor: pointer;
    opacity: 0.7;
    transition: 0.4s;
}

.logout>span:hover{
    opacity: 1;
}