.header-new{
    padding-top: 35px!important;
    padding-bottom: 35px!important;
}
.header-new .container {
    border-radius: 240px;
    padding: 20px 50px;
    box-shadow: 0 0 4px 0 #00000040;
    height: 117px;
    max-width: fit-content;
}

.header-new .header__holder {
    position: unset !important;
    padding-left: 180px;
}

.header-nav-new {
    padding-top: 8px;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-nav-new .menu-item {
    display: flex;
    align-items: flex-end;
    border-radius: 80px;
    padding: 12px 20px;
    border: 1px solid #000;
    list-style: none;
    font-family: IBM Plex Sans, sans-serif;
    font-weight: 300;
    font-size: 21px;
    line-height: 27px;
    margin: 0 5px;
    white-space: nowrap;
}

.header-nav-new .menu-item-has-children.active,
.header-nav-new .menu-item:hover {
    border-color: #60ABDE;
    background: #60ABDE;
}

.header-nav-new .lang-item {
    border: none;
    padding: 0 3px;
    font-weight: bold;
}

.header-nav-new .lang-item:hover {
    background: #FFF;
}

.header-nav-new .lang-item a:hover {
    color: #60ABDE;
}

.header-new .current-lang {
    display: block !important;
    color: #60ABDE !important;
    text-decoration: underline;
}

.header-nav-new .menu-item-has-children::after {
    content: '';
    transform: rotate(0deg);
    margin-left: 10px;
    display: block;
    width: 25px;
    height: 25px;
    background-image: url("data:image/svg+xml;utf8,<svg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M6.10938 9.51172L12.1094 15.5117L18.1094 9.51172' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    transform-origin: center;
    border: none !important;
}

.header-nav-new .menu-item-has-children .sub-menu {
    list-style: none;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 185px;
    left: 0;
    right: 0;
    padding-top: 0;
    padding-bottom: 35px;
    background-color: #fff;
    box-shadow: 0 4px 4px 0 #00000040;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.header-new .menu-close-btn {
    cursor: pointer;
    visibility: hidden;
    position: absolute;
    top: 205px;
    right: 5%;
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml;utf8,<svg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M13 1L1 13M1 1L13 13' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .01s;
}

.menu-close-btn.visible,
.header-nav-new .menu-item-has-children .sub-menu.visible,
.nav-down .header-nav-new .menu-item-has-children .sub-menu.visible {
    visibility: visible;
    opacity: 1;
    z-index: 99;
}

.nav-up .header-nav-new .menu-item-has-children .sub-menu.visible {
    visibility: hidden;
    opacity: 0;
}