
ul.menu {
    display: grid;
    grid-template-columns: 350px 100px 100px calc(100% - 650px) 100px;
    list-style: none;
    margin: 0;
    padding: 0px 10%;
    position: fixed;
    min-width: 100vw;
    top: 0;
    background: #ffffff;
    z-index: 4;
}
ul.menu > li a {
    color: #000;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    text-align: center;
}
nav.footer-nav .search,
nav.footer-nav .img {
    display: none;
}
.mobile-header {
    display: none;
}

@media (max-width:1100px){
a.b-menu.active > :nth-child(1) {
    transform: rotate(45deg);
    top: calc(50% + -2px);
}
a.b-menu.active > :nth-child(2) {
    transform: rotate(45deg);
    top: calc(50% + -2px);
}
    a.b-menu.active > :nth-child(3) {
        transform: rotate(135deg);
        top: calc(50% + -2px);
    }
    a.b-menu {
        background: #82b95b;
        width: 50px;
        height: 50px;
        position: absolute;
        right: 5px;
        top: 5px;
        border-radius: 7px;
    }
    a.b-menu > b {
        width: 30px;
        height: 4px;
        background: #ffffff;
        position: absolute;
        top: calc(50% - 10px);
        left: 10px;
        border-radius: 4px;
		transition:0.4s;
    }
    a.b-menu > b~b {
        top: calc(50% - 2px);
    }
    a.b-menu > b~b~b {
        top: calc(50% + 6px);
    }

.mobile-header img {
    width: 260px;
}
ul.menu img {
    opacity: 0;
}
.mobile-header {
        display: block;
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        background: #fff;
        width: 100%;
        z-index: 99;
        padding: 5px 0px;
    }
ul.menu > li a {
    padding: 15px 0px;
}
ul.menu {
    width: 320px;
    min-width: auto;
    display: block;
    min-height: 100vh;
    padding: 20px 28px;
    transition: 0.4s;
    left: -320px;
	z-index:99;
}
ul.menu.active {
    left: 0;
}
}