/*
    здесь мы прописываем общие блоки, присутсвующие на многих страницах, их размеры, размеры и расстановку содержимого
*/

.block_container {
    position: relative;
}
.block_content_container {
    --block-content-padding: 100px;
    --first-content-block-margin-t: 54px;
    --block-title-margin-b: 36px;
    --anchor-container-padding-t: 40px;
    --anchor-container-padding-b: 48px;
    position: relative;
    padding: var(--block-content-padding) 0;
}
.main_content_container.bc_tranquile .block_content_container,
.main_content_container.bc_dark .block_content_container {
    padding: 0;
}
.main_content_container.bc_white:not(.main_header_block) + .main_content_container.bc_white:not(.main_header_block) .block_content_container {
    padding-top: 0;
}
.main_content_container.main_header_block + .main_content_container.bc_white .block_content_container {
    padding-top: var(--first-content-block-margin-t);
}

.block_container > .section_link {
    position: absolute;
    right: 0;
    top: 0;
    float: right;
}

.block_container > [class$="_block"] .block_title,
.block_container .content_title .block_title {
    margin-bottom: var(--block-title-margin-b);
}

.block_container > [class$="_block"] .block_group_name,
.block_container .block_group_name {
    display: flex;
    flex-direction: row;
    gap: var(--margin);
    justify-content: space-between;
    align-items: baseline;
}

@media (max-width: 750px) {
    .block_container > [class$="_block"] .block_group_name,
    .block_container .block_group_name {
        display: flex;
        flex-direction: column;
        gap: var(--margin);
        justify-content: space-between;
        align-items: baseline;
    }
}


.block_container .block_title + .link_container {
    margin-top: 30px;
}

.entity_block .block_title + * {
    margin-top: var(--margin-top);
}


@media all and (max-width: 1400px) {
    .block_content_container {
        --first-content-block-margin-t: 46px;
        --block-content-padding: 80px;
        --block-title-margin-b: 30px;
        --anchor-container-padding-b: 36px;
    }
}
@media all and (max-width: 1240px) {
    .block_content_container {
        --first-content-block-margin-t: 48px;
        --block-content-padding: 84px;
        --block-title-margin-b: 36px;
        --anchor-container-padding-b: 48px;
    }
}
@media all and (max-width: 1000px) {
    .block_content_container {
        --block-title-margin-b: 24px;
        --anchor-container-padding-b: 36px;
    }    
}
@media all and (max-width: 750px) {
    .block_content_container {
        --first-content-block-margin-t: 32px;
        --block-content-padding: 64px;
        --block-title-margin-b: 18px;
        --anchor-container-padding-t: 24px;
        --anchor-container-padding-b: 32px;
    }
}



.main_content_container.anchor_link_container .block_content_container {
    padding-top: var(--anchor-container-padding-t) !important;
    padding-bottom: var(--anchor-container-padding-b) !important;
}
.main_content_container.yandex_map_container .block_content_container.page_content_width {
   width: 100%;
}



.block_columns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: var(--margin);
}

.block_container_column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}
.block_columns .block_container {
}
.block_columns .block_container:first-of-type:last-of-type {
    width: 100%;
}
.block_columns .block_container:first-child {
    flex-grow:1;
}
.float_blocks {
    display: block;
}
.float_blocks .block_column_left {
    float: left;
}
.float_blocks .block_column_left:nth-child(1) {
    margin-bottom: 30px;
}
.float_blocks .block_column_right {
    float: right;
}

@media all and (max-width: 1240px) {
    .block_columns .block_column_left,
    .block_columns .block_column_right,
    .block_columns .block_container_column,
    .block_columns .block_container_column:nth-child(1),
    .block_columns .block_container_column:nth-child(2) {
        width: 100%;
    }
}
@media all and (max-width: 1000px) {
    .block_columns {
        flex-direction: column;
    }
}

.hidden {
    display: none !important;
    margin: 0;
    padding: 0;
}


.flex_1440, .block_1440, 
.flex_1280, .block_1280, 
.flex_1024, .block_1024, 
.block_768, .flex_768, 
.block_375, .flex_375 {
    display: none !important;
}

@media (max-width: 1600px) {

    .hidden_1440 {
        display: none !important;
    }

    .flex_1440 {
        display: flex !important;
    }

    .block_1440 {
        display: block !important;
    }
}

@media (max-width: 1400px) {

    .flex_1280 {
        display: flex !important;
    }

    .block_1280 {
        display: block !important;
    }
}

@media (max-width: 1240px) {

    .hidden_1024 {
        display: none !important;
    }

    .flex_1024 {
        display: flex !important;
    }

    .block_1024 {
        display: block !important;
    }
}

@media (max-width: 1000px) {

    .hidden_768 {
        display: none !important;
    }

    .flex_768 {
        display: flex !important;
    }

    .block_768 {
        display: block !important;
    }
}

@media (max-width: 750px) {

    .hidden_375 {
        display: none !important;
    }

    .block_375 {
        display: block !important;
    }

    .flex_375 {
        display: flex !important;
    }
}

/* - MAIN PART BLOCK- */

.header_block {
    --header-block-padding: 56px;
    --breadcrumb-margin-b: 28px;
    --page-title-margin-b: 38px;
    --header-tabs-margin-b: calc( 24px - var(--header-block-padding) );
    --block-container-offset-top: 24px;
    padding: var(--header-block-padding) 0;
}

.header_block .page_title {
    margin-bottom: var(--page-title-margin-b);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.header_block .page_title:last-child {
    margin-bottom: 0;
}

.header_block .page_title ~ .block_container,
.header_block .page_description ~ .block_container {
    margin-top: var(--block-container-offset-top);
}

.header_block .breadcrumbs_block {
    position: relative;
    width: 100%;
    margin-bottom: var(--breadcrumb-margin-b);
}

.header_block .btn_container {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header_block .block_text {
    width: var(--column5);
}

.header_block .filter_options_list {
    margin-top: 38px;
    margin-bottom: var(--header-tabs-margin-b);
}

.header_block .filter_options_list.extended{
    margin-top: 18px;
}

@media (max-width: 1600px) {
    .header_block {
        --header-block-padding: 52px;
        --breadcrumb-margin-b: 30px;
    }
}

@media (max-width: 1400px) {

    .header_block {
        --header-block-padding: 46px;
        --breadcrumb-margin-b: 24px;
        --page-title-margin-b: 30px;
    }
}

@media (max-width: 1240px) {
    .header_block {
        --header-block-padding: 42px;
        --breadcrumb-margin-b: 22px;
        --page-title-margin-b: 14px;
    }
}

@media (max-width: 1000px) {
    .header_block {
    }

    .header_block .block_text {
        width: 100%;
    }
}

@media (max-width: 750px) {
    .header_block {
        --header-block-padding: 32px;
        --breadcrumb-margin-b: 18px;
        --page-title-margin-b: 10px;
        --header-tabs-margin-b: 0; 
        --block-container-offset-top: 32px;
    }

    .header_block .btn_container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 26px;
    }
    
    .header_block .page_title {
        flex-direction: column;
        row-gap: 15px;
    }
}


/* -END MAIN PART BLOCK- */

/* MUSEUM HEADER BLOCK */

.header_museum_block {
    --header-museum-block-padding-t: 82px;
    --header-museum-block-padding-b: 56px;
    --page-title-margin-b: 38px;
    --tabs-margin-b: 30px;
    padding-top: var(--header-museum-block-padding-t);
    padding-bottom: var(--header-museum-block-padding-b);
}

.header_museum_block .page_title {
    margin-bottom: var(--page-title-margin-b);
}

.header_museum_block .page_description .block_container {
    display: flex;
    align-items: center;
    gap: var(--margin);
}

.header_museum_block .tabs_container {
    position: relative;
    width: 100%;
    margin-bottom: var(--tabs-margin-b);
}

.header_museum_block .tabs_container li {
    white-space: nowrap;
}

.header_museum_block .block_text {
    width: var(--column4);
}

@media (max-width: 1600px) {
    .header_museum_block {
        --header-museum-block-padding-t: 57px;
        --header-museum-block-padding-b: 54px;
    }
}

@media (max-width: 1400px) {
    .header_museum_block {
        --header-museum-block-padding-t: 46px;
        --header-museum-block-padding-b: 46px;
        --page-title-margin-b: 22px;
    }
}

@media (max-width: 1240px) {
    .header_museum_block {
        --header-museum-block-padding-t: 38px;
        --header-museum-block-padding-b: 38px;
    }
}

@media (max-width: 1000px) {
    .header_museum_block {
        --header-museum-block-padding-t: 46px;
        --header-museum-block-padding-b: 46px;
    }

    .header_museum_block .page_description .block_container {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .header_museum_block .block_text {
        width: 100%;
    }
}

@media (max-width: 750px) {
    .header_museum_block {
        --header-museum-block-padding-t: 28px;
        --header-museum-block-padding-b: 32px;
        --page-title-margin-b: 12px;
        --tabs-margin-b: 24px;
    }

    .header_museum_block .page_description .block_container {
        gap: 22px;
    }
}

/* END MUSEUM HEADER BLOCK */

/* AGENT HEADER BLOCK */
.agent_header_block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: var(--margin);
}
.agent_header_block .img_container {
    height: 174px;
    width: 174px;
    flex-shrink: 0;
}
.agent_header_block .img_container img {
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.agent_header_block .block_title {
    margin-bottom: var(--page-title-margin-b);
}
.agent_header_block .btn_container {
    margin-top: var(--block-container-offset-top);
}
@media (max-width: 750px){
    .agent_header_block {
        flex-direction: column;
    }
}
/* END AGENT HEADER BLOCK */



/* -navigator block- */
.navigator_block {
}
/* -end navigator block- */

/* -rating block- */
.rating_container {
    position: relative;
}
.rating_value {
    display: flex;
    gap: 5px;
    align-items: center;
    cursor: pointer;
}

.rating_value:before {
    background: url("data:image/svg+xml,%3Csvg width='16' height='15' viewBox='0 0 16 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 1.85039L9.88593 4.78659L10.0965 5.11442L10.4734 5.21337L13.8486 6.09966L11.6389 8.80063L11.3922 9.10219L11.4145 9.49118L11.6147 12.9751L8.36304 11.7082L8 11.5668L7.63696 11.7082L4.38535 12.9751L4.58545 9.49118L4.60779 9.10219L4.36108 8.80063L2.15137 6.09966L5.52665 5.21337L5.9035 5.11442L6.11407 4.78659L8 1.85039Z' stroke='%2303A678' stroke-width='2'/%3E%3C/svg%3E%0A") no-repeat center;
    background-size: 100%;
    display: inline-block;
    width: 16px;
    height: 16px;
    content: "";
}


.rating_list_container {
    position: absolute;
    margin-top: 25px;
    background: #2A3143;
    width: 100%;
    padding: 15px 10px;
    text-align: center;
    z-index: 1;
    display: none;
}
.rating_list_container>li+li {
    margin-top: 5px;
}
.rating_list_container>li>a {
    color: #aaadb4;
}
.rating_list_container>li>a:hover {
    color: white;
}
.rating_container.expanded .rating_list_container {
    display: initial;
}

/* -end rating block- */
/* -DOCUMENTS- */
.document_block {
    --document-block-distance: 54px;
    --document-block-title-w: 911px;
    --document-description-margin-t: 14px;
}
.document_block .search_form {
    margin-bottom: var(--margin-top);
}

.document_group + .document_group {
    margin-top: var(--document-block-distance);
}

.document_group .document_group_title {

}

.document_group .tab_list {
    row-gap: 10px;
    margin-top: var(--margin-top2);
}

.document_group .tab_list .tab_link.loading:after {
    content: ' ';
    height: 1.2em;
    width: 1.2em;
    display: inline-block;
    vertical-align: text-top;
    margin-left: 0.5em;
    background: url(/common/core/img/icons/loader.svg) no-repeat center;
    background-size: cover;
}

.document_group .document_group_name {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
/*    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: 28px;*/
    color: #2A3143;
}

.document_group .document_group_name .block_title {
    margin: 0;
}

.document_group .block_description,
.document_group .document_group_description  {
    margin-top: var(--document-description-margin-t);
}

.document_group .document_group_text {
    width: var(--document-block-title-w);
}

.document_group .two_columns_group {
    display: flex;
    gap: var(--margin);
}

.document_group * + .document_list {
    margin-top: var(--margin-top);
}

.document_group .document_list {
    width: var(--page-content);
}
.document_group .document_list,
.document_group .document_list.ls_lines {
    display: flex;
    gap: 24px;
    flex-direction: column;
}

.document_group .document_list.ls_plates {
    display: flex;
    gap: var(--margin);
    flex-direction: row;
    overflow: hidden;
}

.document_group .ls_plates.all_list {
    flex-wrap: wrap;
    overflow: initial;
}

.document_group .button_more {
    display: flex;
    justify-content: center;
    margin-top: var(--margin);
    align-items: center;
}
.document_group.short .button_more {
    margin-top: var(--margin-top2);
}

@media (max-width: 1600px) {
    .document_block {
        --document-block-title-w: 792px;
    }/*
    .document_group .document_group_name {
        font-size: 20px;
    }*/
}

@media (max-width: 1400px) {
    .document_block {
        --document-block-title-w: 700px;
    }
    .document_group .link_container {
        margin-bottom: 30px;
    }/*
    .document_group .document_group_name {
        font-size: 18px;
        line-height: 25px;
    }*/
}

@media (max-width: 1240px) {
    .document_block {
        --document-block-title-w: 774px;
    }/*
    .document_group .document_group_name {
        font-size: 20px;
        line-height: 28px;
    }*/
}

@media (max-width: 1000px) {
    .document_block {
        --document-block-distance: 40px;
        --document-block-title-w: 517px;
    }

    .document_group .two_columns_group {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 750px) {
    .document_block {
        --document-block-title-w: 100%;
    }
    .document_group {
        --document-description-margin-t: 10px;
    }

    .document_group .section_link {
        margin-top: 26px;
    }

    .document_group .document_list,
    .document_group .document_list.ls_lines {
        flex-direction: column;
        gap: 20px;
    }
}

/* --END DOCUMENTS */

/* -MINISTERS BLOCK- */

.ministers_block {
    padding: 0;
    padding-top: 40px;
}
.ministers_block_without_anchors {
    padding: 0;
    padding-top: 100px;
}

.ministers_group {
    margin: 0;
    padding: 0;
    padding-bottom: 100px;
}

.ministers_group .ministers_group_title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ministers_group .tab_list {
    row-gap: 10px;
}

.ministers_group .ministers_group_name {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.ministers_group .ministers_group_name .block_title {
    margin: 0;
}

.ministers_group .ministers_group_title .link_container {
    margin-top: 24px;
}

.ministers_group .link_container {
    margin-bottom: 34px;
}

@media (max-width: 1400px) {

    .ministers_block_without_anchors {
        padding-top: 80px;
    }

    .ministers_group .link_container {
        margin-bottom: 30px;
    }

    .ministers_group .ministers_group_title .link_container_with_tabs {
        margin-top: 20px;
    }
}

@media (max-width: 1240px) {

    .ministers_block_without_anchors {
        padding-top: 84px;
    }

    .ministers_group .ministers_group_title .link_container_with_tabs {
        margin-top: 20px;
    }
}

@media (max-width: 1000px) {

    .ministers_block {
        padding-top: 40px;
    }
}

@media (max-width: 750px) {

    .ministers_block_without_anchors {
        padding-top: 64px;
    }
}

/* -END MINISTERS BLOCK- */

/* -NUMBERED LINK BLOCK- */
.menu_list_block {
    width: inherit;
    --menu-list-row-gap: 30px;
}
.menu_list_block .menu_list_name {
    display: flex;
    justify-content: space-between;
    column-gap: var(--margin);
    align-items: baseline;
}

.menu_list_block .menu_item + .menu_item {
    margin-top: var(--menu-list-row-gap);
}
@media all and (max-width: 1400px) {
    .menu_list_block {
        --menu-list-row-gap: 23px;
    }
}
@media all and (max-width: 1240px) {
    .menu_list_block {
        --menu-list-row-gap: 30px;
    }
}
@media all and (max-width: 750px) {
    .menu_list_block {
        --menu-list-row-gap: 25px;
    }
}

/* -END NUMBERED LINK BLOCK- */

/* -Perfomance link list block- */


.perfomance_menu {
    --card-height: 260px;
    width: 100%;
    display: flex;
    gap: var(--margin);
    flex-direction: row;
    flex-wrap: wrap;
}

    .perfomance_menu li {
        min-height: var(--card-height);
        width: var(--column3);
        background-color: #F8F8F8;
        flex-grow: 0;
        flex-shrink: 0;
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        cursor: pointer;
        background-repeat: no-repeat;
        background-position: bottom right;
        background-size: contain;
    }

    .perfomance_menu .item_title {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        line-clamp: 6;
        -moz-line-clamp: 6;
        -webkit-line-clamp: 6;
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media all and (max-width: 750px) {
    .perfomance_menu {
        --card-height: 226px;
        flex-direction: column;
    }

        .perfomance_menu li {
            width: 100%;
        }

        .perfomance_menu .item_title {
            line-clamp: 5;
            -moz-line-clamp: 5;
            -webkit-line-clamp: 5;
        }
}

.perfomance_menu li:hover {
    background-color: #2A3143;
}

    .perfomance_menu li:hover .item_title,
    .perfomance_menu li .link_arrow:hover {
        color: white;
    }

        .perfomance_menu li .link_arrow:hover:after {
            background-image: url(/common/core/img/icons/arrow_link_right.svg#white);
        }

.perfomance_menu li.bg_perfomance_menu_1 {
    background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_1.svg#gray);
}

    .perfomance_menu li.bg_perfomance_menu_1:hover {
        background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_1.svg#white);
    }

.perfomance_menu li.bg_perfomance_menu_2 {
    background-image: url(/common/core/img/bgs/perfomance/tax_relations.svg#gray);
}

    .perfomance_menu li.bg_perfomance_menu_2:hover {
        background-image: url(/common/core/img/bgs/perfomance/tax_relations.svg#white);
    }

.perfomance_menu li.bg_perfomance_menu_3 {
    background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_3.svg#gray);
}

    .perfomance_menu li.bg_perfomance_menu_3:hover {
        background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_3.svg#white);
    }

.perfomance_menu li.bg_perfomance_menu_4 {
    background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_4.svg#gray);
}

    .perfomance_menu li.bg_perfomance_menu_4:hover {
        background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_4.svg#white);
    }

.perfomance_menu li.bg_perfomance_menu_5 {
    background-image: url(/common/core/img/bgs/perfomance/nationalwealthfund.svg#gray);
    background-size: 281px 174px;
}

    .perfomance_menu li.bg_perfomance_menu_5:hover {
        background-image: url(/common/core/img/bgs/perfomance/nationalwealthfund.svg#white);
    }

.perfomance_menu li.bg_perfomance_menu_6 {
    background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_6.svg#gray);
    background-size: 283px 218px;
}

    .perfomance_menu li.bg_perfomance_menu_6:hover {
        background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_6.svg#white);
    }

.perfomance_menu li.bg_perfomance_menu_7 {
    background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_7.svg#gray);
    background-size: 216px 199px;
}

    .perfomance_menu li.bg_perfomance_menu_7:hover {
        background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_7.svg#white);
    }

.perfomance_menu li.bg_perfomance_menu_8 {
    background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_8.svg#gray);
}

    .perfomance_menu li.bg_perfomance_menu_8:hover {
        background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_8.svg#white);
    }

.perfomance_menu li.bg_perfomance_menu_9 {
    background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_9.svg#gray);
}

    .perfomance_menu li.bg_perfomance_menu_9:hover {
        background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_9.svg#white);
    }

.perfomance_menu li.bg_perfomance_menu_10 {
    background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_10.svg#gray);
    background-size: 283px 220px;
}

    .perfomance_menu li.bg_perfomance_menu_10:hover {
        background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_10.svg#white);
    }

.perfomance_menu li.bg_perfomance_menu_11 {
    background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_11.svg#gray);
}

    .perfomance_menu li.bg_perfomance_menu_11:hover {
        background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_11.svg#white);
    }

.perfomance_menu li.bg_perfomance_menu_12 {
    background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_12.svg#gray);
    background-size: 300px 209px;
}

    .perfomance_menu li.bg_perfomance_menu_12:hover {
        background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_12.svg#white);
    }

.perfomance_menu li.bg_perfomance_menu_13 {
    background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_13.svg#gray);
    background-size: 215px 168px;
}

    .perfomance_menu li.bg_perfomance_menu_13:hover {
        background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_13.svg#white);
    }

.perfomance_menu li.bg_perfomance_menu_14 {
    background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_14.svg#gray);
}

    .perfomance_menu li.bg_perfomance_menu_14:hover {
        background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_14.svg#white);
    }

.perfomance_menu li.bg_perfomance_menu_15 {
    background-image: url(/common/core/img/bgs/perfomance/contracts.svg#gray);
    background-size: 293px 228px;
}

    .perfomance_menu li.bg_perfomance_menu_15:hover {
        background-image: url(/common/core/img/bgs/perfomance/contracts.svg#white);
    }

.perfomance_menu li.bg_perfomance_menu_16 {
    background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_16.svg#gray);
    background-size: 308px 168px;
}

    .perfomance_menu li.bg_perfomance_menu_16:hover {
        background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_16.svg#white);
    }

.perfomance_menu li.bg_perfomance_menu_17 {
    background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_17.svg#gray);
}

    .perfomance_menu li.bg_perfomance_menu_17:hover {
        background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_17.svg#white);
    }

.perfomance_menu li.bg_perfomance_menu_18 {
    background-image: url(/common/core/img/bgs/perfomance/fias.svg#gray);
    background-size: 338px 206px;
}

    .perfomance_menu li.bg_perfomance_menu_18:hover {
        background-image: url(/common/core/img/bgs/perfomance/fias.svg#white);
    }

.perfomance_menu li.bg_perfomance_menu_19 {
    background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_19.svg#gray);
    background-size: 338px 206px;
}

    .perfomance_menu li.bg_perfomance_menu_19:hover {
        background-image: url(/common/core/img/bgs/perfomance/background_perfomance_menu_19.svg#white);
    }

/* -End Perfomance link list block- */

/* -PURPOSES BLOCK- */
.purpose_block {
    --purpose-gap: 24px;
    --purpose-p-b: 20px;
}
.purpose_block .purpose_list .purpose_item {
    padding-bottom: var(--purpose-p-b);
    border-bottom: 2px solid #D4D6D9;
}
.purpose_block .purpose_list .purpose_item + .purpose_item {
    margin-top: var(--purpose-gap);
}
@media all and (max-width: 1600px) {
    .purpose_block {
        --purpose-gap: 20px;
        --purpose-p-b: 26px;
    }
}
@media all and (max-width: 1400px) {
    .purpose_block {
        --purpose-gap: 24px;
        --purpose-p-b: 24px;
    }
}
@media all and (max-width: 1240px) {
    .purpose_block {
        --purpose-gap: 22px;
        --purpose-p-b: 26px;
    }
}
@media all and (max-width: 1000px) {
    .purpose_block {
        --purpose-gap: 23px;
        --purpose-p-b: 23px;
    }
}
@media all and (max-width: 750px) {
    .purpose_block {
        --purpose-p-b: 16px;
    }
}




/* -END PURPOSES BLOCK- */



/* -SECTION BLOCK- */

.section_block {
    padding: 0;
    padding-top: 40px;
}

.section_block_without_anchors {
    padding: 0;
    padding-top: 100px;
}

.section_group {
    margin: 0;
    padding: 0;
    padding-bottom: 100px;
}

.section_group .section_group_title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section_group .tab_list {
    row-gap: 10px;
}

.section_group .section_group_name {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.section_group .section_group_name .block_title {
    margin: 0;
}

.section_group .section_group_title .link_container {
    margin-top: 24px;
}

.section_group .link_container {
    margin-bottom: 34px;
}

@media (max-width: 1400px) {

    .section_block_without_anchors {
        padding-top: 80px;
    }
}

@media (max-width: 1240px) {

    .section_block_without_anchors {
        padding-top: 84px;
    }
}

@media (max-width: 750px) {
    .section_block_without_anchors {
        padding-top: 64px;
    }
}

/* -END SECTIONS BLOCK- */

/* -INFORMATION BLOCK- */

.information_block {
    padding: 85px 0;
}

@media (max-width: 1600px) {
    .information_block {
        padding: 100px 0;
    }
}

@media (max-width: 1400px) {

    .information_block {
        padding-top: 80px;
    }
}

@media (max-width: 1240px) {
    .information_block {
        padding-top: 85px;
    }
}

@media (max-width: 1000px) {
    .information_block {
        padding: 85px 0;
    }
}

@media (max-width: 750px) {
    .information_block {
        padding: 64px 0;
    }
}

/* -END INFORMATION BLOCK- */

/* RESOURCE LIST */

.resource_block .resource_block_title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--margin-top);
}

.resource_list.ls_plates {
	--card-height: 296px;
	--card-margin: var(--margin);
	gap: var(--card-margin);
	display: flex;
    overflow: hidden;
}

.resource_list.ls_plates > .resource_card {
	width: var(--column2);
	height: var(--card-height);
	overflow: hidden;
    flex-shrink: 0;
}

@media all and (max-width: 1600px) {	
	.resource_list.ls_plates {
		--card-height: 260px;
	}
	
	.resource_list .resource_card .follow_btn {
		background-size: 40px;
		height: 42px;
		width: 42px;
		right: 20px;
		bottom: 20px;
	}
}

@media all and (max-width: 1400px) {
	.resource_list .resource_card .follow_btn {
		background-size: 40px;
		height: 42px;
		width: 42px;
		right: 24px;
		bottom: 24px;
	}

}

@media all and (max-width: 1000px) {
	.resource_list.ls_plates > .resource_card {
		width: var(--column3);
	}
}

@media all and (max-width: 750px) {
	.resource_list.ls_plates {
		gap: 0px;
	}
	
	.resource_list.ls_plates > .resource_card {
		width: var(--column4);
	}
}

/* END RESOURCE LIST */

/* -ANSWERS BLOCK- */
.faq_block {
}
    .faq_block .faq_group_name {
        display: flex;
        gap: var(--margin);
        justify-content: space-between;
        align-items: baseline;
    }


.answers_block .link_container {
    margin-bottom: 34px;
}

.answers_block .block_title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.question_list {
    display: flex;
    flex-direction: column;
}

.question_item {
    cursor: pointer;
    padding-bottom: 20px;   
    border-bottom: 2px solid #D4D6D9;
    display: flex;
    gap: 19px;
}
.question_item::before {
    background-image: url(/common/core/img/icons/plus-expand.svg);
	background-position: top;
	width: 21px;
    height: 21px;
    background-repeat: no-repeat;
    display: inline-block;
    margin-top: 5px;
    margin-left: 1px;
    content: "";
    flex-shrink: 0;
}
.question_item.expanded::before {
    background-image: url(/common/core/img/icons/plus-expand.svg#expanded);
}
.question_item + .question_item {
    margin-top: 20px;
}
.question_item .question_title {
    text-align: start;
}
.question_item .question_answer {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 0;
    overflow: hidden;
    visibility:hidden;
}
.question_item.expanded .question_answer {
    max-height: 100%;
    margin-top: 16px;
    visibility: visible;
}
.question_item .answer_info {
    display: flex;
    align-items: center;
    gap: 25px;
}
.question_item.answer_info .date_list .date {
	color: #7F838E;
	font-weight: normal;
	font-size: 14px;
    line-height: 22px;
}
.bc_dark .question_item .answer_info .date_list .date {
    color: #aaadb4;
}

@media (max-width: 750px) {
    .answers_block .link_container {
        margin-bottom: 24px;
    }
    .question_item .answer_info {
        display: flex;
        flex-direction: column;
        align-items: baseline;
        gap: 14px;
    }
    .question_item .answer_info .tag_list {
        white-space: normal;
    }
    .question_item .answer_info .date_list .date {
        color: #7F838E;
        font-weight: normal;
        font-size: 14px;
        line-height: 22px;
    }
    .bc_dark .question_item .answer_info .date_list .date {
        color: #aaadb4;
    }
}

/* -END ANSWERS BLOCK- */

/* -ORGANIZATION BLOCK- */

.organization_block {
    --organization-group-title-margin-b: 32px;
}

.organization_group {
    margin: 0;
    padding: 0;
}
.organization_group + .organization_group {
    margin-top: var(--margin-top);
}
.organization_group .organization_group_title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: var(--organization-group-title-margin-b);
}

.organization_group .organization_group_name {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.organization_group .organization_group_name .block_title {
    margin: 0;
}

.organization_list {
    display: flex;
    gap: 50px;
    flex-direction: column;
}

.organization_item {
    display: flex;
    flex-direction: column;
}

.organization_sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.organization_section:first-of-type .organization_section_title_text {
    margin-top: 20px;
}

.organization_details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.organization_details_list {
    display: flex;
}

.organization_details_list_two_columns {
    gap: var(--margin);
    justify-content: space-between;
}

.organization_details_list > li {
    width: 100%;
}

.organization_details_list_two_columns > li {
    width: var(--column3);
}

.organization_details_list {
    display: flex;
}

.organization_details_item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 2px solid rgba(42, 49, 67, 0.15);
}

.organization_details_item_heading {
    color: #7F838E;
}

.organization_details_item_name {
    color: #2A3143;
}

@media (max-width: 1600px) {

    .organization_block {
        --organization-group-title-margin-b: 30px;
    }

    .organization_group .organization_group_title {
        margin-bottom: 30px;
    }

    .organization_group .organization_group_name .block_title {
        margin: 0;
    }

    .organization_list {
        gap: 64px;
    }


    .organization_sections {
        gap: 34px;
    }

    .organization_section:first-of-type .organization_section_title_text {
        margin-top: 24px;
    }

    .organization_details {
        margin-top: 0;
    }
}

@media (max-width: 1400px) {

    .organization_list {
        gap: 40px;
    }

    .organization_sections {
        gap: 34px;
    }

    .organization_section:first-of-type .organization_section_title_text {
        margin-top: 24px;
    }

    .organization_details_item {
        gap: 10px;
    }
}

@media (max-width: 1240px) {

    .organization_sections {
        gap: 38px;
    }

    .organization_section:first-of-type .organization_section_title_text {
        margin-top: 24px;
    }

    .organization_details_item {
        gap: 8px;
    }
}

@media (max-width: 1000px) {

    .organization_sections {
        gap: 34px;
    }

    .organization_section:first-of-type .organization_section_title_text {
        margin-top: 24px;
    }
}

@media (max-width: 750px) {

    .organization_group .organization_group_name {
        flex-direction: column;
        gap: 12px;
    }

    .organization_list {
        gap: 32px;
    }

    .organization_sections {
        gap: 24px;
    }

    .organization_section:first-of-type .organization_section_title_text {
        margin-top: 10px;
    }

    .organization_details {
        margin-top: 2px;
        gap: 12px;
    }

    .organization_details_list_two_columns {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .organization_details_list_two_columns > li {
        width: 100%;
    }

    .organization_details_item {
        padding: 14px 0;
    }
}

/* -END ORGANIZATION BLOCK- */

/* CONTACTS BLOCK */

.contact_item_list {
    margin-top: var(--margin-top);
    display: flex;
    flex-direction: row;
    column-gap: var(--margin);
    row-gap: 20px;
    flex-wrap: wrap;
}
.contact_item {
    width: var(--column3);
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(42, 49, 67, 0.15);
}
.contact_item:last-of-type {
    width: var(--column6);
}
.contact_item .schedule_item { border: none;}

.contact_item .contact_item_title,
.contact_item .schedule_days,
.contact_item .schedule_breaks {
    color: #7F838E;
}
.contact_item .contact_item_content {
    display: flex;
    flex-direction: column;
}
.contact_item .schedule_info {
    width: fit-content;
}
.contact_item .schedule_days {
    padding: 0 10px 0 0;    
}
.contact_item .schedule_times,
.contact_item .schedule_breaks {
    padding: 0;
}
@media (max-width: 1400px) {
    .contact_item {
        gap: 10px;
    }
}
@media (max-width: 1240px) {
    .contact_item {
        gap: 8px;
    }
}
@media (max-width: 750px) {
    .content_item_list {
        gap: 12px;
    }
    .contact_item,
    .contact_item:last-of-type {
        width: var(--column4);
        padding-bottom: 14px;
    }
}

/* END CONTACTS BLOCK */


/* -NEWS BLOCK- */

.related_news_block {
}

.related_news_block .related_news_name {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.related_news_block .block_title {
    color: #2A3143;
}

.news_block .block_title {
    margin: 0;
}

.news_block .news_group_text {
    width: 75%;
}

.news_block .news_group_name .section_link {
    margin-top: 1%;
}

/* --NEWS LIST WITH IMG BLOCK-- */

.news_list_with_two_cards_img {
    column-fill: balance;
    column-gap: var(--margin);
    --img-container-h: 232px;
    --img-container-margin-b: 28px;
    --right-cards-margin-t: 40px;
}

.news_list_with_two_cards_img .news_card_min {
    margin-top: 0;
    break-inside: avoid;
}

.news_list_with_two_cards_img .news_card_min .img_container {
    max-width: 100%;
    height: var(--img-container-h);
    margin-bottom: var(--img-container-margin-b);
    overflow: hidden;
    display: block;
}
.news_list_with_two_cards_img .news_card_min .img_container:nth-child(n+2){
    display: none;
}

.news_list_with_two_cards_img .news_card_min .img_container img {
    height: 100%;
    display: inline-block;
    width: 100%;
    object-fit: cover;
}

.news_list_with_two_cards_img .news_card_min:nth-child(n+4) {
    margin-top: var(--right-cards-margin-t);
}

@media all and (max-width: 1600px) {
    .news_list_with_two_cards_img {
        --img-container-h: 205px;
        --img-container-margin-b: 21px;
        --right-cards-margin-t: 22px;
    }
}

@media all and (max-width: 1400px) {
    .news_list_with_two_cards_img {
        --img-container-h: 193px;
        --img-container-margin-b: 19px;
        --right-cards-margin-t: 30px;
    }
}

@media all and (max-width: 1240px) {
    .news_list_with_two_cards_img {
        --img-container-h: 205px;
        --img-container-margin-b: 21px;
        --right-cards-margin-t: 22px;
    }
}

@media all and (max-width: 1000px) {
    .news_list_with_two_cards_img .news_card_min:nth-child(2) .img_container {
        display: none;
    }
    .news_list_with_two_cards_img .news_card_min:nth-child(3) {
        margin-top: var(--right-cards-margin-t);
    }
}

@media all and (max-width: 750px) {
    .news_list_with_two_cards_img {
        --right-cards-margin-t: 0;
    }
    .news_list_with_two_cards_img .news_card_min .img_container,
    .news_list_with_two_cards_img .news_card_min:nth-child(n+4) {
        display: none;
    }
    .news_list_with_two_cards_img .news_card_min {
        margin: 0;
        margin-bottom: 22px;
    }
}

/* -END NEWS LIST WITH IMG BLOCK- */

/* -END NEWS BLOCK- */

/* -TABLE LIST BLOCK- */

.table_container {
    overflow: auto;
}

.table_container .table_list {
    display: flex;
    flex-direction: column;
}

.table {
    display: flex;
	flex-direction: column;
	width: 100%;
}

.table .table_row {
    display: flex;
	flex-direction: row;
	width: 100%;
	border-bottom: 1px solid #D4D6D9;
}

.table .table_row:first-of-type {
	border-bottom: solid 2px #03A678;
}

.table .table_row .table_row_heading {
    display: flex;
    flex-shrink: 0;
	align-items: flex-end;
	color: #7F838E;
    padding: 0px 0 27px;
}

.table .table_row_heading .table_row_heading_button {
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='13' viewBox='0 0 9 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.04198 10.9034L4.04198 11.1878L4.44815 11.1878L4.44815 10.9034L7.18443 7.99992L7.46875 8.29662L4.24507 11.6875L1.02138 8.29662L1.28539 7.99992L4.04198 10.9034Z' fill='%237F838E' stroke='%237F838E'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.04198 1.78414L4.04198 1.49971L4.44815 1.49971L4.44815 1.78414L7.18443 4.68758L7.46875 4.39088L4.24507 1L1.02138 4.39088L1.28539 4.68758L4.04198 1.78414Z' fill='%237F838E' stroke='%237F838E'/%3E%3C/svg%3E%0A");
	display: inline-block;
    width: 9px;
    height: 13px;
    background-repeat:no-repeat;
}

.table .table_row_heading:last-of-type .table_row_heading_button {
    margin-left: 0;    
}

.table .table_row .table_row_description {
	color: #7F838E;
    padding: 24px 0;
    align-self: center;
}

@media (max-width: 1600px) {
    .table .table_row .table_row_heading {
        padding: 0px 0 20px;
    }

    .table .table_row .table_row_description {
        padding: 24px 0;
    }
}

@media (max-width: 1400px) {
    .table .table_row .table_row_heading {
        padding: 0px 0 15px;
    }

    .table .table_row .table_row_description {
        padding: 18px 0;
    }
}

@media (max-width: 1240px) {
    .table .table_row .table_row_heading {
        padding: 0px 0 21px;
    }

    .table .table_row .table_row_description {
        padding: 24px 0;
    }
}

@media (max-width: 1000px) {
    .table .table_row .table_row_heading {
        padding: 0px 0 11px;
    }

    .table .table_row .table_row_description {
        padding: 24px 0;
    }
}

@media (max-width: 750px) {
    .table .table_row .table_row_heading {
        padding: 0px;
    }

    .table .table_row:first-of-type {
        border-bottom: none;
    }

    .table .table_row .table_row_description {
        padding: 17px 0 16px;
    }
}

/* -END TABLE LIST BLOCK- */

/* -POINT LIST BLOCK- */

.point_list {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.point_item {
    list-style: url("data:image/svg+xml,%3Csvg width='9' height='8' viewBox='0 0 9 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4.5' cy='4' r='3' stroke='%2303A678' stroke-width='2'/%3E%3C/svg%3E%0A");
    margin-left: 38px;
}

/* -POINT LIST BLOCK- */

/* -MODAL WINDOW BLOCK- */

.modal_wrapper {
    display: none;
    position: fixed; /* фиксированное положение */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(42, 49, 67, 0.5); /* цвет фона */
    z-index: 1;
    margin: 0;
    padding: 0;
}

.modal_show {
    display: block;
}

/* при отображении модального окно */
.modal_wrapper:target {
    opacity: 1; /* делаем окно видимым */
	pointer-events: auto; /* элемент видим для событий мыши */
}
.modal_dialog {
    position: relative;
    width: 800px;
    margin: 97px auto 180px;
}

@media (max-width: 1600px) {
    .modal_dialog {
        margin: 34px auto 36px;
        width: 764px;
    }
}
@media (max-width: 1400px) {
    .modal_dialog {
        margin: 33px auto 27px;
        width: 708px;
    }
}
@media (max-width: 1240px) {
    .modal_dialog {
        margin: 19px auto 19px;
        width: 764px;
    }
}
@media (max-width: 1000px) {
    .modal_dialog:not(.scammers) {
        width: 710px;
        margin: 118px auto 176px
    }
}
@media (max-width: 750px) {
    .modal_dialog:not(.scammers) {
        width: 100%;
        height: 100%;
        min-width: auto;
        margin: 0;
    }
}

/* свойства для блока, содержащего контент модального окна */ 
.modal_window {
    position: relative;
    background-color: #fff;
    width: 100%;
}

.modal_body {
    padding: 40px;
}
.modal_footer {
    padding: 0 40px 40px 40px;
}

.modal_title {
    margin-bottom: 18px;
}

.modal_content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.modal_support {
    padding: 24px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.modal_contacts {
    display: flex;
    gap: 84px;
}

.modal_contacts_name {
    margin-bottom: 14px;
    color: #2A3143;
    opacity: 0.56;
}

.modal_contacts_phone {
    margin-bottom: 4px;
} 

/* свойства для кнопки "Закрыть" */
.modal_close {
    float: right;
    position: absolute; 
    padding: 15px;
    background-color: #2A3143;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.2982 0.399776L5.89844 4.79955L1.49866 0.399776L0.398718 1.49972L4.79849 5.89949L0.398718 10.2993L1.49866 11.3992L5.89844 6.99944L10.2982 11.3992L11.3982 10.2993L6.99838 5.89949L11.3982 1.49972L10.2982 0.399776Z' fill='white' stroke='white' stroke-width='0.3'/%3E%3C/svg%3E%0A");
    background-repeat:no-repeat;
    background-position: 50% 50%;
    border-radius: 50%;
    height: 0px;
    right: -50px;
}
/* свойства для кнопки "Закрыть" при нахождении её в фокусе или наведении */
.modal_close:focus, 
.modal_close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .75;
}
@media (max-width: 1240px) {
    .modal_close {
        padding: 23px;
        right: -70px;
    }
}

@media (max-width: 1000px) and (min-width: 751px) {
    .modal_close {
        right: auto;
        bottom: -60px;
        left: 50%;
        transform: translateX(-50%);
    }
}
@media (max-width: 750px) {
    .modal_body {
        padding: 36px 20px 24px;
    }
    .modal_title {
        margin-bottom: 12px;
    }
    .modal_content {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }
    .modal_support {
        padding: 24px 30px 22px;
        gap: 22px;
    }
    .modal_contacts {
        flex-direction: column;
        gap: 22px;
    }
    .modal_close {
        padding: 15px;
        position: absolute;
        top: 14px;
        right: 14px;
    }
}
.modal_actions_block {
    position: relative;
    padding: 0 40px 40px;
}
.modal_actions_block .btn_container {
    display: flex;
    align-items: center;
    gap: 28px;
}
@media (max-width: 750px) {
    .modal_window {
        min-height: 100vh;
    }
    .modal_actions_block {
        padding: 0 20px 20px;
    }
    .modal_actions_block .btn_container {
        display: flex;
        flex-direction: column;
    }
}



.modal_cancel .modal_dialog,
.modal_success .modal_dialog {
    width: 504px;
    min-width:504px;
}
.modal_cancel .modal_window,
.modal_success .modal_window {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal_cancel .modal_body,
.modal_success .modal_body {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.modal_cancel .modal_actions_block .btn_container,
.modal_success .modal_actions_block .btn_container {
    gap: 0;
    justify-content: center;
}
@media (max-width: 1600px) {
    .modal_wrapper .modal_cancel .modal_dialog,
    .modal_wrapper .modal_success .modal_dialog {
        width: 504px;
    }
}
@media (max-width: 1240px) {
    .modal_wrapper .modal_cancel .modal_dialog,
    .modal_wrapper .modal_success .modal_dialog {
        width: 512px;
    }
}
@media (max-width: 1000px) {
    .modal_wrapper .modal_cancel .modal_dialog,
    .modal_wrapper .modal_success .modal_dialog {
        width: 504px;
    }
}
@media (max-width: 750px) {
    .modal_cancel,
    .modal_success {
        height: 100vh;
    }
    .modal_cancel .modal_window,
    .modal_success .modal_window {
        justify-content: space-between;
    }
    .modal_cancel .modal_dialog,
    .modal_success .modal_dialog {
        width: 100%;
        height: 100vh;
        display: flex;
        min-width: initial;
    }
    .modal_cancel .modal_content,
    .modal_success .modal_content {
        margin: 12px 0 40px;
    }
}


/* -END MODAL WINDOW BLOCK- */

/* -ORGANS BLOCK- */

.organ_cards_list {
	padding-top: 37px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.organ_card {
	width: var(--page-content);
}

@media all and (max-width: 1600px) {
		.organ_cards_list {
		padding-top: 35px;
	}
}


@media all and (max-width: 1400px) {
	.organ_cards_list {
		padding-top: 30px;
	}
	.organ_card .organ_title p {
		font-size: 20px;
		line-height: 25px;
	}
}

@media all and (max-width: 1240px) {
	.organ_cards_list {
		padding-top: 36px;
	}
}

@media all and (max-width: 1000px) {
	.organ_cards_list {
		padding-top: 24px;
		gap: 44px;
	}
	.organ_card .organ_text {
		margin: 17px 0;
	}
}

@media all and (max-width: 750px) {
	.organ_cards_list {
		padding-top: 18px;
		gap: 20px;
	}
	.organ_card {
		height: 341px;
		position: relative;
		justify-content: start;
	}
	.organ_card .organ_title p {
		font-size: 16px;
		line-height: 24px;
	}
	.organ_card .organ_text {
		margin: 5px 0 10px 0;
		font-size: 14px;
		line-height: 22px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		line-clamp: 8;
		-moz-line-clamp: 8;
		-webkit-line-clamp: 8;
		overflow: hidden;
		text-overflow: ellipsis;
		flex-grow: 0;
	}

	.organ_card .section_link {
		position: absolute;
		bottom: 30px;
	}
}

/* -END ORGANS BLOCK- */

/* -AGENT BLOCK- */
.agent_block {
    margin-top: 36px;
    --manager-item-gap: var(--margin);
    --manager-item-image-h: 232px;
    --manager-item-image-w: 193px;
    --manager-item-content-gap: 15px;
}
.agent_list {
    display: flex;
    flex-direction:column;
    gap: 36px;
}
.agent_list .manager_item {
    display: flex;
    gap: var(--manager-item-gap);
}
.agent_list .manager_item .manager_image {
    width: var(--manager-item-image-w);
    height: var(--manager-item-image-h);
    flex-shrink: 0;
}
.agent_list .manager_item .manager_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
}
.agent_list .manager_item .manager_content {
    display: flex;
    flex-direction: column;
    gap: var(--manager-item-content-gap);
    justify-content: center;
}
.agent_list .manager_item .manager_qualification {
    color: #7F838E;
}
@media all and (max-width: 1600px) {
    .agent_block {
        margin-top: 32px;
    }
}
@media all and (max-width: 1400px) {
    .agent_block {
        margin-top: 32px;
        --manager-item-gap: 30px;
    }
}
@media all and (max-width: 1240px) {
    .agent_block {
        margin-top: 36px;
    }
}
@media all and (max-width: 1000px) {
    .agent_block {
        margin-top: 36px;
        --manager-item-gap: 22px;
        --manager-item-content-gap: 6px;
    }
    .agent_list {
        gap: 24px;
    }
}
@media all and (max-width: 750px) {
    .agent_block {
        margin-top: 36px;
        --manager-item-gap: 16px;
        --manager-item-content-gap: 2px;
    }
    .agent_list {
        gap: 18px;
    }
    .agent_list .manager_item {
        flex-direction: column;
    }
    .agent_list .manager_item .manager_image {
        width: 120px;
        height: auto;
    }
}
/* -END AGENT BLOCK- */


/* -PROJECT BLOCK- */
.project_block {
}

.project_group_name {
    margin-bottom: var(--margin-top2);
}
.project_group + .project_group {
    margin-top: 68px;
}

.project_list {
    display: flex;
    gap: var(--margin);
    flex-wrap: wrap;
}

.project_card {
    width: var(--column3);
    padding: 30px;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
    .project_card.full_width {
        width: 100%;
    }


.project_card .project_title {
        width: auto;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        line-clamp: 4;
        -moz-line-clamp: 4;
        -webkit-line-clamp: 4;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.project_card .project_stat:first-of-type {
    margin-bottom: 2px;
}

.project_card .project_data {
    display: flex;
    gap: 70px;
}

.project_info {
    display: flex;
    flex-direction: column;
    gap: var(--margin-top);
}

@media (max-width: 1600px) {

}

@media (max-width: 1400px) {
}

@media (max-width: 1240px) { 
}

@media (max-width: 1000px) {
}

@media (max-width: 750px) {
    .project_group + .project_group {
        margin-top: 32px;
    }
    .project_card {
		width: 100%;
    }

    .project_card .project_title {
        line-clamp: 5;
        -moz-line-clamp: 5;
        -webkit-line-clamp: 5;
    }

    .project_card .project_data {
        justify-content: space-between;
        gap: 0;
    }
}

/* -END PROJECT BLOCK- */

/* -PROJECT INFO BLOCK- */

.project_info_block .manager_block {
}
.project_info_block .manager_block .block_title {
    margin-bottom: var(--margin-top2);
}
.project_info_block .manager_block .manager_item {
    display: flex;
    gap: 30px;
}
.project_info_block .manager_block .manager_item .manager_item_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project_info_block .manager_block .manager_item .manager_item_content .manager_item_title {
    margin-bottom: 14px;
}


.project_info_block .manager_block .manager_item .manager_item_content .manager_item_qualification {
    margin-bottom: 20px;
}

.project_info_block .manager_block .manager_item .img_container {
    width: 120px;
    height: 145px;
    overflow: hidden;
}
.project_info_block .manager_block .manager_item .manager_item_image {
    object-fit: cover;
    object-position:top;
    width: 100%;
}
.project_info_block .manager_block .manager_item .manager_item_qualification {
    color: #7F838E;
}
.project_info_block .manager_block + .project_issues {
    margin-top: 68px;
}
.project_info_block .project_issues table tbody tr td:first-child {
    font-weight: 700;
    vertical-align: text-top;
}
.project_info_block .project_issues .text_wrapper table tbody tr td ul {
    margin: 0;
}

@media (max-width: 1400px) {
    .project_info_block .manager_block .manager_item .manager_item_content .manager_item_qualification {
        margin-bottom: 22px;
    }
}

@media (max-width: 1240px) {
    .project_info_block .manager_block .manager_item .manager_item_content .manager_item_qualification {
        margin-bottom: 20px;
    }
}


@media (max-width: 750px) {
    .project_info_block .manager_block .manager_item {
        gap: 18px;
        flex-direction: column;
    }
    .project_info_block .project_issues .text_wrapper table thead {
        display: none;
    }
    .project_info_block .project_issues .text_wrapper table tbody,
    .project_info_block .project_issues .text_wrapper table tbody tr {
        display: flex;
        flex-direction: column;
    }
    .project_info_block .project_issues .text_wrapper table tbody tr td {
        padding-left:0;
        padding-right:0;
    }

    .project_info_block .manager_block .manager_item .manager_item_content .manager_item_title {
        margin-bottom: 8px;
    }
}

/* -END PROJECT INFO BLOCK- */

/* -CREDENTIALS BLOCK- */

.section_group .link_container {
    margin-bottom: 30px;
}

.credentials_list {
    list-style: none;
    margin-bottom: 34px;
}

.credentials_list:last-of-type {
    margin-bottom: 0px;
}

.credentials_list_title {
    margin-bottom: 14px;
}

ul.credentials_list>li,
.credentials_item { 
    padding-inline-start: 20px;
}

ul.credentials_list>li:before,
.credentials_item::before {
    content: "";
    height: 8px;
    width: 8px;
    border: 2px solid #03A678;
    border-radius: 50%;
    box-sizing: border-box;
    display: inline-block;
    margin-left: -18px;
    margin-right: 10px;
}

ul.credentials_list>li+li,
.credentials_item+.credentials_item {
    margin-top: 14px;
}

@media (max-width: 1600px) {
    .section_group .link_container {
        margin-bottom: 34px;
    }
}

@media (max-width: 1400px) {
    .section_group {
        padding-bottom: 80px;
    }

    .section_group .link_container {
        margin-bottom: 34px;
    }
}

@media (max-width: 1200px) {
    .section_group {
        padding-bottom: 84px;
    }

    .section_group .link_container {
        margin-bottom: 34px;
    }
}

@media (max-width: 1000px) {
}

@media (max-width: 750px) {
    .section_group {
        padding-bottom: 64px;
    }

    .section_group .link_container {
        margin-bottom: 22px;
    }

    .credentials_list_title {
        margin-bottom: 12px;
    }
}

/* -END CREDENTIALS BLOCK- */

/* -TIME BLOCK- */

.time_block {
    width: 166px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 37px;
}

    .time_block .time_data_block {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

        .time_block .time_data_block .time_data_description {
            display: flex;
            justify-content: space-between;
        }

            .time_block .time_data_block .time_data_description span {
                font-family: 'Formular';
                font-style: normal;
                font-weight: 500;
                font-size: 12px;
                line-height: 140%;
                letter-spacing: 1px;
                text-transform: uppercase;
                color: #2A3143;
            }

            .time_block .time_data_block .time_data_description .gray {
                color: #7F838E;
            }

@media (max-width: 1600px) {
}

@media (max-width: 1400px) {
}

@media (max-width: 1240px) {
    .time_block {
        gap: 12px;
    }
}

@media (max-width: 1000px) {
    .time_block {
        width: 166px;
        gap: 12px;
    }
}

@media (max-width: 750px) {
    .time_block {
        display: flex;
        width: 168px;
        margin-bottom: 24px;
    }
}

/* -END TIME BLOCK- */

/* SLIDING BLOCK */

.sliding_block_container {
    overflow-x: scroll;
}

    .sliding_block_container::-webkit-scrollbar {
        display: none;
    }

.sliding_block_container .block_content_container > .block_container {
    display: flex;
    gap: calc(var(--column) + var(--margin));
}

@media (max-width: 1600px) {
    .sliding_block_container .block_content_container > .block_container {
        display: flex;
        gap: calc(var(--column) + var(--margin));
    }
}

@media (max-width: 1400px) {
    .sliding_block_container .block_content_container > .block_container {
        display: flex;
        gap: calc(var(--column) + var(--margin));
    }
}

@media (max-width: 1240px) {
    .sliding_block_container .block_content_container > .block_container {
        display: flex;
        gap: calc(var(--column) + var(--margin));
    }
}

@media (max-width: 1000px) {
    .sliding_block_container .block_content_container > .block_container {
        display: flex;
        gap: calc(var(--column) + var(--margin));
    }
}

@media (max-width: 750px) {
    .sliding_block_container .block_content_container > .block_container {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
}

.sliding_first .page_title {
    width: var(--column3);
    margin-bottom: 20px;
}

.sliding_first .page_description {
    width: var(--column3);
    color: #7F838E;
}

    .sliding_first .page_description .scroll_back_button {
        width: var(--column);
        border: 1.8px solid #7F838E;
        border-radius: 50%;
    }

        .sliding_first .page_description .scroll_back_button button {
            display: flex;
            flex-direction: column;
            color: #7F838E;
            padding: 33px 36px;
            gap: 12px;
            align-items: center;
        }

            .sliding_first .page_description .scroll_back_button button::after {
                display: block;
                content: "";
                background-image: url("data:image/svg+xml,%3Csvg width='17' height='14' viewBox='0 0 17 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.69521 6.68112L16.2123 6.68112L16.2123 7.37078L2.69521 7.37078L7.62513 12.0169L7.12135 12.4996L1.36377 7.02595L7.12135 1.55227L7.62513 2.00054L2.69521 6.68112Z' fill='%237F838E' stroke='%237F838E'/%3E%3C/svg%3E%0A");
                width: 16px;
                height: 16px;
            }

@media (max-width: 1600px) {
    .sliding_first .page_title {
        width: var(--column3);
        margin-bottom: 14px;
    }

    .sliding_first .page_description .scroll_back_button button {
        padding: 24px 27px 27px;
        gap: 13px;
    }
}

@media (max-width: 1400px) {
    .sliding_first .page_title {
        width: var(--column3);
        margin-bottom: 14px;
    }

    .sliding_first .page_description .scroll_back_button button {
        padding: 24px 27px 27px;
        gap: 10px;
    }
}

@media (max-width: 1240px) {
    .sliding_first .page_title {
        width: var(--column3);
        margin-bottom: 14px;
    }

    .sliding_first .page_description .scroll_back_button button {
        padding: 32px 35px 35px;
        gap: 13px;
    }
}

@media (max-width: 1000px) {
    .sliding_first .page_title {
        width: var(--column3);
        margin-bottom: 14px;
    }

    .sliding_first .page_description .scroll_back_button button {
        padding: 37px 40px;
    }

        .sliding_first .page_description .scroll_back_button button span {
            display: none;
        }
}

@media (max-width: 750px) {
    .sliding_first {
        width: var(--column4);
        margin-left: auto;
        margin-right: auto;
    }

        .sliding_first .page_title {
            width: 100%;
            margin-bottom: 14px;
        }

        .sliding_first .sort_filter_option {
            justify-content: flex-start;
        }

        .sliding_first .page_description {
            margin-bottom: 20px;
        }
}

.sliding_block_container .block_content_container .sliding_list_375 {
    display: flex;
    margin-top: 95px;
    /* TODO: вынести свг */
    background-image: url("data:image/svg+xml,%3Csvg width='60000' height='2' viewBox='0 0 60000 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='60000' height='2' fill='%23D4D6D9'/%3E%3C/svg%3E%0A");
    background-size: 100% 2px;
    background-repeat: no-repeat;
    background-position-y: 159px;
}

.sliding_block_container .block_content_container .sliding_list {
    display: flex;
    gap: 139px;
    position: relative;
}

    .sliding_block_container .block_content_container .sliding_list + .sliding_list {
        margin-left: 139px;
    }

.sliding_block_container .block_content_container .sliding_item_375 {
    z-index: 2;
}

.sliding_block_container .block_content_container .sliding_item {
    display: flex;
    gap: 54px;
}

.sliding_block_container .block_content_container .bg_history_spb {
    /*position: absolute;
    top: -165px;
    left: 0;*/
}

.sliding_block_container .block_content_container .bg_history_msc {
    /*position: absolute;
    top: -165px;*/
}

.sliding_block_container .block_content_container .sliding_item .sliding_item_img {
    max-width: 386px;
    max-height: 437px;
    height: fit-content;
    object-fit: cover;
    object-position: top;
}

.sliding_block_container .block_content_container .sliding_item .sliding_item_list_img {
    width: 580px;
    padding: 30px 39px 30px 30px;
    height: 393px;
    background-image: url("/common/core/img/museum/history/bcg_list.jpg");
    /*background-image: url("/common/core/img/museum/history/bcg_list.png");*/
    background-position: bottom;
    margin-right: 55px;
    filter: grayscale(1);
}

.sliding_block_container .block_content_container .sliding_item .sliding_item_text {
    display: flex;
    flex-direction: column;
    margin-top: 76px;
    width: 386px;
}
.sliding_block_container .block_content_container .sliding_item .sliding_item_text.wide {
    width: 549px;
}

    .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_line_point {
        background: #D4D6D9;
        height: 12px;
        width: 12px;
        border-radius: 50%;
        margin-top: 22px;
        margin-bottom: 22px;
    }

        .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_line_point.active {
            background: #03A678;
        }

    .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_item_description {
        display: flex;
        flex-direction: column;
        height: 265px;
    }
    .sliding_block_container .block_content_container .sliding_item .sliding_item_text.wide .sliding_item_description {
        width: 518px;
    }

        .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_item_description .sliding_item_description_title {
            font-family: 'Formular';
            font-style: normal;
            font-weight: 400;
            font-size: 20px;
            line-height: 25px;
            color: #2A3143;
            margin-bottom: 12px;
        }

        .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_item_description .section_link {
            margin-top: 22px;
        }

        .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_item_description .credentials_list {
            margin-top: 12px;
        }

.sliding_block_container .block_content_container .sliding_item .credentials_item {
    width: auto;
}

.sliding_block_container .block_content_container .sliding_item .credentials_item + .credentials_item {
    margin-bottom: 0;
    margin-top: 8px;
}

.sliding_block_container .block_content_container .sliding_item .sliding_img_title {
    margin-bottom: 16px;
}

.sliding_block_container .block_content_container .sliding_item .bc_dark .credentials_item::before {
    border: 2px solid #D4D6D9;
}

[data-sb-box],
[data-sb-box] *,
[data-sb-filter],
[data-sb-filter] * {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}

[data-sb-box] {
    position: relative;
    overflow: hidden;
}

[data-sb-filter] {
    overflow: visible;
}

[data-sb-bg] {
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
}

[data-sb-box] .sort_option_list {
    position: static;
}

[data-sb-filter] .sort_option_list {
    position: relative;
}

    [data-sb-box] .sort_option_list li,
    [data-sb-filter] .sort_option_list li {
        cursor: pointer;
    }

        [data-sb-box] .sort_option_list li.hiddenbox,
        [data-sb-filter] .sort_option_list li.hiddenbox {
            position: absolute;
            left: 0;
            min-width: 100%;
            max-height: 0;
            background: #2A3143;
            overflow: hidden;
            transition: max-height .2s ease;
            z-index: 1000;
        }

        [data-sb-box] .sort_option_list li.hiddenbox {
            top: 100%;
            margin: 10px 0 0;
        }

        [data-sb-filter] .sort_option_list li.hiddenbox {
            bottom: 0;
            margin: 0 0 20px;
        }

            [data-sb-box] .sort_option_list li.hiddenbox.active,
            [data-sb-filter] .sort_option_list li.hiddenbox.active {
                max-height: 200px;
            }

            [data-sb-box] .sort_option_list li.hiddenbox ul,
            [data-sb-filter] .sort_option_list li.hiddenbox ul {
                max-height: 100%;
                padding: 18px 20px;
            }

                [data-sb-box] .sort_option_list li.hiddenbox ul li,
                [data-sb-filter] .sort_option_list li.hiddenbox ul li {
                    display: flex;
                    align-items: center;
                    height: 24px;
                    margin: 0 0 12px;
                    color: #7F838E;
                    transition: color .2s ease;
                }

                    [data-sb-box] .sort_option_list li.hiddenbox ul li:hover,
                    [data-sb-filter] .sort_option_list li.hiddenbox ul li:hover {
                        color: #ffffff;
                    }

                    [data-sb-box] .sort_option_list li.hiddenbox ul li:last-child,
                    [data-sb-filter] .sort_option_list li.hiddenbox ul li:last-child {
                        margin: 0;
                    }
[data-sb-bg].spb {
    top: -165px;
}
[data-sb-bg].spb,
[data-sb-bg].spb img {
    width: 1357px;
}

[data-sb-bg].msc {
    top: -107px;
}
[data-sb-bg].msc,
[data-sb-bg].msc img {
    width: 1226px;
}

[data-sb-bg] img {
    display: block;
}

@media (max-width: 1600px) {
    .sliding_block_container .block_content_container .sliding_list_375 {
        margin-top: 55px;
        background-position-y: 119px;
    }

    .sliding_block_container .block_content_container .sliding_list + .sliding_list {
        margin-left: 120px;
    }

    .sliding_block_container .block_content_container .sliding_list {
        gap: 120px;
    }

    .sliding_block_container .block_content_container .sliding_item {
        gap: 55px;
    }

    .sliding_block_container .block_content_container .bg_history_spb {
        /*top: -130px;*/
    }

    .sliding_block_container .block_content_container .bg_history_msc {
        /*top: -130px;*/
    }

    .sliding_block_container .block_content_container .sliding_item .sliding_item_img {
        max-width: 345px;
        max-height: 391px;
    }

    .sliding_block_container .block_content_container .sliding_item .sliding_item_list_img {
        width: 518px;
        padding: 30px 31px 30px 30px;
        height: 351px;
        margin-right: 55px;
    }

    .sliding_block_container .block_content_container .sliding_item .sliding_item_text {
        display: flex;
        flex-direction: column;
        margin-top: 35px;
        width: 346px;
    }

        .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_line_point {
            margin-top: 25px;
            margin-bottom: 25px;
        }

            .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_item_description .section_link {
                margin-top: 22px;
            }

        .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_item_description .credentials_list {
            margin-top: 10px;
        }

    .sliding_block_container .block_content_container .sliding_item .credentials_item + .credentials_item {
        margin-top: 4px;
    }

    .sliding_block_container .block_content_container .sliding_item .sliding_img_title {
        margin-bottom: 20px;
    }

    [data-sb-bg].spb {
        top: -104px;
    }

        [data-sb-bg].spb,
        [data-sb-bg].spb img {
            width: 940px;
        }

    [data-sb-bg].msc {
        top: -90px;
    }

        [data-sb-bg].msc,
        [data-sb-bg].msc img {
            width: 970px;
        }
}

@media (max-width: 1400px) {
    .sliding_block_container .block_content_container .sliding_list_375 {
        margin-top: 63px;
        background-position-y: 115px;
    }

    .sliding_block_container .block_content_container .sliding_list + .sliding_list {
        margin-left: 119px;
    }

    .sliding_block_container .block_content_container .sliding_list {
        gap: 119px;
    }

    .sliding_block_container .block_content_container .sliding_item {
        gap: 36px;
    }

    .sliding_block_container .block_content_container .bg_history_spb {
        /*top: -130px;*/
    }

    .sliding_block_container .block_content_container .bg_history_msc {
        /*top: -130px;*/
    }

    .sliding_block_container .block_content_container .sliding_item .sliding_item_img {
        max-width: 310px;
        max-height: 352px;
    }

    .sliding_block_container .block_content_container .sliding_item .sliding_item_list_img {
        width: 465px;
        padding: 30px 15px 30px 30px;
        height: 339px;
        margin-right: 18px;
    }

    .sliding_block_container .block_content_container .sliding_item .sliding_text {
        display: flex;
        flex-direction: column;
        margin-top: 35px;
        width: 310px;
    }

        .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_line_point {
            margin-top: 28px;
            margin-bottom: 25px;
        }

        .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_item_description {
            height: 240px;
        }

            .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_item_description .section_link {
                margin-top: 18px;
            }

            .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_item_description .credentials_list {
                margin-top: 16px;
            }

    .sliding_block_container .block_content_container .sliding_item .credentials_item + .credentials_item {
        margin-top: 4px;
    }

    .sliding_block_container .block_content_container .sliding_item .sliding_img_title {
        margin-bottom: 14px;
    }

    [data-sb-bg].spb {
        top: -109px;
    }

        [data-sb-bg].spb,
        [data-sb-bg].spb img {
            width: 940px;
        }

    [data-sb-bg].msc {
        top: -95px;
    }

        [data-sb-bg].msc,
        [data-sb-bg].msc img {
            width: 970px;
        }
}

@media (max-width: 1240px) {
    .sliding_block_container .block_content_container .sliding_list_375 {
        margin-top: 79px;
        background-position-y: 112px;
    }

    .sliding_block_container .block_content_container .sliding_list + .sliding_list {
        margin-left: 138px;
    }

    .sliding_block_container .block_content_container .sliding_list {
        gap: 138px;
    }

    .sliding_block_container .block_content_container .sliding_item {
        gap: 29px;
    }

    .sliding_block_container .block_content_container .bg_history_spb {
        /*top: -145px;*/
    }

    .sliding_block_container .block_content_container .bg_history_msc {
        /*top: -145px;*/
    }

    .sliding_block_container .block_content_container .sliding_item .sliding_item_img {
        max-width: 332px;
        max-height: 376px;
    }

    .sliding_block_container .block_content_container .sliding_item .sliding_item_list_img {
        width: 498px;
        padding: 30px 13px 30px 30px;
        height: 351px;
        margin-right: 6px;
    }

    .sliding_block_container .block_content_container .sliding_item .sliding_item_text {
        display: flex;
        flex-direction: column;
        margin-top: 28px;
        width: 331px;
    }

        .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_line_point {
            margin-top: 25px;
            margin-bottom: 25px;
        }

        .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_item_description {
            height: 210px;
        }

            .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_item_description .section_link {
                margin-top: 22px;
            }

            .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_item_description .credentials_list {
                margin-top: 10px;
            }

    .sliding_block_container .block_content_container .sliding_item .credentials_item + .credentials_item {
        margin-top: 4px;
    }

    .sliding_block_container .block_content_container .sliding_item .sliding_img_title {
        margin-bottom: 20px;
    }

    [data-sb-bg].spb {
        top: -113px;
    }

        [data-sb-bg].spb,
        [data-sb-bg].spb img {
            width: 960px;
        }

    [data-sb-bg].msc {
        top: -116px;
    }

        [data-sb-bg].msc,
        [data-sb-bg].msc img {
            width: 1070px;
        }
}

@media (max-width: 1000px) {
    .sliding_block_container .block_content_container .sliding_list_375 {
        margin-top: 124px;
        background-position-y: 99px;
    }

    .sliding_block_container .block_content_container .sliding_list + .sliding_list {
        margin-left: 94px;
    }

    .sliding_block_container .block_content_container .sliding_list {
        gap: 94px;
    }

    .sliding_block_container .block_content_container .sliding_item {
        gap: 28px;
    }

    .sliding_block_container .block_content_container .bg_history_spb {
        /*top: -195px;*/
    }

    .sliding_block_container .block_content_container .bg_history_msc {
        /*top: -195px;*/
    }

    .sliding_block_container .block_content_container .sliding_item .sliding_item_img {
        max-width: 247px;
        max-height: 280px;
    }

    .sliding_block_container .block_content_container .sliding_item .sliding_item_list_img {
        width: 492px;
        padding: 30px 7px 30px 30px;
        height: 350px;
        margin-right: 54px;
    }

    .sliding_block_container .block_content_container .sliding_item .sliding_item_text {
        display: flex;
        flex-direction: column;
        margin-top: 17px;
        width: 367px;
    }

        .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_line_point {
            margin-top: 27px;
            margin-bottom: 25px;
        }

        .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_item_description {
            height: 210px;
        }

            .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_item_description .section_link {
                margin-top: 22px;
            }

            .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_item_description .credentials_list {
                margin-top: 10px;
            }

    .sliding_block_container .block_content_container .sliding_item .credentials_item + .credentials_item {
        margin-top: 4px;
    }

    .sliding_block_container .block_content_container .sliding_item .sliding_img_title {
        margin-bottom: 20px;
    }

    [data-sb-bg].spb {
        top: -187px;
    }

        [data-sb-bg].spb,
        [data-sb-bg].spb img {
            width: 1200px;
        }

    [data-sb-bg].msc {
        top: -115px;
    }

        [data-sb-bg].msc,
        [data-sb-bg].msc img {
            width: 990px;
        }
}

@media (max-width: 750px) {

    .sliding_block_container {
        overflow: hidden;
    }

        .sliding_block_container .block_content_container .sliding_list_375 {
            flex-direction: column;
            gap: 0;
            margin-top: 0;
            background: none;
            margin-left: 0;
        }

        .sliding_block_container .block_content_container .sliding_list {
            flex-direction: column;
            gap: 48px;
        }

            .sliding_block_container .block_content_container .sliding_list + .sliding_list {
                margin-left: 0;
                margin-top: 48px;
            }

        .sliding_block_container .block_content_container .sliding_item_375 {
            display: flex;
            justify-content: space-between;
            width: var(--column4);
            margin-right: auto;
            margin-left: auto;
        }

            .sliding_block_container .block_content_container .sliding_item_375::before {
                display: block;
                content: "";
                width: 13px;
                height: 11px;
                border-radius: 50%;
                background: #D4D6D9;
                margin-right: 20px;
                margin-top: 15px;
                margin-left: -4px;
                z-index: 5;
            }


    .sliding_list_line_container {
        height: 100%;
        width: var(--column4);
        margin-left: auto;
        margin-right: auto;
    }

    .sliding_list_line {
        position: absolute;
        display: block;
        height: 100%;
        width: 2px;
        background: #D4D6D9;
        margin-top: 15px;
    }

    .sliding_block_container .block_content_container .sliding_item_375.active::before {
        background: #03A678;
    }

    .sliding_block_container .block_content_container .sliding_item {
        gap: 28px;
        flex-direction: column-reverse;
        width: var(--column4);
        margin-left: auto;
        margin-right: auto;
    }

    /* .history_block .history_item::before {
        content: "";
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: block;
        background-color: #03A678;
        margin-right: 20px;
    } */

    .sliding_block_container .block_content_container .sliding_item_list {
        width: 100%;
        margin: 0;
    }

    .sliding_block_container .block_content_container .bg_history_spb {
        /*display: none;*/
    }

    .sliding_block_container .block_content_container .bg_history_msc {
        /*display: none;*/
    }

    .sliding_block_container .block_content_container .sliding_item .sliding_item_img {
        width: 100%;
        max-height: fit-content;
    }

    .sliding_block_container .block_content_container .sliding_item .sliding_item_list_img {
        width: 100%;
        padding: 30px 20px 30px 19px;
        height: auto;
        margin-right: 0;
    }

    .sliding_block_container .block_content_container .sliding_item .sliding_item_text {
        display: flex;
        flex-direction: column;
        margin-top: 0;
        width: auto;
    }

        .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_item_year {
            margin-bottom: 12px;
        }

        .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_line_point {
            display: none;
            margin: 0;
        }

        .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_item_description {
            height: auto;
        }

            .sliding_block_container .block_content_container .sliding_item .sliding_item_text .sliding_item_description .section_link {
                margin-top: 18px;
            }

    .sliding_block_container .block_content_container .sliding_item .sliding_img_title {
        margin-bottom: 18px;
    }

    [data-sb-bg],
    [data-sb-filter] {
        display: none;
    }


}


/* -END SLIDING BLOCK- */

/* -DEPT LIST BLOCK- */

.dept_point_list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dept_point_block {
    padding-bottom: 30px;
    border-bottom: solid 1px #D4D6D9;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dept_point_block:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
}

.dept_point_block table {
    margin-bottom: 33px;
}


.dept_point_title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dept_point_block .dept_point_title > p {
    padding: 0;
    margin: 0;
}

.dept_point_block .dept_point_title > span {
    color: #7F838E;
}

.dept_point_block .dept_point_description.two_columns {
    display: flex;
    gap: var(--margin);
}

.dept_point_block .dept_point_description.two_columns .dept_point_column {
    width: var(--column3);
}

.dept_point_block .dept_point_description.two_columns .dept_point_column {
    padding: 0;
    max-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dept_point_block .dept_point_description.two_columns .dept_point_column .dept_point_text {
    padding: 0;
}

.dept_point_block .dept_point_description .dept_point_column > h2 {
    margin: 0;
    padding: 0;
}

.dept_point_block .dept_point_description .dept_point_column > span {
    color: #7F838E;
}

@media (max-width: 750px) {
    .dept_point_block .dept_point_description.two_columns {
        flex-direction: column;
        gap: 20px;

    }

    .dept_point_block .dept_point_description.two_columns .dept_point_column {
        width: 100%;
    }

    .dept_point_block .dept_point_description.two_columns .dept_point_column {
        max-height: none;
        gap: 14px;
    }
}

/* -END DEPT LIST BLOCK- */

/* -HEADER- */

.header_container header {
    border-bottom: 2px solid #2A3143;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 18px 0;
}
.header_container .header_part {
    display: flex;
    align-items: center;
}
.header_container .header_part:first-child * {
    vertical-align: middle;
}
.header_container .header_part .nav_list {
    gap: 30px;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.header_container .header_part .menu_link_list a {
    padding: 1px;
}
.header_container .header_part .menu_link_list {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header_container .header_part .menu_link_list > li:nth-child(1) > a > span:nth-child(2),
.header_container .header_part .menu_link_list > li:nth-child(2) > a > span:nth-child(2) {
    margin-right: 14px;
}
.header_container .header_part .logo_text {
    display: inline-block;
    margin-left: 9px;
}
.header_container .header_part .logo_text span {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}
.header_container .header_part a .icon,
.header_container .menu_link_list>li>a,
.header_container .menu_link_list>li>a>span {
    vertical-align: middle;
    display: inline-block;
}
.header_container .header_part .logo_icon {
    background: url("/common/core/img/icons/logo.svg#dark") no-repeat center;
    background-size: 43px;
    display: inline-block;
    height: 43px;
    width: 42px;
}
.header_container .header_part .location_icon {
    background: url(/common/core/img/icons/location.svg#dark) no-repeat center;
    background-size: 100%;
    height: 24px;
    width: 24px;
    margin-right: 6px;
}
.header_container .header_part .lang_icon {
    height: 24px;
    width: 0;
}
.header_container .header_part .glasses_icon {
    background: url(/common/core/img/icons/glasses.svg#dark) no-repeat center;
    background-size: 100%;
    height: 24px;
    width: 27px;
}
.header_container .header_part .search_icon {
    background: url(/common/core/img/icons/search_menu.svg#dark) no-repeat center;
    background-size: 100%;
    height: 24px;
    width: 24px;
}
.header_container .header_part .menu_icon {
    background: url("/common/core/img/icons/menu.svg#dark") no-repeat center;
    background-size: 100%;
    height: 24px;
    width: 24px;
}
.header_container.bc_dark .header_part .logo_icon {
    background-image: url("/common/core/img/icons/logo.svg#white");
}
.header_container.bc_dark .header_part .location_icon {
    background-image: url(/common/core/img/icons/location.svg#white);
}
.header_container.bc_dark .header_part .glasses_icon {
    background-image: url(/common/core/img/icons/glasses.svg#white);
}
.header_container.bc_dark .header_part .search_icon {
    background-image: url(/common/core/img/icons/search_menu.svg#white);
}
.header_container.bc_dark .header_part .menu_icon {
    background-image: url("/common/core/img/icons/menu.svg#white");
}
.header_container.expanded.bc_dark .header_part .menu_icon {
    background-image: url("/common/core/img/icons/menu_close.svg#white");
    background-size: 16px;
}

/* ?done like this yet? */
.header_container .header_part a:hover .logo_icon {
    background-image: url("/common/core/img/icons/logo.svg#green");
}
.header_container .header_part a:hover .location_icon {
    background-image: url("/common/core/img/icons/location.svg#green");
}
.header_container .header_part a:hover .glasses_icon {
    background-image: url(/common/core/img/icons/glasses.svg#green);
}
.header_container .header_part a:hover .search_icon {
    background-image: url(/common/core/img/icons/search_menu.svg#green);
}
.header_container .header_part a:hover .menu_icon {
    background-image: url("/common/core/img/icons/menu.svg#green");
}
.header_container.bc_dark .header_part a:hover .logo_icon {
    background-image: url("/common/core/img/icons/logo.svg#gray");
}
.header_container.bc_dark .header_part a:hover .location_icon {
    background-image: url(/common/core/img/icons/location.svg#gray);
}
.header_container.bc_dark .header_part a:hover .glasses_icon {
    background-image: url(/common/core/img/icons/glasses.svg#gray);
}
.header_container.bc_dark .header_part a:hover .search_icon {
    background-image: url(/common/core/img/icons/search_menu.svg#gray);
}
.header_container.bc_dark .header_part a:hover .menu_icon {
    background-image: url("/common/core/img/icons/menu.svg#gray");
}
.header_container.expanded.bc_dark .header_part a:hover .menu_icon {
    background-image: url("/common/core/img/icons/menu_close.svg#gray");
}


@media all and (max-width: 1600px) {
    .header_container .header_part .menu_link_list > li:nth-child(1) > a > span:nth-child(2),
    .header_container .header_part .menu_link_list > li:nth-child(2) > a > span:nth-child(2) {
        margin-right: 7px;
    }
    .header_container .header_part .nav_list {
        gap: 22px;
        margin-left: 0;
    }
}
@media all and (max-width: 1400px) {
    .header_container .header_part .nav_list {
        gap: 20px;
    }
    .header_container .header_part .menu_link_list {
        gap: 10px;
    }
    .header_container .header_part .menu_link_list > li:nth-child(1) > a > span:nth-child(2),
    .header_container .header_part .menu_link_list > li:nth-child(2) > a > span:nth-child(2) {
        margin-right: 6px;
    }
    .header_container .header_part .icon {
        margin-left: 5px;
    }
}

@media all and (max-width: 1240px) {
    .header_container .header_part .nav_list {
        display: none;
    }
    .header_container .header_part .menu_link_list {
        gap: 14px;
    }
}
@media all and (max-width: 1000px){
    .header_container .header_part .menu_link_list > li:nth-child(1) > a > span:nth-child(2),
    .header_container .header_part .menu_link_list > li:nth-child(2) > a > span:nth-child(2) {
        margin-right: 7px;
    }
}

@media all and (max-width: 750px) {
    .header_container header {
        padding: 14px 0;
    }
    .header_container .header_part .menu_link_list li:nth-child(1) {
        display: none;
    }
    .header_container .header_part .menu_link_list > li:nth-child(2) > a > span:nth-child(2) {
        margin-right: 3px;
    }
    .header_container .header_part .logo_icon {
        background-size: 100%;
        height: 32px;
        width: 32px;
    }
    .header_container .header_part .logo_text span {
        font-size: 9px;
        line-height: 12px;
    }
}
/* -END HEADER- */

/* -MAIN MENU HEADER- */

.header_container {
    
}

.header_container.expanded header {
    display: flex;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    top: 0;
    left: 0;
    right: 0;
    border-bottom-color: #7F838E;
    justify-content: space-between;
    align-items: stretch;
    padding: 18px 0;
}
.header_container .header_popup {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9;
    overflow: hidden;
    pointer-events: none;
    max-height: 0;
    background: rgba(42, 49, 67, 0.5);
}
.header_container.expanded .header_popup {
    max-height: calc(100vh - 70px);
    pointer-events: all;
}
.header_container .nav_expanded_menu {
    padding: 64px 0 72px;
}
.header_container .nav_expanded_menu .nav_list {
    display: flex;
    flex-direction: row;
    row-gap: 34px;
    column-gap: var(--margin);
    flex-wrap: wrap;
    width: var(--column6);
    margin-left: auto;
    margin-right: auto;
}
.header_container .nav_expanded_menu .nav_list .nav_item {
    width: var(--column2);
    white-space: nowrap;
}
@media all and (max-width: 1600px) {
    .header_container .nav_expanded_menu {
        padding: 64px 0 68px;
    }
    .header_container .nav_expanded_menu .nav_list {
        row-gap: 34px;
    }
    .header_container  .nav_expanded_menu .nav_list .nav_item {
        white-space: normal;
    }
}
@media all and (max-width: 1400px) {
    .header_container .nav_expanded_menu {
        padding: 64px 0 60px;
    }
}
@media all and (max-width: 1240px) {
    .header_container .nav_expanded_menu {
        padding: 64px 0 149px;
        height: 100%;
    }
}
@media all and (max-width: 1000px){
    .header_container .nav_expanded_menu {
        padding: 64px 0 140px;
        overflow-y: auto;
    }
    .header_container .nav_expanded_menu .nav_list .nav_item {
        width: var(--column3);
        white-space: normal;
    }
}
@media all and (max-width: 750px) {
    .header_container .nav_expanded_menu {
        padding: 32px 0 60px;
        height: 100%;
    }
    .header_container .nav_expanded_menu .nav_list {
        height: auto;
        width: var(--page-width);
        row-gap: 20px;
        flex-wrap: nowrap;
        flex-direction: column;
    }
    .header_container .nav_expanded_menu .nav_list .nav_item {
        width: 100%;
    }
}
/* -END MAIN MENU HEADER- */

/* -FOOTER- */

.footer_block.block_content_container {
    padding-top: 46px;
    padding-bottom: 39px;
}

footer {
    display: flex;
    flex-direction: row;
    gap: var(--margin);
    justify-content: space-between;
    align-items: stretch;
}

.footer_part {
    --gap-footer-part: 42px;
    display: flex;
    flex-direction: column;
    gap: var(--gap-footer-part);
    width: var(--column2);
}
.footer_part:first-child {
    justify-content: space-between;
}
.footer_part .logo_container .logo_icon {
    background: url(/common/core/img/icons/logo.svg#gray) no-repeat left center;
    background-size: 128px 134px;
    height: 134px;
    width: 128px;
    margin-bottom: 20px;
    margin-top: 5px;
    display: block;
}
.footer_part .logo_container p {
    color: #7F838E;
    font-size: 21px;
    letter-spacing: 0.5px;
    line-height: 30px;
}
.footer_section .section_title {
    color: #7F838E;
    color: #9699a1;
    font-weight: bold;
}
.footer_section .link_container {
    margin-top: 24px;
}
.footer_section address {
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    margin-top: 6px;
}
.footer_section .link_container li + li {
    margin-top: 18px;
}
.footer_section .soc_web {
    display: flex;
    gap: 9px;
    flex-direction: row;
    align-items: center;
    margin-top: 7px;
}

.ok_icon {
    display: block;
    background: url(/common/core/img/icons/ok_web.svg#dark) no-repeat center;
    height: 34px;
    width: 34px;
}
.ok_icon:hover,
.ok_icon:active {
    background-image: url(/common/core/img/icons/ok_web.svg#green);
}
.vkontakte_icon {
    display: block;
    background: url(/common/core/img/icons/vkontakte.svg#dark) no-repeat center;
    height: 34px;
    width: 34px;
}
.vkontakte_icon:hover,
.vkontakte_icon:active {
    background-image: url(/common/core/img/icons/vkontakte.svg#green);
}
.telegram_icon {
    display: block;
    background: url(/common/core/img/icons/telegram.svg#dark) no-repeat center;
    height: 34px;
    width: 34px;
}
.telegram_icon:hover,
.telegram_icon:active {
    background-image: url(/common/core/img/icons/telegram.svg#green);
}
.rutube_icon {
    display: block;
    background: url(/common/core/img/icons/rutube.svg#dark) no-repeat center;
    height: 34px;
    width: 34px;
}
.rutube_icon:hover,
.rutube_icon:active {
    background-image: url(/common/core/img/icons/rutube.svg#green);
}
.print_icon {
    display: block;
    background: url(/common/core/img/icons/print.svg#dark) no-repeat center;
    height: 34px;
    width: 34px;
}
.print_icon:hover,
.print_icon:active {
    background-image: url(/common/core/img/icons/print.svg#green);
}
.mail_icon {
    display: block;
    background: url(/common/core/img/icons/mail.svg#dark) no-repeat center;
    height: 34px;
    width: 34px;
}
.mail_icon:hover,
.mail_icon:active {
    background-image: url(/common/core/img/icons/mail.svg#green);
}

.copyright {
    padding: 15px 0;
    border-top: 2px solid #2A3143;
}
.copyright .content_text {
    color: #7F838E;
}

@media all and (max-width:1600px) {
    .footer_part{
        --gap-footer-part: 36px;
    }
    .footer_part .logo_container .logo_icon {
        background-size: 108px 112px;
        height: 112px;
        width: 108px;
        margin-bottom: 16px;
        margin-top: 7px;
    }
    .footer_part .logo_container p {
        font-size: 17px;
        letter-spacing: 0.9px;
        line-height: 26px;
    }

    .footer_section .link_container li + li {
        margin-top: 14px;
    }
}
@media all and (max-width:1400px) {
    .footer_block.block_content_container {
        padding-top: 42px;
        padding-bottom: 34px;
    }

    .footer_part .logo_container .logo_icon {
        background-size: 97px 101px;
        height: 101px;
        width: 97px;
        margin-bottom: 15px;
        margin-top: 4px;
    }
    .footer_part .logo_container p {
        font-size: 15px;
        letter-spacing: 1px;
        line-height: 23px;
    }

    .footer_section .link_container {
        margin-top: 20px;
    }
}
@media all and (max-width:1240px) {
    footer {
        flex-direction: column;
        gap: 23px;
        position: relative;
        width: 100%;
        padding-top: 111px;
    }

    .footer_block.block_content_container {
        padding-top: 35px;
        padding-bottom: 34px;
    }

    .footer_part {
        width: 100%;
        gap: 23px;
    }
    .footer_part:first-child {
        order: 3;
        flex-direction: row;
    }
    .footer_part:first-child .footer_section:first-child {
        position: absolute;
        top:0;
        left:0;
    }
    /* phone links */
    .footer_part:first-child .footer_section:nth-child(2) {
        align-self: flex-start;
        margin-top: 10px;
    }
    /* soc web links */
    .footer_part:first-child .footer_section:last-child {
        text-align: right;
        margin-top: 10px;
    }
    .footer_part .logo_container {
        display: flex;
        flex-direction: row;
        gap: 18px;
        align-items: center;
    }
    .footer_part .logo_container .logo_icon {
        background: url("data:image/svg+xml,%3Csvg width='73' height='74' viewBox='0 0 73 74' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M43.0603 43.8735C42.9846 42.7236 42.2573 41.8538 41.2725 41.3378C41.4695 40.4975 41.7422 39.8488 42.121 39.4802H40.6513C40.3483 39.893 40.1059 40.3648 39.8634 40.866C38.8786 40.7039 37.8332 40.8513 36.9847 41.3525V40.1879H36.0605V41.3525C35.212 40.8513 34.1515 40.7039 33.1666 40.866C32.9394 40.35 32.6818 39.8783 32.3788 39.4507H30.9091C31.2879 39.8046 31.5606 40.4827 31.7576 41.323C30.7879 41.839 30.0606 42.7088 29.9849 43.8587C29.8485 45.4215 30.697 46.4829 31.8788 46.9989C31.5909 48.9007 30.9546 50.5224 29.9849 50.9351L32.2273 50.9057C32.4848 50.0653 32.6515 48.7238 32.7576 47.279C33.303 47.3969 33.8939 47.4117 34.4696 47.338C34.9242 49.225 35.4696 51.0826 36.5453 52.6748C37.6211 51.0826 38.1817 49.2398 38.621 47.3527C39.1968 47.4264 39.7877 47.3969 40.3331 47.279C40.424 48.7238 40.6059 50.0653 40.8634 50.9057L43.0755 50.9646C42.0907 50.5518 41.4695 48.9302 41.1816 47.0284C42.3482 46.5124 43.1967 45.4509 43.0603 43.8735ZM40.4089 40.925C40.4089 40.9397 40.3937 40.9692 40.3937 40.9987H40.3786C40.3786 40.9692 40.3937 40.9545 40.4089 40.925ZM36.9696 42.2223C37.8029 41.6031 38.7574 41.382 39.6059 41.4852C38.9998 43.0774 38.6059 44.9644 38.1817 46.7335C37.712 46.6009 37.2877 46.365 36.9544 46.0259V42.2223H36.9696ZM36.0454 42.2223V46.0259C35.7272 46.365 35.2878 46.6009 34.8181 46.7335C34.3939 44.9644 34.0151 43.0774 33.3939 41.4852C34.2575 41.382 35.212 41.6031 36.0454 42.2223ZM32.6363 40.925C32.6515 40.9397 32.6515 40.9545 32.6666 40.984H32.6515C32.6515 40.9692 32.6515 40.9545 32.6363 40.925ZM30.9394 45.0234C30.6212 43.7408 31.0606 42.7088 31.8788 42.0897C32.0757 43.3722 32.1061 44.9202 31.9394 46.365C31.4546 46.0554 31.0909 45.6131 30.9394 45.0234ZM32.7727 46.7335C32.8788 44.8318 32.8485 42.8415 32.7424 41.6474C32.803 41.6326 32.8636 41.6031 32.9242 41.5884C33.5606 43.2396 33.9242 45.0529 34.3333 46.8515C33.803 46.9104 33.2575 46.8662 32.7727 46.7335ZM36.0454 46.8957C36.0454 46.8957 36.0454 48.6943 35.7423 49.9179C35.4393 49.1366 35.1817 48.2225 34.9545 47.2643C35.3332 47.1906 35.6969 47.0579 36.0454 46.8957ZM36.4999 51.3922C36.3332 51.1563 36.1666 50.8762 36.0302 50.5813C36.3484 50.5813 36.6817 50.5813 36.9696 50.5813C36.8332 50.8909 36.6817 51.1563 36.4999 51.3922ZM37.2574 49.9474C36.9241 48.7238 36.9696 46.8957 36.9696 46.8957C37.318 47.0579 37.6817 47.1906 38.0605 47.279C37.818 48.2373 37.5756 49.1513 37.2574 49.9474ZM38.7271 46.8367C39.1362 45.0382 39.4847 43.2396 40.1362 41.5884C40.1968 41.6031 40.2574 41.6179 40.318 41.6474C40.2119 42.8563 40.1816 44.8318 40.2877 46.7188C39.7877 46.8662 39.2422 46.9104 38.7271 46.8367ZM41.0604 46.3797C40.9089 44.935 40.924 43.3722 41.121 42.0897C41.9392 42.7088 42.3937 43.7408 42.0755 45.0234C41.9392 45.6131 41.5604 46.0701 41.0604 46.3797Z' fill='%232A3143'/%3E%3Cpath d='M53.1966 20.3152C53.2724 20.3447 54.7269 15.1554 45.1665 15.1554C45.1665 15.1554 42.0302 15.1848 39.9393 14.9342C39.7272 14.9047 39.606 15.1406 39.7424 15.3028C40.6666 16.3348 41.8938 18.2808 40.5302 20.3595C37.3636 24.3104 36.6515 27.5833 36.5 31.1952C36.3485 27.5685 35.6364 24.2957 32.4698 20.3595C31.1062 18.2955 32.3335 16.3495 33.2577 15.3028C33.394 15.1554 33.2728 14.9195 33.0607 14.9342C30.9699 15.1848 27.8336 15.1554 27.8336 15.1554C18.2883 15.1554 19.7277 20.3447 19.8034 20.3152C23.8791 18.6198 27.0002 19.7403 29.1063 22.792C30.6365 25.0033 32.3335 30.8119 29.0911 35.6327H36.5H43.9089C40.6514 30.8119 42.3635 25.0033 43.8938 22.792C45.9998 19.7403 49.1209 18.6198 53.1966 20.3152Z' fill='%232A3143'/%3E%3Cpath d='M9.01576 42.3553C12.3187 42.3553 14.7126 41.9277 17.9095 40.8515C18.061 40.7926 18.2277 40.8368 18.364 40.9252C18.2428 41.0284 15.0156 43.402 6.06129 44.7435C5.86432 44.773 5.80372 45.0089 5.94008 45.1268C7.83397 46.719 9.78847 47.0729 11.1521 47.0729C11.7733 47.0729 12.3793 46.9991 12.9702 46.8665C15.258 46.262 18.0004 44.8615 20.864 42.827C21.0306 42.7091 21.2579 42.6796 21.4549 42.768C21.3943 42.886 19.7882 45.4512 12.1369 49.2695C11.9702 49.3579 11.9702 49.5938 12.1521 49.6675C13.0763 50.0508 14.046 50.2425 15.0005 50.2425C16.0914 50.2425 17.1368 49.9771 18.0307 49.4906C20.3488 48.1933 21.6973 46.9254 23.8488 43.8737C23.9548 43.7263 24.1518 43.6526 24.3336 43.6968C24.3184 43.7558 24.3033 43.8148 24.273 43.8885C23.7578 45.1711 22.8942 47.6331 18.061 51.8642C17.9398 51.9821 17.9701 52.1738 18.1368 52.2327C18.5155 52.3654 19.061 52.4981 19.7579 52.4981C20.6973 52.4981 21.667 52.2475 22.6215 51.7757C23.7881 51.2155 24.576 50.2572 25.1821 48.6945C25.3639 48.2375 25.682 47.8837 26.1063 47.692C26.3487 47.5888 26.5911 47.5299 26.8335 47.5299C27.2881 47.5299 27.7426 47.7068 28.1062 48.0459C28.1517 48.0753 28.2123 48.0459 28.2123 48.0016V37.5492C28.2123 37.4902 28.1365 37.4755 28.1062 37.505C27.0608 38.5812 25.9548 38.8171 25.1972 38.8171C23.5003 38.8171 21.8488 37.6377 21.3337 36.075C21.3185 36.0455 20.47 32.9201 23.3791 31.4311H23.3942H23.4094C23.4094 31.4311 23.6669 31.3279 23.6972 31.151C23.7124 31.0478 23.6518 30.8414 23.1215 30.5023C23.0912 30.4875 20.2276 28.8216 16.652 25.4604C13.5005 22.4676 9.16728 17.5731 6.01583 10.8211C5.87947 10.5409 5.47039 10.5262 5.33403 10.8211C4.44011 12.6786 2.94015 16.9834 5.65221 21.1703C7.53095 24.0008 10.137 26.4776 13.8793 28.9543C14.0308 29.0575 14.1066 29.2344 14.0914 29.4113C14.0308 29.3966 8.74304 27.8781 1.69775 20.787C1.56139 20.6543 1.33413 20.728 1.30382 20.9049C1.09171 22.4971 0.985649 26.4481 4.37951 29.3229C7.72792 31.9028 10.0763 32.6105 13.8035 33.4508C14.0308 33.495 14.1975 33.6719 14.2278 33.8931C14.2126 33.8931 14.1975 33.9078 13.8338 33.9078C12.0611 33.9078 7.27338 33.4508 0.3493 29.2787C0.182637 29.1755 -0.0143281 29.3081 0.000823065 29.4851C0.182637 31.0625 0.970497 34.7924 4.60678 36.1929C6.2734 36.8858 8.72789 37.6671 12.9248 37.6671C13.6823 37.6671 14.3944 37.6524 15.1974 37.5934C15.3944 37.5787 15.5914 37.6819 15.6823 37.8588C15.6217 37.8883 13.6217 38.7728 9.63696 38.7728C7.19762 38.7728 4.54617 38.4338 1.77351 37.7556C1.57654 37.7114 1.42503 37.903 1.51594 38.0799C3.04621 40.9105 5.12192 42.2668 8.03094 42.3405C8.36426 42.3405 8.69759 42.3553 9.01576 42.3553Z' fill='%232A3143'/%3E%3Cpath d='M71.4235 37.7113C68.5902 38.4189 65.8933 38.7727 63.3933 38.7727C59.4086 38.7727 57.4086 37.8734 57.3177 37.8439C57.4086 37.667 57.6056 37.5638 57.8026 37.5786C58.6056 37.6228 59.3177 37.6523 60.0752 37.6523C64.257 37.6523 66.7114 36.8562 68.3932 36.178C72.0295 34.7775 72.8325 31.0477 72.9992 29.4702C73.0143 29.2933 72.8174 29.1606 72.6507 29.2638C65.7266 33.4359 60.9237 33.893 59.1662 33.893C58.8025 33.893 58.7722 33.8782 58.7722 33.8782C58.8177 33.6571 58.9844 33.4949 59.1965 33.4359C62.9237 32.5956 65.2872 31.888 68.6205 29.308C72.0295 26.448 71.9234 22.497 71.6962 20.8901C71.6659 20.7132 71.4386 20.6395 71.3022 20.7721C64.257 27.8633 58.9692 29.3818 58.9086 29.3965C58.8783 29.2196 58.9692 29.0427 59.1207 28.9395C62.8479 26.4627 65.469 23.986 67.3478 21.1554C70.075 16.9686 68.5599 12.6638 67.666 10.8062C67.5296 10.5261 67.1054 10.5261 66.9842 10.8062C63.8479 17.573 59.5146 22.4675 56.3632 25.4308C52.7875 28.7921 49.924 30.458 49.8937 30.4727C49.3634 30.8118 49.3028 31.0182 49.3179 31.1214C49.3331 31.2983 49.5906 31.4015 49.6058 31.4015H49.6209H49.6361C52.53 32.8905 51.6815 36.0159 51.6815 36.0454C51.1664 37.6081 49.5149 38.7875 47.8179 38.7875C47.0604 38.7875 45.9543 38.5516 44.9089 37.4754C44.8635 37.4312 44.8029 37.4606 44.8029 37.5196V47.972C44.8029 48.031 44.8635 48.0605 44.9089 48.0163C45.2725 47.6919 45.7271 47.5003 46.1816 47.5003C46.4392 47.5003 46.6816 47.5592 46.9089 47.6624C47.3331 47.8541 47.6664 48.2079 47.8331 48.6649C48.4391 50.2276 49.227 51.1859 50.3936 51.7461C51.3482 52.2326 52.3178 52.4685 53.2572 52.4685C53.939 52.4685 54.4996 52.3358 54.8784 52.2031C55.045 52.1442 55.0754 51.9378 54.9541 51.8346C50.1209 47.6035 49.2573 45.1267 48.7422 43.8589C48.7119 43.7999 48.6967 43.7262 48.6816 43.6672C48.8634 43.623 49.0603 43.6967 49.1664 43.8441C51.3179 46.9106 52.6663 48.1637 54.9844 49.461C55.8784 49.9475 56.9238 50.2129 58.0147 50.2129C58.9692 50.2129 59.954 50.0212 60.8631 49.6379C61.0449 49.5642 61.0449 49.3136 60.8782 49.2399C53.2269 45.4216 51.6209 42.8417 51.5603 42.7385C51.7572 42.65 51.9694 42.6795 52.1512 42.7974C55.0147 44.8466 57.7571 46.2324 60.0449 46.8369C60.6358 46.9696 61.2419 47.0433 61.8631 47.0433C63.2267 47.0433 65.1812 46.6894 67.0751 45.0973C67.2266 44.9793 67.1508 44.7434 66.9539 44.7139C57.9995 43.3724 54.7875 40.9988 54.6663 40.8956C54.7875 40.7924 54.9693 40.763 55.1208 40.8219C58.3177 41.8981 60.7116 42.3257 64.0145 42.3257C64.3327 42.3257 64.666 42.3257 64.9994 42.3109C67.9538 42.2372 70.0599 40.8367 71.5901 37.9029C71.6659 37.8145 71.5598 37.6818 71.4235 37.7113Z' fill='%232A3143'/%3E%3Cpath d='M36.5303 2.68313C37.303 2.66839 37.909 2.06395 37.8939 1.32682C37.8787 0.5897 37.2575 0 36.5 0C35.7576 0.0147425 35.1515 0.5897 35.1364 1.31208C35.1364 2.06395 35.7575 2.68313 36.5303 2.68313Z' fill='%232A3143'/%3E%3Cpath d='M56.5601 58.218C56.5601 57.4809 55.9389 56.8764 55.1813 56.8764C54.4238 56.8764 53.8026 57.4809 53.8026 58.218C53.8026 58.9551 54.4238 59.5596 55.1813 59.5596C55.954 59.5448 56.5601 58.9551 56.5601 58.218Z' fill='%232A3143'/%3E%3Cpath d='M57.6056 59.4418C57.151 60.2969 56.2268 60.8866 55.1814 60.8866C54.1208 60.8866 53.2117 60.2969 52.7572 59.4418C52.6814 59.3091 52.4996 59.2796 52.3936 59.3828C51.7421 60.061 51.333 60.9603 51.333 61.9628C51.333 62.2723 51.3784 62.5819 51.4542 62.8768C51.0451 62.7588 50.53 62.5672 49.8785 62.2723C47.9694 61.3878 48.6967 59.5597 49.2573 58.2329C49.4239 57.8349 49.5452 57.4073 49.5755 56.9798C49.9088 53.191 46.7422 51.9968 45.1816 51.643C45.0301 51.6135 44.8937 51.7315 44.9089 51.8789C45.4392 58.1887 37.5757 51.6725 36.5303 57.5842C35.4849 51.6872 27.6063 58.2034 28.1517 51.8789C28.1669 51.7315 28.0305 51.6135 27.879 51.643C26.3184 51.9968 23.1518 53.191 23.4852 56.9798C23.5306 57.4073 23.6367 57.8349 23.8033 58.2329C24.3639 59.5597 25.0912 61.3878 23.1821 62.2723C19.7125 63.8793 20.2731 62.3313 17.652 62.3903C17.6065 62.3903 17.4853 62.405 17.3944 62.4198C17.2429 62.4493 17.0459 62.3608 16.9399 62.2576L10.7885 56.3164C10.8188 56.2132 10.8188 56.11 10.8188 56.0068C10.8188 55.4171 10.44 54.9158 9.90971 54.7094C10.3036 53.8249 10.1673 52.7634 9.50063 51.9968C9.40972 51.8936 9.25821 51.8936 9.1673 51.9821L8.37944 52.7487C8.33399 52.7929 8.25823 52.8077 8.19763 52.7634C7.89461 52.5718 7.53098 52.4833 7.13705 52.5423C6.45525 52.6455 5.9098 53.2057 5.83405 53.8691C5.80375 54.2082 5.8795 54.5325 6.06132 54.8126C6.09162 54.8716 6.09162 54.9453 6.03101 54.9896L5.228 55.7709C5.13709 55.8594 5.13709 56.0215 5.24315 56.0952C6.04616 56.7439 7.13705 56.8766 8.06127 56.4785C8.25823 57.0093 8.78853 57.3926 9.39457 57.3926C9.50063 57.3926 9.60669 57.3778 9.71275 57.3631L15.9096 63.3486C16.0005 63.437 16.0308 63.5697 16.0005 63.7024C16.0005 63.7171 15.9853 63.7466 15.9853 63.7613C15.6975 64.7786 16.258 65.8695 17.2883 66.2528C17.7429 66.4297 18.2125 66.4445 18.6822 66.297C18.6974 66.297 18.7277 66.2823 18.7731 66.2676C18.8489 66.2381 18.9398 66.2676 18.9853 66.3118L19.9852 67.2701C20.1367 67.4175 20.3337 67.4912 20.5155 67.4912C20.7428 67.4912 20.9852 67.388 21.1367 67.1816C21.3488 66.9015 21.2731 66.4592 21.0307 66.2086L20.1519 65.3535C20.0761 65.2798 20.061 65.1619 20.1216 65.0734C20.1519 65.0292 20.1822 64.9997 20.1974 64.985C21.5004 63.4075 25.0003 63.953 26.1518 63.2601C26.4093 63.1127 26.4548 62.7736 26.3033 62.5377C25.5457 61.3583 24.97 57.8054 29.0002 57.1125C30.0608 56.9945 33.4849 57.6432 33.6667 59.9578H33.7273C33.697 59.9578 33.6667 59.9873 33.6667 60.0167C33.6667 60.2084 33.6516 60.4001 33.6061 60.6212C33.4092 61.4025 32.4092 61.6974 31.8637 61.8301C27.2275 62.9505 24.0154 67.1963 27.1972 69.791C27.3639 69.9237 27.6063 69.85 27.6517 69.6436C28.4244 66.5772 30.2426 64.867 33.3789 63.4812C33.4849 63.437 33.6213 63.4517 33.7122 63.5255C33.7425 63.5549 33.7425 63.5844 33.7122 63.6139C31.6668 64.9997 27.8487 68.9802 31.8789 72.2088C32.0607 72.3562 32.3183 72.2383 32.3486 72.0319C32.5759 69.6289 33.2728 66.9752 34.8637 65.2208C34.9394 65.1324 35.1061 65.0882 35.2122 65.1619C35.2273 65.1766 35.2273 65.1914 35.2273 65.2061C34.7273 67.6681 33.6364 71.9729 36.3182 73.9337C36.4394 74.0221 36.6364 74.0221 36.7727 73.9337C39.3939 72.0171 38.409 67.8745 37.8939 65.383C37.8636 65.2061 38.0909 65.0734 38.2121 65.2061C39.803 66.9605 40.4999 69.6141 40.7272 72.0171C40.7423 72.2383 41.015 72.3415 41.1969 72.194C45.2119 68.9654 41.409 64.985 39.3636 63.5992C39.3333 63.5844 39.3333 63.5402 39.3636 63.5107C39.4545 63.437 39.5908 63.4223 39.6969 63.4665C42.8332 64.8523 44.6513 66.5624 45.424 69.6288C45.4695 69.8352 45.7271 69.909 45.8786 69.7763C49.0603 67.1816 45.8483 62.921 41.212 61.8153C40.6514 61.6826 39.6666 61.3878 39.4696 60.6064C39.4242 60.4001 39.409 60.1937 39.409 60.002C39.409 59.9725 39.3787 59.943 39.3484 59.943H39.409C39.606 57.6432 43.015 56.9798 44.0756 57.0977C48.1058 57.7906 47.5149 61.3436 46.7725 62.523C46.6058 62.7736 46.6816 63.1127 46.9392 63.2601C48.03 63.894 51.1057 63.4812 52.5754 64.6754C53.3481 65.383 54.4087 65.7811 55.5753 65.6779C57.3935 65.5157 58.8631 64.1004 59.0449 62.3461C59.1661 61.1961 58.7419 60.1347 57.9995 59.3681C57.8631 59.2649 57.6813 59.3091 57.6056 59.4418Z' fill='%232A3143'/%3E%3Cpath d='M27.682 8.31475C27.985 8.31475 28.2729 8.15258 28.3941 7.87247C28.6365 7.29751 28.2123 6.76678 27.6668 6.76678C27.2426 6.76678 26.8941 7.10586 26.8941 7.51865C26.879 7.96093 27.2426 8.31475 27.682 8.31475Z' fill='%232A3143'/%3E%3Cpath d='M12.2278 13.7842C14.4701 13.6515 16.0307 14.0791 16.9852 15.7892C17.0458 15.8924 17.1822 15.8924 17.2428 15.8039C18.5003 14.0201 18.4246 11.4844 17.0761 9.75953C17.0761 9.75953 17.0761 9.75953 17.0761 9.73004C16.6216 9.09611 16.864 8.21156 17.561 7.87249C19.4246 6.98794 22.6821 5.42523 22.3033 7.04691C21.9245 8.62435 21.6366 10.7325 22.6821 12.0741C23.2578 12.6933 23.8335 12.9144 24.7426 13.0913C25.1062 13.165 25.485 13.1945 25.8487 13.1945C26.8638 13.1945 29.091 13.1945 29.788 13.1945C29.9243 13.1945 30.0607 13.1945 30.197 13.165C31.6667 12.9586 32.6212 12.3542 33.9545 10.4672C34.1666 10.1723 34.5 9.95118 34.8636 9.90695C35.4393 9.83324 36.2121 9.84798 36.4848 9.84798C36.7575 9.84798 37.5302 9.83324 38.1059 9.90695C38.4847 9.95118 38.8029 10.1576 39.015 10.4672C40.3483 12.3689 41.3028 12.9586 42.7725 13.165C42.9089 13.1798 43.0452 13.1945 43.1816 13.1945C43.8785 13.1945 46.1058 13.1945 47.1209 13.1945C47.4997 13.1945 47.8633 13.165 48.2269 13.0913C49.136 12.9144 49.7117 12.6785 50.2875 12.0741C51.3329 10.7473 51.045 8.62435 50.6663 7.04691C50.3026 5.42523 53.545 6.98794 55.4086 7.87249C56.1055 8.21156 56.3479 9.09611 55.8934 9.73004C55.8934 9.75953 55.8934 9.75953 55.8934 9.75953C54.545 11.4844 54.4692 14.0201 55.7268 15.8039C55.7874 15.8924 55.9389 15.8924 55.9843 15.7892C56.9388 14.0791 58.4994 13.6663 60.7418 13.7842C60.8933 13.799 60.9691 13.5926 60.8327 13.5189C58.1661 11.8382 58.2267 11.3959 58.2873 10.4229C58.3328 9.87747 59.0297 8.5359 58.1358 8.28528C54.8025 7.3565 53.7268 6.98794 51.4996 4.76182C50.2117 3.59716 48.5754 4.09841 48.8027 5.43997C48.833 5.57266 48.8784 5.70534 48.9239 5.83802C49.0754 6.1771 49.2269 6.50143 49.4087 6.82577C49.4542 6.89948 52.242 12.3395 47.6057 12.708C47.6057 12.708 47.5603 12.708 47.4694 12.708V12.5901V12.4132V12.3247C47.4694 12.192 47.5148 12.0446 47.6209 11.9562C47.8784 11.7203 48.1057 11.4402 48.2875 11.1453C48.5148 10.7915 48.6209 10.364 48.5602 9.92169C48.4542 9.1256 47.8178 8.5359 47.0148 8.34425L46.6815 8.27053C46.5603 8.24105 46.4542 8.3295 46.4391 8.4327C46.3633 9.11086 46.2118 9.77427 45.9694 10.4229C45.8633 10.6293 45.7573 10.6293 45.5603 10.6293H45.0149C44.8482 10.6588 44.6815 10.5704 44.6209 10.4229C44.3785 9.78901 44.2119 9.11086 44.1513 8.4327C44.1361 8.31476 44.0301 8.24105 43.9088 8.25579L43.5452 8.3295C43.3482 8.37373 43.1513 8.4327 42.9846 8.5359C42.0452 9.05189 41.7422 10.2165 42.3028 11.1158C42.4846 11.4107 42.7119 11.6761 42.9543 11.9267C43.0452 12.0299 43.1058 12.1626 43.1058 12.2952V12.3984V12.4721V12.7375C42.9846 12.7375 42.9089 12.7375 42.9089 12.7375C41.015 12.5606 40.1059 11.1011 39.9998 9.65633V9.0224C39.9998 8.78652 40.0907 8.58013 40.2574 8.40322C40.6665 7.99043 41.0301 7.54815 41.3483 7.06165C41.5756 6.69309 41.7271 6.29504 41.7877 5.86751C42.0301 4.18686 40.8332 2.69787 39.1059 2.40302C38.5302 2.29982 38.4393 2.37354 38.3484 2.91901C38.212 3.70036 37.9544 5.05667 37.5454 5.89699C37.3787 6.23607 37.1817 6.23607 36.8939 6.23607H36.4393H35.9848C35.6969 6.23607 35.4999 6.23607 35.3333 5.89699C34.9091 5.05667 34.6666 3.70036 34.5303 2.91901C34.4242 2.37354 34.3182 2.28508 33.7727 2.40302C32.0455 2.69787 30.8485 4.18686 31.091 5.86751C31.1516 6.29504 31.3031 6.69309 31.5303 7.06165C31.8485 7.54815 32.2121 7.99043 32.6212 8.40322C32.7879 8.56538 32.8788 8.78652 32.8788 9.0224V9.65633C32.7576 11.0864 31.8637 12.5606 29.9698 12.7375C29.9698 12.7375 29.894 12.7375 29.7728 12.7375V12.4721V12.3984V12.2952C29.7728 12.1626 29.8334 12.0299 29.9243 11.9267C30.1667 11.6761 30.394 11.4107 30.5758 11.1158C31.1364 10.2313 30.8334 9.06663 29.894 8.5359C29.7122 8.4327 29.5304 8.38847 29.3334 8.3295L28.9698 8.25579C28.8486 8.22631 28.7425 8.31476 28.7274 8.4327C28.6668 9.11086 28.5001 9.77427 28.2577 10.4229C28.1971 10.5704 28.0304 10.6588 27.8638 10.6293H27.3183C27.1365 10.6293 27.0304 10.6293 26.9092 10.4229C26.6668 9.78901 26.5153 9.11086 26.4395 8.4327C26.4244 8.31476 26.3183 8.24105 26.1971 8.27053L25.8638 8.34425C25.0608 8.52116 24.4244 9.14034 24.3184 9.92169C24.2578 10.3492 24.3638 10.7768 24.5911 11.1453C24.7729 11.4402 25.0002 11.7203 25.2578 11.9562C25.3638 12.0594 25.4093 12.192 25.4093 12.3247V12.4132V12.5901V12.708C25.3335 12.708 25.2881 12.708 25.2729 12.708C20.6367 12.3395 23.4245 6.89948 23.4699 6.82577C23.6517 6.50143 23.8184 6.1771 23.9548 5.83802C24.0154 5.70534 24.0608 5.57266 24.076 5.43997C24.3032 4.09841 22.6669 3.59716 21.3791 4.76182C19.1518 6.98794 18.0761 7.3565 14.7429 8.28528C13.8489 8.5359 14.5459 9.87747 14.5913 10.4229C14.6519 11.3959 14.7125 11.8382 12.0459 13.5189C12.0005 13.5926 12.0762 13.7842 12.2278 13.7842Z' fill='%232A3143'/%3E%3Cpath d='M45.3483 8.31483C45.8028 8.31483 46.1513 7.96101 46.1513 7.53348C46.1361 7.12069 45.8028 6.78162 45.3786 6.78162C44.9392 6.78162 44.5907 7.12069 44.5756 7.53348C44.5604 7.96101 44.9089 8.30009 45.3483 8.31483Z' fill='%232A3143'/%3E%3C/svg%3E%0A") no-repeat left center;
        background-size: 74px 77px;
        height: 74px;
        width: 77px;
        margin-top: 0;
        margin-bottom: 0;
    }
    .footer_part .logo_container p {
        font-size: 12px;
        line-height: 20px;
        width: 300px;
        letter-spacing: 1.5px;
        color: #2A3143;
    }

    .footer_section .section_title:not(.soc_web_container .section_title) {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footer_section .section_title:not(.soc_web_container .section_title):after {
        content: ' ';
        background: url("/common/core/img/icons/arrow_expand.svg#down") no-repeat center;
        background-size: 0.9em;
        height: 1em;
        width: 1em;
        margin-right: 0.2em;
    }
    .footer_section .section_title.expanded:not(.soc_web_container .section_title):after {
        background-image: url("/common/core/img/icons/arrow_expand.svg#up");
    }
    .footer_section .section_title.expanded:not(.soc_web_container .section_title) + .link_container {
        display: block;
        margin-top: 25px;
    }
    .footer_section .link_container {
        margin-top: 24px;
    }
    .footer_section .link_container li,
    .footer_section .link_container li a {
        font-size: 16px;
        line-height: 24px;
    }
    .footer_section .link_container li + li {
        margin-top: 18px;
    }
    .footer_section .link_container {
        display: none;
    }
    .footer_section address {
        font-style: normal;
        text-decoration: none;
        text-transform: none;
        margin-top: 9px;
        font-size: 14px;
        line-height: 22px;
    }
    .footer_section .soc_web {
        gap: 20px;
        margin-top: 9px;
    }
}
@media all and (max-width:1000px) and (min-width:751px) {
    .footer_part .logo_container p {
        letter-spacing: 1.46px;
    }
}
@media all and (max-width:750px) {
    footer {
        padding-top: 81px;
        gap: 25px;
    }

    .footer_block.block_content_container {
        padding-top: 32px;
        padding-bottom: 30px;
    }

    .footer_part {
        gap: 25px;
    }
    .footer_part:first-child {
        order: 3;
        flex-direction: column;
        justify-content: space-between;
        gap: 18px;
    }
    .footer_part .logo_container {
        gap: 14px;
    }
    .footer_part .logo_container .logo_icon {
        background: url("data:image/svg+xml,%3Csvg width='54' height='55' viewBox='0 0 54 55' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.8529 32.6087C31.7968 31.754 31.2589 31.1075 30.5304 30.724C30.6761 30.0994 30.8778 29.6173 31.158 29.3434H30.0709C29.8467 29.6502 29.6674 30.0008 29.488 30.3734C28.7595 30.2528 27.9862 30.3624 27.3586 30.735V29.8693H26.6749V30.735C26.0473 30.3624 25.2627 30.2528 24.5342 30.3734C24.3661 29.9899 24.1756 29.6392 23.9514 29.3215H22.8643C23.1445 29.5844 23.3462 30.0885 23.4919 30.713C22.7746 31.0965 22.2367 31.743 22.1806 32.5977C22.0798 33.7592 22.7074 34.5481 23.5816 34.9316C23.3686 36.3451 22.8979 37.5504 22.1806 37.8572L23.8394 37.8353C24.0299 37.2107 24.1532 36.2136 24.2316 35.1398C24.6351 35.2274 25.0722 35.2384 25.4981 35.1836C25.8343 36.5861 26.2378 37.9667 27.0336 39.1501C27.8293 37.9667 28.244 36.5971 28.569 35.1946C28.9949 35.2494 29.432 35.2274 29.8355 35.1398C29.9027 36.2136 30.0372 37.2107 30.2278 37.8353L31.8641 37.8791C31.1356 37.5723 30.6761 36.367 30.4631 34.9535C31.3261 34.57 31.9537 33.7811 31.8529 32.6087ZM29.8915 30.4172C29.8915 30.4282 29.8803 30.4501 29.8803 30.472H29.8691C29.8691 30.4501 29.8803 30.4391 29.8915 30.4172ZM27.3474 31.3814C27.9638 30.9212 28.6699 30.7569 29.2975 30.8336C28.8492 32.017 28.5578 33.4195 28.244 34.7344C27.8966 34.6357 27.5827 34.4604 27.3362 34.2084V31.3814H27.3474ZM26.6637 31.3814V34.2084C26.4283 34.4604 26.1033 34.6357 25.7559 34.7344C25.4421 33.4195 25.1619 32.017 24.7024 30.8336C25.3412 30.7569 26.0473 30.9212 26.6637 31.3814ZM24.142 30.4172C24.1532 30.4282 24.1532 30.4391 24.1644 30.461H24.1532C24.1532 30.4501 24.1532 30.4391 24.142 30.4172ZM22.8867 33.4633C22.6513 32.51 22.9764 31.743 23.5816 31.2828C23.7273 32.2361 23.7497 33.3866 23.6264 34.4604C23.2678 34.2303 22.9988 33.9016 22.8867 33.4633ZM24.2428 34.7344C24.3213 33.3209 24.2989 31.8416 24.2204 30.9541C24.2653 30.9431 24.3101 30.9212 24.3549 30.9103C24.8256 32.1375 25.0946 33.4852 25.3972 34.822C25.005 34.8658 24.6015 34.833 24.2428 34.7344ZM26.6637 34.8549C26.6637 34.8549 26.6637 36.1917 26.4396 37.1011C26.2154 36.5204 26.0249 35.841 25.8568 35.1288C26.1369 35.074 26.4059 34.9754 26.6637 34.8549ZM26.9999 38.1969C26.8767 38.0215 26.7534 37.8133 26.6525 37.5942C26.8879 37.5942 27.1344 37.5942 27.3474 37.5942C27.2465 37.8243 27.1344 38.0215 26.9999 38.1969ZM27.5603 37.123C27.3138 36.2136 27.3474 34.8549 27.3474 34.8549C27.6052 34.9754 27.8741 35.074 28.1543 35.1398C27.975 35.852 27.7957 36.5313 27.5603 37.123ZM28.6475 34.8111C28.9501 33.4743 29.2079 32.1375 29.6898 30.9103C29.7346 30.9212 29.7794 30.9322 29.8243 30.9541C29.7458 31.8526 29.7234 33.3209 29.8019 34.7234C29.432 34.833 29.0285 34.8658 28.6475 34.8111ZM30.3735 34.4714C30.2614 33.3976 30.2726 32.2361 30.4183 31.2828C31.0235 31.743 31.3597 32.51 31.1244 33.4633C31.0235 33.9016 30.7433 34.2413 30.3735 34.4714Z' fill='%232A3143'/%3E%3Cpath d='M39.3509 15.0992C39.4069 15.1211 40.4829 11.2641 33.4108 11.2641C33.4108 11.2641 31.0908 11.286 29.5442 11.0998C29.3872 11.0779 29.2976 11.2532 29.3985 11.3737C30.0821 12.1407 30.9899 13.5871 29.9813 15.132C27.6388 18.0686 27.1121 20.5011 27 23.1856C26.8879 20.4901 26.3612 18.0576 24.0188 15.132C23.0101 13.598 23.9179 12.1517 24.6016 11.3737C24.7024 11.2641 24.6128 11.0888 24.4559 11.0998C22.9092 11.286 20.5892 11.2641 20.5892 11.2641C13.5283 11.2641 14.5931 15.1211 14.6491 15.0992C17.664 13.8391 19.9728 14.6718 21.5306 16.94C22.6626 18.5836 23.9179 22.9007 21.5194 26.4838H27H32.4806C30.0709 22.9007 31.3374 18.5836 32.4694 16.94C34.0272 14.6718 36.336 13.8391 39.3509 15.0992Z' fill='%232A3143'/%3E%3Cpath d='M6.6692 31.4802C9.11248 31.4802 10.8833 31.1625 13.2481 30.3626C13.3602 30.3188 13.4835 30.3516 13.5844 30.4174C13.4947 30.4941 11.1074 32.2582 4.48369 33.2553C4.33799 33.2772 4.29316 33.4526 4.39403 33.5402C5.79499 34.7236 7.24079 34.9866 8.24948 34.9866C8.709 34.9866 9.15731 34.9318 9.59441 34.8332C11.2868 34.3839 13.3154 33.343 15.4336 31.8309C15.5569 31.7432 15.725 31.7213 15.8707 31.787C15.8259 31.8747 14.6379 33.7813 8.97798 36.6192C8.8547 36.6849 8.8547 36.8603 8.98919 36.915C9.67286 37.1999 10.3902 37.3424 11.0962 37.3424C11.9032 37.3424 12.6765 37.1452 13.3378 36.7836C15.0526 35.8193 16.0501 34.877 17.6415 32.6088C17.72 32.4993 17.8657 32.4445 18.0002 32.4774C17.989 32.5212 17.9778 32.565 17.9554 32.6198C17.5743 33.5731 16.9355 35.4029 13.3602 38.5477C13.2705 38.6353 13.293 38.7778 13.4162 38.8216C13.6964 38.9202 14.0999 39.0188 14.6155 39.0188C15.3103 39.0188 16.0276 38.8326 16.7337 38.4819C17.5967 38.0656 18.1795 37.3533 18.6278 36.1919C18.7623 35.8522 18.9977 35.5892 19.3115 35.4468C19.4908 35.3701 19.6701 35.3262 19.8495 35.3262C20.1857 35.3262 20.5219 35.4577 20.7909 35.7097C20.8245 35.7317 20.8694 35.7097 20.8694 35.6769V27.9082C20.8694 27.8643 20.8133 27.8534 20.7909 27.8753C20.0176 28.6752 19.1994 28.8505 18.639 28.8505C17.3838 28.8505 16.1621 27.9739 15.7811 26.8125C15.7699 26.7905 15.1422 24.4676 17.2941 23.3609H17.3053H17.3165C17.3165 23.3609 17.5071 23.2842 17.5295 23.1527C17.5407 23.076 17.4958 22.9226 17.1036 22.6706C17.0812 22.6596 14.9629 21.4215 12.3179 18.9232C9.98668 16.6989 6.78127 13.0611 4.45007 8.04266C4.3492 7.83447 4.04659 7.82352 3.94572 8.04266C3.28447 9.42328 2.1749 12.6228 4.18108 15.7347C5.57084 17.8385 7.49857 19.6793 10.2669 21.5201C10.3789 21.5968 10.435 21.7283 10.4238 21.8598C10.3789 21.8488 6.46746 20.7202 1.25587 15.4498C1.155 15.3512 0.986887 15.4059 0.964472 15.5374C0.807564 16.7208 0.72911 19.6574 3.23964 21.794C5.71654 23.7115 7.45374 24.2375 10.2108 24.8621C10.3789 24.8949 10.5022 25.0264 10.5246 25.1908C10.5134 25.1908 10.5022 25.2017 10.2332 25.2017C8.92194 25.2017 5.38031 24.8621 0.258386 21.7612C0.135101 21.6845 -0.0105989 21.7831 0.000608843 21.9146C0.135101 23.087 0.717902 25.8592 3.40775 26.9001C4.6406 27.4151 6.45625 27.9958 9.56078 27.9958C10.1212 27.9958 10.6479 27.9849 11.2419 27.941C11.3876 27.9301 11.5333 28.0068 11.6006 28.1383C11.5558 28.1602 10.0763 28.8176 7.12871 28.8176C5.32427 28.8176 3.36292 28.5656 1.31191 28.0616C1.16621 28.0287 1.05413 28.1712 1.12138 28.3026C2.25336 30.4064 3.78881 31.4145 5.94069 31.4693C6.18726 31.4693 6.43383 31.4802 6.6692 31.4802Z' fill='%232A3143'/%3E%3Cpath d='M52.8338 28.0286C50.7379 28.5546 48.743 28.8175 46.8937 28.8175C43.9461 28.8175 42.4667 28.1492 42.3994 28.1272C42.4667 27.9958 42.6124 27.9191 42.7581 27.93C43.3521 27.9629 43.8788 27.9848 44.4392 27.9848C47.5325 27.9848 49.3482 27.3931 50.5922 26.8891C53.2821 25.8481 53.8761 23.0759 53.9994 21.9035C54.0106 21.772 53.8649 21.6734 53.7416 21.7501C48.6197 24.851 45.0668 25.1907 43.7668 25.1907C43.4978 25.1907 43.4754 25.1797 43.4754 25.1797C43.509 25.0154 43.6323 24.8949 43.7892 24.851C46.5463 24.2265 48.2947 23.7005 50.7604 21.783C53.2821 19.6573 53.2036 16.7207 53.0355 15.5264C53.0131 15.3949 52.845 15.3401 52.7441 15.4387C47.5325 20.7092 43.6211 21.8378 43.5762 21.8487C43.5538 21.7172 43.6211 21.5858 43.7331 21.5091C46.4902 19.6682 48.4292 17.8274 49.8189 15.7236C51.8363 12.6118 50.7155 9.41224 50.0543 8.03163C49.9534 7.82344 49.6396 7.82344 49.5499 8.03163C47.2299 13.061 44.0245 16.6988 41.6933 18.9012C39.0483 21.3995 36.9301 22.6377 36.9076 22.6486C36.5154 22.9006 36.4705 23.054 36.4817 23.1307C36.4929 23.2622 36.6835 23.3389 36.6947 23.3389H36.7059H36.7171C38.8578 24.4456 38.2301 26.7685 38.2301 26.7905C37.8491 27.9519 36.6274 28.8285 35.3722 28.8285C34.8118 28.8285 33.9936 28.6532 33.2203 27.8533C33.1867 27.8204 33.1418 27.8424 33.1418 27.8862V35.6549C33.1418 35.6987 33.1867 35.7206 33.2203 35.6878C33.4893 35.4467 33.8255 35.3042 34.1617 35.3042C34.3523 35.3042 34.5316 35.3481 34.6997 35.4248C35.0135 35.5672 35.2601 35.8302 35.3834 36.1699C35.8317 37.3313 36.4145 38.0436 37.2775 38.4599C37.9836 38.8215 38.7009 38.9968 39.3957 38.9968C39.9001 38.9968 40.3148 38.8982 40.595 38.7996C40.7183 38.7558 40.7407 38.6024 40.651 38.5257C37.0758 35.3809 36.4369 33.5401 36.0558 32.5978C36.0334 32.554 36.0222 32.4992 36.011 32.4554C36.1455 32.4225 36.2912 32.4773 36.3697 32.5868C37.9612 34.866 38.9586 35.7973 40.6734 36.7616C41.3347 37.1232 42.108 37.3204 42.915 37.3204C43.6211 37.3204 44.3496 37.1779 45.022 36.8931C45.1565 36.8383 45.1565 36.652 45.0332 36.5972C39.3733 33.7593 38.1853 31.8418 38.1405 31.7651C38.2862 31.6993 38.4431 31.7212 38.5776 31.8089C40.6958 33.3319 42.7244 34.3619 44.4168 34.8112C44.8539 34.9098 45.3022 34.9646 45.7617 34.9646C46.7704 34.9646 48.2162 34.7016 49.6172 33.5182C49.7293 33.4306 49.6732 33.2552 49.5275 33.2333C42.9038 32.2362 40.5277 30.4721 40.4381 30.3954C40.5277 30.3187 40.6622 30.2968 40.7743 30.3406C43.1391 31.1405 44.9099 31.4583 47.3532 31.4583C47.5886 31.4583 47.8351 31.4582 48.0817 31.4473C50.2672 31.3925 51.8251 30.3516 52.9571 28.1711C53.0131 28.1053 52.9347 28.0067 52.8338 28.0286Z' fill='%232A3143'/%3E%3Cpath d='M27.0224 1.99422C27.594 1.98326 28.0423 1.53402 28.0311 0.986153C28.0199 0.43829 27.5603 0 27 0C26.4508 0.0109573 26.0025 0.43829 25.9913 0.975196C25.9913 1.53402 26.4508 1.99422 27.0224 1.99422Z' fill='%232A3143'/%3E%3Cpath d='M41.8389 43.2701C41.8389 42.7223 41.3794 42.273 40.819 42.273C40.2587 42.273 39.7991 42.7223 39.7991 43.2701C39.7991 43.818 40.2587 44.2672 40.819 44.2672C41.3906 44.2563 41.8389 43.818 41.8389 43.2701Z' fill='%232A3143'/%3E%3Cpath d='M42.6123 44.1797C42.2761 44.8152 41.5924 45.2535 40.8191 45.2535C40.0346 45.2535 39.3621 44.8152 39.0259 44.1797C38.9698 44.0811 38.8353 44.0592 38.7569 44.1359C38.275 44.6399 37.9724 45.3083 37.9724 46.0534C37.9724 46.2835 38.006 46.5136 38.062 46.7328C37.7594 46.6451 37.3783 46.5027 36.8964 46.2835C35.4842 45.6261 36.0222 44.2674 36.4369 43.2812C36.5602 42.9854 36.6498 42.6676 36.6723 42.3499C36.9188 39.5338 34.5764 38.6463 33.422 38.3833C33.3099 38.3614 33.2091 38.4491 33.2203 38.5586C33.6125 43.2483 27.7958 38.4052 27.0224 42.7991C26.2491 38.4162 20.4211 43.2593 20.8246 38.5586C20.8358 38.4491 20.7349 38.3614 20.6228 38.3833C19.4684 38.6463 17.126 39.5338 17.3726 42.3499C17.4062 42.6676 17.4847 42.9854 17.6079 43.2812C18.0226 44.2674 18.5606 45.6261 17.1484 46.2835C14.5819 47.4779 14.9965 46.3273 13.0576 46.3712C13.024 46.3712 12.9343 46.3821 12.8671 46.3931C12.755 46.415 12.6093 46.3493 12.5309 46.2726L7.98052 41.8568C8.00294 41.7801 8.00294 41.7034 8.00294 41.6267C8.00294 41.1884 7.72274 40.8158 7.33047 40.6624C7.62187 40.005 7.521 39.2161 7.02786 38.6463C6.96062 38.5696 6.84854 38.5696 6.7813 38.6353L6.19849 39.2051C6.16487 39.238 6.10883 39.2489 6.064 39.2161C5.83985 39.0736 5.57086 39.0079 5.27946 39.0517C4.77512 39.1284 4.37164 39.5448 4.3156 40.0379C4.29318 40.2899 4.34922 40.5309 4.48371 40.7391C4.50613 40.783 4.50613 40.8378 4.4613 40.8706L3.86729 41.4514C3.80004 41.5171 3.80004 41.6376 3.8785 41.6924C4.47251 42.1745 5.27946 42.2732 5.96313 41.9773C6.10883 42.3718 6.5011 42.6567 6.94941 42.6567C7.02787 42.6567 7.10632 42.6457 7.18477 42.6347L11.7687 47.0834C11.836 47.1491 11.8584 47.2478 11.836 47.3464C11.836 47.3573 11.8248 47.3792 11.8248 47.3902C11.6118 48.1462 12.0265 48.9571 12.7886 49.242C13.1249 49.3735 13.4723 49.3844 13.8197 49.2748C13.8309 49.2748 13.8534 49.2639 13.887 49.2529C13.943 49.231 14.0103 49.2529 14.0439 49.2858L14.7836 49.998C14.8957 50.1076 15.0414 50.1624 15.1759 50.1624C15.344 50.1624 15.5233 50.0857 15.6354 49.9323C15.7923 49.7241 15.7363 49.3954 15.5569 49.2091L14.9069 48.5736C14.8508 48.5188 14.8396 48.4311 14.8845 48.3654C14.9069 48.3325 14.9293 48.3106 14.9405 48.2996C15.9044 47.1272 18.4934 47.5326 19.3451 47.0176C19.5357 46.9081 19.5693 46.6561 19.4572 46.4807C18.8968 45.6042 18.4709 42.9635 21.4522 42.4485C22.2367 42.3608 24.7697 42.8429 24.9042 44.5632H24.949C24.9266 44.5632 24.9042 44.5851 24.9042 44.6071C24.9042 44.7495 24.893 44.8919 24.8593 45.0563C24.7136 45.637 23.9739 45.8562 23.5704 45.9548C20.1409 46.7875 17.7648 49.9432 20.1185 51.8717C20.2418 51.9703 20.4211 51.9155 20.4547 51.7621C21.0263 49.483 22.3712 48.212 24.6912 47.182C24.7697 47.1491 24.8705 47.1601 24.9378 47.2149C24.9602 47.2368 24.9602 47.2587 24.9378 47.2806C23.4247 48.3106 20.6004 51.2691 23.5817 53.6687C23.7161 53.7783 23.9067 53.6906 23.9291 53.5372C24.0972 51.7512 24.6128 49.7789 25.7896 48.475C25.8456 48.4092 25.9689 48.3763 26.0473 48.4311C26.0586 48.4421 26.0586 48.453 26.0586 48.464C25.6887 50.2939 24.8817 53.4934 26.8655 54.9507C26.9552 55.0164 27.1009 55.0164 27.2017 54.9507C29.1407 53.5263 28.4122 50.4473 28.0311 48.5955C28.0087 48.464 28.1768 48.3654 28.2665 48.464C29.4433 49.7679 29.9588 51.7402 30.127 53.5263C30.1382 53.6906 30.3399 53.7673 30.4744 53.6577C33.4444 51.2581 30.6313 48.2996 29.1183 47.2697C29.0958 47.2587 29.0958 47.2258 29.1183 47.2039C29.1855 47.1491 29.2864 47.1382 29.3648 47.171C31.6848 48.201 33.0298 49.4721 33.6013 51.7512C33.635 51.9046 33.8255 51.9594 33.9376 51.8608C36.2912 49.9323 33.9152 46.7656 30.4856 45.9438C30.0709 45.8452 29.3424 45.6261 29.1967 45.0453C29.1631 44.8919 29.1519 44.7385 29.1519 44.5961C29.1519 44.5742 29.1295 44.5523 29.1071 44.5523H29.1519C29.2976 42.8429 31.8193 42.3499 32.6039 42.4375C35.5851 42.9525 35.148 45.5932 34.5988 46.4698C34.4755 46.6561 34.5316 46.9081 34.7221 47.0176C35.5291 47.4888 37.8042 47.182 38.8914 48.0695C39.463 48.5955 40.2475 48.8913 41.1105 48.8146C42.4554 48.6941 43.5426 47.6422 43.6771 46.3383C43.7667 45.4836 43.4529 44.6947 42.9037 44.1249C42.8029 44.0482 42.6684 44.0811 42.6123 44.1797Z' fill='%232A3143'/%3E%3Cpath d='M20.4771 6.17987C20.7012 6.17987 20.9142 6.05934 21.0038 5.85115C21.1831 5.42382 20.8693 5.02936 20.4659 5.02936C20.152 5.02936 19.8943 5.28137 19.8943 5.58818C19.8831 5.91689 20.152 6.17987 20.4771 6.17987Z' fill='%232A3143'/%3E%3Cpath d='M9.04518 10.245C10.7039 10.1464 11.8583 10.4642 12.5644 11.7352C12.6092 11.8119 12.7101 11.8119 12.7549 11.7462C13.6852 10.4203 13.6291 8.5357 12.6317 7.2537C12.6317 7.2537 12.6317 7.2537 12.6317 7.23178C12.2954 6.76062 12.4747 6.10319 12.9903 5.85117C14.3688 5.19373 16.7785 4.03226 16.4983 5.23756C16.2181 6.40999 16.0052 7.97688 16.7785 8.97399C17.2044 9.43419 17.6303 9.59855 18.3028 9.73004C18.5717 9.78483 18.8519 9.80674 19.1209 9.80674C19.8718 9.80674 21.5194 9.80674 22.0349 9.80674C22.1358 9.80674 22.2367 9.80674 22.3375 9.78483C23.4247 9.63142 24.1308 9.18218 25.117 7.77965C25.2739 7.5605 25.5205 7.39614 25.7895 7.36327C26.2154 7.30848 26.787 7.31944 26.9887 7.31944C27.1905 7.31944 27.7621 7.30848 28.188 7.36327C28.4681 7.39614 28.7035 7.54954 28.8604 7.77965C29.8467 9.19313 30.5528 9.63142 31.6399 9.78483C31.7408 9.79578 31.8417 9.80674 31.9425 9.80674C32.4581 9.80674 34.1056 9.80674 34.8565 9.80674C35.1367 9.80674 35.4057 9.78483 35.6747 9.73004C36.3472 9.59855 36.7731 9.42324 37.199 8.97399C37.9723 7.98783 37.7593 6.40999 37.4791 5.23756C37.2102 4.03226 39.6086 5.19373 40.9872 5.85117C41.5027 6.10319 41.682 6.76062 41.3458 7.23178C41.3458 7.2537 41.3458 7.2537 41.3458 7.2537C40.3483 8.5357 40.2923 10.4203 41.2225 11.7462C41.2674 11.8119 41.3794 11.8119 41.4131 11.7352C42.1191 10.4642 43.2735 10.1574 44.9323 10.245C45.0443 10.256 45.1004 10.1026 44.9995 10.0478C43.027 8.79867 43.0718 8.46995 43.1166 7.74677C43.1502 7.34136 43.6658 6.34425 43.0045 6.15797C40.5389 5.46766 39.7431 5.19373 38.0956 3.53919C37.1429 2.67356 35.9325 3.04611 36.1006 4.04322C36.123 4.14184 36.1566 4.24045 36.1903 4.33907C36.3023 4.59108 36.4144 4.83214 36.5489 5.0732C36.5825 5.12799 38.6447 9.17122 35.2152 9.44515C35.2152 9.44515 35.1816 9.44515 35.1143 9.44515V9.35749V9.22601V9.16026C35.1143 9.06165 35.1479 8.95207 35.2264 8.88633C35.4169 8.71101 35.585 8.50283 35.7195 8.28368C35.8877 8.02071 35.9661 7.70295 35.9213 7.37423C35.8428 6.78254 35.3721 6.34425 34.7781 6.2018L34.5315 6.14701C34.4419 6.1251 34.3634 6.19084 34.3522 6.26754C34.2962 6.77158 34.1841 7.26466 34.0048 7.74677C33.9263 7.90018 33.8478 7.90018 33.7021 7.90018H33.2987C33.1754 7.92209 33.0521 7.85635 33.0073 7.74677C32.8279 7.27561 32.7047 6.77158 32.6598 6.26754C32.6486 6.17989 32.5702 6.1251 32.4805 6.13606L32.2115 6.19084C32.0658 6.22372 31.9201 6.26755 31.7968 6.34425C31.102 6.72775 30.8778 7.59337 31.2925 8.26177C31.427 8.48091 31.5951 8.67814 31.7744 8.86442C31.8417 8.94112 31.8865 9.03973 31.8865 9.13835V9.21505V9.26983V9.46706C31.7968 9.46706 31.7408 9.46706 31.7408 9.46706C30.3398 9.33558 29.6674 8.25081 29.5889 7.177V6.70584C29.5889 6.53052 29.6562 6.37712 29.7794 6.24563C30.0821 5.93883 30.351 5.61011 30.5864 5.24852C30.7545 4.97459 30.8666 4.67874 30.9114 4.36098C31.0908 3.11185 30.2053 2.00517 28.9277 1.78603C28.5018 1.70932 28.4345 1.76411 28.3673 2.16953C28.2664 2.75026 28.0759 3.75833 27.7733 4.3829C27.65 4.63491 27.5043 4.63491 27.2913 4.63491H26.9551H26.6189C26.4059 4.63491 26.2602 4.63491 26.1369 4.3829C25.8231 3.75833 25.6438 2.75026 25.5429 2.16953C25.4645 1.76411 25.386 1.69837 24.9825 1.78603C23.7049 2.00517 22.8195 3.11185 22.9988 4.36098C23.0436 4.67874 23.1557 4.97459 23.3238 5.24852C23.5592 5.61011 23.8282 5.93883 24.1308 6.24563C24.254 6.36616 24.3213 6.53052 24.3213 6.70584V7.177C24.2316 8.23985 23.5704 9.33558 22.1694 9.46706C22.1694 9.46706 22.1134 9.46706 22.0237 9.46706V9.26983V9.21505V9.13835C22.0237 9.03973 22.0685 8.94112 22.1358 8.86442C22.3151 8.67814 22.4832 8.48091 22.6177 8.26177C23.0324 7.60433 22.8083 6.73871 22.1134 6.34425C21.9789 6.26755 21.8444 6.23467 21.6987 6.19084L21.4297 6.13606C21.34 6.11414 21.2616 6.17989 21.2504 6.26754C21.2056 6.77158 21.0823 7.26466 20.9029 7.74677C20.8581 7.85635 20.7348 7.92209 20.6115 7.90018H20.2081C20.0736 7.90018 19.9951 7.90018 19.9055 7.74677C19.7261 7.27561 19.6141 6.77158 19.558 6.26754C19.5468 6.17989 19.4684 6.1251 19.3787 6.14701L19.1321 6.2018C18.5381 6.33329 18.0674 6.79349 17.9889 7.37423C17.9441 7.69199 18.0226 8.00975 18.1907 8.28368C18.3252 8.50283 18.4933 8.71101 18.6838 8.88633C18.7623 8.96303 18.7959 9.06165 18.7959 9.16026V9.22601V9.35749V9.44515C18.7399 9.44515 18.7062 9.44515 18.695 9.44515C15.2655 9.17122 17.3277 5.12799 17.3613 5.0732C17.4958 4.83214 17.6191 4.59108 17.72 4.33907C17.7648 4.24045 17.7984 4.14184 17.8096 4.04322C17.9777 3.04611 16.7673 2.67356 15.8146 3.53919C14.1671 5.19373 13.3714 5.46766 10.9057 6.15797C10.2444 6.34425 10.76 7.34136 10.7936 7.74677C10.8384 8.46995 10.8832 8.79867 8.91069 10.0478C8.87707 10.1026 8.93311 10.245 9.04518 10.245Z' fill='%232A3143'/%3E%3Cpath d='M33.5453 6.17996C33.8815 6.17996 34.1393 5.91699 34.1393 5.59922C34.1281 5.29242 33.8815 5.04041 33.5677 5.04041C33.2427 5.04041 32.9849 5.29242 32.9737 5.59922C32.9625 5.91699 33.2202 6.169 33.5453 6.17996Z' fill='%232A3143'/%3E%3C/svg%3E%0A") no-repeat left center;
        background-size: 54px 56px;
        height: 56px;
        width: 56px;
    }
    .footer_part .logo_container p {
        font-size: 11px;
        line-height: 18px;
        width: 200px;
    }
    .footer_part .soc_web_container .section_title {
        display: none;
    }

    .footer_section .section_title:not(.soc_web_container .section_title)::after {
        margin-right: 0.35em;
        background-size: 1em;
    }
    .footer_section .section_title.expanded:not(.soc_web_container .section_title) + .link_container {
        margin-top: 16px;
    }

    .footer_section .link_container li,
    .footer_section .link_container li a {
        font-size: 14px;
        line-height: 22px;
    }
    .footer_section .link_container li + li {
        margin-top: 14px;
    }

    .footer_part:first-child .footer_section:last-child {
        text-align: initial;
        margin-top: 7px;
    }

    .footer_part:first-child .footer_section:nth-child(2) {
        margin-top: 9px;
    }
    .footer_part address {
        margin-top: 6px;
    }
    .footer_part .soc_web_container .soc_web {
        width: 100%;
        justify-content: space-between;
        gap: initial;
        margin: 0;
    }
}
/* -END FOOTER- */

.filter_block_list {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.filter_selected_params {
    margin-top: 16px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.filter_selected_params span {
    color: #7f838e;
}

.filter_selected_params .delete_btn {
    margin-left: 6px;
    font-size: larger;
}
.filter_selected_params .clear_all a {
    color: #2a3143;
}
.filter_selected_params .clear_all:hover a {
    color: #7f838e;
}
.filter_block_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: var(--margin);
    row-gap: var(--margin-top2);
}
.filter_block_list .filter_block_buttons {
    display: none;
    justify-content: space-between;
    width: 100%;
}
.filter_block_list .filter_block_title {
    display: none;
    margin-top: 32px;
}

.filter_list_info {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--margin-top);
}

.filter_list_info:first-child {
    margin-top: calc(24px - var(--first-content-block-margin-t));
}

.simple_filter_block_list .search_filter_wrapper {
    width: var(--column4);
}

.simple_filter_block_list .date_filter_wrapper {
    width: var(--column2);
}
.document_list_filter_block_list .filter_block {
    width: var(--column3);
}
.document_list_filter_block_list .active_filter_wrapper .value_list.child_list {
    display: block;
}

.filter_block_list .filter_block.full_width {
    width: 100%;
}
.filter_block_list .filter_block.column3_width {
    width: var(--column3);
}
.filter_block_list .filter_block.column2_width {
    width: var(--column2);
}

.not_found_item {
    width: 100%;
    text-align: center;
}
.not_found_item .not_found_text {
    color: #7F838E;
}

@media all and (max-width: 750px) {
    .filter_block {
        width: var(--page-content);
    }

    .filter_block:not(.search_filter_wrapper) {
        display: none;
    }
    .filter_selected_params {
        display: none !important;
    }
    .filter_block_list .filter_block_buttons {
        display: flex;
    }

    .filter_block_list.opened {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: white;
        z-index: 2;
        padding: 32px calc((100% - var(--page-content)) / 2);
        display: block;
    }
    .filter_block_list.opened .filter_block_buttons,
    .filter_block_list.opened .filter_block.search_filter_wrapper {
        display: none;
    }
    .filter_block_list.opened .filter_block_title,
    .filter_block_list.opened .filter_form_buttons {
        display: block;
        flex-grow: 0;
        flex-shrink: 0;
    }
    .filter_block_list.opened .filter_block {
        display: block;
        margin-top: var(--margin-top2);
    }

    .filter_list_info .list_view_switcher {
        display: none;
    }

    .document_list_filter_block_list .filter_block,
    .simple_filter_block_list .date_filter_wrapper {
        display: block;
        width: var(--page-content);
    }
}


/* dark containers section */
.bg_rectangles {
    background-image: url("/common/core/img/bgs/rectangles_dark.svg");
    background-repeat: no-repeat;
    background-size: 650px;
    background-position: calc(var(--column6) + var(--margin) + 67px) top;
}
.ministry_page .bg_rectangles .block_content_container {
    width: var(--page-content);
    padding-top: 121px;
    padding-bottom: 127px;
}
@media all and (max-width: 1600px) {
    .bg_rectangles {
        background-size: 652px 554px;
        background-position-y: -44px;
        background-position-x: calc(var(--column5) + var(--margin) + 10px);
    }
    .ministry_page .bg_rectangles .block_content_container {
        padding-top: 122px;
        padding-bottom: 120px;
    }
}
@media all and (max-width: 1400px) {
    .bg_rectangles {
        background-size: 542px 519px;
        background-position-y: -56px;
        background-position-x: calc(var(--column5) + var(--margin) - 11px);
    }
    .ministry_page .bg_rectangles .block_content_container {
        width: var(--page-width);
        padding-top: 80px;
        padding-left: calc(var(--column) + var(--margin));
        padding-bottom: 102px;
    }
}
@media all and (max-width: 1240px) {
    .bg_rectangles {
        background-size: 736px 673px;
        background-position-y: -63px;
        background-position-x: calc(var(--column3) - var(--margin) - 65px);
    }
    .ministry_page .bg_rectangles .block_content_container {
        width: var(--page-content);
        padding-top: 121px;
        padding-left: 0;
        padding-bottom: 201px;
    }
}
@media all and (max-width: 1000px) {
    .bg_rectangles {
        background-size: 647px 597px;
        background-position-y: -33px;
        background-position-x: calc(var(--column2) + var(--margin) - -8px);
    }
    .ministry_page .bg_rectangles .block_content_container {
        padding-top: 100px;
        padding-bottom: 162px;
    }
}
@media all and (max-width: 750px) {
    .bg_rectangles {
        background-size: 546px 530px;
        background-position-y: 26px;
        background-position-x: 154px;
    }
    .ministry_page .bg_rectangles .block_content_container {
        padding-top: 64px;
        padding-bottom: 75px;
    }
}




.bc_img_arrows {
    background-image: url("data:image/svg+xml,%3Csvg width='492' height='313' viewBox='0 0 492 313' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.22' d='M469.809 233.129L444.375 2L213.246 27.4337' stroke='white' stroke-width='2'/%3E%3Cpath opacity='0.18' d='M407.184 305.364L381.75 74.2349L150.621 99.6686' stroke='white' stroke-width='2'/%3E%3Cpath opacity='0.14' d='M344.563 377.598L319.129 146.468L87.9994 171.902' stroke='white' stroke-width='2'/%3E%3Cpath opacity='0.1' d='M278.254 453.714L252.82 222.585L21.6908 248.019' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 447px 430px;
    background-position: right calc(50% - var(--column4) + var(--margin)) bottom 0%;
}
@media all and (max-width: 1600px) {
    .bc_img_arrows {
        background-position: right 5% bottom 0%;
    }
}
@media all and (max-width: 750px) {
    .bc_img_arrows {
        background-size: 320.06px 308.44px;
        background-position: right 0% top 0%;
    }
}

/*perfomance.contracts*/
.bg_img_russia_pixels {
    background-image: url("data:image/svg+xml,%3Csvg width='672' height='331' viewBox='0 0 672 331' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.2'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M535.793 106.936V117.697H546.588V106.936H535.793Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M535.793 53.7473V64.5084H546.588V53.7473H535.793Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M392.994 302.179V312.94H403.788V302.179H392.994Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M321.75 302.179V312.94H332.545V302.179H321.75Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M607.349 302.179V312.94H618.143V302.179H607.349Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M607.349 106.936V117.697H618.143V106.936H607.349Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M625.236 106.936V117.697H636.031V106.936H625.236Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M464.55 302.179V312.94H475.344V302.179H464.55Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M178.95 106.936V117.697H189.745V106.936H178.95Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M285.972 89.1024V99.8636H296.767V89.1024H285.972Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M285.972 106.936V117.697H296.767V106.936H285.972Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M571.571 106.936V117.697H582.366V106.936H571.571Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M571.571 53.7473V64.5084H582.366V53.7473H571.571Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M607.349 53.7473V64.5084H618.143V53.7473H607.349Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M428.771 302.179V312.94H439.566V302.179H428.771Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M357.524 302.179V312.94H368.011V302.179H357.524Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M500.323 302.179V312.94H511.118V302.179H500.323Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M500.323 106.936V117.697H511.118V106.936H500.323Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M500.323 89.1024V99.8636H511.118V89.1024H500.323Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M250.194 160.127V170.888H260.989V160.127H250.194Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M535.793 160.127V170.888H546.588V160.127H535.793Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M392.994 160.127V170.888H403.788V160.127H392.994Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M107.395 160.127V170.888H118.19V160.127H107.395Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M321.75 160.127V170.888H332.545V160.127H321.75Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M464.55 160.127V170.888H475.344V160.127H464.55Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M178.95 160.127V170.888H189.745V160.127H178.95Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M285.972 160.127V170.888H296.767V160.127H285.972Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M285.972 53.7473V64.5084H296.767V53.7473H285.972Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M571.571 160.127V170.888H582.366V160.127H571.571Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M428.771 160.127V170.888H439.566V160.127H428.771Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M143.172 160.127V170.888H153.967V160.127H143.172Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M357.524 160.127V170.888H368.011V160.127H357.524Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M357.524 124.772V135.533H368.011V124.772H357.524Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M500.323 160.127V170.888H511.118V160.127H500.323Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M214.725 160.127V170.888H225.211V160.127H214.725Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M250.194 106.936V117.697H260.989V106.936H250.194Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M553.68 106.936V117.697H564.475V106.936H553.68Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M553.68 53.7473V64.5084H564.475V53.7473H553.68Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M410.884 302.179V312.94H421.679V302.179H410.884Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M339.637 302.179V312.94H350.432V302.179H339.637Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M482.437 302.179V312.94H493.231V302.179H482.437Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M482.437 106.936V117.697H493.231V106.936H482.437Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M196.837 106.936V117.697H207.632V106.936H196.837Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M303.859 89.1024V99.8636H314.654V89.1024H303.859Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M303.859 302.179V312.94H314.654V302.179H303.859Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M589.458 106.936V117.697H600.253V106.936H589.458Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M589.458 53.7473V64.5084H600.253V53.7473H589.458Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M625.236 53.7473V64.5084H636.031V53.7473H625.236Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M625.236 35.9113V46.6725H636.031V35.9113H625.236Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M446.659 302.179V312.94H457.454V302.179H446.659Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M446.659 106.936V117.697H457.454V106.936H446.659Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M375.106 302.179V312.94H385.901V302.179H375.106Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M375.106 106.936V117.697H385.901V106.936H375.106Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M392.994 106.936V117.697H403.788V106.936H392.994Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M375.106 89.1024V99.8636H385.901V89.1024H375.106Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M517.906 106.936V117.697H528.701V106.936H517.906Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M268.085 160.127V170.888H278.879V160.127H268.085Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M553.68 160.127V170.888H564.475V160.127H553.68Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M410.884 160.127V170.888H421.679V160.127H410.884Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M125.285 160.127V170.888H136.08V160.127H125.285Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M339.637 160.127V170.888H350.432V160.127H339.637Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M482.437 160.127V170.888H493.231V160.127H482.437Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M196.837 160.127V170.888H207.632V160.127H196.837Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M303.859 160.127V170.888H314.654V160.127H303.859Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M303.859 53.7473V64.5084H314.654V53.7473H303.859Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M446.659 160.127V170.888H457.454V160.127H446.659Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M161.059 160.127V170.888H171.854V160.127H161.059Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M375.106 160.127V170.888H385.901V160.127H375.106Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M517.906 160.127V170.888H528.701V160.127H517.906Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M232.307 160.127V170.888H243.101V160.127H232.307Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M250.194 231.152V241.913H260.989V231.152H250.194Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M535.793 231.152V241.913H546.588V231.152H535.793Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M392.994 231.152V241.913H403.788V231.152H392.994Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M107.395 231.152V241.913H118.19V231.152H107.395Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M321.75 231.152V241.913H332.545V231.152H321.75Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M607.349 231.152V241.913H618.143V231.152H607.349Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M607.349 213.625V224.079H618.143V213.625H607.349Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M464.55 231.152V241.913H475.344V231.152H464.55Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M178.95 231.152V241.913H189.745V231.152H178.95Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M285.972 231.152V241.913H296.767V231.152H285.972Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M428.771 231.152V241.913H439.566V231.152H428.771Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M143.172 231.152V241.913H153.967V231.152H143.172Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M143.172 248.988V259.749H153.967V248.988H143.172Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M357.524 231.152V241.913H368.011V231.152H357.524Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M500.323 231.152V241.913H511.118V231.152H500.323Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M214.725 231.152V241.913H225.211V231.152H214.725Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M268.085 231.152V241.913H278.879V231.152H268.085Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M553.68 231.152V241.913H564.475V231.152H553.68Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M410.884 231.152V241.913H421.679V231.152H410.884Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M125.285 231.152V241.913H136.08V231.152H125.285Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M339.637 231.152V241.913H350.432V231.152H339.637Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M625.236 231.152V241.913H636.031V231.152H625.236Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M482.437 231.152V241.913H493.231V231.152H482.437Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M196.837 231.152V241.913H207.632V231.152H196.837Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M303.859 231.152V241.913H314.654V231.152H303.859Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M589.458 231.152V241.913H600.253V231.152H589.458Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M571.571 231.152V241.913H582.366V231.152H571.571Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M446.659 231.152V241.913H457.454V231.152H446.659Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M161.059 231.152V241.913H171.854V231.152H161.059Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M161.059 248.988V259.749H171.854V248.988H161.059Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M375.106 231.152V241.913H385.901V231.152H375.106Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M89.507 231.152V241.913H100.302V231.152H89.507Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M517.906 231.152V241.913H528.701V231.152H517.906Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M232.307 231.152V241.913H243.101V231.152H232.307Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M250.194 266.816V277.577H260.989V266.816H250.194Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M535.793 71.5803V82.3415H546.588V71.5803H535.793Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M392.994 266.816V277.577H403.788V266.816H392.994Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M392.994 320.007V330.768H403.788V320.007H392.994Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M107.395 266.816V277.577H118.19V266.816H107.395Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M125.285 266.816V277.577H136.08V266.816H125.285Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M321.75 266.816V277.577H332.545V266.816H321.75Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M321.75 320.007V330.768H332.545V320.007H321.75Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M607.349 266.816V277.577H618.143V266.816H607.349Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M464.55 266.816V277.577H475.344V266.816H464.55Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M464.55 320.007V330.768H475.344V320.007H464.55Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M178.95 266.816V277.577H189.745V266.816H178.95Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M285.972 266.816V277.577H296.767V266.816H285.972Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M571.571 266.816V277.577H582.366V266.816H571.571Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M571.571 71.5803V82.3415H582.366V71.5803H571.571Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M607.349 71.5803V82.3415H618.143V71.5803H607.349Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M571.571 18.0833V28.8444H582.366V18.0833H571.571Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M607.349 18.0833V28.8444H618.143V18.0833H607.349Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M607.349 0.555664V11.3169H618.143V0.555664H607.349Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M428.771 266.816V277.577H439.566V266.816H428.771Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M357.524 266.816V277.577H368.011V266.816H357.524Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M357.524 320.007V330.768H368.011V320.007H357.524Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M71.9253 266.816V277.577H82.7201V266.816H71.9253Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M54.0382 266.816V277.577H64.8325V266.816H54.0382Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M500.323 266.816V277.577H511.118V266.816H500.323Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M214.725 266.816V277.577H225.211V266.816H214.725Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M535.793 124.772V135.533H546.588V124.772H535.793Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M392.994 124.772V135.533H403.788V124.772H392.994Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M607.349 124.772V135.533H618.143V124.772H607.349Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M625.236 124.772V135.533H636.031V124.772H625.236Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M643.123 124.772V135.533H653.918V124.772H643.123Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M625.236 142.607V153.368H636.031V142.607H625.236Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M643.123 142.607V153.368H653.918V142.607H643.123Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M178.95 124.772V135.533H189.745V124.772H178.95Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M571.571 124.772V135.533H582.366V124.772H571.571Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M589.458 124.772V135.533H600.253V124.772H589.458Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M428.771 124.772V135.533H439.566V124.772H428.771Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M410.884 124.772V135.533H421.679V124.772H410.884Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M143.172 124.772V135.533H153.967V124.772H143.172Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M500.323 124.772V135.533H511.118V124.772H500.323Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M214.725 124.772V135.533H225.211V124.772H214.725Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M268.085 266.816V277.577H278.879V266.816H268.085Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M553.68 266.816V277.577H564.475V266.816H553.68Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M553.68 71.5803V82.3415H564.475V71.5803H553.68Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M553.68 18.0833V28.8444H564.475V18.0833H553.68Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M589.458 18.0833V28.8444H600.253V18.0833H589.458Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M589.458 0.555664V11.3169H600.253V0.555664H589.458Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M410.884 266.816V277.577H421.679V266.816H410.884Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M339.637 266.816V277.577H350.432V266.816H339.637Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M339.637 320.007V330.768H350.432V320.007H339.637Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M482.437 266.816V277.577H493.231V266.816H482.437Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M196.837 266.816V277.577H207.632V266.816H196.837Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M303.859 266.816V277.577H314.654V266.816H303.859Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M589.458 266.816V277.577H600.253V266.816H589.458Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M589.458 71.5803V82.3415H600.253V71.5803H589.458Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M625.236 71.5803V82.3415H636.031V71.5803H625.236Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M446.659 266.816V277.577H457.454V266.816H446.659Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M375.106 266.816V277.577H385.901V266.816H375.106Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M375.106 320.007V330.768H385.901V320.007H375.106Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M89.507 266.816V277.577H100.302V266.816H89.507Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M89.507 320.007V330.768H100.302V320.007H89.507Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M232.307 266.816V277.577H243.101V266.816H232.307Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M250.194 124.772V135.533H260.989V124.772H250.194Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M553.68 124.772V135.533H564.475V124.772H553.68Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M660.706 142.607V153.368H671.5V142.607H660.706Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M482.437 124.772V135.533H493.231V124.772H482.437Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M196.837 124.772V135.533H207.632V124.772H196.837Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M161.059 124.772V135.533H171.854V124.772H161.059Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M375.106 124.772V135.533H385.901V124.772H375.106Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M517.906 124.772V135.533H528.701V124.772H517.906Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M250.194 195.797V206.558H260.989V195.797H250.194Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M535.793 195.797V206.558H546.588V195.797H535.793Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M392.994 195.797V206.558H403.788V195.797H392.994Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M107.395 195.797V206.558H118.19V195.797H107.395Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M321.75 195.797V206.558H332.545V195.797H321.75Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M464.55 195.797V206.558H475.344V195.797H464.55Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M178.95 195.797V206.558H189.745V195.797H178.95Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M285.972 195.797V206.558H296.767V195.797H285.972Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M428.771 195.797V206.558H439.566V195.797H428.771Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M143.172 195.797V206.558H153.967V195.797H143.172Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M357.524 195.797V206.558H368.011V195.797H357.524Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M500.323 195.797V206.558H511.118V195.797H500.323Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M89.507 195.797V206.558H100.302V195.797H89.507Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M214.725 195.797V206.558H225.211V195.797H214.725Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M268.085 195.797V206.558H278.879V195.797H268.085Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M553.68 195.797V206.558H564.475V195.797H553.68Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M410.884 195.797V206.558H421.679V195.797H410.884Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M125.285 195.797V206.558H136.08V195.797H125.285Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M339.637 195.797V206.558H350.432V195.797H339.637Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M482.437 195.797V206.558H493.231V195.797H482.437Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M196.837 195.797V206.558H207.632V195.797H196.837Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M303.859 195.797V206.558H314.654V195.797H303.859Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M446.659 195.797V206.558H457.454V195.797H446.659Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M161.059 195.797V206.558H171.854V195.797H161.059Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.2601 266.816V277.577H29.0548V266.816H18.2601Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M375.106 195.797V206.558H385.901V195.797H375.106Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M517.906 195.797V206.558H528.701V195.797H517.906Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M232.307 195.797V206.558H243.101V195.797H232.307Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M535.793 89.1024V99.8636H546.588V89.1024H535.793Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M535.793 35.9113V46.6725H546.588V35.9113H535.793Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M392.994 284.651V295.105H403.788V284.651H392.994Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M321.75 284.651V295.105H332.545V284.651H321.75Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M607.349 284.651V295.105H618.143V284.651H607.349Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M607.349 89.1024V99.8636H618.143V89.1024H607.349Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M464.55 284.651V295.105H475.344V284.651H464.55Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M464.55 89.1024V99.8636H475.344V89.1024H464.55Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M464.55 71.5803V82.3415H475.344V71.5803H464.55Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M285.972 284.651V295.105H296.767V284.651H285.972Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M571.571 89.1024V99.8636H582.366V89.1024H571.571Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M571.571 35.9113V46.6725H582.366V35.9113H571.571Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M607.349 35.9113V46.6725H618.143V35.9113H607.349Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M428.771 284.651V295.105H439.566V284.651H428.771Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M357.524 284.651V295.105H368.011V284.651H357.524Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M71.9253 284.651V295.105H82.7201V284.651H71.9253Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M500.323 284.651V295.105H511.118V284.651H500.323Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M250.194 142.607V153.368H260.989V142.607H250.194Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M535.793 142.607V153.368H546.588V142.607H535.793Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M392.994 142.607V153.368H403.788V142.607H392.994Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M321.75 142.607V153.368H332.545V142.607H321.75Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M607.349 142.607V153.368H618.143V142.607H607.349Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M464.55 142.607V153.368H475.344V142.607H464.55Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M464.55 124.772V135.533H475.344V124.772H464.55Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M178.95 142.607V153.368H189.745V142.607H178.95Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M285.972 142.607V153.368H296.767V142.607H285.972Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M571.571 142.607V153.368H582.366V142.607H571.571Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M589.458 142.607V153.368H600.253V142.607H589.458Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M428.771 142.607V153.368H439.566V142.607H428.771Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M143.172 142.607V153.368H153.967V142.607H143.172Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M357.524 142.607V153.368H368.011V142.607H357.524Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M357.524 106.936V117.697H368.011V106.936H357.524Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M357.524 71.5803V82.3415H368.011V71.5803H357.524Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M500.323 142.607V153.368H511.118V142.607H500.323Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M214.725 142.607V153.368H225.211V142.607H214.725Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M268.085 284.651V295.105H278.879V284.651H268.085Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M553.68 89.1024V99.8636H564.475V89.1024H553.68Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M553.68 35.9113V46.6725H564.475V35.9113H553.68Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M589.458 35.9113V46.6725H600.253V35.9113H589.458Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M410.884 284.651V295.105H421.679V284.651H410.884Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M339.637 284.651V295.105H350.432V284.651H339.637Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M482.437 284.651V295.105H493.231V284.651H482.437Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M196.837 284.651V295.105H207.632V284.651H196.837Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M303.859 284.651V295.105H314.654V284.651H303.859Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M589.458 284.651V295.105H600.253V284.651H589.458Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M589.458 89.1024V99.8636H600.253V89.1024H589.458Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M446.659 284.651V295.105H457.454V284.651H446.659Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M375.106 284.651V295.105H385.901V284.651H375.106Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M375.106 71.5803V82.3415H385.901V71.5803H375.106Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M89.507 284.651V295.105H100.302V284.651H89.507Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M517.906 89.1024V99.8636H528.701V89.1024H517.906Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M268.085 142.607V153.368H278.879V142.607H268.085Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M268.085 106.936V117.697H278.879V106.936H268.085Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M553.68 142.607V153.368H564.475V142.607H553.68Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M410.884 142.607V153.368H421.679V142.607H410.884Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M410.884 106.936V117.697H421.679V106.936H410.884Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M125.285 142.607V153.368H136.08V142.607H125.285Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M339.637 142.607V153.368H350.432V142.607H339.637Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M660.706 160.127V170.888H671.5V160.127H660.706Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M482.437 142.607V153.368H493.231V142.607H482.437Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M196.837 142.607V153.368H207.632V142.607H196.837Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M71.9253 142.607V153.368H82.7201V142.607H71.9253Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M303.859 142.607V153.368H314.654V142.607H303.859Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M446.659 142.607V153.368H457.454V142.607H446.659Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M446.659 124.772V135.533H457.454V124.772H446.659Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M161.059 142.607V153.368H171.854V142.607H161.059Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M375.106 142.607V153.368H385.901V142.607H375.106Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M517.906 142.607V153.368H528.701V142.607H517.906Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M232.307 142.607V153.368H243.101V142.607H232.307Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M107.395 142.607V153.368H118.19V142.607H107.395Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M250.194 213.625V224.079H260.989V213.625H250.194Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M535.793 213.625V224.079H546.588V213.625H535.793Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M392.994 213.625V224.079H403.788V213.625H392.994Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M107.395 213.625V224.079H118.19V213.625H107.395Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M107.395 284.651V295.105H118.19V284.651H107.395Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M321.75 213.625V224.079H332.545V213.625H321.75Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M464.55 213.625V224.079H475.344V213.625H464.55Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M178.95 213.625V224.079H189.745V213.625H178.95Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M285.972 213.625V224.079H296.767V213.625H285.972Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M428.771 213.625V224.079H439.566V213.625H428.771Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M143.172 213.625V224.079H153.967V213.625H143.172Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M357.524 213.625V224.079H368.011V213.625H357.524Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M500.323 213.625V224.079H511.118V213.625H500.323Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M89.507 213.625V224.079H100.302V213.625H89.507Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M214.725 213.625V224.079H225.211V213.625H214.725Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M268.085 213.625V224.079H278.879V213.625H268.085Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M553.68 213.625V224.079H564.475V213.625H553.68Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M410.884 213.625V224.079H421.679V213.625H410.884Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M125.285 213.625V224.079H136.08V213.625H125.285Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M339.637 213.625V224.079H350.432V213.625H339.637Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M482.437 213.625V224.079H493.231V213.625H482.437Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M196.837 213.625V224.079H207.632V213.625H196.837Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M303.859 213.625V224.079H314.654V213.625H303.859Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M446.659 213.625V224.079H457.454V213.625H446.659Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M161.059 213.625V224.079H171.854V213.625H161.059Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M375.106 213.625V224.079H385.901V213.625H375.106Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M517.906 213.625V224.079H528.701V213.625H517.906Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M232.307 213.625V224.079H243.101V213.625H232.307Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M250.194 248.988V259.749H260.989V248.988H250.194Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M535.793 248.988V259.749H546.588V248.988H535.793Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M392.994 248.988V259.749H403.788V248.988H392.994Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M107.395 248.988V259.749H118.19V248.988H107.395Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M321.75 248.988V259.749H332.545V248.988H321.75Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M607.349 248.988V259.749H618.143V248.988H607.349Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M464.55 248.988V259.749H475.344V248.988H464.55Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M178.95 248.988V259.749H189.745V248.988H178.95Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M285.972 248.988V259.749H296.767V248.988H285.972Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M571.571 248.988V259.749H582.366V248.988H571.571Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M428.771 248.988V259.749H439.566V248.988H428.771Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M357.524 248.988V259.749H368.011V248.988H357.524Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M71.9253 248.988V259.749H82.7201V248.988H71.9253Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M500.323 248.988V259.749H511.118V248.988H500.323Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M214.725 248.988V259.749H225.211V248.988H214.725Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M268.085 248.988V259.749H278.879V248.988H268.085Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M553.68 248.988V259.749H564.475V248.988H553.68Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M410.884 248.988V259.749H421.679V248.988H410.884Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M125.285 248.988V259.749H136.08V248.988H125.285Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M339.637 248.988V259.749H350.432V248.988H339.637Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M625.236 248.988V259.749H636.031V248.988H625.236Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M482.437 248.988V259.749H493.231V248.988H482.437Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M196.837 248.988V259.749H207.632V248.988H196.837Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M303.859 248.988V259.749H314.654V248.988H303.859Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M589.458 248.988V259.749H600.253V248.988H589.458Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M446.659 248.988V259.749H457.454V248.988H446.659Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M375.106 248.988V259.749H385.901V248.988H375.106Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M89.507 248.988V259.749H100.302V248.988H89.507Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M89.507 302.179V312.94H100.302V302.179H89.507Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M517.906 248.988V259.749H528.701V248.988H517.906Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M232.307 248.988V259.749H243.101V248.988H232.307Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M250.194 177.963V188.724H260.989V177.963H250.194Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M535.793 177.963V188.724H546.588V177.963H535.793Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M392.994 177.963V188.724H403.788V177.963H392.994Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M107.395 177.963V188.724H118.19V177.963H107.395Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M321.75 177.963V188.724H332.545V177.963H321.75Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M464.55 177.963V188.724H475.344V177.963H464.55Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M178.95 177.963V188.724H189.745V177.963H178.95Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M36.1506 248.988V259.749H46.9454V248.988H36.1506Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M285.972 177.963V188.724H296.767V177.963H285.972Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M428.771 177.963V188.724H439.566V177.963H428.771Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M143.172 177.963V188.724H153.967V177.963H143.172Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.372803 248.988V259.749H11.1677V248.988H0.372803Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M357.524 177.963V188.724H368.011V177.963H357.524Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M500.323 177.963V188.724H511.118V177.963H500.323Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M214.725 177.963V188.724H225.211V177.963H214.725Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M268.085 177.963V188.724H278.879V177.963H268.085Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M553.68 177.963V188.724H564.475V177.963H553.68Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M410.884 177.963V188.724H421.679V177.963H410.884Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M125.285 177.963V188.724H136.08V177.963H125.285Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M339.637 177.963V188.724H350.432V177.963H339.637Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M482.437 177.963V188.724H493.231V177.963H482.437Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M196.837 177.963V188.724H207.632V177.963H196.837Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M303.859 177.963V188.724H314.654V177.963H303.859Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M446.659 177.963V188.724H457.454V177.963H446.659Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M161.059 177.963V188.724H171.854V177.963H161.059Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.2601 248.988V259.749H29.0548V248.988H18.2601Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M375.106 177.963V188.724H385.901V177.963H375.106Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M517.906 177.963V188.724H528.701V177.963H517.906Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M232.307 177.963V188.724H243.101V177.963H232.307Z' fill='white'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 672px 331px;
    background-position: right calc(50% - var(--column2)) top 46px;
}
.one_info_system_purchase {
    padding: 80px 0 55px 0;
}
.one_info_system_purchase .block_title {
    width: calc(var(--column) * 4 + var(--margin) * 4);
    margin-bottom: 17px;
}
.one_info_system_purchase .content_title {
    margin: 0;
    margin-bottom: 119px;
}
.bc_dark .one_info_system_purchase .section_link a {
    color: #F8F8f8;
}
@media (max-width: 1600px) {
    .bg_img_russia_pixels {
        background-position: right var(--column) top 46px;
    }
    .one_info_system_purchase .content_title {
        margin-bottom: 127px;
    }
}
@media (max-width: 1400px) {
    .bg_img_russia_pixels {
        background-size: 617px 303px;
        background-position: right var(--column) top 63px;
    }

    .one_info_system_purchase .block_title {
        width: var(--column5);
    }
}
@media (max-width: 1240px) {
    .bg_img_russia_pixels {
        background-size: 614px 302px;
        background-position: right var(--margin) top 72px;
    }
}
@media (max-width: 1000px) {
    .bg_img_russia_pixels {
        background-size: 558px 275px;
        background-position: right var(--margin) top 113px;
    }
    .one_info_system_purchase .content_title {
        margin-bottom: 131px;
    }
}
@media (max-width: 750px) {
    .bg_img_russia_pixels {
        background-size: 336px 165px;
        background-position: 50% 190px;
    }
    .one_info_system_purchase {
        padding: 64px 0 40px 0;
    }
    .one_info_system_purchase .block_title {
        width: 100%;
    }
    .one_info_system_purchase .content_title {
        margin-bottom: 218px;
    }
}


/* end dark containers section */

/* tranquile containers section  */

/* end tranquile containers section  */

/* page header bg imgs */

/*  perfomance.international */
.bg_img_sovereign_projects_development_institutions_rf_1 {
    background-image: url("data:image/svg+xml,%3Csvg width='329' height='258' viewBox='0 0 329 258' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.2' clip-path='url(%23clip0_8463_114260)'%3E%3Cpath d='M272.425 140.439C291.636 68.784 247.258 -5.38146 173.304 -25.2147C99.3492 -45.0479 23.8237 -3.03844 4.6127 68.6161C-14.5983 140.271 29.78 214.436 103.734 234.269C177.689 254.103 253.214 212.093 272.425 140.439Z' stroke='%232A3143' stroke-width='0.827821' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M298.738 159.521C326.729 105.766 304.15 38.6081 248.304 9.51956C192.459 -19.569 124.496 0.427021 96.5038 54.1819C68.5121 107.937 91.0919 175.095 146.937 204.183C202.783 233.272 270.746 213.276 298.738 159.521Z' stroke='%232A3143' stroke-width='0.678572' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M312.654 188.945C344.604 150.872 338.465 93.1132 298.943 59.9374C259.42 26.7615 201.48 30.7315 169.53 68.8045C137.58 106.878 143.719 164.636 183.242 197.812C222.764 230.988 280.704 227.018 312.654 188.945Z' stroke='%232A3143' stroke-width='0.556217' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M312.375 220.564C344.817 195.67 350.33 148.393 324.689 114.966C299.047 81.5399 251.961 74.6224 219.519 99.5158C187.077 124.409 181.564 171.687 207.205 205.113C232.846 238.54 279.932 245.457 312.375 220.564Z' stroke='%232A3143' stroke-width='0.455932' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M299.927 247.817C330.507 233.556 343.545 196.789 329.049 165.697C314.553 134.604 278.012 120.959 247.432 135.22C216.852 149.481 203.814 186.248 218.31 217.341C232.806 248.433 269.348 262.078 299.927 247.817Z' stroke='%232A3143' stroke-width='0.373717' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M268.495 267.892C296.382 267.892 318.989 245.282 318.989 217.391C318.989 189.499 296.382 166.889 268.495 166.889C240.607 166.889 218 189.499 218 217.391C218 245.282 240.607 267.892 268.495 267.892Z' stroke='%232A3143' stroke-width='0.306339' stroke-miterlimit='10' stroke-linecap='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_8463_114260'%3E%3Crect width='329' height='258' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 325px 263px;
    background-position: right 0% bottom 0%;
}

.bg_img_sovereign_projects_development_institutions_rf_2 {
    background-image: url("data:image/svg+xml,%3Csvg width='353' height='260' viewBox='0 0 353 260' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.5' clip-path='url(%23clip0_8463_114284)'%3E%3Cpath d='M0.113639 262.264L5.5022 258.579L8.19647 256.745C9.08916 256.128 9.96561 255.495 10.8583 254.862L16.1819 251.081C17.9348 249.799 19.6877 248.5 21.4406 247.218L24.07 245.286L26.6507 243.29L29.2313 241.294L30.5298 240.304C30.968 239.979 31.39 239.638 31.812 239.297L36.9084 235.207L38.1744 234.185L39.4241 233.13L41.9236 231.036L44.4232 228.942L46.874 226.8L49.3248 224.657L50.5583 223.586L51.7594 222.482C53.35 221.005 54.973 219.545 56.5636 218.068L61.2543 213.539C67.4381 207.42 73.3623 201.042 78.8807 194.322L79.4001 193.689C79.5786 193.478 79.7409 193.267 79.9194 193.056L80.9258 191.774L82.9383 189.21L83.4415 188.561L83.9284 187.911L84.9022 186.597L86.8337 183.967L88.684 181.289L89.6091 179.942L90.0636 179.277L90.5018 178.595L92.2547 175.852L92.6929 175.17L92.9202 174.829L93.1311 174.472L93.9589 173.077L95.6144 170.269L97.1726 167.412L97.9516 165.984L98.682 164.523C99.1689 163.549 99.6559 162.575 100.143 161.602L101.49 158.631L101.831 157.885L101.993 157.511L102.155 157.138L102.772 155.629L103.389 154.119L103.697 153.356L103.973 152.594L105.093 149.526C106.489 145.403 107.658 141.216 108.534 136.963L108.842 135.357L109.005 134.561C109.053 134.302 109.118 134.026 109.151 133.766L109.638 130.552L110.011 127.323L110.06 126.917L110.092 126.511L110.157 125.699L110.271 124.076C110.319 123.541 110.336 122.989 110.352 122.453L110.417 120.83C110.417 120.554 110.449 120.295 110.433 120.019V119.207V117.584C110.433 117.308 110.433 117.049 110.433 116.773L110.401 115.961L110.336 114.338C110.319 113.802 110.271 113.251 110.238 112.715C110.19 112.179 110.173 111.628 110.125 111.092C109.735 106.758 109.005 102.473 107.982 98.2373C106.943 94.0173 105.661 89.8623 104.217 85.756C102.788 81.6496 101.23 77.5757 99.737 73.5019C98.2276 69.4118 96.7668 65.3216 95.4521 61.1666C94.1374 57.0116 92.9688 52.8241 91.9625 48.5879C90.9563 44.3517 90.1447 40.0668 89.4793 35.7657L89.2358 34.1427C89.1547 33.6071 89.0735 33.0715 89.0086 32.5196L88.6028 29.2735L88.2782 26.0274L88.1159 24.4043L88.0023 22.7813L87.7751 19.5189L87.629 16.2566L87.5641 14.6335C87.5478 14.0817 87.5478 13.5461 87.5316 12.9942L87.4829 9.73188L87.5154 6.46952L87.5316 4.83024L87.5965 3.19094L87.7101 -0.0714035L87.9049 -3.33375C87.9374 -3.86935 87.9698 -4.4212 88.0185 -4.95681L88.1646 -6.57986L88.3107 -8.20293L88.3756 -9.01446L88.4081 -9.42022L88.4567 -9.82598C88.7002 -11.9846 88.9274 -14.1596 89.2358 -16.302L89.463 -17.925C89.4955 -18.201 89.528 -18.4607 89.5767 -18.7366L89.7065 -19.5481L90.2259 -22.778C90.4044 -23.8492 90.6154 -24.9204 90.8102 -25.9917L91.1023 -27.5985L91.4269 -29.1891C92.2709 -33.4577 93.3097 -37.6939 94.4296 -41.8976C95.5495 -46.1014 96.8317 -50.2726 98.1951 -54.3952L98.7145 -55.9371C98.893 -56.4565 99.0553 -56.9759 99.2501 -57.479L100.338 -60.5628C101.1 -62.6079 101.847 -64.6529 102.659 -66.6655C104.249 -70.7069 105.937 -74.7321 107.755 -78.6924C111.277 -86.6778 115.253 -94.4361 119.538 -102C115.253 -94.4198 111.293 -86.6616 107.69 -78.7411C105.888 -74.7808 104.2 -70.7719 102.61 -66.7142C101.798 -64.7016 101.052 -62.6566 100.305 -60.6115L99.2176 -57.5277C99.0391 -57.0083 98.8605 -56.5052 98.6982 -55.9858L98.1789 -54.4439C96.8155 -50.3051 95.5495 -46.1501 94.4296 -41.9463C93.3097 -37.7426 92.2872 -33.5064 91.4432 -29.2378L91.1186 -27.6472L90.8264 -26.0403C90.6316 -24.9691 90.4206 -23.8979 90.2421 -22.8267L89.7227 -19.5968L89.5929 -18.7853C89.5442 -18.5094 89.5117 -18.2497 89.4793 -17.9737L89.2683 -16.3507C88.9599 -14.192 88.7327 -12.0333 88.4892 -9.87468L88.4567 -9.48515L88.4243 -9.07938L88.3594 -8.26785L88.2133 -6.64479L88.0672 -5.02174C88.0185 -4.48612 88.0023 -3.93428 87.9698 -3.39867L87.7751 -0.13633L87.6614 3.12602L87.6127 4.74908L87.5965 6.38837L87.5641 9.65073L87.629 12.9131C87.6452 13.4487 87.6452 14.0005 87.6614 14.5361L87.7426 16.1592L87.8887 19.4215L88.1321 22.6676L88.2458 24.2907L88.4081 25.9138L88.7327 29.1599L89.1384 32.3898C89.2034 32.9254 89.2845 33.461 89.3657 34.0128L89.6091 35.6197C90.2746 39.9208 91.1023 44.1894 92.1086 48.4256C93.1149 52.6618 94.2835 56.8493 95.6144 60.9881C96.9291 65.1269 98.4061 69.2332 99.9155 73.3071C101.425 77.381 102.983 81.4548 104.411 85.5612C105.856 89.6675 107.154 93.8388 108.193 98.0587C109.216 102.295 109.946 106.596 110.352 110.946C110.401 111.481 110.433 112.033 110.482 112.569C110.514 113.105 110.563 113.656 110.595 114.192L110.66 115.831L110.693 116.643C110.709 116.919 110.693 117.195 110.693 117.454V119.094V119.905C110.693 120.181 110.676 120.457 110.676 120.717L110.628 122.356C110.611 122.908 110.595 123.443 110.547 123.995L110.433 125.618L110.368 126.43L110.336 126.836L110.287 127.241L109.914 130.487L109.427 133.717C109.394 133.993 109.329 134.253 109.281 134.529L109.118 135.324L108.81 136.931C107.933 141.2 106.765 145.403 105.369 149.542L104.249 152.61L103.973 153.373L103.665 154.135L103.048 155.645L102.431 157.154L102.269 157.528L102.107 157.901L101.766 158.648L100.419 161.618C99.948 162.592 99.4449 163.565 98.9579 164.539L98.2276 166L97.4485 167.428L95.8904 170.301L94.2348 173.109L93.4071 174.521L93.1961 174.878L92.9688 175.219L92.5306 175.901L90.7777 178.66L90.3395 179.342L89.885 180.023L88.9599 181.37L87.1096 184.065L85.1782 186.694L84.2043 188.009L83.7174 188.674L83.2143 189.323L81.2017 191.888L80.1954 193.17C80.0331 193.381 79.8545 193.592 79.676 193.803L79.1566 194.436C73.6382 201.172 67.7141 207.583 61.5302 213.702L56.8396 218.246C55.249 219.739 53.6421 221.2 52.0353 222.677L50.8342 223.781L49.6007 224.852L47.1499 227.011L44.6991 229.169L42.1996 231.263L39.7001 233.357L38.4503 234.412L37.1843 235.434L32.0879 239.525C31.6659 239.865 31.2277 240.206 30.8057 240.531L29.5072 241.521L26.9266 243.517L24.3459 245.514L21.7166 247.461C19.9637 248.76 18.227 250.058 16.4578 251.34L11.118 255.236C10.2253 255.869 9.34884 256.502 8.45616 257.119L5.76188 258.969L0.373328 262.669C0.259714 262.751 0.113639 262.718 0.032486 262.604C-0.048667 262.491 2.48095e-05 262.345 0.113639 262.264Z' fill='%231D1D1B'/%3E%3Cpath d='M44.7652 265.379L49.5045 261.987L51.8742 260.299L54.2114 258.563L58.8858 255.089L63.4953 251.535C69.598 246.747 75.6196 241.845 81.4139 236.668C87.2082 231.506 92.8402 226.166 98.2125 220.567C103.585 214.967 108.681 209.108 113.421 202.957C118.144 196.805 122.461 190.329 126.243 183.561L126.957 182.295C127.2 181.873 127.411 181.435 127.639 181.013L128.97 178.432L129.132 178.108L129.294 177.783L129.603 177.134L130.219 175.819L130.836 174.504C130.95 174.293 131.031 174.066 131.128 173.839L131.42 173.173L132.573 170.495C132.93 169.587 133.271 168.694 133.628 167.785C133.806 167.33 133.985 166.876 134.147 166.422L134.618 165.042L135.088 163.662L135.332 162.981L135.543 162.283L136.387 159.507C136.647 158.566 136.89 157.641 137.133 156.699C137.393 155.758 137.588 154.817 137.799 153.875L138.124 152.463C138.221 151.993 138.302 151.506 138.383 151.035C139.097 147.221 139.601 143.374 139.812 139.495C139.86 138.521 139.893 137.564 139.925 136.59L139.941 136.233V135.876V135.145V133.684C139.958 133.198 139.925 132.711 139.909 132.224L139.86 130.763C139.844 130.276 139.795 129.789 139.779 129.318C139.747 128.832 139.73 128.345 139.682 127.874C139.357 124.011 138.757 120.164 137.913 116.383C137.052 112.601 135.965 108.868 134.764 105.184C133.563 101.499 132.264 97.8311 130.998 94.163C129.732 90.4949 128.499 86.8105 127.395 83.0775C126.291 79.3607 125.318 75.5952 124.49 71.7972C123.662 67.9993 122.997 64.1688 122.477 60.3222C121.958 56.4755 121.585 52.5964 121.357 48.7336C121.146 44.8545 121.081 40.9753 121.146 37.08C121.228 33.2009 121.439 29.3218 121.779 25.4427C122.494 17.7007 123.711 10.0236 125.464 2.46015C126.34 -1.32157 127.314 -5.08706 128.418 -8.80387C129.521 -12.5207 130.739 -16.2212 132.07 -19.8569C133.384 -23.5088 134.813 -27.1282 136.338 -30.6989C137.864 -34.2697 139.471 -37.8079 141.175 -41.2975C144.567 -48.2767 148.316 -55.0935 152.309 -61.748C148.316 -55.0773 144.6 -48.2604 141.207 -41.2813C139.519 -37.7917 137.896 -34.2534 136.387 -30.6827C134.877 -27.112 133.449 -23.4925 132.134 -19.8407C130.82 -16.1888 129.603 -12.5044 128.499 -8.7714C127.395 -5.0546 126.421 -1.28911 125.545 2.49261C123.808 10.0561 122.591 17.7494 121.877 25.4751C121.536 29.338 121.341 33.2171 121.26 37.0962C121.195 40.9753 121.26 44.8545 121.487 48.7336C121.714 52.6127 122.088 56.4755 122.623 60.3222C123.143 64.1688 123.824 67.9993 124.652 71.781C125.48 75.5789 126.454 79.3282 127.574 83.045C128.677 86.7618 129.911 90.4462 131.177 94.1143C132.443 97.7824 133.758 101.434 134.959 105.135C136.176 108.819 137.247 112.568 138.124 116.35C138.984 120.148 139.584 123.995 139.909 127.858C139.958 128.345 139.974 128.832 140.006 129.318C140.039 129.805 140.071 130.292 140.104 130.779L140.152 132.24C140.169 132.727 140.185 133.214 140.185 133.701V135.161V135.892V136.249L140.169 136.606C140.136 137.58 140.104 138.554 140.055 139.527C139.844 143.407 139.357 147.269 138.643 151.1C138.562 151.571 138.464 152.057 138.383 152.528L138.075 153.956C137.864 154.898 137.669 155.855 137.409 156.797C137.166 157.738 136.923 158.68 136.663 159.621L135.819 162.413L135.608 163.111L135.364 163.792L134.894 165.172L134.423 166.551C134.261 167.006 134.082 167.46 133.904 167.915C133.547 168.824 133.206 169.733 132.849 170.642L131.696 173.32L131.404 173.985C131.307 174.212 131.209 174.439 131.112 174.65L130.495 175.965L129.878 177.28L129.57 177.945L129.408 178.27L129.245 178.594L127.915 181.191C127.687 181.613 127.476 182.052 127.233 182.49L126.519 183.756C122.753 190.556 118.42 197.032 113.697 203.2C108.973 209.368 103.861 215.243 98.4885 220.859C93.1161 226.475 87.4841 231.831 81.6898 237.008C75.9117 242.202 69.8902 247.12 63.7712 251.908L59.1617 255.479L54.4873 258.968L52.1501 260.705L49.7805 262.409L45.0411 265.801C44.9437 265.866 44.7977 265.85 44.7327 265.753C44.6678 265.655 44.6678 265.461 44.7652 265.379Z' fill='%231D1D1B'/%3E%3Cpath d='M89.4314 268.496L93.5053 265.396L95.5503 263.854L97.5629 262.263C98.8938 261.208 100.241 260.153 101.572 259.082L105.532 255.836C106.863 254.765 108.145 253.645 109.444 252.525C110.742 251.405 112.041 250.318 113.307 249.165L117.121 245.741L120.854 242.235C125.788 237.528 130.576 232.643 135.104 227.53C139.633 222.417 143.917 217.094 147.845 211.527C151.773 205.943 155.344 200.116 158.444 194.03C159.953 190.962 161.414 187.879 162.631 184.697L163.102 183.513C163.183 183.318 163.264 183.123 163.329 182.912L163.54 182.312L164.4 179.909L165.18 177.475C165.309 177.069 165.455 176.663 165.569 176.258L165.91 175.024L166.251 173.79C166.316 173.579 166.364 173.385 166.429 173.174L166.575 172.557L167.192 170.074L167.712 167.574L167.841 166.941L167.955 166.308L168.166 165.042C168.734 161.682 169.107 158.29 169.302 154.882L169.399 152.317L169.416 149.753C169.416 148.893 169.383 148.049 169.367 147.189C169.318 146.345 169.286 145.484 169.221 144.64C168.978 141.232 168.491 137.856 167.809 134.512C167.111 131.169 166.251 127.874 165.277 124.596C164.303 121.317 163.248 118.071 162.209 114.825C161.187 111.562 160.181 108.3 159.288 105.005C158.395 101.71 157.616 98.3831 156.967 95.0234C155.668 88.3202 154.889 81.5033 154.662 74.6702C154.565 71.2618 154.597 67.8372 154.76 64.4287C154.938 61.0203 155.214 57.6119 155.62 54.2197C156.042 50.8275 156.561 47.4515 157.21 44.0918L157.713 41.5761L158.265 39.0766C158.444 38.2488 158.655 37.421 158.866 36.577L159.174 35.3273L159.499 34.0938C161.236 27.4879 163.427 20.9957 165.959 14.6495C171.039 1.95721 177.612 -10.1021 185.013 -21.5771C177.628 -10.0859 171.071 1.97343 166.007 14.6658C163.475 21.0119 161.284 27.4879 159.564 34.11L159.239 35.3435L158.931 36.5933C158.736 37.421 158.509 38.2488 158.346 39.0928L157.795 41.5923L157.291 44.108C156.658 47.4678 156.139 50.8437 155.717 54.2359C155.311 57.6281 155.052 61.0366 154.873 64.445C154.711 67.8534 154.678 71.278 154.792 74.6865C155.035 81.5033 155.814 88.3202 157.113 95.0234C157.762 98.3669 158.557 101.694 159.45 104.989C160.343 108.284 161.349 111.546 162.388 114.809C163.427 118.071 164.482 121.317 165.455 124.579C166.429 127.858 167.306 131.153 168.004 134.512C168.685 137.856 169.172 141.248 169.432 144.673C169.497 145.533 169.529 146.377 169.578 147.237C169.594 148.097 169.627 148.941 169.627 149.802L169.611 152.366L169.513 154.931C169.335 158.339 168.961 161.747 168.393 165.123L168.182 166.389L168.069 167.022L167.939 167.655L167.419 170.171L166.819 172.671L166.673 173.287C166.624 173.498 166.559 173.693 166.494 173.904L166.153 175.138L165.813 176.371C165.699 176.777 165.553 177.183 165.439 177.588L164.66 180.023L163.8 182.441L163.589 183.042C163.524 183.237 163.443 183.448 163.362 183.642L162.891 184.827C161.658 188.025 160.213 191.125 158.704 194.192C155.62 200.295 152.033 206.138 148.105 211.738C144.177 217.337 139.892 222.677 135.348 227.79C130.819 232.902 126.031 237.804 121.097 242.527L117.364 246.033L113.55 249.457C112.284 250.61 110.986 251.714 109.687 252.833C108.389 253.937 107.107 255.073 105.776 256.144L101.815 259.407C100.484 260.478 99.1373 261.533 97.8064 262.588L95.7938 264.179L93.7487 265.737L89.6749 268.837C89.5937 268.902 89.4639 268.885 89.3827 268.804C89.3178 268.707 89.334 268.577 89.4314 268.496Z' fill='%231D1D1B'/%3E%3Cpath d='M134.08 271.629L137.505 268.821C138.073 268.35 138.641 267.88 139.209 267.409L140.897 265.964L142.585 264.52C143.137 264.033 143.705 263.562 144.257 263.075L147.552 260.121C151.918 256.145 156.17 252.055 160.26 247.802C168.392 239.265 175.923 230.095 182.204 220.097C185.337 215.098 188.177 209.904 190.547 204.515L191.439 202.487C191.715 201.805 191.991 201.123 192.267 200.442L192.673 199.419C192.803 199.078 192.932 198.721 193.062 198.38L193.809 196.303C194.052 195.605 194.263 194.907 194.507 194.209L194.848 193.154L195.156 192.099C195.367 191.385 195.578 190.687 195.773 189.973L196.325 187.83L196.454 187.295C196.503 187.116 196.536 186.938 196.584 186.759L196.828 185.688L197.071 184.601C197.152 184.243 197.217 183.87 197.282 183.513C197.412 182.783 197.558 182.069 197.688 181.338L198.029 179.147C198.451 176.226 198.743 173.288 198.873 170.35C199.019 167.412 199.035 164.442 198.84 161.504C198.662 158.567 198.289 155.629 197.785 152.724C197.266 149.818 196.584 146.946 195.838 144.089C195.091 141.232 194.28 138.392 193.484 135.552C192.689 132.711 191.926 129.855 191.244 126.982C190.563 124.109 189.978 121.204 189.492 118.299C188.55 112.472 188.047 106.564 188.031 100.656C188.063 94.748 188.599 88.84 189.524 83.0132C189.995 80.0917 190.563 77.2027 191.244 74.3137C191.926 71.4408 192.705 68.5842 193.582 65.7601C193.809 65.0622 194.02 64.3481 194.247 63.6501L194.961 61.5564L195.708 59.4627C195.951 58.7647 196.227 58.0831 196.487 57.3851C197.542 54.6259 198.694 51.8992 199.912 49.2212C202.346 43.8488 205.122 38.6226 208.124 33.5262C211.127 28.446 214.389 23.5119 217.798 18.6914C214.389 23.5119 211.143 28.4622 208.141 33.5424C205.138 38.6226 202.379 43.8651 199.944 49.2374C198.727 51.9317 197.591 54.6584 196.536 57.4176C196.276 58.1155 196 58.7972 195.757 59.4951L195.01 61.5889L194.312 63.6826C194.085 64.3805 193.874 65.0947 193.647 65.7926C192.786 68.6167 192.007 71.4571 191.326 74.3299C190.66 77.2027 190.092 80.108 189.621 83.0132C188.713 88.84 188.177 94.748 188.161 100.64C188.193 106.548 188.696 112.439 189.654 118.266C190.125 121.171 190.725 124.077 191.407 126.949C192.088 129.822 192.851 132.679 193.647 135.519C194.442 138.36 195.253 141.2 196.016 144.056C196.763 146.913 197.445 149.786 197.98 152.707C198.5 155.613 198.873 158.55 199.051 161.504C199.246 164.458 199.23 167.412 199.084 170.366C198.938 173.32 198.662 176.258 198.24 179.196L197.899 181.387C197.769 182.117 197.623 182.848 197.493 183.562C197.428 183.919 197.363 184.292 197.282 184.649L197.039 185.737L196.795 186.824C196.747 187.003 196.714 187.181 196.665 187.36L196.536 187.895L195.984 190.038C195.789 190.752 195.578 191.466 195.367 192.164L195.059 193.235L194.718 194.29C194.491 194.988 194.263 195.702 194.02 196.4L193.273 198.478C193.143 198.819 193.03 199.176 192.884 199.516L192.478 200.539C192.202 201.221 191.942 201.919 191.65 202.6L190.774 204.629C188.404 210.05 185.564 215.244 182.431 220.259C176.15 230.29 168.635 239.476 160.488 248.046C156.397 252.315 152.145 256.421 147.779 260.397L144.484 263.351C143.932 263.854 143.364 264.325 142.812 264.812L141.124 266.257L139.436 267.701C138.868 268.172 138.3 268.643 137.732 269.113L134.308 271.937C134.226 272.002 134.113 271.986 134.048 271.905C133.983 271.807 133.999 271.694 134.08 271.629Z' fill='%231D1D1B'/%3E%3Cpath d='M178.733 274.745C182.417 271.385 186.02 267.928 189.51 264.374C192.983 260.787 196.327 257.086 199.524 253.272C205.919 245.627 211.681 237.415 216.355 228.602C218.692 224.203 220.754 219.642 222.49 214.968L222.653 214.53L222.799 214.091L223.107 213.215C223.302 212.631 223.529 212.046 223.708 211.446C224.081 210.261 224.471 209.076 224.795 207.875C225.493 205.489 226.061 203.055 226.581 200.62C227.571 195.735 228.187 190.768 228.398 185.785C228.463 184.536 228.48 183.286 228.496 182.052L228.463 180.186L228.447 179.244V178.774L228.415 178.303C228.285 175.82 228.058 173.336 227.684 170.869C227.587 170.253 227.506 169.636 227.408 169.019L227.067 167.185L226.905 166.26L226.71 165.351L226.337 163.517C226.077 162.3 225.801 161.082 225.526 159.865L224.682 156.213C223.562 151.344 222.555 146.442 221.971 141.492C221.371 136.525 221.176 131.526 221.338 126.544C221.468 124.044 221.728 121.561 222.068 119.094L222.198 118.169L222.344 117.244C222.442 116.627 222.539 116.01 222.653 115.393L222.994 113.559C223.107 112.942 223.253 112.342 223.367 111.725C223.902 109.291 224.503 106.856 225.217 104.47C225.931 102.084 226.727 99.7145 227.603 97.3773C229.356 92.7029 231.45 88.1583 233.787 83.7436C236.14 79.3451 238.753 75.0764 241.578 70.9539C244.385 66.8313 247.404 62.8548 250.537 58.9595C247.421 62.8548 244.402 66.8475 241.594 70.9701C238.786 75.0927 236.173 79.3613 233.836 83.7598C231.498 88.1745 229.421 92.7191 227.668 97.3935C226.792 99.7307 226.012 102.1 225.298 104.486C224.584 106.872 223.984 109.307 223.464 111.741C223.334 112.358 223.205 112.959 223.091 113.575L222.75 115.409C222.636 116.026 222.555 116.643 222.442 117.26L222.296 118.185L222.166 119.11C221.825 121.577 221.565 124.06 221.452 126.56C221.289 131.543 221.5 136.542 222.101 141.492C222.701 146.442 223.708 151.344 224.828 156.197L225.672 159.849C225.948 161.066 226.223 162.283 226.499 163.501L226.889 165.335L227.084 166.244L227.246 167.169L227.587 169.019C227.684 169.636 227.782 170.253 227.863 170.869C228.252 173.336 228.463 175.836 228.609 178.319L228.642 178.79V179.261L228.658 180.202L228.691 182.068C228.674 183.318 228.658 184.568 228.593 185.818C228.382 190.817 227.782 195.783 226.792 200.685C226.288 203.136 225.72 205.57 225.022 207.973C224.698 209.174 224.308 210.358 223.935 211.559C223.756 212.16 223.529 212.744 223.334 213.329L223.026 214.221L222.88 214.66L222.718 215.098C220.981 219.788 218.936 224.349 216.599 228.764C211.924 237.61 206.162 245.838 199.784 253.516C196.586 257.362 193.227 261.063 189.77 264.65C186.28 268.22 182.677 271.678 178.992 275.054C178.928 275.118 178.83 275.102 178.765 275.037C178.668 274.907 178.668 274.81 178.733 274.745Z' fill='%231D1D1B'/%3E%3Cpath d='M223.394 277.877C228.913 271.823 234.074 265.444 238.619 258.628C243.163 251.827 247.107 244.604 250.207 237.025C251.765 233.243 253.08 229.348 254.184 225.404C254.736 223.44 255.223 221.443 255.661 219.447C255.856 218.441 256.083 217.451 256.261 216.428C256.359 215.925 256.456 215.422 256.537 214.919L256.781 213.409C257.089 211.38 257.349 209.352 257.544 207.323C257.738 205.278 257.884 203.249 257.966 201.188C257.998 200.684 258.014 200.165 258.031 199.646C258.047 199.126 258.063 198.623 258.063 198.104V196.562C258.063 196.042 258.079 195.539 258.047 195.02L257.982 193.478C257.966 193.218 257.966 192.959 257.949 192.715L257.901 191.952L257.787 190.427L257.755 190.037L257.722 189.648L257.641 188.885C257.219 184.811 256.505 180.77 255.856 176.728C255.206 172.687 254.655 168.613 254.427 164.523C254.2 160.433 254.265 156.326 254.655 152.236C254.882 150.191 255.255 148.178 255.693 146.182C255.904 145.176 256.164 144.186 256.391 143.196C256.667 142.206 256.911 141.216 257.219 140.242C257.803 138.278 258.469 136.33 259.215 134.431C259.962 132.516 260.757 130.633 261.65 128.783C263.419 125.082 265.448 121.512 267.704 118.087C269.96 114.662 272.427 111.384 275.056 108.235C277.686 105.086 280.461 102.067 283.302 99.1296C280.461 102.084 277.686 105.103 275.056 108.251C272.443 111.4 269.976 114.679 267.72 118.103C265.464 121.528 263.452 125.099 261.682 128.799C260.806 130.649 259.994 132.532 259.264 134.447C258.517 136.363 257.868 138.294 257.284 140.258C256.976 141.232 256.732 142.222 256.456 143.212C256.213 144.202 255.969 145.208 255.758 146.198C255.336 148.195 254.963 150.224 254.736 152.252C254.346 156.326 254.281 160.433 254.525 164.523C254.752 168.613 255.32 172.67 255.969 176.712C256.635 180.753 257.349 184.795 257.771 188.869L257.852 189.631L257.901 190.021L257.933 190.41L258.047 191.936L258.112 192.699C258.128 192.959 258.128 193.218 258.144 193.462L258.209 195.004C258.242 195.523 258.225 196.026 258.225 196.546V198.088C258.225 198.607 258.209 199.11 258.193 199.629C258.177 200.149 258.16 200.652 258.144 201.171C258.063 203.216 257.917 205.261 257.722 207.307C257.544 209.352 257.268 211.38 256.976 213.409L256.732 214.935C256.651 215.438 256.554 215.941 256.456 216.444C256.278 217.451 256.067 218.457 255.856 219.463C255.417 221.46 254.947 223.456 254.395 225.436C253.307 229.396 251.976 233.275 250.435 237.073C247.335 244.669 243.391 251.908 238.846 258.741C234.318 265.574 229.14 271.985 223.638 278.056C223.589 278.121 223.492 278.121 223.443 278.072C223.346 278.023 223.33 277.926 223.394 277.877Z' fill='%231D1D1B'/%3E%3Cpath d='M268.047 281.01C271.521 275.54 274.621 269.827 277.218 263.886C279.815 257.946 281.925 251.795 283.499 245.513C284.294 242.365 284.96 239.2 285.495 236.002C286.031 232.805 286.469 229.591 286.778 226.361C287.102 223.131 287.313 219.902 287.475 216.655C287.508 215.844 287.557 215.032 287.573 214.221C287.589 213.409 287.638 212.598 287.622 211.786C287.622 210.975 287.622 210.163 287.605 209.352L287.573 208.134C287.557 207.729 287.54 207.323 287.524 206.917C287.394 203.671 287.118 200.441 286.907 197.211C286.713 193.981 286.599 190.719 286.745 187.473C286.891 184.227 287.248 180.997 287.881 177.816C288.238 176.225 288.709 174.667 289.228 173.141C289.748 171.599 290.332 170.09 290.981 168.597C291.631 167.103 292.345 165.643 293.124 164.231C293.903 162.802 294.731 161.406 295.623 160.059C297.409 157.349 299.389 154.768 301.547 152.35C303.706 149.931 306.027 147.659 308.462 145.501C310.896 143.342 313.428 141.329 316.009 139.349C313.428 141.329 310.896 143.342 308.478 145.501C306.06 147.659 303.739 149.931 301.58 152.366C299.421 154.784 297.441 157.365 295.672 160.076C294.779 161.423 293.952 162.835 293.189 164.263C292.41 165.691 291.695 167.152 291.062 168.629C290.413 170.122 289.829 171.632 289.31 173.157C288.79 174.699 288.319 176.241 287.962 177.832C287.346 181.013 286.972 184.243 286.843 187.489C286.713 190.735 286.81 193.981 287.021 197.211C287.232 200.441 287.508 203.687 287.654 206.917C287.67 207.323 287.703 207.729 287.703 208.134L287.735 209.352C287.768 210.163 287.751 210.975 287.768 211.786C287.784 212.598 287.735 213.409 287.719 214.221C287.703 215.032 287.654 215.844 287.622 216.655C287.475 219.902 287.265 223.131 286.94 226.361C286.632 229.591 286.21 232.805 285.674 236.019C285.138 239.216 284.489 242.397 283.694 245.546C282.119 251.843 280.026 258.011 277.429 263.968C274.832 269.924 271.748 275.654 268.258 281.14C268.226 281.188 268.145 281.221 268.096 281.172C268.031 281.14 268.015 281.058 268.047 281.01Z' fill='%231D1D1B'/%3E%3Cpath d='M312.703 284.142C314.57 274.42 315.462 264.519 315.982 254.635C316.241 249.685 316.42 244.734 316.631 239.784C316.745 237.317 316.858 234.834 317.02 232.367L317.248 228.666L317.442 224.949C317.572 222.482 317.718 219.999 317.946 217.532C318.173 215.065 318.53 212.614 319.066 210.179L319.26 209.27L319.488 208.378C319.569 208.086 319.634 207.777 319.731 207.485L319.991 206.592C320.153 205.992 320.364 205.408 320.559 204.823C320.754 204.239 320.964 203.655 321.208 203.087C321.695 201.95 322.279 200.847 322.896 199.776C323.204 199.24 323.529 198.721 323.854 198.185C324.016 197.925 324.194 197.666 324.373 197.406C324.535 197.146 324.714 196.887 324.909 196.643C325.266 196.14 325.639 195.653 326.012 195.15C326.402 194.663 326.791 194.176 327.197 193.722C328.009 192.78 328.853 191.888 329.761 191.027C331.547 189.323 333.495 187.765 335.54 186.369C337.585 184.973 339.727 183.724 341.951 182.604C344.158 181.484 346.43 180.494 348.719 179.552C346.43 180.494 344.158 181.484 341.951 182.604C339.743 183.724 337.601 184.973 335.556 186.369C333.511 187.765 331.579 189.323 329.794 191.044C328.901 191.904 328.057 192.796 327.246 193.738C326.84 194.208 326.45 194.695 326.061 195.166C325.688 195.653 325.314 196.14 324.957 196.659C324.779 196.903 324.6 197.162 324.422 197.422C324.259 197.682 324.081 197.942 323.918 198.201C323.594 198.721 323.269 199.256 322.961 199.792C322.344 200.863 321.76 201.967 321.273 203.103C321.029 203.671 320.818 204.255 320.624 204.84C320.429 205.424 320.218 206.008 320.056 206.609L319.796 207.501C319.715 207.793 319.634 208.102 319.552 208.394L319.325 209.287L319.13 210.196C318.595 212.614 318.254 215.065 318.027 217.532C317.8 219.999 317.67 222.466 317.54 224.949L317.345 228.666L317.118 232.383C316.956 234.85 316.858 237.333 316.745 239.8C316.534 244.751 316.371 249.701 316.112 254.651C315.608 264.536 314.732 274.436 312.882 284.191C312.865 284.24 312.817 284.288 312.768 284.272C312.736 284.256 312.703 284.207 312.703 284.142Z' fill='%231D1D1B'/%3E%3Cpath d='M357.384 287.307C355.274 284.093 353.408 280.717 351.834 277.195C350.259 273.689 348.961 270.054 348.036 266.321L347.695 264.925L347.403 263.513L347.257 262.799C347.208 262.555 347.175 262.328 347.143 262.085L346.916 260.656C346.851 260.186 346.786 259.699 346.737 259.228L346.64 258.514C346.607 258.27 346.591 258.043 346.575 257.8L346.445 256.355C346.413 255.868 346.396 255.398 346.38 254.911L346.348 254.197C346.348 253.953 346.348 253.71 346.348 253.482V252.038C346.396 251.08 346.396 250.123 346.494 249.165L346.559 248.451L346.591 248.094L346.64 247.737L346.818 246.308C346.883 245.838 346.981 245.367 347.062 244.88C347.111 244.637 347.143 244.41 347.192 244.166L347.354 243.468L347.516 242.77L347.597 242.413L347.695 242.072L348.068 240.676C348.36 239.768 348.636 238.842 348.993 237.95L349.253 237.268C349.334 237.041 349.448 236.83 349.545 236.603L349.837 235.937L349.983 235.613C350.032 235.499 350.097 235.402 350.146 235.288L350.795 234.006L351.525 232.756C352.532 231.117 353.684 229.575 355.015 228.163L355.518 227.643C355.68 227.465 355.843 227.286 356.037 227.14C356.394 226.816 356.751 226.491 357.109 226.183C357.839 225.566 358.618 224.998 359.413 224.462C362.627 222.352 366.311 221.005 370.093 220.307C373.875 219.609 377.754 219.496 381.584 219.804C377.754 219.496 373.875 219.609 370.109 220.323C366.344 221.037 362.659 222.385 359.446 224.495C358.65 225.03 357.871 225.598 357.141 226.215C356.784 226.54 356.427 226.864 356.07 227.173C355.891 227.335 355.729 227.513 355.55 227.676L355.047 228.195C353.733 229.591 352.58 231.133 351.574 232.772L350.86 234.022L350.211 235.304C350.162 235.418 350.097 235.515 350.048 235.629L349.902 235.953L349.61 236.619C349.513 236.846 349.415 237.057 349.318 237.284L349.058 237.95C348.701 238.842 348.425 239.768 348.133 240.676L347.76 242.072L347.662 242.413L347.581 242.77L347.435 243.468L347.289 244.166C347.24 244.393 347.208 244.637 347.159 244.88C347.078 245.351 346.997 245.822 346.932 246.308L346.753 247.737L346.705 248.094L346.672 248.451L346.624 249.165C346.526 250.123 346.526 251.08 346.478 252.038V253.482C346.478 253.726 346.478 253.969 346.478 254.197L346.51 254.911C346.542 255.398 346.542 255.868 346.575 256.355L346.705 257.783C346.721 258.027 346.737 258.254 346.77 258.498L346.867 259.212C346.932 259.682 346.981 260.169 347.062 260.64L347.305 262.052C347.354 262.296 347.386 262.523 347.435 262.766L347.581 263.464L347.873 264.876L348.214 266.272C349.139 270.005 350.438 273.625 352.012 277.13C353.587 280.636 355.453 283.996 357.563 287.21C357.595 287.242 357.579 287.291 357.547 287.323C357.466 287.356 357.417 287.356 357.384 287.307Z' fill='%231D1D1B'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_8463_114284'%3E%3Crect width='353' height='260' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 353px 263px;
    background-position: right 0% bottom 0%;
}

.bg_img_sovereign_projects_development_institutions_rf_3 {
    background-image: url("data:image/svg+xml,%3Csvg width='392' height='261' viewBox='0 0 392 261' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.2' clip-path='url(%23clip0_8463_114314)'%3E%3Cpath d='M119.899 90.0787C127.087 84.7512 134.304 79.4497 141.552 74.1496L152.394 66.2105L163.265 58.2974L185.037 42.4974L206.871 26.7247L207.224 26.4655L207.719 26.5352L236.327 31.1661L264.902 35.8453L293.474 40.5743L323.768 45.3528L323.174 45.4283L344.591 36.8959L366.039 28.3896C369.614 26.9677 373.188 25.5707 376.763 24.1488L387.516 19.9342L398.27 15.7195L409.022 11.5296L398.446 15.9751L387.84 20.3946L377.234 24.814C373.688 26.2867 370.174 27.7607 366.628 29.2334L345.356 38.0202L324.085 46.7573L323.801 46.8701L323.492 46.808L293.16 42.2019L264.553 37.5462L235.979 32.8421L207.406 28.1132L208.286 27.9249L186.303 43.5425L164.166 59.1041L153.146 66.8621L142.063 74.6175C134.695 79.7886 127.296 84.9585 119.899 90.0787Z' fill='%232A3143'/%3E%3Cpath d='M127.87 112.903C134.926 107.744 142.012 102.612 149.13 97.48L159.774 89.7815L170.449 82.1091L191.828 66.8152L213.266 51.5733L213.619 51.3141L214.083 51.3825L241.861 54.9859L269.637 58.6389L283.508 60.4896L285.242 60.7085L286.976 60.9523L290.441 61.4646L297.373 62.4891L325.067 66.6359L324.504 66.6878L345.53 58.6119L366.586 50.562L371.834 48.5613L377.113 46.5619L387.67 42.5878L398.227 38.6138L408.783 34.6645L398.402 38.8942L387.993 43.073L377.583 47.2518L372.362 49.353L367.142 51.4294L346.263 59.7349L325.385 68.0156L325.131 68.1297L324.821 68.0923L297.121 64.1193L290.188 63.1195L286.722 62.6072L284.989 62.3635L283.254 62.1445L269.381 60.3435L241.606 56.6905L213.863 52.9891L214.68 52.7983L193.091 67.9098L171.442 82.9692L160.586 90.4853L149.732 97.9765C142.403 102.95 135.167 107.953 127.87 112.903Z' fill='%232A3143'/%3E%3Cpath d='M138.668 136.177C145.462 131.355 152.316 126.561 159.14 121.766L169.39 114.574L179.671 107.407L200.262 93.1254L220.913 78.8956L221.233 78.6848L221.637 78.7011C230.333 79.2002 239.059 79.7254 247.755 80.2246L273.871 81.7977L286.913 82.596L287.72 82.6533C288 82.6646 288.279 82.6758 288.527 82.7107L290.138 82.8998L293.392 83.2544L299.901 83.9638L325.87 86.873L325.37 86.9274L345.611 79.7892L365.851 72.6758C372.607 70.3133 379.363 67.9756 386.151 65.6144L396.285 62.0956L406.449 58.6027L396.43 62.3499L386.412 66.0723C379.713 68.5613 373.044 71.0516 366.346 73.5158L346.25 80.9085L326.126 88.2502L325.904 88.3407L325.625 88.3046L299.681 85.5704L293.202 84.8871L289.948 84.5324L288.336 84.3681C288.057 84.3321 287.808 84.3221 287.529 84.3108L286.722 84.2534L273.679 83.4799L247.594 81.9081C238.9 81.3593 230.204 80.8602 221.511 80.2866L222.234 80.0921L201.434 94.1667L180.573 108.214L170.111 115.224L159.651 122.209C152.675 126.924 145.702 131.564 138.668 136.177Z' fill='%232A3143'/%3E%3Cpath d='M149.473 159.452C156.004 154.968 162.596 150.512 169.157 146.054L179.014 139.367L188.9 132.707L208.734 119.439L228.598 106.221L228.853 106.057L229.196 106.046L260.044 105.3L275.467 104.951L290.888 104.627L290.951 104.63L291.013 104.632L308.862 105.873L326.71 107.138L326.272 107.195L345.697 100.993L365.152 94.8173C371.648 92.7425 378.141 90.7423 384.636 88.6924L394.378 85.6299L404.15 82.6183L394.523 85.9091L384.897 89.1751C378.459 91.3515 372.052 93.5293 365.616 95.6809L346.305 102.136L326.964 108.565L326.774 108.632L326.557 108.623L308.704 107.482L290.852 106.316L290.976 106.321L275.552 106.694L260.129 107.043L229.285 107.69L229.884 107.515L209.871 120.578L189.799 133.588L179.731 140.092L169.634 146.57C162.924 150.873 156.213 155.176 149.473 159.452Z' fill='%232A3143'/%3E%3Cpath d='M160.235 182.725C166.503 178.579 172.832 174.459 179.162 170.34L188.625 164.16L198.118 158.005L217.164 145.749L236.239 133.543L236.432 133.402L236.713 133.364L265.147 129.935L279.379 128.246L293.61 126.582L293.704 126.561L293.797 126.565C299.426 126.692 305.057 126.795 310.654 126.945L327.54 127.352L327.197 127.388L345.838 122.099L364.508 116.86C370.742 115.098 376.974 113.411 383.207 111.673L392.557 109.092L401.936 106.537L392.701 109.371L383.467 112.181C377.291 114.045 371.145 115.935 364.969 117.774L346.443 123.291L327.887 128.782L327.73 128.826L327.544 128.818L310.683 128.537C305.052 128.46 299.423 128.332 293.823 128.231L294.011 128.214L279.778 129.928L265.547 131.616L237.085 134.944L237.559 134.789L218.334 146.84L199.049 158.838L189.377 164.811L179.674 170.758C173.191 174.822 166.743 178.812 160.235 182.725Z' fill='%232A3143'/%3E%3Cpath d='M171.036 206C177.041 202.191 183.108 198.409 189.175 194.627L198.275 188.954L207.374 183.306L225.632 172.062L243.951 160.869L244.079 160.775L244.268 160.733C252.942 158.671 261.615 156.66 270.288 154.623L283.298 151.592L296.338 148.563L296.463 148.543L296.588 148.548C301.886 148.389 307.184 148.229 312.483 148.07L328.377 147.616L328.126 147.656L345.982 143.304L363.868 139.004C369.81 137.553 375.811 136.179 381.751 134.753L390.709 132.628L399.664 130.553L390.821 132.931L381.949 135.258C376.034 136.81 370.15 138.387 364.205 139.912L346.463 144.517L328.692 149.07L328.566 149.09L328.442 149.085L312.543 149.663C307.243 149.872 301.944 150.032 296.645 150.216L296.896 150.176L283.885 153.231L270.876 156.262C262.172 158.273 253.499 160.309 244.796 162.295L245.113 162.159L226.645 173.196L208.148 184.182L198.869 189.649L189.561 195.09C183.467 198.771 177.281 202.424 171.036 206Z' fill='%232A3143'/%3E%3Cpath d='M181.834 229.274C187.608 225.804 193.412 222.359 199.185 218.913L207.891 213.746L216.626 208.63L234.096 198.423L251.627 188.243L251.691 188.196L251.785 188.175L263.574 183.753L275.393 179.358C279.343 177.901 283.262 176.419 287.212 174.962L299.03 170.592L299.189 170.523L299.345 170.505C304.313 170.059 309.28 169.612 314.248 169.166L329.149 167.852L329.024 167.872L346.095 164.458C351.775 163.32 357.486 162.208 363.166 161.07C368.846 159.931 374.554 158.869 380.264 157.756L388.829 156.113L397.392 154.494L388.942 156.391L380.462 158.262C374.809 159.5 369.155 160.764 363.502 162.003C357.85 163.217 352.197 164.455 346.513 165.668L329.526 169.309L329.463 169.331L329.401 169.329L314.494 170.767C309.526 171.238 304.557 171.709 299.589 172.18L299.903 172.118L288.084 176.513C284.133 177.995 280.214 179.452 276.266 180.884L264.447 185.255L252.599 189.599L252.758 189.531L235.078 199.531L217.37 209.48L208.486 214.441L199.602 219.377C193.74 222.72 187.816 226.036 181.834 229.274Z' fill='%232A3143'/%3E%3Cpath d='M192.635 252.549C201.619 247.443 210.663 242.389 219.737 237.361C228.811 232.333 237.884 227.33 246.988 222.329C256.091 217.352 265.195 212.375 274.359 207.425L288.074 199.999L301.819 192.624L301.978 192.531L302.167 192.489C309.905 191.26 317.641 190.08 325.379 188.875C333.116 187.671 340.882 186.517 348.62 185.312L360.239 183.568L371.888 181.85C379.654 180.696 387.419 179.592 395.182 178.513C387.5 179.894 379.788 181.248 372.077 182.578L360.511 184.548L348.945 186.518C341.236 187.799 333.525 189.104 325.785 190.383C318.046 191.637 310.335 192.942 302.597 194.172L302.976 194.038L289.261 201.464L275.516 208.838C266.384 213.765 257.19 218.663 247.998 223.537C238.805 228.411 229.613 233.285 220.36 238.107C211.168 242.981 201.915 247.803 192.635 252.549Z' fill='%232A3143'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_8463_114314'%3E%3Crect width='392' height='261' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 392px 263px;
    background-position: right 0% bottom 0%;
}

.bg_img_sovereign_projects_development_institutions_rf_4 {
    background-image: url("data:image/svg+xml,%3Csvg width='410' height='260' viewBox='0 0 410 260' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_8463_114342)'%3E%3Cg opacity='0.2' clip-path='url(%23clip1_8463_114342)'%3E%3Cpath d='M135.082 344.187L294.961 327.753L365.065 181.452L275.281 51.6024L115.403 68.0363L45.308 214.32L135.082 344.187Z' stroke='%231D1D1B' stroke-width='1.01851' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M139.396 224.51L263.047 266.98L365.991 181.508L345.268 53.5576L221.617 11.088L118.673 96.5597L139.396 224.51Z' stroke='%231D1D1B' stroke-width='0.834879' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M184.486 136.427L260.794 210.579L366.639 181.859L396.183 79.0133L319.875 4.86126L214.039 33.5647L184.486 136.427Z' stroke='%231D1D1B' stroke-width='0.68434' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M248.599 85.9435L278.89 167.584L367.003 182.354L424.815 115.501L394.524 33.8609L306.411 19.0904L248.599 85.9435Z' stroke='%231D1D1B' stroke-width='0.560958' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M313.549 70.1273L307.301 141.595L367.093 182.841L433.16 152.611L439.409 81.1435L379.6 39.8886L313.549 70.1273Z' stroke='%231D1D1B' stroke-width='0.459814' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M366.995 80.5288L337.342 131.89L366.994 183.24L426.29 183.244L455.943 131.883L426.291 80.5333L366.995 80.5288Z' stroke='%231D1D1B' stroke-width='0.376912' stroke-miterlimit='10' stroke-linecap='round'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_8463_114342'%3E%3Crect width='410' height='260' fill='white'/%3E%3C/clipPath%3E%3CclipPath id='clip1_8463_114342'%3E%3Crect width='399.376' height='327.555' fill='white' transform='translate(0 266.87) rotate(-60)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 410px 263px;
    background-position: right 0% bottom 0%;
}

.bg_img_sovereign_projects_development_institutions_rf_5 {
    background-image: url("data:image/svg+xml,%3Csvg width='258' height='260' viewBox='0 0 258 260' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.5' clip-path='url(%23clip0_8463_114367)'%3E%3Cpath d='M238 204.583L119.529 273.494L119.405 273.556L119.311 273.494L0.155596 204.427L0 204.333L0.155596 204.239L118.658 135.328L0.248954 204.427V204.239L119.529 273.151H119.311L237.689 204.052L238 204.583Z' fill='%23262525'/%3E%3Cpath d='M238 182.902L119.529 251.813L119.405 251.875L119.311 251.813L0.155596 182.746L0 182.652L0.155596 182.559L118.658 113.647L0.248954 182.746V182.559L119.529 251.47H119.311L237.689 182.371L238 182.902Z' fill='%23262525'/%3E%3Cpath d='M238 161.221L119.529 230.132L119.405 230.194L119.311 230.132L0.155596 161.065L0 160.971L0.155596 160.878L118.658 91.9663L0.248954 161.065V160.878L119.529 229.789H119.311L237.689 160.69L238 161.221Z' fill='%23262525'/%3E%3Cpath d='M238 139.54L119.529 208.451L119.405 208.513L119.311 208.451L0.155596 139.384L0 139.29L0.155596 139.196L118.658 70.2853L0.248954 139.384V139.196L119.529 208.108H119.311L237.689 139.009L238 139.54Z' fill='%23262525'/%3E%3Cpath d='M238 117.859L119.529 186.77L119.405 186.832L119.311 186.77L0.155596 117.703L0 117.609L0.155596 117.515L118.658 48.6043L0.248954 117.703V117.515L119.529 186.427H119.311L237.689 117.328L238 117.859Z' fill='%23262525'/%3E%3Cpath d='M238 96.1776L119.529 165.089L119.405 165.151L119.311 165.089L0.155596 96.0217L0 95.9281L0.155596 95.8345L118.658 26.9233L0.248954 96.0217V95.8345L119.529 164.746H119.311L237.689 95.6473L238 96.1776Z' fill='%23262525'/%3E%3Cpath d='M238 74.4967L119.529 143.408L119.405 143.47L119.311 143.408L0.155596 74.3408L0 74.2472L0.155596 74.1536L118.658 5.24237L0.248954 74.3408V74.1536L119.529 143.065H119.311L237.689 73.9664L238 74.4967Z' fill='%23262525'/%3E%3Cpath d='M238 52.8156L119.529 121.727L119.405 121.789L119.311 121.727L0.155596 52.6596L0 52.5661L0.155596 52.4725L118.658 -16.4388L0.248954 52.6596V52.4725L119.529 121.384H119.311L237.689 52.2853L238 52.8156Z' fill='%23262525'/%3E%3Cpath d='M238 31.1347L119.529 100.046L119.405 100.108L119.311 100.046L0.155596 30.9787L0 30.8852L0.155596 30.7916L118.658 -38.1196L0.248954 30.9787V30.7916L119.529 99.7028H119.311L237.689 30.6044L238 31.1347Z' fill='%23262525'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_8463_114367'%3E%3Crect width='258' height='260' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 260px 263px;
    background-position: right -5% bottom 0%;
}

.bg_img_sovereign_projects_development_institutions_rf_6 {
    background-image: url("data:image/svg+xml,%3Csvg width='275' height='260' viewBox='0 0 275 260' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.6' clip-path='url(%23clip0_8463_114406)'%3E%3Cpath d='M128.518 -0.0604401L0.453125 98.2762L201.965 289.762' stroke='%231D1D1B' stroke-width='0.233163' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M154.806 -4.42041L36.2891 83.797L210.59 270.561' stroke='%231D1D1B' stroke-width='0.233163' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M181.098 -8.76904L72.1289 69.329L219.22 251.371' stroke='%231D1D1B' stroke-width='0.233163' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M207.386 -13.1177L107.965 54.8611L227.846 232.182' stroke='%231D1D1B' stroke-width='0.233163' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M233.662 -17.4775L143.789 40.3936L236.472 212.993' stroke='%231D1D1B' stroke-width='0.233163' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M259.95 -21.8262L179.625 25.914L245.097 193.792' stroke='%231D1D1B' stroke-width='0.233163' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M286.242 -26.1748L215.465 11.4461L253.727 174.602' stroke='%231D1D1B' stroke-width='0.233163' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M312.529 -30.5347L251.301 -3.02139L262.353 155.413' stroke='%231D1D1B' stroke-width='0.233163' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M338.808 -34.8833L287.127 -17.4893L270.98 136.224' stroke='%231D1D1B' stroke-width='0.233163' stroke-miterlimit='10' stroke-linecap='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_8463_114406'%3E%3Crect width='275' height='260' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 275px 263px;
    background-position: right 0% bottom 0%;
}

@media (max-width: 1000px) {
    .bg_img_sovereign_projects_development_institutions_rf_1 {
        background-size: 360px 287px;
    }

    .bg_img_sovereign_projects_development_institutions_rf_2 {
        background-size: 360px 287px;
    }

    .bg_img_sovereign_projects_development_institutions_rf_3 {
        background-size: 360px 287px;
    }

    .bg_img_sovereign_projects_development_institutions_rf_4 {
        background-size: 380px 245px;
    }

    .bg_img_sovereign_projects_development_institutions_rf_5 {
        background-size: 283px 287px;
    }

    .bg_img_sovereign_projects_development_institutions_rf_6 {
        background-size: 300px 287px;
    }
}
@media (max-width: 750px) {
    .bg_img_sovereign_projects_development_institutions_rf_1,
    .bg_img_sovereign_projects_development_institutions_rf_2,
    .bg_img_sovereign_projects_development_institutions_rf_3,
    .bg_img_sovereign_projects_development_institutions_rf_4,
    .bg_img_sovereign_projects_development_institutions_rf_5,
    .bg_img_sovereign_projects_development_institutions_rf_6 {
        background-image: none;
    }
}



.bg_page_header_appeal {
    background-image: url("data:image/svg+xml,%3Csvg width='425' height='423' viewBox='0 0 425 423' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.1' clip-path='url(%23clip0_3012_53695)'%3E%3Cg clip-path='url(%23clip1_3012_53695)'%3E%3Cpath d='M319.495 443.366L320.532 440.947C355.99 357.816 391.367 274.855 426.997 191.909C462.616 108.932 498.516 25.854 534.61 -57.4702L537.582 -55.6795L14.0212 260.133L15.0579 257.714L319.495 443.366ZM322.467 445.157L320.987 444.277L12.6812 260.332L11.2008 259.452L13.7179 257.913L537.018 -60.0993L542.052 -63.1777L539.99 -58.3086C503.987 25.7594 467.79 110.073 431.311 194.489C395.139 278.088 358.769 361.723 322.467 445.157Z' fill='%232A3143'/%3E%3Cpath d='M332.395 434.287L333.27 432.597C363.389 374.39 393.427 316.353 423.644 258.323C453.861 200.292 484.277 142.226 514.847 83.998L516.789 85.7705L132.763 253.266L133.638 251.576L332.395 434.287ZM334.326 436.028L333.34 435.148L131.796 253.226L130.809 252.345L132.671 251.535L516.709 82.3058L520.421 80.6551L518.64 84.0471C488.094 142.831 457.374 201.818 426.455 260.842C395.827 319.302 365.052 377.745 334.326 436.028Z' fill='%232A3143'/%3E%3Cpath d='M341.943 429.129L342.651 427.958C367.391 387.985 392.112 348.054 416.897 308.206C441.714 268.347 466.667 228.474 491.734 188.525L492.948 190.136L215.482 264.384L216.19 263.212L341.943 429.129ZM343.156 430.74L342.549 429.935L214.901 264.24L214.294 263.434L215.64 263.057L493.171 187.515L495.843 186.802L494.384 189.126C469.276 229.549 444.054 270.047 418.695 310.56C393.58 350.667 368.348 390.746 343.156 430.74Z' fill='%232A3143'/%3E%3Cpath d='M348.886 426.564L349.457 425.795C369.288 398.877 389.068 372.012 408.933 345.188C428.799 318.363 448.749 291.579 468.801 264.687L469.548 266.077L272.219 284.232L272.79 283.462L348.886 426.564ZM349.633 427.955L349.249 427.281L271.763 284.043L271.38 283.369L272.334 283.273L469.828 264.107L471.735 263.916L470.574 265.497C450.486 292.684 430.316 319.935 409.998 347.169C389.917 374.177 369.759 401.072 349.633 427.955Z' fill='%232A3143'/%3E%3Cpath d='M353.895 425.577L354.346 425.062C369.873 407.382 385.369 389.713 400.951 372.085C416.501 354.467 432.136 336.89 447.822 319.258L448.237 320.415L310.163 307.055L310.613 306.54L353.895 425.577ZM354.311 426.733L354.097 426.139L309.874 306.841L309.672 306.278L310.336 306.357L448.541 319L449.888 319.116L448.987 320.145C433.244 338.009 417.437 355.895 401.557 373.772C385.819 391.457 370.039 409.122 354.311 426.733Z' fill='%232A3143'/%3E%3Cpath d='M357.435 425.506L357.774 425.172C369.71 413.899 381.646 402.625 393.604 391.414C405.562 380.203 417.563 369.012 429.626 357.799L429.857 358.739L335.023 329.602L335.362 329.268L357.435 425.506ZM357.636 426.457L357.541 425.997L334.82 329.428L334.725 328.968L335.201 329.114L430.148 357.682L431.058 357.955L430.349 358.633C418.237 370.005 406.105 381.42 393.888 392.794C381.836 404.039 369.73 415.232 357.636 426.457Z' fill='%232A3143'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3012_53695'%3E%3Crect width='425' height='423' fill='white' transform='matrix(1 0 0 -1 0 423)'/%3E%3C/clipPath%3E%3CclipPath id='clip1_3012_53695'%3E%3Crect width='608.66' height='404.19' fill='white' transform='translate(678.676 317.222) rotate(160.244)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 425px 423px;
    background-position: right 0% bottom 0%;
}

.bg_page_header_judicial {
    background-image: url("data:image/svg+xml,%3Csvg width='520' height='508' viewBox='0 0 520 508' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.12' clip-path='url(%23clip0_4035_93384)'%3E%3Cpath d='M501.016 313.701C536.335 182.075 454.745 45.8367 318.778 9.40409C182.811 -27.0285 43.9557 50.1407 8.63583 181.767C-26.684 313.392 54.9065 449.631 190.873 486.063C326.84 522.496 465.696 445.327 501.016 313.701Z' stroke='%232A3143' stroke-width='1.22097' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M549.39 348.754C600.854 250.009 559.34 126.644 456.667 73.2095C353.994 19.7753 229.042 56.507 177.578 155.252C126.115 253.997 167.628 377.363 270.301 430.797C372.974 484.231 497.927 447.499 549.39 348.754Z' stroke='%232A3143' stroke-width='1.00084' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M574.968 402.804C633.709 332.866 622.422 226.766 549.759 165.824C477.096 104.882 370.572 112.174 311.831 182.112C253.09 252.051 264.377 358.15 337.04 419.093C409.703 480.035 516.227 472.742 574.968 402.804Z' stroke='%232A3143' stroke-width='0.820377' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M574.464 460.887C634.11 415.159 644.246 328.312 597.104 266.91C549.962 205.507 463.393 192.8 403.747 238.527C344.101 284.255 333.965 371.102 381.107 432.505C428.25 493.907 514.818 506.615 574.464 460.887Z' stroke='%232A3143' stroke-width='0.672465' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M551.568 510.951C607.789 484.754 631.76 417.216 605.109 360.1C578.457 302.984 511.275 277.92 455.054 304.116C398.832 330.313 374.861 397.852 401.513 454.967C428.164 512.083 495.346 537.148 551.568 510.951Z' stroke='%232A3143' stroke-width='0.551204' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M493.782 547.828C545.054 547.828 586.618 506.293 586.618 455.058C586.618 403.823 545.054 362.289 493.782 362.289C442.51 362.289 400.946 403.823 400.946 455.058C400.946 506.293 442.51 547.828 493.782 547.828Z' stroke='%232A3143' stroke-width='0.451827' stroke-miterlimit='10' stroke-linecap='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4035_93384'%3E%3Crect width='627' height='508' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 627px 508px;
    background-position: right 0% bottom 0%;
}

.bg_page_header_open,
.bg_page_header_ministry.ministry {
    background-image: url('/common/core/img/bgs/eagle.svg');
    background-repeat: no-repeat;
    background-position-x: calc( 100vw - ( ( 100vw - var(--page-width) ) / 2 ) - 400px );
    background-position-y: 44px;
    background-size: 400px;
}
.bg_page_header_structure.ministry {
    background-image: url("/common/core/img/bgs/rectangles.svg");
    background-repeat: no-repeat;
    background-size: 457px 490px;
    background-position: right 0% bottom 0%;
}
.bg_page_header_public_debt {
    background-image: url("data:image/svg+xml,%3Csvg width='343' height='399' viewBox='0 0 343 399' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.2' clip-path='url(%23clip0_5253_105154)'%3E%3Cpath d='M53.3477 208.15C60.5032 200.931 67.6907 193.743 74.9102 186.556L85.7074 175.79L96.5365 165.057L118.227 143.622L139.981 122.219L140.332 121.868L140.843 121.932L170.392 126.404L199.909 130.94L229.425 135.54L258.942 140.204L258.335 140.332L279.962 128.257L301.62 116.214C305.23 114.201 308.839 112.221 312.449 110.208L323.31 104.235L334.171 98.2612L345.032 92.3195L334.363 98.5806L323.662 104.81L312.96 111.039C309.382 113.115 305.837 115.192 302.259 117.268L280.792 129.663L259.325 141.993L259.038 142.153L258.718 142.089L229.17 137.649L199.621 133.144L170.105 128.576L140.588 123.976L141.482 123.689L119.568 144.9L97.4949 166.047L86.506 176.589L75.4532 187.131C68.106 194.158 60.7268 201.186 53.3477 208.15Z' fill='%232A3143'/%3E%3Cpath d='M59.3516 222.813C66.3793 215.817 73.4391 208.853 80.5307 201.889L91.1363 191.443L101.774 181.029L123.081 160.266L144.452 139.566L144.803 139.214L145.282 139.278L173.936 142.472L202.59 145.731L216.902 147.392L218.69 147.584L220.479 147.807L224.057 148.286L231.213 149.245L259.803 153.142L259.228 153.238L280.471 141.77L301.746 130.334L307.049 127.491L312.383 124.647L323.053 118.993L333.722 113.339L344.392 107.717L333.914 113.691L323.404 119.6L312.895 125.51L307.624 128.481L302.353 131.42L281.27 143.175L260.186 154.899L259.931 155.059L259.611 155.027L231.021 151.353L223.865 150.427L220.288 149.947L218.499 149.724L216.71 149.532L202.399 147.935L173.745 144.677L145.122 141.354L145.953 141.067L124.422 161.607L102.828 182.084L91.9988 192.306L81.1696 202.496C73.8544 209.268 66.6349 216.072 59.3516 222.813Z' fill='%232A3143'/%3E%3Cpath d='M65.3916 237.507C72.2916 230.735 79.2555 223.994 86.1874 217.254L96.6013 207.16L107.047 197.097L127.971 177.004L148.958 156.975L149.278 156.656L149.725 156.687L177.485 158.604L205.244 160.553L219.108 161.543C219.683 161.575 220.258 161.607 220.833 161.671L222.558 161.862L226.008 162.246L232.94 163.012L260.604 166.143L260.061 166.239L280.921 155.41L301.812 144.612L307.019 141.929L312.258 139.246L322.704 133.879L333.15 128.512L343.628 123.21L333.31 128.864L322.992 134.486L312.674 140.108L307.499 142.919L302.324 145.699L281.624 156.847L260.892 167.964L260.636 168.092L260.349 168.06L232.685 165.153L225.785 164.418L222.335 164.035L220.61 163.843C220.035 163.779 219.46 163.747 218.885 163.715L205.021 162.757L177.261 160.776L149.533 158.764L150.332 158.476L129.185 178.346L107.974 198.151L97.3361 208.022L86.6985 217.861C79.6069 224.41 72.5152 230.99 65.3916 237.507Z' fill='%232A3143'/%3E%3Cpath d='M71.3945 252.169C78.1668 245.62 85.0028 239.104 91.807 232.587L102.029 222.812L112.283 213.069L132.824 193.647L153.428 174.289L153.747 174.001H154.163C163.107 174.193 172.083 174.416 181.028 174.608L207.893 175.279L221.31 175.63L222.14 175.662C222.428 175.662 222.715 175.662 222.971 175.694L224.632 175.854L227.986 176.141L234.695 176.716L261.464 179.112L260.953 179.208L281.429 168.986L301.906 158.795C308.742 155.409 315.578 152.055 322.446 148.669L332.7 143.622L342.986 138.607L332.86 143.941L322.733 149.244C315.961 152.79 309.221 156.336 302.449 159.85L282.132 170.391L261.783 180.869L261.56 180.997L261.272 180.965L234.535 178.793L227.858 178.25L224.504 177.962L222.843 177.834C222.556 177.802 222.3 177.802 222.013 177.802L221.182 177.77L207.765 177.451L180.932 176.78C171.988 176.525 163.043 176.333 154.099 176.045L154.833 175.758L134.07 194.925L113.242 214.059L102.796 223.611L92.3501 233.13C85.3862 239.551 78.4223 245.876 71.3945 252.169Z' fill='%232A3143'/%3E%3Cpath d='M77.4023 266.863C84.0468 260.538 90.7551 254.245 97.4315 247.952L107.462 238.529L117.525 229.137L137.682 210.386L157.902 191.698L158.19 191.443H158.573L175.025 190.995L191.476 190.58L207.927 190.165L224.379 189.782H224.443H224.475L243.354 190.963L262.233 192.177L261.754 192.273L281.847 182.658L301.94 173.107C308.648 169.912 315.357 166.782 322.065 163.619L332.127 158.891L342.222 154.195L332.287 159.243L322.352 164.258C315.708 167.58 309.095 170.934 302.451 174.257L282.518 184.159L262.552 194.03L262.329 194.126H262.073L243.162 193.072L224.251 191.986H224.347L207.895 192.401L191.444 192.816L174.993 193.2L158.541 193.551L159.212 193.263L138.832 211.759L118.387 230.223L108.133 239.423L97.8468 248.591C91.1385 254.661 84.3023 260.794 77.4023 266.863Z' fill='%232A3143'/%3E%3Cpath d='M83.4414 281.526C89.9581 275.425 96.5386 269.355 103.087 263.286L112.926 254.182L122.797 245.11L142.603 227.029L162.44 209.012L162.696 208.789L163.047 208.757L194.672 206.201L210.484 204.955L226.297 203.742H226.361H226.425L244.793 204.412L263.161 205.115L262.714 205.211L282.391 196.235L302.101 187.29C308.682 184.287 315.262 181.38 321.843 178.41L331.714 173.969L341.616 169.593L331.873 174.321L322.13 179.017C315.614 182.147 309.129 185.278 302.612 188.376L283.062 197.672L263.48 206.936L263.289 207.032H263.065L244.697 206.489L226.329 205.914H226.457L210.644 207.192L194.832 208.437L163.207 210.865L163.814 210.61L143.816 228.435L123.755 246.196L113.693 255.076L103.598 263.925C96.89 269.803 90.1817 275.68 83.4414 281.526Z' fill='%232A3143'/%3E%3Cpath d='M89.4453 296.221C95.8342 290.343 102.287 284.497 108.708 278.651L118.355 269.898L128.034 261.178L147.456 243.768L166.911 226.422L167.134 226.23L167.454 226.198L197.801 221.982L212.974 219.905L228.148 217.861H228.212H228.276L246.133 217.989L263.99 218.148L263.606 218.244L282.901 209.875L302.227 201.537C308.68 198.758 315.133 196.043 321.586 193.296L331.265 189.175L340.976 185.086L331.424 189.526L321.873 193.903C315.484 196.81 309.127 199.78 302.738 202.655L283.572 211.344L264.373 219.969L264.181 220.065H263.958H246.101L228.244 220.033H228.404L213.23 222.141L198.056 224.218L167.709 228.307L168.252 228.051L148.638 245.205L128.961 262.296L119.09 270.825L109.187 279.322C102.67 284.912 96.0898 290.598 89.4453 296.221Z' fill='%232A3143'/%3E%3Cpath d='M95.4502 310.883C101.711 305.229 108.036 299.607 114.361 293.985L123.817 285.551L133.304 277.15L152.343 260.411L171.414 243.736L171.606 243.544L171.893 243.481L200.931 237.603L215.465 234.696L230 231.821L230.096 231.789H230.192C235.974 231.661 241.756 231.501 247.506 231.406L264.852 231.054L264.5 231.118L283.411 223.356L302.354 215.657C308.679 213.07 315.004 210.578 321.329 208.022L330.817 204.221L340.336 200.451L330.977 204.572L321.617 208.661C315.356 211.376 309.127 214.124 302.865 216.807L284.082 224.857L265.267 232.875L265.107 232.939H264.915L247.602 233.45C241.82 233.642 236.038 233.769 230.288 233.929L230.479 233.897L215.945 236.836L201.41 239.743L172.34 245.493L172.82 245.269L153.589 261.753L134.295 278.172L124.615 286.35L114.904 294.496C108.42 300.054 101.967 305.517 95.4502 310.883Z' fill='%232A3143'/%3E%3Cpath d='M101.488 325.578C107.622 320.148 113.819 314.749 120.016 309.35L129.312 301.268L138.608 293.218L157.263 277.15L175.983 261.146L176.142 260.986L176.366 260.923L204.126 253.384L218.022 249.646L231.917 245.909L232.013 245.877H232.109C237.699 245.557 243.322 245.238 248.912 244.95L265.715 244.056L265.427 244.12L283.955 236.996L302.515 229.905C308.68 227.541 314.909 225.241 321.106 222.909L330.402 219.427L339.698 215.977L330.53 219.778L321.33 223.548C315.197 226.039 309.095 228.595 302.962 231.055L284.562 238.498L266.13 245.909L266.002 245.973H265.842L249.04 247.027C243.449 247.378 237.827 247.698 232.237 248.049L232.461 248.017L218.597 251.787L204.701 255.524L176.909 262.967L177.324 262.743L158.445 278.556L139.534 294.305L130.047 302.163L120.527 309.989C114.202 315.196 107.845 320.403 101.488 325.578Z' fill='%232A3143'/%3E%3Cpath d='M107.492 340.24C113.498 335.033 119.567 329.858 125.637 324.683L134.741 316.921L143.845 309.19L162.117 293.793L180.453 278.46L180.581 278.332L180.773 278.268C189.589 275.17 198.406 272.135 207.223 269.068L220.448 264.5L233.705 259.932L233.832 259.9H233.96C239.391 259.421 244.821 258.942 250.252 258.463L266.544 257.057L266.288 257.121L284.432 250.604L302.609 244.152C308.646 241.979 314.748 239.903 320.785 237.763L329.889 234.568L338.994 231.438L330.017 234.952L321.009 238.402C315.003 240.702 309.03 243.033 302.992 245.302L284.975 252.138L266.927 258.91L266.799 258.942H266.671L250.38 260.507C244.949 261.05 239.519 261.529 234.088 262.04L234.344 261.977L221.119 266.577L207.894 271.145C199.045 274.179 190.228 277.246 181.38 280.249L181.699 280.057L163.203 295.199L144.675 310.277L135.38 317.783L126.052 325.258C119.951 330.306 113.753 335.321 107.492 340.24Z' fill='%232A3143'/%3E%3Cpath d='M113.532 354.935C119.442 349.952 125.384 345 131.293 340.049L140.206 332.638L149.15 325.259L167.039 310.532L184.992 295.87L185.088 295.774L185.216 295.71L197.802 290.247L210.388 284.817L222.974 279.418L235.592 274.02L235.72 273.956L235.879 273.924C241.118 273.253 246.389 272.614 251.66 271.975L267.441 270.058L267.249 270.09L285.01 264.213L302.771 258.367C308.681 256.418 314.623 254.533 320.564 252.585L329.477 249.71L338.389 246.867L329.604 250.061L320.788 253.224C314.91 255.332 309.064 257.44 303.154 259.517L285.521 265.746L267.856 271.911L267.76 271.943H267.664L251.916 274.02C246.677 274.722 241.406 275.393 236.167 276.064L236.454 276L223.868 281.431L211.282 286.829L198.664 292.228L186.046 297.595L186.302 297.435L168.189 311.906L150.045 326.313L140.941 333.5L131.804 340.656C125.703 345.447 119.634 350.207 113.532 354.935Z' fill='%232A3143'/%3E%3Cpath d='M119.535 369.597C125.317 364.837 131.131 360.109 136.913 355.381L145.634 348.29L154.387 341.262L171.892 327.238L189.462 313.247L189.525 313.183L189.621 313.151L201.537 306.858L213.484 300.597C217.477 298.52 221.438 296.412 225.431 294.336L237.378 288.106L237.538 288.011L237.698 287.979C242.777 287.148 247.856 286.318 252.935 285.487L268.173 283.027L268.045 283.059L285.423 277.788C291.205 276.031 297.018 274.306 302.8 272.549C308.582 270.793 314.396 269.131 320.21 267.406L328.931 264.851L337.652 262.327L329.059 265.202L320.434 268.045C314.684 269.93 308.934 271.847 303.184 273.731C297.434 275.584 291.684 277.469 285.902 279.322L268.62 284.88L268.556 284.912H268.492L253.255 287.531C248.175 288.394 243.096 289.256 238.017 290.119L238.337 290.023L226.389 296.284C222.396 298.393 218.435 300.469 214.442 302.513L202.495 308.743L190.516 314.94L190.675 314.844L172.946 328.612L155.185 342.316L146.273 349.152L137.36 355.956C131.482 360.556 125.541 365.124 119.535 369.597Z' fill='%232A3143'/%3E%3Cpath d='M125.542 384.292C131.196 379.756 136.882 375.251 142.568 370.779L151.098 364.039L159.659 357.331C165.345 352.858 171.095 348.418 176.813 343.978L193.999 330.689L194.031 330.657L194.063 330.625C197.8 328.229 201.57 325.865 205.339 323.501L216.648 316.41C220.417 314.046 224.186 311.682 227.956 309.318L239.264 302.258L239.424 302.163L239.616 302.131L246.963 300.629L254.342 299.128L269.068 296.157L269.004 296.189L285.999 291.525C291.653 289.96 297.339 288.458 302.993 286.925L307.242 285.775L311.491 284.657L319.988 282.389L328.485 280.121L337.014 277.917L328.581 280.504L320.148 283.028L311.714 285.551L307.497 286.829L303.281 288.075C297.659 289.736 292.036 291.429 286.382 293.058L269.484 297.978H269.452H269.42L254.725 301.108L247.378 302.674L240.031 304.207L240.382 304.079L229.074 311.171C225.304 313.535 221.535 315.899 217.766 318.263L206.457 325.322C202.688 327.686 198.918 330.018 195.117 332.35L195.181 332.286L177.835 345.383C172.053 349.728 166.271 354.104 160.457 358.417L151.736 364.901L143.016 371.354C137.234 375.699 131.42 380.011 125.542 384.292Z' fill='%232A3143'/%3E%3Cpath d='M131.582 398.954C140.59 391.926 149.663 384.962 158.767 378.03C167.871 371.098 176.975 364.198 186.111 357.298C195.247 350.43 204.383 343.562 213.583 336.726L227.351 326.472L241.151 316.282L241.311 316.154L241.503 316.09C249.393 314.109 257.283 312.193 265.174 310.244C273.064 308.296 280.986 306.411 288.876 304.462L300.728 301.619L312.611 298.808C320.533 296.923 328.456 295.102 336.378 293.314C328.552 295.486 320.693 297.626 312.835 299.734L301.047 302.865L289.26 305.996C281.402 308.04 273.543 310.116 265.653 312.161C257.763 314.173 249.904 316.25 242.014 318.23L242.397 318.039L228.629 328.293L214.829 338.483C205.661 345.287 196.429 352.059 187.197 358.8C177.965 365.54 168.733 372.28 159.438 378.957C150.206 385.697 140.91 392.373 131.582 398.954Z' fill='%232A3143'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_5253_105154'%3E%3Crect width='344' height='399' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 431px 437px;
    background-position: right calc(50% - var(--column4) + var(--margin)) bottom 0%;
}
.bg_page_header_perf_contracts {
    background-image: url("data:image/svg+xml,%3Csvg width='568' height='494' viewBox='0 0 568 494' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath opacity='0.12' d='M603.286 248.143L467.136 528.709L156.218 506.401L293.336 227.513L603.286 248.143Z' stroke='%232A3143' stroke-width='3' stroke-miterlimit='10'/%3E%3Cpath opacity='0.12' d='M568.386 189.953L432.236 470.519L121.318 448.21L258.436 169.323L568.386 189.953Z' stroke='%232A3143' stroke-width='3' stroke-miterlimit='10'/%3E%3Cpath opacity='0.12' d='M533.484 131.759L397.334 412.325L86.4158 390.016L223.534 111.129L533.484 131.759Z' stroke='%232A3143' stroke-width='3' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Crect width='691' height='512' fill='white' transform='translate(0 -18)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: 570px 418px;
    background-position: right -10% bottom 0%;
    background-repeat: no-repeat;
}

.bg_page_header_perf_international {
    background-image: url("data:image/svg+xml,%3Csvg width='462' height='430' viewBox='0 0 462 430' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.2' clip-path='url(%23clip0_4834_101227)'%3E%3Cpath d='M401.933 251.877C430.268 146.192 364.813 36.8034 255.736 7.55086C146.659 -21.7016 35.2643 40.2591 6.9296 145.944C-21.4052 251.629 44.0495 361.018 153.127 390.27C262.204 419.523 373.598 357.562 401.933 251.877Z' stroke='%232A3143' stroke-width='1.22097' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M440.741 280.021C482.027 200.737 448.723 101.684 366.355 58.7808C283.988 15.8774 183.747 45.37 142.461 124.654C101.176 203.939 134.479 302.991 216.847 345.895C299.215 388.798 399.455 359.306 440.741 280.021Z' stroke='%232A3143' stroke-width='1.00084' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M461.258 323.42C508.382 267.265 499.328 182.075 441.035 133.143C382.742 84.2116 297.285 90.067 250.161 146.222C203.037 202.377 212.092 287.566 270.384 336.498C328.677 385.43 414.134 379.574 461.258 323.42Z' stroke='%232A3143' stroke-width='0.820377' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M460.856 370.055C508.706 333.339 516.837 263.608 479.018 214.307C441.199 165.005 371.751 154.803 323.901 191.518C276.052 228.234 267.92 297.965 305.739 347.266C343.558 396.568 413.006 406.771 460.856 370.055Z' stroke='%232A3143' stroke-width='0.672465' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M442.487 410.253C487.589 389.219 506.82 334.991 485.439 289.132C464.058 243.272 410.163 223.147 365.06 244.181C319.957 265.215 300.727 319.443 322.108 365.302C343.489 411.162 397.384 431.287 442.487 410.253Z' stroke='%232A3143' stroke-width='0.551204' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M396.132 439.861C437.264 439.861 470.608 406.513 470.608 365.375C470.608 324.237 437.264 290.889 396.132 290.889C355 290.889 321.656 324.237 321.656 365.375C321.656 406.513 355 439.861 396.132 439.861Z' stroke='%232A3143' stroke-width='0.451827' stroke-miterlimit='10' stroke-linecap='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4834_101227'%3E%3Crect width='503' height='430' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: 461px 394px;
    background-position: right 0% bottom 0%;
    background-repeat: no-repeat;
}

.bg_page_header_perf_budget {
    background-image: url("data:image/svg+xml,%3Csvg width='376' height='401' viewBox='0 0 376 401' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6879_108075)'%3E%3Cg opacity='0.3'%3E%3Cpath d='M394.71 370.372C387.101 379.592 377.88 387.368 367.938 393.922C357.996 400.476 347.332 405.919 336.334 410.418C314.283 419.416 290.9 424.804 267.294 427.525C243.688 430.136 219.748 430.025 196.143 427.192C172.592 424.304 149.264 418.694 127.269 409.529C126.602 409.252 125.88 408.974 125.214 408.641L123.159 407.752L119.104 405.919L115.105 403.92C113.772 403.253 112.439 402.642 111.161 401.865L107.273 399.698C106.607 399.31 105.94 398.976 105.329 398.643L103.385 397.532C100.83 396.033 98.3307 394.422 95.8868 392.755C86.0556 386.09 76.9465 378.259 69.4481 368.983C67.6152 366.65 65.8378 364.262 64.227 361.762C62.6163 359.263 61.1166 356.708 59.7836 354.042C57.1175 348.71 55.1179 343.1 53.896 337.268C52.674 331.436 52.3408 325.437 52.8407 319.494C53.3406 313.551 54.7847 307.719 56.8953 302.165C57.9506 299.387 59.2281 296.666 60.6167 294.055C62.0053 291.445 63.5605 288.89 65.2268 286.446C68.5594 281.558 72.4475 277.004 76.6688 272.782C78.7794 270.672 80.9456 268.672 83.2229 266.728C85.4446 264.784 87.833 262.951 90.1658 261.174C94.9425 257.619 99.9414 254.398 105.051 251.398C115.327 245.455 126.213 240.567 137.378 236.568C148.542 232.569 160.039 229.459 171.648 227.07C160.039 229.459 148.542 232.625 137.378 236.624C126.213 240.623 115.382 245.566 105.107 251.509C99.997 254.509 94.9981 257.73 90.2769 261.285C87.8885 263.062 85.5557 264.895 83.334 266.839C81.0567 268.783 78.8905 270.783 76.8354 272.893C68.4483 281.28 61.4499 291.112 57.173 302.22C55.0624 307.774 53.6738 313.551 53.1739 319.494C52.674 325.382 53.0073 331.38 54.2292 337.157C55.4512 342.933 57.4508 348.543 60.1168 353.82C61.4499 356.486 62.9496 359.041 64.5603 361.485C66.1711 363.929 67.9485 366.317 69.7814 368.65C77.2242 377.87 86.3889 385.646 96.1645 392.256C98.6084 393.922 101.108 395.477 103.663 396.977L105.551 398.088C106.218 398.476 106.829 398.81 107.495 399.143L111.383 401.254C112.661 401.976 114.049 402.587 115.327 403.253L119.326 405.197L123.381 407.03L125.436 407.919C126.102 408.252 126.769 408.53 127.491 408.807C149.375 417.916 172.703 423.471 196.198 426.248C219.748 429.025 243.632 429.081 267.182 426.415C290.733 423.693 314.006 418.25 335.945 409.252C346.887 404.753 357.496 399.31 367.327 392.755C377.158 386.201 386.267 378.481 393.766 369.372L394.71 370.372Z' fill='%232A3143'/%3E%3Cpath d='M394.71 331.215C387.101 340.435 377.88 348.212 367.938 354.766C357.996 361.32 347.332 366.763 336.334 371.262C314.283 380.26 290.9 385.648 267.294 388.369C243.688 390.98 219.748 390.869 196.143 388.036C172.592 385.148 149.264 379.538 127.269 370.373C126.602 370.096 125.88 369.818 125.214 369.485L123.159 368.596L119.104 366.763L115.105 364.763C113.772 364.097 112.439 363.486 111.161 362.708L107.273 360.542C106.607 360.153 105.94 359.82 105.329 359.487L103.385 358.376C100.83 356.876 98.3307 355.265 95.8868 353.599C86.0556 346.934 76.9465 339.102 69.4481 329.827C67.6152 327.494 65.8378 325.106 64.227 322.606C62.6163 320.107 61.1166 317.552 59.7836 314.886C57.1175 309.554 55.1179 303.944 53.896 298.112C52.674 292.28 52.3408 286.281 52.8407 280.338C53.3406 274.395 54.7847 268.563 56.8953 263.008C57.9506 260.231 59.2281 257.51 60.6167 254.899C62.0053 252.289 63.5605 249.734 65.2268 247.29C68.5594 242.402 72.4475 237.847 76.6688 233.626C78.7794 231.515 80.9456 229.516 83.2229 227.572C85.4446 225.628 87.833 223.795 90.1658 222.018C94.9425 218.463 99.9414 215.241 105.051 212.242C115.327 206.299 126.213 201.411 137.378 197.412C148.542 193.413 160.039 190.302 171.648 187.914C160.039 190.302 148.542 193.468 137.378 197.467C126.213 201.467 115.382 206.41 105.107 212.353C99.997 215.352 94.9981 218.574 90.2769 222.129C87.8885 223.906 85.5557 225.739 83.334 227.683C81.0567 229.627 78.8905 231.627 76.8354 233.737C68.4483 242.18 61.3943 252.066 57.173 263.175C55.0624 268.729 53.6738 274.506 53.1739 280.449C52.674 286.337 53.0073 292.335 54.2292 298.112C55.4512 303.888 57.4508 309.498 60.1168 314.775C61.4499 317.441 62.9496 319.996 64.5603 322.44C66.1711 324.883 67.9485 327.272 69.7814 329.605C77.2797 338.825 86.3889 346.601 96.22 353.21C98.6639 354.877 101.163 356.432 103.718 357.932L105.607 359.042C106.273 359.431 106.884 359.764 107.551 360.098L111.439 362.208C112.716 362.93 114.105 363.541 115.382 364.208L119.382 366.152L123.436 367.985L125.491 368.874C126.158 369.207 126.824 369.485 127.546 369.762C149.431 378.871 172.759 384.426 196.254 387.203C219.804 389.98 243.688 390.036 267.238 387.369C290.788 384.648 314.061 379.205 336.001 370.207C346.943 365.708 357.552 360.264 367.383 353.71C377.214 347.156 386.323 339.436 393.821 330.327L394.71 331.215Z' fill='%232A3143'/%3E%3Cpath d='M394.706 292.002C387.097 301.222 377.876 308.998 367.934 315.552C357.992 322.106 347.328 327.549 336.33 332.048C314.279 341.046 290.896 346.434 267.29 349.155C243.684 351.766 219.745 351.655 196.139 348.822C172.588 345.934 149.26 340.324 127.265 331.16C126.598 330.882 125.876 330.604 125.21 330.271L123.155 329.382L119.1 327.549L115.101 325.55C113.768 324.883 112.435 324.272 111.157 323.495L107.269 321.328C106.603 320.94 105.936 320.606 105.325 320.273L103.381 319.162C100.826 317.662 98.3268 316.052 95.8829 314.385C86.0517 307.72 76.9426 299.889 69.4442 290.613C67.6113 288.28 65.8339 285.892 64.2231 283.392C62.6124 280.893 61.1127 278.338 59.7797 275.672C57.1136 270.34 55.114 264.73 53.8921 258.898C52.6701 253.066 52.3369 247.067 52.8368 241.124C53.3366 235.236 54.7808 229.404 56.8914 223.85C57.9467 221.073 59.2242 218.351 60.6128 215.741C62.0014 213.13 63.5566 210.575 65.2229 208.131C68.5555 203.244 72.4436 198.689 76.6649 194.468C78.7755 192.357 80.9417 190.358 83.219 188.414C85.4407 186.47 87.8291 184.637 90.1619 182.859C94.9386 179.305 99.9375 176.083 105.048 173.084C115.323 167.141 126.21 162.253 137.374 158.254C148.538 154.255 160.035 151.144 171.644 148.756C160.035 151.144 148.538 154.31 137.374 158.309C126.21 162.308 115.379 167.252 105.103 173.195C99.9931 176.194 94.9942 179.416 90.273 182.97C87.8846 184.748 85.5518 186.581 83.3301 188.525C81.0528 190.469 78.8866 192.468 76.8315 194.579C68.4444 202.966 61.446 212.797 57.1691 223.906C55.0585 229.46 53.6699 235.237 53.17 241.18C52.6701 247.067 53.0034 253.066 54.2253 258.842C55.4473 264.619 57.4469 270.229 60.1129 275.505C61.446 278.171 62.9456 280.726 64.5564 283.17C66.1672 285.614 67.9445 288.002 69.7775 290.335C77.2203 299.555 86.3849 307.331 96.1606 313.941C98.6045 315.607 101.104 317.163 103.659 318.662L105.547 319.773C106.214 320.162 106.825 320.495 107.491 320.828L111.379 322.939C112.657 323.661 114.046 324.272 115.323 324.939L119.322 326.883L123.377 328.716L125.432 329.604C126.098 329.882 126.765 330.215 127.487 330.493C149.371 339.602 172.699 345.156 196.194 347.934C219.745 350.711 243.628 350.766 267.179 348.1C290.729 345.379 314.002 339.935 335.941 330.937C346.883 326.438 357.492 320.995 367.323 314.441C377.154 307.887 386.264 300.166 393.762 291.057L394.706 292.002Z' fill='%232A3143'/%3E%3Cpath d='M394.706 252.844C387.097 262.064 377.876 269.84 367.934 276.395C357.992 282.949 347.328 288.392 336.33 292.891C314.279 301.889 290.896 307.276 267.29 309.998C243.684 312.609 219.745 312.498 196.139 309.665C172.588 306.777 149.26 301.167 127.265 292.002C126.598 291.724 125.876 291.447 125.21 291.113L123.155 290.225L119.1 288.392L115.101 286.392C113.768 285.726 112.435 285.115 111.157 284.337L107.269 282.171C106.603 281.782 105.936 281.449 105.325 281.116L103.381 280.005C100.826 278.505 98.3268 276.894 95.8829 275.228C86.0517 268.563 76.9426 260.731 69.4442 251.456C67.6113 249.123 65.8339 246.734 64.2231 244.235C62.6124 241.736 61.1127 239.181 59.7797 236.515C57.1136 231.182 55.114 225.573 53.8921 219.741C52.6701 213.908 52.3369 207.91 52.8368 201.967C53.3366 196.024 54.7808 190.192 56.8914 184.637C57.9467 181.86 59.2242 179.138 60.6128 176.528C62.0014 173.917 63.5566 171.362 65.2229 168.919C68.5555 164.031 72.4436 159.476 76.6649 155.255C78.7755 153.144 80.9417 151.145 83.219 149.201C85.4407 147.257 87.8291 145.424 90.1619 143.646C94.9386 140.092 99.9375 136.87 105.048 133.871C115.323 127.928 126.21 123.04 137.374 119.041C148.538 115.042 160.035 111.931 171.644 109.543C160.035 111.931 148.538 115.097 137.374 119.096C126.21 123.095 115.379 128.039 105.103 133.982C99.9931 136.981 94.9942 140.203 90.273 143.758C87.8846 145.535 85.5518 147.368 83.3301 149.312C81.0528 151.256 78.8866 153.255 76.8315 155.366C68.4444 163.753 61.446 173.584 57.1691 184.693C55.0585 190.247 53.6699 196.024 53.17 201.967C52.6701 207.854 53.0034 213.853 54.2253 219.629C55.4473 225.406 57.4469 231.016 60.1129 236.292C61.446 238.958 62.9456 241.513 64.5564 243.957C66.1672 246.401 67.9445 248.79 69.7775 251.122C77.2203 260.343 86.3849 268.119 96.1606 274.728C98.6045 276.395 101.104 277.95 103.659 279.449L105.547 280.56C106.214 280.949 106.825 281.282 107.491 281.616L111.379 283.726C112.657 284.448 114.046 285.059 115.323 285.726L119.322 287.67L123.377 289.503L125.432 290.391C126.098 290.669 126.765 291.002 127.487 291.28C149.371 300.389 172.699 305.943 196.194 308.721C219.745 311.498 243.628 311.553 267.179 308.887C290.729 306.166 314.002 300.722 335.941 291.724C346.883 287.225 357.492 281.782 367.323 275.228C377.154 268.674 386.264 260.954 393.762 251.844L394.706 252.844Z' fill='%232A3143'/%3E%3Cpath d='M394.71 213.629C387.101 222.85 377.88 230.626 367.938 237.18C357.996 243.734 347.332 249.177 336.334 253.676C314.283 262.674 290.9 268.062 267.294 270.783C243.688 273.394 219.748 273.283 196.143 270.45C172.592 267.562 149.264 261.952 127.269 252.787C126.602 252.51 125.88 252.232 125.214 251.899L123.159 251.01L119.104 249.177L115.105 247.177C113.772 246.511 112.439 245.9 111.161 245.122L107.273 242.956C106.607 242.567 105.94 242.234 105.329 241.901L103.385 240.79C100.83 239.29 98.3307 237.68 95.8868 236.013C86.0556 229.348 76.9465 221.516 69.4481 212.241C67.6152 209.908 65.8378 207.52 64.227 205.02C62.6163 202.521 61.1166 199.966 59.7836 197.3C57.1175 191.968 55.1179 186.358 53.896 180.526C52.674 174.694 52.3408 168.695 52.8407 162.752C53.3406 156.809 54.7847 150.977 56.8953 145.422C57.9506 142.645 59.2281 139.924 60.6167 137.313C62.0053 134.703 63.5605 132.148 65.2268 129.704C68.5594 124.816 72.4475 120.261 76.6688 116.04C78.7794 113.929 80.9456 111.93 83.2229 109.986C85.4446 108.042 87.833 106.209 90.1658 104.432C94.9425 100.877 99.9414 97.6553 105.051 94.656C115.327 88.7129 126.213 83.8251 137.378 79.826C148.542 75.8269 160.039 72.7165 171.648 70.3281C160.039 72.7165 148.542 75.8824 137.378 79.8815C126.213 83.8806 115.382 88.824 105.107 94.7671C99.997 97.7664 94.9981 100.988 90.2769 104.543C87.8885 106.32 85.5557 108.153 83.334 110.097C81.0567 112.041 78.8905 114.041 76.8354 116.151C68.4483 124.538 61.4499 134.369 57.173 145.478C55.0624 151.032 53.6738 156.809 53.1739 162.752C52.674 168.639 53.0073 174.638 54.2292 180.415C55.4512 186.191 57.4508 191.801 60.1168 197.078C61.4499 199.744 62.9496 202.299 64.5603 204.742C66.1711 207.186 67.9485 209.575 69.7814 211.908C77.2242 221.128 86.3889 228.904 96.1645 235.513C98.6084 237.18 101.108 238.735 103.663 240.235L105.551 241.345C106.218 241.734 106.829 242.067 107.495 242.401L111.383 244.511C112.661 245.233 114.049 245.844 115.327 246.511L119.326 248.455L123.381 250.288L125.436 251.177C126.102 251.454 126.769 251.788 127.491 252.065C149.375 261.174 172.703 266.729 196.198 269.506C219.748 272.283 243.632 272.338 267.182 269.672C290.733 266.951 314.006 261.508 335.945 252.51C346.887 248.011 357.496 242.567 367.327 236.013C377.158 229.459 386.267 221.739 393.766 212.63L394.71 213.629Z' fill='%232A3143'/%3E%3Cpath d='M394.706 174.473C387.097 183.693 377.876 191.469 367.934 198.023C357.992 204.577 347.328 210.021 336.33 214.52C314.279 223.518 290.896 228.905 267.29 231.627C243.684 234.238 219.745 234.126 196.139 231.294C172.588 228.406 149.26 222.796 127.265 213.631C126.598 213.353 125.876 213.076 125.21 212.742L123.155 211.854L119.1 210.021L115.101 208.021C113.768 207.355 112.435 206.744 111.157 205.966L107.269 203.8C106.603 203.411 105.936 203.078 105.325 202.745L103.381 201.634C100.826 200.134 98.3268 198.523 95.8829 196.857C86.0517 190.192 76.9426 182.36 69.4442 173.085C67.6113 170.752 65.8339 168.363 64.2231 165.864C62.6124 163.365 61.1127 160.81 59.7797 158.143C57.1136 152.811 55.114 147.201 53.8921 141.369C52.6701 135.537 52.3369 129.539 52.8368 123.596C53.3366 117.653 54.7808 111.82 56.8914 106.266C57.9467 103.489 59.2242 100.767 60.6128 98.1569C62.0014 95.5464 63.5566 92.9914 65.2229 90.5475C68.5555 85.6597 72.4436 81.1051 76.6649 76.8839C78.7755 74.7732 80.9417 72.7737 83.219 70.8297C85.4407 68.8857 87.8291 67.0527 90.1619 65.2753C94.9386 61.7206 99.9375 58.4991 105.048 55.4998C115.323 49.5566 126.21 44.6689 137.374 40.6698C148.538 36.6706 160.035 33.5602 171.644 31.1719C160.035 33.5602 148.538 36.7262 137.374 40.7253C126.21 44.7244 115.379 49.6677 105.103 55.6108C99.9931 58.6102 94.9942 61.8317 90.273 65.3864C87.8846 67.1638 85.5518 68.9967 83.3301 70.9408C81.0528 72.8848 78.8866 74.8843 76.8315 76.995C68.4444 85.382 61.446 95.2131 57.1691 106.322C55.0585 111.876 53.6699 117.653 53.17 123.596C52.6701 129.483 53.0034 135.482 54.2253 141.258C55.4473 147.035 57.4469 152.645 60.1129 157.921C61.446 160.587 62.9456 163.142 64.5564 165.586C66.1672 168.03 67.9445 170.418 69.7775 172.751C77.2203 181.971 86.3849 189.747 96.1606 196.357C98.6045 198.023 101.104 199.579 103.659 201.078L105.547 202.189C106.214 202.578 106.825 202.911 107.491 203.244L111.379 205.355C112.657 206.077 114.046 206.688 115.323 207.355L119.322 209.299L123.377 211.132L125.432 212.02C126.098 212.298 126.765 212.631 127.487 212.909C149.371 222.018 172.699 227.572 196.194 230.35C219.745 233.127 243.628 233.182 267.179 230.516C290.729 227.795 314.002 222.351 335.941 213.353C346.883 208.854 357.492 203.411 367.323 196.857C377.154 190.303 386.264 182.582 393.762 173.473L394.706 174.473Z' fill='%232A3143'/%3E%3Cpath d='M394.706 135.259C387.097 144.48 377.876 152.256 367.934 158.81C357.992 165.364 347.328 170.807 336.33 175.306C314.279 184.304 290.896 189.692 267.29 192.413C243.684 195.024 219.745 194.913 196.139 192.08C172.588 189.192 149.26 183.582 127.265 174.417C126.598 174.14 125.876 173.862 125.21 173.529L123.155 172.64L119.1 170.807L115.101 168.807C113.768 168.141 112.435 167.53 111.157 166.752L107.269 164.586C106.603 164.197 105.936 163.864 105.325 163.531L103.381 162.42C100.826 160.92 98.3268 159.31 95.8829 157.643C86.0517 150.978 76.9426 143.146 69.4442 133.871C67.6113 131.538 65.8339 129.15 64.2231 126.65C62.6124 124.151 61.1127 121.596 59.7797 118.93C57.1136 113.598 55.114 107.988 53.8921 102.156C52.6701 96.3236 52.3369 90.325 52.8368 84.3819C53.3366 78.4388 54.7808 72.6067 56.8914 67.0524C57.9467 64.2753 59.2242 61.5537 60.6128 58.9431C62.0014 56.3326 63.5566 53.7776 65.2229 51.3337C68.5555 46.4459 72.4436 41.8914 76.6649 37.6701C78.72 35.6706 80.9417 33.6155 83.1634 31.6715C85.3852 29.7274 87.7735 27.8945 90.1064 26.1171C94.8831 22.5624 99.882 19.3409 104.992 16.3416C115.267 10.3984 126.154 5.51064 137.318 1.51154C148.482 -2.48756 159.98 -5.59797 171.588 -7.98633C159.98 -5.59797 148.482 -2.43202 137.318 1.56709C126.154 5.56619 115.323 10.5095 105.048 16.4526C99.9375 19.452 94.9386 22.6735 90.2174 26.2282C87.8291 28.0056 85.4963 29.8385 83.2745 31.7825C80.9972 33.7266 78.831 35.7261 76.7759 37.8367C68.4444 46.2793 61.3904 56.1104 57.1691 67.219C55.0585 72.7734 53.6144 78.5499 53.17 84.4374C52.6701 90.325 53.0034 96.3236 54.2253 102.1C55.4473 107.877 57.4469 113.486 60.1129 118.763C61.446 121.429 62.9456 123.984 64.5564 126.428C66.1672 128.872 67.9445 131.26 69.7775 133.593C77.2203 142.813 86.3849 150.589 96.1606 157.199C98.6045 158.865 101.104 160.42 103.659 161.92L105.547 163.031C106.214 163.42 106.825 163.753 107.491 164.086L111.379 166.197C112.657 166.919 114.046 167.53 115.323 168.196L119.322 170.14L123.377 171.973L125.432 172.862C126.098 173.14 126.765 173.473 127.487 173.751C149.371 182.86 172.699 188.414 196.194 191.191C219.745 193.968 243.628 194.024 267.179 191.358C290.729 188.636 314.002 183.193 335.941 174.195C346.883 169.696 357.492 164.253 367.323 157.699C377.154 151.145 386.264 143.424 393.762 134.315L394.706 135.259Z' fill='%232A3143'/%3E%3Cpath d='M394.71 96.1012C387.101 105.321 377.88 113.097 367.938 119.651C357.996 126.206 347.332 131.649 336.334 136.148C314.283 145.146 290.9 150.533 267.294 153.255C243.688 155.866 219.748 155.754 196.143 152.922C172.592 150.034 149.264 144.424 127.269 135.259C126.602 134.981 125.88 134.704 125.214 134.37L123.159 133.482L119.104 131.649L115.105 129.649C113.772 128.983 112.439 128.372 111.161 127.594L107.273 125.428C106.607 125.039 105.94 124.706 105.329 124.373L103.385 123.262C100.83 121.762 98.3307 120.151 95.8868 118.485C86.0556 111.82 76.9465 103.988 69.4481 94.7126C67.6152 92.3798 65.8378 89.9914 64.227 87.492C62.6163 84.9926 61.1166 82.4376 59.7836 79.7715C57.1175 74.4394 55.1179 68.8295 53.896 62.9975C52.674 57.1655 52.3408 51.1668 52.8407 45.2237C53.3406 39.2806 54.7847 33.4485 56.8953 27.8942C57.9506 25.1171 59.2281 22.3955 60.6167 19.7849C62.0053 17.1744 63.5605 14.6194 65.2268 12.1755C68.5594 7.28772 72.4475 2.73319 76.6688 -1.48808C78.7239 -3.54318 80.9456 -5.54274 83.1673 -7.48674C85.3891 -9.43075 87.7774 -11.2637 90.1103 -13.0411C94.887 -16.5958 99.8859 -19.8173 104.996 -22.8166C115.271 -28.7598 126.158 -33.6476 137.322 -37.6467C148.486 -41.6458 159.984 -44.7562 171.592 -47.1445C159.984 -44.7562 148.486 -41.5902 137.322 -37.5911C126.158 -33.592 115.327 -28.6487 105.051 -22.7056C99.9414 -19.7062 94.9425 -16.4847 90.2213 -12.93C87.833 -11.1526 85.5002 -9.31967 83.2784 -7.37566C81.0011 -5.43165 78.835 -3.43209 76.7799 -1.32145C68.3928 7.06556 61.3943 16.8967 57.1175 28.0053C55.0069 33.5596 53.6183 39.3361 53.1184 45.2792C52.6185 51.1668 52.9517 57.1654 54.1737 62.9419C55.3957 68.7184 57.3952 74.3283 60.0613 79.6049C61.3943 82.2709 62.894 84.8259 64.5048 87.2698C66.1155 89.7137 67.8929 92.1021 69.7258 94.4349C77.1687 103.655 86.3333 111.431 96.1089 118.041C98.5529 119.707 101.052 121.262 103.607 122.762L105.496 123.873C106.162 124.262 106.773 124.595 107.44 124.928L111.328 127.039C112.605 127.761 113.994 128.372 115.271 129.038L119.271 130.982L123.325 132.815L125.38 133.704C126.047 133.982 126.713 134.315 127.435 134.593C149.319 143.702 172.648 149.256 196.143 152.033C219.693 154.81 243.577 154.866 267.127 152.2C290.677 149.478 313.95 144.035 335.89 135.037C346.832 130.538 357.44 125.095 367.272 118.541C377.103 111.987 386.212 104.266 393.71 95.1569L394.71 96.1012Z' fill='%232A3143'/%3E%3Cpath d='M394.706 56.8883C387.097 66.1085 377.876 73.8845 367.934 80.4386C357.992 86.9927 347.328 92.4359 336.33 96.9349C314.279 105.933 290.896 111.321 267.29 114.042C243.684 116.653 219.745 116.542 196.139 113.709C172.588 110.821 149.26 105.211 127.265 96.0462C126.598 95.7685 125.876 95.4908 125.21 95.1575L123.155 94.2688L119.1 92.4359L115.101 90.4363C113.768 89.7698 112.435 89.1589 111.157 88.3813L107.269 86.2151C106.603 85.8263 105.936 85.493 105.325 85.1597L103.381 84.0489C100.826 82.5492 98.3268 80.9385 95.8829 79.2722C86.0517 72.607 76.9426 64.7754 69.4442 55.4997C67.6113 53.1669 65.8339 50.7785 64.2231 48.2791C62.6124 45.7797 61.1127 43.2247 59.7797 40.5586C57.1136 35.2265 55.114 29.6166 53.8921 23.7846C52.6701 17.9526 52.3369 11.9539 52.8368 6.0108C53.3366 0.0676804 54.7808 -5.76434 56.8914 -11.3187C57.9467 -14.0958 59.2242 -16.8174 60.6128 -19.428C62.0014 -22.0385 63.5566 -24.5935 65.2229 -27.0374C68.5555 -31.9252 72.4436 -36.4797 76.6649 -40.701C78.72 -42.7561 80.9417 -44.7556 83.1634 -46.6996C85.3852 -48.6436 87.7735 -50.4766 90.1064 -52.2539C94.8831 -55.8087 99.882 -59.0302 104.992 -62.0295C115.267 -67.9726 126.154 -72.8604 137.318 -76.8595C148.482 -80.8587 159.98 -83.9691 171.588 -86.3574C159.98 -83.9691 148.482 -80.8031 137.318 -76.804C126.154 -72.8049 115.323 -67.8616 105.048 -61.9184C99.9375 -58.9191 94.9386 -55.6976 90.2174 -52.1429C87.8291 -50.3655 85.4963 -48.5326 83.2745 -46.5885C80.9972 -44.6445 78.831 -42.645 76.7759 -40.5343C68.3889 -32.1473 61.3904 -22.3162 57.1136 -11.2076C55.0029 -5.65326 53.6144 0.123222 53.1145 6.06634C52.6146 11.9539 52.9478 17.9526 54.1698 23.7291C55.3917 29.5055 57.3913 35.1154 60.0574 40.392C61.3904 43.0581 62.8901 45.613 64.5009 48.0569C66.1116 50.5008 67.889 52.8892 69.7219 55.222C77.1647 64.4422 86.3294 72.2182 96.105 78.8278C98.5489 80.4941 101.048 82.0493 103.603 83.549L105.492 84.6599C106.158 85.0487 106.769 85.3819 107.436 85.7152L111.324 87.8258C112.601 88.5479 113.99 89.1589 115.267 89.8254L119.267 91.7694L123.321 93.6023L125.376 94.491C126.043 94.7687 126.709 95.102 127.431 95.3797C149.316 104.489 172.644 110.043 196.139 112.82C219.689 115.597 243.573 115.653 267.123 112.987C290.673 110.265 313.946 104.822 335.886 95.824C346.828 91.325 357.437 85.8818 367.268 79.3277C377.099 72.7736 386.208 65.0531 393.706 55.9441L394.706 56.8883Z' fill='%232A3143'/%3E%3Cpath d='M394.71 17.6726C387.101 26.8927 377.88 34.6688 367.938 41.2229C357.996 47.777 347.332 53.2202 336.334 57.7192C314.283 66.7172 290.9 72.1049 267.294 74.8265C243.688 77.437 219.748 77.3259 196.143 74.4932C172.592 71.605 149.264 65.9951 127.269 56.8305C126.602 56.5528 125.88 56.2751 125.214 55.9418L123.159 55.0531L119.104 53.2202L115.105 51.2207C113.772 50.5541 112.439 49.9431 111.161 49.1655L107.273 46.9994C106.607 46.6106 105.94 46.2773 105.329 45.9441L103.385 44.8332C100.83 43.3335 98.3307 41.7228 95.8868 40.0565C86.0556 33.3913 76.9465 25.5597 69.4481 16.284C67.6152 13.9512 65.8378 11.5629 64.227 9.06342C62.6163 6.56398 61.1166 4.00899 59.7836 1.34292C57.1175 -3.98923 55.1179 -9.59908 53.896 -15.4311C52.674 -21.2631 52.3408 -27.2618 52.8407 -33.2049C53.3406 -39.148 54.7847 -44.98 56.8953 -50.5344C57.9506 -53.3115 59.2281 -56.0331 60.6167 -58.6437C62.0053 -61.2542 63.5605 -63.8092 65.2268 -66.2531C68.5594 -71.1409 72.4475 -75.6954 76.6688 -79.9167C78.7239 -81.9162 80.9456 -83.9713 83.1673 -85.8598C85.3891 -87.8038 87.7774 -89.6367 90.1103 -91.4141C94.887 -94.9689 99.8859 -98.1904 104.996 -101.19C115.271 -107.133 126.158 -112.021 137.322 -116.02C148.542 -120.019 160.039 -123.129 171.648 -125.518C160.039 -123.129 148.542 -119.963 137.378 -115.964C126.213 -111.91 115.382 -107.022 105.107 -101.079C99.997 -98.0793 94.9981 -94.8578 90.2769 -91.303C87.8885 -89.5256 85.5557 -87.6927 83.334 -85.7487C81.0567 -83.8047 78.8905 -81.8051 76.8354 -79.6945C68.4483 -71.3075 61.4499 -61.4764 57.173 -50.3677C55.0624 -44.8134 53.6738 -39.0369 53.1739 -33.0938C52.674 -27.2063 53.0073 -21.2076 54.2292 -15.4311C55.4512 -9.65462 57.4508 -4.04477 60.1168 1.23183C61.4499 3.8979 62.9496 6.45288 64.5603 8.89679C66.1711 11.3407 67.9485 13.729 69.7814 16.0618C77.2242 25.282 86.3889 33.058 96.1645 39.6677C98.6084 41.334 101.108 42.8892 103.663 44.3888L105.551 45.4997C106.218 45.8885 106.829 46.2218 107.495 46.555L111.383 48.6657C112.661 49.3877 114.049 49.9987 115.327 50.6652L119.326 52.6092L123.381 54.4421L125.436 55.3308C126.102 55.6086 126.769 55.9418 127.491 56.2195C149.375 65.3286 172.703 70.8829 196.198 73.6601C219.748 76.4372 243.632 76.4928 267.182 73.8267C290.733 71.1051 314.006 65.6618 335.945 56.6639C346.887 52.1649 357.496 46.7216 367.327 40.1676C377.158 33.6135 386.267 25.893 393.766 16.7839L394.71 17.6726Z' fill='%232A3143'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_6879_108075'%3E%3Crect width='486' height='401' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: 468px 386px;
    background-position: right -5% bottom 0%;
    background-repeat: no-repeat;
}

.bg_page_header_perf_budget_govprog_gosfin {
    background-image: url("data:image/svg+xml,%3Csvg width='238' height='260' viewBox='0 0 238 260' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M238 204.582L119.529 273.494L119.405 273.556L119.311 273.494L0.155596 204.427L0 204.333L0.155596 204.239L118.658 135.328L0.248954 204.427V204.239L119.529 273.151H119.311L237.689 204.052L238 204.582Z' fill='%232A3143'/%3E%3Cpath d='M238 182.903L119.529 251.814L119.405 251.876L119.311 251.814L0.155596 182.747L0 182.653L0.155596 182.56L118.658 113.648L0.248954 182.747V182.56L119.529 251.471H119.311L237.689 182.372L238 182.903Z' fill='%232A3143'/%3E%3Cpath d='M238 161.221L119.529 230.132L119.405 230.195L119.311 230.132L0.155596 161.065L0 160.972L0.155596 160.878L118.658 91.9668L0.248954 161.065V160.878L119.529 229.789H119.311L237.689 160.691L238 161.221Z' fill='%232A3143'/%3E%3Cpath d='M238 139.54L119.529 208.451L119.405 208.513L119.311 208.451L0.155596 139.384L0 139.29L0.155596 139.196L118.658 70.2852L0.248954 139.384V139.196L119.529 208.108H119.311L237.689 139.009L238 139.54Z' fill='%232A3143'/%3E%3Cpath d='M238 117.86L119.529 186.771L119.405 186.833L119.311 186.771L0.155596 117.704L0 117.61L0.155596 117.517L118.658 48.6055L0.248954 117.704V117.517L119.529 186.428H119.311L237.689 117.329L238 117.86Z' fill='%232A3143'/%3E%3Cpath d='M238 96.1782L119.529 165.089L119.405 165.152L119.311 165.089L0.155596 96.0222L0 95.9286L0.155596 95.835L118.658 26.9238L0.248954 96.0222V95.835L119.529 164.746H119.311L237.689 95.6479L238 96.1782Z' fill='%232A3143'/%3E%3Cpath d='M238 74.4966L119.529 143.408L119.405 143.47L119.311 143.408L0.155596 74.3406L0 74.247L0.155596 74.1534L118.658 5.24219L0.248954 74.3406V74.1534L119.529 143.065H119.311L237.689 73.9662L238 74.4966Z' fill='%232A3143'/%3E%3Cpath d='M238 52.8169L119.529 121.728L119.405 121.79L119.311 121.728L0.155596 52.6609L0 52.5673L0.155596 52.4737L118.658 -16.4375L0.248954 52.6609V52.4737L119.529 121.385H119.311L237.689 52.2865L238 52.8169Z' fill='%232A3143'/%3E%3Cpath d='M238 31.1352L119.529 100.046L119.405 100.109L119.311 100.046L0.155596 30.9792L0 30.8857L0.155596 30.7921L118.658 -38.1191L0.248954 30.9792V30.7921L119.529 99.7033H119.311L237.689 30.6049L238 31.1352Z' fill='%232A3143'/%3E%3C/svg%3E%0A");
    background-size: 350px 396px;
    background-position: right 0% bottom 0%;
    background-repeat: no-repeat;
}

.bg_page_header_perf_budget_govprog_regfin {
    background-image: url("data:image/svg+xml,%3Csvg width='373' height='224' viewBox='0 0 373 224' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.2' clip-path='url(%23clip0_6879_107950)'%3E%3Cpath d='M133.391 151.517C133.348 150.82 123.655 128.193 123.655 128.193L124.235 120.205L115.906 114.773L119.186 110.619L123.002 110.358L123.408 116.08L126.528 119.609L138.412 116.24L136.424 105.202L138.949 93.8445L147.496 80.1488L159.859 73.5261L185.89 60.2661L189.968 62.343L188.778 77.796L184.048 77.6072L180.173 72.1173L176.052 79.3936L210.181 88.3546L207.845 78.5657L221.137 68.9948L225.736 71.2023L211.835 78.2898L214.999 91.0705L225.33 81.7028L233.732 85.8275L259.343 72.858L268.76 84.0701L297.999 76.8665L316.993 68.9948L323.058 55.9962L341.879 41.9375L346.435 47.2095L340.486 55.7493L349.903 60.6728L352.21 77.5346L349.076 88.9355L363.224 115.354L361.25 119.507L345.912 103.299L341.922 82.4435L338.338 101.034L331.155 108.077L322.812 118.447L321.158 134.626L330.227 132.157L336.379 132.855L340.384 157.719L332.2 176.715L328.543 168.059L331.504 156.673L324.858 157.661L305.196 149.702L295.43 155.976L289.989 165.431L268.963 166.636L252.479 160.362L248.794 167.609L235.212 166.723L226.491 168.03L211.327 158.358L207.119 144.241L184.077 134.147L176.197 141.249L170.277 140.262L159.075 125.941L150.673 125.564L145.247 137.822L140.676 138.577L136.25 145.17L134.988 150.849L133.391 151.517Z' stroke='%232A3143' stroke-width='0.394953' stroke-miterlimit='10'/%3E%3Cpath d='M111.253 153.594C111.209 152.81 100.645 126.9 100.645 126.9L101.458 117.837L92.1133 111.49L95.9295 106.828L100.268 106.596L100.616 113.117L104.099 117.198L117.681 113.611L115.635 101.033L118.726 88.1801L128.709 72.7852L142.886 65.4945L172.719 50.9419L177.305 53.3819L175.65 70.9262L170.281 70.6067L165.986 64.289L161.169 72.4657L199.767 83.3293L197.3 72.1607L212.594 61.5441L217.774 64.1438L201.842 71.9138L205.179 86.5099L217.107 76.0676L226.568 80.9184L255.923 66.6854L266.399 79.6113L299.773 72.0155L321.51 63.4466L328.664 48.7924L350.328 33.1797L355.392 39.2505L348.471 48.836L359.078 54.6164L361.37 73.8164L357.583 86.6987L373.139 117.067L370.802 121.744L353.68 103.023L349.559 79.2482L345.119 100.293L336.819 108.164L327.126 119.769L324.92 138.126L335.281 135.498L342.26 136.427L346.323 164.762L336.645 186.185L332.654 176.28L336.238 163.412L328.664 164.399L306.477 154.959L295.261 161.887L288.89 172.533L264.977 173.491L246.36 166.041L242.036 174.203L226.626 172.925L216.701 174.232L199.665 162.933L195.152 146.811L169.179 134.888L160.081 142.803L153.377 141.568L140.956 125.084L131.422 124.489L125.009 138.301L119.799 139.07L114.648 146.477L113.11 152.897L111.253 153.594Z' stroke='%232A3143' stroke-width='0.448792' stroke-miterlimit='10'/%3E%3Cpath d='M86.0581 155.511C86.0291 154.61 74.5367 124.968 74.5367 124.968L75.6395 114.685L65.1484 107.293L69.5741 102.079L74.5222 101.905L74.7834 109.326L78.6577 114.032L94.155 110.226L92.08 95.8918L95.8382 81.3538L107.49 64.0708L123.742 56.0684L157.929 40.1361L163.094 42.9972L160.86 62.8799L154.765 62.4151L150.02 55.1534L144.376 64.3468L188.009 77.447L185.426 64.7098L203.013 52.9603L208.861 56.0248L190.606 64.5356L194.103 81.1795L207.859 69.5607L218.51 75.2684L252.146 59.6847L263.797 74.5858L301.859 66.6124L326.715 57.3029L335.131 40.8042L360.075 23.4922L365.719 30.4925L357.666 41.2399L369.594 48.0224L371.814 69.8947L367.258 84.4618L384.322 119.202L381.579 124.474L362.513 102.863L358.305 75.7768L352.834 99.5953L343.243 108.382L331.997 121.381L329.124 142.193L340.95 139.419L348.858 140.61L352.907 172.881L341.487 197.019L337.163 185.691L341.501 171.123L332.882 172.097L307.866 160.928L294.981 168.582L287.522 180.549L260.329 181.159L239.333 172.329L234.254 181.508L216.769 179.75L205.451 181.043L186.326 167.87L181.523 149.469L152.255 135.41L141.764 144.211L134.175 142.672L120.361 123.704L109.536 122.847L101.991 138.417L96.0559 139.186L90.0485 147.494L88.1621 154.755L86.0581 155.511Z' stroke='%232A3143' stroke-width='0.510008' stroke-miterlimit='10'/%3E%3Cpath d='M57.4054 157.196C57.3909 156.179 44.9118 122.267 44.9118 122.267L46.3629 110.605L34.6094 101.992L39.7461 96.1537L45.3617 96.0521L45.5068 104.49L49.8164 109.907L67.5047 105.884L65.4297 89.5601L70.0005 73.1195L83.5824 53.7016L102.199 44.9439L141.363 27.5157L147.167 30.8707L144.236 53.4256L137.329 52.7866L132.077 44.4356L125.489 54.7763L174.81 70.5343L172.126 56.0108L192.339 42.9978L198.912 46.5851L178.002 55.8946L181.659 74.8768L197.519 61.9509L209.519 68.6463L248.045 51.6102L260.988 68.7624L304.389 60.4695L332.815 50.3902L342.711 31.8147L371.37 12.6582L377.638 20.7333L368.264 32.7878L381.687 40.7321L383.776 65.6254L378.32 82.0805L397.024 121.889L393.803 127.829L372.545 102.864L368.308 72.0012L361.633 98.9568L350.561 108.731L337.531 123.269L333.86 146.855L347.34 143.936L356.308 145.446L360.269 182.191L346.818 209.393L342.116 196.438L347.326 179.983L337.502 180.927L309.308 167.74L294.507 176.178L285.801 189.627L254.894 189.787L231.212 179.33L225.263 189.656L205.427 187.318L192.556 188.567L171.095 173.215L166.002 152.214L133.02 135.687L120.932 145.49L112.342 143.602L97.0191 121.744L84.7432 120.553L75.8483 138.098L69.0864 138.853L62.0923 148.177L59.8142 156.397L57.4054 157.196Z' stroke='%232A3143' stroke-width='0.579554' stroke-miterlimit='10'/%3E%3Cpath d='M24.813 158.533C24.813 157.371 11.3182 118.594 11.3182 118.594L13.2046 105.377L0 95.356L5.94931 88.8204H12.3339V98.4059L17.1224 104.651L37.292 100.439L35.2606 81.8491L40.7746 63.2591L56.591 41.4738L77.9215 31.8883L122.759 12.8625L129.289 16.7839L125.516 42.3452L117.68 41.4738L111.876 31.8883L104.186 43.5071L159.906 62.3876L157.149 45.8309L180.366 31.4526L187.766 35.6644L163.824 45.8309L167.597 67.4709L185.88 53.0926L199.375 60.9353L243.487 42.3452L257.852 62.0972L307.333 53.5283L339.836 42.6357L351.445 21.7219L384.384 0.517578L391.349 9.81261L380.466 23.3195L395.557 32.6145L397.443 60.9353L390.913 79.5254L411.373 125.129L407.601 131.81L383.948 103.053L379.74 67.9066L371.614 98.4059L358.845 109.299L343.754 125.565L339.111 152.288L354.492 149.238L364.649 151.126L368.422 192.954L352.606 223.598L347.527 208.784L353.767 190.194L342.593 191.066L310.815 175.526L293.838 184.821L283.681 199.925L248.565 199.489L221.866 187.144L214.901 198.763L192.41 195.713L177.754 196.875L153.666 179.011L148.298 155.048L111.151 135.586L97.2205 146.479L87.4985 144.155L70.5211 119.029L56.591 117.432L46.1435 137.184L38.4529 137.91L30.327 148.367L27.57 157.662L24.813 158.533Z' stroke='%232A3143' stroke-width='0.658585' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_6879_107950'%3E%3Crect width='373' height='224' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: 600px 600px;
    background-position: right 0% bottom 0%;
    background-repeat: no-repeat;
}

.bg_page_header_perf_finans {
    background-image: url("data:image/svg+xml,%3Csvg width='534' height='387' viewBox='0 0 534 387' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.2' clip-path='url(%23clip0_857_29192)'%3E%3Cpath d='M159.218 186.686C168.577 179.75 177.975 172.848 187.413 165.948L201.53 155.612L215.686 145.31L244.037 124.739L272.467 104.204L272.926 103.867L273.571 103.958L310.823 109.988L348.032 116.08L385.238 122.238L422.442 128.46L421.668 128.558L449.557 117.45L477.485 106.376C482.14 104.525 486.793 102.706 491.448 100.855L505.451 95.3675L519.453 89.8805L533.455 84.4257L519.683 90.2133L505.872 95.967L492.062 101.721C487.445 103.638 482.868 105.557 478.251 107.474L450.552 118.914L422.855 130.289L422.484 130.435L422.082 130.355L384.829 124.357L347.578 118.295L310.371 112.17L273.164 106.012L274.309 105.767L245.684 126.1L216.86 146.36L202.509 156.46L188.078 166.557C178.484 173.29 168.85 180.02 159.218 186.686Z' fill='%232A3143'/%3E%3Cpath d='M155.851 172.104C165.21 165.168 174.608 158.266 184.047 151.365L198.163 141.029L212.319 130.727L240.67 110.157L269.1 89.6217L269.56 89.2842L270.204 89.3749L307.456 95.4048L344.665 101.498L381.871 107.655L421.319 113.877L420.545 113.976L448.433 102.867L476.362 91.793C481.016 89.9419 485.67 88.1231 490.325 86.2719L504.327 80.7849L518.33 75.2978L532.331 69.843L518.56 75.6306L504.749 81.3843L490.939 87.138C486.322 89.0553 481.745 90.9743 477.128 92.8916L449.429 104.331L421.732 115.706L421.361 115.853L420.959 115.772L381.462 109.774L344.211 103.712L307.004 97.5869L269.797 91.4294L270.942 91.1843L242.317 111.517L213.493 131.777L199.142 141.877L184.711 151.974C175.117 158.707 165.483 165.438 155.851 172.104Z' fill='%232A3143'/%3E%3Cpath d='M166.228 201.831C175.416 195.114 184.643 188.431 193.91 181.749L207.771 171.726L221.671 161.736L249.509 141.823L277.425 121.978L277.884 121.64L278.488 121.729L314.659 126.422L350.827 131.179L368.889 133.589L371.148 133.874L373.405 134.191L377.918 134.858L386.944 136.192L423.005 141.592L422.272 141.66L449.651 131.145L477.068 120.664L483.902 118.059L490.776 115.456L504.522 110.282L518.269 105.107L532.014 99.9655L518.498 105.473L504.943 110.913L491.388 116.354L484.59 119.09L477.793 121.793L450.605 132.607L423.419 143.389L423.088 143.537L422.685 143.489L386.615 138.315L377.588 137.013L373.075 136.346L370.818 136.029L368.559 135.743L350.494 133.398L314.326 128.641L278.202 123.821L279.266 123.573L251.154 143.248L222.964 162.856L208.829 172.642L194.695 182.396C185.152 188.872 175.729 195.385 166.228 201.831Z' fill='%232A3143'/%3E%3Cpath d='M173.282 216.998C182.299 210.501 191.395 204.039 200.451 197.576L214.055 187.898L227.698 178.254L255.023 159L282.426 139.814L282.843 139.507L283.409 139.562L318.498 142.916L353.586 146.303L371.109 148.012C371.836 148.073 372.563 148.135 373.289 148.229L375.467 148.511L379.822 149.074L388.572 150.203L423.491 154.781L422.799 154.85L449.666 144.961L476.571 135.107L483.277 132.659L490.023 130.212L503.475 125.318L516.926 120.423L530.416 115.594L517.115 120.786L503.814 125.946L490.514 131.106L483.844 133.685L477.175 136.232L450.497 146.451L423.781 156.637L423.452 156.753L423.089 156.706L388.161 152.355L379.45 151.26L375.095 150.696L372.917 150.414C372.192 150.321 371.464 150.259 370.737 150.197L353.213 148.521L318.126 145.102L283.081 141.652L284.105 141.402L256.506 160.419L228.829 179.368L214.951 188.808L201.074 198.216C191.824 204.477 182.572 210.771 173.282 216.998Z' fill='%232A3143'/%3E%3Cpath d='M180.289 232.133C189.134 225.856 198.06 219.614 206.945 213.37L220.293 204.005L233.68 194.674L260.491 176.079L287.382 157.552L287.798 157.277L288.324 157.299C299.648 157.949 311.01 158.633 322.334 159.283L356.34 161.331L373.323 162.371L374.374 162.446C374.738 162.461 375.102 162.475 375.425 162.521L377.523 162.767L381.76 163.229L390.235 164.152L424.05 167.941L423.399 168.012L449.756 158.718L476.111 149.456C484.909 146.38 493.706 143.337 502.544 140.262L515.74 135.681L528.975 131.133L515.929 136.012L502.885 140.858C494.161 144.099 485.478 147.341 476.756 150.55L450.589 160.175L424.384 169.734L424.095 169.852L423.732 169.805L389.948 166.244L381.512 165.354L377.275 164.893L375.176 164.679C374.813 164.632 374.489 164.619 374.125 164.604L373.074 164.529L356.09 163.522L322.124 161.475C310.803 160.76 299.479 160.11 288.16 159.363L289.102 159.11L262.018 177.435L234.853 195.725L221.231 204.852L207.611 213.947C198.527 220.085 189.448 226.127 180.289 232.133Z' fill='%232A3143'/%3E%3Cpath d='M187.302 247.301C195.976 241.243 204.731 235.221 213.445 229.196L226.536 220.177L239.666 211.192L265.964 193.256L292.342 175.387L292.716 175.144L293.202 175.163L314.061 175.55L334.92 175.969L355.778 176.388L376.635 176.84L376.716 176.843L376.756 176.845L400.625 179.003L424.493 181.194L423.882 181.266L449.728 172.566L475.572 163.931C484.2 161.043 492.826 158.219 501.453 155.363L514.393 151.094L527.372 146.86L514.581 151.458L501.791 156.023C493.238 159.044 484.725 162.099 476.172 165.12L450.517 174.119L424.822 183.084L424.535 183.169L424.211 183.156L400.297 181.125L376.383 179.062L376.505 179.067L355.647 178.648L334.788 178.229L313.931 177.778L293.076 177.294L293.937 177.037L267.365 194.704L240.714 212.335L227.349 221.116L213.945 229.864C205.2 235.66 196.29 241.514 187.302 247.301Z' fill='%232A3143'/%3E%3Cpath d='M194.357 262.438C202.861 256.599 211.444 250.797 219.987 244.992L232.822 236.286L245.696 227.615L271.523 210.339L297.387 193.129L297.72 192.916L298.166 192.902L338.334 191.93L358.417 191.477L378.498 191.056L378.579 191.059L378.66 191.062L401.902 192.677L425.143 194.325L424.573 194.399L449.867 186.324L475.2 178.284C483.659 175.582 492.114 172.978 500.571 170.309L513.257 166.322L525.98 162.401L513.445 166.686L500.911 170.938C492.528 173.771 484.185 176.607 475.803 179.408L450.658 187.813L425.474 196.183L425.227 196.27L424.944 196.259L401.697 194.773L378.45 193.254L378.612 193.261L358.528 193.746L338.446 194.2L298.283 195.042L299.062 194.815L273.003 211.822L246.866 228.762L233.757 237.23L220.609 245.664C211.871 251.267 203.134 256.869 194.357 262.438Z' fill='%232A3143'/%3E%3Cpath d='M201.364 277.604C209.697 271.986 218.109 266.403 226.482 260.818L239.059 252.458L251.676 244.132L276.99 227.515L302.341 210.964L302.632 210.782L303.038 210.766L341.655 208.049L360.962 206.723L380.268 205.429L380.349 205.432L380.43 205.436L403.047 206.476L425.662 207.548L425.173 207.625L449.956 200.145L474.779 192.699C483.067 190.217 491.352 187.8 499.639 185.351L512.068 181.677L524.537 178.037L512.256 182.04L499.978 185.979C491.766 188.593 483.592 191.274 475.381 193.855L450.746 201.665L426.074 209.409L425.827 209.496L425.544 209.485L402.922 208.574L380.301 207.631L380.503 207.639L361.195 208.997L341.888 210.323L303.276 212.911L303.974 212.68L278.429 229.029L252.804 245.31L239.952 253.432L227.061 261.521C218.578 266.842 210.01 272.257 201.364 277.604Z' fill='%232A3143'/%3E%3Cpath d='M208.373 292.739C216.535 287.34 224.777 281.977 233.018 276.613L245.34 268.567L257.701 260.554L282.502 244.596L307.34 228.704L307.591 228.52L307.958 228.47L344.983 224.006L363.514 221.808L382.045 219.642L382.167 219.614L382.289 219.619C389.619 219.785 396.95 219.918 404.238 220.114L426.227 220.644L425.78 220.69L450.053 213.804L474.364 206.985C482.482 204.69 490.596 202.493 498.713 200.231L510.887 196.87L523.1 193.543L511.075 197.234L499.051 200.892C491.009 203.318 483.006 205.779 474.965 208.174L450.842 215.357L426.679 222.506L426.474 222.563L426.231 222.553L404.277 222.187C396.944 222.086 389.614 221.92 382.323 221.788L382.567 221.766L364.034 223.997L345.503 226.195L308.442 230.528L309.058 230.326L284.025 246.016L258.914 261.638L246.319 269.415L233.685 277.158C225.244 282.449 216.847 287.644 208.373 292.739Z' fill='%232A3143'/%3E%3Cpath d='M215.426 307.909C223.417 302.73 231.488 297.586 239.559 292.442L251.664 284.742L263.768 277.075L288.056 261.776L312.421 246.545L312.63 246.391L312.916 246.338L348.39 240.13L366.146 237.058L383.902 233.987L384.025 233.96L384.146 233.965C391.241 233.927 398.377 233.89 405.471 233.885L426.793 233.837L426.427 233.887L450.188 227.628L473.989 221.402C481.896 219.326 489.881 217.317 497.827 215.275L509.745 212.228L521.662 209.213L509.892 212.59L498.084 215.933C490.213 218.14 482.379 220.413 474.509 222.588L450.896 229.177L427.244 235.732L427.08 235.79L426.877 235.782L405.548 235.991C398.452 236.062 391.316 236.098 384.22 236.168L384.504 236.147L366.788 239.252L349.032 242.324L313.521 248.434L314.056 248.229L289.496 263.258L264.897 278.221L252.558 285.684L240.18 293.114C231.955 298.058 223.69 303 215.426 307.909Z' fill='%232A3143'/%3E%3Cpath d='M222.433 323.044C230.254 318.084 238.153 313.16 246.053 308.236L257.902 300.849L269.75 293.495L293.525 278.855L317.378 264.283L317.545 264.16L317.791 264.105C329.086 261.421 340.379 258.802 351.673 256.15L368.613 252.204L385.593 248.261L385.757 248.235L385.918 248.241C392.818 248.034 399.717 247.826 406.616 247.619L427.312 247.028L426.986 247.08L450.237 241.414L473.527 235.815C481.264 233.926 489.078 232.138 496.813 230.281L508.477 227.515L520.138 224.813L508.623 227.909L497.071 230.939C489.369 232.958 481.706 235.012 473.965 236.998L450.863 242.993L427.722 248.921L427.559 248.947L427.397 248.941L406.695 249.693C399.793 249.965 392.894 250.173 385.993 250.413L386.32 250.361L369.378 254.339L352.438 258.284C341.105 260.902 329.811 263.554 318.479 266.139L318.891 265.962L294.844 280.332L270.758 294.636L258.677 301.754L246.555 308.838C238.621 313.632 230.566 318.388 222.433 323.044Z' fill='%232A3143'/%3E%3Cpath d='M229.487 338.213C237.176 333.474 244.905 328.77 252.593 324.064L264.186 317.023L275.817 310.016L299.079 296.035L322.419 282.121L322.544 282.029L322.709 281.971L338.876 277.089L355.041 272.238L371.206 267.42L387.411 262.604L387.575 262.546L387.779 262.522C394.443 262.111 401.146 261.733 407.85 261.356L427.919 260.222L427.675 260.245L450.415 255.206L473.153 250.2C480.719 248.531 488.323 246.928 495.93 245.26L507.337 242.807L518.744 240.386L507.485 243.169L496.187 245.918C488.655 247.75 481.163 249.584 473.592 251.383L451 256.783L428.37 262.117L428.247 262.145L428.126 262.14L408.09 263.437C401.425 263.88 394.72 264.29 388.056 264.701L388.423 264.651L372.257 269.501L356.093 274.319L339.888 279.136L323.684 283.92L324.015 283.771L300.48 297.483L276.907 311.128L265.081 317.933L253.216 324.703C245.292 329.238 237.409 333.743 229.487 338.213Z' fill='%232A3143'/%3E%3Cpath d='M236.496 353.347C244.014 348.829 251.572 344.344 259.089 339.857L270.426 333.13L281.8 326.469L304.548 313.178L327.375 299.924L327.459 299.863L327.581 299.835L342.932 294.078L358.322 288.356C363.465 286.459 368.569 284.529 373.712 282.633L389.101 276.942L389.307 276.853L389.511 276.829C395.979 276.248 402.448 275.667 408.916 275.086L428.32 273.376L428.157 273.402L450.386 268.958C457.782 267.476 465.218 266.027 472.614 264.545C480.01 263.063 487.443 261.68 494.879 260.232L506.031 258.092L517.181 255.985L506.178 258.454L495.136 260.89C487.775 262.502 480.413 264.148 473.052 265.76C465.692 267.341 458.331 268.954 450.931 270.533L428.811 275.273L428.729 275.302L428.648 275.298L409.237 277.17C402.768 277.784 396.298 278.397 389.829 279.01L390.237 278.93L374.847 284.652C369.703 286.581 364.6 288.479 359.458 290.343L344.07 296.033L328.642 301.69L328.848 301.601L305.827 314.621L282.769 327.575L271.2 334.035L259.633 340.461C251.999 344.814 244.286 349.131 236.496 353.347Z' fill='%232A3143'/%3E%3Cpath d='M243.511 368.515C250.858 364.216 258.245 359.951 265.631 355.718L276.71 349.336L287.829 342.988C295.214 338.755 302.679 334.557 310.104 330.358L332.417 317.795L332.458 317.764L332.5 317.734C337.333 315.501 342.204 313.303 347.075 311.104L361.69 304.509C366.562 302.31 371.433 300.112 376.305 297.914L390.918 291.35L391.124 291.262L391.368 291.239L400.737 290.095L410.146 288.953L428.923 286.7L428.841 286.729L450.56 282.879C457.787 281.584 465.051 280.356 472.277 279.094L477.706 278.147L483.134 277.233L493.991 275.373L504.848 273.512L515.743 271.718L504.953 273.905L494.167 276.027L483.381 278.149L477.987 279.226L472.594 280.271C465.404 281.664 458.213 283.09 450.983 284.449L429.375 288.563L429.335 288.561L429.294 288.559L410.551 290.976L401.18 292.184L391.81 293.36L392.26 293.249L377.646 299.844C372.774 302.043 367.903 304.241 363.031 306.44L348.418 313.003C343.546 315.201 338.676 317.368 333.765 319.532L333.849 319.471L311.341 331.832C303.84 335.931 296.337 340.062 288.796 344.127L277.484 350.241L266.174 356.322C258.672 360.421 251.131 364.486 243.511 368.515Z' fill='%232A3143'/%3E%3Cpath d='M250.562 383.651C262.26 377.003 274.037 370.423 285.853 363.876C297.668 357.33 309.483 350.816 321.337 344.303C333.191 337.823 345.045 331.343 356.978 324.899L374.837 315.23L392.734 305.628L392.942 305.507L393.187 305.452C403.264 303.852 413.337 302.316 423.412 300.748C433.487 299.179 443.6 297.677 453.675 296.109L468.805 293.838L483.974 291.601C494.087 290.099 504.197 288.662 514.306 287.257C504.303 289.054 494.26 290.818 484.219 292.549L469.159 295.114L454.099 297.679C444.06 299.346 434.02 301.045 423.941 302.71C413.864 304.343 403.824 306.042 393.748 307.643L394.241 307.469L376.382 317.137L358.485 326.739C346.593 333.153 334.622 339.531 322.652 345.877C310.683 352.223 298.713 358.569 286.665 364.847C274.695 371.193 262.647 377.471 250.562 383.651Z' fill='%232A3143'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_857_29192'%3E%3Crect width='534' height='387' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: 534px 387px;
    background-position: right calc(50% - var(--column4) + var(--margin)) bottom 0%;
    background-repeat: no-repeat;
}

.bg_page_header_perf_govsupport {
    background-image: url("data:image/svg+xml,%3Csvg width='477' height='390' viewBox='0 0 477 390' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.1' clip-path='url(%23clip0_3937_100804)'%3E%3Cpath d='M332.5 440.457H2.5V152.406L167.5 25.0273L332.5 152.406V440.457Z' stroke='%232A3143' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M383.75 417.934H91.25V162.873L237.466 50.0527L383.75 162.873V417.934Z' stroke='%232A3143' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M433.75 395.409H180V172.413L306.875 73.8262L433.75 172.413V395.409Z' stroke='%232A3143' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M485 401.634H268.75V182.496L376.908 98.8516L485 182.496V401.634Z' stroke='%232A3143' stroke-width='2' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3937_100804'%3E%3Crect width='530' height='390' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: 590px 430px;
    background-position: right 0% bottom 0%;
    background-repeat: no-repeat;
}

.bg_page_header_perf_fias {
    background-image: url("data:image/svg+xml,%3Csvg width='693' height='416' viewBox='0 0 693 416' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.2' clip-path='url(%23clip0_3937_100132)'%3E%3Cpath d='M62.0105 285.673C62.0105 283.733 39.2094 218.999 39.2094 218.999L42.3966 196.937L20.0859 180.208L30.138 169.297H40.9256V185.299L49.0163 195.724L83.0953 188.693L79.6629 157.66L88.9795 126.626L115.703 90.2592L151.744 74.2576L227.502 42.4968L238.535 49.0429L232.16 91.7138L218.921 90.2592L209.114 74.2576L196.12 93.6534L290.266 125.172L285.608 97.5326L324.836 73.5302L337.339 80.5612L296.886 97.5326L303.26 133.657L334.152 109.655L356.953 122.747L431.486 91.7138L455.758 124.687L539.362 110.382L594.28 92.1987L613.894 57.2862L669.548 21.8887L681.317 37.4054L662.929 59.9531L688.427 75.4698L691.614 122.747L680.581 153.781L715.15 229.91L708.776 241.062L668.813 193.057L661.703 134.385L647.973 185.299L626.398 203.483L600.9 230.637L593.054 275.247L619.043 270.156L636.205 273.308L642.579 343.133L615.856 394.29L607.274 369.56L617.817 338.526L598.939 339.981L545.246 314.039L516.561 329.556L499.398 354.77L440.067 354.043L394.955 333.435L383.187 352.831L345.185 347.739L320.422 349.679L279.724 319.858L270.652 279.854L207.888 247.366L184.352 265.549L167.925 261.67L139.24 219.727L115.703 217.06L98.0508 250.033L85.0567 251.245L71.327 268.701L66.6687 284.218L62.0105 285.673Z' stroke='%232A3143' stroke-width='0.658585' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3937_100132'%3E%3Crect width='693' height='416' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: 693px 416px;
    background-position: right 0% bottom 0%;
    background-repeat: no-repeat;
}

.bg_page_header_perf_population {
    background-image: url("data:image/svg+xml,%3Csvg width='706' height='389' viewBox='0 0 706 389' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.2' clip-path='url(%23clip0_2255_36492)'%3E%3Cpath d='M0 388.205L0.118536 283.633C0.118536 279.271 0.118536 274.909 0.142243 270.57C0.213365 266.208 0.213365 261.846 0.426729 257.484L0.545265 254.212L0.616387 252.576L0.711216 250.941L1.11424 244.421C1.16165 243.876 1.18536 243.331 1.23277 242.785L1.37502 241.149L1.6595 237.902C1.84916 235.721 2.01511 233.563 2.27589 231.382L3.01081 224.886C3.05823 224.341 3.12935 223.796 3.22418 223.274L3.43754 221.662L3.88798 218.414L4.33842 215.166C4.50437 214.1 4.69402 213.009 4.85997 211.942L5.90309 205.494L7.11216 199.069C7.32552 198.002 7.51518 196.936 7.72854 195.869L8.41605 192.668L9.10356 189.468L9.43546 187.879L9.60141 187.073L9.79107 186.267L11.3083 179.914C19.677 146.06 32.6448 113.344 49.8088 82.9752C66.9965 52.63 88.3093 24.6318 112.965 0C88.3804 24.7029 67.1388 52.7248 50.0459 83.0937C32.9767 113.463 20.1037 146.178 11.8062 180.009L10.2889 186.362L10.0993 187.168L9.93331 187.974L9.60141 189.563L8.9139 192.763L8.22639 195.964C8.01303 197.03 7.82337 198.097 7.61001 199.164L6.42465 205.589L5.38153 212.037C5.21558 213.104 5.02592 214.194 4.88368 215.261L4.43324 218.485L4.03022 221.733L3.81686 223.345C3.74574 223.891 3.67461 224.412 3.60349 224.957L2.89228 231.453C2.6315 233.611 2.46555 235.792 2.27589 237.949L1.9914 241.197L1.84916 242.833C1.80175 243.378 1.77804 243.923 1.75433 244.468L1.35131 250.988L1.25648 252.624L1.20907 254.26L1.09053 257.531C0.734923 266.232 0.829752 274.932 0.829752 283.656L0.948287 388.205H0Z' fill='%232A3143'/%3E%3Cpath d='M91.5117 388.205L91.6303 290.508V284.391V281.333C91.6303 280.314 91.654 279.294 91.6777 278.275L91.7725 272.158C91.8436 270.12 91.9147 268.081 92.0096 266.042L92.1281 262.984L92.3178 259.926L92.6971 253.833L93.2423 247.74C93.3372 246.721 93.4083 245.701 93.5268 244.705L93.8587 241.671L94.1906 238.636L94.3566 237.119C94.404 236.621 94.4751 236.1 94.5462 235.602L95.376 229.557C95.6368 227.541 95.9924 225.526 96.3006 223.511L96.7984 220.5L97.0355 218.983C97.1066 218.485 97.2252 217.988 97.32 217.49L98.4579 211.492L98.7424 209.998L99.0506 208.505L99.6907 205.518C100.497 201.535 101.492 197.576 102.441 193.617C110.383 162.015 122.568 131.48 138.618 103.15C154.715 74.8198 174.629 48.6945 197.672 25.6748C174.7 48.7419 154.834 74.9146 138.831 103.268C122.876 131.646 110.762 162.157 102.915 193.759C101.99 197.718 100.995 201.677 100.189 205.66L99.5722 208.623L99.264 210.117L98.9795 211.61L97.8652 217.608C97.7704 218.106 97.6756 218.604 97.5808 219.102L97.3437 220.619L96.8695 223.63C96.5614 225.645 96.2057 227.636 95.945 229.651L95.1152 235.697C95.0441 236.195 94.973 236.716 94.9256 237.214L94.7596 238.731L94.4277 241.766L94.0958 244.8C93.9773 245.82 93.9061 246.815 93.835 247.835L93.3135 253.904L92.9341 259.997L92.7445 263.031L92.626 266.089C92.5548 268.128 92.4837 270.143 92.4126 272.182L92.3415 278.275C92.3415 279.294 92.3178 280.314 92.3178 281.333V284.391V290.508L92.4363 388.205H91.5117Z' fill='%232A3143'/%3E%3Cpath d='M183.02 388.205L183.138 297.383C183.138 293.59 183.138 289.82 183.209 286.027L183.257 283.182L183.28 281.76L183.328 280.337L183.541 274.671C183.944 267.109 184.466 259.546 185.39 252.031L185.698 249.21L185.77 248.499L185.864 247.787L186.054 246.389L186.836 240.77C187.121 238.897 187.429 237.024 187.737 235.151L188.188 232.354C188.354 231.429 188.543 230.481 188.709 229.556L189.752 223.985L190.938 218.438L191.53 215.664L192.194 212.914C192.645 211.065 193.071 209.239 193.522 207.39C200.99 178.041 212.44 149.711 227.399 123.372C242.382 97.057 260.945 72.8046 282.353 51.397C260.992 72.852 242.501 97.1519 227.589 123.491C212.701 149.829 201.345 178.159 193.972 207.509C193.522 209.334 193.095 211.183 192.645 213.033L191.981 215.783L191.388 218.556L190.227 224.104L189.183 229.675C189.017 230.6 188.828 231.524 188.662 232.472L188.211 235.27C187.927 237.143 187.595 238.992 187.334 240.865L186.576 246.483L186.386 247.882L186.291 248.593L186.22 249.305L185.912 252.126C185.035 259.641 184.513 267.18 184.134 274.742L183.92 280.408L183.873 281.831L183.849 283.253L183.826 286.098C183.754 289.868 183.778 293.661 183.778 297.454L183.897 388.276H183.02V388.205Z' fill='%232A3143'/%3E%3Cpath d='M274.531 388.205L274.65 304.258L274.673 299.019L274.745 293.756C274.768 292.879 274.745 292.002 274.792 291.124L274.887 288.493C274.958 286.739 275.005 284.984 275.1 283.254L275.432 278.014L275.527 276.71L275.574 276.047L275.622 275.383L275.859 272.775L276.096 270.167C276.167 269.29 276.238 268.413 276.357 267.559L276.949 262.344C277.115 260.613 277.4 258.883 277.637 257.128L277.992 254.521C278.111 253.643 278.23 252.79 278.372 251.913L279.225 246.721L279.439 245.417L279.676 244.137L280.174 241.553L280.671 238.969L280.908 237.688L281.193 236.408L282.283 231.264C282.378 230.837 282.473 230.41 282.568 229.984L282.876 228.703L283.493 226.143C283.896 224.436 284.299 222.729 284.749 221.046L286.1 215.973C286.314 215.119 286.575 214.289 286.812 213.46L287.547 210.947L288.281 208.434C288.518 207.604 288.803 206.774 289.064 205.921L290.652 200.919C291.197 199.259 291.79 197.6 292.359 195.964L293.213 193.475L294.137 191.009L295.986 186.102L297.954 181.242C298.286 180.436 298.594 179.606 298.926 178.8L299.969 176.382C300.657 174.77 301.344 173.157 302.055 171.569L304.236 166.804L304.782 165.619C304.971 165.216 305.137 164.813 305.351 164.433L306.512 162.086C309.547 155.78 312.866 149.616 316.327 143.523L318.982 138.995L319.646 137.857L320.334 136.743L321.709 134.515L323.084 132.286C323.321 131.907 323.534 131.528 323.771 131.172L324.482 130.082L327.351 125.696C327.825 124.961 328.323 124.25 328.821 123.515L330.314 121.357C331.31 119.911 332.282 118.465 333.325 117.066L336.407 112.823C336.668 112.467 336.929 112.111 337.189 111.78L337.995 110.736L339.584 108.65L341.172 106.564C341.694 105.876 342.263 105.189 342.808 104.501L346.08 100.4C347.194 99.0488 348.332 97.7212 349.446 96.3936L351.129 94.3785C351.698 93.7147 352.291 93.0746 352.86 92.4108L356.345 88.4754L359.925 84.6348L361.703 82.7145L363.528 80.8417L367.203 77.0959L363.552 80.8654L361.726 82.7383L359.948 84.6585L356.392 88.4991L352.931 92.4345C352.362 93.0983 351.769 93.7384 351.2 94.4022L349.517 96.4173C348.403 97.7686 347.265 99.0962 346.151 100.448L342.879 104.549C342.334 105.236 341.789 105.9 341.243 106.611L339.655 108.698L338.067 110.784L337.284 111.827C337.023 112.183 336.763 112.514 336.502 112.87L333.444 117.137C332.4 118.536 331.429 120.006 330.457 121.452L328.987 123.609C328.489 124.321 327.991 125.056 327.517 125.79L324.672 130.2L323.961 131.291C323.724 131.646 323.51 132.025 323.273 132.405L321.898 134.633L320.523 136.862L319.836 137.976L319.172 139.114L316.54 143.642C313.127 149.735 309.808 155.899 306.797 162.205L305.659 164.552C305.469 164.955 305.279 165.334 305.09 165.737L304.545 166.922L302.363 171.688C301.652 173.276 300.988 174.912 300.301 176.5L299.282 178.918C298.95 179.724 298.641 180.53 298.31 181.36L296.366 186.22L294.54 191.128L293.639 193.593L292.786 196.082C292.217 197.742 291.648 199.378 291.103 201.037L289.514 206.039C289.253 206.869 288.969 207.699 288.732 208.552L287.997 211.065L287.262 213.578C287.025 214.408 286.764 215.261 286.551 216.091L285.223 221.165C284.749 222.848 284.393 224.555 283.967 226.262L283.374 228.822L283.066 230.102C282.971 230.529 282.876 230.956 282.781 231.382L281.691 236.503L281.43 237.783L281.193 239.063L280.719 241.648L280.245 244.232L280.008 245.512L279.794 246.816L278.964 251.984C278.822 252.837 278.704 253.714 278.585 254.568L278.23 257.176C277.992 258.906 277.732 260.637 277.566 262.368L276.997 267.583C276.902 268.46 276.831 269.314 276.76 270.191L276.546 272.799L276.333 275.407L276.286 276.07L276.238 276.734L276.167 278.038L275.859 283.277C275.764 285.032 275.717 286.762 275.645 288.517L275.551 291.124C275.527 292.002 275.527 292.879 275.503 293.756L275.456 298.995V304.234L275.574 388.182H274.531V388.205Z' fill='%232A3143'/%3E%3Cpath d='M366.039 388.205L366.158 311.133V308.715L366.181 306.297L366.252 301.484L366.442 296.672L366.537 294.253L366.679 291.859L366.987 287.046L367.414 282.234L367.627 279.84L367.888 277.445L368.433 272.656L369.097 267.891C369.216 267.085 369.311 266.303 369.429 265.497L369.809 263.126C370.069 261.538 370.33 259.949 370.591 258.361L371.492 253.619C371.634 252.837 371.776 252.031 371.942 251.249L372.44 248.902C372.772 247.337 373.104 245.749 373.459 244.184L374.574 239.49C374.763 238.708 374.929 237.925 375.143 237.143L375.759 234.82C377.371 228.585 379.268 222.444 381.283 216.352C382.35 213.317 383.369 210.259 384.507 207.272L385.36 205.02L385.787 203.882L386.238 202.767L388.039 198.287C390.505 192.36 393.089 186.481 395.958 180.72C397.333 177.827 398.85 174.983 400.343 172.138C400.699 171.427 401.102 170.715 401.481 170.028L402.643 167.918C403.425 166.519 404.184 165.097 405.014 163.722L407.432 159.549C408.262 158.174 409.115 156.823 409.945 155.448L411.201 153.409C411.628 152.722 412.078 152.058 412.505 151.394L415.137 147.364C416.038 146.036 416.962 144.709 417.863 143.381L419.238 141.39C419.688 140.726 420.186 140.086 420.637 139.446L423.458 135.534L426.374 131.693L427.844 129.773L429.337 127.9L432.348 124.131L435.454 120.456L436.995 118.607L438.583 116.805L441.784 113.202L445.055 109.669L446.691 107.915L448.374 106.184L451.741 102.747L448.374 106.208L446.691 107.939L445.055 109.717L441.784 113.249L438.607 116.853L437.018 118.654L435.477 120.504L432.395 124.202L429.385 127.971L427.891 129.868L426.445 131.788L423.553 135.629L420.732 139.54C420.257 140.204 419.783 140.844 419.333 141.508L417.981 143.499C417.081 144.827 416.156 146.155 415.279 147.482L412.671 151.536C412.244 152.224 411.794 152.888 411.367 153.551L410.111 155.614C409.281 156.989 408.428 158.34 407.598 159.715L405.18 163.888C404.35 165.263 403.591 166.685 402.833 168.084L401.671 170.194C401.292 170.905 400.889 171.592 400.533 172.304C399.063 175.149 397.57 177.993 396.195 180.886C393.35 186.647 390.789 192.526 388.324 198.453L386.546 202.933L386.095 204.048L385.669 205.186L384.839 207.438C383.701 210.425 382.682 213.483 381.638 216.518C379.647 222.61 377.774 228.751 376.186 234.986L375.569 237.309C375.356 238.091 375.19 238.873 375 239.656L373.886 244.35C373.531 245.915 373.222 247.479 372.89 249.068L372.393 251.415C372.227 252.197 372.084 252.979 371.942 253.785L371.065 258.527C370.804 260.115 370.543 261.704 370.306 263.268L369.927 265.639C369.809 266.421 369.714 267.227 369.595 268.033L368.955 272.798L368.433 277.587L368.173 279.982L367.959 282.376L367.556 287.165L367.272 291.978L367.13 294.372L367.035 296.766L366.869 301.579L366.821 306.392L366.798 308.786V311.204L366.916 388.276H366.039V388.205Z' fill='%232A3143'/%3E%3Cpath d='M457.551 388.205L457.669 318.008L457.74 313.622L457.764 311.417L457.859 309.213L458.025 304.827L458.309 300.441L458.452 298.26L458.641 296.079L459.021 291.693L459.518 287.331L459.756 285.15C459.85 284.415 459.945 283.704 460.04 282.969L460.633 278.63L461.344 274.292L461.7 272.135C461.818 271.423 461.96 270.689 462.103 269.977L462.909 265.663L463.833 261.372L464.284 259.214C464.45 258.503 464.616 257.792 464.781 257.081L465.801 252.813L466.915 248.57L467.484 246.46L468.1 244.35L469.333 240.13L470.661 235.957L471.325 233.871L472.036 231.785L473.482 227.636L475.023 223.535L475.782 221.472L476.611 219.434L478.247 215.356L479.978 211.326L480.855 209.311L481.78 207.319L483.605 203.336L485.525 199.401L486.497 197.433L487.517 195.489L489.555 191.601L491.665 187.761C492.021 187.121 492.377 186.481 492.732 185.841L493.847 183.944L496.075 180.151L498.375 176.405C498.754 175.789 499.133 175.149 499.536 174.532L500.745 172.683C501.551 171.45 502.334 170.217 503.14 169.008L505.629 165.381C506.056 164.789 506.459 164.172 506.885 163.579L508.166 161.801C509.019 160.616 509.873 159.431 510.75 158.245L513.405 154.76C513.855 154.191 514.282 153.599 514.733 153.03L516.108 151.323L518.858 147.909L521.679 144.566C522.153 143.997 522.627 143.452 523.101 142.883L524.547 141.247L527.463 137.976L530.45 134.775L531.944 133.163L533.485 131.598L536.543 128.469L533.485 131.622L531.968 133.187L530.474 134.799L527.487 138.023L524.595 141.318L523.149 142.954C522.674 143.499 522.2 144.068 521.726 144.637L518.905 148.004L516.179 151.441L514.804 153.148C514.353 153.717 513.926 154.31 513.476 154.903L510.821 158.411C509.967 159.597 509.114 160.782 508.26 161.967L506.98 163.745C506.554 164.338 506.151 164.954 505.748 165.547L503.282 169.174C502.476 170.383 501.694 171.616 500.888 172.849L499.702 174.698C499.299 175.315 498.944 175.955 498.54 176.571L496.241 180.317L494.036 184.11L492.946 186.006C492.59 186.647 492.234 187.287 491.879 187.927L489.769 191.767L487.754 195.655L486.758 197.599L485.786 199.567L483.866 203.502L482.04 207.485L481.139 209.477L480.286 211.492L478.555 215.522L476.943 219.6L476.137 221.638L475.379 223.701L473.861 227.802L472.439 231.951L471.728 234.013L471.064 236.1L469.736 240.272L468.527 244.492L467.935 246.602L467.389 248.712L466.275 252.956L465.256 257.223C465.09 257.934 464.924 258.645 464.758 259.356L464.307 261.49L463.406 265.781L462.6 270.096C462.458 270.807 462.34 271.542 462.197 272.253L461.842 274.411L461.154 278.749L460.562 283.087C460.467 283.822 460.372 284.534 460.277 285.268L460.04 287.449L459.566 291.812L459.187 296.174L458.997 298.355L458.855 300.536L458.594 304.898L458.428 309.284L458.357 311.465L458.333 313.646L458.286 318.032L458.404 388.229H457.551V388.205Z' fill='%232A3143'/%3E%3Cpath d='M549.059 388.205L549.13 356.556L549.153 340.72L549.177 332.801C549.177 330.17 549.177 327.538 549.225 324.883C549.248 323.556 549.248 322.252 549.296 320.924L549.462 316.965C549.485 316.301 549.509 315.637 549.533 314.997L549.651 313.03L549.912 309.071L550.268 305.135L550.434 303.167L550.647 301.2L551.097 297.264L551.643 293.329L551.903 291.361C551.998 290.697 552.117 290.057 552.212 289.417L552.852 285.506C553.089 284.202 553.35 282.922 553.587 281.618L553.966 279.674C554.085 279.034 554.227 278.37 554.369 277.73L555.199 273.865C555.483 272.585 555.815 271.305 556.123 270.001C556.716 267.417 557.427 264.88 558.115 262.32C559.561 257.247 561.078 252.173 562.856 247.195C563.686 244.682 564.658 242.24 565.559 239.751C565.772 239.134 566.033 238.518 566.27 237.902L567.005 236.076C567.503 234.843 567.977 233.611 568.498 232.425L570.063 228.798C570.324 228.182 570.585 227.589 570.869 226.996L571.699 225.195C572.766 222.776 573.951 220.429 575.113 218.059C575.255 217.774 575.397 217.466 575.54 217.181L575.99 216.304L576.915 214.55L577.839 212.796L578.29 211.918L578.764 211.041L580.684 207.58L581.158 206.703L581.656 205.849L582.652 204.143L583.647 202.436L584.145 201.582L584.667 200.729L586.753 197.362L587.275 196.509L587.82 195.679L588.91 194.02L590.001 192.36C590.356 191.815 590.712 191.246 591.091 190.724C592.585 188.543 594.055 186.362 595.619 184.228L596.781 182.616C597.16 182.071 597.54 181.55 597.967 181.028L600.361 177.875C601.143 176.808 601.997 175.789 602.803 174.769C603.633 173.75 604.439 172.707 605.292 171.687L607.852 168.653C608.279 168.155 608.706 167.633 609.133 167.136L610.436 165.666C611.314 164.67 612.191 163.698 613.068 162.702L615.771 159.81L617.122 158.364L618.497 156.942L621.271 154.12L618.521 156.965L617.146 158.388L615.794 159.834L613.115 162.75C612.238 163.722 611.361 164.717 610.508 165.713L609.204 167.207C608.777 167.705 608.35 168.226 607.924 168.724L605.387 171.759C604.557 172.778 603.727 173.821 602.921 174.84C602.092 175.884 601.262 176.903 600.479 177.946L598.085 181.099C597.682 181.621 597.303 182.166 596.923 182.688L595.762 184.3C594.197 186.433 592.727 188.614 591.257 190.795C590.878 191.341 590.522 191.886 590.167 192.455L589.1 194.114L588.033 195.774L587.488 196.604L586.966 197.457L584.904 200.824L584.382 201.677L583.884 202.53L582.889 204.237L581.893 205.944L581.395 206.798L580.921 207.675L579.024 211.136L578.55 212.013L578.1 212.89L577.199 214.645L576.298 216.399L575.848 217.276C575.705 217.561 575.563 217.869 575.421 218.153C574.283 220.524 573.098 222.895 572.031 225.289L571.201 227.091C570.917 227.684 570.656 228.3 570.395 228.893L568.854 232.52C568.333 233.729 567.858 234.962 567.361 236.171L566.626 237.996C566.389 238.613 566.128 239.229 565.914 239.846C565.014 242.311 564.065 244.777 563.236 247.29C561.481 252.268 559.988 257.318 558.565 262.391C557.901 264.951 557.19 267.488 556.621 270.049C556.313 271.329 556.005 272.609 555.72 273.889L554.914 277.753C554.772 278.393 554.63 279.034 554.511 279.697L554.156 281.641C553.919 282.945 553.658 284.225 553.444 285.529L552.828 289.441C552.733 290.081 552.615 290.745 552.52 291.385L552.259 293.353L551.738 297.264L551.311 301.2L551.097 303.167L550.931 305.135L550.6 309.071L550.362 313.006L550.244 314.974C550.22 315.637 550.197 316.301 550.173 316.941L550.031 320.9C550.007 322.228 550.007 323.532 549.983 324.86C549.936 327.491 549.959 330.122 549.959 332.778L549.983 340.696L550.007 356.532L550.078 388.181H549.059V388.205Z' fill='%232A3143'/%3E%3Cpath d='M640.57 388.205L640.641 359.994L640.665 345.888C640.689 341.194 640.665 336.476 640.76 331.782C640.76 331.19 640.784 330.597 640.807 330.028L640.879 328.274L640.95 326.519L640.997 325.642L641.044 324.765C641.187 322.418 641.329 320.071 641.566 317.724C641.945 313.03 642.562 308.36 643.226 303.689L643.795 300.204L644.079 298.474L644.411 296.743L645.075 293.282L645.81 289.821L646.189 288.09C646.307 287.521 646.45 286.952 646.592 286.383L647.422 282.946C647.706 281.808 648.014 280.67 648.323 279.532C648.631 278.394 648.915 277.256 649.271 276.118L650.267 272.728C650.432 272.159 650.622 271.614 650.788 271.045L651.333 269.361C652.021 267.109 652.827 264.904 653.586 262.676L653.87 261.846L654.178 261.016L654.795 259.357L655.411 257.697L655.719 256.868L656.051 256.038C656.928 253.857 657.782 251.652 658.754 249.518C660.579 245.18 662.618 240.936 664.728 236.717L666.364 233.587C666.648 233.066 666.909 232.544 667.193 232.023L668.047 230.482L669.754 227.4L671.532 224.341L672.433 222.824L673.357 221.331L675.207 218.32L677.127 215.356L678.099 213.887C678.407 213.389 678.763 212.915 679.094 212.417L681.086 209.501C681.75 208.529 682.461 207.58 683.148 206.632C684.5 204.712 685.97 202.863 687.392 200.99L687.937 200.279L688.483 199.591L689.597 198.216L690.711 196.841L691.256 196.154L691.825 195.49C693.342 193.688 694.836 191.886 696.424 190.132C697.207 189.255 697.989 188.354 698.771 187.5L701.166 184.916C701.569 184.49 701.972 184.063 702.375 183.636L703.608 182.38L706.073 179.867L703.608 182.403L702.375 183.66C701.972 184.087 701.569 184.513 701.166 184.94L698.771 187.524C697.989 188.401 697.207 189.278 696.424 190.156C694.86 191.91 693.366 193.735 691.849 195.537L691.28 196.225L690.735 196.912L689.644 198.287L688.554 199.662L688.008 200.35L687.487 201.061C686.064 202.934 684.642 204.807 683.291 206.727C682.603 207.675 681.916 208.624 681.252 209.596L679.26 212.511C678.929 213.009 678.597 213.483 678.265 213.981L677.316 215.451L675.396 218.415L673.547 221.425L672.622 222.919L671.745 224.436L669.967 227.494L668.284 230.576L667.431 232.117C667.146 232.639 666.885 233.16 666.624 233.682L665.012 236.811C662.926 241.031 660.911 245.275 659.109 249.613C658.161 251.771 657.331 253.952 656.454 256.133L656.122 256.962L655.814 257.792L655.198 259.452L654.581 261.111L654.273 261.941L653.989 262.771C653.23 264.999 652.448 267.204 651.76 269.456L651.239 271.139C651.073 271.708 650.883 272.254 650.717 272.823L649.745 276.213C649.413 277.327 649.129 278.489 648.82 279.603C648.536 280.741 648.228 281.879 647.943 283.017L647.137 286.454C646.995 287.023 646.853 287.592 646.734 288.161L646.379 289.892L645.644 293.329L645.004 296.791L644.672 298.521L644.387 300.252L643.842 303.737C643.202 308.383 642.585 313.054 642.23 317.724C642.016 320.071 641.898 322.418 641.756 324.741L641.708 325.618L641.685 326.496L641.613 328.25L641.542 330.004C641.519 330.597 641.495 331.166 641.495 331.759C641.424 336.453 641.447 341.147 641.471 345.864L641.495 359.97L641.566 388.182H640.57V388.205Z' fill='%232A3143'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2255_36492'%3E%3Crect width='706' height='388.205' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: 706px 388px;
    background-position: right 0% bottom 0%;
    background-repeat: no-repeat;
}

.bg_page_header_perf_audit {
    background-image: url("data:image/svg+xml,%3Csvg width='412' height='385' viewBox='0 0 412 385' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.15' clip-path='url(%23clip0_725_27714)'%3E%3Cpath d='M-26.125 203.893C-21.3659 204.802 -16.5719 205.571 -11.7778 206.34C-6.98374 207.074 -2.18968 207.773 2.63938 208.402C12.2625 209.661 21.9206 210.745 31.5787 211.584C41.2368 212.423 50.9299 213.087 60.623 213.471C70.3162 213.856 80.0093 213.996 89.7024 213.821C109.054 213.401 128.44 211.863 147.371 207.913C156.819 205.92 166.162 203.403 175.156 199.908C184.114 196.447 192.757 192.042 200.491 186.414C208.224 180.786 215.013 173.829 220.017 165.719C222.536 161.664 224.566 157.329 226.176 152.855C227.82 148.275 229.605 143.696 231.565 139.256C235.554 130.342 240.208 121.742 245.597 113.562C248.291 109.472 251.126 105.522 254.1 101.641C257.11 97.7961 260.259 94.0906 263.548 90.455C270.127 83.2537 277.231 76.5418 284.789 70.3892C292.348 64.2367 300.326 58.6085 308.62 53.5396C312.784 50.9877 317.018 48.6106 321.322 46.3383C325.626 44.0661 330 41.9336 334.445 39.9411C343.298 35.9559 352.396 32.4601 361.774 29.9082C357.12 31.2716 352.536 32.9495 348.057 34.7323C343.543 36.5152 339.099 38.4379 334.724 40.5353C330.35 42.5978 326.011 44.8351 321.777 47.1423C317.543 49.4845 313.379 51.9665 309.284 54.5534C292.943 64.9009 277.896 77.3458 264.983 91.7484C252.071 106.116 241.433 122.476 233.699 140.165C231.775 144.604 230.025 149.079 228.415 153.624C226.771 158.273 224.636 162.748 222.047 166.977C216.868 175.402 209.869 182.639 201.925 188.407C193.947 194.21 185.129 198.649 175.995 202.18C166.862 205.676 157.379 208.263 147.826 210.22C138.273 212.178 128.58 213.471 118.887 214.345C114.023 214.765 109.159 215.114 104.33 215.359C99.4655 215.569 94.6014 215.709 89.7374 215.743C70.2812 215.953 50.825 214.8 31.4737 212.807C21.8156 211.793 12.1575 210.535 2.56939 209.067C-7.05373 207.598 -16.6419 205.92 -26.125 203.893Z' fill='%232A3143'/%3E%3Cpath d='M-17.7969 220.393C-13.1428 221.128 -8.4537 221.722 -3.76462 222.316C0.924467 222.875 5.61355 223.4 10.3026 223.854C19.6808 224.763 29.094 225.497 38.5421 225.952C47.9553 226.441 57.4034 226.721 66.8166 226.756C76.2297 226.791 85.6779 226.546 95.0911 225.987C99.7801 225.672 104.504 225.357 109.158 224.868C111.503 224.658 113.847 224.379 116.192 224.134L119.691 223.68C120.846 223.54 122.036 223.4 123.191 223.225L126.69 222.736L130.189 222.176L131.939 221.897L133.689 221.582L137.153 220.953L140.617 220.254L142.332 219.904L144.046 219.52L147.476 218.75L150.905 217.877L152.62 217.457L154.299 216.968C155.419 216.653 156.574 216.338 157.694 216.024C159.933 215.325 162.173 214.695 164.413 213.891L166.092 213.332L166.932 213.052L167.772 212.738L171.061 211.514C172.146 211.095 173.231 210.64 174.316 210.186L175.925 209.522C176.45 209.277 177.01 209.032 177.535 208.822C181.839 206.97 185.968 204.802 190.028 202.46C194.087 200.118 197.901 197.461 201.54 194.56L202.905 193.476C203.36 193.126 203.815 192.742 204.235 192.357L206.824 190.015C207.664 189.211 208.469 188.372 209.309 187.568C210.149 186.764 210.883 185.89 211.688 185.016L212.843 183.723C213.053 183.513 213.228 183.268 213.403 183.059L213.928 182.359L215.013 180.996L215.538 180.297L215.817 179.947L216.062 179.598L218.057 176.731L218.302 176.382L218.512 175.997L218.967 175.263L219.877 173.76L220.332 173.026C220.472 172.781 220.647 172.536 220.751 172.257L221.556 170.719C222.081 169.67 222.676 168.691 223.096 167.607L224.496 164.426L225.86 161.14C227.715 156.77 229.71 152.471 231.914 148.241C236.323 139.851 241.362 131.741 247.066 124.155C249.901 120.344 252.875 116.639 256.025 113.073C259.139 109.508 262.428 106.082 265.823 102.761C272.611 96.1537 279.89 90.0361 287.588 84.4779C295.287 78.9196 303.3 73.8856 311.629 69.3761C319.957 64.8665 328.565 60.8814 337.314 57.3856C341.688 55.6028 346.132 53.9597 350.576 52.3866L357.26 50.0794C358.38 49.6949 359.499 49.3104 360.619 48.9258C361.739 48.5063 362.859 48.1218 363.874 47.5625C362.859 48.1568 361.739 48.5763 360.654 49.0307C359.569 49.4502 358.45 49.8697 357.33 50.2892L350.681 52.7712C346.272 54.4142 341.863 56.1621 337.524 58.0148C328.845 61.7203 320.342 65.8454 312.154 70.4598C303.93 75.0742 296.022 80.178 288.463 85.8062C280.905 91.4344 273.766 97.5171 267.082 104.159C253.75 117.408 242.447 132.65 233.909 149.324C231.774 153.484 229.78 157.749 227.96 162.049L226.63 165.3L225.196 168.586C224.741 169.705 224.146 170.754 223.621 171.802L222.781 173.41C222.641 173.69 222.501 173.935 222.326 174.179L221.871 174.948L220.961 176.487L220.507 177.256L220.262 177.64L220.017 178.025L217.987 180.996L217.742 181.381L217.462 181.73L216.902 182.429L215.782 183.828L215.223 184.527C215.048 184.772 214.838 185.016 214.663 185.226L213.473 186.554C212.668 187.463 211.898 188.372 211.023 189.211C210.184 190.05 209.344 190.924 208.469 191.763L205.809 194.175C205.389 194.595 204.9 194.944 204.445 195.329L203.045 196.447C199.301 199.419 195.346 202.146 191.217 204.523C187.088 206.9 182.854 209.102 178.48 210.99C177.92 211.235 177.395 211.479 176.835 211.724L175.19 212.388C174.071 212.843 172.986 213.297 171.866 213.717L168.507 214.94L167.667 215.255L166.827 215.534L165.147 216.094C162.908 216.863 160.633 217.527 158.359 218.226C157.204 218.576 156.084 218.855 154.929 219.17L153.215 219.624L151.5 220.044L148.036 220.883L144.571 221.652L142.822 222.037L141.072 222.386L137.573 223.085L134.073 223.714L132.324 224.029L130.574 224.309L127.075 224.868L123.541 225.358C114.162 226.651 104.714 227.42 95.266 227.909C76.3697 228.853 57.4034 228.469 38.5421 227.175C29.094 226.511 19.7158 225.637 10.3026 224.519C5.61355 223.959 0.924467 223.365 -3.76462 222.701C-8.48869 221.967 -13.1428 221.232 -17.7969 220.393Z' fill='%232A3143'/%3E%3Cpath d='M-9.46875 236.857C8.79768 238.885 27.1341 239.968 45.5055 240.143C54.6737 240.248 63.8419 240.143 73.0101 239.759C77.5942 239.584 82.1783 239.304 86.7274 239.025C91.3115 238.675 95.8606 238.325 100.41 237.836C101.565 237.731 102.684 237.591 103.839 237.451L107.268 237.067C109.543 236.752 111.818 236.508 114.092 236.158C118.641 235.529 123.155 234.76 127.634 233.956C136.628 232.243 145.551 230.18 154.264 227.454C156.469 226.824 158.603 226.055 160.773 225.321L163.992 224.168L165.602 223.573L167.177 222.944C171.446 221.301 175.61 219.448 179.669 217.421C187.823 213.366 195.556 208.471 202.415 202.529C205.879 199.592 209.064 196.341 211.968 192.88C213.473 191.167 214.767 189.315 216.097 187.532L217.952 184.7L218.407 184.001L218.827 183.267L219.666 181.799L220.506 180.33C220.786 179.841 220.996 179.317 221.276 178.827L222.781 175.786L225.825 169.564C226.07 169.039 226.315 168.515 226.595 168.025L227.435 166.522L229.115 163.481C229.674 162.467 230.199 161.453 230.794 160.44L232.614 157.503C242.167 141.702 254.345 127.474 268.377 115.484C275.376 109.471 282.829 103.983 290.598 99.0538C298.366 94.1247 306.484 89.6851 314.778 85.7349C323.106 81.8196 331.645 78.3238 340.253 75.1777C344.557 73.5696 348.896 72.0664 353.235 70.5283C355.405 69.7592 357.574 68.9901 359.709 68.1861L361.319 67.5568C361.844 67.3471 362.369 67.1373 362.893 66.8926C363.418 66.6479 363.943 66.4382 364.468 66.1585L365.973 65.3545L364.468 66.2284C363.978 66.5081 363.453 66.7528 362.928 66.9975C362.404 67.2422 361.879 67.4869 361.354 67.6967L359.779 68.3958C357.644 69.2698 355.51 70.1088 353.375 70.9128C349.071 72.5558 344.767 74.1289 340.498 75.8069C331.959 79.1278 323.526 82.7984 315.303 86.8535C298.891 94.9637 283.354 104.927 269.602 116.987C262.743 123 256.339 129.537 250.425 136.528C244.512 143.485 239.263 150.966 234.574 158.797L232.789 161.733C232.229 162.712 231.704 163.726 231.144 164.739L229.5 167.746L228.695 169.249C228.415 169.738 228.205 170.263 227.925 170.787L224.95 176.94L223.411 180.051C223.166 180.575 222.886 181.1 222.641 181.624L221.766 183.127L220.891 184.63L220.471 185.399L219.981 186.133L218.057 189.07C216.657 190.958 215.327 192.845 213.788 194.628C210.813 198.194 207.524 201.55 203.99 204.556C196.921 210.639 189.012 215.603 180.719 219.728C176.555 221.79 172.321 223.678 168.017 225.321L166.407 225.95L164.762 226.545L161.508 227.698C159.303 228.397 157.134 229.166 154.894 229.796C146.041 232.487 137.048 234.515 127.984 236.193C118.921 237.836 109.753 239.025 100.585 239.898C82.2483 241.646 63.8069 241.996 45.4355 241.507C36.2323 241.227 27.0641 240.737 17.8959 240.003C8.76269 239.129 -0.370529 238.186 -9.46875 236.857Z' fill='%232A3143'/%3E%3Cpath d='M-1.14062 253.359C3.30351 253.709 7.78263 253.918 12.2618 254.093C16.7409 254.268 21.185 254.408 25.6641 254.478C34.5874 254.618 43.5456 254.548 52.4689 254.198C61.3922 253.919 70.3154 253.394 79.2037 252.59C88.0919 251.786 96.9452 250.807 105.763 249.444C114.582 248.116 123.33 246.403 132.008 244.375C140.652 242.278 149.225 239.831 157.588 236.789C159.688 236.055 161.753 235.216 163.817 234.412C164.832 233.993 165.882 233.573 166.897 233.119L168.436 232.489L169.941 231.79C174 230.007 177.954 227.98 181.839 225.847C189.572 221.548 196.886 216.479 203.359 210.466C206.649 207.495 209.623 204.244 212.388 200.818L213.402 199.524L213.927 198.895L214.417 198.231L216.342 195.539C217.532 193.686 218.756 191.869 219.771 189.911C220.821 188.023 221.941 185.996 223.026 184.038L224.67 181.102C224.915 180.612 225.23 180.123 225.51 179.633L226.385 178.2L228.135 175.334C228.729 174.39 229.289 173.411 229.954 172.502L233.733 166.909C244.196 152.296 256.864 139.222 271.281 128.49C278.49 123.107 286.048 118.282 293.922 113.948C301.795 109.648 309.914 105.803 318.172 102.377C326.465 98.9858 334.864 95.9445 343.332 92.9731C347.531 91.5049 351.765 90.0366 355.93 88.4286C356.979 88.044 357.994 87.6245 359.044 87.205C360.094 86.8205 361.109 86.3661 362.123 85.9116C363.173 85.4921 364.153 84.9678 365.168 84.4784C365.693 84.2337 366.148 83.954 366.637 83.7093L368.107 82.9053L366.672 83.7792C366.183 84.0589 365.728 84.3735 365.203 84.6182C364.223 85.1426 363.243 85.6669 362.193 86.1214C361.179 86.5758 360.164 87.0652 359.149 87.5197C358.134 87.9392 357.084 88.4286 356.07 88.8131C351.94 90.4911 347.741 92.0292 343.542 93.6023C335.179 96.7136 326.815 99.9297 318.662 103.495C302.285 110.592 286.573 119.226 272.436 130.028C265.367 135.412 258.719 141.355 252.56 147.752C246.401 154.149 240.732 161.036 235.623 168.272L231.914 173.795C231.284 174.704 230.724 175.683 230.129 176.627L228.415 179.459L227.54 180.892C227.26 181.381 226.945 181.836 226.7 182.325L225.09 185.227L221.871 191.099C220.821 193.092 219.561 195.015 218.336 196.902L216.377 199.664L215.887 200.363L215.362 201.027L214.312 202.356C211.478 205.887 208.398 209.243 205.039 212.284C198.39 218.401 190.902 223.575 182.993 227.945C179.039 230.112 175.015 232.14 170.886 233.958L169.346 234.657L167.771 235.321C166.722 235.74 165.707 236.195 164.657 236.614C162.557 237.418 160.458 238.257 158.358 238.992C141.422 245.004 123.785 248.85 106.043 251.367C88.3019 253.884 70.3854 255.107 52.5039 255.422C43.5456 255.562 34.6224 255.457 25.6641 255.142C16.7059 254.792 7.74764 254.268 -1.14062 253.359Z' fill='%232A3143'/%3E%3Cpath d='M7.19141 269.824C11.5306 269.964 15.9047 269.964 20.2439 269.894C24.583 269.859 28.9572 269.754 33.2963 269.614C41.9746 269.3 50.6879 268.775 59.3312 268.041C63.6704 267.692 67.9745 267.237 72.3137 266.783C76.6178 266.293 80.957 265.769 85.2611 265.14C89.5653 264.545 93.8695 263.881 98.1386 263.147C102.408 262.413 106.677 261.609 110.946 260.735C127.918 257.204 144.715 252.52 160.671 245.808C162.666 245.004 164.626 244.095 166.62 243.221L169.56 241.823L171.029 241.124L172.464 240.39C176.348 238.467 180.093 236.334 183.767 234.097C187.476 231.86 191.01 229.413 194.44 226.791C197.869 224.204 201.124 221.373 204.203 218.401C207.317 215.43 210.187 212.214 212.811 208.858L213.791 207.599L214.281 206.97L214.736 206.306L216.59 203.684C217.745 201.866 218.865 200.083 220.02 198.196C221.175 196.343 222.329 194.455 223.519 192.637L227.228 187.219C227.823 186.31 228.488 185.436 229.153 184.562L231.113 181.94L232.092 180.612L232.582 179.948L233.107 179.318L235.207 176.801C240.806 170.055 246.895 163.727 253.438 157.924L255.923 155.792L257.183 154.708L257.812 154.184L258.442 153.659L261.032 151.632L262.327 150.618C262.746 150.268 263.201 149.954 263.621 149.639L266.281 147.717L267.611 146.738C268.065 146.423 268.485 146.109 268.94 145.794L271.67 143.976L273.034 143.067L273.699 142.613L274.399 142.193C281.783 137.474 289.446 133.279 297.355 129.608C305.263 125.903 313.347 122.652 321.535 119.646C329.723 116.674 338.017 113.982 346.205 111.081C350.299 109.648 354.394 108.144 358.418 106.466C362.442 104.789 366.396 103.006 370.105 100.733C366.431 103.076 362.512 105.033 358.558 106.816C354.569 108.599 350.509 110.172 346.45 111.71C338.297 114.751 330.073 117.653 321.99 120.764C305.753 126.952 289.936 134.293 275.449 143.801C268.205 148.556 261.312 153.834 254.908 159.602C248.469 165.37 242.52 171.663 237.026 178.34C231.568 185.051 226.494 192.078 222.084 199.489C220.965 201.307 219.775 203.195 218.585 205.047L216.695 207.774L216.206 208.438L215.716 209.102L214.701 210.396C212.006 213.857 209.067 217.178 205.883 220.219C202.698 223.26 199.374 226.162 195.875 228.784C192.375 231.44 188.736 233.922 184.992 236.195C181.247 238.467 177.398 240.634 173.479 242.557L172.009 243.291L170.539 243.99L167.565 245.388C165.57 246.262 163.576 247.171 161.546 247.975C153.463 251.331 145.169 254.128 136.771 256.54C132.572 257.729 128.338 258.847 124.104 259.861C119.834 260.84 115.6 261.784 111.296 262.623C94.1494 265.979 76.8278 268.076 59.4362 269.265C50.7229 269.824 42.0446 270.174 33.3313 270.313C28.9921 270.383 24.618 270.383 20.2789 270.313C15.9047 270.208 11.5306 270.104 7.19141 269.824Z' fill='%232A3143'/%3E%3Cpath d='M15.5156 286.324C32.4523 285.694 49.354 284.051 66.1507 281.639C74.5491 280.416 82.8774 279.017 91.2058 277.374C99.4992 275.696 107.758 273.844 115.946 271.641C132.288 267.272 148.35 261.818 163.572 254.547C165.496 253.673 167.351 252.694 169.241 251.75C171.095 250.772 172.985 249.793 174.804 248.744C176.659 247.73 178.444 246.647 180.263 245.563C181.173 245.004 182.048 244.444 182.923 243.885L184.253 243.046L185.547 242.172C189.047 239.865 192.441 237.348 195.695 234.726C198.985 232.104 202.099 229.273 205.039 226.301L206.158 225.183C206.543 224.798 206.893 224.448 207.243 224.064L209.378 221.757C210.078 220.988 210.742 220.149 211.407 219.38C212.107 218.576 212.737 217.772 213.367 216.933C214.697 215.29 215.851 213.577 217.076 211.864L220.75 206.62C225.754 199.733 231.213 193.126 237.127 186.974C238.632 185.471 240.137 183.932 241.676 182.464L246.4 178.129L251.299 174.004C252.979 172.676 254.659 171.383 256.339 170.054C263.162 164.915 270.371 160.336 277.894 156.281C285.418 152.261 293.186 148.73 301.095 145.619C309.003 142.508 317.052 139.746 325.1 137.089L337.208 133.139C339.237 132.475 341.232 131.776 343.227 131.111L346.236 130.063L347.741 129.538L349.245 128.979L352.22 127.86L355.159 126.707L356.629 126.112L358.099 125.483C359.078 125.064 360.058 124.644 361.003 124.225C364.852 122.477 368.632 120.554 372.271 118.387C368.702 120.659 364.957 122.721 361.143 124.574C360.198 125.029 359.218 125.448 358.239 125.903L356.804 126.567L355.334 127.196L352.395 128.42L349.42 129.608L347.951 130.202L346.446 130.762L343.471 131.88C341.477 132.58 339.482 133.349 337.488 134.048L325.485 138.243C317.472 141.004 309.493 143.906 301.69 147.122C293.886 150.338 286.188 153.904 278.804 157.994C264.037 166.174 250.425 176.417 238.842 188.652C233.033 194.734 227.679 201.271 222.745 208.088L219.106 213.262C217.881 215.01 216.656 216.793 215.327 218.471C214.662 219.31 214.032 220.184 213.332 220.988C212.632 221.792 211.967 222.631 211.267 223.435L209.098 225.812C208.748 226.196 208.363 226.581 207.978 226.965L206.858 228.119C203.814 231.16 200.629 234.027 197.305 236.684C193.981 239.375 190.516 241.892 186.947 244.235L185.617 245.108L184.253 245.947C183.343 246.507 182.433 247.101 181.523 247.66C179.669 248.744 177.849 249.863 175.994 250.877C174.14 251.925 172.25 252.904 170.36 253.918C168.436 254.862 166.546 255.84 164.621 256.714C156.923 260.35 148.98 263.496 140.931 266.293C136.907 267.691 132.848 268.985 128.788 270.208C124.694 271.397 120.6 272.55 116.471 273.599C99.9891 277.794 83.2274 280.8 66.3607 282.933C57.9273 283.981 49.494 284.785 41.0256 285.415C32.4873 285.904 24.019 286.324 15.5156 286.324Z' fill='%232A3143'/%3E%3Cpath d='M23.8438 302.824C27.9729 302.439 32.0671 301.915 36.1613 301.356C40.2555 300.796 44.3497 300.202 48.4439 299.538C56.5974 298.209 64.7508 296.706 72.8342 294.958C76.8934 294.084 80.9176 293.21 84.9418 292.267C88.966 291.323 92.9552 290.309 96.9445 289.225C100.934 288.177 104.923 287.023 108.877 285.869C112.831 284.716 116.786 283.457 120.705 282.164C136.347 276.955 151.709 270.768 166.231 263.007C169.87 261.049 173.44 259.057 176.939 256.889C178.688 255.841 180.403 254.687 182.153 253.603C183.867 252.45 185.582 251.331 187.227 250.108C188.907 248.954 190.551 247.695 192.196 246.437C193.806 245.144 195.415 243.92 196.99 242.557C198.565 241.263 200.069 239.865 201.609 238.502C203.079 237.103 204.583 235.705 206.018 234.237C207.488 232.803 208.853 231.265 210.217 229.762L212.212 227.42L212.702 226.826L213.192 226.231L214.137 225.043L218.021 220.184L219.98 217.737C220.645 216.933 221.345 216.164 222.01 215.36L224.04 212.982L225.054 211.794L226.104 210.64C227.539 209.137 228.939 207.599 230.373 206.096L234.818 201.726C236.322 200.293 237.897 198.929 239.437 197.531C245.7 192.043 252.419 187.079 259.453 182.639C262.987 180.402 266.591 178.339 270.266 176.382C271.175 175.857 272.12 175.438 273.03 174.948L275.83 173.55C277.719 172.641 279.609 171.802 281.498 170.928C289.092 167.572 296.895 164.706 304.769 162.084C312.642 159.462 320.586 157.12 328.494 154.673C336.403 152.261 344.276 149.744 351.975 146.737L354.844 145.584L356.279 144.99L357.714 144.36L360.548 143.102C361.493 142.682 362.403 142.193 363.347 141.774L364.747 141.109L365.447 140.76L366.147 140.41L368.876 138.977C369.786 138.522 370.696 137.998 371.571 137.474L374.265 135.936L371.641 137.579C370.766 138.138 369.891 138.697 368.981 139.187L366.287 140.725L365.622 141.109L364.922 141.459L363.557 142.158C362.648 142.612 361.703 143.102 360.793 143.556L357.993 144.885L356.594 145.549L355.159 146.178L352.29 147.402C344.626 150.583 336.788 153.275 328.914 155.896C313.167 161.035 297.35 165.894 282.338 172.746C274.85 176.172 267.571 180.052 260.642 184.492C253.714 188.931 247.135 193.896 240.976 199.314L238.702 201.376C237.932 202.076 237.162 202.74 236.427 203.474L232.053 207.809C230.618 209.277 229.254 210.815 227.819 212.283L226.769 213.402L225.754 214.556L223.76 216.898C223.095 217.667 222.395 218.436 221.765 219.24L219.84 221.652L215.991 226.511L215.011 227.735L214.521 228.364L213.997 228.958L211.967 231.335C210.567 232.873 209.168 234.446 207.663 235.915C206.228 237.418 204.688 238.816 203.149 240.284C201.574 241.683 200.034 243.081 198.425 244.409C196.85 245.773 195.17 247.031 193.561 248.325C191.881 249.583 190.236 250.842 188.522 252.03C186.842 253.254 185.092 254.407 183.378 255.561C181.628 256.68 179.878 257.833 178.094 258.882C174.559 261.049 170.92 263.077 167.246 265.035C159.897 268.915 152.304 272.376 144.64 275.522C140.791 277.095 136.907 278.563 133.022 279.996C129.103 281.395 125.184 282.723 121.23 283.982C105.413 289.05 89.281 293.001 73.0091 296.147C64.8557 297.685 56.7023 299.048 48.4789 300.167C40.3605 301.286 32.1021 302.23 23.8438 302.824Z' fill='%232A3143'/%3E%3Cpath d='M32.1758 319.288C48.0627 316.317 63.8096 312.472 79.3116 307.962C94.8485 303.487 110.141 298.314 125.118 292.301C140.06 286.253 154.722 279.402 168.614 271.256C175.543 267.166 182.331 262.797 188.77 258.007C191.99 255.595 195.139 253.113 198.183 250.526C201.228 247.905 204.202 245.213 207.037 242.381L208.086 241.333L209.136 240.249C209.836 239.515 210.536 238.816 211.201 238.082L215.26 233.607L217.325 231.335C218.024 230.566 218.689 229.831 219.389 229.097L223.658 224.728C229.467 219.03 235.661 213.716 242.24 208.927C248.818 204.138 255.782 199.873 263.026 196.167C264.81 195.188 266.665 194.349 268.52 193.475L269.884 192.811C270.339 192.602 270.829 192.392 271.284 192.182L274.083 190.958C275.028 190.539 275.973 190.189 276.918 189.805L279.752 188.686C281.642 187.952 283.567 187.288 285.456 186.589C293.12 183.897 300.888 181.59 308.692 179.387C316.495 177.185 324.299 175.088 331.997 172.746C339.731 170.403 347.359 167.816 354.813 164.67L356.212 164.076L357.577 163.447L360.342 162.223C361.286 161.839 362.161 161.349 363.071 160.93L365.801 159.601C367.585 158.693 369.37 157.714 371.155 156.77L376.404 153.729L371.259 156.945C369.51 157.923 367.76 158.972 365.976 159.951L363.281 161.349C362.371 161.804 361.496 162.293 360.587 162.713L357.857 164.006L356.492 164.67L355.093 165.3C347.709 168.586 340.081 171.382 332.382 173.934C316.985 178.933 301.273 182.883 286.121 188.442C278.563 191.203 271.144 194.384 264.04 198.09C256.902 201.795 250.078 206.06 243.639 210.814C237.201 215.569 231.077 220.847 225.373 226.476L221.174 230.775C220.474 231.474 219.809 232.244 219.109 232.978L217.08 235.215L213.02 239.725C212.356 240.494 211.621 241.193 210.921 241.962L209.871 243.08L208.786 244.164C205.917 247.066 202.872 249.792 199.793 252.414C196.714 255.071 193.494 257.553 190.205 260C186.951 262.447 183.591 264.719 180.197 266.957C176.802 269.194 173.338 271.291 169.804 273.354C155.737 281.499 140.969 288.316 125.852 294.189C118.294 297.125 110.665 299.852 102.967 302.334C95.2684 304.816 87.5 307.123 79.6615 309.22C71.823 311.318 63.9496 313.206 56.0411 314.919C52.0869 315.793 48.1327 316.597 44.1434 317.331C40.1892 317.995 36.2 318.694 32.1758 319.288Z' fill='%232A3143'/%3E%3Cpath d='M40.5 335.788C55.722 331.419 70.7341 326.315 85.5362 320.687C92.9198 317.89 100.268 314.954 107.547 311.842C111.186 310.304 114.79 308.696 118.43 307.088L123.819 304.606C124.729 304.187 125.603 303.767 126.513 303.348L129.173 302.089L131.832 300.831L134.492 299.502C136.241 298.628 138.026 297.754 139.776 296.845L145.025 294.119L146.354 293.454L147.649 292.755L150.239 291.357C151.988 290.413 153.703 289.469 155.418 288.491L160.562 285.554C163.921 283.492 167.35 281.534 170.675 279.367L173.159 277.793L174.419 276.989L175.644 276.15L180.543 272.864C182.152 271.746 183.762 270.592 185.372 269.439L187.786 267.726L190.131 265.943L192.475 264.16C193.245 263.566 194.05 262.971 194.785 262.342L199.369 258.602C200.139 258.007 200.874 257.308 201.608 256.679L203.813 254.721L206.018 252.764L208.152 250.701L216.726 242.451C218.195 241.088 219.7 239.794 221.17 238.466L222.289 237.452C222.674 237.138 223.059 236.823 223.444 236.508L225.754 234.586C231.913 229.517 238.421 224.867 245.28 220.812C252.139 216.722 259.347 213.226 266.731 210.29C274.114 207.319 281.743 204.907 289.406 202.844C304.733 198.649 320.27 195.538 335.317 190.749C342.841 188.406 350.294 185.645 357.503 182.429C361.107 180.821 364.677 179.073 368.176 177.255L370.8 175.857L372.095 175.157L372.76 174.808L373.39 174.423L378.534 171.417L373.495 174.563L372.865 174.948L372.235 175.332L370.94 176.066L368.351 177.535C364.887 179.457 361.352 181.275 357.783 182.988C350.609 186.379 343.226 189.315 335.702 191.867C328.179 194.419 320.515 196.517 312.852 198.544C305.188 200.572 297.49 202.494 289.896 204.662C288.007 205.221 286.117 205.78 284.227 206.34L281.393 207.249C280.448 207.563 279.503 207.843 278.593 208.158L275.794 209.136C275.339 209.311 274.849 209.451 274.394 209.626L272.995 210.15L270.23 211.199C269.32 211.549 268.41 211.933 267.501 212.283C260.222 215.254 253.153 218.75 246.435 222.805C239.716 226.86 233.277 231.439 227.223 236.438L224.949 238.326C224.564 238.641 224.179 238.955 223.829 239.27L222.744 240.249C221.275 241.577 219.805 242.871 218.37 244.199L214.136 248.324L209.832 252.449L207.662 254.512L205.423 256.504L203.183 258.497C202.448 259.161 201.713 259.825 200.909 260.454L196.29 264.23C195.52 264.859 194.715 265.453 193.945 266.048L191.565 267.865L189.186 269.683L186.771 271.431C185.162 272.585 183.552 273.738 181.907 274.857L176.938 278.178L175.714 279.017L174.454 279.821L171.934 281.394C168.575 283.526 165.146 285.519 161.716 287.547L156.537 290.448C154.823 291.427 153.073 292.371 151.288 293.28L148.664 294.678L147.334 295.377L146.004 296.041L140.685 298.733C138.901 299.607 137.116 300.481 135.331 301.32L132.637 302.613L129.943 303.872C122.734 307.228 115.455 310.374 108.107 313.345C100.758 316.317 93.3397 319.148 85.8861 321.84C78.3976 324.497 70.9091 326.979 63.3155 329.356C59.5363 330.51 55.722 331.663 51.9428 332.747C48.1985 333.796 44.3492 334.844 40.5 335.788Z' fill='%232A3143'/%3E%3Cpath d='M48.8633 352.254C63.2455 346.311 77.4177 339.879 91.38 333.097C105.377 326.35 119.165 319.184 132.742 311.633L137.816 308.767C139.496 307.823 141.175 306.809 142.855 305.865L145.374 304.397L147.894 302.929C149.574 301.95 151.253 300.971 152.898 299.957C159.547 295.937 166.09 291.777 172.529 287.477C178.968 283.143 185.302 278.703 191.53 274.054C197.724 269.369 203.743 264.545 209.587 259.441C215.501 254.337 221.659 249.478 228.133 245.109C234.607 240.739 241.431 236.789 248.534 233.503C255.638 230.182 263.021 227.49 270.545 225.322C272.4 224.763 274.289 224.274 276.179 223.749L277.579 223.365L279.013 223.015L281.848 222.316C283.737 221.862 285.662 221.442 287.552 221.023L293.255 219.799C300.884 218.226 308.513 216.688 316.071 214.94C323.63 213.192 331.118 211.2 338.467 208.718C345.815 206.271 353.059 203.404 360.057 200.083C361.842 199.314 363.557 198.37 365.271 197.531L367.861 196.238L370.415 194.839L372.97 193.441C373.39 193.196 373.845 192.987 374.265 192.742L375.524 192.008L380.563 189.071C367.511 197.531 353.514 204.627 338.817 209.871C331.468 212.493 323.944 214.625 316.386 216.513C308.827 218.401 301.199 219.974 293.605 221.652C286.012 223.33 278.488 225.113 271.07 227.35C263.651 229.587 256.408 232.279 249.444 235.6C242.48 238.886 235.762 242.766 229.393 247.101C222.989 251.436 216.935 256.26 211.092 261.294C205.178 266.398 199.089 271.257 192.86 275.976C189.711 278.283 186.596 280.591 183.377 282.828C180.193 285.1 176.938 287.233 173.719 289.4C167.175 293.665 160.596 297.79 153.878 301.775C147.159 305.76 140.405 309.606 133.547 313.311C126.688 317.017 119.794 320.617 112.831 324.078C105.867 327.539 98.8335 330.895 91.7649 334.146C84.6963 337.397 77.5577 340.508 70.3841 343.55C66.8148 345.053 63.2105 346.556 59.6062 348.024C56.1069 349.492 52.5026 350.926 48.8633 352.254Z' fill='%232A3143'/%3E%3Cpath d='M57.1914 368.753C70.4538 361.062 83.6462 353.302 96.7337 345.296C109.821 337.361 122.804 329.251 135.716 321.001C148.629 312.751 161.401 304.291 173.999 295.622L183.447 289.084L192.79 282.408C195.939 280.205 198.949 277.898 202.028 275.626C205.107 273.353 208.152 271.046 211.266 268.774C217.495 264.229 223.969 260.035 230.792 256.364C237.581 252.693 244.685 249.547 251.998 247.065C259.312 244.583 266.835 242.696 274.359 241.227C278.138 240.458 281.917 239.829 285.697 239.2L297.035 237.417C304.593 236.228 312.117 234.865 319.57 233.152C327.024 231.439 334.337 229.307 341.546 226.72C348.754 224.168 355.788 221.162 362.647 217.806L367.756 215.219C368.631 214.799 369.435 214.345 370.275 213.855L372.795 212.492L375.314 211.129C376.154 210.674 376.959 210.15 377.799 209.695L382.768 206.794C376.329 210.919 369.75 214.869 362.927 218.4C356.103 221.931 349.104 225.112 341.931 227.838C334.757 230.565 327.374 232.837 319.92 234.69C312.467 236.543 304.908 237.976 297.349 239.27C289.791 240.598 282.232 241.787 274.744 243.325C267.255 244.863 259.872 246.751 252.698 249.268C245.525 251.785 238.561 254.861 231.877 258.496C225.194 262.132 218.825 266.292 212.666 270.767C209.587 273.004 206.507 275.276 203.428 277.583C200.348 279.856 197.269 282.163 194.12 284.365L184.741 291.042L175.258 297.544C173.684 298.628 172.109 299.712 170.499 300.76L165.705 303.941L160.911 307.123L158.497 308.696L156.082 310.269L146.424 316.491L136.696 322.609C123.678 330.719 110.556 338.62 97.2936 346.345L87.3205 352.078C83.9962 353.966 80.6718 355.854 77.3125 357.741L72.3084 360.538L67.2694 363.335C63.9451 365.118 60.5507 366.97 57.1914 368.753Z' fill='%232A3143'/%3E%3Cpath d='M65.5234 385.253C89.2838 366.446 113.464 348.128 137.994 330.335C150.242 321.42 162.629 312.646 175.087 304.011C178.201 301.844 181.316 299.677 184.465 297.579L193.878 291.217C200.212 287.057 206.476 282.757 212.985 278.807L217.954 275.94C219.633 275.032 221.348 274.158 223.028 273.284C223.448 273.074 223.867 272.829 224.287 272.619L225.582 272.025L228.172 270.802C229.886 269.963 231.671 269.264 233.421 268.494C240.489 265.558 247.803 263.251 255.256 261.573C262.71 259.895 270.268 258.846 277.827 258.007C285.385 257.168 292.909 256.504 300.397 255.525C307.886 254.546 315.34 253.253 322.653 251.47C330.002 249.687 337.21 247.415 344.244 244.723L346.868 243.709C347.743 243.36 348.653 243.045 349.493 242.661L354.707 240.423C355.582 240.074 356.422 239.619 357.296 239.235L359.851 238.011L362.405 236.788L364.925 235.494C366.605 234.62 368.319 233.781 369.964 232.907L374.933 230.181C375.773 229.726 376.613 229.272 377.417 228.817L379.867 227.384L384.766 224.518C378.362 228.573 371.924 232.593 365.205 236.124L362.72 237.487L360.166 238.78L357.611 240.039C356.771 240.458 355.932 240.913 355.057 241.297L349.878 243.674C349.038 244.094 348.128 244.409 347.253 244.793L344.629 245.877C337.595 248.708 330.352 251.155 322.968 253.078C315.62 255.001 308.096 256.399 300.572 257.483C296.793 258.042 293.049 258.462 289.27 258.916C285.49 259.335 281.746 259.755 277.967 260.209C270.478 261.118 262.99 262.202 255.676 263.915C248.363 265.628 241.189 267.9 234.26 270.802C232.546 271.536 230.796 272.235 229.116 273.074L226.562 274.297L225.302 274.892C224.882 275.101 224.462 275.311 224.042 275.556C222.398 276.43 220.718 277.304 219.073 278.213L214.174 281.044C207.736 284.925 201.472 289.189 195.138 293.349C188.839 297.579 182.576 301.774 176.312 306.074C170.048 310.304 163.819 314.639 157.59 318.973L148.282 325.511C145.168 327.678 142.088 329.88 139.009 332.048C126.656 340.822 114.339 349.631 102.091 358.546L92.8881 365.222L83.7199 371.934L65.5234 385.253Z' fill='%232A3143'/%3E%3Cpath d='M73.8516 401.719C76.3711 398.923 78.9256 396.161 81.5151 393.434C84.1046 390.707 86.729 388.016 89.3885 385.324C94.6725 379.975 100.096 374.732 105.555 369.523C111.049 364.349 116.613 359.281 122.282 354.317C127.951 349.318 133.725 344.493 139.534 339.704C142.438 337.327 145.413 334.985 148.352 332.643C151.326 330.336 154.301 328.028 157.345 325.791C160.355 323.519 163.434 321.316 166.478 319.114C169.558 316.947 172.637 314.744 175.787 312.647C177.361 311.598 178.901 310.514 180.476 309.501L185.235 306.424C188.419 304.432 191.639 302.404 194.893 300.482C196.503 299.503 198.112 298.524 199.792 297.615C201.437 296.671 203.081 295.727 204.726 294.818L209.73 292.162C210.15 291.952 210.57 291.707 210.99 291.497L212.285 290.868L214.839 289.645C221.698 286.394 228.766 283.597 236.08 281.465C243.358 279.332 250.882 277.864 258.405 276.99C265.929 276.116 273.523 275.836 281.011 275.522C288.535 275.207 296.023 274.858 303.477 273.984C318.349 272.306 332.976 268.39 346.868 262.727C360.796 257.134 374.093 249.933 387.005 242.207L382.246 245.213L379.867 246.717L378.677 247.486L377.452 248.22L372.588 251.086C371.783 251.541 370.979 252.065 370.139 252.485L367.654 253.848C366.009 254.757 364.365 255.666 362.685 256.54L357.646 259.092C355.966 259.966 354.252 260.735 352.537 261.539L349.983 262.727C349.563 262.937 349.143 263.112 348.688 263.322L347.393 263.881L342.144 266.048L336.825 268.006C335.95 268.355 335.041 268.635 334.131 268.915L331.436 269.789C329.652 270.418 327.832 270.872 326.012 271.432C318.734 273.494 311.28 274.962 303.757 275.906C288.71 277.934 273.558 277.479 258.72 279.297C251.302 280.206 243.953 281.639 236.815 283.737C229.676 285.834 222.712 288.631 215.959 291.847L213.439 293.071L212.18 293.665C211.76 293.875 211.34 294.084 210.955 294.329L205.986 296.951C204.341 297.86 202.731 298.804 201.087 299.713C199.442 300.621 197.832 301.6 196.223 302.544C192.968 304.432 189.819 306.459 186.635 308.417L181.91 311.458C181.141 311.983 180.336 312.472 179.566 312.996L177.221 314.57C174.072 316.632 171.028 318.799 167.913 320.932C164.869 323.099 161.789 325.267 158.78 327.539C152.726 331.978 146.742 336.558 140.863 341.242C129.106 350.611 117.628 360.364 106.5 370.467C95.1974 380.5 84.3145 390.917 73.8516 401.719Z' fill='%232A3143'/%3E%3Cpath d='M82.1797 418.219C84.1743 415.038 86.2389 411.892 88.3735 408.816C90.5081 405.739 92.7476 402.698 94.9872 399.657C99.5013 393.644 104.19 387.736 109.054 381.968C113.918 376.235 118.957 370.642 124.171 365.189C125.501 363.825 126.761 362.462 128.126 361.133L132.15 357.148L136.244 353.233C136.909 352.569 137.609 351.94 138.309 351.31L140.408 349.388C146.007 344.319 151.711 339.425 157.695 334.775C163.679 330.161 169.803 325.756 176.101 321.596C182.435 317.506 188.979 313.696 195.697 310.2C202.451 306.774 209.345 303.663 216.448 301.006L221.837 299.153L227.296 297.545C229.116 297.056 230.971 296.636 232.825 296.182C233.28 296.042 233.735 295.972 234.225 295.867L235.625 295.588L238.424 295.028C245.913 293.7 253.506 293.141 261.065 293.071C268.623 293.001 276.147 293.385 283.67 293.525C291.159 293.63 298.647 293.49 306.066 292.616C313.484 291.777 320.833 290.239 328.042 288.212C335.25 286.149 342.284 283.527 349.177 280.626L354.321 278.389C355.196 278.039 356.036 277.619 356.876 277.2L359.43 275.976C362.86 274.403 366.149 272.62 369.508 270.908C371.188 270.069 372.798 269.125 374.443 268.216L379.377 265.489C382.631 263.601 385.85 261.679 389.105 259.791C385.92 261.784 382.771 263.811 379.552 265.804L374.688 268.67C373.078 269.614 371.468 270.593 369.788 271.502C366.499 273.32 363.21 275.172 359.815 276.815L357.296 278.109C356.456 278.528 355.616 278.983 354.776 279.367L349.632 281.744C342.739 284.786 335.705 287.547 328.462 289.75C321.218 291.917 313.799 293.525 306.276 294.504C305.821 294.574 305.331 294.644 304.876 294.679L303.476 294.819L300.642 295.098L297.808 295.308C296.863 295.378 295.918 295.448 294.973 295.483C291.194 295.623 287.415 295.693 283.635 295.658C276.077 295.588 268.588 295.273 261.1 295.378C253.611 295.483 246.158 296.007 238.844 297.371L236.115 297.93L234.75 298.21C234.295 298.314 233.84 298.384 233.385 298.489C231.565 298.944 229.781 299.363 227.961 299.853L222.607 301.461L217.323 303.278C210.325 305.865 203.501 308.942 196.817 312.298C190.169 315.723 183.695 319.499 177.396 323.519C171.097 327.574 164.973 331.909 159.025 336.453L154.616 339.914C153.146 341.068 151.711 342.291 150.276 343.48C148.807 344.668 147.407 345.892 145.972 347.115L143.838 348.933C143.138 349.527 142.438 350.192 141.738 350.786L139.638 352.674C138.939 353.303 138.239 353.932 137.574 354.561L133.445 358.407L129.385 362.322C128.056 363.615 126.726 364.979 125.396 366.272C120.112 371.586 115.003 377.074 110.034 382.702C99.9912 393.994 90.613 405.775 82.1797 418.219Z' fill='%232A3143'/%3E%3Cpath d='M90.5078 434.683C91.9075 431.187 93.4822 427.726 95.1269 424.336C96.7716 420.945 98.5212 417.589 100.341 414.268C103.945 407.626 107.864 401.159 112.029 394.831C120.392 382.246 129.84 370.291 140.478 359.489C145.797 354.105 151.431 348.967 157.31 344.177L161.789 340.682C163.294 339.528 164.868 338.444 166.408 337.326C167.913 336.172 169.522 335.158 171.132 334.11L173.512 332.537L174.106 332.152L174.701 331.802L175.926 331.068C182.365 327.048 189.224 323.622 196.222 320.651L198.847 319.567L200.176 319.008L200.841 318.728L201.506 318.484L206.86 316.526C207.735 316.176 208.645 315.932 209.555 315.617L212.284 314.778L213.649 314.359L214.314 314.149C214.559 314.079 214.769 314.009 215.013 313.974L217.778 313.24C225.161 311.317 232.72 310.024 240.314 309.534C247.942 309.01 255.571 309.29 263.129 310.024C270.688 310.723 278.176 311.702 285.665 312.121C293.153 312.541 300.677 312.436 308.095 311.527C315.549 310.618 322.862 308.94 330.036 306.738L332.73 305.934C333.64 305.654 334.515 305.304 335.39 305.025L338.049 304.081C338.924 303.766 339.834 303.487 340.709 303.102L345.958 301.005C346.378 300.83 346.833 300.655 347.253 300.48L348.547 299.921L351.137 298.767L353.726 297.649C354.146 297.474 354.601 297.264 355.021 297.089L356.281 296.46L361.39 294.013C363.105 293.209 364.749 292.335 366.429 291.461L371.433 288.839C374.722 287.022 378.012 285.169 381.336 283.316L391.099 277.583L381.511 283.666C378.257 285.588 375.002 287.511 371.748 289.434L366.779 292.16C365.134 293.069 363.489 294.013 361.775 294.852L356.736 297.439L355.476 298.068C355.056 298.278 354.636 298.488 354.181 298.662L351.592 299.851L349.002 301.04L347.708 301.634C347.288 301.844 346.833 302.018 346.413 302.193L341.164 304.396C340.289 304.78 339.414 305.095 338.504 305.409L335.845 306.388C334.97 306.703 334.06 307.052 333.185 307.367L330.491 308.241C323.282 310.583 315.864 312.401 308.305 313.415L305.471 313.764L304.036 313.939C303.546 314.009 303.091 314.009 302.601 314.044L299.767 314.254C299.277 314.289 298.822 314.324 298.332 314.359L296.897 314.393L294.028 314.463C293.083 314.498 292.138 314.463 291.159 314.428C290.214 314.393 289.269 314.428 288.289 314.393L285.455 314.254C277.861 313.904 270.338 312.925 262.849 312.331C255.361 311.667 247.872 311.387 240.383 311.911C232.93 312.401 225.546 313.694 218.303 315.617L215.573 316.316C215.363 316.386 215.118 316.421 214.908 316.491L214.244 316.701L212.914 317.12L210.219 317.959C209.31 318.239 208.435 318.484 207.56 318.833L202.276 320.721L201.611 320.966L200.946 321.245L199.651 321.77L197.062 322.853C190.168 325.79 183.45 329.146 177.046 333.061L175.821 333.76L175.226 334.11L174.631 334.494L172.287 336.032C170.712 337.046 169.137 338.06 167.598 339.179C166.058 340.262 164.518 341.346 163.014 342.465L158.57 345.89C152.691 350.575 147.092 355.574 141.738 360.852C136.384 366.131 131.345 371.759 126.551 377.527C121.757 383.33 117.208 389.343 112.903 395.53C108.599 401.718 104.54 408.08 100.796 414.617C98.9062 417.868 97.1215 421.189 95.3719 424.545C93.6922 427.866 92.0125 431.257 90.5078 434.683Z' fill='%232A3143'/%3E%3Cpath d='M98.832 451.184C100.512 443.738 102.856 436.466 105.516 429.3C108.175 422.134 111.22 415.142 114.614 408.29C121.473 394.622 129.801 381.653 139.914 370.082C144.953 364.314 150.412 358.86 156.361 353.966C159.335 351.519 162.38 349.177 165.529 346.975C168.678 344.807 171.968 342.745 175.292 340.822C182.011 337.047 189.079 333.9 196.358 331.453L199.087 330.544L201.852 329.74L204.616 328.936L206.016 328.552C206.471 328.412 206.961 328.342 207.416 328.202L213.015 326.874L218.684 325.825C226.277 324.602 234.011 324.077 241.744 324.392C249.443 324.706 257.071 325.895 264.595 327.293C272.118 328.692 279.572 330.16 287.095 330.859C294.619 331.558 302.212 331.383 309.701 330.37C317.189 329.356 324.573 327.503 331.781 325.196C335.351 323.937 338.955 322.749 342.489 321.281L345.149 320.232L346.479 319.708C346.934 319.533 347.353 319.323 347.773 319.148L352.987 316.841C366.88 310.619 380.142 303.033 393.23 295.202L383.571 301.32C382.767 301.844 381.927 302.299 381.122 302.788L378.672 304.256L373.738 307.193C372.933 307.682 372.094 308.137 371.254 308.591L368.734 309.989L363.73 312.751L358.621 315.373C356.907 316.247 355.227 317.156 353.477 317.925L348.263 320.337C347.843 320.547 347.388 320.756 346.969 320.931L345.639 321.49L342.979 322.609C339.48 324.147 335.841 325.406 332.271 326.734C324.993 329.181 317.539 331.139 309.946 332.292C309.001 332.432 308.056 332.607 307.076 332.712L304.207 332.991L302.772 333.131L302.037 333.201L301.302 333.236L298.398 333.341L296.963 333.411C296.473 333.411 295.984 333.411 295.529 333.411L292.624 333.376H291.889L291.154 333.341L289.72 333.271C288.775 333.201 287.795 333.166 286.85 333.096C279.187 332.432 271.628 330.999 264.14 329.671C256.651 328.342 249.163 327.154 241.604 326.874C234.046 326.594 226.522 327.119 219.069 328.342C211.615 329.496 204.266 331.523 197.058 333.795C189.884 336.173 182.956 339.249 176.342 342.919C163.114 350.261 151.357 360.119 141.244 371.375C136.17 377.003 131.551 383.051 127.281 389.308C123.012 395.566 119.128 402.138 115.594 408.85C112.059 415.562 108.84 422.483 106.041 429.545C104.641 433.075 103.311 436.641 102.086 440.242C100.932 443.842 99.7768 447.478 98.832 451.184Z' fill='%232A3143'/%3E%3Cpath d='M107.164 467.684C107.794 459.958 109.124 452.302 110.803 444.751C112.518 437.2 114.618 429.719 117.207 422.413C119.797 415.107 122.876 407.941 126.445 401.019C130.015 394.132 134.144 387.49 138.903 381.268C143.627 375.08 148.946 369.277 154.86 364.174C160.774 359.07 167.282 354.595 174.246 351.03C177.71 349.212 181.315 347.604 184.989 346.275C185.899 345.926 186.843 345.611 187.753 345.296C188.698 344.982 189.608 344.632 190.553 344.388L193.352 343.549L196.187 342.814C203.745 340.927 211.479 339.563 219.282 338.969C227.086 338.375 234.959 338.654 242.728 339.808C250.496 340.927 258.055 342.954 265.508 345.017C269.252 346.065 272.962 347.044 276.706 347.918C280.45 348.792 284.229 349.456 288.009 349.911C295.602 350.785 303.301 350.645 310.894 349.491C318.488 348.338 325.941 346.345 333.22 343.828C336.859 342.57 340.463 341.206 344.033 339.738C347.602 338.27 351.136 336.697 354.636 335.089C361.634 331.803 368.528 328.272 375.282 324.532C378.676 322.679 382.035 320.756 385.395 318.798C387.074 317.82 388.754 316.876 390.399 315.862L395.368 312.891L390.469 316.037C388.824 317.086 387.179 318.099 385.535 319.113C382.245 321.141 378.921 323.133 375.562 325.091C368.878 328.971 362.054 332.712 355.126 336.172C351.626 337.85 348.127 339.528 344.558 341.067C340.988 342.605 337.384 344.038 333.71 345.366C330.07 346.695 326.326 347.883 322.582 348.897C318.803 349.911 314.988 350.785 311.139 351.379C307.29 352.008 303.371 352.393 299.451 352.498C295.532 352.603 291.613 352.463 287.694 352.043C283.81 351.624 279.925 350.925 276.146 350.086C272.332 349.247 268.587 348.233 264.843 347.254C257.355 345.227 249.936 343.234 242.343 342.15C234.749 341.032 227.086 340.787 219.422 341.381C211.794 341.941 204.165 343.234 196.712 345.087L193.947 345.786L191.183 346.59C190.273 346.835 189.363 347.184 188.453 347.464C187.543 347.778 186.634 348.058 185.759 348.408C182.154 349.701 178.655 351.274 175.261 353.022C168.437 356.483 162.033 360.783 156.189 365.747C153.25 368.229 150.486 370.886 147.861 373.647C145.202 376.409 142.717 379.345 140.338 382.352C135.614 388.399 131.449 394.901 127.81 401.683C124.136 408.465 120.986 415.492 118.292 422.728C115.562 429.929 113.288 437.34 111.398 444.821C110.453 448.562 109.649 452.337 108.914 456.147C108.214 459.993 107.584 463.838 107.164 467.684Z' fill='%232A3143'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_725_27714'%3E%3Crect width='412' height='385' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: 412px 385px;
    background-position: right 0% bottom 0%;
    background-repeat: no-repeat;
}

.bg_page_header_perf_poligraf{
    background-image: url("data:image/svg+xml,%3Csvg width='412' height='385' viewBox='0 0 412 385' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.15' clip-path='url(%23clip0_725_27714)'%3E%3Cpath d='M-26.125 203.893C-21.3659 204.802 -16.5719 205.571 -11.7778 206.34C-6.98374 207.074 -2.18968 207.773 2.63938 208.402C12.2625 209.661 21.9206 210.745 31.5787 211.584C41.2368 212.423 50.9299 213.087 60.623 213.471C70.3162 213.856 80.0093 213.996 89.7024 213.821C109.054 213.401 128.44 211.863 147.371 207.913C156.819 205.92 166.162 203.403 175.156 199.908C184.114 196.447 192.757 192.042 200.491 186.414C208.224 180.786 215.013 173.829 220.017 165.719C222.536 161.664 224.566 157.329 226.176 152.855C227.82 148.275 229.605 143.696 231.565 139.256C235.554 130.342 240.208 121.742 245.597 113.562C248.291 109.472 251.126 105.522 254.1 101.641C257.11 97.7961 260.259 94.0906 263.548 90.455C270.127 83.2537 277.231 76.5418 284.789 70.3892C292.348 64.2367 300.326 58.6085 308.62 53.5396C312.784 50.9877 317.018 48.6106 321.322 46.3383C325.626 44.0661 330 41.9336 334.445 39.9411C343.298 35.9559 352.396 32.4601 361.774 29.9082C357.12 31.2716 352.536 32.9495 348.057 34.7323C343.543 36.5152 339.099 38.4379 334.724 40.5353C330.35 42.5978 326.011 44.8351 321.777 47.1423C317.543 49.4845 313.379 51.9665 309.284 54.5534C292.943 64.9009 277.896 77.3458 264.983 91.7484C252.071 106.116 241.433 122.476 233.699 140.165C231.775 144.604 230.025 149.079 228.415 153.624C226.771 158.273 224.636 162.748 222.047 166.977C216.868 175.402 209.869 182.639 201.925 188.407C193.947 194.21 185.129 198.649 175.995 202.18C166.862 205.676 157.379 208.263 147.826 210.22C138.273 212.178 128.58 213.471 118.887 214.345C114.023 214.765 109.159 215.114 104.33 215.359C99.4655 215.569 94.6014 215.709 89.7374 215.743C70.2812 215.953 50.825 214.8 31.4737 212.807C21.8156 211.793 12.1575 210.535 2.56939 209.067C-7.05373 207.598 -16.6419 205.92 -26.125 203.893Z' fill='%232A3143'/%3E%3Cpath d='M-17.7969 220.393C-13.1428 221.128 -8.4537 221.722 -3.76462 222.316C0.924467 222.875 5.61355 223.4 10.3026 223.854C19.6808 224.763 29.094 225.497 38.5421 225.952C47.9553 226.441 57.4034 226.721 66.8166 226.756C76.2297 226.791 85.6779 226.546 95.0911 225.987C99.7801 225.672 104.504 225.357 109.158 224.868C111.503 224.658 113.847 224.379 116.192 224.134L119.691 223.68C120.846 223.54 122.036 223.4 123.191 223.225L126.69 222.736L130.189 222.176L131.939 221.897L133.689 221.582L137.153 220.953L140.617 220.254L142.332 219.904L144.046 219.52L147.476 218.75L150.905 217.877L152.62 217.457L154.299 216.968C155.419 216.653 156.574 216.338 157.694 216.024C159.933 215.325 162.173 214.695 164.413 213.891L166.092 213.332L166.932 213.052L167.772 212.738L171.061 211.514C172.146 211.095 173.231 210.64 174.316 210.186L175.925 209.522C176.45 209.277 177.01 209.032 177.535 208.822C181.839 206.97 185.968 204.802 190.028 202.46C194.087 200.118 197.901 197.461 201.54 194.56L202.905 193.476C203.36 193.126 203.815 192.742 204.235 192.357L206.824 190.015C207.664 189.211 208.469 188.372 209.309 187.568C210.149 186.764 210.883 185.89 211.688 185.016L212.843 183.723C213.053 183.513 213.228 183.268 213.403 183.059L213.928 182.359L215.013 180.996L215.538 180.297L215.817 179.947L216.062 179.598L218.057 176.731L218.302 176.382L218.512 175.997L218.967 175.263L219.877 173.76L220.332 173.026C220.472 172.781 220.647 172.536 220.751 172.257L221.556 170.719C222.081 169.67 222.676 168.691 223.096 167.607L224.496 164.426L225.86 161.14C227.715 156.77 229.71 152.471 231.914 148.241C236.323 139.851 241.362 131.741 247.066 124.155C249.901 120.344 252.875 116.639 256.025 113.073C259.139 109.508 262.428 106.082 265.823 102.761C272.611 96.1537 279.89 90.0361 287.588 84.4779C295.287 78.9196 303.3 73.8856 311.629 69.3761C319.957 64.8665 328.565 60.8814 337.314 57.3856C341.688 55.6028 346.132 53.9597 350.576 52.3866L357.26 50.0794C358.38 49.6949 359.499 49.3104 360.619 48.9258C361.739 48.5063 362.859 48.1218 363.874 47.5625C362.859 48.1568 361.739 48.5763 360.654 49.0307C359.569 49.4502 358.45 49.8697 357.33 50.2892L350.681 52.7712C346.272 54.4142 341.863 56.1621 337.524 58.0148C328.845 61.7203 320.342 65.8454 312.154 70.4598C303.93 75.0742 296.022 80.178 288.463 85.8062C280.905 91.4344 273.766 97.5171 267.082 104.159C253.75 117.408 242.447 132.65 233.909 149.324C231.774 153.484 229.78 157.749 227.96 162.049L226.63 165.3L225.196 168.586C224.741 169.705 224.146 170.754 223.621 171.802L222.781 173.41C222.641 173.69 222.501 173.935 222.326 174.179L221.871 174.948L220.961 176.487L220.507 177.256L220.262 177.64L220.017 178.025L217.987 180.996L217.742 181.381L217.462 181.73L216.902 182.429L215.782 183.828L215.223 184.527C215.048 184.772 214.838 185.016 214.663 185.226L213.473 186.554C212.668 187.463 211.898 188.372 211.023 189.211C210.184 190.05 209.344 190.924 208.469 191.763L205.809 194.175C205.389 194.595 204.9 194.944 204.445 195.329L203.045 196.447C199.301 199.419 195.346 202.146 191.217 204.523C187.088 206.9 182.854 209.102 178.48 210.99C177.92 211.235 177.395 211.479 176.835 211.724L175.19 212.388C174.071 212.843 172.986 213.297 171.866 213.717L168.507 214.94L167.667 215.255L166.827 215.534L165.147 216.094C162.908 216.863 160.633 217.527 158.359 218.226C157.204 218.576 156.084 218.855 154.929 219.17L153.215 219.624L151.5 220.044L148.036 220.883L144.571 221.652L142.822 222.037L141.072 222.386L137.573 223.085L134.073 223.714L132.324 224.029L130.574 224.309L127.075 224.868L123.541 225.358C114.162 226.651 104.714 227.42 95.266 227.909C76.3697 228.853 57.4034 228.469 38.5421 227.175C29.094 226.511 19.7158 225.637 10.3026 224.519C5.61355 223.959 0.924467 223.365 -3.76462 222.701C-8.48869 221.967 -13.1428 221.232 -17.7969 220.393Z' fill='%232A3143'/%3E%3Cpath d='M-9.46875 236.857C8.79768 238.885 27.1341 239.968 45.5055 240.143C54.6737 240.248 63.8419 240.143 73.0101 239.759C77.5942 239.584 82.1783 239.304 86.7274 239.025C91.3115 238.675 95.8606 238.325 100.41 237.836C101.565 237.731 102.684 237.591 103.839 237.451L107.268 237.067C109.543 236.752 111.818 236.508 114.092 236.158C118.641 235.529 123.155 234.76 127.634 233.956C136.628 232.243 145.551 230.18 154.264 227.454C156.469 226.824 158.603 226.055 160.773 225.321L163.992 224.168L165.602 223.573L167.177 222.944C171.446 221.301 175.61 219.448 179.669 217.421C187.823 213.366 195.556 208.471 202.415 202.529C205.879 199.592 209.064 196.341 211.968 192.88C213.473 191.167 214.767 189.315 216.097 187.532L217.952 184.7L218.407 184.001L218.827 183.267L219.666 181.799L220.506 180.33C220.786 179.841 220.996 179.317 221.276 178.827L222.781 175.786L225.825 169.564C226.07 169.039 226.315 168.515 226.595 168.025L227.435 166.522L229.115 163.481C229.674 162.467 230.199 161.453 230.794 160.44L232.614 157.503C242.167 141.702 254.345 127.474 268.377 115.484C275.376 109.471 282.829 103.983 290.598 99.0538C298.366 94.1247 306.484 89.6851 314.778 85.7349C323.106 81.8196 331.645 78.3238 340.253 75.1777C344.557 73.5696 348.896 72.0664 353.235 70.5283C355.405 69.7592 357.574 68.9901 359.709 68.1861L361.319 67.5568C361.844 67.3471 362.369 67.1373 362.893 66.8926C363.418 66.6479 363.943 66.4382 364.468 66.1585L365.973 65.3545L364.468 66.2284C363.978 66.5081 363.453 66.7528 362.928 66.9975C362.404 67.2422 361.879 67.4869 361.354 67.6967L359.779 68.3958C357.644 69.2698 355.51 70.1088 353.375 70.9128C349.071 72.5558 344.767 74.1289 340.498 75.8069C331.959 79.1278 323.526 82.7984 315.303 86.8535C298.891 94.9637 283.354 104.927 269.602 116.987C262.743 123 256.339 129.537 250.425 136.528C244.512 143.485 239.263 150.966 234.574 158.797L232.789 161.733C232.229 162.712 231.704 163.726 231.144 164.739L229.5 167.746L228.695 169.249C228.415 169.738 228.205 170.263 227.925 170.787L224.95 176.94L223.411 180.051C223.166 180.575 222.886 181.1 222.641 181.624L221.766 183.127L220.891 184.63L220.471 185.399L219.981 186.133L218.057 189.07C216.657 190.958 215.327 192.845 213.788 194.628C210.813 198.194 207.524 201.55 203.99 204.556C196.921 210.639 189.012 215.603 180.719 219.728C176.555 221.79 172.321 223.678 168.017 225.321L166.407 225.95L164.762 226.545L161.508 227.698C159.303 228.397 157.134 229.166 154.894 229.796C146.041 232.487 137.048 234.515 127.984 236.193C118.921 237.836 109.753 239.025 100.585 239.898C82.2483 241.646 63.8069 241.996 45.4355 241.507C36.2323 241.227 27.0641 240.737 17.8959 240.003C8.76269 239.129 -0.370529 238.186 -9.46875 236.857Z' fill='%232A3143'/%3E%3Cpath d='M-1.14062 253.359C3.30351 253.709 7.78263 253.918 12.2618 254.093C16.7409 254.268 21.185 254.408 25.6641 254.478C34.5874 254.618 43.5456 254.548 52.4689 254.198C61.3922 253.919 70.3154 253.394 79.2037 252.59C88.0919 251.786 96.9452 250.807 105.763 249.444C114.582 248.116 123.33 246.403 132.008 244.375C140.652 242.278 149.225 239.831 157.588 236.789C159.688 236.055 161.753 235.216 163.817 234.412C164.832 233.993 165.882 233.573 166.897 233.119L168.436 232.489L169.941 231.79C174 230.007 177.954 227.98 181.839 225.847C189.572 221.548 196.886 216.479 203.359 210.466C206.649 207.495 209.623 204.244 212.388 200.818L213.402 199.524L213.927 198.895L214.417 198.231L216.342 195.539C217.532 193.686 218.756 191.869 219.771 189.911C220.821 188.023 221.941 185.996 223.026 184.038L224.67 181.102C224.915 180.612 225.23 180.123 225.51 179.633L226.385 178.2L228.135 175.334C228.729 174.39 229.289 173.411 229.954 172.502L233.733 166.909C244.196 152.296 256.864 139.222 271.281 128.49C278.49 123.107 286.048 118.282 293.922 113.948C301.795 109.648 309.914 105.803 318.172 102.377C326.465 98.9858 334.864 95.9445 343.332 92.9731C347.531 91.5049 351.765 90.0366 355.93 88.4286C356.979 88.044 357.994 87.6245 359.044 87.205C360.094 86.8205 361.109 86.3661 362.123 85.9116C363.173 85.4921 364.153 84.9678 365.168 84.4784C365.693 84.2337 366.148 83.954 366.637 83.7093L368.107 82.9053L366.672 83.7792C366.183 84.0589 365.728 84.3735 365.203 84.6182C364.223 85.1426 363.243 85.6669 362.193 86.1214C361.179 86.5758 360.164 87.0652 359.149 87.5197C358.134 87.9392 357.084 88.4286 356.07 88.8131C351.94 90.4911 347.741 92.0292 343.542 93.6023C335.179 96.7136 326.815 99.9297 318.662 103.495C302.285 110.592 286.573 119.226 272.436 130.028C265.367 135.412 258.719 141.355 252.56 147.752C246.401 154.149 240.732 161.036 235.623 168.272L231.914 173.795C231.284 174.704 230.724 175.683 230.129 176.627L228.415 179.459L227.54 180.892C227.26 181.381 226.945 181.836 226.7 182.325L225.09 185.227L221.871 191.099C220.821 193.092 219.561 195.015 218.336 196.902L216.377 199.664L215.887 200.363L215.362 201.027L214.312 202.356C211.478 205.887 208.398 209.243 205.039 212.284C198.39 218.401 190.902 223.575 182.993 227.945C179.039 230.112 175.015 232.14 170.886 233.958L169.346 234.657L167.771 235.321C166.722 235.74 165.707 236.195 164.657 236.614C162.557 237.418 160.458 238.257 158.358 238.992C141.422 245.004 123.785 248.85 106.043 251.367C88.3019 253.884 70.3854 255.107 52.5039 255.422C43.5456 255.562 34.6224 255.457 25.6641 255.142C16.7059 254.792 7.74764 254.268 -1.14062 253.359Z' fill='%232A3143'/%3E%3Cpath d='M7.19141 269.824C11.5306 269.964 15.9047 269.964 20.2439 269.894C24.583 269.859 28.9572 269.754 33.2963 269.614C41.9746 269.3 50.6879 268.775 59.3312 268.041C63.6704 267.692 67.9745 267.237 72.3137 266.783C76.6178 266.293 80.957 265.769 85.2611 265.14C89.5653 264.545 93.8695 263.881 98.1386 263.147C102.408 262.413 106.677 261.609 110.946 260.735C127.918 257.204 144.715 252.52 160.671 245.808C162.666 245.004 164.626 244.095 166.62 243.221L169.56 241.823L171.029 241.124L172.464 240.39C176.348 238.467 180.093 236.334 183.767 234.097C187.476 231.86 191.01 229.413 194.44 226.791C197.869 224.204 201.124 221.373 204.203 218.401C207.317 215.43 210.187 212.214 212.811 208.858L213.791 207.599L214.281 206.97L214.736 206.306L216.59 203.684C217.745 201.866 218.865 200.083 220.02 198.196C221.175 196.343 222.329 194.455 223.519 192.637L227.228 187.219C227.823 186.31 228.488 185.436 229.153 184.562L231.113 181.94L232.092 180.612L232.582 179.948L233.107 179.318L235.207 176.801C240.806 170.055 246.895 163.727 253.438 157.924L255.923 155.792L257.183 154.708L257.812 154.184L258.442 153.659L261.032 151.632L262.327 150.618C262.746 150.268 263.201 149.954 263.621 149.639L266.281 147.717L267.611 146.738C268.065 146.423 268.485 146.109 268.94 145.794L271.67 143.976L273.034 143.067L273.699 142.613L274.399 142.193C281.783 137.474 289.446 133.279 297.355 129.608C305.263 125.903 313.347 122.652 321.535 119.646C329.723 116.674 338.017 113.982 346.205 111.081C350.299 109.648 354.394 108.144 358.418 106.466C362.442 104.789 366.396 103.006 370.105 100.733C366.431 103.076 362.512 105.033 358.558 106.816C354.569 108.599 350.509 110.172 346.45 111.71C338.297 114.751 330.073 117.653 321.99 120.764C305.753 126.952 289.936 134.293 275.449 143.801C268.205 148.556 261.312 153.834 254.908 159.602C248.469 165.37 242.52 171.663 237.026 178.34C231.568 185.051 226.494 192.078 222.084 199.489C220.965 201.307 219.775 203.195 218.585 205.047L216.695 207.774L216.206 208.438L215.716 209.102L214.701 210.396C212.006 213.857 209.067 217.178 205.883 220.219C202.698 223.26 199.374 226.162 195.875 228.784C192.375 231.44 188.736 233.922 184.992 236.195C181.247 238.467 177.398 240.634 173.479 242.557L172.009 243.291L170.539 243.99L167.565 245.388C165.57 246.262 163.576 247.171 161.546 247.975C153.463 251.331 145.169 254.128 136.771 256.54C132.572 257.729 128.338 258.847 124.104 259.861C119.834 260.84 115.6 261.784 111.296 262.623C94.1494 265.979 76.8278 268.076 59.4362 269.265C50.7229 269.824 42.0446 270.174 33.3313 270.313C28.9921 270.383 24.618 270.383 20.2789 270.313C15.9047 270.208 11.5306 270.104 7.19141 269.824Z' fill='%232A3143'/%3E%3Cpath d='M15.5156 286.324C32.4523 285.694 49.354 284.051 66.1507 281.639C74.5491 280.416 82.8774 279.017 91.2058 277.374C99.4992 275.696 107.758 273.844 115.946 271.641C132.288 267.272 148.35 261.818 163.572 254.547C165.496 253.673 167.351 252.694 169.241 251.75C171.095 250.772 172.985 249.793 174.804 248.744C176.659 247.73 178.444 246.647 180.263 245.563C181.173 245.004 182.048 244.444 182.923 243.885L184.253 243.046L185.547 242.172C189.047 239.865 192.441 237.348 195.695 234.726C198.985 232.104 202.099 229.273 205.039 226.301L206.158 225.183C206.543 224.798 206.893 224.448 207.243 224.064L209.378 221.757C210.078 220.988 210.742 220.149 211.407 219.38C212.107 218.576 212.737 217.772 213.367 216.933C214.697 215.29 215.851 213.577 217.076 211.864L220.75 206.62C225.754 199.733 231.213 193.126 237.127 186.974C238.632 185.471 240.137 183.932 241.676 182.464L246.4 178.129L251.299 174.004C252.979 172.676 254.659 171.383 256.339 170.054C263.162 164.915 270.371 160.336 277.894 156.281C285.418 152.261 293.186 148.73 301.095 145.619C309.003 142.508 317.052 139.746 325.1 137.089L337.208 133.139C339.237 132.475 341.232 131.776 343.227 131.111L346.236 130.063L347.741 129.538L349.245 128.979L352.22 127.86L355.159 126.707L356.629 126.112L358.099 125.483C359.078 125.064 360.058 124.644 361.003 124.225C364.852 122.477 368.632 120.554 372.271 118.387C368.702 120.659 364.957 122.721 361.143 124.574C360.198 125.029 359.218 125.448 358.239 125.903L356.804 126.567L355.334 127.196L352.395 128.42L349.42 129.608L347.951 130.202L346.446 130.762L343.471 131.88C341.477 132.58 339.482 133.349 337.488 134.048L325.485 138.243C317.472 141.004 309.493 143.906 301.69 147.122C293.886 150.338 286.188 153.904 278.804 157.994C264.037 166.174 250.425 176.417 238.842 188.652C233.033 194.734 227.679 201.271 222.745 208.088L219.106 213.262C217.881 215.01 216.656 216.793 215.327 218.471C214.662 219.31 214.032 220.184 213.332 220.988C212.632 221.792 211.967 222.631 211.267 223.435L209.098 225.812C208.748 226.196 208.363 226.581 207.978 226.965L206.858 228.119C203.814 231.16 200.629 234.027 197.305 236.684C193.981 239.375 190.516 241.892 186.947 244.235L185.617 245.108L184.253 245.947C183.343 246.507 182.433 247.101 181.523 247.66C179.669 248.744 177.849 249.863 175.994 250.877C174.14 251.925 172.25 252.904 170.36 253.918C168.436 254.862 166.546 255.84 164.621 256.714C156.923 260.35 148.98 263.496 140.931 266.293C136.907 267.691 132.848 268.985 128.788 270.208C124.694 271.397 120.6 272.55 116.471 273.599C99.9891 277.794 83.2274 280.8 66.3607 282.933C57.9273 283.981 49.494 284.785 41.0256 285.415C32.4873 285.904 24.019 286.324 15.5156 286.324Z' fill='%232A3143'/%3E%3Cpath d='M23.8438 302.824C27.9729 302.439 32.0671 301.915 36.1613 301.356C40.2555 300.796 44.3497 300.202 48.4439 299.538C56.5974 298.209 64.7508 296.706 72.8342 294.958C76.8934 294.084 80.9176 293.21 84.9418 292.267C88.966 291.323 92.9552 290.309 96.9445 289.225C100.934 288.177 104.923 287.023 108.877 285.869C112.831 284.716 116.786 283.457 120.705 282.164C136.347 276.955 151.709 270.768 166.231 263.007C169.87 261.049 173.44 259.057 176.939 256.889C178.688 255.841 180.403 254.687 182.153 253.603C183.867 252.45 185.582 251.331 187.227 250.108C188.907 248.954 190.551 247.695 192.196 246.437C193.806 245.144 195.415 243.92 196.99 242.557C198.565 241.263 200.069 239.865 201.609 238.502C203.079 237.103 204.583 235.705 206.018 234.237C207.488 232.803 208.853 231.265 210.217 229.762L212.212 227.42L212.702 226.826L213.192 226.231L214.137 225.043L218.021 220.184L219.98 217.737C220.645 216.933 221.345 216.164 222.01 215.36L224.04 212.982L225.054 211.794L226.104 210.64C227.539 209.137 228.939 207.599 230.373 206.096L234.818 201.726C236.322 200.293 237.897 198.929 239.437 197.531C245.7 192.043 252.419 187.079 259.453 182.639C262.987 180.402 266.591 178.339 270.266 176.382C271.175 175.857 272.12 175.438 273.03 174.948L275.83 173.55C277.719 172.641 279.609 171.802 281.498 170.928C289.092 167.572 296.895 164.706 304.769 162.084C312.642 159.462 320.586 157.12 328.494 154.673C336.403 152.261 344.276 149.744 351.975 146.737L354.844 145.584L356.279 144.99L357.714 144.36L360.548 143.102C361.493 142.682 362.403 142.193 363.347 141.774L364.747 141.109L365.447 140.76L366.147 140.41L368.876 138.977C369.786 138.522 370.696 137.998 371.571 137.474L374.265 135.936L371.641 137.579C370.766 138.138 369.891 138.697 368.981 139.187L366.287 140.725L365.622 141.109L364.922 141.459L363.557 142.158C362.648 142.612 361.703 143.102 360.793 143.556L357.993 144.885L356.594 145.549L355.159 146.178L352.29 147.402C344.626 150.583 336.788 153.275 328.914 155.896C313.167 161.035 297.35 165.894 282.338 172.746C274.85 176.172 267.571 180.052 260.642 184.492C253.714 188.931 247.135 193.896 240.976 199.314L238.702 201.376C237.932 202.076 237.162 202.74 236.427 203.474L232.053 207.809C230.618 209.277 229.254 210.815 227.819 212.283L226.769 213.402L225.754 214.556L223.76 216.898C223.095 217.667 222.395 218.436 221.765 219.24L219.84 221.652L215.991 226.511L215.011 227.735L214.521 228.364L213.997 228.958L211.967 231.335C210.567 232.873 209.168 234.446 207.663 235.915C206.228 237.418 204.688 238.816 203.149 240.284C201.574 241.683 200.034 243.081 198.425 244.409C196.85 245.773 195.17 247.031 193.561 248.325C191.881 249.583 190.236 250.842 188.522 252.03C186.842 253.254 185.092 254.407 183.378 255.561C181.628 256.68 179.878 257.833 178.094 258.882C174.559 261.049 170.92 263.077 167.246 265.035C159.897 268.915 152.304 272.376 144.64 275.522C140.791 277.095 136.907 278.563 133.022 279.996C129.103 281.395 125.184 282.723 121.23 283.982C105.413 289.05 89.281 293.001 73.0091 296.147C64.8557 297.685 56.7023 299.048 48.4789 300.167C40.3605 301.286 32.1021 302.23 23.8438 302.824Z' fill='%232A3143'/%3E%3Cpath d='M32.1758 319.288C48.0627 316.317 63.8096 312.472 79.3116 307.962C94.8485 303.487 110.141 298.314 125.118 292.301C140.06 286.253 154.722 279.402 168.614 271.256C175.543 267.166 182.331 262.797 188.77 258.007C191.99 255.595 195.139 253.113 198.183 250.526C201.228 247.905 204.202 245.213 207.037 242.381L208.086 241.333L209.136 240.249C209.836 239.515 210.536 238.816 211.201 238.082L215.26 233.607L217.325 231.335C218.024 230.566 218.689 229.831 219.389 229.097L223.658 224.728C229.467 219.03 235.661 213.716 242.24 208.927C248.818 204.138 255.782 199.873 263.026 196.167C264.81 195.188 266.665 194.349 268.52 193.475L269.884 192.811C270.339 192.602 270.829 192.392 271.284 192.182L274.083 190.958C275.028 190.539 275.973 190.189 276.918 189.805L279.752 188.686C281.642 187.952 283.567 187.288 285.456 186.589C293.12 183.897 300.888 181.59 308.692 179.387C316.495 177.185 324.299 175.088 331.997 172.746C339.731 170.403 347.359 167.816 354.813 164.67L356.212 164.076L357.577 163.447L360.342 162.223C361.286 161.839 362.161 161.349 363.071 160.93L365.801 159.601C367.585 158.693 369.37 157.714 371.155 156.77L376.404 153.729L371.259 156.945C369.51 157.923 367.76 158.972 365.976 159.951L363.281 161.349C362.371 161.804 361.496 162.293 360.587 162.713L357.857 164.006L356.492 164.67L355.093 165.3C347.709 168.586 340.081 171.382 332.382 173.934C316.985 178.933 301.273 182.883 286.121 188.442C278.563 191.203 271.144 194.384 264.04 198.09C256.902 201.795 250.078 206.06 243.639 210.814C237.201 215.569 231.077 220.847 225.373 226.476L221.174 230.775C220.474 231.474 219.809 232.244 219.109 232.978L217.08 235.215L213.02 239.725C212.356 240.494 211.621 241.193 210.921 241.962L209.871 243.08L208.786 244.164C205.917 247.066 202.872 249.792 199.793 252.414C196.714 255.071 193.494 257.553 190.205 260C186.951 262.447 183.591 264.719 180.197 266.957C176.802 269.194 173.338 271.291 169.804 273.354C155.737 281.499 140.969 288.316 125.852 294.189C118.294 297.125 110.665 299.852 102.967 302.334C95.2684 304.816 87.5 307.123 79.6615 309.22C71.823 311.318 63.9496 313.206 56.0411 314.919C52.0869 315.793 48.1327 316.597 44.1434 317.331C40.1892 317.995 36.2 318.694 32.1758 319.288Z' fill='%232A3143'/%3E%3Cpath d='M40.5 335.788C55.722 331.419 70.7341 326.315 85.5362 320.687C92.9198 317.89 100.268 314.954 107.547 311.842C111.186 310.304 114.79 308.696 118.43 307.088L123.819 304.606C124.729 304.187 125.603 303.767 126.513 303.348L129.173 302.089L131.832 300.831L134.492 299.502C136.241 298.628 138.026 297.754 139.776 296.845L145.025 294.119L146.354 293.454L147.649 292.755L150.239 291.357C151.988 290.413 153.703 289.469 155.418 288.491L160.562 285.554C163.921 283.492 167.35 281.534 170.675 279.367L173.159 277.793L174.419 276.989L175.644 276.15L180.543 272.864C182.152 271.746 183.762 270.592 185.372 269.439L187.786 267.726L190.131 265.943L192.475 264.16C193.245 263.566 194.05 262.971 194.785 262.342L199.369 258.602C200.139 258.007 200.874 257.308 201.608 256.679L203.813 254.721L206.018 252.764L208.152 250.701L216.726 242.451C218.195 241.088 219.7 239.794 221.17 238.466L222.289 237.452C222.674 237.138 223.059 236.823 223.444 236.508L225.754 234.586C231.913 229.517 238.421 224.867 245.28 220.812C252.139 216.722 259.347 213.226 266.731 210.29C274.114 207.319 281.743 204.907 289.406 202.844C304.733 198.649 320.27 195.538 335.317 190.749C342.841 188.406 350.294 185.645 357.503 182.429C361.107 180.821 364.677 179.073 368.176 177.255L370.8 175.857L372.095 175.157L372.76 174.808L373.39 174.423L378.534 171.417L373.495 174.563L372.865 174.948L372.235 175.332L370.94 176.066L368.351 177.535C364.887 179.457 361.352 181.275 357.783 182.988C350.609 186.379 343.226 189.315 335.702 191.867C328.179 194.419 320.515 196.517 312.852 198.544C305.188 200.572 297.49 202.494 289.896 204.662C288.007 205.221 286.117 205.78 284.227 206.34L281.393 207.249C280.448 207.563 279.503 207.843 278.593 208.158L275.794 209.136C275.339 209.311 274.849 209.451 274.394 209.626L272.995 210.15L270.23 211.199C269.32 211.549 268.41 211.933 267.501 212.283C260.222 215.254 253.153 218.75 246.435 222.805C239.716 226.86 233.277 231.439 227.223 236.438L224.949 238.326C224.564 238.641 224.179 238.955 223.829 239.27L222.744 240.249C221.275 241.577 219.805 242.871 218.37 244.199L214.136 248.324L209.832 252.449L207.662 254.512L205.423 256.504L203.183 258.497C202.448 259.161 201.713 259.825 200.909 260.454L196.29 264.23C195.52 264.859 194.715 265.453 193.945 266.048L191.565 267.865L189.186 269.683L186.771 271.431C185.162 272.585 183.552 273.738 181.907 274.857L176.938 278.178L175.714 279.017L174.454 279.821L171.934 281.394C168.575 283.526 165.146 285.519 161.716 287.547L156.537 290.448C154.823 291.427 153.073 292.371 151.288 293.28L148.664 294.678L147.334 295.377L146.004 296.041L140.685 298.733C138.901 299.607 137.116 300.481 135.331 301.32L132.637 302.613L129.943 303.872C122.734 307.228 115.455 310.374 108.107 313.345C100.758 316.317 93.3397 319.148 85.8861 321.84C78.3976 324.497 70.9091 326.979 63.3155 329.356C59.5363 330.51 55.722 331.663 51.9428 332.747C48.1985 333.796 44.3492 334.844 40.5 335.788Z' fill='%232A3143'/%3E%3Cpath d='M48.8633 352.254C63.2455 346.311 77.4177 339.879 91.38 333.097C105.377 326.35 119.165 319.184 132.742 311.633L137.816 308.767C139.496 307.823 141.175 306.809 142.855 305.865L145.374 304.397L147.894 302.929C149.574 301.95 151.253 300.971 152.898 299.957C159.547 295.937 166.09 291.777 172.529 287.477C178.968 283.143 185.302 278.703 191.53 274.054C197.724 269.369 203.743 264.545 209.587 259.441C215.501 254.337 221.659 249.478 228.133 245.109C234.607 240.739 241.431 236.789 248.534 233.503C255.638 230.182 263.021 227.49 270.545 225.322C272.4 224.763 274.289 224.274 276.179 223.749L277.579 223.365L279.013 223.015L281.848 222.316C283.737 221.862 285.662 221.442 287.552 221.023L293.255 219.799C300.884 218.226 308.513 216.688 316.071 214.94C323.63 213.192 331.118 211.2 338.467 208.718C345.815 206.271 353.059 203.404 360.057 200.083C361.842 199.314 363.557 198.37 365.271 197.531L367.861 196.238L370.415 194.839L372.97 193.441C373.39 193.196 373.845 192.987 374.265 192.742L375.524 192.008L380.563 189.071C367.511 197.531 353.514 204.627 338.817 209.871C331.468 212.493 323.944 214.625 316.386 216.513C308.827 218.401 301.199 219.974 293.605 221.652C286.012 223.33 278.488 225.113 271.07 227.35C263.651 229.587 256.408 232.279 249.444 235.6C242.48 238.886 235.762 242.766 229.393 247.101C222.989 251.436 216.935 256.26 211.092 261.294C205.178 266.398 199.089 271.257 192.86 275.976C189.711 278.283 186.596 280.591 183.377 282.828C180.193 285.1 176.938 287.233 173.719 289.4C167.175 293.665 160.596 297.79 153.878 301.775C147.159 305.76 140.405 309.606 133.547 313.311C126.688 317.017 119.794 320.617 112.831 324.078C105.867 327.539 98.8335 330.895 91.7649 334.146C84.6963 337.397 77.5577 340.508 70.3841 343.55C66.8148 345.053 63.2105 346.556 59.6062 348.024C56.1069 349.492 52.5026 350.926 48.8633 352.254Z' fill='%232A3143'/%3E%3Cpath d='M57.1914 368.753C70.4538 361.062 83.6462 353.302 96.7337 345.296C109.821 337.361 122.804 329.251 135.716 321.001C148.629 312.751 161.401 304.291 173.999 295.622L183.447 289.084L192.79 282.408C195.939 280.205 198.949 277.898 202.028 275.626C205.107 273.353 208.152 271.046 211.266 268.774C217.495 264.229 223.969 260.035 230.792 256.364C237.581 252.693 244.685 249.547 251.998 247.065C259.312 244.583 266.835 242.696 274.359 241.227C278.138 240.458 281.917 239.829 285.697 239.2L297.035 237.417C304.593 236.228 312.117 234.865 319.57 233.152C327.024 231.439 334.337 229.307 341.546 226.72C348.754 224.168 355.788 221.162 362.647 217.806L367.756 215.219C368.631 214.799 369.435 214.345 370.275 213.855L372.795 212.492L375.314 211.129C376.154 210.674 376.959 210.15 377.799 209.695L382.768 206.794C376.329 210.919 369.75 214.869 362.927 218.4C356.103 221.931 349.104 225.112 341.931 227.838C334.757 230.565 327.374 232.837 319.92 234.69C312.467 236.543 304.908 237.976 297.349 239.27C289.791 240.598 282.232 241.787 274.744 243.325C267.255 244.863 259.872 246.751 252.698 249.268C245.525 251.785 238.561 254.861 231.877 258.496C225.194 262.132 218.825 266.292 212.666 270.767C209.587 273.004 206.507 275.276 203.428 277.583C200.348 279.856 197.269 282.163 194.12 284.365L184.741 291.042L175.258 297.544C173.684 298.628 172.109 299.712 170.499 300.76L165.705 303.941L160.911 307.123L158.497 308.696L156.082 310.269L146.424 316.491L136.696 322.609C123.678 330.719 110.556 338.62 97.2936 346.345L87.3205 352.078C83.9962 353.966 80.6718 355.854 77.3125 357.741L72.3084 360.538L67.2694 363.335C63.9451 365.118 60.5507 366.97 57.1914 368.753Z' fill='%232A3143'/%3E%3Cpath d='M65.5234 385.253C89.2838 366.446 113.464 348.128 137.994 330.335C150.242 321.42 162.629 312.646 175.087 304.011C178.201 301.844 181.316 299.677 184.465 297.579L193.878 291.217C200.212 287.057 206.476 282.757 212.985 278.807L217.954 275.94C219.633 275.032 221.348 274.158 223.028 273.284C223.448 273.074 223.867 272.829 224.287 272.619L225.582 272.025L228.172 270.802C229.886 269.963 231.671 269.264 233.421 268.494C240.489 265.558 247.803 263.251 255.256 261.573C262.71 259.895 270.268 258.846 277.827 258.007C285.385 257.168 292.909 256.504 300.397 255.525C307.886 254.546 315.34 253.253 322.653 251.47C330.002 249.687 337.21 247.415 344.244 244.723L346.868 243.709C347.743 243.36 348.653 243.045 349.493 242.661L354.707 240.423C355.582 240.074 356.422 239.619 357.296 239.235L359.851 238.011L362.405 236.788L364.925 235.494C366.605 234.62 368.319 233.781 369.964 232.907L374.933 230.181C375.773 229.726 376.613 229.272 377.417 228.817L379.867 227.384L384.766 224.518C378.362 228.573 371.924 232.593 365.205 236.124L362.72 237.487L360.166 238.78L357.611 240.039C356.771 240.458 355.932 240.913 355.057 241.297L349.878 243.674C349.038 244.094 348.128 244.409 347.253 244.793L344.629 245.877C337.595 248.708 330.352 251.155 322.968 253.078C315.62 255.001 308.096 256.399 300.572 257.483C296.793 258.042 293.049 258.462 289.27 258.916C285.49 259.335 281.746 259.755 277.967 260.209C270.478 261.118 262.99 262.202 255.676 263.915C248.363 265.628 241.189 267.9 234.26 270.802C232.546 271.536 230.796 272.235 229.116 273.074L226.562 274.297L225.302 274.892C224.882 275.101 224.462 275.311 224.042 275.556C222.398 276.43 220.718 277.304 219.073 278.213L214.174 281.044C207.736 284.925 201.472 289.189 195.138 293.349C188.839 297.579 182.576 301.774 176.312 306.074C170.048 310.304 163.819 314.639 157.59 318.973L148.282 325.511C145.168 327.678 142.088 329.88 139.009 332.048C126.656 340.822 114.339 349.631 102.091 358.546L92.8881 365.222L83.7199 371.934L65.5234 385.253Z' fill='%232A3143'/%3E%3Cpath d='M73.8516 401.719C76.3711 398.923 78.9256 396.161 81.5151 393.434C84.1046 390.707 86.729 388.016 89.3885 385.324C94.6725 379.975 100.096 374.732 105.555 369.523C111.049 364.349 116.613 359.281 122.282 354.317C127.951 349.318 133.725 344.493 139.534 339.704C142.438 337.327 145.413 334.985 148.352 332.643C151.326 330.336 154.301 328.028 157.345 325.791C160.355 323.519 163.434 321.316 166.478 319.114C169.558 316.947 172.637 314.744 175.787 312.647C177.361 311.598 178.901 310.514 180.476 309.501L185.235 306.424C188.419 304.432 191.639 302.404 194.893 300.482C196.503 299.503 198.112 298.524 199.792 297.615C201.437 296.671 203.081 295.727 204.726 294.818L209.73 292.162C210.15 291.952 210.57 291.707 210.99 291.497L212.285 290.868L214.839 289.645C221.698 286.394 228.766 283.597 236.08 281.465C243.358 279.332 250.882 277.864 258.405 276.99C265.929 276.116 273.523 275.836 281.011 275.522C288.535 275.207 296.023 274.858 303.477 273.984C318.349 272.306 332.976 268.39 346.868 262.727C360.796 257.134 374.093 249.933 387.005 242.207L382.246 245.213L379.867 246.717L378.677 247.486L377.452 248.22L372.588 251.086C371.783 251.541 370.979 252.065 370.139 252.485L367.654 253.848C366.009 254.757 364.365 255.666 362.685 256.54L357.646 259.092C355.966 259.966 354.252 260.735 352.537 261.539L349.983 262.727C349.563 262.937 349.143 263.112 348.688 263.322L347.393 263.881L342.144 266.048L336.825 268.006C335.95 268.355 335.041 268.635 334.131 268.915L331.436 269.789C329.652 270.418 327.832 270.872 326.012 271.432C318.734 273.494 311.28 274.962 303.757 275.906C288.71 277.934 273.558 277.479 258.72 279.297C251.302 280.206 243.953 281.639 236.815 283.737C229.676 285.834 222.712 288.631 215.959 291.847L213.439 293.071L212.18 293.665C211.76 293.875 211.34 294.084 210.955 294.329L205.986 296.951C204.341 297.86 202.731 298.804 201.087 299.713C199.442 300.621 197.832 301.6 196.223 302.544C192.968 304.432 189.819 306.459 186.635 308.417L181.91 311.458C181.141 311.983 180.336 312.472 179.566 312.996L177.221 314.57C174.072 316.632 171.028 318.799 167.913 320.932C164.869 323.099 161.789 325.267 158.78 327.539C152.726 331.978 146.742 336.558 140.863 341.242C129.106 350.611 117.628 360.364 106.5 370.467C95.1974 380.5 84.3145 390.917 73.8516 401.719Z' fill='%232A3143'/%3E%3Cpath d='M82.1797 418.219C84.1743 415.038 86.2389 411.892 88.3735 408.816C90.5081 405.739 92.7476 402.698 94.9872 399.657C99.5013 393.644 104.19 387.736 109.054 381.968C113.918 376.235 118.957 370.642 124.171 365.189C125.501 363.825 126.761 362.462 128.126 361.133L132.15 357.148L136.244 353.233C136.909 352.569 137.609 351.94 138.309 351.31L140.408 349.388C146.007 344.319 151.711 339.425 157.695 334.775C163.679 330.161 169.803 325.756 176.101 321.596C182.435 317.506 188.979 313.696 195.697 310.2C202.451 306.774 209.345 303.663 216.448 301.006L221.837 299.153L227.296 297.545C229.116 297.056 230.971 296.636 232.825 296.182C233.28 296.042 233.735 295.972 234.225 295.867L235.625 295.588L238.424 295.028C245.913 293.7 253.506 293.141 261.065 293.071C268.623 293.001 276.147 293.385 283.67 293.525C291.159 293.63 298.647 293.49 306.066 292.616C313.484 291.777 320.833 290.239 328.042 288.212C335.25 286.149 342.284 283.527 349.177 280.626L354.321 278.389C355.196 278.039 356.036 277.619 356.876 277.2L359.43 275.976C362.86 274.403 366.149 272.62 369.508 270.908C371.188 270.069 372.798 269.125 374.443 268.216L379.377 265.489C382.631 263.601 385.85 261.679 389.105 259.791C385.92 261.784 382.771 263.811 379.552 265.804L374.688 268.67C373.078 269.614 371.468 270.593 369.788 271.502C366.499 273.32 363.21 275.172 359.815 276.815L357.296 278.109C356.456 278.528 355.616 278.983 354.776 279.367L349.632 281.744C342.739 284.786 335.705 287.547 328.462 289.75C321.218 291.917 313.799 293.525 306.276 294.504C305.821 294.574 305.331 294.644 304.876 294.679L303.476 294.819L300.642 295.098L297.808 295.308C296.863 295.378 295.918 295.448 294.973 295.483C291.194 295.623 287.415 295.693 283.635 295.658C276.077 295.588 268.588 295.273 261.1 295.378C253.611 295.483 246.158 296.007 238.844 297.371L236.115 297.93L234.75 298.21C234.295 298.314 233.84 298.384 233.385 298.489C231.565 298.944 229.781 299.363 227.961 299.853L222.607 301.461L217.323 303.278C210.325 305.865 203.501 308.942 196.817 312.298C190.169 315.723 183.695 319.499 177.396 323.519C171.097 327.574 164.973 331.909 159.025 336.453L154.616 339.914C153.146 341.068 151.711 342.291 150.276 343.48C148.807 344.668 147.407 345.892 145.972 347.115L143.838 348.933C143.138 349.527 142.438 350.192 141.738 350.786L139.638 352.674C138.939 353.303 138.239 353.932 137.574 354.561L133.445 358.407L129.385 362.322C128.056 363.615 126.726 364.979 125.396 366.272C120.112 371.586 115.003 377.074 110.034 382.702C99.9912 393.994 90.613 405.775 82.1797 418.219Z' fill='%232A3143'/%3E%3Cpath d='M90.5078 434.683C91.9075 431.187 93.4822 427.726 95.1269 424.336C96.7716 420.945 98.5212 417.589 100.341 414.268C103.945 407.626 107.864 401.159 112.029 394.831C120.392 382.246 129.84 370.291 140.478 359.489C145.797 354.105 151.431 348.967 157.31 344.177L161.789 340.682C163.294 339.528 164.868 338.444 166.408 337.326C167.913 336.172 169.522 335.158 171.132 334.11L173.512 332.537L174.106 332.152L174.701 331.802L175.926 331.068C182.365 327.048 189.224 323.622 196.222 320.651L198.847 319.567L200.176 319.008L200.841 318.728L201.506 318.484L206.86 316.526C207.735 316.176 208.645 315.932 209.555 315.617L212.284 314.778L213.649 314.359L214.314 314.149C214.559 314.079 214.769 314.009 215.013 313.974L217.778 313.24C225.161 311.317 232.72 310.024 240.314 309.534C247.942 309.01 255.571 309.29 263.129 310.024C270.688 310.723 278.176 311.702 285.665 312.121C293.153 312.541 300.677 312.436 308.095 311.527C315.549 310.618 322.862 308.94 330.036 306.738L332.73 305.934C333.64 305.654 334.515 305.304 335.39 305.025L338.049 304.081C338.924 303.766 339.834 303.487 340.709 303.102L345.958 301.005C346.378 300.83 346.833 300.655 347.253 300.48L348.547 299.921L351.137 298.767L353.726 297.649C354.146 297.474 354.601 297.264 355.021 297.089L356.281 296.46L361.39 294.013C363.105 293.209 364.749 292.335 366.429 291.461L371.433 288.839C374.722 287.022 378.012 285.169 381.336 283.316L391.099 277.583L381.511 283.666C378.257 285.588 375.002 287.511 371.748 289.434L366.779 292.16C365.134 293.069 363.489 294.013 361.775 294.852L356.736 297.439L355.476 298.068C355.056 298.278 354.636 298.488 354.181 298.662L351.592 299.851L349.002 301.04L347.708 301.634C347.288 301.844 346.833 302.018 346.413 302.193L341.164 304.396C340.289 304.78 339.414 305.095 338.504 305.409L335.845 306.388C334.97 306.703 334.06 307.052 333.185 307.367L330.491 308.241C323.282 310.583 315.864 312.401 308.305 313.415L305.471 313.764L304.036 313.939C303.546 314.009 303.091 314.009 302.601 314.044L299.767 314.254C299.277 314.289 298.822 314.324 298.332 314.359L296.897 314.393L294.028 314.463C293.083 314.498 292.138 314.463 291.159 314.428C290.214 314.393 289.269 314.428 288.289 314.393L285.455 314.254C277.861 313.904 270.338 312.925 262.849 312.331C255.361 311.667 247.872 311.387 240.383 311.911C232.93 312.401 225.546 313.694 218.303 315.617L215.573 316.316C215.363 316.386 215.118 316.421 214.908 316.491L214.244 316.701L212.914 317.12L210.219 317.959C209.31 318.239 208.435 318.484 207.56 318.833L202.276 320.721L201.611 320.966L200.946 321.245L199.651 321.77L197.062 322.853C190.168 325.79 183.45 329.146 177.046 333.061L175.821 333.76L175.226 334.11L174.631 334.494L172.287 336.032C170.712 337.046 169.137 338.06 167.598 339.179C166.058 340.262 164.518 341.346 163.014 342.465L158.57 345.89C152.691 350.575 147.092 355.574 141.738 360.852C136.384 366.131 131.345 371.759 126.551 377.527C121.757 383.33 117.208 389.343 112.903 395.53C108.599 401.718 104.54 408.08 100.796 414.617C98.9062 417.868 97.1215 421.189 95.3719 424.545C93.6922 427.866 92.0125 431.257 90.5078 434.683Z' fill='%232A3143'/%3E%3Cpath d='M98.832 451.184C100.512 443.738 102.856 436.466 105.516 429.3C108.175 422.134 111.22 415.142 114.614 408.29C121.473 394.622 129.801 381.653 139.914 370.082C144.953 364.314 150.412 358.86 156.361 353.966C159.335 351.519 162.38 349.177 165.529 346.975C168.678 344.807 171.968 342.745 175.292 340.822C182.011 337.047 189.079 333.9 196.358 331.453L199.087 330.544L201.852 329.74L204.616 328.936L206.016 328.552C206.471 328.412 206.961 328.342 207.416 328.202L213.015 326.874L218.684 325.825C226.277 324.602 234.011 324.077 241.744 324.392C249.443 324.706 257.071 325.895 264.595 327.293C272.118 328.692 279.572 330.16 287.095 330.859C294.619 331.558 302.212 331.383 309.701 330.37C317.189 329.356 324.573 327.503 331.781 325.196C335.351 323.937 338.955 322.749 342.489 321.281L345.149 320.232L346.479 319.708C346.934 319.533 347.353 319.323 347.773 319.148L352.987 316.841C366.88 310.619 380.142 303.033 393.23 295.202L383.571 301.32C382.767 301.844 381.927 302.299 381.122 302.788L378.672 304.256L373.738 307.193C372.933 307.682 372.094 308.137 371.254 308.591L368.734 309.989L363.73 312.751L358.621 315.373C356.907 316.247 355.227 317.156 353.477 317.925L348.263 320.337C347.843 320.547 347.388 320.756 346.969 320.931L345.639 321.49L342.979 322.609C339.48 324.147 335.841 325.406 332.271 326.734C324.993 329.181 317.539 331.139 309.946 332.292C309.001 332.432 308.056 332.607 307.076 332.712L304.207 332.991L302.772 333.131L302.037 333.201L301.302 333.236L298.398 333.341L296.963 333.411C296.473 333.411 295.984 333.411 295.529 333.411L292.624 333.376H291.889L291.154 333.341L289.72 333.271C288.775 333.201 287.795 333.166 286.85 333.096C279.187 332.432 271.628 330.999 264.14 329.671C256.651 328.342 249.163 327.154 241.604 326.874C234.046 326.594 226.522 327.119 219.069 328.342C211.615 329.496 204.266 331.523 197.058 333.795C189.884 336.173 182.956 339.249 176.342 342.919C163.114 350.261 151.357 360.119 141.244 371.375C136.17 377.003 131.551 383.051 127.281 389.308C123.012 395.566 119.128 402.138 115.594 408.85C112.059 415.562 108.84 422.483 106.041 429.545C104.641 433.075 103.311 436.641 102.086 440.242C100.932 443.842 99.7768 447.478 98.832 451.184Z' fill='%232A3143'/%3E%3Cpath d='M107.164 467.684C107.794 459.958 109.124 452.302 110.803 444.751C112.518 437.2 114.618 429.719 117.207 422.413C119.797 415.107 122.876 407.941 126.445 401.019C130.015 394.132 134.144 387.49 138.903 381.268C143.627 375.08 148.946 369.277 154.86 364.174C160.774 359.07 167.282 354.595 174.246 351.03C177.71 349.212 181.315 347.604 184.989 346.275C185.899 345.926 186.843 345.611 187.753 345.296C188.698 344.982 189.608 344.632 190.553 344.388L193.352 343.549L196.187 342.814C203.745 340.927 211.479 339.563 219.282 338.969C227.086 338.375 234.959 338.654 242.728 339.808C250.496 340.927 258.055 342.954 265.508 345.017C269.252 346.065 272.962 347.044 276.706 347.918C280.45 348.792 284.229 349.456 288.009 349.911C295.602 350.785 303.301 350.645 310.894 349.491C318.488 348.338 325.941 346.345 333.22 343.828C336.859 342.57 340.463 341.206 344.033 339.738C347.602 338.27 351.136 336.697 354.636 335.089C361.634 331.803 368.528 328.272 375.282 324.532C378.676 322.679 382.035 320.756 385.395 318.798C387.074 317.82 388.754 316.876 390.399 315.862L395.368 312.891L390.469 316.037C388.824 317.086 387.179 318.099 385.535 319.113C382.245 321.141 378.921 323.133 375.562 325.091C368.878 328.971 362.054 332.712 355.126 336.172C351.626 337.85 348.127 339.528 344.558 341.067C340.988 342.605 337.384 344.038 333.71 345.366C330.07 346.695 326.326 347.883 322.582 348.897C318.803 349.911 314.988 350.785 311.139 351.379C307.29 352.008 303.371 352.393 299.451 352.498C295.532 352.603 291.613 352.463 287.694 352.043C283.81 351.624 279.925 350.925 276.146 350.086C272.332 349.247 268.587 348.233 264.843 347.254C257.355 345.227 249.936 343.234 242.343 342.15C234.749 341.032 227.086 340.787 219.422 341.381C211.794 341.941 204.165 343.234 196.712 345.087L193.947 345.786L191.183 346.59C190.273 346.835 189.363 347.184 188.453 347.464C187.543 347.778 186.634 348.058 185.759 348.408C182.154 349.701 178.655 351.274 175.261 353.022C168.437 356.483 162.033 360.783 156.189 365.747C153.25 368.229 150.486 370.886 147.861 373.647C145.202 376.409 142.717 379.345 140.338 382.352C135.614 388.399 131.449 394.901 127.81 401.683C124.136 408.465 120.986 415.492 118.292 422.728C115.562 429.929 113.288 437.34 111.398 444.821C110.453 448.562 109.649 452.337 108.914 456.147C108.214 459.993 107.584 463.838 107.164 467.684Z' fill='%232A3143'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_725_27714'%3E%3Crect width='412' height='385' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: 570px 471px;
    background-position: right 0% bottom 0%;
    background-repeat: no-repeat;
}

.bg_page_header_perf_risk {
    background-image: url("data:image/svg+xml,%3Csvg width='420' height='444' viewBox='0 0 420 444' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.2' clip-path='url(%23clip0_852_28515)'%3E%3Cpath d='M422.434 150.963L422.424 153.481C421.914 239.961 421.399 326.261 421.111 412.645C420.801 499.051 420.699 585.653 420.675 672.545L423.966 672.104L84.467 195.571L84.4565 198.089L422.434 150.963ZM425.726 150.522L424.091 150.731L83.3661 194.886L81.7314 195.095L83.3556 197.404L421.788 675.77L425.037 680.388L425.08 675.329C425.467 587.818 425.778 500.018 425.88 412.022C425.941 324.859 425.841 237.589 425.726 150.522Z' fill='%232A3143'/%3E%3Cpath d='M430.306 163.844L430.431 165.661C434.72 228.227 439.004 290.613 443.447 353.061C447.89 415.51 452.494 478.066 457.171 540.821L459.551 540.004L186.115 246.793L186.239 248.61L430.306 163.844ZM432.664 163.05L431.462 163.448L185.25 246.46L184.048 246.858L185.375 248.277L458.162 543.016L460.793 545.878L460.521 542.222C456.075 478.987 451.555 415.507 446.873 351.919C442.233 288.937 437.457 225.915 432.664 163.05Z' fill='%232A3143'/%3E%3Cpath d='M436.723 172.006L436.899 173.304C443.407 217.815 449.913 262.28 456.508 306.698C463.126 351.138 469.859 395.641 476.662 440.255L478.341 439.303L262.975 268.514L263.151 269.813L436.723 172.006ZM438.402 171.054L437.562 171.53L262.41 268.42L261.57 268.896L262.609 269.74L477.539 441.688L479.615 443.332L479.218 440.736C472.558 395.691 465.828 350.536 458.983 305.316C452.197 260.545 445.298 215.754 438.402 171.054Z' fill='%232A3143'/%3E%3Cpath d='M441.845 176.901L442.053 177.793C449.22 208.974 456.362 240.088 463.594 271.199C470.826 302.31 478.147 333.419 485.518 364.66L486.703 363.724L320.35 272.683L320.558 273.575L441.845 176.901ZM443.03 175.964L442.437 176.41L319.877 272.675L319.284 273.121L320.085 273.568L486.199 365.56L487.801 366.454L487.383 364.624C480.094 333.11 472.756 301.507 465.283 269.864C457.931 238.51 450.469 207.226 443.03 175.964Z' fill='%232A3143'/%3E%3Cpath d='M445.867 179.674L446.067 180.298C452.971 201.729 459.852 223.14 466.823 244.547C473.77 265.933 480.808 287.315 487.87 308.765L488.675 307.908L362.353 267.087L362.553 267.71L445.867 179.674ZM446.672 178.817L446.259 179.257L362.019 267.165L361.627 267.582L362.24 267.765L488.403 309.265L489.63 309.676L489.231 308.43C482.207 286.754 475.136 265.035 467.997 243.296C460.911 221.78 453.779 200.265 446.672 178.817Z' fill='%232A3143'/%3E%3Cpath d='M448.949 181.084L449.119 181.505C455.308 195.946 461.497 210.386 467.73 224.78C473.962 239.174 480.239 253.566 486.563 268.002L487.125 267.265L392.765 256.753L392.935 257.174L448.949 181.084ZM449.487 180.325L449.229 180.693L392.52 256.828L392.261 257.196L392.735 257.248L486.977 268.304L487.88 268.41L487.516 267.545C481.209 252.951 474.902 238.312 468.504 223.676C462.202 209.217 455.834 194.783 449.487 180.325Z' fill='%232A3143'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_852_28515'%3E%3Crect width='690' height='444' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: 690px 444px;
    background-position: right -10% bottom 0%;
    background-repeat: no-repeat;
}

.bg_page_header_perf_reg_pens_nacopl {
    background-image: url("data:image/svg+xml,%3Csvg width='441' height='331' viewBox='0 0 441 331' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.12' clip-path='url(%23clip0_3840_88448)'%3E%3Cpath d='M380.382 270.166L170.75 62.2687L379.515 61.4017L380.382 270.166Z' stroke='%232A3143' stroke-width='1.5' stroke-miterlimit='10'/%3E%3Cpath d='M435.725 211.766L226.094 3.86835L434.858 3.00127L435.725 211.766Z' stroke='%232A3143' stroke-width='1.5' stroke-miterlimit='10'/%3E%3Cpath d='M324.112 326.904L114.481 119.007L323.245 118.14L324.112 326.904Z' stroke='%232A3143' stroke-width='1.5' stroke-miterlimit='10'/%3E%3Cpath d='M267.847 383.643L58.2149 175.745L266.979 174.878L267.847 383.643Z' stroke='%232A3143' stroke-width='1.5' stroke-miterlimit='10'/%3E%3Cpath d='M211.577 440.377L1.94542 232.48L210.71 231.613L211.577 440.377Z' stroke='%232A3143' stroke-width='1.5' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3840_88448'%3E%3Crect width='327.557' height='437.695' fill='white' transform='translate(2.35156 330.193) rotate(-90.238)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: 375px 100%;
    background-position: right 0% bottom 0%;
    background-repeat: no-repeat;
}

.bg_page_header_perf_jewels {
    background-image: url("data:image/svg+xml,%3Csvg width='409' height='389' viewBox='0 0 409 389' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.2' clip-path='url(%23clip0_1206_33507)'%3E%3Cpath d='M36.8672 134.241L298.586 38.9359L562.229 -56.5131L566.278 -57.9899L566.012 -54.7842L557.152 48.9491L548.093 152.754L529.51 360.545L529.145 364.723L523.869 366.596L261.354 460.136L130.113 506.708L64.5092 529.976L-1.19427 553.244L-5.27588 554.685L-4.94403 551.479L15.6962 342.212L36.8672 134.241ZM36.8672 134.241L20.3087 342.068L3.15277 548.562L-0.630188 546.797L65.0401 523.061L130.677 499.469L261.985 452.284L524.533 358.312L518.859 364.399L538.039 156.428L547.861 52.3708L557.882 -51.7587L561.632 -49.9938L300.212 42.1056L36.8672 134.241Z' fill='%232A3143'/%3E%3Cpath d='M204.146 149.729L391.567 119.005L580.315 88.4615L583.202 87.9932L582.638 90.4065L564.187 168.531L545.605 246.691L508.074 403.047L507.311 406.181L503.528 406.757L315.775 436.004L221.932 450.484L175.011 457.723L128.122 464.855L125.202 465.287L125.799 462.874L164.856 305.725L204.146 149.729ZM204.146 149.729L167.976 306.41L131.607 462.01L129.284 460.029L176.272 452.465L223.26 444.973L317.202 430.061L505.054 400.454L500.508 404.2L538.437 247.807L557.551 169.575L576.83 91.3429L579.153 93.2879L392.297 121.599L204.146 149.729Z' fill='%232A3143'/%3E%3Cpath d='M314.748 188.665L444.463 195.436L575.04 202.532L577.031 202.64L576.368 204.405L554.566 261.314L532.665 318.223L488.63 432.042L487.734 434.347L485.113 434.203L355.365 426.279L290.524 422.209L258.104 420.156L225.717 418.031L223.693 417.887L224.389 416.122L269.585 301.943L314.748 188.665ZM314.748 188.665L271.577 302.988L228.371 416.41L227.044 414.537L259.564 416.338L292.051 418.211L357.024 421.957L486.871 429.665L483.354 431.79L527.687 317.971L549.953 261.062L572.352 204.153L573.68 206.026L444.629 197.525L314.748 188.665Z' fill='%232A3143'/%3E%3Cpath d='M384.432 236.389L470.842 262.575L557.783 289.156L559.11 289.553L558.446 290.813L536.91 330.938L515.341 371.026L472.036 451.204L471.173 452.824L469.448 452.284L383.171 425.198L340.065 411.583L318.529 404.776L296.993 397.932L295.666 397.5L296.329 396.275L340.463 316.026L384.432 236.389ZM384.432 236.389L341.625 317.071L298.918 397.068L298.254 395.411L319.89 402.038L341.492 408.738L384.763 422.137L471.14 449.043L468.519 450.123L512.056 370.018L533.89 330.001L555.792 289.985L556.455 291.642L470.709 264.231L384.432 236.389Z' fill='%232A3143'/%3E%3Cpath d='M425.516 284.294L480.468 318.331L535.719 352.801L536.548 353.341L535.951 354.206L516.638 381.508L497.292 408.774L458.534 463.198L457.737 464.278L456.642 463.594L401.889 428.872L374.546 411.475L360.875 402.759L347.236 394.006L346.373 393.466L346.971 392.638L386.326 338.214L425.516 284.294ZM425.516 284.294L387.023 339.258L348.696 393.682L348.464 392.313L362.202 400.922L375.94 409.566L403.383 426.819L458.235 461.397L456.344 461.793L495.235 407.405L514.747 380.247L534.292 353.125L534.524 354.494L480.169 319.592L425.516 284.294Z' fill='%232A3143'/%3E%3Cpath d='M447.381 327.697L480.233 362.707L513.217 398.077L513.715 398.618L513.217 399.158L496.957 416.951L480.664 434.744L448.045 470.258L447.381 470.979L446.717 470.258L414.098 434.78L397.805 416.987L389.675 408.09L381.545 399.194L381.047 398.654L381.545 398.113L414.529 362.743L447.381 327.697ZM447.381 327.697L414.894 363.608L382.573 399.158V398.041L390.77 406.866L398.966 415.69L415.359 433.375L448.045 468.782H446.717L479.436 433.375L495.829 415.69L512.222 398.041V399.122L479.901 363.572L447.381 327.697Z' fill='%232A3143'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1206_33507'%3E%3Crect width='409' height='389' fill='white' transform='translate(409 389) rotate(-180)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: 409px 389px;
    background-position: right 0% bottom 0%;
    background-repeat: no-repeat;
}

.bg_page_header_perf_projects {
    background-image: url("data:image/svg+xml,%3Csvg width='693' height='334' viewBox='0 0 693 334' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.2' clip-path='url(%23clip0_6775_107329)'%3E%3Cpath d='M65.0808 327.836L0.316415 299.325L0.234375 254.48' stroke='%231D1D1B' stroke-width='0.601387' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M46.5508 235.654L69.5453 288.828L120.586 328.431' stroke='%231D1D1B' stroke-width='0.601387' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M92.8828 216.83L138.79 278.334L176.083 329.016' stroke='%231D1D1B' stroke-width='0.601387' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M139.195 198.006L208.027 267.828L231.572 329.613' stroke='%231D1D1B' stroke-width='0.601387' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M185.516 179.18L277.259 257.332L287.081 330.208' stroke='%231D1D1B' stroke-width='0.601387' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M231.844 160.355L346.5 246.838L342.574 330.794' stroke='%231D1D1B' stroke-width='0.601387' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M278.16 141.531L415.741 236.332L398.067 331.39' stroke='%231D1D1B' stroke-width='0.601387' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M324.477 122.707L484.969 225.838L453.572 331.987' stroke='%231D1D1B' stroke-width='0.601387' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M370.805 103.883L554.21 215.344L509.065 332.572' stroke='%231D1D1B' stroke-width='0.601387' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M417.125 85.0586L623.454 204.838L564.562 333.17' stroke='%231D1D1B' stroke-width='0.601387' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M463.441 66.2344L692.683 194.344L620.067 333.766' stroke='%231D1D1B' stroke-width='0.601387' stroke-miterlimit='10' stroke-linecap='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_6775_107329'%3E%3Crect width='693' height='334' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: 693px 334px;
    background-position: right 0% bottom 0%;
    background-repeat: no-repeat;
}

.bg_page_header_perf_regions {
    background-image: url("data:image/svg+xml,%3Csvg width='460' height='386' viewBox='0 0 460 386' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2361_37914)'%3E%3Cg opacity='0.12'%3E%3Cpath d='M144.41 213.686C155.73 214.128 166.551 214.633 178.02 216.108C178.832 216.244 179.446 216.694 180.279 216.862C212.167 220.345 240.43 229.517 270.34 242.706C275.535 245.163 279.682 247.733 284.908 250.17C285.523 250.619 286.138 251.068 286.732 251.486C328.567 273.908 362.063 306.485 385.757 346.755C387.986 350.699 389.923 354.476 392.121 358.442C395.455 365.995 398.921 372.736 401.779 380.925C402.146 381.676 402.479 381.906 402.846 382.657C407.292 395.718 410.735 407.546 413.841 420.553C415.834 428.053 418.684 434.344 421.176 441.782C421.543 442.533 421.876 442.763 422.243 443.514C441.268 491.483 474.234 529.263 515.289 557.189C563.253 589.733 620.944 605.712 678.527 607.175' stroke='%232A3143' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M227.117 134.258C237.632 138.547 247.627 142.731 257.938 148.062C258.667 148.481 259.086 149.107 259.815 149.525C288.663 163.744 312.12 182.023 335.803 204.682C339.872 208.754 342.901 212.617 346.971 216.689C347.389 217.315 347.807 217.941 348.225 218.567C379.96 253.959 400.389 296.009 408.983 341.902C409.727 346.387 410.263 350.559 411.007 355.043C411.558 363.282 412.522 370.791 412.451 379.446C412.558 380.281 412.767 380.594 412.874 381.428C412.615 395.192 411.829 407.496 410.32 420.737C409.622 428.453 410.168 435.336 409.989 443.156C410.097 443.991 410.306 444.304 410.413 445.138C411.959 496.653 430.119 543.393 459.273 583.682C493.339 630.651 542.223 665.439 595.94 686.573' stroke='%232A3143' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M332.105 88.1648C340.531 95.7982 348.531 103.129 356.4 111.679C356.953 112.305 357.132 113.046 357.654 113.693C379.953 136.912 395.805 162.135 410.363 191.486C412.804 196.692 414.35 201.365 416.791 206.572C416.971 207.312 417.15 208.053 417.309 208.762C435.124 252.829 440.01 299.298 432.474 345.292C431.628 349.753 430.719 353.85 429.904 358.291C427.627 366.202 425.972 373.561 422.927 381.669C422.743 382.471 422.827 382.868 422.643 383.67C417.704 396.489 412.768 407.764 406.848 419.653C403.56 426.656 401.725 433.274 398.895 440.559C398.711 441.362 398.795 441.758 398.611 442.561C382.491 491.4 383.67 541.482 397.384 589.245C413.456 644.988 447.609 694.384 490.968 732.636' stroke='%232A3143' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M446.624 81.0085C451.982 91.0559 456.966 100.675 461.485 111.42C461.79 112.213 461.699 112.953 462.003 113.746C475.084 143.174 481.42 172.271 485.109 204.815C485.64 210.529 485.493 215.429 485.993 221.164C485.902 221.904 485.833 222.675 485.742 223.415C487.462 270.866 476.267 316.088 453.469 356.665C451.167 360.561 448.905 364.114 446.603 368.01C441.765 374.644 437.685 380.998 432.078 387.559C431.613 388.278 431.594 388.653 431.139 389.32C422.118 399.66 413.631 408.511 403.982 417.641C398.516 423.065 394.527 428.68 389.385 434.521C388.92 435.24 388.9 435.615 388.446 436.282C356.627 476.555 340.661 523.929 337.276 573.437C333.383 631.211 348.704 689.262 376.477 740.021' stroke='%232A3143' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M556.851 113.571C558.432 124.832 559.897 135.581 560.492 147.184C560.516 148.028 560.165 148.716 560.168 149.529C562.432 181.618 558.513 211.051 550.894 242.824C549.43 248.378 547.65 252.921 546.185 258.475C545.866 259.141 545.515 259.829 545.196 260.496C530.646 305.603 504.674 344.179 469.402 374.351C465.922 377.223 462.566 379.741 459.086 382.614C452.246 387.191 446.279 391.728 438.752 395.95C438.089 396.439 437.914 396.783 437.271 397.303C425.255 403.896 414.252 409.312 402.064 414.57C395.032 417.782 389.385 421.652 382.573 425.396C381.91 425.885 381.734 426.229 381.092 426.749C337.413 453.626 306.268 492.539 286.171 537.826C262.809 590.687 257.459 650.38 266.311 707.496' stroke='%232A3143' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M649.556 181.958C647.219 193.075 644.911 203.629 641.525 214.723C641.237 215.504 640.699 216.045 640.411 216.826C631.614 247.704 617.866 273.927 599.872 301.134C596.597 305.861 593.348 309.483 590.104 314.19C589.545 314.7 589.038 315.22 588.479 315.73C559.408 353.021 521.79 380.276 478.334 396.497C474.07 397.992 470.075 399.217 465.811 400.712C457.84 402.65 450.628 404.85 442.115 406.246C441.337 406.495 441.047 406.734 440.237 407.004C426.678 409.06 414.455 410.357 401.203 411.122C393.517 411.737 386.865 413.427 379.13 414.573C378.351 414.823 378.062 415.062 377.252 415.332C327 425.552 284.37 451.362 250.046 486.916C210.041 528.445 184.648 582.561 173.518 639.176' stroke='%232A3143' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M713.531 277.814C707.542 287.436 701.759 296.559 694.792 305.794C694.265 306.419 693.58 306.741 693.022 307.386C674.223 333.323 652.337 353.222 626.074 372.562C621.381 375.839 617.089 378.168 612.395 381.445C611.71 381.767 611.036 382.037 610.352 382.359C570.284 407.361 525.576 420.028 479.098 420.341C474.568 420.294 470.401 420.049 465.872 420.001C457.702 419.083 450.159 418.698 441.696 417.071C440.865 417.039 440.512 417.185 439.681 417.152C426.217 414.435 414.29 411.459 401.559 407.617C394.102 405.544 387.264 404.868 379.601 403.294C378.77 403.262 378.417 403.407 377.586 403.375C326.776 395.72 277.84 405.286 233.416 426.863C181.599 452.121 139.227 494.15 109.432 543.429' stroke='%232A3143' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M741.096 389.712C732.166 396.684 723.641 403.25 713.929 409.523C713.225 409.95 712.456 410.011 711.73 410.406C685.159 428.279 657.794 439.438 626.503 448.558C620.971 450.042 616.163 450.723 610.631 452.206C609.894 452.247 609.125 452.308 608.388 452.349C562.118 462.075 515.724 458.614 471.861 442.908C467.636 441.297 463.744 439.644 459.52 438.033C452.129 434.375 445.198 431.405 437.742 426.975C436.972 426.63 436.588 426.661 435.838 426.347C424.081 419.18 413.862 412.297 403.182 404.318C396.848 399.817 390.654 396.806 384.02 392.732C383.25 392.387 382.866 392.417 382.117 392.104C336.889 367.483 287.591 359.671 238.352 364.681C180.94 370.587 126.728 395.5 81.8879 431.487' stroke='%232A3143' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M728.952 504.127C718.19 507.615 707.884 510.844 696.609 513.362C695.768 513.517 695.081 513.297 694.24 513.452C663.148 521.125 633.537 522.19 600.963 520.029C595.257 519.5 590.452 518.503 584.766 518.006C584.048 517.807 583.31 517.576 582.592 517.377C535.733 510.599 493.212 491.452 457.259 461.658C453.839 458.693 450.752 455.822 447.281 452.845C441.584 446.874 436.026 441.716 430.555 435.005C429.94 434.42 429.576 434.347 428.961 433.762C420.336 423.002 413.045 413.025 405.739 401.88C401.34 395.493 396.499 390.535 391.613 384.429C390.998 383.844 390.634 383.771 390.018 383.186C355.849 344.543 312.052 320.317 264.008 308.126C207.946 293.965 148.402 298.711 93.8984 317.07' stroke='%232A3143' stroke-width='2' stroke-miterlimit='10'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2361_37914'%3E%3Crect width='460' height='386' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-size: 460px 386px;
    background-position: right 0% bottom 0%;
    background-repeat: no-repeat;
}

.bg_page_header_perf_accounting {
    background-image: url("data:image/svg+xml,%3Csvg width='451' height='443' viewBox='0 0 451 443' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.2' clip-path='url(%23clip0_683:40953)'%3E%3Cpath d='M59.3691 501.366L231.886 330.384L61.0328 503.031L59.3691 501.366Z' fill='%232A3143'/%3E%3Cpath d='M83.9238 496.671L256.441 325.689L85.5874 498.303L83.9238 496.671Z' fill='%232A3143'/%3E%3Cpath d='M108.514 491.976L280.998 320.961L110.144 493.608L108.514 491.976Z' fill='%232A3143'/%3E%3Cpath d='M133.068 487.248L305.586 316.266L134.732 488.913L133.068 487.248Z' fill='%232A3143'/%3E%3Cpath d='M157.621 482.553L330.138 311.538L159.285 484.185L157.621 482.553Z' fill='%232A3143'/%3E%3Cpath d='M182.209 477.825L354.693 306.843L183.839 479.49L182.209 477.825Z' fill='%232A3143'/%3E%3Cpath d='M206.768 473.13L379.285 302.115L208.431 474.762L206.768 473.13Z' fill='%232A3143'/%3E%3Cpath d='M231.322 468.402L403.84 297.42L232.986 470.067L231.322 468.402Z' fill='%232A3143'/%3E%3Cpath d='M255.908 463.707L428.392 292.692L257.539 465.339L255.908 463.707Z' fill='%232A3143'/%3E%3Cpath d='M280.463 458.978L452.98 287.996L282.127 460.643L280.463 458.978Z' fill='%232A3143'/%3E%3Cpath d='M305.018 454.283L477.535 283.268L306.681 455.915L305.018 454.283Z' fill='%232A3143'/%3E%3Cpath d='M329.607 449.556L502.091 278.573L331.238 451.22L329.607 449.556Z' fill='%232A3143'/%3E%3Cpath d='M354.162 444.861L526.679 273.845L355.826 446.492L354.162 444.861Z' fill='%232A3143'/%3E%3Cpath d='M547.512 -57.2565L374.994 113.726L545.848 -58.9214L547.512 -57.2565Z' fill='%232A3143'/%3E%3Cpath d='M522.924 -52.5617L350.439 118.454L521.293 -54.1934L522.924 -52.5617Z' fill='%232A3143'/%3E%3Cpath d='M498.367 -47.8337L325.85 123.148L496.703 -49.4985L498.367 -47.8337Z' fill='%232A3143'/%3E%3Cpath d='M473.812 -43.1387L301.295 127.877L472.149 -44.7703L473.812 -43.1387Z' fill='%232A3143'/%3E%3Cpath d='M449.224 -38.4096L276.74 132.572L447.594 -40.0745L449.224 -38.4096Z' fill='%232A3143'/%3E%3Cpath d='M424.672 -33.7147L252.154 137.301L423.008 -35.3462L424.672 -33.7147Z' fill='%232A3143'/%3E%3Cpath d='M400.117 -28.9877L227.6 141.994L398.453 -30.6526L400.117 -28.9877Z' fill='%232A3143'/%3E%3Cpath d='M375.529 -24.2918L203.045 146.724L373.899 -25.9233L375.529 -24.2918Z' fill='%232A3143'/%3E%3Cpath d='M350.97 -19.5641L178.453 151.418L349.307 -21.229L350.97 -19.5641Z' fill='%232A3143'/%3E%3Cpath d='M326.418 -14.8694L153.9 156.146L324.754 -16.501L326.418 -14.8694Z' fill='%232A3143'/%3E%3Cpath d='M301.83 -10.141L129.346 160.841L300.199 -11.8059L301.83 -10.141Z' fill='%232A3143'/%3E%3Cpath d='M277.273 -5.44602L104.756 165.569L275.61 -7.07764L277.273 -5.44602Z' fill='%232A3143'/%3E%3Cpath d='M252.719 -0.717455L80.2012 170.265L251.055 -2.38232L252.719 -0.717455Z' fill='%232A3143'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_683:40953'%3E%3Crect width='451' height='443' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 451px 443px;
    background-position: right calc(50% - var(--column4) + var(--margin)) bottom 0%;
}
.bg_page_header_perf_tax_relations {
    background-image: url(/common/core/img/bgs/perfomance/tax_relations.svg#gray);
    background-repeat: no-repeat;
    background-size: 437px 439px;
    background-position: right calc(50% - var(--column4) + var(--margin)) bottom 0%;
}
.bg_page_header_perf_nationalwealthfund {
    background-image: url("data:image/svg+xml,%3Csvg width='431' height='437' viewBox='0 0 431 437' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.5' clip-path='url(%23clip0_3798_87846)'%3E%3Cpath d='M224.735 53.1294L-0.386719 226.129L353.845 563' stroke='%231D1D1B' stroke-width='0.286566' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M270.947 45.459L62.6094 200.656L369.009 529.221' stroke='%231D1D1B' stroke-width='0.286566' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M317.163 37.8086L125.609 175.203L384.177 495.461' stroke='%231D1D1B' stroke-width='0.286566' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M363.371 30.1587L188.602 149.751L399.337 461.703' stroke='%231D1D1B' stroke-width='0.286566' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M409.563 22.4883L251.578 124.298L414.502 427.944' stroke='%231D1D1B' stroke-width='0.286566' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M455.779 14.8379L314.578 98.825L429.67 394.164' stroke='%231D1D1B' stroke-width='0.286566' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M501.991 7.1875L377.574 73.3722L444.834 360.405' stroke='%231D1D1B' stroke-width='0.286566' stroke-miterlimit='10' stroke-linecap='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3798_87846'%3E%3Crect width='431' height='437' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 431px 437px;
    background-position: right calc(50% - var(--column4) + var(--margin)) bottom 0%;
}

.bg_page_header_plan_mf {
    background-image: url("data:image/svg+xml,%3Csvg width='393' height='336' viewBox='0 0 393 336' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.2' clip-path='url(%23clip0_7514_110361)'%3E%3Cpath d='M393 297.473L197.374 410.897L197.168 410.999L197.014 410.897L0.25693 297.216L0 297.062L0.25693 296.908L195.935 183.484L0.411088 297.216V296.908L197.374 410.332H197.014L392.486 296.6L393 297.473Z' fill='%232A3143'/%3E%3Cpath d='M393 261.789L197.374 375.213L197.168 375.316L197.014 375.213L0.25693 261.533L0 261.379L0.25693 261.225L195.935 147.801L0.411088 261.533V261.225L197.374 374.648H197.014L392.486 260.916L393 261.789Z' fill='%232A3143'/%3E%3Cpath d='M393 226.102L197.374 339.526L197.168 339.628L197.014 339.526L0.25693 225.845L0 225.691L0.25693 225.537L195.935 112.113L0.411088 225.845V225.537L197.374 338.961H197.014L392.486 225.229L393 226.102Z' fill='%232A3143'/%3E%3Cpath d='M393 190.418L197.374 303.842L197.168 303.945L197.014 303.842L0.25693 190.162L0 190.008L0.25693 189.853L195.935 76.4297L0.411088 190.162V189.853L197.374 303.277H197.014L392.486 189.545L393 190.418Z' fill='%232A3143'/%3E%3Cpath d='M393 154.731L197.374 268.155L197.168 268.257L197.014 268.155L0.25693 154.474L0 154.32L0.25693 154.166L195.935 40.7422L0.411088 154.474V154.166L197.374 267.59H197.014L392.486 153.858L393 154.731Z' fill='%232A3143'/%3E%3Cpath d='M393 119.043L197.374 232.467L197.168 232.57L197.014 232.467L0.25693 118.787L0 118.633L0.25693 118.478L195.935 5.05469L0.411088 118.787V118.478L197.374 231.902H197.014L392.486 118.17L393 119.043Z' fill='%232A3143'/%3E%3Cpath d='M393 83.3597L197.374 196.783L197.168 196.886L197.014 196.783L0.25693 83.103L0 82.9489L0.25693 82.7949L195.935 -30.6289L0.411088 83.103V82.7949L197.374 196.219H197.014L392.486 82.4868L393 83.3597Z' fill='%232A3143'/%3E%3Cpath d='M393 47.6761L197.374 161.1L197.168 161.203L197.014 161.1L0.25693 47.4194L0 47.2653L0.25693 47.1113L195.935 -66.3125L0.411088 47.4194V47.1113L197.374 160.535H197.014L392.486 46.8032L393 47.6761Z' fill='%232A3143'/%3E%3Cpath d='M393 11.9886L197.374 125.412L197.168 125.515L197.014 125.412L0.25693 11.7319L0 11.5778L0.25693 11.4238L195.935 -102L0.411088 11.7319V11.4238L197.374 124.848H197.014L392.486 11.1157L393 11.9886Z' fill='%232A3143'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_7514_110361'%3E%3Crect width='393' height='336' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 390px 330px;
    background-position: right 0% bottom 0%;
}

.bg_page_header_declaration {
	background-image: url("data:image/svg+xml,%3Csvg width='828' height='568' viewBox='0 0 828 568' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.2' clip-path='url(%23clip0_3700_85399)'%3E%3Cpath d='M74.0916 400.74C74.0916 398.425 46.8488 321.143 46.8488 321.143L50.657 294.803L24 274.832L36.0103 261.807H48.8994V280.91L58.5662 293.356L99.2839 284.962L95.1829 247.913L106.314 210.864L138.244 167.448L181.305 148.344L271.822 110.427L285.004 118.242L277.388 169.184L261.569 167.448L249.852 148.344L234.326 171.5L346.813 209.128L341.247 176.131L388.116 147.476L403.056 155.87L354.722 176.131L362.338 219.258L399.248 190.603L426.491 206.233L515.543 169.184L544.543 208.549L644.433 191.472L710.05 169.763L733.485 128.083L799.981 85.8242L814.042 104.349L792.072 131.267L822.537 149.792L826.345 206.233L813.163 243.282L854.467 334.168L846.85 347.482L799.102 290.172L790.607 220.127L774.203 280.91L748.425 302.618L717.96 335.036L708.586 388.294L739.637 382.216L760.142 385.979L767.758 469.339L735.829 530.412L725.576 500.888L738.172 463.839L715.616 465.576L651.464 434.605L617.191 453.13L596.685 483.232L525.795 482.364L471.895 457.761L457.835 480.916L412.43 474.838L382.844 477.154L334.217 441.552L323.378 393.794L248.387 355.008L220.266 376.716L200.639 372.085L166.366 322.011L138.244 318.827L117.153 358.192L101.627 359.639L85.2231 380.479L79.6574 399.004L74.0916 400.74Z' stroke='%232A3143' stroke-width='0.658585' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3700_85399'%3E%3Crect width='828' height='568' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
	background-position: right 0% top 0%;
	background-size: 828px 568px;
	background-repeat: no-repeat;
}

/* 
2 ВАРИАНТ
.bg_page_header_declaration {
	background-image: url("data:image/svg+xml,%3Csvg width='373' height='224' viewBox='0 0 373 224' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.2' clip-path='url(%23clip0_3840_88639)'%3E%3Cpath d='M133.391 151.517C133.348 150.82 123.655 128.193 123.655 128.193L124.235 120.205L115.906 114.773L119.186 110.619L123.002 110.358L123.408 116.08L126.528 119.609L138.412 116.24L136.424 105.202L138.949 93.8445L147.496 80.1488L159.859 73.5261L185.89 60.2661L189.968 62.343L188.778 77.796L184.048 77.6072L180.173 72.1173L176.052 79.3936L210.181 88.3546L207.845 78.5657L221.137 68.9948L225.736 71.2023L211.835 78.2898L214.999 91.0705L225.33 81.7028L233.732 85.8275L259.343 72.858L268.76 84.0701L297.999 76.8665L316.993 68.9948L323.058 55.9962L341.879 41.9375L346.435 47.2095L340.486 55.7493L349.903 60.6728L352.21 77.5346L349.076 88.9355L363.224 115.354L361.25 119.507L345.912 103.299L341.922 82.4435L338.338 101.034L331.155 108.077L322.812 118.447L321.158 134.626L330.227 132.157L336.379 132.855L340.384 157.719L332.2 176.715L328.543 168.059L331.504 156.673L324.858 157.661L305.196 149.702L295.43 155.976L289.989 165.431L268.963 166.636L252.479 160.362L248.794 167.609L235.212 166.723L226.491 168.03L211.327 158.358L207.119 144.241L184.077 134.147L176.197 141.249L170.277 140.262L159.075 125.941L150.673 125.564L145.247 137.822L140.676 138.577L136.25 145.17L134.988 150.849L133.391 151.517Z' stroke='%232A3143' stroke-width='0.394953' stroke-miterlimit='10'/%3E%3Cpath d='M111.253 153.594C111.209 152.81 100.645 126.9 100.645 126.9L101.458 117.837L92.1133 111.49L95.9295 106.828L100.268 106.596L100.616 113.117L104.099 117.198L117.681 113.611L115.635 101.033L118.726 88.1801L128.709 72.7852L142.886 65.4945L172.719 50.9419L177.305 53.3819L175.65 70.9262L170.281 70.6067L165.986 64.289L161.169 72.4657L199.767 83.3293L197.3 72.1607L212.594 61.5441L217.774 64.1438L201.842 71.9138L205.179 86.5099L217.107 76.0676L226.568 80.9184L255.923 66.6854L266.399 79.6113L299.773 72.0155L321.51 63.4466L328.664 48.7924L350.328 33.1797L355.392 39.2505L348.471 48.836L359.078 54.6164L361.37 73.8164L357.583 86.6987L373.139 117.067L370.802 121.744L353.68 103.023L349.559 79.2482L345.119 100.293L336.819 108.164L327.126 119.769L324.92 138.126L335.281 135.498L342.26 136.427L346.323 164.762L336.645 186.185L332.654 176.28L336.238 163.412L328.664 164.399L306.477 154.959L295.261 161.887L288.89 172.533L264.977 173.491L246.36 166.041L242.036 174.203L226.626 172.925L216.701 174.232L199.665 162.933L195.152 146.811L169.179 134.888L160.081 142.803L153.377 141.568L140.956 125.084L131.422 124.489L125.009 138.301L119.799 139.07L114.648 146.477L113.11 152.897L111.253 153.594Z' stroke='%232A3143' stroke-width='0.448792' stroke-miterlimit='10'/%3E%3Cpath d='M86.0581 155.511C86.0291 154.61 74.5367 124.968 74.5367 124.968L75.6395 114.685L65.1484 107.293L69.5741 102.079L74.5222 101.905L74.7834 109.326L78.6577 114.032L94.155 110.226L92.08 95.8918L95.8382 81.3538L107.49 64.0708L123.742 56.0684L157.929 40.1361L163.094 42.9972L160.86 62.8799L154.765 62.4151L150.02 55.1534L144.376 64.3468L188.009 77.447L185.426 64.7098L203.013 52.9603L208.861 56.0248L190.606 64.5356L194.103 81.1795L207.859 69.5607L218.51 75.2684L252.146 59.6847L263.797 74.5858L301.859 66.6124L326.715 57.3029L335.131 40.8042L360.075 23.4922L365.719 30.4925L357.666 41.2399L369.594 48.0224L371.814 69.8947L367.258 84.4618L384.322 119.202L381.579 124.474L362.513 102.863L358.305 75.7768L352.834 99.5953L343.243 108.382L331.997 121.381L329.124 142.193L340.95 139.419L348.858 140.61L352.907 172.881L341.487 197.019L337.163 185.691L341.501 171.123L332.882 172.097L307.866 160.928L294.981 168.582L287.522 180.549L260.329 181.159L239.333 172.329L234.254 181.508L216.769 179.75L205.451 181.043L186.326 167.87L181.523 149.469L152.255 135.41L141.764 144.211L134.175 142.672L120.361 123.704L109.536 122.847L101.991 138.417L96.0559 139.186L90.0485 147.494L88.1621 154.755L86.0581 155.511Z' stroke='%232A3143' stroke-width='0.510008' stroke-miterlimit='10'/%3E%3Cpath d='M57.4054 157.196C57.3909 156.179 44.9118 122.267 44.9118 122.267L46.3629 110.605L34.6094 101.992L39.7461 96.1537L45.3617 96.0521L45.5068 104.49L49.8164 109.907L67.5047 105.884L65.4297 89.5601L70.0005 73.1195L83.5824 53.7016L102.199 44.9439L141.363 27.5157L147.167 30.8707L144.236 53.4256L137.329 52.7866L132.077 44.4356L125.489 54.7763L174.81 70.5343L172.126 56.0108L192.339 42.9978L198.912 46.5851L178.002 55.8946L181.659 74.8768L197.519 61.9509L209.519 68.6463L248.045 51.6102L260.988 68.7624L304.389 60.4695L332.815 50.3902L342.711 31.8147L371.37 12.6582L377.638 20.7333L368.264 32.7878L381.687 40.7321L383.776 65.6254L378.32 82.0805L397.024 121.889L393.803 127.829L372.545 102.864L368.308 72.0012L361.633 98.9568L350.561 108.731L337.531 123.269L333.86 146.855L347.34 143.936L356.308 145.446L360.269 182.191L346.818 209.393L342.116 196.438L347.326 179.983L337.502 180.927L309.308 167.74L294.507 176.178L285.801 189.627L254.894 189.787L231.212 179.33L225.263 189.656L205.427 187.318L192.556 188.567L171.095 173.215L166.002 152.214L133.02 135.687L120.932 145.49L112.342 143.602L97.0191 121.744L84.7432 120.553L75.8483 138.098L69.0864 138.853L62.0923 148.177L59.8142 156.397L57.4054 157.196Z' stroke='%232A3143' stroke-width='0.579554' stroke-miterlimit='10'/%3E%3Cpath d='M24.813 158.531C24.813 157.369 11.3182 118.592 11.3182 118.592L13.2046 105.375L0 95.354L5.94931 88.8184H12.3339V98.4039L17.1224 104.649L37.292 100.437L35.2606 81.8472L40.7746 63.2571L56.591 41.4719L77.9215 31.8864L122.759 12.8606L129.289 16.7819L125.516 42.3433L117.68 41.4719L111.876 31.8864L104.186 43.5052L159.906 62.3857L157.149 45.8289L180.366 31.4507L187.766 35.6625L163.824 45.8289L167.597 67.4689L185.88 53.0907L199.375 60.9333L243.487 42.3433L257.852 62.0952L307.333 53.5264L339.836 42.6337L351.445 21.7199L384.384 0.515625L391.349 9.81066L380.466 23.3175L395.557 32.6125L397.443 60.9333L390.913 79.5234L411.373 125.127L407.601 131.808L383.948 103.051L379.74 67.9046L371.614 98.4039L358.845 109.297L343.754 125.563L339.111 152.286L354.492 149.236L364.649 151.124L368.422 192.952L352.606 223.596L347.527 208.782L353.767 190.192L342.593 191.064L310.815 175.524L293.838 184.819L283.681 199.923L248.565 199.487L221.866 187.142L214.901 198.761L192.41 195.711L177.754 196.873L153.666 179.009L148.298 155.046L111.151 135.584L97.2205 146.477L87.4985 144.153L70.5211 119.027L56.591 117.43L46.1435 137.182L38.4529 137.908L30.327 148.365L27.57 157.66L24.813 158.531Z' stroke='%232A3143' stroke-width='0.658585' stroke-miterlimit='10'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3840_88639'%3E%3Crect width='373' height='224' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
	background-position: right 0% top 0%;
	background-size: 828px 568px;
	background-repeat: no-repeat;
}
*/


@media (max-width: 1600px) {
    .bg_page_header_appeal {
        background-size: 425px 423px;
    }

    .bg_page_header_open,
    .bg_page_header_ministry.ministry {
        background-size: 357px;
        background-position-y: 67px;
        background-position-x: calc( 100vw - ( ( 100vw - var(--page-width) ) / 2 ) - 357px );
    }
    .bg_page_header_structure.ministry {
        background-size: 457px 490px;
        background-position-y: top;
    }
    .bg_page_header_public_debt {
        background-position: right 0% bottom 0%;
    }
    .bg_page_header_perf_contracts {
        background-size: 614px 450px;
        background-position: right -10% bottom 0%;
    }

    .bg_page_header_perf_budget {
        background-size: 439px 358px;
    }

    .bg_page_header_perf_international {
        background-size: 433px 370px;
        background-position: right -10% bottom 0%;
    }

    .bg_page_header_perf_finans {
        background-size: 476px 345px;
        background-position: right 0% bottom 0%;
    }

    .bg_page_header_perf_govsupport {
        background-size: 530px 390px;
        background-position: right 0% bottom 0%;
    }

    .bg_page_header_perf_fias {
        background-size: 600px 350px;
        background-position: right 0% bottom 0%;
    }

    .bg_page_header_perf_audit {
        background-size: 342px 385px;
        background-position: right 0% bottom 0%;
    }

    .bg_page_header_perf_risk {
        background-size: 690px 444px;
        background-position: right -10% bottom 0%;
    }

    .bg_page_header_perf_jewels {
        background-size: 363px 345px;
        background-position: right 0% bottom 0%;
    }

    .bg_page_header_perf_projects {
        background-size: 693px 334px;
        background-position: right 0% bottom 0%;
    }

    .bg_page_header_perf_accounting {
        background-size: 433px 425px;
        background-position: right 0% bottom 0%;
    }
    .bg_page_header_perf_nationalwealthfund {
        background-position: right 0% bottom 0%;
    }
    .bg_page_header_plan_mf {
        background-size: 340px 300px;
    }
    .bg_page_header_declaration {
        background-size: 828px 568px;
    }
}
@media (max-width: 1400px) {
    .bg_page_header_appeal {
        background-size: 425px 381px;
    }

    .bg_page_header_judicial {
        background-size: 521px 484px;
    }

    .bg_page_header_open,
    .bg_page_header_ministry.ministry {
        background-size: 320px;
        background-position-y: 56px;
        /*background-position-x: calc( 100vw - ( ( 100vw - var(--page-width) ) / 2 ) - 320px );*/
    }
    .bg_page_header_structure.ministry {
        background-size: 406px 402px;
    }
    .bg_page_header_public_debt {
        background-size: 385px 377px;
        background-position: right 0% bottom 0%;
    }

    .bg_page_header_perf_budget {
        background-size: 384px 317px;
    }

    .bg_page_header_perf_budget_govprog_gosfin {
        background-size: 290px 330px;
    }

    .bg_page_header_perf_contracts {
        background-size: 570px 418px;
        background-position: right -10% bottom 0%;
    }

    .bg_page_header_perf_international {
        background-size: 336px 287px;
        background-position: right 0% bottom 0%;
    }

    .bg_page_header_perf_population {
        background-size: 516px 284px;
        background-position: right 0% bottom 0%;
    }

    .bg_page_header_perf_audit {
        background-size: 316px 355px;
        background-position: right 0% bottom 0%;
    }

    .bg_page_header_perf_risk {
        background-size: 597px 384px;
        background-position: right -10% bottom 0%;
    }

    .bg_page_header_perf_accounting {
        background-size: 385px 377px;
        background-position: right 0% bottom 0%;
    }
    .bg_page_header_perf_nationalwealthfund {
        background-size: 385px 377px;
        background-position: right 0% bottom 0%;
    }
    .bg_page_header_plan_mf {
        background-size: 320px 280px;
    }
    .bg_page_header_declaration {
        background-size: 653px 448px;
    }
}
@media (max-width: 1240px) {
    .bg_page_header_appeal {
        background-size: 425px 396px;
    }

    .bg_page_header_judicial {
        background-size: 401px 373px;
    }

    .bg_page_header_open,
    .bg_page_header_ministry.ministry {
        background-size: 357px;
        background-position-y: 61px;
        background-position-x: calc( 100vw - ( ( 100vw - var(--page-width) ) / 2 ) - 178px );
    }
    .bg_page_header_structure.ministry {
        background-size: 406px 422px;
    }
    .bg_page_header_public_debt {
        background-size: 381px 373px;
        background-position: right 0% bottom 0%;
    }

    .bg_page_header_perf_budget {
        background-size: 427px 352px;
    }

    .bg_page_header_perf_budget_govprog_gosfin {
        background-size: 330px 380px;
    }

    .bg_page_header_perf_risk {
        background-size: 417px 444px;
        background-position: right -10% bottom 0%;
    }

    .bg_page_header_perf_accounting {
        background-size: 381px 373px;
        background-position: right 0% bottom 0%;
    }
    .bg_page_header_perf_nationalwealthfund {
        background-size: 381px 373px;
        background-position: right 0% bottom 0%;
    }

    .bg_page_header_plan_mf {
        background-size: 280px 240px;
    }
}
@media (max-width: 1000px) {
    .bg_page_header_appeal {
        background-size: 425px 370px;
    }

    .bg_page_header_judicial {
        background-size: 372px 346px;
    }

    .bg_page_header_open,
    .bg_page_header_ministry.ministry {
        background-size: 404px;
        background-position-y: 54px;
        background-position-x: calc( 100vw - ( ( 100vw - var(--page-width) ) / 2 ) - 202px );
    }
    .bg_page_header_structure.ministry {
        background-size: 350px 363px;
    }
    .bg_page_header_public_debt {
        background-size: 373px 365px;
        background-position: right 0% bottom 0%;
    }

    .bg_page_header_perf_budget {
        background-size: 381px 314px;
        background-position: right -10% bottom 0%;
    }

    .bg_page_header_perf_budget_govprog_gosfin {
        background-size: 290px 330px;
    }

    .bg_page_header_perf_contracts {
        background-size: 570px 418px;
        background-position: right -50% bottom 0%;
    }

    .bg_page_header_perf_international {
        background-size: 433px 370px;
        background-position: right -10% bottom 0%;
    }


    .bg_page_header_perf_fias {
        background-size: 500px 300px;
        background-position: right 0% bottom 0%;
    }
    .bg_page_header_perf_jewels {
        background-size: 340px 323px;
        background-position: right 0% bottom 0%;
    }
    .bg_page_header_perf_accounting {
        background-size: 373px 365px;
        background-position: right 0% bottom 0%;
    }
    .bg_page_header_perf_nationalwealthfund {
        background-size: 373px 365px;
        background-position: right 0% bottom 0%;
    }

    .bg_page_header_declaration {
        background-size: 525px 360px;
    }
}
@media (max-width: 750px) {
    .bg_page_header_open,
    .bg_page_header_ministry.ministry {
        background-size: 252px;
        background-position-y: calc(100% - 23px);
        background-position-x: calc( 100vw - ( ( 100vw - var(--page-width) ) / 2 ) - 126px );
    }
    .bg_page_header_appeal,
    .bg_page_header_judicial,
    .bg_page_header_structure.ministry,
    .bg_page_header_public_debt,
    .bg_page_header_perf_contracts,
    .bg_page_header_perf_finans,
    .bg_page_header_perf_govsupport,
    .bg_page_header_perf_fias,
    .bg_page_header_perf_population,
    .bg_page_header_perf_audit,
    .bg_page_header_perf_poligraf,
    .bg_page_header_perf_risk,
    .bg_page_header_perf_reg_pens_nacopl,
    .bg_page_header_perf_jewels,
    .bg_page_header_perf_projects,
    .bg_page_header_perf_regions,
    .bg_page_header_perf_accounting,
    .bg_page_header_perf_nationalwealthfund,
    .bg_page_header_perf_international,
    .bg_page_header_perf_budget,
    .bg_page_header_perf_budget_govprog_gosfin,
    .bg_page_header_perf_budget_govprog_regfin,
    .bg_page_header_plan_mf,
    .bg_page_header_declaration {
        background-image: none;
    }
}

/* end page header bg imgs */


/* survey block */
.survey_group {}

.survey_group .survey_list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.survey_radio_list,
.survey_checkbox_list,
.survey_textarea_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.survey_item_title,
.survey_item_description {
    margin-bottom: 16px;
}

.survey_item .errors_message {
    color: #CA2318;
    margin-bottom: 10px;
}

.survey_item .text_field_wrapper {
    width: 100%;
}
.survey_item .text_field_wrapper .errors_message {
    align-self: start;
}

.survey_item .survey_item_results {
    margin-top: 2px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.survey_item .results_percent {
    color: #7f838e;
}

.survey_item .results_container {
    min-width: 1px;
    background: #bfc1c7;
    height: 8px;
}
.survey_item .results_container.small {
    width: 30px;
}
.survey_item .results_container.best {
    width: 300px;
    background: #03A678;
}

.survey_item .survey_item_result_info {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.survey_item .survey_date::before {
    background-image: url(/common/core/img/icons/calendar.svg#dark);
}
.survey_item .survey_agent_count::before {
    background-image: url(/common/core/img/icons/agent.svg#dark);
}
.survey_item .survey_date::before,
.survey_item .survey_agent_count::before {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    display: inline-block;
    margin-right: 5px;
    width: 20px;
    height: 14px;
    content: "";
}


/*captcha*/

.survey_group .captcha_text {
    width: 304px;
    padding: 12px 0 11px;
    border-bottom: 2px solid #D4D6D9;
}
.survey_group .captcha_block+.errors_message {
    color: #CA2318;
    margin-top:10px;
}

.survey_group .captcha_image {
    width: 165px;
    height: 48px;
}

.survey_ok_dialog {
    width: 500px;
    text-align: center;
}
.survey_ok_dialog .button_1 {
    display: inline-block;
}


@media (max-width: 1600px) {
    .survey_text_answers_list {
        padding: 20px 24px 20px 21px;
    }
}

@media (max-width: 1400px) {
    .survey_group .captcha_text {
        padding: 12px 0 13px;
    }

    .survey_text_answers_list {
        padding: 20px 20px 26px 20px;
    }

    .survey_text_answers_item {
        padding: 16px 20px;
    }
}

@media (max-width: 1200px) {
    .survey_text_answers_list {
        padding: 20px;
    }
}

@media (max-width: 1000px) {
    .survey_group .captcha_text {
        width: 304px;
    }
}
@media (max-width: 750px) {
    .survey_item .survey_item_result_info {
        flex-direction: column;
        gap: 5px;
        align-items: start
    }
    .survey_ok_dialog {
        width: auto;
    }
    .survey_group .survey_list {
        gap: 40px;
    }

    .survey_radio_list,
    .survey_checkbox_list,
    .survey_textarea_list {
        gap: 20px;
    }

    .survey_group .captcha_block {
        flex-direction: column-reverse;
        gap: 24px;
    }

    .survey_group .captcha_text {
        width: 100%;
        padding: 0 0 11px;
    }

    .survey_group .captcha_image {
        width: 100%;
        height: auto;
    }

    .survey_group .button_1 {
        width: 100%;
    }

    .survey_text_answers_list {
        padding: 20px 20px 20px 21px;
    }

    .survey_text_answers_item {
        padding: 16px 19px 16px 20px;
    }
}
/* end survey_block */


/* gallery block */
.gallery_block {
    --gallery-block-m-t: 51px;
    --gallery-block-m-b: 60px;
    margin-top: var(--gallery-block-m-t);
    margin-bottom: var(--gallery-block-m-b);
}

.gallery_block .gallery_group_list {
    width: var(--page-content);
}

.page_width .gallery_block .gallery_group_list {
    width: var(--page-width);
}

.gallery_group_list .gallery_list {
    --left-scroll: 0px;
    width: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: var(--margin);
    transform: translate(var(--left-scroll), 0);
    transform: translate3d(var(--left-scroll), 0, 0);
}
.gallery_group_list .nav_btn_container {
    --nav-btn-width: 75px;
    justify-content: space-between;
    position: absolute;
    top: 284px;
    width: calc(var(--column6) - 80px);
    left: 40px;
}
.gallery_group_list .nav_btn_container .nav_btn_left {
    width: var(--nav-btn-width);
    height: var(--nav-btn-width);
    align-self: flex-start;
    background-image: url(/common/core/img/icons/arrow_nav.svg#left_white);
    border-color: white;
    cursor: pointer;
}
.gallery_group_list .nav_btn_container .nav_btn_right {
    width: var(--nav-btn-width);
    height: var(--nav-btn-width);
    background-image: url(/common/core/img/icons/arrow_nav.svg#right_white);
    border-color: white;
    align-self: flex-end;
    cursor: pointer;
}
.gallery_group_list .nav_btn_container .nav_btn_left:hover {
    background-image: url(/common/core/img/icons/arrow_nav.svg#left_dark);
    background-color: white;
}
.gallery_group_list .nav_btn_container .nav_btn_right:hover {
    background-image: url(/common/core/img/icons/arrow_nav.svg#right_dark);
    background-color: white;
}

.gallery_group_list .nav_btn_container .nav_btn_left[disabled],
.gallery_group_list .nav_btn_container .nav_btn_right[disabled] {
    opacity: 0;
    pointer-events: none;
}

.gallery_item {
    --img-container-w: var(--page-content);
    --img-container-h: calc(var(--img-container-w) / 1.717);
    --img-shadow-w: calc(var(--column) + var(--margin));
    width: var(--img-container-w);
}

.gallery_item .img_container {
    opacity: 1;
    position: relative;
    height: var(--img-container-h);
    width: var(--img-container-w);
}
.gallery_item.active:not(:last-child) .img_container:after {
    background: -moz-linear-gradient(right, rgba(42, 49, 67, 0.8) 0%, rgba(42, 49, 67, 0) 100%);
    background: -webkit-linear-gradient(right, rgba(42, 49, 67, 0.8) 0%, rgba(42, 49, 67, 0) 100%);
    background: linear-gradient(right, rgba(42, 49, 67, 0.8) 0%, rgba(42, 49, 67, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2a3143",endColorstr="#2a3143",GradientType=1);
    content: '';
    width: var(--img-shadow-w);
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
}
.gallery_item.active:not(:first-child) .img_container:before {
    background: -moz-linear-gradient(left, rgba(42, 49, 67, 0.8) 0%, rgba(42, 49, 67, 0) 100%);
    background: -webkit-linear-gradient(left, rgba(42, 49, 67, 0.8) 0%, rgba(42, 49, 67, 0) 100%);
    background: linear-gradient(left, rgba(42, 49, 67, 0.8) 0%, rgba(42, 49, 67, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2a3143",endColorstr="#2a3143",GradientType=1);
    content: '';
    width: var(--img-shadow-w);
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.gallery_item .img_container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.gallery_item:not(.active) .img_container {
    opacity: 0.5;
}
.gallery_item .gallery_item_text {
    height: 0;
    opacity: 0;
    color: #7F838E;
}

.gallery_item.active .gallery_item_text {
    margin-top: var(--margin-top2);
    opacity: 1;
    height: auto;
    color: #7F838E;
}

@media (max-width:1600px) {
    .gallery_block {
        --gallery-block-m-b: 50px;
        --gallery-block-m-t: 50px;
    }
    .gallery_group_list .nav_btn_container {
        top: 249px;
        width: calc(var(--column6) - 80px);
        left: 40px;
    }
    .gallery_item {
    }

}

@media (max-width: 1400px) {
    .gallery_block {
        --gallery-block-m-t: 32px;
        --gallery-block-m-b: 50px;
    }
}

@media(max-width:1240px) {
    .gallery_block {
        --gallery-block-m-t: 50px;
        --gallery-block-m-b: 60px;
    }
    .gallery_group_list .nav_btn_container {
        top: 196px;
        width: calc(var(--column5) - 80px);
        left: 40px;
    }
    .gallery_item {
        --img-container-w: 806px;
        --img-container-h: 466px;
    }
}
@media(max-width:1000px) {
    .gallery_block {
        --gallery-block-m-t: 40px;
        --gallery-block-m-b: 60px;
    }
    .gallery_group_list .gallery_list {
		gap: 20px;
	}
    .gallery_group_list .nav_btn_container {
        top: 169px;
        width: calc(var(--column6) - 80px);
        left: 40px;
    }
    .gallery_item {
        --img-container-w: var(--page-content);
        --img-container-h: calc(var(--img-container-w) / 1.717);
        --img-shadow-w: calc(var(--column) + var(--margin) * 2);
    }
}
@media(max-width:750px) {
    .gallery_block {
        --gallery-block-m-t: 32px;
        --gallery-block-m-b: 40px;
    }
    .gallery_group_list .nav_btn_container {
        --nav-btn-width: 56px;
        top: 75px;
        width: calc(var(--column4) - 40px);
        left: 20px;
    }
}

.site_error_block {
    --header-h: 81px;
    --bg-img-w: 1123px;
    background-image: url(/common/core/img/bgs/eagle_big.svg);
    background-position: bottom -230px center;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: var(--bg-img-w);
}
    .site_error_block .block_content_container {
        padding: 0;
        height: calc(100vh - var(--header-h));
        display: flex;
        justify-content: center;
        flex-direction: column;
        display: table;
    }

    .site_error_block .block_container {
        display: table-row;
    }

    .site_error_block .site_error_container {
        text-align: center;
        margin: 0 auto;
        width: var(--column4);
        vertical-align: middle;
        display: table-cell;
    }

        .site_error_block .site_error_container .error_title {
            margin-bottom: 22px;
        }
        .site_error_block .site_error_container .error_title h1 {
            display: flex;
            flex-direction:column;
        }
        .site_error_block .site_error_container .btn_container {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
        }
        .site_error_block .site_error_container .error_text + .btn_container {
            margin-top: 50px;
        }
        .site_error_block .site_error_container .request_info {
            margin-top: 50px;
        }

@media (max-width: 1400px){
    .site_error_block {
        --bg-img-w: 870px;
        background-position: bottom -170px center;
    }
}
@media (max-width: 1240px){
    .site_error_block {
        --bg-img-w: 666px;
        background-position: bottom center;
    }
}
@media (max-width: 1000px){
    .site_error_block {
        --bg-img-w: 680px;
        background-position: bottom center;
    }
}

@media (max-width: 750px) {
    .site_error_block{
        --header-h: 62px;
        --bg-img-w: 100%;
        background-position: bottom center;
    }
    .site_error_block .site_error_container .error_title {
        margin-bottom: 12px;
    }
    .site_error_block .site_error_container .error_text + .btn_container {
        margin-top: 30px;
    }
    .site_error_block .site_error_container .btn_container {
        flex-direction: column;
        gap: 25px;
    }
    .site_error_block .site_error_container .btn_container >*{
        width: 100%;
    }
}



#webinar_form,
#feedback_form{
    width: 100%;
}

#webinar_form .form_field.full_width,
#feedback_form .form_field.full_width{
    width: 100%;
}

#webinar_form .form_field:not(.full_width),
#feedback_form .form_field:not(.full_width){
    width: calc((100% - var(--margin))/2);
}

#webinar_form .captcha_block,
#webinar_form .captcha_block .captcha_field_wrapper,
#feedback_form .captcha_block,
#feedback_form .captcha_block .captcha_field_wrapper,
.survey_list .captcha_field_wrapper{
    width: 100%;
}

#webinar_form .captcha_block .captcha_field_wrapper,
#feedback_form .captcha_block .captcha_field_wrapper,
.survey_list .captcha_field_wrapper{
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

#webinar_form .captcha_text,
#feedback_form .captcha_text,
.survey_list .captcha_text{
    width: calc((100% - var(--margin))/2)!important;
}

@media (max-width: 750px) {
    
    .survey_list .captcha_field_wrapper{
        flex-wrap: wrap;
    }
    
    .survey_list .captcha_image{
        margin-left: 0;
    }

}

@media (max-width: 650px) {
    
    #webinar_form .captcha_block .captcha_field_wrapper,
    #feedback_form .captcha_block .captcha_field_wrapper,
    .survey_list .captcha_field_wrapper{
        flex-wrap: wrap;
    }

}

@media (max-width: 575px) {

    #webinar_form .captcha_image,
    #feedback_form .captcha_image{
        margin-left: 0;
    }

}

@media (max-width: 380px) {

    #webinar_form .captcha_image,
    #feedback_form .captcha_image{
        width: calc((100% - var(--margin))/2)!important;
    }

}