#wrap{
    width: 1350px;
    margin: 0 auto;
    text-align: left;
    position: relative;
}
#header {
    height: 360px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}
a {
    /*color: #61AD00;*/
    font-weight:500;
}
#logo {
    position: absolute;
    top: 60px;
    left: 10px;
}
#phone {
    position: absolute;
    top: 125px;
    left: 17px;
    color: #FFFFFF;
    font: 16px Tahoma;
}
#menu {
    position: fixed;
    top: 0;
    left: calc(50% - 124px);
    width: 785px;
    height: 45px;
    background: #305604;
    /*font: 11px / 31px Tahoma;*/
    color: #62AE02;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;

}

.menu-desktop-only{
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

#header #menu a:hover, #header #menu a.act, #header #menu a.act a:hover {
    color: #61AD00;
    text-decoration: none;
}
#menu a {
    font-size: 1.1rem;
line-height: 150%;
    color: #FFFFFF;
    margin: 0 10px;
}
#application {
    position: absolute;
    top: 217px;
    background: url(../images/form.gif);
    width: 223px;
    height: 75px;
    padding: 20px 0 0 0;
}
#application a {
    font: 18px / 54px Arial;
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 0 0 70px;
}
.lang {
    position: absolute;
    top: 219px;
    left: 45px;
    width: 128px;
    text-align: center;
    color: #559803;
    font-size: 12px;
}
.lang a.act {
    color: #61AD00;
}
.lang a {
    color: #FFFFFF;
    text-decoration: none;
}
body {
    background: #f8f8f8 url(../images/bg.gif) repeat-x center 0;
}
.menu-mobile-only{
    display: none;
}
@media (max-width: 1100px) {
    #wrap {
        width: 100%;
        overflow-x: hidden;
    }

    #header {
        position: relative;
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    #header > img {
        width: 100%;
        height: auto;
        display: block;
    }

    #logo {
        position: absolute;
        top: 20px;
        left: 20px;
        max-width: 150px;
        height: auto;
        z-index: 10;
    }
}
@media (max-width: 900px) {
    #menu {
        left: 50%;
        transform: translateX(-50%);
    }
}
@media (max-width: 800px) {
    body {
        background: #f8f8f8;
    }
}
@media (max-width: 750px) {
    #logo {
        position: absolute;
        top: 60px;
        left: 20px;
        max-width: 150px;
        height: auto;
        z-index: 10;
    }
}
@media (max-width: 500px) {
    #menu{
        width: 100%;
        justify-content: right;
        padding-right: 20px;
        height: 50px;
    }

    #menu a{
        font-size: 1.2rem;
        line-height: 150%;
    }
    .menu-desktop-only {
        display: none;
    }
    .menu-mobile-only{
        display: block;
    }
}

@media (max-width: 370px) {
    #menu a {
        font-size: 1.2rem;
        line-height: 150%;
    }
}