body._lock {
    overflow: hidden;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100px;
    margin: 0 auto;
    transition: all 0.35s ease;
    background: #424201;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
.header.on-scroll {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);;
}
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu_block {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#menu {
    opacity: 0;
    top: -100%;
    visibility: hidden;
    z-index: -1;
    height: 0px;
}
#menu.is-active {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    background: #424201;
    width: 100%;
    height: 100vh;
    z-index: 100;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
#menu-primary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#menu-primary li a {
    font-size: 25px;
    text-align: center;
    font-family: 'Futura PT';
    font-style: normal;
    line-height: 26px;
    background: linear-gradient(90deg, #924E1F 0.01%, #FFE09D 56%, #CF9C51 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.header_btns {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header_phone {
    display: flex;
    flex-direction: column;
}
.header_block {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}
.header_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.header_logo a img {
    height: 70px;
}
.header_phone span {
    font-family: 'Futura PT';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    background: linear-gradient(90deg, #924E1F 0.01%, #FFE09D 56%, #CF9C51 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.header_phone a {
    font-family: 'Futura PT';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    background: linear-gradient(90deg, #924E1F 0.01%, #FFE09D 56%, #CF9C51 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
#burger_close {
    position: absolute;
    right: 16px;
}

.burger {
    display: block;
    cursor: pointer;
    user-select: none;
    z-index: 10;
    width: 46px;
    height: 1.7rem;
    border: none;
    outline: none;
    background: none;
    visibility: visible;
    transform: rotate(0deg);
    transition: 0.35s ease;
    top: 63px;
    right: 26px;
}
.burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 46px;
    height: 5px;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 1rem;
    transform: rotate(0deg);
    background-color: #ffffff;
    transition: 0.25s ease-in-out;
    background: linear-gradient(90deg, #924E1F 0.01%, #FFE09D 56%, #CF9C51 100%);
}
.burger-line:nth-child(1) {
    top: 0px;
}
.burger-line:nth-child(2) {
    top: 0.7rem;
    /*width: 70%;*/
}
.burger-line:nth-child(3) {
    top: 1.4rem;
}
.burger.is-active .burger-line:nth-child(1) {
    top: 0.5rem;
    transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
    top: 0.5rem;
    transform: rotate(-135deg);
}

#burger_close .burger-line:nth-child(1) {
    top: 0.5rem;
    transform: rotate(135deg);
}
#burger_close .burger-line:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}
#burger_close .burger-line:nth-child(3) {
    top: 0.5rem;
    transform: rotate(-135deg);
}
@media only screen and (max-width: 600px) {
    .header_logo a img {
        height: 55px;
    }
    .header_phone {
        display: none;
    }
    #burger_close {
        width: 46px;
    }
    #menu-primary {
        gap: 40px;
    }
    #menu-primary li a {
        font-size: 35px;
        line-height: 40px;
    }
}