.nav{
    background: linear-gradient(to bottom, rgba(27,27,27,0.8) 0%,rgba(27,27,27,0.5) 40%, rgba(27,27,27,0) 100%);
    background-color: rgba(27,27,27,0);
    width: 100%;
    height: 10vh;
    z-index: 3;
    transition: all 0.3s;
    position: fixed;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
}

.headerLogo{
    height: 45%;
}

.navMenu{
    color: white;
    font-size: 1.2rem;
    width: 40%;
    height: 50%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.mobileMenuBtn{
    display: none;
}

.navMenu span{
    cursor: pointer;
    height:  4vh;
    transition: color 0.2s;
    position: relative;
    display: flex;
    align-items: center;
}

.navMenu span:before{
    content: '';
    background-color: #759CBE;
    width: 0%;
    height: 2.5px;
    border-radius: 10px;
    transition: width 0.2s;
    position: absolute;
    bottom: 0.3vh;
    margin: auto;
    left: 0;
}

.navMenu span:hover{
    color: #72A5D3;
}

.navMenu span:hover::before{
    width: 100%;
}
