.header {
    position: relative;
    width: 100%;
    height: 180px;
    margin-bottom: 30px;
    font-family: 'Helvetica', Tahoma, Arial, sans-serif;
    z-index: 999;
}

.logo-container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -moz-box-align: center;
    align-items: center;
    width: 100%;
    height: 120px;
    margin: 0 auto;
}

.logo {
    height: 57px;
    text-decoration: none;
}

.logo__name,
.logo__icon {
    display: inline-block;
    vertical-align: middle;
    height: 57px;
    background: url("../images/logo.svg") no-repeat;
}

.logo__name {
    width: 220px;
    background-position: left top;
}

.logo__icon {
    width: 30px;
    background-position: -225px 0;
}

.logo:hover .logo__icon {
    background-position: -225px -44px;
}

.logo-title {
    padding-left: 5px;
    font-family: 'Helvetica', Tahoma, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4d3b3b;
}

.menu {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    width: 100%;
    height: 60px;
    background: #4d3b3b;
    overflow: hidden;
}

.menu__menu-item {
    flex-grow: 1;
}

.menu__menu-link {
    display: block;
    position: relative;
    height: 60px;
    padding: 0 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    color: #f2c19d;
    cursor: pointer;
}

.menu__menu-link:not(:hover):before {
    content: '';
    position: absolute;
}

.menu__menu-link:hover {
    z-index: 1;
    text-shadow: -1px -1px rgba(174,51,33,.5);
    color: #f9f4e5;
    background: #dc6655;
}

@media screen and (min-width: 961px) and (max-width: 1366px) {
    .logo-container {
        width: calc(100% - 30px);
        margin-left: 30px;
    }
}

@media screen and (min-width: 961px) {
    .menu__menu-link:not(:hover):before {
        top: 7px;
        bottom: 7px;
        right: -1px;
        border-left: 1px solid #3b2c2c;
        border-right: 1px solid #5e4945;
    }

    .nav-btn {
        display: none;
    }
}

@media screen and (max-width: 960px) {
    .header {
        height: 48px;
        margin-bottom: 0;
        background: #4d3b3b;
    }

    .logo-container {
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        -moz-box-pack: center;
        justify-content: center;
        height: inherit;
    }

    .logo {
        height: 22px;
    }

    .logo__name {
        width: 123px;
        height: 22px;
        background-size: 123px 66px;
        background-position: 0 -44px;
    }

    .logo__icon {
        display: none;
    }

    .logo-title {
        padding-top: 4px;
        font-size: 13px;
        font-weight: normal;
        color: #fff;
    }

    nav {
        display: none;
    }

    .menu {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: auto;
    }

    .menu__menu-item {
        width: 100%;
    }

    .menu__menu-link {
        height: 37px;
        padding: 0 10px;
        line-height: 37px;
        text-align: left;
    }

    .menu__menu-link:not(:hover):before {
        left: 20px;
        right: 20px;
        border-top: 1px solid #5e4945;
        border-bottom: 1px solid #3b2c2c;
    }

    .nav-btn {
        position: absolute;
        top: 8px;
        left: 8px;
        width: 30px;
        height: 30px;
        background: url("../images/icon-nav.svg");
        background-position: center top;
        background-repeat: no-repeat;
        cursor: pointer;
    }

    .nav-btn_close {
        background-position: center -30px;
    }
}