.new-header * {
    box-sizing: border-box;
}
.top-home-section {
    margin-top: 200px;
}
.new-header.new-header-inner ~ main {
    margin-top: 160px;
}
.new-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2;
    background-color: #174479;
    margin: 0;
}
.new-header .container {
    display: flex;
    align-items: center;
}
.header-logo {
    flex-shrink: 0;
    margin-right: 40px;
}
.header-logo img {
    height: 68px;
    display: block;
}
.header-content {
    width: 100%;
}
.header-top {
    display: flex;
    align-items: center;
    padding: 8px 0;
    box-shadow: inset 0 -1px rgba(255, 255, 255, 0.20);
}
.header-backto {
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
    text-decoration: none;
    transition: opacity .2s;
}
.header-backto:hover {
    opacity: 0.6;
}
.header-backto img {
    margin-right: 8px;
}
.header-backto_mob {
    display: none;
}
.header-links {
    display: flex;
    align-items: center;
    margin-left: auto;
}
.header-socials {
    display: flex;
    align-items: center;
    margin-right: 32px;
}
.header-socials__link {
    margin-right: 16px;
    transition: opacity .2s;
}
.header-socials__link:last-child {
    margin-right: 0;
}
.header-socials__link:hover {
    opacity: 0.6;
}
.header-socials__link img {
    display: block;
    width: 20px;
}
.header-socials_mob {
    display: none;
}
.header-socials_mob .header-socials__link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}
.header-lang {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
    text-decoration: none;
    transition: opacity .2s;
}
.header-lang:hover {
    opacity: 0.6;
}
.header-main {
    height: 80px;
    display: flex;
    align-items: center;
}
.header-mob-wrap {
    flex: 1;
}
.header-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center; 
}
.header-nav > li {
    margin-right: 24px;
}
.header-nav__link {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
    display: block;
    text-align: center;
    text-decoration: none;
    transition: opacity .2s;
}
.header-nav__link:hover {
    opacity: 0.6;
}
.header-nav__hidden-item {
    display: none;
}
.header-nav__menu-link {
    position: relative;
}
.header-nav__menu-link .header-nav__link {
    display: flex;
    align-items: center;
}
.header-nav__menu-link .header-nav__link img {
    width: 16px;
    margin-left: 12px;
}
.header-nav__menu-link:hover .dropdown-menu-wrap {
    display: block;
}
.dropdown-menu-wrap {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    padding-top: 8px;
}
.dropdown-menu {
    margin: 0;
    padding: 8px 0;
    list-style: none;
    width: 308px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #EDF3F8;
    box-shadow: 0px 0px 32px 0px rgba(0, 10, 22, 0.08);
}
.dropdown-menu__link {
    display: block;
    padding: 12px 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; 
    color: rgba(0, 10, 22, 0.87);
    text-decoration: none;
    transition: background-color .2s;
}
.dropdown-menu__link:hover {
    background-color: #e9e9e9;
}
.header-buttons {
    display: flex;
    align-items: center;
}
.header-search-button {
    flex-shrink: 0;
    cursor: pointer;
    margin-right: 24px;
    transition: opacity .2s;
}
.header-search-button img {
    display: block;
    width: 20px;
}
.header-menu {
    position: relative;
}
.header-menu .dropdown-menu-wrap {
    padding: 0;
}
.header-menu-button {
    display: block;
    width: 40px;
    height: 40px;
    background: url('/_/i/new-header-imgs/new-burger-icon.svg') center / 20px no-repeat;
    cursor: pointer;
    transition: opacity .2s;
}
.new-header.menu-open .header-menu .dropdown-menu-wrap {
    display: block;
}
.new-header.menu-open .header-menu-button {
    background-image: url('/_/i/new-header-imgs/new-close-icon.svg');
}
.header-search-button:hover, .header-menu-button:hover {
    opacity: 0.6;
}
.header-search {
    display: none;
    align-items: center;
    margin-right: 48px;
}
.header-search__submit {
    border: none;
    outline: none;
    background: #3589D4;
    padding: 12px 32px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px; 
    color: #fff;
    border-radius: 32px;
}
.header-search__input-wrap {
    position: relative;
    flex: 1;
    margin-right: 16px;
}
.header-search__input {
    width: 100%;
    border: none;
    outline: none;
    background: rgba(0, 10, 22, 0.24) url('/_/i/new-header-imgs/new-search-icon.svg') 14px center / 20px no-repeat;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    height: 48px;
    padding: 0 48px;
    box-sizing: border-box;
}
.header-search__input::-webkit-input-placeholder {color: rgba(255, 255, 255, 0.60);}
.header-search__input::-moz-placeholder {color: rgba(255, 255, 255, 0.60);}
.header-search__input:-ms-input-placeholder {color: rgba(255, 255, 255, 0.60);}
.header-search__input:-moz-placeholder {color: rgba(255, 255, 255, 0.60);}
.header-search__close {
    position: absolute;
    width: 48px;
    height: 48px;
    cursor: pointer;
    top: 0;
    right: 0;
    background: url('/_/i/new-header-imgs/new-close-icon.svg') center / 16px no-repeat;
    opacity: 0.2;
    transition: opacity .2s;
}
.header-search__close:hover {
    opacity: 1;
}
.new-header.search-open .header-nav, .new-header.search-open .header-search-button {
    display: none;
}
.new-header.search-open .header-search {
    display: flex;
}

@media only screen and (max-width:1366px){
    .header-nav > li {
        margin-right: 12px;
    }
}
@media only screen and (max-width:1100px){
    .top-home-section, .new-header.new-header-inner ~ main {
        margin-top: 0;
    }
    .new-header .container {
        padding-top: 0;
        padding-bottom: 0;
        width: 100%;
    }
    .new-header {
        height: 64px;
        display: flex;
        align-items: center;
    }
    .new-header.search-open .header-nav {
        display: flex;
    }
    .header-top {
        display: none;
    }
    .header-buttons {
        margin-left: auto;
        margin-right: -8px;
    }
    .header-search-button {
        display: none;
    }
    .header-logo {
        margin-right: 0;
    }
    .header-logo img {
        height: 44px;
    }
    .header-main {
        height: auto;
    }
    .new-header.menu-open .header-menu .dropdown-menu-wrap {
        display: none;
    }
    .header-search {
        display: flex;
        margin: 0 0 30px;
    }
    .header-backto_mob {
        display: flex;
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 24px;
    }
    .header-mob-wrap {
        display: none;
        flex-direction: column;
        flex: unset;
        position: absolute;
        width: 100%;
        max-height: calc(100vh - 64px);
        top: 100%;
        left: 0;
        background-color: #174479;
        padding: 20px 16px 32px;
        overflow-y: auto;
    }
    .new-header.menu-open .header-mob-wrap {
        display: flex;
    }
    .header-socials_mob {
        display: flex;
        margin: auto 0 0 -8px;
    }
    .header-nav {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        margin: 0 0 32px;
    }
    .header-nav__link {
        font-size: 16px;
        line-height: 24px;
        text-align: left;
        padding: 8px 0;
    }
    .header-nav__link:hover, .header-backto:hover, .header-menu-button:hover {
        opacity: 1;
    }
    .header-nav__hidden-item {
        display: block;
    }
    .header-nav__menu-link:hover .dropdown-menu-wrap {
        display: none;
    }
    .dropdown-menu-wrap {
        position: static;
        width: 100%;
        padding: 0;
    }
    .dropdown-menu {
        width: 100%;
        width: calc(100% + 30px);
        margin: 0 -15px;
        padding: 16px 16px 32px;
        background-color: rgba(0, 10, 22, 0.24);
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
    .header-nav > li {
        margin-right: 0;
        margin-bottom: 4px;
    }
    .dropdown-menu li {
        margin-bottom: 4px;
    }
    .dropdown-menu li:last-child, .header-nav li:last-child {
        margin-bottom: 0;
    }
    .dropdown-menu__link {
        font-size: 14px;
        line-height: 20px;
        color: #fff;
        padding: 8px 0;
    }
    .dropdown-menu__link:hover {
        background-color: transparent;
    }
}
@media only screen and (max-width:768px){
    .header-search__submit {
        padding: 8px 16px;
        font-size: 12px;
        line-height: 16px;    
    }
    .header-search__input-wrap {
        margin-right: 8px;
    }
    .header-search__input {
        height: 36px;
        padding: 0 36px 0 44px;
        background-position: 12px center;
    }
    .header-search__close {
        width: 36px;
        height: 36px;
    }
}
@media only screen and (max-width:480px){
    .new-header.menu-open .header-mob-wrap {
        height: calc(100vh - 64px);
    }

}