.Nav {
    margin-top: 15px
}

.Nav, .Nav-Item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.Nav-Item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 25px;
    padding: 7px 22px;
    font-size: 1.4rem;
    text-align: center;
    cursor: pointer
}

@media (max-width: 500px) {
    .Nav-Item {
        margin-right: 10px
    }
}

.Nav-Item:last-child {
    margin-right: 0
}

.Nav-Item:hover {
    background-color: var(--color-hover)
}

.Nav-Item--state_active, .Nav-Item:hover {
    color: var(--color-lightest);
    border-radius: 20px
}

.Nav-Item--state_active, .Nav-Item--state_active:hover {
    background-color: var(--color-primary)
}

.Nav-Item--margin-right {
    margin-right: 58px
}