@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
img,
strong,
sub,
sup,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    font-size: 100%;

}

html {
    overflow-y: auto;
    overflow-x: hidden;
    /*    height: 100%;*/
    width: 100%;
}

body {
    /*    height: 100%;*/
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    background: rgb(255, 255, 255);
    color: rgb(34, 43, 69)
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    outline: none;
    text-decoration: none;
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1250px;
    padding: 0px 15px;
    margin: 0 auto;
}

.flexline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flexline_all {
    width: 100%;
}

.wrap_line {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.f_line_top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.f_line_bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.f_line_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.j_line_top {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.j_line_bottom {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.j_line_center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.j_line_around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.j_line_between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.f_direction_col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.f_direction_col_rew {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}










header {
    padding: 38px 0;
    -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.05);
    background-color: rgb(255, 255, 255);
    z-index: 1;
}

.menu_top li {
    margin: 0px 10px;
}

.menu_top li:first-child {
    margin-left: 0px;
}

.menu_top li:last-child {
    margin-right: 0px;
}

.menu_top ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.menu_top a {
    font-size: 15px;
    font-weight: 500;
    color: rgb(34, 43, 69);
    -webkit-transition: 300ms;
    transition: 300ms;
    display: block;
}

.menu_top a:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: rgb(0, 104, 255);
    opacity: 0;
    -webkit-transition: 300ms;
    transition: 300ms;
}

.menu_top a:hover,
.menu_top .current-menu-item a {
    color: rgb(0, 104, 255);
}

.menu_top a:hover:after,
.menu_top .current-menu-item a:after {
    opacity: 1;
}

.pfone_top {
    font-size: 15px;
    font-weight: 600;
    -webkit-transition: 300ms;
    transition: 300ms;
    padding: 16px 25px;
    border-radius: 30px;
    color: rgb(34, 43, 69);
    border: solid 1px rgb(235, 239, 243);
    transition: 300ms;
}

.pfone_bottom {
    font-size: 15px;
    font-weight: 600;
    -webkit-transition: 300ms;
    transition: 300ms;
}

.pfone_top img,
.pfone_bottom img {
    margin-right: 10px;
}

.pfone_top:hover {
    background: rgb(235, 239, 243);
}

footer {
    background: url(../image/footer_bg.jpg) center no-repeat;
    background-size: cover;
    padding: 90px 0px 40px;
}

.menu_bottom ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 200px;
}

.menu_bottom ul li {
    width: 50%;
    margin-bottom: 20px;
}

.menu_bottom ul li a {
    font-size: 15px;
    font-weight: 500;
    color: rgb(144, 149, 162);
    -webkit-transition: 300ms;
    transition: 300ms;
}

.menu_bottom ul li a:hover {
    color: rgb(255, 255, 255);
}

.pfone_footer {
    font-size: 15px;
    font-weight: 500;
    color: rgb(144, 149, 162);
    margin-bottom: 20px;
    -webkit-transition: 300ms;
    transition: 300ms;
}

.mail_bottom {
    font-size: 15px;
    font-weight: 500;
    color: rgb(144, 149, 162);
    -webkit-transition: 300ms;
    transition: 300ms;
}

.pfone_footer img,
.mail_bottom img {
    margin-right: 10px;
}

.mail_bottom:hover,
.pfone_footer:hover {
    color: rgb(255, 255, 255);
}

.soc_footer {
    max-width: 300px
}

.bottom_soc {
    width: 100%;
    margin-bottom: 13px;
    font-size: 15px;
    color: rgb(144, 149, 162);
}

.insta {
    background: url(../image/icon_instagramm.svg) center no-repeat;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    -webkit-transition: 300ms;
    transition: 300ms;
}

.insta:hover {
    background: url(../image/icon_instagramm-hover.svg) center no-repeat;
}

.vk {
    background: url(../image/icon_vk.svg) center no-repeat;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    -webkit-transition: 300ms;
    transition: 300ms;
}

.vk:hover {
    background: url(../image/icon_vk-hover.svg) center no-repeat;
}

.ok {
    background: url(../image/icon_ok.svg) center no-repeat;
    width: 40px;
    height: 40px;
    -webkit-transition: 300ms;
    transition: 300ms;
}

.ok:hover {
    background: url(../image/icon_ok-hover.svg) center no-repeat;
}

.copy_privacy {
    padding: 40px 0px 0px;
    border-top: 1px solid rgb(101, 107, 126);
    margin-top: 40px;
}

.copy_privacy p {
    width: 50%;
    font-size: 13px;
    color: rgb(144, 149, 162);
}

.copy_privacy a {
    font-size: 13px;
    color: rgb(144, 149, 162);
    -webkit-transition: 300ms;
    transition: 300ms;
}

.copy_privacy a:hover {
    color: rgb(255, 255, 255);
}

.arrow_top_up {
    position: fixed;
    bottom: 50px;
    right: 20px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    color: rgb(144, 149, 162);
    display: none;
}

.arrow_top_up span {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgb(0, 104, 255);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    background-image: url(../image/icon_arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 5px;
    -webkit-transition: 300ms;
    transition: 300ms;
}

.arrow_top_up:hover span {
    background-color: rgb(0, 104, 255);
    background-image: url(../image/icon_arrow_white.svg);
}

.content .to_content_clip {
    padding: 100px 0px;
}

.wrap_left_section {
    width: calc(100% - 415px);
}

.wrap_right_section {
    width: 415px;
    padding-left: 30px;
}

.news_blocks {
    padding: 100px 15px;
}

.name_section_to_line:before {
    content: "";
    position: absolute;
    bottom: 0px;
    background: rgb(235, 239, 243);
    width: 100%;
    height: 3px;
    left: 0px;
    border-radius: 5px;
}

.name_section_to_line:after {
    content: "";
    position: absolute;
    bottom: 0px;
    background: rgb(60, 139, 255);
    width: 100px;
    height: 3px;
    left: 0px;
    border-radius: 5px;
}

.name_section_to_line {
    font-size: 28px;
    font-weight: 600;
    color: rgb(34, 43, 69);
    padding-bottom: 33px;
    /*    border-bottom: 3px solid rgba(235,239,243,0);*/
}

.name_section_to_line a {
    font-size: 12px;
    font-weight: 600;
    color: rgb(0, 104, 255);
}

.name_section_to_line a img {
    margin-left: 8px;
}

.row_col_sect {
    padding: 30px 0px 100px;
}

.big_news {
    overflow: hidden;
    border-radius: 6px;
    font-size: 0px;
}

.big_news:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.56;
    background-color: rgb(34, 43, 69);
    z-index: 1;
}

.big_news > img {
    max-width: 100%;
    width: 100%;
    height: auto;
    -webkit-transition: 300ms;
    transition: 300ms;
}

.big_news:hover > img{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.text_absolute {
    position: absolute;
    width: 100%;
    padding: 40px;
    z-index: 2;
    bottom: 0px;
    left: 0px;
}

.label {
    display: inline-block;
    height: 31px;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: rgb(0, 104, 255);
    font-size: 12px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
}

.text_absolute a {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    color: rgb(255, 255, 255);
    display: block;
    margin-bottom: 10px;
}

.time_news {
    font-size: 13px;
    line-height: 1.5;
    color: rgb(255, 255, 255);
}

.time_news img {
    margin-right: 5px;
    padding-bottom: 4px;
}

.one_estab {
    padding-top: 30px;
}

.date_estab {
    width: 100px;
    height: 100px;
    margin: 0 0px 0 0;
    border-radius: 6px;
    background-color: rgb(248, 249, 250);
    text-align: center;
}

.big_date {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    color: rgb(34, 43, 69);
}

.mini_month {
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    color: rgb(144, 149, 162);
    display: block
}

.name_dete_j_news {
    width: calc(100% - 100px);
    padding-left: 20px;
}

.name_dete_j_news a {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: rgb(34, 43, 69);
    -webkit-transition: 300ms;
    transition: 300ms;
}

.name_dete_j_news a:hover {
    color: rgb(0, 104, 255);
}

.date_mini_news {
    font-size: 13px;
    line-height: 1.5;
    color: rgb(144, 149, 162);
}

.date_mini_news img {
    margin-right: 5px;
}

.name_dete_other_j_news:first-child {
    padding-top: 0px;
}

.name_dete_other_j_news {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(235, 239, 234);
}

.name_dete_other_j_news a {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: rgb(34, 43, 69);
    margin-bottom: 10px;
    display: block;
    -webkit-transition: 300ms;
    transition: 300ms;
}

.name_dete_other_j_news a:hover {
    color: rgb(0, 104, 255);
}


.image_other_news {
    width: 50%;
    overflow: hidden;
    border-radius: 6px;
    font-size: 0px;
}

.image_other_news img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.text_other_news {
    width: 50%;
    padding-left: 30px;
    font-size: 15px;
    line-height: 1.5;
    color: rgb(144, 149, 162);
}

.text_other_news a {
    font-size: 24px;
    font-weight: 600;
    color: rgb(34, 43, 69);
    margin-bottom: 20px;
    -webkit-transition: 300ms;
    transition: 300ms;
}

.text_other_news a:hover {
    color: rgb(0, 104, 255);
}

.text_other_news .date_mini_news {
    margin-top: 20px;
}

.big_other_news {
    margin-bottom: 40px;
}

.mini_other_news {
    width: calc(33.3333% - 20px);
    margin-right: 30px;
}

.mini_other_news:nth-child(4n) {
    margin-right: 0px;
}

.img_other_news {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 5px;
    font-size: 0px;
}

.img_other_news img {
    width: 100%;
    height: auto;
}

.mini_other_news a {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: rgb(34, 43, 69);
    display: block;
    margin-bottom: 11px;
    -webkit-transition: 300ms;
    transition: 300ms;
}

.mini_other_news a:hover {
    color: rgb(0, 104, 255);
}

.gray_section {
    padding: 100px 0px;
    background: rgb(248, 249, 250);
}

.owl-item {
    display: inline-block;
    vertical-align: top;
}

.owl-stage-outer {
    overflow: hidden;
    padding-top: 40px;
}

.owl-nav {
    position: absolute;
    top: -80px;
    right: 0px;
    width: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.owl-prev {
    width: 52px;
    height: 52px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: url(../image/icon_arrow_gray.svg) center no-repeat;
    font-size: 0px;
    border: none;
    background-color: rgb(255, 255, 255);
    padding: 0px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    cursor: pointer;
    -webkit-transition: 300ms;
    transition: 300ms;
}

.owl-next {
    width: 52px;
    height: 52px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: url(../image/icon_arrow_gray.svg) center no-repeat;
    font-size: 0px;
    border: none;
    background-color: rgb(255, 255, 255);
    padding: 0px;
    cursor: pointer;
    -webkit-transition: 300ms;
    transition: 300ms;
}

.owl-prev:hover,
.owl-next:hover {
    background: url(../image/icon_arrow.svg) center no-repeat;
    background-color: rgb(255, 255, 255);
}

.one_slide {
    display: block;
    background: rgb(255, 255, 255);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: rgb(34, 43, 69);
    text-align: center;
    padding: 0px 0px 30px;
    border-radius: 5px;
    border-radius: 6px;
    border: solid 1px rgb(235, 239, 243);
    -webkit-transition: 300ms;
    transition: 300ms;
    top: 0px;
    padding: 10px
}

/*
.one_slide:hover {
    top: -20px;
    -webkit-box-shadow: 0px 0px 30px rgb(235, 239, 243);
    box-shadow: 0px 0px 30px rgb(235, 239, 243)
}
*/

.image_slide {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 17px;
    padding: 30px 0px;
    border-bottom: 1px solid rgb(235, 239, 243);
}

.image_slide:after {
    content: "";
    position: absolute;
    bottom: -1px;
    height: 1px;
    width: 44px;
    background-color: rgb(0, 104, 255);
    left: 50%;
    margin-left: -22px;
}

.image_slide img {
    max-width: 100%;
    height: auto;
}

.header_title_bread {
    text-align: center;
    background: url(../image/head_bg.jpg) center no-repeat;
    background-size: cover;
    padding: 50px 0px;
}

.breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 12px;
}

.to_content_single .breadcrumbs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.breadcrumbs,
.breadcrumbs a {
    font-size: 13px;
    line-height: 1.5;
    color: rgb(144, 149, 162);
}

.breadcrumbs a {
    margin-right: 35px;
}

.breadcrumbs a:after {
    content: "";
    position: absolute;
    top: 0px;
    right: -30px;
    background: url(../image/icon_chevron_side.svg) center no-repeat;
    width: 24px;
    height: 100%;

}

.header_title_bread h1 {
    font-size: 42px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: rgb(34, 43, 69);
}


.line_cats_biblio {
    padding: 20px 0px;
    border-bottom: 1px solid rgb(235, 239, 243);
}

.line_cats_biblio a {
    font-size: 12px;
    font-weight: 600;
    color: rgb(144, 149, 162);
    padding: 10px;
    margin-right: 5px;
    text-transform: uppercase;
}

.line_cats_biblio a:last-child {
    margin-right: 0px;
}

.line_cats_biblio a.active {
    border-radius: 4px;
    background-color: rgb(0, 104, 255);
    color: rgb(255, 255, 255);
}

.line_cats_biblio .flexline.j_line_center.f_line_center {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.form_search_top {
    padding: 45px 0px 40px;
}

.form_search_top input[type="text"] {
    width: 100%;
    height: 63px;
    padding: 19px 30px 20px;
    border-radius: 40px;
    background-color: rgb(248, 249, 250);
    border: none;
    color: rgb(34, 43, 69);
}

.form_search_top input[type="submit"] {
    width: 75px;
    height: 100%;
    position: absolute;
    right: 0px;
    padding: 0px;
    cursor: pointer;
    background: url(../image/icon_search.svg) center no-repeat;
    border: none;
    background-color: transparent;
    font-size: 0px;
}

.line_contentsearch_filter .name_section_to_line {
    padding-bottom: 17px;
    margin-bottom: 17px;
}

.left_documents {
    width: calc(100% - 310px);
}

.right_filter {
    width: 280px;
    margin-left: 30px;
}

.documents_gray {
    padding: 20px;
    border-radius: 10px;
    background-color: rgb(248, 249, 250);
}

.one_documents {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    padding: 20px;
    width: calc(33.3333% - 7px);
    margin-right: 10px;
    text-align: center;
    margin-bottom: 20px;
    -webkit-transition: 300ms;
    transition: 300ms;
}

.one_documents:nth-child(3n) {
    margin-right: 0px;
}

.one_documents:hover {
    -webkit-box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.1);
}

.one_documents:hover .name__documents {
    color: rgb(0, 104, 255);
}

.name__documents {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: rgb(34, 43, 69);
    margin-bottom: 20px;
    margin-top: 25px;
}

.info_documents {
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
    color: rgb(144, 149, 162);
}

.filter_list {
    padding: 20px 20px 4px;
    border-radius: 6px;
    -webkit-box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.1);
    background-color: rgb(255, 255, 255);
}

.toggle_slide_filter {
    border-bottom: 1px solid rgb(235, 239, 243);
    padding: 30px 0px 20px;
}

.toggle_slide_filter:last-child {
    border-bottom: none;
    padding-bottom: 0px;
}

.blocks_slide {
    display: none;
}

.blocks_slide label {
    padding-left: 35px;
    display: block;
    min-height: 30px;
    padding-top: 5px;
    cursor: pointer;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: rgb(144, 149, 162);
}

.blocks_slide label input {
    display: none;
}

.blocks_slide label input + span {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgb(235, 239, 243);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
}

.blocks_slide label input:checked + span {
    background-color: rgb(0, 104, 255);
    background-image: url(../image/checkbox_cheked.svg);
}

.name_toggle_slide {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: rgb(34, 43, 69);
    cursor: pointer;

}

.name_toggle_slide:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0px;
    right: 0px;
    background: url(../image/icon_chevron_side.svg) center no-repeat;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: 300ms;
    transition: 300ms;
}

.name_toggle_slide.open:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}


.to_content_single {
    padding: 50px 15px 145px;
}

.to_content_single .news_blocks {
    padding: 0px;
}

.wrap_left_section h1 {
    font-size: 42px;
    font-weight: 600;
    color: rgb(34, 43, 69);
    margin-bottom: 30px;
}

.dates {
    font-size: 13px;
    line-height: 1.5;
    color: rgb(144, 149, 162);
    margin-bottom: 30px;
}

.opisanie {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: rgb(34, 43, 69);
    margin-bottom: 10px;
}

.text_opisanie {
    font-size: 15px;
    line-height: 1.5;
    color: rgb(34, 43, 69);
    margin-bottom: 30px;
}

.max_240 {
    max-width: 240px;
    padding-top: 30px;
}

.detal_info {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: rgb(34, 43, 69);
    margin-bottom: 10px;
}

.text_info {
    font-size: 15px;
    line-height: 1.5;
    color: rgb(144, 149, 162);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}

.text_info span {
    font-size: 15px;
    line-height: 1.5;
    color: rgb(34, 43, 69);
    text-transform: uppercase;
}

.to_content_single .wrap_left_section {
    width: calc(100% - 416px);
}

.to_content_single .wrap_right_section {
    width: 416px;
    padding-left: 30px;
}

.image_doc {
    padding: 24px 15px 24px 15px;
    border-radius: 6px;
    border: solid 1px rgb(235, 239, 243);
    background-color: rgb(255, 255, 255);
    text-align: center;
    margin-bottom: 20px;
}

.d_load_file {
    padding: 30px;
    border-radius: 6px;
    -webkit-box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.1);
    border: solid 2px rgb(235, 239, 243);
    background-color: rgb(255, 255, 255);
    padding: 30px 85px 30px 30px;
    display: block;
    -webkit-transition: 300ms;
    transition: 300ms;
}

.d_load_file:hover {
    border: solid 2px rgb(235, 239, 243);
    background-color: rgb(235, 239, 243);
}

.d_load_file:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 30px;
    width: 54px;
    height: 54px;
    border-radius: 5px;
    background-color: rgb(0, 104, 255);
    background-image: url(../image/icon%20_%20download.svg);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.left_text_d_load {
    font-size: 15px;
    line-height: 1.5;
    color: rgb(144, 149, 162);
}

.big_d_load {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: rgb(34, 43, 69);
}

.this_news_page .mini_other_news,
.this_news_page .mini_other_news:nth-child(4n) {
    margin-right: 30px;
    margin-bottom: 30px;
}

.this_news_page .mini_other_news:nth-child(3n) {
    margin-right: 0px
}

.wrap_right_section .big_news:first-child {
    margin-bottom: 18px;
}

.wrap_right_section .big_news .text_absolute {
    bottom: 0px;
    padding: 30px 40px;
}

.wrap_right_section .big_news a {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: #ffffff;
}

.gray_line_about_partners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.gray_line_about_partners .one_slide {
    display: block;
    width: calc(25% - 25px);
    margin-right: 30px;
    margin-bottom: 30px;
}

.gray_line_about_partners .one_slide:nth-child(3n) {
    margin-right: 0px;
}

.this_to_page_partners .one_slide:nth-child(3n) {
    margin-right: 30px;
}

.this_to_page_partners .one_slide:nth-child(4n) {
    margin-right: 0px;
}

.this_to_page_partners {
    padding-top: 80px;
}

.text_opisanie_block {
    font-size: 15px;
    line-height: 1.5;
    color: rgb(34, 43, 69);
}

.text_opisanie_block p {
    margin-bottom: 15px;
}

.text_opisanie_block h2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: rgb(34, 43, 69);
    margin: 30px 0px 10px;
}

.image_doc_news img {
    max-width: 100%;
    height: auto;
}

.text_psbout_partners {
    font-size: 15px;
    line-height: 1.5;
    color: rgb(34, 43, 69);
}

.text_psbout_partners p:not(:last-child) {
    margin-bottom: 20px;
}


p.name_block_about_patners {
    font-size: 28px;
    font-weight: 600;
    color: rgb(34, 43, 69);
    margin-top: 50px;
    margin-bottom: 30px;
}

.absolute_contacts {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    max-width: 260px;
    padding: 30px;
    z-index: 1;
    background: rgb(255, 255, 255);
    border-radius: 6px;
    -webkit-box-shadow: 0 20px 50px 0 rgba(0, 19, 47, 0.1);
    box-shadow: 0 20px 50px 0 rgba(0, 19, 47, 0.1);
}

.text_asoc {
    font-size: 13px;
    line-height: 1.5;
    color: rgb(34, 43, 69);
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(235, 239, 243);
}

.addr_texts {
    padding-top: 20px;
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.5;
    color: rgb(34, 43, 69);
    margin-bottom: 20px;
}


.map_image iframe {
    max-width: 100%;
    border-radius: 10px;
}

.absolute_contacts a {
    font-size: 15px;
    font-weight: 600;
    color: rgb(34, 43, 69);
    margin-bottom: 10px;
}

.absolute_contacts a:hover {
    color: rgb(0, 104, 255);
}

.absolute_contacts a.marsch {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    color: rgb(0, 104, 255);
}

.one_slide.news_slide {
    text-align: left;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0px;
    border: none;
}

.one_slide.news_slide .date_mini_news {
    margin-top: 10px;
}

.image_slide_news {
    width: 100%;
}


.image_slide_news img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.about_content {
    font-size: 15px;
    line-height: 1.5;
    color: rgb(34, 43, 69);
    margin-bottom: 50px;
}

.about_content h2 {
    font-size: 28px;
    font-weight: 600;
    color: rgb(34, 43, 69);
    margin-bottom: 30px;
}

.big_image_about {
    width: 100%;
    display: block;
    margin-bottom: 100px;
}

.slider_commands .one_slide {
    padding: 0px;
    border: none;
    text-align: left;
    font-size: 13px;
    line-height: 1.5;
    color: rgb(144, 149, 162);
}

.slider_commands .one_slide img {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.name_dolj {
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: rgb(34, 43, 69);
}

.name_dolj:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    left: 0px;
    bottom: 0px;
    background: rgb(0, 104, 255);
}

.text_to_line {
    width: calc(100% - 500px);
}

.image_aft_bef_textss {
    width: 500px;
}

.image_aft_bef_textss img {
    max-width: 100%;
}

.gray_block_to_lines {

    margin-top: 100px;
    margin-bottom: 200px;
}

.gray_block_to_lines:before {
    content: "";
    position: absolute;
    top: 30px;
    height: calc(100% - 60px);
    left: 0px;
    width: 100%;
    background: url(../image/bg_ll.jpg) center no-repeat;
    background-size: cover;
}

.this_toggle_rew:nth-child(2n-1) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.this_toggle_rew:nth-child(2n-1) .image_aft_bef_textss {
    padding-left: 30px;
}

.this_toggle_rew:nth-child(2n) {
    padding-right: 30px;
}

/*
.this_toggle_rew:first-child{
    margin-top: -30px;;
}
.this_toggle_rew:last-child{
    margin-bottom: -30px;
}
*/
.text_to_line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
}

.text_to_line p {
    max-width: 500px;
    width: 100%;
}

.name_blocks {
    font-size: 28px;
    font-weight: 600;
    color: rgb(34, 43, 69);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.name_blocks:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 75px;
    height: 1px;
    background: rgb(0, 104, 255);
}

a.white_mores {
    opacity: 0;
    -webkit-transition: 300ms;
    transition: 300ms;
    width: 140px;
    height: 40px;
    padding: 0px 30px;
    border-radius: 30px;
    background-color: rgb(255, 255, 255);
    border-radius: 40px;
    font-size: 13px;
    line-height: 1.5;
    color: rgb(0, 104, 255);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 20px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.mini_other_news:hover a.white_mores {
    opacity: 1;
}

.toggle_mobile_menu,
.close_mobile_menu,
.mobile_show {
    display: none;
}

.name_slider {
    padding-right: 120px;
}

.biblioteka_filter {
    padding-bottom: 100px;
}

.wrap_right_section.hide_mobile > .wrap_right_section{
    padding-left: 0px;
    width: 100%;
}

.one_documents.text_not_content{
    display: block;
    width: 100%;
    background: transparent;
    padding: 25px 0px;
}

@media screen and (max-width:1200px) {
    .toggle_mobile_menu {
        display: block;
        width: 40px;
        height: 20px;
    }

    .toggle_mobile_menu span {
        display: block;
        position: absolute;
        width: 100%;
        height: 4px;
        background: rgb(34, 43, 69);
        left: 0px;
        top: 50%;
        margin-top: -2px;
    }

    .toggle_mobile_menu:after,
    .toggle_mobile_menu:before {
        content: "";
        position: absolute;
        top: 0px;
        width: 100%;
        height: 4px;
        left: 0px;
        background: rgb(34, 43, 69);
    }

    .toggle_mobile_menu:after {
        top: auto;
        bottom: 0px;
    }

    .close_mobile_menu {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
        display: block;
    }

    .close_mobile_menu:before,
    .close_mobile_menu:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0px;
        height: 4px;
        width: 100%;
        margin-top: -2px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        background: rgb(34, 43, 69);
    }

    .close_mobile_menu:after {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .menu_top {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background: rgb(255, 255, 255);
        z-index: 11;
        display: none;
    }

    .menu_top ul {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 100%;
    }

    .menu_top ul li {
        margin: 0px;
        margin-bottom: 25px;
    }

    .menu_top a:after {
        bottom: -10px;
    }

    header {
        z-index: 10;
        padding: 15px 0px;
    }

    .content .to_content_clip {
        padding: 10px 0px;
    }

    .news_blocks {
        padding: 45px 15px;
    }

    .other_news_blocks {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row_col_sect {
        padding: 30px 0px 45px;
    }

    .gray_section {
        padding: 45px 0px;
    }

    .gray_block_to_lines {
        margin-top: 55px;
        margin-bottom: 55px;
    }

    .container.to_content_clip.padd_15 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width:1068px) {

    .wrap_left_section,
    .wrap_right_section {
        width: 100%;
        padding-left: 0px;
    }

    .image_aft_bef_textss {
        width: 280px
    }

    .text_to_line {
        width: calc(100% - 280px);
    }

    .container.to_content_clip.padd_15 .wrap_left_section {
        margin-bottom: 20px;
    }

    .text_absolute a {
        font-size: 15px;
        font-weight: 600;
        line-height: 1.5;
        color: #ffffff;
    }

    .to_content_single .wrap_right_section .wrap_right_section {
        display: none;
    }

    .to_content_single {
        padding-bottom: 45px;
    }

    .to_content_single .wrap_left_section {
        width: 100%;
    }

    .mobile_show {
        display: block;
        margin-bottom: 20px;
        width: 100%;
    }

    .mobile_show img {
        max-width: 100%;
        height: auto;
    }

    .hide_mobile {
        display: none;
    }

    .one_documents,
    .one_documents:nth-child(3n) {
        width: calc(50% - 5px);
        margin-right: 10px;
    }

    .one_documents:nth-child(2n) {
        margin-right: 0px;
    }
}

@media screen and (max-width:768px) {
    footer .flexline.j_line_between.wrap_line.f_line_top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    footer .flexline.j_line_between.wrap_line.f_line_top > div:not(:last-child) {
        margin-bottom: 15px;
    }

    .soc_footer {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }

    footer {
        padding: 45px 0px 40px;
    }

    .gray_block_to_lines:before {
        height: 100%;
    }

    .this_toggle_rew:nth-child(2n-1),
    .this_toggle_rew {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .this_toggle_rew:nth-child(2n) {
        padding-right: 0px;
    }

    .this_toggle_rew:nth-child(2n - 1) {
        margin-bottom: 25px;
    }

    .this_toggle_rew > div {
        width: 100%;
        max-width: 450px;
    }

    .this_news_page .mini_other_news,
    .mini_other_news:nth-child(3n) {
        width: calc(50% - 5px);
        margin-right: 5px !important;
    }

    .this_news_page .mini_other_news:nth-child(2n) {
        margin-right: 0px !important;
    }

    .wrap_left_section h1 {
        font-size: 32px;
        line-height: normal;
    }

    .this_docums_page {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .this_docums_page > div {
        width: 100%;
        margin-left: 0px;
        margin-right: 0px;
    }

    .this_docums_page .left_documents {
        padding-top: 25px;
    }

    .to_content_single .wrap_right_section.tis_docums_singles {
        width: 100%;
        max-width: 400px;
        padding-left: 0px;
    }

    .gray_line_about_partners .one_slide,
    .gray_line_about_partners .one_slide:nth-child(3n) {
        width: calc(50% - 5px);
        margin-right: 10px;
    }

    .gray_line_about_partners .one_slide:nth-child(2n) {
        margin-right: 0px;
    }

    .big_other_news.flexline.wrap_line.j_line_between.flexline_all {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .image_other_news {
        width: 100%;
        margin-bottom: 15px;
    }

    .text_other_news {
        padding-left: 0px;
        width: 100%;
    }

    .wrap_left_section .mini_other_news,
    .wrap_left_section .mini_other_news:nth-child(3n) {
        margin-right: 0px;
        width: 100%;
        margin-bottom: 10px;
    }

    .biblioteka_filter {
        padding-bottom: 45px;
    }

}


@media screen and (max-width:560px) {
    .pfone_top {
        padding: 5px;
        font-size: 13px;
    }

    .pfone_top img,
    .pfone_bottom img {
        margin-right: 5px;
    }

    .logo img {
        width: 140px;
    }

    .wrap_left_section h1 {
        font-size: 25px;
    }

    .this_news_page .mini_other_news,
    .mini_other_news:nth-child(3n),
    .mini_other_news:nth-child(2n) {
        margin-right: 0px !important;
        width: 100%;
    }

    .one_documents,
    .one_documents:nth-child(3n),
    .one_documents:nth-child(2n) {
        width: 100%;
        margin-right: 0px;
    }

    .name_section_to_line {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .name_slider {
        font-size: 22px;
    }
}

@media screen and (max-width:380px) {
    .pfone_top.flexline.f_line_center {
        display: none;
    }
}
