@font-face {
    font-family: 'Manrope';
    font-weight: 400;
    src: url('../fonts/Manrope/Manrope-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    font-weight: 700;
    src: url('../fonts/Manrope/Manrope-Bold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    font-weight: 800;
    src: url('../fonts/Manrope/Manrope-ExtraBold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    font-weight: 500;
    src: url('../fonts/Montserrat/Montserrat-Medium.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    font-weight: 700;
    src: url('../fonts/Montserrat/Montserrat-Bold.ttf') format('truetype');
    font-display: swap;
}

* {
    box-sizing: border-box;
}

button {
    border: none;
    outline: none;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
    font-family: Manrope, sans-serif;
    font-size: 15px;
}

body {
    min-height: 100vh;
    margin: 0;
    -webkit-text-size-adjust: 100%;
    display: flex;
    flex-flow: column;
    font-family: Manrope, serif;
    color: #333;
    font-size: 15px;
}

a {
    color: #333;
    text-decoration: none;
    transition: .2s;
}

    a:hover {
        color: #22a8d8;
    }

.content_width {
    width: 1410px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

/* html editor */

.admin_site_panel {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    background-color: #505050;
    color: #fff;
    padding: 5px 30px;
    display: flex;
    justify-content: center;
    font-size: 20px;
    border-radius: 0 0 20px 20px;
    z-index: 1000;
}

    .admin_site_panel > * {
        margin: 0 5px;
    }

.show_edit_html_button, .show_edit_meta_button {
    background-color: #505050;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}

    .show_edit_html_button:hover, .show_edit_html_button.active, .show_edit_meta_button:hover, .show_edit_meta_button.active {
        color: #00bfff;
    }

.admin_link {
    color: #fff;
}

    .admin_link:hover {
        color: #00bfff;
    }

.editable_html {
    position: relative;
}

    .editable_html.active {
        outline: 1px dashed #0000ff;
    }

.edit_html_buttons {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    background-color: #0000ff;
}

    .edit_html_buttons span {
        color: #fff;
        margin-left: 5px;
        cursor: pointer;
        padding: 5px;
    }

.html_editor {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 5px;
    background-color: #fff;
    display: flex;
    flex-flow: column;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.edit_buttons {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

    .edit_buttons button {
        cursor: pointer;
        padding: 5px 20px;
    }

    .edit_buttons .save_html {
        border: 1px solid #505050;
        color: #505050;
    }

.tinymce_editor, .meta_editor {
    position: fixed;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 20px;
    width: 800px;
    background-color: #fff;
    z-index: 999;
}

.meta_editor {
    width: 500px;
    padding: 20px;
}

.meta_editor_form_line {
    display: flex;
    margin-bottom: 10px;
}

    .meta_editor_form_line > label {
        width: 120px;
        font-weight: bold;
    }

    .meta_editor_form_line > input, .meta_editor_form_line > textarea {
        min-height: 30px;
        border: 1px solid #ebebeb;
        width: calc(100% - 120px);
    }

    .meta_editor_form_line > textarea {
        resize: none;
    }

.meta_editor_buttons {
    display: flex;
    justify-content: center;
}

    .meta_editor_buttons > button {
        cursor: pointer;
        padding: 5px 20px;
    }

.save_meta_button {
    border: 1px solid #505050;
    color: #505050;
}

.meta_error_message {
    color: #ff0000;
    font-size: 12px;
    margin-bottom: 10px;
}

/* layout */

.cookie_agreement {
    position: fixed;
    bottom: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding: 30px 15px 15px;
    width: 100%;
    z-index: 10;
    border-top: 1px solid #e5e5e5;
}

.cookie_agreement_text {
    text-align: center;
    margin-bottom: 15px;
}

    .cookie_agreement_text a {
        color: #22a8d8;
        text-decoration: underline;
    }

.cookie_ok_button {
    border: 2px solid #505050;
    padding: 6px 30px;
    font-size: 14px;
    font-weight: 600;
    width: 160px;
}

.header {
    position: sticky;
    top: 0;
    width: 100%;
    padding-top: 20px;
    z-index: 100;
    background-color: #fff;
}

.top_header_block {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.top_header_menu_button {
    display: none;
    border: 1px solid #E0E0E0;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.top_header_menu_button_lines {
    position: relative;
    width: 26px;
    height: 16px;
}

.top_header_menu_button_line_1, .top_header_menu_button_line_2, .top_header_menu_button_line_3 {
    position: absolute;
    height: 2px;
    border-radius: 1px;
    width: 26px;
    background-color: #333;
    transition: .2s;
}

.top_header_menu_button_line_1 {
    top: 0;
}

.top_header_menu_button_line_2 {
    top: 7px;
}

.top_header_menu_button_line_3 {
    top: 14px;
}

.top_header_menu_button.open .top_header_menu_button_line_1 {
    animation: animateBurgerSlice1 .5s forwards
}

.top_header_menu_button.close .top_header_menu_button_line_1 {
    animation: animateOutBurgerSlice1 .5s forwards
}

.top_header_menu_button.open .top_header_menu_button_line_2 {
    animation: animateBurgerSlice2 .5s forwards
}

.top_header_menu_button.close .top_header_menu_button_line_2 {
    animation: animateOutBurgerSlice2 .5s forwards
}

.top_header_menu_button.open .top_header_menu_button_line_3 {
    animation: animateBurgerSlice3 .5s forwards
}

.top_header_menu_button.close .top_header_menu_button_line_3 {
    animation: animateOutBurgerSlice3 .5s forwards
}

@keyframes animateBurgerSlice1 {
    0% {
        top: 0
    }

    50% {
        top: 7px;
        transform: rotate(0deg)
    }

    100% {
        top: 7px;
        transform: rotate(45deg)
    }
}

@keyframes animateOutBurgerSlice1 {
    0% {
        top: 7px;
        transform: rotate(45deg)
    }

    50% {
        top: 7px;
        transform: rotate(0deg)
    }

    100% {
        top: 0;
        transform: rotate(0deg)
    }
}

@keyframes animateBurgerSlice3 {
    0% {
        top: 14px
    }

    50% {
        top: 7px;
        transform: rotate(0deg)
    }

    100% {
        top: 7px;
        transform: rotate(-45deg)
    }
}

@keyframes animateOutBurgerSlice3 {
    0% {
        top: 7px;
        transform: rotate(-45deg)
    }

    50% {
        top: 7px;
        transform: rotate(0deg)
    }

    100% {
        top: 14px;
        transform: rotate(0deg)
    }
}

@keyframes animateBurgerSlice2 {
    0% {
        top: 7px
    }

    50% {
        top: 7px;
        transform: rotate(0deg)
    }

    100% {
        top: 7px;
        transform: rotate(-45deg)
    }
}

@keyframes animateOutBurgerSlice2 {
    0% {
        top: 7px;
        transform: rotate(-45deg)
    }

    50% {
        top: 7px;
        transform: rotate(0deg)
    }

    100% {
        top: 7px;
        transform: rotate(0deg)
    }
}

.top_header_search_block {
    margin-right: 240px;
}

.top_header_search_button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top_header_search_form {
    position: fixed;
    top: -170px;
    display: flex;
    align-items: center;
    height: 170px;
    width: 1410px;
    background-color: #fff;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

    .top_header_search_form.open {
        opacity: 1;
        top: 0;
    }

.top_header_search_form_input {
    font-family: Manrope;
    font-size: 16px;
    height: 50px;
    padding-left: 15px;
    border: 1px solid #aaa;
    border-radius: 5px;
    width: calc(100% - 50px);
}

.top_header_search_form_submit_button {
    position: absolute;
    right: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top_header_search_form_close_button {
    position: relative;
    width: 50px;
    height: 50px;
}

    .top_header_search_form_close_button:after, .top_header_search_form_close_button:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        height: 2px;
        width: 20px;
        background-color: #333;
    }

    .top_header_search_form_close_button:after {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .top_header_search_form_close_button:before {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

.top_header_logo_block {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.top_header_logo > img {
    max-width: 100%;
}

.top_header_subscribe_button {
    width: 210px;
    height: 50px;
    color: #C42B23;
    text-transform: uppercase;
    border: 1px solid #C42B23;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
    transition: .2s;
}

    .top_header_subscribe_button:hover {
        color: #C42B23;
        box-shadow: 0 0 5px 2px #c42b234e;
    }

    .top_header_subscribe_button img {
        margin-right: 20px;
    }

.top_header_low_vision_button {
    border: 1px solid #E0E0E0;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom_header_block {
    height: 60px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
}

.header_menu_block {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.header_menu_item {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 16px;
    margin-right: 50px;
}

.header_social_block {
    display: flex;
    align-items: center;
}

.header_age_rating {
    border: 1px solid #000000;
    height: 30px;
    width: 30px;
    margin-left: 20px;
    color: #000000;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
}

.header_social_link {
    margin-left: 20px;
}

.top_footer_block_wrap {
    background-color: #22a8d8;
}

.top_footer_block {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.top_footer_search_block {
    width: 690px;
    position: relative;
}

.top_footer_search_input {
    border: 1px solid #fff;
    border-radius: 5px;
    width: 100%;
    background-color: transparent;
    height: 50px;
    font-family: Manrope, sans-serif;
    color: #fff;
    padding: 0 45px 0 20px;
    font-size: 16px;
}

    .top_footer_search_input::placeholder {
        opacity: 1;
    }

    .top_footer_search_input:focus {
        outline: none;
    }

.top_footer_search_submit {
    position: absolute;
    right: 15px;
    top: 12px;
}

.top_footer_social_block {
    width: 190px;
    display: flex;
    justify-content: space-between;
    margin-left: 20px;
}

.top_footer_social_link {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.middle_footer_block {
    background-color: #ececec;
}

.footer_menu {
    min-height: 400px;
    padding-top: 50px;
    display: flex;
}

.footer_menu_row {
    margin-right: 280px;
}

.footer_menu_row_header {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #22a8d8;
    margin-bottom: 20px;
}

.footer_menu_row_header_arrow {
    display: none;
}

.footer_menu_row_list {
    display: flex;
    flex-direction: column;
}

.footer_menu_item, .footer_contact_item {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

    .footer_contact_item a {
        font-family: Montserrat;
        color: #22a8d8;
        font-weight: 700;
    }

.bottom_footer_block {
    font-family: Montserrat;
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    line-height: 23px;
}

/* banners */

.banner_erid {
    position: absolute;
    top: 2px;
    right: 2px;
    border: 1px solid #ccc;
    background-color: rgba(255,255,255, 0.5);
    color: #ccc;
    padding: 2px;
    font-size: 12px;
}

.aside_banner_block, .banner_block {
    margin-bottom: 30px;
}

.banner_link {
    margin-bottom: 30px;
    position: relative;
    display: block;
}

.aside_banner_link {
    display: block;
    position: relative;
}

    .aside_banner_link img, .banner_link img, .aside_banner_link video, .banner_link video {
        max-width: 100%;
    }

.banner_image {
    display: block;
}

.banner_image_mobile {
    display: none;
}

/* main page */

.main_page {
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
    padding-bottom: 60px;
}

.main_content_block {
    width: calc(100% - 360px);
    margin-right: 30px;
}

.aside_block {
    width: 330px;
}

.main_news_block {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.main_news_item {
    width: calc(68.571428571% - 30px);
    margin-right: 30px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

    .main_news_item:hover .main_news_item_shadow {
        top: 0;
    }

.main_news_item_image {
    max-width: 100%;
    display: block;
    width: 100%;
}

.main_news_item_shadow {
    position: absolute;
    width: 100%;
    bottom: 0;
    top: 55%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    z-index: 1;
    transition: .3s;
}

.main_news_item_content {
    position: absolute;
    bottom: 0;
    color: #fff;
    z-index: 2;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.main_news_item_date {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.main_news_item_name {
    font-size: 28px;
    font-weight: 700;
}

.secondary_main_news_block {
    width: 31.428571428%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.secondary_main_news_item {
    height: calc(50% - 15px);
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

    .secondary_main_news_item:hover .secondary_main_news_item_shadow {
        top: 0;
    }

.secondary_main_news_item_image {
    max-width: 100%;
    display: block;
}

.secondary_main_news_item_shadow {
    position: absolute;
    width: 100%;
    bottom: 0;
    top: 46%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    z-index: 1;
    transition: .2s;
}

.secondary_main_news_item_content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 20px;
    color: #fff;
    z-index: 2;
}

.secondary_main_news_item_date {
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 5px;
}

.secondary_main_news_item_name {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
}

.main_page_article_list_block {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.main_page_article_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.main_page_article {
    width: calc(33.3333% - 30px);
    margin: 0 15px 30px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.main_page_article_image_wrapper {
    margin-bottom: 10px;
    position: relative;
    padding-top: 72.7272%;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.block_header_caption {
    font-weight: 700;
    font-size: 28px;
    color: #22a8d8;
    text-transform: uppercase;
}

.show_all_link {
    width: 210px;
    border: 1px dashed #aaa;
    border-radius: 5px;
    color: #aaa;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}

    .show_all_link:hover {
        color: #22a8d8;
        border-color: #22a8d8;
    }

.main_page_article_image {
    border-radius: 5px;
    display: block;
    margin-bottom: 15px;
    max-width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.main_page_article_date {
    font-weight: 400;
    font-size: 12px;
    color: #aaa;
    margin-bottom: 10px;
}

.main_page_article_name {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}

.main_page_article_description {
    font-size: 14px;
    margin-top: 5px;
}

.main_page_photo_list_block {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
    padding-bottom: 45px;
}

.main_page_photo_list {
    display: flex;
    margin: 0 -15px;
}

.main_page_photo {
    width: calc(50% - 30px);
    margin: 0 15px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

    .main_page_photo:hover .main_page_photo_shadow {
        top: 0;
    }

.main_page_photo_image {
    display: block;
    max-width: 100%;
}

.main_page_photo_shadow {
    position: absolute;
    bottom: 0;
    top: 46%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    z-index: 1;
    transition: .2s;
}

.main_page_photo_content {
    position: absolute;
    color: #fff;
    z-index: 2;
    bottom: 30px;
    left: 30px;
    right: 10px;
}

.main_page_photo_date {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}

.main_page_photo_name {
    font-weight: 700;
    font-size: 20px;
}

.main_page_doc_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.main_page_doc_icon {
    margin-bottom: 60px;
}

.main_page_doc {
    width: calc(33.3333% - 30px);
    margin: 0 15px;
    border: 3px solid #22a8d8;
    border-radius: 5px;
    color: #22a8d8;
    font-weight: 700;
    font-size: 20px;
    line-height: 29px;
    padding: 25px;
}

    .main_page_doc:hover {
        box-shadow: 0 0 12px 2px #22a8d859;
    }

.fresh_newspaper_block {
    background-color: #22a8d8;
    border-radius: 5px;
    display: flex;
    padding: 10px 10px 1px;
    margin-bottom: 30px;
}

.fresh_newspaper_image {
    margin-right: 10px;
}

.fresh_newspaper_text {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.fresh_newspaper_caption {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 10px;
}

.fresh_newspaper_date {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
}

.aside_news_list_block {
    border: 1px solid #e0e0e0;
    padding: 35px 30px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.aside_news_list_header {
    font-weight: 700;
    font-size: 18px;
    color: #22a8d8;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.aside_news_item {
    display: block;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.aside_news_item_date {
    color: #e0e0e0;
    font-size: 12px;
    margin-bottom: 10px;
}

.aside_news_item_name {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}

.aside_news_more_link {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #C42B23;
    border-radius: 5px;
    height: 44px;
    font-size: 14px;
    font-weight: 700;
    color: #C42B23;
    transition: .2s;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
}

    .aside_news_more_link:hover {
        color: #fff;
        background-color: #C42B23;
    }

/* news list */

.page_header {
    color: #22a8d8;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.news_list_main_content_block {
    width: calc(100% - 360px);
    margin-right: 30px;
}

.news_list_top_block {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.news_list_primary_block {
    width: calc(68.571428571% - 30px);
    height: 100%;
    margin-right: 30px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

    .news_list_primary_block:hover .news_list_primary_shadow {
        top: 0;
    }

.news_list_secondary_block {
    width: 31.428571428%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news_list_primary_image {
    max-width: 100%;
}

.news_list_primary_shadow {
    position: absolute;
    top: 46.376811594%;
    bottom: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    z-index: 1;
    transition: .2s;
}

.news_list_primary_content {
    position: absolute;
    z-index: 2;
    bottom: 40px;
    left: 40px;
    right: 20px;
    color: #fff;
}

.news_list_primary_date {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

.news_list_primary_name {
    font-weight: 700;
    font-size: 28px;
}

.news_list_secondary_item {
    margin-bottom: 30px;
}

.news_list_secondary_item_image {
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

    .news_list_secondary_item_image > img {
        display: block;
        max-width: 100%;
    }

.news_list_secondary_item_date {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 10px;
}

.news_list_secondary_item_name {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
}

.load_more_button {
    position: relative;
    font-weight: 600;
    font-size: 14px;
    margin: 0 auto;
    color: #aaa;
    border: 1px dashed #aaa;
    width: 210px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: .2s;
}

    .load_more_button:hover {
        color: #22a8d8;
        border-color: #22a8d8;
    }

/* news page */

.news_main_content_block {
    width: calc(100% - 360px);
    margin-right: 30px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    color: #C42B23;
    text-transform: uppercase;
}

.breadcrumb_arrow {
    margin: 0 5px;
}

.news_block {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.news_date {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 30px;
}

.text {
    padding-bottom: 15px;
}

    .text p {
        font-size: 16px;
        line-height: 24px;
        color: #000;
        margin: 15px 0;
    }

    .text h2 {
        margin: 40px 0 15px;
        font-weight: 700;
        font-size: 16px;
        color: #22a8d8;
        text-transform: uppercase;
    }

    .text img {
        display: block;
        margin: 30px auto;
        max-width: 100%;
    }

    .text .left {
        clear: left;
        float: left;
        max-width: 400px;
        margin-right: 30px;
    }

    .text .right {
        clear: right;
        float: right;
        max-width: 400px;
        margin-left: 30px;
        margin-bottom: 0;
    }

    .text blockquote {
        background-color: #ecf2f6;
        margin: 0 0 20px;
        padding: 15px 30px;
        border-radius: 5px;
        font-size: 16px;
        clear: both;
    }

        .text blockquote.with_quotes {
            position: relative;
            padding: 30px;
            border-radius: 5px;
            font-size: 16px;
        }

            .text blockquote.with_quotes:after, .text blockquote.with_quotes:before {
                content: ",,";
                position: absolute;
                height: 30px;
                width: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 65px;
                letter-spacing: -5px;
                color: #22a8d8;
            }

            .text blockquote.with_quotes:after {
                transform: rotate(180deg);
                top: 25px;
                left: 2px;
            }

            .text blockquote.with_quotes:before {
                bottom: 25px;
                right: 5px;
            }

    .text a {
        color: #22a8d8;
    }

        .text a:hover {
            text-decoration: underline;
        }

    .text p.image_comment, .text div.image_comment {
        text-align: center;
        margin-top: -20px;
        font-style: italic;
        font-size: 14px;
        line-height: 16px;
    }

.advertisement_label {
    width: 80px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #22a8d8;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    margin-top: -30px;
}

.author_name {
    font-style: italic;
    margin-top: 30px !important;
}

.image_copyright {
    margin-top: 5px;
    font-style: italic;
    font-size: 16px;
}

.news_image {
    margin-bottom: 40px;
}

    .news_image > img {
        max-width: 100%;
        display: block;
        border-radius: 5px;
    }

/* photo list page */

.photo_list_main_content_block {
    width: calc(100% - 360px);
    margin-right: 30px;
}

.photo_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px 30px;
}

.photo_list_item {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.photo_list_item_image {
    max-width: 100%;
    display: block;
}

.photo_list_item:hover .photo_list_item_shadow {
    top: 0;
}

.photo_list_item_shadow {
    position: absolute;
    bottom: 0;
    top: 43.75%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    z-index: 1;
    transition: .2s;
}

.photo_list_item_content {
    position: absolute;
    left: 30px;
    right: 10px;
    bottom: 30px;
    color: #fff;
    z-index: 2;
}

.photo_list_item_date {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.photo_list_item_name {
    font-weight: 700;
    font-size: 20px;
}

/* article list page */

.article_list_main_content_block {
    width: calc(100% - 360px);
    margin-right: 30px;
}

.article_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px 30px;
}

.article_list_item {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

    .article_list_item:hover .article_list_item_shadow {
        top: 0;
    }

.article_list_item_image {
    display: block;
    max-width: 100%;
}

.article_list_item_shadow {
    position: absolute;
    bottom: 0;
    top: 43.75%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    z-index: 1;
    transition: .2s;
}

.article_list_item_content {
    position: absolute;
    left: 30px;
    right: 10px;
    bottom: 30px;
    color: #fff;
    z-index: 2;
}

.article_list_item_date {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.article_list_item_name {
    font-weight: 700;
    font-size: 20px;
}

/* photo page */

.news_description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.photo_gallery_item {
    cursor: pointer;
}

.photo_gallery_item_image_wrapper {
    position: relative;
    padding-bottom: 66.6667%;
    background-color: #333;
}

.photo_gallery_item_image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .photo_gallery_item_image > img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 5px;
    }

.photo_gallery_item_image_shadow {
    position: absolute;
    width: 100%;
    bottom: 0;
    top: 55%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    z-index: 1;
    transition: .3s;
}

.photo_gallery_item_image_description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    padding: 15px;
    z-index: 2;
}

.photo_gallery {
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

    .photo_gallery .left_arrow, .photo_gallery .right_arrow, .photo_gallery_slider .left_arrow, .photo_gallery_slider .right_arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        width: 70px;
        height: 70px;
        z-index: 1;
        opacity: 0.7;
        cursor: pointer;
        transition: opacity .2s;
    }

        .photo_gallery .left_arrow:hover:not(.slick-disabled), .photo_gallery .right_arrow:hover:not(.slick-disabled), .photo_gallery_slider .left_arrow:hover:not(.slick-disabled), .photo_gallery_slider .right_arrow:hover:not(.slick-disabled) {
            opacity: 1;
        }

        .photo_gallery .left_arrow.slick-disabled, .photo_gallery .right_arrow.slick-disabled, .photo_gallery_slider .left_arrow.slick-disabled, .photo_gallery_slider .right_arrow.slick-disabled {
            opacity: 0.3;
            cursor: default;
        }

        .photo_gallery .left_arrow:before, .photo_gallery_slider .left_arrow:before, .photo_gallery .right_arrow:after, .photo_gallery_slider .right_arrow:after,
        .photo_gallery .right_arrow:before, .photo_gallery_slider .right_arrow:before, .photo_gallery .left_arrow:after, .photo_gallery_slider .left_arrow:after {
            content: "";
            display: block;
            position: absolute;
            left: 50%;
            z-index: 1;
            width: 40px;
            height: 5px;
            background-color: #fff;
            border-radius: 2.5px;
        }

        .photo_gallery .left_arrow:after, .photo_gallery_slider .left_arrow:after {
            transform: translateX(-50%) rotate(45deg);
            bottom: 20px;
        }

        .photo_gallery .left_arrow:before, .photo_gallery_slider .left_arrow:before {
            transform: translateX(-50%) rotate(-45deg);
            top: 20px;
        }

        .photo_gallery .right_arrow:after, .photo_gallery_slider .right_arrow:after {
            transform: translateX(-50%) rotate(135deg);
            bottom: 20px;
        }

        .photo_gallery .right_arrow:before, .photo_gallery_slider .right_arrow:before {
            transform: translateX(-50%) rotate(-135deg);
            top: 20px;
        }

    .photo_gallery .left_arrow, .photo_gallery_slider .left_arrow {
        left: 20px;
    }

.photo_gallery_slider .left_arrow {
    left: 35px;
}

.photo_gallery .right_arrow, .photo_gallery_slider .right_arrow {
    right: 20px;
}

.photo_gallery_slider .right_arrow {
    right: 35px;
}

.photo_gallery_slider {
    margin-right: -15px;
    margin-left: -15px;
    margin-bottom: 30px;
}

.photo_gallery_slider_item {
    margin: 0 15px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid transparent;
    cursor: pointer;
}

    .photo_gallery_slider_item > img {
        width: 100%;
    }

    .photo_gallery_slider_item.slick-current {
        border: 1px solid #C42B23;
    }

/* article page */

.news_description {
    font-size: 20px;
    line-height: 30px;
    color: #000;
    margin-bottom: 30px;
}

.article_main_content_block {
    width: 100%;
}

.see_also_article_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.see_also_article {
    width: calc(33.3333% - 30px);
    margin: 0 15px 30px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

    .see_also_article:hover .see_also_article_shadow {
        top: 0;
    }

.see_also_article_image {
    max-width: 100%;
    display: block;
}

.see_also_article_shadow {
    position: absolute;
    bottom: 0;
    top: 42%;
    width: 100%;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    transition: .2s;
}

.see_also_article_content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 10px;
    color: #fff;
    z-index: 2;
}

.see_also_article_date {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.see_also_article_name {
    font-weight: 700;
    font-size: 20px;
}

/* archive page */

.archive_main_content_block {
    width: calc(100% - 360px);
    margin-right: 30px;
}

.archive_search_form {
    position: relative;
    margin-bottom: 60px;
}

.archive_search_form_input {
    width: 100%;
    padding: 0 50px 0 20px;
    height: 50px;
    border: 1px solid #aaa;
    border-radius: 5px;
    font-family: Manrope;
    font-size: 16px;
}

    .archive_search_form_input::placeholder {
        color: #aaa;
        opacity: 1;
    }

.archive_search_form_submit {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    right: 0;
    top: 0;
}

.archive_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px 30px;
}

.archive_list_item {
    width: calc(33.3333% - 30px);
    margin: 0 15px 30px;
    border: 1px solid #22a8d8;
    border-radius: 5px;
    padding: 20px 0;
}

    .archive_list_item:hover {
        box-shadow: 0 0 12px 2px #22a8d859;
    }

.archive_list_item_date {
    color: #22a8d8;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.archive_list_item_image {
    margin-bottom: 15px;
    text-align: center;
    font-size: 0;
}

    .archive_list_item_image img {
        max-width: 100%;
    }

.mobile_calendar {
    display: none;
}

.aside_calendar {
    background-color: #22a8d8;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
    color: #fff;
}

.aside_calendar_year_selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.aside_calendar_year {
    font-size: 22px;
}

.aside_calendar_previous_year, .aside_calendar_next_year {
    width: 30px;
    height: 30px;
    position: relative;
    transition: .2s;
}

    .aside_calendar_previous_year:after, .aside_calendar_next_year:after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        width: 13px;
        height: 13px;
        transform: translateY(-50%) rotate(-45deg);
        border: 2px solid #fff;
        border-radius: 2px;
        z-index: 1;
    }

    .aside_calendar_previous_year:after {
        left: 10px;
        border-right: 2px solid transparent;
        border-bottom: 2px solid transparent;
    }

    .aside_calendar_next_year:after {
        right: 10px;
        border-left: 2px solid transparent;
        border-top: 2px solid transparent;
    }

.aside_calendar_month {
    height: 40px;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #fff;
}

    .aside_calendar_month:last-child {
        border-bottom: none;
    }

.aside_calendar_month_name {
    color: #fff;
    font-size: 16px;
}

    .aside_calendar_month_name:hover {
        color: #B2C6D0;
    }

.aside_calendar_month_count {
    color: #B2C6D0;
}

.aside_calendar_month.selected .aside_calendar_month_name {
    color: #B2C6D0;
}

/* document list page */

.document_main_content_block {
    width: calc(100% - 360px);
    margin-right: 30px;
}

.document_search_form {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.document_search_form_input_wrapper {
    width: calc(100% - 360px);
    margin-right: 30px;
    position: relative;
}

.document_search_form_input {
    width: 100%;
    padding: 0 50px 0 20px;
    height: 50px;
    border: 1px solid #aaa;
    border-radius: 5px;
    font-family: Manrope;
    font-size: 16px;
}

    .document_search_form_input::placeholder {
        color: #aaa;
        opacity: 1;
    }

.document_search_form_submit {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    right: 0;
    top: 0;
}

.document_search_form_select {
    width: 330px;
    min-height: 50px;
    border: 1px solid #aaa;
    border-radius: 5px;
    font-family: Manrope;
    color: #aaa;
    font-size: 16px;
    background-color: transparent;
    padding: 0 50px 0 10px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.document_search_form_select_icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: 10px;
    z-index: 1;
}

    .document_search_form_select_icon > img {
        display: block;
    }

.document_search_form_select_option_list {
    display: none;
    position: absolute;
    top: 50px;
    height: 300px;
    overflow-y: scroll;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #aaa;
    padding: 10px;
    z-index: 1;
}

.document_search_form_option {
    display: block;
    padding: 5px 0;
    color: #333;
}

.document_search_form_select_value {
    line-height: 14px;
}

.document_list {
    margin-bottom: 50px;
}

.document_item {
    display: block;
    background-color: #f6f6f6;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: .2s;
}

    .document_item:hover {
        border: 1px solid #22a8d8;
    }

.document_item_date {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 10px;
}

.document_item_name {
    font-weight: 700;
    font-size: 20px;
    color: #22a8d8;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.document_item_description {
    font-size: 16px;
}

.official_document_text p {
    font-size: 18px !important;
}

/* company news list page */

.company_news_main_content_block {
    width: calc(100% - 360px);
    margin-right: 30px;
}

.company_news_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px 30px;
}

.company_news_list_item {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
    padding: 30px;
    border-radius: 5px;
    background-color: #f6f6f6;
    min-height: 200px;
    border: 1px solid transparent;
    transition: .2s;
}

    .company_news_list_item:hover {
        border-color: #22a8d8;
    }

.company_news_list_item_date {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 20px;
}

.company_news_list_item_name {
    font-weight: 700;
    font-size: 20px;
    color: #22a8d8;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.company_news_list_item_description {
    font-size: 16px;
}

/* contacts page */

.contacts_main_content_block {
    width: calc(100% - 360px);
    margin-right: 30px;
}

.contacts_info_panel {
    background-color: #f6f6f6;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.contacts_info_panel_item {
    margin-bottom: 20px;
    font-size: 18px;
}

    .contacts_info_panel_item:last-child {
        margin-bottom: 0;
    }

.contacts_block {
    margin-bottom: 40px;
}

.contacts_block_header {
    font-weight: 700;
    font-size: 20px;
    color: #22a8d8;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contacts_block_item {
    margin-bottom: 20px;
    font-size: 18px;
}

.contacts_block_item_value {
    font-weight: 700;
}

.contacts_map_block {
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 50px;
}

contacts_map_block iframe {
    border-radius: 5px;
}

/* 404 page */

.error_page {
    display: flex;
    padding: 30px 0;
}

.error404_header {
    font-size: 150px;
    text-align: center;
    font-weight: 700;
    color: #22a8d8;
    line-height: 150px;
}

.error404_text {
    font-size: 20px;
    font-weight: 500;
    padding-left: 30px;
}

    .error404_text p {
        margin: 20px 0;
    }

    .error404_text a {
        color: #22a8d8;
    }

/* text page */

.text_page_header {
    color: #22a8d8;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

.subheader {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.text_page_content {
    padding-top: 30px;
    padding-bottom: 60px;
    font-size: 16px;
}

    .text_page_content p {
        margin: 10px 0 20px;
    }

/* advertisement page */

.advertisement_image > img {
    max-width: 100%;
}

.advertisement_table {
    border-collapse: collapse;
    max-width: 100%;
}

    .advertisement_table th {
        background-color: #E0E0E0;
        padding: 5px;
        border: 1px solid #aaa;
    }

    .advertisement_table td {
        border: 1px solid #aaa;
        padding: 5px;
    }

/* social share */

.social_share_block {
    display: flex;
    justify-content: flex-end;
    height: 50px;
}

.social_share_block_text {
    min-width: 200px;
    display: flex;
    align-items: center;
    font-size: 16px;
    text-transform: uppercase;
    padding: 0 15px;
    border: 1px solid #aaa;
}

.social_share_link {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #aaa;
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
}

    .social_share_link .fa {
        font-size: 20px;
    }

@media (max-width: 1470px) {
    .content_width {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .header_menu_item {
        margin-right: 30px;
    }

    .top_header_search_form {
        width: calc(100% - 60px);
        left: 30px;
        right: 30px;
    }
}

@media (max-width: 1300px) {
    .header_menu_item {
        font-size: 14px;
    }

    .main_news_item_name {
        font-size: 20px;
    }

    .secondary_main_news_item_name {
        font-size: 14px;
    }

    .main_page_doc_icon {
        margin-bottom: 30px;
    }

    .main_page_doc {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width: 1200px) {
    .header_menu_item {
        margin-right: 20px;
    }

    .header_social_link {
        margin-left: 20px;
    }

        .header_social_link:first-child {
            margin-left: 0;
            font-size: 14px;
        }

    .top_footer_search_block {
        width: 600px;
    }
}

@media (max-width: 1100px) {
    .header_menu_block {
        display: block;
        position: absolute;
        left: -100%;
        top: 160px;
        width: calc(100% - 60px);
        padding: 0 20px;
        background-color: #333;
        border-radius: 5px;
        transition: left .5s;
    }

        .header_menu_block.open {
            left: 30px;
        }

    .header_menu_item {
        display: block;
        height: 50px;
        display: flex;
        align-items: center;
        border-bottom: 1px #555 solid;
        margin-right: 0;
    }

    .top_header_menu_button {
        display: block;
        width: 27px;
        border: none;
    }

    .top_header_search_form {
        top: -160px;
        height: 160px;
    }

    .header_menu_item {
        color: #fff;
    }

    .top_header_logo_block {
        order: 1;
        justify-content: flex-start;
    }

    .top_header_search_block {
        order: 2;
        margin-right: 0;
        margin-left: 30px;
    }

    .top_header_subscribe_button {
        order: 3;
        margin-right: 0;
    }

    .top_header_low_vision_button {
        display: none;
    }

    .bottom_header_block {
        justify-content: space-between;
    }

    .bottom_header_block {
        height: 50px;
    }

    .main_content_block {
        margin-right: 0;
        width: 100%;
        display: contents;
    }

    .main_news_block {
        order: 1;
    }

    .aside_block {
        order: 3;
        width: 100%;
    }

    .aside_banner_block {
        width: 300px;
        margin-right: auto;
        margin-left: auto;
    }

    .fresh_newspaper_text {
        flex-direction: column;
        justify-content: center;
    }

    .main_page_article_list_block {
        order: 2;
    }

    .main_page_photo_list_block {
        order: 4;
    }

    .main_page_doc_list_block {
        order: 5;
    }

    .main_page_doc_name {
        font-size: 20px;
        line-height: 28px;
    }

    .top_footer_logo_block {
        display: none;
    }

    .top_footer_search_block {
        width: calc(100% - 240px);
    }

    .footer_menu_row {
        margin-right: 0;
    }

    .footer_menu {
        justify-content: space-between;
    }

    .news_list_main_content_block {
        width: 100%;
        margin-right: 0;
    }

    .news_list_block {
        margin-bottom: 60px;
    }

    .page_header {
        font-size: 30px;
    }

    .news_main_content_block {
        width: 100%;
        margin-right: 0;
    }

    .article_list_main_content_block {
        width: 100%;
        margin-right: 0;
        margin-bottom: 60px;
    }

    .see_also_article_content {
        bottom: 20px;
        left: 20px;
    }

    .see_also_article_name {
        font-size: 14px;
    }

    .see_also_article_date {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .photo_list_main_content_block {
        width: 100%;
        margin-right: 0;
        margin-bottom: 60px;
    }

    .company_news_main_content_block {
        width: 100%;
        margin-right: 0;
        margin-bottom: 60px;
    }

    .document_main_content_block {
        width: 100%;
        margin-right: 0;
    }

    .aside_calendar {
        display: none;
    }

    .mobile_calendar {
        display: block;
        background-color: #22a8d8;
        border-radius: 5px;
        margin-bottom: 30px;
    }

    .mobile_calendar_toggle_button {
        color: #fff;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 16px;
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        position: relative;
    }

    .mobile_calendar_toggle_button_arrow {
        width: 30px;
        height: 30px;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transition: .2s;
    }

        .mobile_calendar_toggle_button_arrow:after {
            content: "";
            display: block;
            height: 2px;
            width: 16px;
            background-color: #fff;
            transform: rotate(45deg);
            top: 16px;
            left: 2px;
            position: absolute;
        }

        .mobile_calendar_toggle_button_arrow:before {
            content: "";
            display: block;
            height: 2px;
            width: 16px;
            background-color: #fff;
            transform: rotate(-45deg);
            top: 16px;
            right: 2px;
            position: absolute;
        }

    .mobile_calendar_toggle_button.open .mobile_calendar_toggle_button_arrow {
        transform: translateY(-50%) rotate(-180deg);
    }

    .mobile_calendar .aside_calendar {
        overflow: hidden;
    }

    .document_search_form {
        margin-bottom: 20px;
    }

    .document_search_form_input_wrapper {
        width: calc(100% - 350px);
        margin-right: 20px;
    }

    .aside_calendar_block {
        display: none;
    }

    .archive_main_content_block {
        width: 100%;
        margin-right: 0;
    }

    .archive_search_form {
        margin-bottom: 30px;
    }

    .contacts_main_content_block {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 1000px) {
    .main_page_doc_name {
        font-size: 16px;
        line-height: 24px;
    }

    .main_page_doc_icon {
        max-width: 40px;
        margin-bottom: 15px;
    }
}

@media (max-width: 800px) {
    .main_page {
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .main_news_item_name {
        font-size: 17px;
    }

    .main_news_block {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .secondary_main_news_item_name {
        font-size: 12px;
        line-height: 16px;
    }

    .main_page_doc_name {
        font-size: 14px;
        line-height: 20px;
    }

    .block_header {
        margin-bottom: 20px;
    }

    .block_header_caption {
        font-size: 24px;
    }

    .main_news_item {
        width: calc(68.571428571% - 20px);
        margin-right: 20px;
    }

    .main_news_item_content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .secondary_main_news_item {
        height: calc(50% - 10px);
    }

    .secondary_main_news_item_content {
        left: 15px;
        bottom: 15px;
        right: 5px;
    }

    .fresh_newspaper_block {
        margin-bottom: 20px;
    }

    .aside_news_item_name {
        font-size: 14px;
    }

    .aside_block {
        margin-bottom: 30px;
        border-bottom: 1px solid #E0E0E0;
    }

    .show_all_link {
        width: 160px;
        min-width: 160px;
        height: 30px;
        font-size: 14px;
    }

    .main_page_article_list {
        margin: 0 -10px;
    }

    .main_page_article_image {
        margin-bottom: 10px;
    }

    .main_page_article_date {
        margin-bottom: 5px;
    }

    .main_page_article {
        width: calc(33.3333% - 20px);
        margin: 0 10px 20px;
    }

    .main_page_article_name {
        font-size: 14px;
    }

    .main_page_article_list_block {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .main_page_photo_name {
        font-size: 16px;
    }

    .main_page_photo_date {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .main_page_photo_content {
        bottom: 20px;
        left: 20px;
    }

    .main_page_photo_list_block {
        padding-bottom: 30px;
        margin-bottom: 20px;
    }

    .main_page_photo_list {
        margin: 0 -10px;
    }

    .main_page_photo {
        width: calc(50% - 10px);
        margin: 0 10px;
    }

    .main_page_doc {
        border-width: 2px;
        width: calc(33.3333% - 20px);
        margin: 0 10px;
        padding: 15px;
    }

    .main_page_doc_icon {
        max-width: 35px;
        margin-bottom: 25px;
    }

    .footer_menu_item, .footer_contact_item {
        font-size: 12px;
    }

    .bottom_footer_block {
        padding: 20px 0;
    }

    .news_list_primary_block {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .news_list_secondary_block {
        width: 100%;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .news_list_secondary_item {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }

    .news_list_secondary_item_image > img {
        width: 100%;
    }

    .news_list_top_block {
        margin-bottom: 0;
    }

    .article_list {
        margin: 0 -10px 20px;
    }

    .article_list_item {
        width: calc(50% - 20px);
        margin: 0 10px 20px;
    }

    .article_list_item_content {
        bottom: 20px;
        left: 20px;
    }

    .article_list_item_date {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .article_list_item_name {
        font-size: 16px;
    }

    .article_list_main_content_block {
        margin-bottom: 40px;
    }

    .see_also_article_list {
        margin: 0 -10px;
    }

    .see_also_article {
        width: calc(33.3333% - 20px);
        margin: 0 10px;
    }

    .photo_list_item {
        width: calc(50% - 20px);
        margin: 0 10px 20px;
    }

    .photo_list {
        margin: 0 -10px 10px;
    }

    .photo_list_item_content {
        bottom: 20px;
        left: 20px;
    }

    .photo_list_item_name {
        font-size: 16px;
    }

    .photo_list_item_date {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .photo_list_main_content_block {
        margin-bottom: 30px;
    }

    .photo_gallery {
        margin-bottom: 20px;
    }

        .photo_gallery .left_arrow, .photo_gallery .right_arrow, .photo_gallery_slider .left_arrow, .photo_gallery_slider .right_arrow {
            width: 50px;
            height: 50px;
        }

            .photo_gallery .left_arrow:before, .photo_gallery_slider .left_arrow:before, .photo_gallery .right_arrow:after, .photo_gallery_slider .right_arrow:after,
            .photo_gallery .right_arrow:before, .photo_gallery_slider .right_arrow:before, .photo_gallery .left_arrow:after, .photo_gallery_slider .left_arrow:after {
                content: "";
                display: block;
                position: absolute;
                left: 50%;
                z-index: 1;
                width: 24px;
                height: 3px;
                background-color: #fff;
                border-radius: 2.5px;
            }

            .photo_gallery .left_arrow:after, .photo_gallery_slider .left_arrow:after {
                transform: translateX(-50%) rotate(45deg);
                bottom: 16px;
            }

            .photo_gallery .left_arrow:before, .photo_gallery_slider .left_arrow:before {
                transform: translateX(-50%) rotate(-45deg);
                top: 16px;
            }

            .photo_gallery .right_arrow:after, .photo_gallery_slider .right_arrow:after {
                transform: translateX(-50%) rotate(135deg);
                bottom: 16px;
            }

            .photo_gallery .right_arrow:before, .photo_gallery_slider .right_arrow:before {
                transform: translateX(-50%) rotate(-135deg);
                top: 16px;
            }

        .photo_gallery .left_arrow {
            left: 0
        }

    .photo_gallery_slider .left_arrow {
        left: 10px;
    }

    .photo_gallery .right_arrow {
        right: 0;
    }

    .photo_gallery_slider .right_arrow {
        right: 10px;
    }

    .photo_gallery_slider {
        margin: 0 -10px 30px;
    }

    .photo_gallery_slider_item {
        width: calc(33.3333% - 20px);
        margin: 0 10px;
    }

    .company_news_list_item {
        width: 100%;
        margin-bottom: 20px;
    }

    .company_news_list_item {
        padding: 20px;
        min-height: 150px;
    }

    .company_news_list_item_date {
        margin-bottom: 10px;
    }

    .company_news_list_item_name {
        margin-bottom: 10px;
    }

    .document_item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .document_item_name {
        font-size: 16px;
    }

    .archive_search_form {
        margin-bottom: 20px;
    }

    .mobile_calendar {
        margin-bottom: 20px;
    }

    .archive_list {
        margin: 0 -10px 30px;
    }

    .archive_list_item {
        width: calc(33.3333% - 20px);
        margin: 0 10px 20px;
        padding: 20px;
    }

    .archive_list_item_date {
        font-size: 14px;
    }

    .contacts_info_panel {
        padding: 20px;
    }
}

@media (max-width: 700px) {
    .top_header_search_form {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }

    .header_menu_block {
        width: calc(100% - 40px);
    }

        .header_menu_block.open {
            left: 20px;
        }

    .content_width {
        padding-right: 20px;
        padding-left: 20px;
    }

    .main_news_item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .secondary_main_news_block {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }

    .secondary_main_news_item {
        height: auto;
        width: calc(50% - 10px);
        margin-bottom: 0;
    }

    .secondary_main_news_item_name {
        font-size: 14px;
    }

    .aside_news_list_block {
        padding: 20px;
    }

    .see_also_article_date {
        font-size: 12px;
    }

    .see_also_article_name {
        font-size: 12px;
        line-height: 14px;
    }

    .see_also_article_content {
        bottom: 10px;
        left: 10px;
    }

    .document_search_form_input_wrapper {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .document_search_form_select {
        width: 100%;
    }

    .error_page {
        display: block;
    }

    .error404_header {
        text-align: center;
    }

    .banner_image {
        display: none;
    }

        .banner_image.all_width {
            display: block;
        }

    .banner_image_mobile {
        display: block;
    }

    .text .left {
        float: none;
        max-width: 100%;
        display: block;
        margin: 30px auto;
    }

    .text .right {
        float: none;
        max-width: 100%;
        display: block;
        margin: 30px auto;
    }
}

@media (max-width: 600px) {
    .top_header_search_form {
        height: 155px;
        top: -155px;
    }

    .header_menu_block {
        top: 155px;
    }

    .main_page_article {
        width: calc(50% - 20px);
    }

    .main_page_doc_list {
        margin: 0;
    }

    .main_page_doc {
        width: 100%;
        margin: 0 0 20px;
        display: flex;
        align-items: flex-start;
    }

        .main_page_doc:last-child {
            margin-bottom: 0;
        }

    .main_page_doc_icon {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .footer_menu_row_list {
        max-height: 0;
        overflow: hidden;
        transition: .2s;
    }

    .footer_menu_item:first-child {
        margin-top: 10px;
    }

    .footer_menu_row.open .footer_menu_row_list {
        max-height: 160px;
    }


    .footer_menu {
        flex-wrap: wrap;
        min-height: 0;
        padding: 0;
    }

    .footer_menu_row {
        width: 100%;
        align-items: center;
        padding: 0 20px;
    }

    .footer_menu_row_header {
        height: 65px;
        display: flex;
        align-items: center;
        margin-bottom: 0;
        border-bottom: 1px solid #E0E0E0;
        position: relative;
        cursor: pointer;
    }

    .footer_menu_row.open .footer_menu_row_header_arrow {
        transform: translateY(-50%) rotate(-180deg);
    }

    .footer_menu_row:last-child .footer_menu_row_header {
        border-bottom-color: transparent
    }

    .footer_menu_row_header_arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 15px;
        display: block;
        height: 30px;
        width: 30px;
        transition: .2s;
    }

        .footer_menu_row_header_arrow:after, .footer_menu_row_header_arrow:before {
            content: "";
            position: absolute;
            top: 15px;
            width: 15px;
            height: 2px;
            background-color: #22a8d8;
        }

        .footer_menu_row_header_arrow:after {
            left: 3px;
            transform: rotate(45deg);
        }

        .footer_menu_row_header_arrow:before {
            right: 3px;
            transform: rotate(-45deg);
        }

    .secondary_main_news_item_name {
        font-size: 12px;
    }

    .block_header_caption {
        font-size: 20px;
    }

    .top_header_logo {
        width: 190px;
    }

    .top_header_subscribe_button {
        width: 185px;
        height: 44px;
        font-size: 14px;
    }

        .top_header_subscribe_button img {
            margin-right: 5px;
        }

    .main_page_photo_name {
        font-size: 14px;
        line-height: 16px;
    }

    .top_header_menu_button {
        top: 77px;
    }

    .top_footer_search_block {
        width: calc(100% - 210px);
    }

    .news_list_secondary_item_name {
        font-size: 14px;
    }

    .news_list_primary_date {
        margin-bottom: 10px;
    }

    .news_list_primary_name {
        font-size: 17px;
    }

    .news_list_primary_content {
        bottom: 20px;
        left: 20px;
    }

    .news_list_block {
        margin-bottom: 30px;
    }

    .page_header {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .breadcrumbs {
        margin-bottom: 10px;
    }

    .page_header {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .news_date {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .article_list_item_date {
        margin-bottom: 5px;
    }

    .article_list_item_name {
        font-size: 14px;
        line-height: 16px;
    }

    .see_also_article {
        width: calc(50% - 20px);
        margin-bottom: 20px;
    }

    .photo_list_item_date {
        margin-bottom: 5px;
    }

    .photo_list_item_name {
        font-size: 14px;
        line-height: 16px;
    }

    .archive_list_item {
        width: calc(50% - 20px);
    }

    .official_document_text p {
        font-size: 16px !important;
    }

    .banner_erid {
        position: absolute;
        top: auto;
        bottom: -20px;
        right: 0px;
        border: 1px solid #ccc;
        background-color: rgba(255,255,255, 0.5);
        color: #ccc;
        padding: 2px;
        font-size: 8px;
    }
}

@media (max-width: 470px) {
    .header_menu_block {
        top: 150px;
    }

    .top_header_search_form {
        height: 149px;
        top: -149px;
    }

    .top_header_menu_button {
        top: 75px;
    }

    .top_header_logo {
        width: 170px;
    }

    .top_footer_block {
        flex-wrap: wrap;
    }

    .top_footer_search_block {
        width: 100%;
        margin-bottom: 20px;
    }

    .top_footer_social_block {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .top_footer_social_link {
        margin: 0 10px;
    }

    .top_footer_block {
        height: auto;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .contacts_info_panel {
        margin-bottom: 20px;
    }

    .contacts_info_panel_item {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .contacts_block_header {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contacts_block_item {
        display: flex;
        flex-wrap: wrap;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contacts_block {
        margin-bottom: 20px;
    }

    .photo_gallery_item_image_description {
        font-size: 12px;
    }

    .social_share_block_text {
        width: calc(100% - 100px);
        min-width: none;
    }
}

@media (max-width: 450px) {

    .top_header_menu_button {
        top: 73px;
    }

    .top_header_search_button {
        width: 45px;
        height: 45px;
    }

    .top_header_subscribe_button {
        height: 45px;
        width: 45px;
    }

        .top_header_subscribe_button span {
            display: none;
        }

        .top_header_subscribe_button img {
            margin-right: 0;
        }

    .secondary_main_news_block {
        flex-wrap: wrap;
    }

    .secondary_main_news_item {
        width: 100%;
        margin: 0 0 20px;
        padding-top: 50%;
    }

        .secondary_main_news_item:last-child {
            margin-bottom: 0;
        }

    .secondary_main_news_item_image {
        width: 100%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }

    .main_page_photo_list_block {
        width: 100%;
    }

    .main_page_photo_list {
        flex-wrap: wrap;
        margin: 0;
    }

    .main_page_photo {
        width: 100%;
        margin: 0 0 20px;
        padding-top: 66.6666%;
    }

        .main_page_photo:last-child {
            margin-bottom: 0;
        }

    .main_page_photo_image {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
    }

    .article_list_item {
        width: 100%;
    }

    .see_also_article {
        width: 100%;
    }

    .see_also_article_date {
        margin-bottom: 5px;
    }

    .see_also_article_name {
        font-size: 16px;
        line-height: 20px;
    }

    .photo_list_item {
        width: 100%;
    }

    .secondary_main_news_item_name {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .main_page {
        padding-bottom: 0;
    }

    .main_page_article_list_block, .main_page_photo_list_block, .main_page_doc_list_block {
        width: 100%;
        position: relative;
        padding-bottom: 40px;
    }

    .main_page_photo_list_block {
        padding-bottom: 70px;
    }

    .main_page_doc_list_block {
        padding-bottom: 90px;
    }

        .main_page_article_list_block .show_all_link, .main_page_photo_list_block .show_all_link, .main_page_doc_list_block .show_all_link {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
            font-size: 13px;
        }

        .main_page_doc_list_block .show_all_link {
            bottom: 30px;
        }

    .main_page_article {
        width: 100%;
        margin: 0 0 30px;
    }

    .main_page_article_list {
        margin: 0;
    }

    .main_page_article_image {
        margin-bottom: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        width: 100%;
    }

    .main_page_article_image_wrapper {
        margin-bottom: 10px;
        position: relative;
        padding-top: 50%;
        border-radius: 5px;
        overflow: hidden;
        flex-grow: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .news_list_secondary_item {
        width: 100%;
    }

    .page_header {
        font-size: 18px;
    }

    .news_description {
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
    }

    .document_list {
        margin-bottom: 50px;
    }

    .document_main_content_block {
        padding-bottom: 50px;
    }

    .archive_list_item {
        padding: 10px;
    }

    .archive_list_item_image {
        margin-bottom: 5px;
    }

    .archive_list_item_date {
        font-size: 12px;
    }

    .archive_main_content_block {
        padding-bottom: 50px;
    }

    .photo_gallery_item_image_description {
        line-height: 14px;
    }

    .aside_banner_block {
        width: 100%;
    }
}

@media(max-width: 350px) {
    .text p {
        font-size: 14px;
        line-height: 20px;
    }

    .document_item_date {
        font-size: 14px;
    }

    .document_item_name {
        font-size: 14px;
    }

    .document_item_description {
        font-size: 14px;
    }

    .contacts_block_item {
        font-size: 14px;
    }
}

/* spinner */

.loader {
    display: none;
    position: absolute;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border-top: 3px solid #22a8d8;
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
