.head{
    position: fixed;
    top: 0;
    z-index: 5;
    width: 100%;
    transition: all 0.3s ease;
}

.head.sticky{
    background: #6c6b79;
    filter: none;
    z-index: 20;
}

.navlink{
    margin: 4.53vh 1vw;
    transition: 0.3s;
    font-weight: bold;
}

@media screen and (min-width: 820px) {
    .navlink:hover{
        font-size: 1vw;
    }
}

/* .navlink:hover{
    text-shadow:0 0 10px #f88029,
    0 0 20px #f88029,
    0 0 40px #f88029,
    0 0 80px #f88029,
    0 0 120px #f88029,
    0 0 160px #f88029;
}

.navlink:hover.sticky{
    text-shadow:0 0 10px #f88029,
    0 0 20px #f88029,
    0 0 40px #f88029,
    0 0 80px #f88029,
    0 0 120px #f88029,
    0 0 160px #f88029;
} */

.content{
    max-width: 100%;
    display: flex;
    padding: 0 2.34vw 0 2.34vw;
    height: 12vh;
    align-items: center;
    font-weight: 500;
    font-size: 1.9vh;
    justify-content: space-between;
}

@media screen and (max-width: 820px) {
    .head{
        position: sticky;
        background: rgb(28,43,62);
    }
}