.nav_block {
    min-height: 50px;
    display: flex;
    align-items: center;
}

.block-nav-post {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: 0.6s all;
}

.block-nav-post.fix-menu {
    position: fixed;
    top: 111px;
    width: 100%;
    left: 0;
    height: 50px;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 0 10px rgb(46 51 60 / 30%);
}

@media(max-width: 921px){
	.block-nav-post.fix-menu {
		top: 180px;
	}
}

@media(max-width: 544px){
	.block-nav-post.fix-menu {
		top: 161px;
	}
}

.block-nav-post__nav_link{
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    color: #747A84;
    margin-right: calc(15px + (34 - 15) * ((100vw - 320px) / (1354 - 320)));
    border-bottom: 1px solid #EAEAEB;
    padding: 0 6px;
}

.block-nav-post__nav_link:hover{
    color: #E2B29A;
    border-bottom: 1px solid #E2B29A;
}