header{width: 100%;z-index: 999;position: fixed;background: #FCFCFC;}
.menu-button{display: none;}
.header_bloks{display: flex;justify-content: space-between;gap: 30px;align-items: center;padding: 30px 0 15px;}
.header_bloks img{display: block;}
.main_menu {display: flex;gap: 25px}
.main_menu a{transition: all 0.5s;}
.main_menu a:hover{color: #246813;}
.ticker {background: #246813;color: #FCFCFC;font-size: 14px;line-height: 16px;max-width: 100vw;overflow: hidden;}
.ticker__in {display: flex;width: fit-content;animation: ticker 30s linear infinite;-webkit-transform-style: preserve-3d;}
.ticker__item {padding: 10px 0px 10px 10px;white-space: nowrap;-webkit-backface-visibility: hidden;}
.ticker__item:after{content: '·';margin-left: 10px;}
.header_bottom{display: flex;justify-content: space-between;gap: 30px;align-items: center;padding: 15px 0 50px;}
.search{flex: 1;display: flex;justify-content: end;}
.header_langs{display: flex;gap: 7px;}
.header_langs_mob .header_lang,.header_langs .header_lang{font-size: 16px;line-height: 100%;color: #545454;}
.header_langs_mob .header_lang.activ,.header_langs .header_lang.activ{font-weight: 700;line-height: 100%;text-decoration: underline;text-decoration-style: solid;text-decoration-offset: 0%;text-decoration-thickness: 6%;text-decoration-skip-ink: auto;color: #246813;}
.header_phone{display: flex;gap: 10px;align-items: center;color: #545454;}
.header_phone:before {content: url(img/header_phone.svg);display: block;width: 15px;height: 15px;}
.header_email{display: flex;gap: 10px;align-items: center;color: #545454;}
.header_email:before {content: url(img/header_email.svg);display: block;width: 19px;height: 15px;}
#searchform{position: relative;max-width: 220px;width: 100%;}
.search-block-form .form-actions {position: absolute;right: 0;top: 0;width: 12px;height: 12px;background: url(img/search.svg) no-repeat;padding: 0px;}
.search-block-form .form-actions input {overflow: hidden;color: #ffffff;opacity: 0;cursor: pointer;}
.search-block-form .form-item input {border:none;border-bottom: 1px solid #246813;padding: 0 0 4px;margin: 0;display: block;outline: none;background: none;width: 100%;height: 100%;font-size: 14px;line-height: 100%;}
.header_langs_mob{display: none;}
.button{padding: 12px 55px;font-size: 14px;font-weight: 400;line-height: 100%;text-align: center;color: #FCFCFC;background: #246813;border: 1px solid #246813;transition: all 0.5s;box-sizing: border-box;display: flex;align-items: center;justify-content: center;gap: 5px;width: fit-content;}
.button:hover{background: #FCFCFC;color: #246813;}

@media (max-width: 1240px){
.main_menu{gap: 15px}
header .button {padding: 12px 25px;}
}

@media (max-width: 980px){
.header_bloks{padding: 20px 0}
header .button {display: none;}
.menu-button {display: block;width: 30px;height: 25px;background: transparent;}
.menu-button .line {display: block;width: 30px;height: 3px;background-color: rgba(36, 104, 19, 1);transition: 200ms;border-radius: 2px;}
.menu-button__line-2 {margin-top: 8px;margin-bottom: 8px;}
.menu-button.activ .menu-button__line-1 {transform: rotate(45deg);width: 35px;margin-top: 5px;}
.menu-button.activ .line.menu-button__line-2 {display: none;}
.menu-button.activ .line.menu-button__line-3 {transform: rotate(135deg);width: 35px;margin-top: -2px;}
.moblie_menu {top: 114px;overflow: auto;height: calc(100vh - 114px);position: fixed;width: 100%;z-index: 999;overflow-y: auto;background: #fff;flex-direction: column;justify-content: space-between;display: flex;left: -1000px;transition: all .5s;padding: 15px;}
.moblie_menu.activ {left: 0;}
.header_bottom{display: none;}
.header_langs_mob{display: flex;gap: 7px;}
.moblie_menu .button{width: 100%;}
.search{flex:none;}
#searchform{max-width: 100%}
.main_menu_mobile{display: flex;flex-direction: column;gap: 15px;margin: 40px 0;}
.main_menu_mobile a{font-size: 16px;line-height: 100%;}
.header_phone{font-size: 16px;margin-bottom: 15px;}
.header_email{font-size: 16px;margin-bottom: 40px;}
}

@media (max-width: 768px){
.header_bloks img {height: 26px;}
}

@keyframes ticker {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}