#ltb_header{
    background-color: #FFF;
    z-index: 30;
    position: sticky;
    position: -webkit-sticky;
    top: 0px;
    width: 100%;
}
#ltb_header .header_box{
    padding: 35px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition-duration: 0.4s;
}
#ltb_header.scroll .header_box{
    padding: 4px 0px;
}
#ltb_header .header_box .left img{
    max-width: 300px;
}
#ltb_header .header_box .center ul{
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 36px;
}
#ltb_header .header_box .center a{
    font-size: 1.5rem;
    color: #01160E;
    line-height: 100%;
    transition-duration: 0.3s;
    display: block;
    text-align: center;
}
#ltb_header .header_box .center a:hover{
    color: #50B27D;
}
#ltb_header .header_box .center li.current-menu-item>a,
#ltb_header .header_box .center li.current-menu-ancestor>a,
#ltb_header .header_box .center li.current-menu-parent>a{
    color: #50B27D;
}
#ltb_header .header_box .center .menu-item-has-children{
    position: relative;
    display: flex;
    align-items: center;
}
#ltb_header .header_box .center .menu-item-has-children::after{
    content: '';
    display: block;
    width: 23px;
    height: 20px;
    background-image: url('content/menu-arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    transition-duration: 0.4s;
}
#ltb_header .header_box .center .menu-item-has-children:hover::after{
    transform: rotate(180deg);
}
#ltb_header .header_box .center .sub-menu{
    position: absolute;
    left: 50%;
    top: 100%;
    width: 154px;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 0px;
    /*padding: 12px 0px;*/
    padding-top: 12px;
    display: none;
}
#ltb_header .header_box .center .sub-menu>li:first-child{
    border-top: 4px solid #50B27D;
}
#ltb_header .header_box .center .sub-menu li{
    display: block;
    width: 100%;
}
#ltb_header .header_box .center .sub-menu a{
    padding: 12px 12px;
    background-color: #EFEEEE;
    display: block;
    text-align: left;
}
#ltb_header .header_box .center .menu-item-has-children:hover>.sub-menu{
    display: flex;
}
#ltb_header .ltb_btn{
    font-weight: 700;
    min-width: 200px;
    padding: 14px 6px;
    justify-content: center;
    transition-duration: 0.3s;
    cursor: auto;
}
#ltb_header .ltb_btn::after{
    background-image: url('content/menu_btn.svg');
}
#ltb_header .ltb_btn:hover{
    opacity: 0.7;
}
#ltb_header .ltb_btn:hover::after{
    transform: rotate(180deg);
}
#ltb_header .ltb_btn:hover{
    opacity: 1;
}
#ltb_header .show_all .ltb_btn::after{
    transform: rotate(180deg);
    filter: brightness(0) invert(1);
}
#ltb_header .show_all .ltb_btn{
    color: #FFF;
}
#ltb_header .header_box .right{
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}
/*#ltb_header .header_box .right .menu{
    list-style: none;
    padding: 0px;
}
#ltb_header .header_box .right .pll-parent-menu-item{
    position: relative;
    display: flex;
    align-items: center;
}
#ltb_header .header_box .right .pll-parent-menu-item::after{
    content: '';
    display: block;
    width: 23px;
    height: 20px;
    background-image: url('content/menu-arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
}
#ltb_header .header_box .right .pll-parent-menu-item .sub-menu{
    list-style: none;
    position: absolute;
    left: 10px;
    top: 12px;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 0px;
    padding: 12px 0px;
    text-align: center;
    display: none;
}
#ltb_header .header_box .right .pll-parent-menu-item:hover .sub-menu{
    display: flex;
}*/
#ltb_header .header_box .right .lang_switcher{
    display: flex;
    align-items: center;
    gap: 5px;
    color: #828282;
    font-size: 2rem;
    line-height: 100%;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
}
#ltb_header .header_box .right .lang_switcher::after{
    content: '';
    display: block;
    width: 23px;
    height: 20px;
    background-image: url('content/menu-arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    transition-duration: 0.4s;
}
#ltb_header .header_box .right .lang_switcher:hover::after{
    transform: rotate(180deg);
}
#ltb_header .header_box .right .lang_switcher .sub-menu{
    position: absolute;
    left: 0px;
    top: 100%;
    display: none;
}
#ltb_header .header_box .right .lang_switcher:hover .sub-menu{
    display: block;
}
#ltb_header .header_box .right .lang_switcher ul{
    list-style: none;
    padding: 0px;
    margin: 0px;
    padding: 12px 0px;
    display: flex;
    flex-direction: column;
}
#ltb_header .header_box .right .lang_switcher ul>li:first-child{
    border-top: 4px solid #50B27D;
}
#ltb_header .header_box .right .lang_switcher ul a{
    padding: 12px 12px;
    background-color: #EFEEEE;
    display: block;
    text-align: left;
    font-size: 1.5rem;
    font-weight: 400;
    color: #01160E;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: none;
    transition-duration: 0.4s;
}
#ltb_header .header_box .right .lang_switcher ul a:hover{
    color: #50B27D;
}

#ltb_header .mobile_burger{
    width: 24px;
    height: 14px;
    border-top: 2px solid #50B27D;
    border-bottom: 2px solid #50B27D;
    display: none;
    position: relative;
}
#ltb_header .mobile_burger::after{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #50B27D;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

#ltb_header .contact_data_box{
    position: absolute;
    right: 0px;
    top: 100%;
    background: url('content/test-contact.png'), linear-gradient(180deg, #50B27D 0%, #00D060 100%);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    border-radius: 50px 0px 50px 50px;
    width: 400px;
    height: 256px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
    transform: translateY(12px);
    opacity: 0;
    pointer-events: none;
    transition-duration: 0.4s;
}
#ltb_header .header_box .right.show_all .contact_data_box{
    opacity: 1;
    pointer-events: all;
}
#ltb_header .contact_data_box h3{
    margin-bottom: 0px;
    color: #FFF;
    font-size: 1.6rem;
    display: block;
    font-weight: 700;
    padding-bottom: 9px;
    border-bottom: 1px solid #FFFFFF;
    width: 218px;
    text-align: center;
    position: absolute;
    left: 64px;
    bottom: 17px;
    transform: rotate(-90deg);
    transform-origin: left bottom;
}
#ltb_header .contact_data_box .contact_link{
    display: flex;
    align-items: center;
    gap: 20px;
    width: 250px;
    color: #FFF;
    font-size: 1.6rem;
    line-height: 100%;
    font-weight: 700;
    margin-bottom: 6px;
}
#ltb_header .contact_data_box .form_link{
    margin-top: 24px;
    color: #FFF;
    font-size: 1.4rem;
    line-height: 100%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    border-radius: 100px;
    border: 1px solid #FFFFFF;
    padding: 12px 24px;
}

#ltb_menu_panel{
    position: fixed;
    width: 0px;
    height: 100vh;
    right: 0px;
    top: 0px;
    overflow: hidden;
    z-index: 50;
    transition-duration: 0.4s;
    opacity: 0;
}
#ltb_menu_panel.show{
    width: 100%;
    opacity: 1;
}
#ltb_menu_panel .overlay{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 1;
}
#ltb_menu_panel .inner_box{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 320px;
    height: calc(100% - 96px);
    padding: 48px 24px;
    background-color: #FFF;
    z-index: 2;
    overflow: auto;
}
#ltb_menu_panel .inner_box ul{
    list-style: none;
}
#ltb_menu_panel .inner_box ul a{
    font-size: 1.5rem;
    color: #01160E;
    line-height: 100%;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}
#ltb_menu_panel .inner_box .pll-parent-menu-item>a{
    display: none;
}
#ltb_menu_panel .inner_box .pll-parent-menu-item .sub-menu{
    padding-left: 0px;
}
#ltb_menu_panel .inner_box .close{
    flex-direction: row-reverse;
    margin-bottom: 24px;
}
#ltb_menu_panel .inner_box .close::after{
    transform: rotate(180deg);
}
#ltb_menu_panel .inner_box .ltb_btn:not(:first-child){
    margin-top: 24px;
    margin-bottom: 24px;
}