@font-face {
    font-family: "BigShoulderDisplay";
    src: url(../fonts/BigShouldersDisplay-Light.ttf);
}

header {
    display: flex;
    width: 100vw;
    height: 80px;
    background-color: white;
    box-shadow: 0 0 20px -5px #000;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}

#logo-area {
    background-color: var(--primary-color);

    mask: url(#myPolygonMask);
    -webkit-mask: url(#myPolygonMask);
    
    mask-repeat: no-repeat;
    mask-position: right;
    mask-size: contain;
    
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: right;
    -webkit-mask-size: contain;
}

#text-logo {
    display: inline-block;
    color: #fff;
    padding-left: 45px;
    font-size: 36px;
    margin: 0;
    height: 100%;
    width: 100%;
    line-height: 90px;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    height: 100%;
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-left: 0;
}

.nav-menu .menu-item {
    position: relative;
    height: 100%;
}

.nav-menu .menu-item .naber {
    color: #888;
    transition: color .3s ease;
}

.nav-menu .menu-item:hover .naber {
    color: #000;
}

.nav-menu .menu-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 5px;
    background-color: var(--primary-color);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: width .3s ease;
}

.nav-menu .menu-item:hover::after {
    width: 100%;
}

.nav-menu .menu-item .menu-link {
    display: flex;
    align-items: center;
    font-family: "BigShoulderDisplay";
    font-size: 1.5rem;
    /* background-color: red; */
    color: #151515;
    height: 100%;
    padding: 0 25px;
    text-decoration: none;
}
