.header-wrapper {
    background-color: #6391F4;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header {
    position: relative;
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}

.header__inner {
    display: flex;
    align-items: center;
    padding: 16px 0;
    gap: 24px;
}

.header__logoInner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    flex-shrink: 0;
}

.header__logoLink {
    text-decoration: none;
}

.header__logo--dark {
    display: none;
}

.header--home .header__logo--light {
    display: block;
}

.header--home .header__logo--dark {
    display: none;
}

.header--home.sections-open .header__logo--light {
    display: none;
}

.header--home.sections-open .header__logo--dark {
    display: block;
}

.header--scrolled .header__logo--light {
    display: none;
}

.header--scrolled .header__logo--dark {
    display: block;
}

.header--inner .header__logo--light {
    display: none;
}

.header--inner .header__logo--dark {
    display: block;
}

.header__logo-label {
    font-size: 16px;
    transition: color 0.3s;
}

.header__nav {
    flex: 1;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin-left: 24px;
    padding: 0;
}

.header__menu li a {
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
    font-weight: 500;
}

.header__search {
    flex-shrink: 0;
    position: relative;
    width: 25%;
}

.header__search-form {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #D3DBE4;
    border-radius: 16px;
    padding: 0 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
    color: #79A4FF;
}

.header__search-form:focus-within {
    border-color: #79A4FF;
}

.header__search-label {
    position: absolute;
    top: -8px;
    left: 12px;
    background: #fff;
    padding: 0 4px;
    font-size: 10px;
    color: #79A4FF;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.header__search-form:focus-within .header__search-label,
.header__search-form.has-value .header__search-label {
    opacity: 1;
    visibility: visible;
}

.header__search-icon {
    flex-shrink: 0;
    color: #3C76F1;
}

.header__search-input {
    border: none;
    background: transparent;
    padding: 10px 12px;
    font-size: 14px;
    width: 264px;
    outline: none;
    transition: color 0.3s;
}

.header__search-input:focus::placeholder {
    opacity: 0;
}

.header__search-clear {
    display: none;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: #79A4FF;
    padding: 0;
}

.header__search-form.has-value .header__search-clear {
    display: flex;
}

.header__search-clear:hover {
    color: #2A4F7C;
}

.header__search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    min-width: 360px;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(42, 79, 124, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 100;
    max-height: fit-content;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.header__search-dropdown.empty_result {
    min-width: 230px;
}

.header__search-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__search-results {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}

.header__search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #2A4F7C;
    transition: background 0.2s;
    text-align: left;
}

.header__search-item:hover {
    background: #f5f8ff;
}

.header__search-item-icon {
    flex-shrink: 0;
    width: 12px;
    height: 14px;
    color: #6C98CD;
}

.header__search-item-title {
    font-size: 14px;
    line-height: 150%;
    color: #2A4F7C;
}

.header__search-item-title:hover {
    color: #6C98CD;
}

.header__search-item-title mark {
    background: none;
    color: currentColor;
    font-weight: 600;
}

.header__search-empty {
    color: #7A92AF;
    font-size: 10px;
}

.header__search-loading {
    padding: 20px;
    text-align: center;
    color: #7A92AF;
    font-size: 14px;
}

.header__search-footer {
    border-top: 1px solid #e8eef5;
    padding: 12px 12px 4px;
}

.header__search-show-all {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #6C98CD;
    text-decoration: none;
}

.header__search-show-all:hover {
    color: #3c76f1;
    text-decoration: underline;
}

.header__search-results::-webkit-scrollbar {
    width: 4px;
}

.header__search-results::-webkit-scrollbar-track {
    background: transparent;
}

.header__search-results::-webkit-scrollbar-thumb {
    background: #d3dbe4;
    border-radius: 4px;
}

.header__search-results {
    scrollbar-width: thin;
    scrollbar-color: #d3dbe4 transparent;
}

.header--home {
    background: transparent;
}

.header--home .header__logo-label {
    color: rgba(255, 255, 255, 0.8);
    margin-left: auto;
}

.header--home .header__menu > li > a,
.header--home .header__menu > li > button {
    color: #fff;
    padding: 14px;
}

.header--home .header__menu > li > a:hover,
.header--home .header__menu > li > button:hover,
/*.header--home .header__menu .support-btn.hover,*/
.header--home .header__menu li.current-menu-item a {
    border-radius: 16px;
    font-weight: 600;
    background: #79A4FF;
}

.header--home .header__search {
    display: none;
}

.header--home .support-btn {
    color: #fff;
}

.support-btn {
    cursor: pointer;
}

.header-menu-mobile {
    display: none;
}

.header--home .support-btn__icon {
    fill: #fff;
}

.header--scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

.header__search .mobile-search-icon {
    display: none;
    color: #6391F4;
    border: 1px solid #6391F4;
    border-radius: 12px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.header--home.header--scrolled .header__search {
    display: none;
}

.header__logo-label {
    margin-right: 11px;
}

.header--inner {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.header--inner .header__logo-label {
    color: #94a3b8;
    margin-left: auto;
}

.header--inner .header__menu li a:not(.support-btn__list-item-link) {
    padding: 12px 16px;
    color: #2A4F7C;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
    font-weight: 500;
    white-space: nowrap;
}

.header--inner .header__menu li a:hover,
.header--inner .header__menu li.current-menu-item a {
    border-radius: 16px;
    background: #F5F8FF;
    color: #3C76F1;
}

.header--inner .header__menu li.current-menu-item a {
    font-weight: 500;
}

.header--inner .header__search-form:focus {
    border-color: #79A4FF;
}

.header--inner .header__search-icon {
    color: #3C76F1;
}

.header--inner .header__search-input {
    color: #2A4F7C;
    width: 100%;
}

.header--inner .header__search-input::placeholder {
    color: #7A92AF;
}

.header--inner .support-btn {
    color: #2A4F7C;
    padding: 16px;
}

.header--inner .support-btn__icon {
    fill: #2A4F7C;
}

.header--inner .support-btn:hover {
    background: #F5F8FF;
    border-radius: 16px;
    color: #3C76F1;
}

.hero {
    padding: 105px 0 205px;
    text-align: center;
}

.hero__title {
    color: #fff;
    margin: 0 0 16px;
}

.hero__description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px;
}

.hero__search {
    max-width: 800px;
    margin: 0 auto;
}

.hero__search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 8px 8px 8px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    max-height: 66px;
}

.hero__search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 16px;
    outline: none;
    color: #334155;
}

.hero__search-input::placeholder {
    color: #7A92AF;
}

.hero__search-btn {
    padding: 10px 55px;
    background: #79A4FF;
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-right: 5px;
}

.hero__search-btn:hover {
    background: #4a89de;
}

.hero__search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(42, 79, 124, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 100;
    max-height: fit-content;
    overflow-y: auto;
    padding: 12px;
}

.hero__search-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero__hint {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.header__sections-wrapper {
    position: static;
    height: 44px;
}

.header__sections-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 16px;
    background: #79A4FF;
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    height: 100%;
    white-space: nowrap;
}

.header__sections-btn:hover {
    background: #5b9aef;
}

.sections-dropdown__news-items .firstline:first-of-type {
    border: 1px solid #E8EEF5;
    margin: 32px 0;
    height: 0;
}

.header--inner .header__sections-btn {
    background: #79A4FF;
}

.header--inner .header__sections-btn:hover {
    background: #2563eb;
}

.header__sections-btn-icon--close {
    display: none;
}

.header__sections-wrapper.open .header__sections-btn-icon--menu {
    display: none;
}

.header__sections-wrapper.open .header__sections-btn-icon--close {
    display: block;
}

.header__sections-btn-text {
    display: inline;
}

.header--home.sections-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header--home.sections-open .header__logo-label,
.header--home.header--scrolled .header__logo-label {
    color: #94a3b8;
}

.header--home.sections-open .header__menu > li > a,
.header--home.sections-open .header__menu > li > button,
.header--home.header--scrolled .header__menu > li > button,
.header--home.header--scrolled .header__menu > li > a {
    color: #2A4F7C;
}

.header--home.sections-open .header__menu > li > a:hover,
.header--home.sections-open .header__menu > li > button:hover {
    background: #f1f5f9;
    color: #2A4F7C;
}

.header--home.sections-open .header__sections-btn {
    background: #79A4FF;
}

.header--home.sections-open .header__search {
    display: none;
}

.header--home.sections-open .support-btn {
    color: #334155;
}

.header--home.sections-open .support-btn__icon {
    fill: #334155;
}

.sections-dropdown {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    overflow: hidden;
    border-radius: 0 0 28px 28px;
}

.header__sections-wrapper.open .sections-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sections-dropdown__inner {
    display: grid;
    grid-template-columns: 0.7fr 1.5fr 1.2fr;
    margin: 0 auto;
    min-height: 500px;
}

.sections-dropdown__news::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 16%;
    height: 100%;
    background: #F9FCFF;
    z-index: -1;
}

.sections-dropdown__primary {
    border-right: 1px solid #e2e8f0;
    overflow-y: auto;
    max-height: 600px;
    padding: 24px 0;
    scrollbar-width: thin;
    scrollbar-color: #6C98CD transparent;
}

.sections-dropdown__primary::-webkit-scrollbar {
    width: 4px;
}

.sections-dropdown__primary::-webkit-scrollbar-track {
    background: transparent;
}

.sections-dropdown__primary::-webkit-scrollbar-thumb {
    background: #6C98CD;
    border-radius: 4px;
}

.sections-dropdown__primary-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sections-dropdown__primary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.2s;
    line-height: normal;
}

.sections-dropdown__primary-item:hover,
.sections-dropdown__primary-item.active {
    background: #f1f5f9;
}

.sections-dropdown__primary-item.active {
    background: #eff6ff;
}

.sections-dropdown__primary-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.sections-dropdown__primary-link {
    text-decoration: none;
    color: #2A4F7C;
    font-size: 16px;
    font-weight: 500;
    flex: 1;
}

.sections-dropdown__primary-item.active .sections-dropdown__primary-link {
    color: #3b82f6;
}

.sections-dropdown__primary-arrow {
    display: none;
    width: 16px;
    height: 16px;
    color: rgba(203, 219, 238, 0.9);
    flex-shrink: 0;
}

.sections-dropdown__secondary {
    padding: 24px;
    border-right: 1px solid #e2e8f0;
    overflow-y: auto;
    max-height: 600px;
    scrollbar-width: thin;
    scrollbar-color: #6C98CD transparent;
}

.sections-dropdown__secondary-list {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sections-dropdown__secondary-list.active {
    display: block;
}

.sections-dropdown__secondary-item {
    margin-bottom: 8px;
}

.sections-dropdown__secondary-item:last-child {
    margin-bottom: 0;
}

.sections-dropdown__group {
    margin-bottom: 24px;
}

.sections-dropdown__group:last-child {
    margin-bottom: 0;
}

.sections-dropdown__group-title {
    font-size: 20px;
    font-weight: 600;
    color: #2A4F7C;
    margin: 0 0 12px;
    padding-left: 8px;
}

.sections-dropdown__group-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sections-dropdown__secondary-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s;
    color: #2A4F7C;
}

.sections-dropdown__secondary-link:hover {
    background: #f8fafc;
}

.sections-dropdown__secondary-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #F5F8FF;
    border-radius: 12px;
    flex-shrink: 0;
}

.sections-dropdown__secondary-icon-wrapper svg {
    width: 18px;
    height: 21px;
}

.sections-dropdown__secondary-text {
    color: #2A4F7C;
}

.sections-dropdown__secondary-link:hover .sections-dropdown__secondary-text {
    color: #3b82f6;
}

.sections-dropdown__news {
    padding: 24px 48px;
    background: #F9FCFF;
    z-index: 1;
}

.sections-dropdown__news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sections-dropdown__news-title {
    font-size: 20px;
    font-weight: 500;
    color: #2A4F7C;
    margin: 0;
}

.sections-dropdown__news-all {
    font-size: 16px;
    color: #7A92AF;
    text-decoration: none;
    font-weight: 500;
}

.sections-dropdown__news-all:hover {
    text-decoration: underline;
}

.sections-dropdown__news-all-short {
    display: none;
}

.sections-dropdown__news-all-full {
    display: inline;
}

.sections-dropdown__news-item {
    margin-bottom: 24px;
}

.sections-dropdown__news-item:last-child {
    margin-bottom: 0;
}

.sections-dropdown__news-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #2A4F7C;
    margin: 0 0 8px;
    line-height: 1.4;
}

.sections-dropdown__news-item-link {
    font-size: 12px;
    color: #2A4F7C;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sections-dropdown__news-item-link:hover {
    color: #3b82f6;
}

.sections-dropdown__news-item-image {
    margin-top: 12px;
    border-radius: 12px;
    overflow: hidden;
    background: #e2e8f0;
}

.sections-dropdown__news-item-image img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.sections-dropdown__news-item-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 12px;
}

.sections-dropdown__news-item-date,
.sections-dropdown__news-item-time {
    color: #7A92AF;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sections-overlay {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 98;
}

.sections-overlay.show {
    opacity: 1;
    visibility: visible;
}

.sections-dropdown__mobile-header {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.sections-dropdown__back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #2A4F7C;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
}

.sections-dropdown__back-btn svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 1480px) {
    .hero {
        padding-bottom: 83px;
    }

    .header__logo-label {
        font-size: 14px;
        margin-right: 0;
    }

    .header__menu {
        gap: 0;
    }

    .sections-dropdown {
        top: 84px;
    }

    .header .header__menu li a:not(.support-btn__list-item-link) {
        font-size: 14px;
    }

    .support-btn__text {
        margin-right: 7px;
        font-size: 14px;
    }

    .support_svg {
        width: 10px;
        height: 6px;
    }

    .header__search {
        max-width: 23%;
    }

    .header__sections-btn-text {
        display: none;
    }

    .header__sections-btn {
        padding: 12px;
        width: 40px;
        justify-content: center;
        height: 40px;
        border-radius: 12px;
    }

    .header__sections-wrapper {
        width: 44px;
    }

    .sections-dropdown__news-all-short {
        display: inline;
    }

    .sections-dropdown__news-all-full {
        display: none;
    }

    .sections-dropdown__news {
        padding-right: 48px;
    }

    .header__search .header__search-dropdown {
        left: auto;
    }

    .header__search-input::placeholder {
        font-size: 12px;
    }

    .sections-dropdown__primary-link {
        font-size: 14px;
    }

    .sections-dropdown__secondary-link {
        font-size: 14px;
    }
}

@media (max-width: 1043px) {
    .sections-dropdown__primary {
        padding-left: calc((100vw - 992px) / 2 + 20px);
    }

    .sections-dropdown__news {
        padding-right: 24px;
    }

    .header--inner .header__menu li a:not(.support-btn__list-item-link) {
        padding: 12px 13px;
    }

    .header__search-input {
        font-size: 12px;
    }

    .header__menu {
        margin-left: 0;
    }
}

@media (max-width: 1140px) {
    .sections-dropdown__news {
        padding-right: 36px;
    }

    .sections-dropdown__news-title {
        font-size: 16px;
    }

    .sections-dropdown__news-all {
        font-size: 14px;
    }

    .sections-dropdown__news-item-title {
        font-size: 14px;
    }

    .sections-dropdown__group-title {
        font-size: 18px;
    }

    .hero__search-form {
        height: 56px;
    }

    .sections-dropdown__primary-item {
        padding: 10px;
    }

    .sections-dropdown__primary-icon {
        width: 26px;
        height: 26px;
    }

    .sections-dropdown__secondary-icon-wrapper {
        width: 32px;
        height: 32px;
    }

    .sections-dropdown__secondary-icon-wrapper svg {
        width: 12px;
        height: 14px;
    }

    .header .header__menu li a:not(.support-btn__list-item-link) {
        font-size: 12px;
    }

    .support-btn__text {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .sections-dropdown__primary {
        padding-left: 68px;
    }

    .sections-dropdown__inner {
        grid-template-columns: 1fr 1fr;
    }

    .sections-dropdown__news {
        display: none;
    }

    .sections-dropdown__secondary {
        border-right: none;
        padding-right: 68px;
    }

    .sections-dropdown__primary-link {
        font-size: 14px;
    }

    .sections-dropdown__group-title {
        font-size: 16px;
    }

    .sections-dropdown__secondary-link {
        font-size: 14px;
    }

    .sections-dropdown__secondary-text {
        font-size: 12px;
    }

    .sections-dropdown__secondary-icon-wrapper {
        width: 32px;
        height: 32px;
    }

    .sections-dropdown__secondary-icon-wrapper svg {
        width: 14px;
        height: 17px;
    }

    .sections-dropdown__news::after {
        background: none;
    }

    .header__nav {
        display: none;
    }

    .header__search {
        width: auto;
    }

    .header__search-empty {
        font-size: 10px;
    }

    .header__search .header__search-form{
        display: none !important;
    }

    .header__search .mobile-search-icon {
        display: flex;
        cursor: pointer;
    }

    .header__search-input {
        width: 100%;
    }

    .header__search-input::placeholder {
        color: #7A92AF;
        opacity: 1;
    }

    .header__search .mobile-search-icon-disabled {
        background-color: #F5F8FF;
        border: none;
        cursor: default;
    }

    .header__inner {
        justify-content: space-between;
    }

    .header__logoInner {
        order: 1;
        margin-left: auto;
        margin-right: auto;
        transform: translateX(-30%);
    }

    .header__sections-wrapper {
        order: 0;
    }

    .header__search {
        order: 2;
    }

    .sections-dropdown__primary-item {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .header__logo {
        width: 101px;
        height: 24px;
    }

    .header__logo-label {
        margin-right: 5px;
        font-size: 10px;
    }

    .hero__search-form {
        height: 52px;
    }

    .hero {
        padding: 68px 0 96px;
    }

    .hero__description {
        font-size: 14px;
    }

    .hero__search-input {
        font-size: 12px;
    }

    .hero__hint {
        font-size: 12px;
    }

    .header__sections-btn-icon--close {
        width: 9px;
        height: 9px;
    }

    .sections-dropdown__primary li.menu-item {
        padding: 16px;
        background: #F5F8FF;
        margin-bottom: 8px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        transition: background 0.2s;
        line-height: normal;
        font-size: 14px;
        color: #334155;
    }

    .sections-dropdown__header-menu li a {
        position: relative;
        display: block;
        width: 100%;
        padding-right: 40px;
    }

    .sections-dropdown__header-menu li a::after{
        content: "";
        position: absolute;
        right: 16px;
        top: 50%;
        width: 7px;
        height: 7px;
        border-right: 2px solid #CBDBED;
        border-bottom: 2px solid #CBDBED;
        transform: translateY(-50%) rotate(-45deg);
        display: block;
        pointer-events: none;
    }

    .sections-dropdown__primary li.menu-item:hover {
        background: #eff6ff;
    }

    .sections-dropdown__primary-icon {
        width: 24px;
        height: 24px;
    }

    .sections-dropdown__primary li.menu-item a:hover {
        color: #3b82f6;
    }

    .sections-dropdown__primary li.menu-item a {
        text-decoration: none;
        color: #334155;
        font-weight: 500;
        flex: 1;
    }

    .sections-dropdown__primary-list {
        display: none;
    }

    .sections-dropdown__primary-icon {
        width: 32px;
        height: 32px;
    }

    .sections-dropdown__news {
        display: none;
        background: #fff;
        padding-left: 0;
        padding-right: 0;
    }

    .header-menu-mobile {
        display: block;
    }

    .header-menu-mobile footer {
        background: #fff;
        padding: 0;
    }

    .header-menu-mobile .container__footer {
        background: #fff;
        padding: 0;
    }

    .header-menu-mobile .footer__main {
        gap: 20px;
        border: none;
    }

    .header-menu-mobile .footer__brand {
        display: none;
    }

    .header-menu-mobile .footer__bottom {
        display: none;
    }

    .header--home .sections-dropdown {
        height: 66%;
    }

    .header-logo-mobile {
        display: flex;
        align-items: center;
        padding: 0 0 16px 0;
        gap: 24px;
        margin-top: -8px;
    }

    .header-logo-mobile .header__logoInner {
        order: 0;
        margin-left: 0;
        margin-right: auto;
        transform: none;
    }

    .header-menu-mobile .header__sections-btn {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .sections-dropdown {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0;
        transform: translateX(100%);
        max-height: 100vh;
        overflow-y: auto;
    }

    .header__sections-wrapper.open .sections-dropdown {
        transform: translateX(0);
        padding-left: 68px;
        padding-right: 68px;
    }

    .sections-dropdown__inner {
        display: flex;
        flex-direction: column;
        min-height: 100%;
        padding: 0;
    }

    .sections-dropdown__news-items .divider:first-of-type {
        border: 1px solid #E8EEF5;
    }

    .sections-dropdown__mobile-header {
        display: flex;
    }

    .sections-dropdown__mobile-header.hidden {
        display: none;
        margin: 0;
    }

    .sections-dropdown__primary {
        border-right: none;
        max-height: none;
        flex: 0 0 auto;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    .sections-dropdown__primary-item {
        padding: 10px;
        background: #F5F8FF;
        margin-bottom: 8px;
        border-radius: 16px;
    }

    .sections-dropdown__primary-item:hover,
    .sections-dropdown__primary-item.active {
        background: #eff6ff;
    }

    .sections-dropdown__primary-arrow {
        display: block;
    }

    .sections-dropdown__secondary {
        display: none;
        border-right: none;
        padding: 16px;
    }

    .sections-dropdown__secondary.mobile-active {
        display: block;
    }

    .sections-dropdown__news-header {
        margin-bottom: 16px;
    }

    .sections-dropdown__news-items {
        display: flex;
        gap: 32px;
        padding: 0;
        scrollbar-width: none;
        flex-direction: row;
    }

    .sections-dropdown__news-items::-webkit-scrollbar {
        display: none;
    }

    .sections-dropdown__news-item {
        min-width: 0;
        flex: 1 1 0;
        margin-bottom: 0;
        position: relative;
    }
}

@media (max-width: 600px) {
    .header-menu-mobile .footer__main {
        margin-top: 24px;
        flex-direction: column;
        display: flex;
        gap: 40px;
    }

    .header__sections-wrapper.open .sections-dropdown {
        padding: 0;
        height: 90%;
    }

    .sections-dropdown__news-header {
        margin-bottom: 30px;
    }

    .sections-dropdown__inner {
        padding-left: 16px;
        padding-right: 16px;
    }

}

@media (max-width: 480px) {
    .hero__search-btn {
        padding: 10px 22px;
        font-size: 12px;
    }

    .hero {
        padding: 105px 0 78px;
    }


    .hero__description {
        font-size: 12px;
    }

    .hero__hint {
        font-size: 8px;
    }

    .header-logo-mobile {
        flex-direction: row-reverse;
    }

    .header__logoInner {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .header__logoInner.right {
        right: 60%;
        left: auto;
    }

    .header--home .sections-dropdown {
        height: 100%;
    }

    .header__search-item-title {
        font-size: 12px;
    }

    .hero__search-dropdown .header__search-item-title {
        padding-left: 16px;
    }

    .sections-dropdown__news-items {
        flex-direction: column;
        gap: 16px;
    }

    .sections-dropdown__news-all-short {
        font-size: 16px;
    }

    .hero__search-form svg {
        position: absolute;
        left: 13px;
    }

    .hero {
        padding-top: 46px;
    }

    .hero__description {
        margin-bottom: 30px;
    }

}

@media (max-width: 374px) {
    .header__inner {
        padding: 12px 0;
        gap: 12px;
    }

    .sections-dropdown__primary {
        padding: 16px 12px;
    }

    .sections-dropdown__primary-item {
        padding: 14px 12px;
    }

    .sections-dropdown__news {
        padding: 20px 12px;
    }

    .header__search-dropdown {
        min-width: 0;
    }
}