html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
sub,
sup,
tt,
var,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
/* Общие настройки */
html,
body {
    font-size: 14px;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body {
    color: #222;
    line-height: 1.6;

    font-weight: normal;
    font-family: "Roboto", sans-serif;
    font-size: 14px;

    height: 100%;
    width: 100%;
}

/* inputs */
input,
textarea,
select {
    font-family: "Roboto", sans-serif;
}
input,
textarea,
select,
div,
a {
    outline: none;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.input {
    width: 100%;
    padding: 10px 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    font-size: 16px;
    outline: none;
    -webkit-appearance: none;
}
select.input {
    appearance: auto;
}
input[type="submit"],
input[type="button"] {
    background: none;
    -webkit-appearance: none;
}
.input.error {
    border-color: _red;
    box-shadow: 0px 0px 1px 1px _red inset;
}
textarea.input {
    resize: none;
    height: 150px;
}

.select-noarrow {
    -ms-appearance: none;
    -o-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
.noselect,
.btn {
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.anim,
.imgzoom img,
.h2 a:after,
.h2 a:before {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
img {
    vertical-align: top;
}

/* width and height*/
.winit {
    width: initial !important;
}
.w10 {
    width: 10%;
}
.w19 {
    width: 19%;
}
.w20 {
    width: 20%;
}
.w23 {
    width: 23%;
}
.w24 {
    max-width: 24%;
    width: 24%;
}
.w25 {
    width: 25%;
}
.w30 {
    width: 30%;
}
.w32 {
    width: 32%;
}
.w33 {
    width: 33%;
}
.w35 {
    width: 35%;
}
.w40 {
    width: 40%;
}
.w48 {
    width: 48%;
}
.w49 {
    width: 49%;
}
.w50 {
    width: 50%;
}
.w60 {
    width: 60%;
}
.w65 {
    width: 65%;
}
.w70 {
    width: 70%;
}
.w74 {
    width: 74%;
}
.w75 {
    width: 75%;
}
.w77 {
    width: 77%;
}
.w79 {
    width: 79%;
}
.w80 {
    width: 80%;
}
.w90 {
    width: 90%;
}
.w95 {
    width: 95%;
}
.w97 {
    width: 97%;
}
.w98 {
    width: 98%;
}
.w99 {
    width: 99%;
}
.w100 {
    width: 100%;
}
.h100 {
    height: 100%;
}

/* display */
.flex {
    display: flex;
}
.flex.row {
    flex-direction: row;
}
.flex.row-rev {
    flex-direction: row-reverse;
}
.flex.column {
    flex-direction: column;
}
.flex.wrap {
    flex-wrap: wrap;
}
.flex.start {
    align-items: flex-start;
}
.flex.end {
    align-items: flex-end;
}
.flex.baseline {
    align-items: baseline;
}
.flex.center {
    align-items: center;
}
.flex.stretch {
    align-items: stretch;
}
.flex.between {
    justify-content: space-between;
}
.flex.jcenter {
    justify-content: center;
}
.flex.jend {
    justify-content: end;
}
.flex.shrink {
    flex-shrink: 0;
}
.flex.grow1 {
    flex-grow: 1;
}
.relative {
    position: relative;
}
.fixed {
    position: fixed;
}
.hide {
    display: none;
}
.inline {
    display: inline !important;
}
.table-cell {
    display: table-cell;
}
.overflow {
    overflow: hidden;
}
.auto {
    overflow: auto;
}
.break {
    white-space: break-spaces;
}

.cursor {
    cursor: pointer;
}

/* absolute */
.absolute {
    position: absolute;
}
.l0 {
    left: 0;
}
.r0 {
    right: 0;
}
.b0 {
    bottom: 0;
}
.t0 {
    top: 0;
}

/* fonts */
.f10 {
    font-size: 10px;
}
.f12 {
    font-size: 12px;
}
.f14 {
    font-size: 14px;
}
.f16 {
    font-size: 16px;
}
.f18 {
    font-size: 18px;
}

/* padding */
.p25 {
    padding: 25px;
}
.pt25 {
    padding-top: 25px;
}
.pr25 {
    padding-right: 25px;
}
.pb25 {
    padding-bottom: 25px;
}
.pl25 {
    padding-left: 25px;
}
.p15 {
    padding: 15px;
}
.pt15 {
    padding-top: 15px;
}
.pr15 {
    padding-right: 15px;
}
.pb15 {
    padding-bottom: 15px;
}
.pl15 {
    padding-left: 15px;
}
.p10 {
    padding: 10px;
}
.pt10 {
    padding-top: 10px;
}
.pr10 {
    padding-right: 10px;
}
.pb10 {
    padding-bottom: 10px;
}
.pl10 {
    padding-left: 10px;
}
.p5 {
    padding: 5px;
}
.pt5 {
    padding-top: 5px;
}
.pr5 {
    padding-right: 5px;
}
.pb5 {
    padding-bottom: 5px;
}
.pl5 {
    padding-left: 5px;
}
.p0 {
    padding: 0 !important;
}
.pt0 {
    padding-top: 0 !important;
}
.pr0 {
    padding-right: 0 !important;
}
.pb0 {
    padding-bottom: 0 !important;
}
.pl0 {
    padding-left: 0 !important;
}

/* margin */
.m25 {
    margin: 25px;
}
.mt25 {
    margin-top: 25px;
}
.mr25 {
    margin-right: 25px;
}
.mb25 {
    margin-bottom: 25px;
}
.ml25 {
    margin-left: 25px;
}
.m15 {
    margin: 15px;
}
.mt15 {
    margin-top: 15px;
}
.mr15 {
    margin-right: 15px;
}
.mb15 {
    margin-bottom: 15px;
}
.ml15 {
    margin-left: 15px;
}
.m-15 {
    margin: -15px;
}
.mt-15 {
    margin-top: -15px;
}
.mr-15 {
    margin-right: -15px;
}
.mb-15 {
    margin-bottom: -15px;
}
.ml-15 {
    margin-left: -15px;
}
.m10 {
    margin: 10px;
}
.mt10 {
    margin-top: 10px;
}
.mr10 {
    margin-right: 10px;
}
.mb10 {
    margin-bottom: 10px;
}
.ml10 {
    margin-left: 10px;
}
.m5 {
    margin: 5px;
}
.mt5 {
    margin-top: 5px;
}
.mr5 {
    margin-right: 5px;
}
.mb5 {
    margin-bottom: 5px;
}
.ml5 {
    margin-left: 5px;
}
.m0 {
    margin: 0 !important;
}
.mt0 {
    margin-top: 0 !important;
}
.mr0 {
    margin-right: 0 !important;
}
.mb0 {
    margin-bottom: 0 !important;
}
.ml0 {
    margin-left: 0 !important;
}

.page_wrapper {
    width: 100%;
    min-height: 100%;
    position: relative;
    margin: 0 auto;
    max-width: 1920px;
    min-width: 375px;
}
.wrapper {
    padding: 0 15px;
    position: relative;
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    min-width: 375px;
}
::placeholder {
    color: #a7a7a7;
}

/* case */
.uppercase {
    text-transform: uppercase;
}

/* color */
.bblue {
    background-color: #1c79c3;
}

/* */
.headline_clear {
    width: 100%;
    height: 80px;
}
.header {
    height: 60px;
    color: white;
    top: 0;
    z-index: 100;
}
.header .menu {
    background: url("../i/header/menu.svg") center center no-repeat;
    width: 57px;
    height: 60px;
}
.header .menu:hover {
    background: url("../i/header/menu_hover.svg") center center no-repeat;
}
.header .menu.active {
    background: url("../i/header/close.svg") center center no-repeat;
}
.header .logo {
    margin: 0 5px;
}
.header .wordmark {
    max-width: 245px;
    line-height: 13px;
    font-style: normal;
    opacity: 0.7;
    margin-left: 11px;
}

.header .search:before {
    border-left: 1px solid;
    height: 34px;
    content: "";
    opacity: 0.3;
}
.header .search a {
    position: relative;
    z-index: 1;
    background: url("../i/header/search.svg") center center no-repeat;
    width: 63px;
    height: 60px;
    opacity: 0.7;
}
.header .search a:hover {
    opacity: 1;
}
.header .search.active a {
    background: url("../i/header/close.svg") center center no-repeat;
    background-color: #1569ac;
    opacity: 1;
}
.header .search.active:before {
    display: none;
}
.header .search.active .form {
    display: flex;
}
.header .search .form {
    position: relative;
    display: none;
}
.header .search .form input.text {
    border-radius: 0;
    height: 60px;
    width: 449px;
    box-shadow: 0px 3px 32px rgb(0 0 0 / 16%);
    padding-left: 20px;
    padding-right: 120px;
}
.header .search .form input.submit {
    border-radius: 0;
    cursor: pointer;
    opacity: 0.5;
    position: absolute;
    right: 9px;
    top: 10px;
    background: #fe6618;
    color: white;
    font-weight: bold;
    width: 101px;
    padding: 12px 0;
}
.header .search .form input.submit:hover {
    opacity: 1;
}

.header .radio {
    display: none;
}
.header .radio.active {
    display: flex;
}
.header .radio span {
    margin-right: 15px;
}
.header .play {
    margin-right: 19px;
}

.menu_more {
    width: 290px;
    box-shadow: 0px 3px 32px rgb(0 0 0 / 16%);
    display: none;
}
.menu_more.active {
    display: flex;
}
.menu_more .auto {
    max-height: 100%;
}
.menu_more ul {
    font-weight: 500;
    padding: 26px 30px 10px;
}
.menu_more ul li b {
    opacity: 0.5;
    font-size: 15px;
    display: flex;
}
.menu_more ul li {
    padding-bottom: 6px;
}
.menu_more ul.f14 li b {
    padding-bottom: 3px;
}
.menu_more ul.f16 li {
    padding-bottom: 8.5px;
}
.menu_more ul li a {
    display: flex;
}
.menu_more ul li a:hover {
    opacity: 0.7;
}

.menu_more .socium {
    position: absolute;
    bottom: 0;
    width: 100%;
}
.menu_more .socium > a {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    padding: 0 5px;
}
.menu_more .socium > a:hover {
    opacity: 0.7;
}
.menu_more .socium > a img {
    vertical-align: middle;
}

.menu_more .auto {
    scrollbar-width: thin;
    scrollbar-color: #1c79c3 white;
}
.menu_more .auto::-webkit-scrollbar {
    width: 10px;
}
.menu_more .auto::-webkit-scrollbar-track {
    background: #1c79c3;
}
.menu_more .auto::-webkit-scrollbar-thumb {
    background-color: gray;
    border-radius: 5px;
    border: 3px solid #1c79c3;
}

/* button play*/
.play {
    background: #fe6618;
    min-width: 32px;
    min-height: 32px;
    position: relative;
}
.play:before,
.imgzoom .video:after {
    background: url("../i/header/play.svg") center center no-repeat;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    padding-left: 3px;
}
.play:hover {
    background-color: #ff732c;
}
.play.active:before {
    background: url("../i/header/stop.svg") center center no-repeat;
    padding-left: 0;
}
.imgzoom .video {
    background: #fe6618;
    min-width: 32px;
    min-height: 32px;
    position: absolute;
    z-index: 3;
    bottom: 10px;
    right: 10px;
}

/* h1 - h6 */
.h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    text-align: left;
    color: #222222;
}
.h3:hover {
    opacity: 0.7;
}
.h2 {
    font-size: 15px;
    font-weight: bold;
    line-height: 20px;
    text-align: left;
    color: #222222;
    position: relative;
    margin-bottom: 17px;
}
.h2 a {
    padding: 14px 20px;
    display: flex;
    position: relative;
    align-items: center;
    border-bottom: 2px solid transparent;
}
.h2:after {
    content: "";
    position: absolute;
    border-bottom: 2px solid #1c79c3;
    bottom: 0;
    right: 0;
    left: 0;
}
.h2 a:after {
    content: "";
    background: url("../i/header/h2-right.svg") 0 center no-repeat;
    width: 8px;
    height: 12px;
    margin-left: 7px;
    margin-top: -2px;
}
.h2:hover a:after {
    margin-left: 12px;
}

.h2.v2 {
    margin-bottom: 10px;
}
.h2.v2 a {
    padding: 7px 0 14px;
}
.h2.v2 a:before {
    content: "";
    position: absolute;
    border-bottom: 3px solid #1c79c3;
    top: 0;
    width: 38px;
    left: 0;
}
.h2.v2:hover a:before {
    left: -5px;
}

.h1 {
    font-size: 38px;
    font-weight: 500;
    line-height: 42px;
    margin-bottom: 11px;
}

/* main */
.main .left {
    width: 73.3%;
}
.main_block > div:first-child .imgzoom {
    max-height: 400px;
}
.main_block > div:first-child {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
}
.main_block > div:first-child .bottom {
    z-index: 5;
    bottom: 40px;
    padding-left: 30px;
    color: #fff;
    position: absolute;
}
.main_block > div:first-child .bottom .time {
    color: #fff;
}
.main_block > div:first-child .bottom .tag {
    color: #fff !important;
}
.main_block > div:first-child .h3 {
    font-family: "PT Serif", serif;
    font-size: 30px;
    font-weight: bold;
    line-height: 36px;
    text-align: left;
    z-index: 5;
    padding-left: 30px;
    width: 80%;
    position: absolute;
    bottom: 77px;
    color: #ffffff;
}
.main_block > div:first-child .imgzoom:before {
    pointer-events: none;
    position: absolute;
    bottom: 0;
    content: "";
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    width: 100%;
    height: 100%;
    opacity: 0.3;
}
.main_block > div {
    width: 32.2%;
    position: relative;
    margin-bottom: 30px;
}
.main_block .bottom {
    bottom: 0;
    color: #767676;
    margin-top: 20px;
}
a.tag {
    border: 1px solid #d3d3d3;
    padding: 3px 6px;
    margin-right: 7px;
    letter-spacing: 0.2px;
    color: #767676 !important;
    text-decoration: none !important;
}
a.tag:hover {
    background-color: #fe6618;
    border-color: transparent;
    color: white;
}
.main_block > div .imgzoom {
    max-height: 160px;
    margin-bottom: 15px;
}
.imgzoom {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main_block > div:first-child:hover .imgzoom img {
    transform: scale(1.2) rotate(0deg);
}
.imgzoom:hover img {
    transform: scale(1.2) rotate(0deg);
}
.imgzoom img {
    min-width: 100%;
    min-height: 100%;
    object-fit: contain;
    display: flex;
}
.time {
    color: #767676;
}

.main .right {
    width: 25%;
}
.main_news {
    background-color: #f3f5f7;
    position: relative;
    height: 717px;
}
.main_news .auto {
    max-height: 100%;
    height: 100%;
}
.main_news:after {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(243, 245, 247, 0) 0%, #f3f5f7 100%);
}
.main_news ol {
    counter-reset: my-awesome-counter;
}
.main_news ol li {
    font-size: 14px;
    counter-increment: my-awesome-counter;
    padding: 0 20px 0 52px;
    position: relative;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 24px;
}
.main_news ol li:before {
    content: "";
    width: 14px;
    height: 14px;
    background-color: #fe6618;
    padding-left: 14px;
    margin-right: 11px;
}
.main_news ol li:after {
    content: counter(my-awesome-counter);
    width: 52px;
    left: 0;
    top: 3px;
    position: absolute;
    font-size: 20px;
    line-height: 20px;
    font-style: normal;
    text-align: center;
    color: #767676;
}
.main_news ol li:hover {
    opacity: 0.7;
}
.main_news .auto::-webkit-scrollbar {
    display: none;
}
.main_news .auto::-webkit-scrollbar-thumb {
    border-radius: 0;
    border: none;
}

.second_block .first {
    width: 50%;
    padding-right: 20px;
}
.parliament {
    margin-bottom: 30px;
    position: relative;
}
.parliament .bottom {
    z-index: 5;
    bottom: 17px;
    padding-left: 20px;
    color: #fff;
    position: absolute;
}
.parliament .bottom .time {
    color: white;
}
.parliament .head {
    position: relative;
}
.parliament .head .imgzoom {
    height: 327px;
}
.parliament .head .h3 {
    font-weight: bold;
    font-size: 28px;
    font-weight: 500;
    line-height: 31px;
    position: absolute;
    z-index: 5;
    padding-left: 20px;
    width: 80%;
    position: absolute;
    bottom: 46px;
    text-align: left;
    color: #ffffff;
}
.parliament .imgzoom:before {
    pointer-events: none;
    position: absolute;
    bottom: 0;
    content: "";
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    width: 100%;
    height: 100%;
    opacity: 0.3;
}
.parliament:hover .imgzoom img {
    transform: scale(1.2) rotate(0deg);
}

.minds > div {
    padding-top: 10px;
    width: 48%;
}
.minds .mind {
    margin-bottom: 14px;
}
.minds .mind:last-child {
    margin-bottom: 0;
}
.minds .mind .img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}
.minds .mind .img img {
    min-width: 60px;
    object-fit: cover;
    min-height: 60px;
    display: flex;
}
.minds .mind .text {
    padding-left: 10px;
}
.minds blockquote {
    font-family: "PT Serif", serif;
    font-style: italic;
    font-size: 17px;
    line-height: 20px;
    font-weight: bold;
    padding-bottom: 13px;
}
.minds .name:before {
    content: "";
    background: url("../i/header/blockquote.svg") 0 0 no-repeat;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    bottom: -2px;
}
.minds .name {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}
.minds .more {
    font-family: "PT Serif", serif;
    font-size: 15px;
    line-height: 20px;
}

.second_block {
    margin-bottom: 26px;
}
.second_block .second {
    width: 25%;
    border-left: 1px solid #d3d3d3;
    padding: 0 19px;
}
.second_block .three {
    width: 25%;
    border-left: 1px solid #d3d3d3;
    padding-left: 19px;
}
.second_block .time {
    color: #767676;
}
.union_state > div {
    padding-top: 10px;
    padding-bottom: 17px;
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 9px;
}
.union_state > div:last-child {
    padding-top: 10px;
    padding-bottom: 0px;
    border-bottom: none;
    margin-bottom: 0;
}
.union_state > div .h3 {
    margin-bottom: 11px;
}
.union_state > div p {
    font-family: "PT Serif", serif;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 17px;
}

.ruby {
    padding-top: 11px;
    padding-left: 23px;
}
.ruby li {
    position: relative;
}
.ruby li:before {
    position: absolute;
    content: "";
    background: #d3d3d3;
    width: 1px;
    height: 100%;
    top: 0;
    left: -17px;
    top: 3px;
}
.ruby li:last-child:before {
    display: none;
}
.ruby li:last-child .time {
    padding-bottom: 0;
}
.ruby li:after {
    position: absolute;
    content: "";
    background: url(../i/header/point.svg) 0 0 no-repeat;
    width: 13px;
    height: 13px;
    left: -23px;
    top: 3px;
}
.ruby a {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 5px;
    font-family: "PT Serif", serif;
}
.ruby .time {
    padding-bottom: 18px;
}
.ruby a:hover {
    opacity: 0.7;
}

.blueline {
    padding: 14px 0;
    width: 100%;
    margin-bottom: 31px;
}
.blueline.mobile {
    display: none;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: initial;
}
.blueline .head {
    font-size: 15px;
    line-height: 22px;
    font-weight: bold;
    color: #ffffff;
}
.blueline .buttons {
    width: 81.6%;
}
.blueline .buttons a {
    font-family: "PT Serif", serif;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    width: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 0;
    background: white;
}
.blueline .buttons a img {
    margin-right: 9px;
}
.blueline .in {
    width: 100%;
}

.second_block.v2 {
    margin-bottom: 30px;
}
.second_block.v2 .second {
    padding-right: 0;
}
.second_block.v2 .three {
    border: none;
}

.first_face .imgzoom {
    margin-bottom: 21px;
    height: 327px;
}
.first_face .h3 {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 28px;
    font-weight: bold;
}
.first_face p {
    font-family: "PT Serif", serif;
    font-size: 16px;
    line-height: 21px;
    padding-bottom: 23px;
}
.first_face .time {
    color: #767676;
}

.stars {
    margin-bottom: 25px;
}
.stars:last-child {
    margin-bottom: 0;
}
.stars .imgzoom {
    height: 158px;
    margin-bottom: 15px;
}
.stars .h3 {
    margin-bottom: 12px;
}

.second_block .first.v2 {
    padding-right: 0;
    padding-left: 20px;
    border-left: 1px solid #d3d3d3;
}

.second_block .first.v2 .partner {
    margin-bottom: 30px;
}
.second_block .first.v2 .narod {
    padding: 0 2.5%;
}
.second_block .first.v2 .button_archive {
    background: #fe6618;
    flex-grow: 1;
}
.second_block .first.v2 .button_archive a {
    margin-top: 4px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
    color: white;
    padding: 0 13px;
}
.second_block .first.v2 .button_archive:hover {
    background-color: #ff732c;
}

.grayline {
    background-color: #f3f5f7;
    margin-top: 41px;
    min-width: 375px;
}
.grayline a {
    font-weight: 500;
    font-size: 14px;
    padding: 19px 1.5%;
}
.grayline a:hover {
    opacity: 0.7;
}

.footer {
    padding-top: 40px;
    color: #fff;
    padding-bottom: 28px;
    min-width: 375px;
}
.footer p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 19px;
    padding-bottom: 19px;
}
.footer .text {
    width: 88%;
}
.footer .text > div {
    width: 100%;
    padding-bottom: 17px;
}
.footer .text > div:last-child {
    padding-left: 74px;
}

/* agr*/
.agr .main_news {
    height: 550px;
    margin-bottom: 30px;
}
.agr .main_block > div {
    margin-bottom: 21px;
}
.agr .main_block > div:first-child {
    margin-bottom: 0;
}
.tags {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 2px solid #1c79c3;
    width: 100%;
}
.tags li {
    display: flex;
    margin-right: 8px;
}
.tags a {
    padding: 4px 12px;
    background-color: #f3f5f7;
    white-space: nowrap;
}
.tags li:last-child {
    margin-right: 0;
}
.tags a.active {
    background-color: #1c79c3;
    color: white;
}
.tags a:hover {
    background-color: #eaeef2;
}
.tags.auto::-webkit-scrollbar {
    display: none;
}
.tags.auto::-webkit-scrollbar-thumb {
    border-radius: 0;
    border: none;
}

.agr .right .stars {
    margin-bottom: 26px;
}
.agr .right .minds {
    margin-bottom: 26px;
}
.agr .minds .name {
    margin-bottom: 0;
}
.agr .right .minds .mind {
    margin-bottom: 25px;
}
.agr .right .minds .mind:last-child {
    margin-bottom: 0;
}
.agr .stars .imgzoom {
    height: 168px;
}
.agr .stars p {
    font-size: 16px;
    line-height: 22px;
    padding-bottom: 17px;
}
.agr .stars .time {
    color: #767676;
}
.agr .minds > div {
    width: 100%;
}

.agr_item {
    width: 100%;
}
.agr_item .item {
    border-top: 1px solid #d3d3d3;
    width: 100%;
    padding-top: 20px;
    margin-bottom: 20px;
}
.agr_item .item .imgzoom {
    width: 250px;
    height: 141px;
    border-left: 1px solid #d3d3d3;
    min-width: 250px;
}
.agr_item .item .h3 {
    margin-bottom: 10px;
}
.agr_item .item .h3 b {
    background-color: #fedfd0;
}
.agr_item .item .text p b {
    background-color: #fedfd0;
    font-weight: normal;
}
.agr_item .item .text {
    padding-left: 25px;
}
.agr_item .item .text p {
    font-family: "pt serif";
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 20px;
}

.button_loading {
    width: 100%;
    background: #f3f5f7;
    font-size: 16px;
    line-height: 16px;
    padding: 12px 0;
}
.button_loading:hover {
    background: #eaeef2;
}
.button_loading img {
    margin-right: 10px;
    display: none;
}
.button_loading.active {
    padding: 11px 0;
}
.button_loading.active span {
    opacity: 0.3;
}
.button_loading.active img {
    display: flex;
}
.button_loading img,
.loading_article img {
    animation: 1s linear 0s normal none infinite running rot;
    -webkit-animation: 1s linear 0s normal none infinite running rot;
}
@keyframes rot {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes rot {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading_article {
    width: 100%;
    font-size: 20px;
    line-height: 14px;
    padding: 38px 0;
    color: #d3d3d3;
}
.loading_article img {
    display: flex;
    width: 29px;
    margin-right: 12px;
}

/* Search */
.search_block {
    width: 100%;
    position: relative;
    margin-bottom: 4px;
}
.search_block input {
    width: 100%;
    padding-bottom: 9px;
    font-family: "roboto";
    font-size: 34px;
    font-weight: 500;
    line-height: 38px;
    color: #222222;
    border-bottom: 2px solid #1c79c3;
}
.search_block .icon {
    cursor: pointer;
    position: absolute;
    right: 0;
    background: url("../i/header/search_page.svg") center center no-repeat;
    width: 26px;
    height: 26px;
    padding: 10px 0;
}
.search_block .icon:hover {
    opacity: 0.7;
}
.search_page.agr_item .item:first-child {
    border-top: 0;
}

.no-search {
    padding-top: 25px;
    padding-bottom: 50px;
}
.no-search .head {
    font-family: "roboto";
    font-size: 20px;
    font-weight: bold;
    line-height: 26px;
    color: #2e384d;
    padding-bottom: 13px;
}
.no-search p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #767676;
    width: 90%;
    text-align: center;
}
.link {
    color: #1c79c3;
    text-decoration: underline;
}
.link:hover {
    color: #222;
    text-decoration: none;
}

/* newspapers */
.newspapers {
    padding-top: 8px;
    padding-bottom: 27px;
}
.newspapers > div {
    width: 48.9%;
}
.newspapers_archive > div {
    width: 23.4%;
    margin-bottom: 15px;
}
.newspapers_archive > div .h3 {
    padding: 5px 11px 0;
}
.newspapers_archive > div .time {
    padding: 2px 11px 0;
    font-size: 12px;
}
.newspapers_archive > .imgzoom {
    max-width: 206px;
    max-height: 271px;
}
.newspapers > div .imgzoom {
    max-width: 432px;
    max-height: 568px;
}

.newspapers_archive > div .imgzoom {
    max-width: 206px;
    max-height: 271px;
}

/* authors */
.authors {
    width: 89%;
    padding-bottom: 26px;
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 24px;
}
.authors:last-child {
    border-bottom: none;
}
.authors .letter {
    font-family: "roboto";
    opacity: 0.5;
    font-size: 250px;
    font-weight: bold;
    line-height: 198px;
    color: #d3d3d3;
    width: 27%;
}
.authors ul {
    font-family: "pt serif";
    font-size: 18px;
    line-height: 34px;
    width: 75%;
}
.authors ul:last-child {
    padding-right: 0;
}
.authors ul li {
    width: 48.2%;
    padding-left: 0.4%;
    text-transform: capitalize;
}
.authors ul a:hover {
    color: #1c79c3;
}
.h1.author {
    padding-top: 11px;
    padding-bottom: 11px;
}

/* author */
.author_page.h1 {
    padding-bottom: 14px;
    border-bottom: 2px solid #1c79c3;
    margin-bottom: 0px;
}

/* errors page */
.error_page {
    padding-top: 107px;
    padding-bottom: 228px;
}
.error_page h1 {
    font-family: "pt serif";
    font-size: 44px;
    font-weight: bold;
    line-height: 44px;
    margin-bottom: 16px;
}
.error_page p {
    font-family: "pt serif";
    font-size: 20px;
    line-height: 30px;
    color: #767676;
    padding-bottom: 29px;
}
.error_page ul {
    font-family: "roboto";
    font-size: 18px;
    line-height: 28px;
}
.error_page ul li {
    margin-bottom: 15px;
    padding-left: 26px;
    position: relative;
}
.error_page ul li a:hover {
    opacity: 0.7;
}
.error_page ul li:before {
    position: absolute;
    top: 8px;
    content: "";
    width: 12px;
    height: 12px;
    left: 0;
    background: url("../i/header/circle.svg") 0 center no-repeat;
}

.error_code {
    position: absolute;
    right: 15px;
    margin-top: 68px;
}

/* article */
.article_block .main .left {
    width: 69.2%;
}
.tagblock {
    margin-bottom: 9px;
}
.tagblock .tag {
    margin-right: 10px;
}
.tagblock .time {
    margin-right: 10px;
}
.tagblock .author {
    font-family: "roboto";
    color: #767676;
    font-size: 14px;
    padding-bottom: 0;
}
.tagblock .author a {
    color: #222;
    text-decoration: none;
}
.tagblock .author a:hover {
    color: #1c79c3;
}

.body_article {
    padding-left: 50px;
    width: 100%;
}
.article {
    padding-bottom: 11px;
}
.article h1 {
    font-family: "roboto";
    font-size: 48px;
    font-weight: bold;
    line-height: 48px;
    margin-bottom: 15px;
}
.article h2 {
    font-family: "roboto";
    font-size: 28px;
    font-weight: bold;
    line-height: 28px;
    color: #2e384d;
    margin-bottom: 23px;
}
.article h3 {
    font-family: "roboto";
    font-size: 20px;
    font-weight: bold;
    line-height: 26px;
    color: #2e384d;
    padding-bottom: 10px;
}
.article h4 {
    font-family: "roboto";
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    color: #767676;
    margin-bottom: 26px;
}
.article .imgzoom {
    max-height: 521px;
    margin-bottom: 7px;
    max-width: 100%;
}
.article figure {
    margin-bottom: 20px;
}
.article figcaption {
    color: #767676;
    font-size: 14px;
}
.article p,
.article div.p {
    font-family: "pt serif";
    font-size: 20px;
    line-height: 32px;
    padding-bottom: 32px;
}
.article blockquote {
    position: relative;
    font-family: "pt serif";
    font-size: 24px;
    line-height: 33px;
    font-style: italic;
    color: #2e384d;
    font-weight: bold;
    padding-left: 65px;
    padding-top: 18px;
    margin-bottom: 16px;
}
.article blockquote:before {
    content: "";
    background: url("../i/header/blockquote.svg") 0 0 no-repeat;
    position: absolute;
    top: 0;
    background-size: 100%;
    width: 45px;
    height: 45px;
    left: 0;
}
.article blockquote ~ figcaption {
    padding-left: 65px;
    font-size: 18px;
    margin-bottom: 12px;
}
.article ol {
    counter-reset: my-awesome-counter;
    margin-bottom: 20px;
}
.article ol li {
    counter-increment: my-awesome-counter;
    font-family: "pt serif";
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    position: relative;
    padding-left: 22px;
    margin-bottom: 11px;
}
.article ol li:after {
    font-family: "roboto";
    content: counter(my-awesome-counter);
    top: 9px;
    left: 0;
    position: absolute;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    color: #1c79c3;
}
.article ul {
    margin-bottom: 20px;
}
.article ul li {
    font-family: "pt serif";
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    position: relative;
    padding-left: 22px;
    margin-bottom: 11px;
}
.article ul li:before {
    font-family: "roboto";
    content: "•";
    top: 10px;
    left: 0;
    position: absolute;
    font-size: 24px;
    font-weight: 500;
    line-height: 16px;
    color: #1c79c3;
}
.article table {
    overflow: auto;
    font-size: 16px;
    border: 1px solid #d3d3d3;
    border-bottom: none;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 33px;
}
.article table th {
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    background-color: #f3f5f7;
    padding: 19px 7px;
    border-bottom: 1px solid #d3d3d3;
}
.article table th:first-child {
    text-align: left;
    width: 43%;
    padding: 10px 14px;
    min-width: 200px;
}
.article table td {
    line-height: 22px;
    text-align: center;
    border-bottom: 1px solid #d3d3d3;
    border-left: 1px solid #d3d3d3;
    vertical-align: middle;
}
.article table td:first-child {
    text-align: left;
    padding: 17px 14px 18px;
    border-left: none;
}

.videoplayer2 .imgzoom img {
    z-index: 10;
    position: relative;
}
.videoplayer2.active .imgzoom img {
    visibility: hidden;
}
.videoplayer2.active .imgzoom:before {
    visibility: hidden;
}
.videoplayer2 .imgzoom:before {
    background: url("/local/templates/2023/i/header/play.svg") center center no-repeat;
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #fe6618;
    background-size: 15px;
    z-index: 20;
}
.videoplayer2:hover .imgzoom:before {
    background-color: #ff732c;
    width: 50px;
    height: 50px;
    background-size: 15px;
}

.article .videoplayer {
    width: 100%;
    margin-bottom: 15px;
}
.article .videoplayer iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}
.article .videoplayer .imgzoom {
    max-height: 443px;
    cursor: pointer;
}
.article .videoplayer .imgzoom img {
    z-index: 10;
    position: relative;
}
.article .videoplayer.active .imgzoom img {
    visibility: hidden;
}
.article .videoplayer.active .imgzoom:before {
    visibility: hidden;
}
.article .videoplayer .imgzoom:before {
    background: url("../i/header/play.svg") center center no-repeat;
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #fe6618;
    background-size: 15px;
    z-index: 20;
}
.article .videoplayer:hover .imgzoom:before {
    background-color: #ff732c;
    width: 50px;
    height: 50px;
    background-size: 15px;
}

.article .videoplayer.mini {
    width: 49%;
    margin-bottom: 24px;
}
.article .videoplayer.mini .imgzoom {
    max-height: 214px;
    margin-bottom: 15px;
}
.article .videoplayer.mini figcaption {
    font-size: 16px;
    font-family: "roboto";
    font-weight: 500;
    line-height: 20px;
    color: #222;
}
.article .videoplayer.noimage .imgzoom:before {
    display: none;
}

.article .videoplayer .imgzoom img {
    pointer-events: none;
}

.article .photo2 .imgzoom {
    max-height: 255px;
    width: 49%;
    margin-bottom: 20px;
}

.article .owl-carousel {
    margin-bottom: 10px;
}
.article .owl-carousel .owl-nav {
    position: absolute;
    top: 45.4%;
    width: 100%;
}
.article .owl-carousel .owl-prev {
    left: 20px;
    position: absolute;
    width: 50px;
    height: 50px;
    background: url("../i/header/slide_prev.svg") center center no-repeat !important;
    background-color: #fe6618 !important;
}
.article .owl-carousel .owl-next {
    right: 20px;
    position: absolute;
    width: 50px;
    height: 50px;
    background: url("../i/header/slide_next.svg") center center no-repeat !important;
    background-color: #fe6618 !important;
}
.article .owl-carousel .owl-next:hover,
.article .owl-prev:hover {
    background-color: #ff732c !important;
}
.article .owl-carousel .owl-next span,
.article .owl-prev span {
    display: none;
}
.article .owl-carousel .owl-dots {
    display: flex;
    flex-direction: row;
    margin-top: -2px;
}
.article .owl-carousel button.owl-dot {
    display: flex;
    width: 20%;
    height: 5px;
    background-color: #d3d3d3;
    margin-right: 4px;
}
.article .owl-carousel button.owl-dot:hover {
    opacity: 0.7;
}
.article .owl-carousel button.owl-dot:last-child {
    margin-right: 0;
}
.article .owl-carousel button.owl-dot.active {
    background-color: #1c79c3;
}

.article .listpoints {
    border-top: 1px solid #d3d3d3;
    margin-bottom: 40px;
}
.article .listpoints .point {
    border-bottom: 1px solid #d3d3d3;
}
.article .listpoints .point h5 {
    width: 93%;
    font-family: "roboto";
    position: relative;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #222222;
    padding: 17px 0 22px;
    padding-right: 7%;
    cursor: pointer;
}
.article .listpoints .point h5:after {
    pointer-events: none;
    position: absolute;
    content: "";
    background: url("../i/header/down.svg") center center no-repeat;
    width: 12px;
    height: 100%;
    right: 21px;
    top: -3px;
}
.article .listpoints .point h5:hover:after {
    background: url("../i/header/down_hover.svg") center center no-repeat;
}
.article .listpoints .point.active h5:after {
    background: url("../i/header/up.svg") center center no-repeat;
}
.article .listpoints .point.active h5:hover:after {
    background: url("../i/header/up_hover.svg") center center no-repeat;
}
.article .listpoints .point .more {
    display: none;
}
.article .listpoints .point.active .more {
    display: flex;
}

.article .tests {
    background-color: #f3f5f7;
    margin-bottom: 49px;
}
.article .tests .in {
    padding: 44px 30px 0;
}
.article .tests h2 {
    margin-bottom: 20px;
}
.article .tests .num {
    font-family: "roboto";
    color: #767676;
    padding-bottom: 0;
}
.article .tests .num b {
    color: #222;
}
.article .tests .buttons span {
    cursor: pointer;
    position: relative;
    width: 100%;
    font-size: 18px;
    background-color: white;
    display: flex;
    border: 1px solid #d3d3d3;
    font-weight: 500;
    padding: 12px 19px 10px;
    box-sizing: border-box;
    margin-bottom: 11px;
}
.article .tests .buttons span:hover {
    background: #fafafa;
}
.article .tests .buttons span.error {
    border: 2px solid #d63649;
    margin-bottom: 10px;
}
.article .tests .buttons span.success {
    border: 2px solid #6fb649;
    margin-bottom: 10px;
}
.article .tests .buttons span.error:after {
    background: url("../i/header/error.svg") center center no-repeat;
    width: 26px;
    height: 26px;
    right: 13px;
    content: "";
    position: absolute;
}
.article .tests .buttons span.success:after {
    background: url("../i/header/success.svg");
    width: 26px;
    height: 26px;
    right: 13px;
    content: "";
    position: absolute;
}
.blueline.article {
    margin-bottom: 38px;
    padding-bottom: 14px;
}
.blueline .buttons.body_article {
    width: 69.2%;
}
.blueline .buttons.body_article a {
    font-weight: normal;
    color: #222;
    text-decoration: none;
    font-size: 14px;
}

.article .tests.complete .head {
    flex-direction: column;
    justify-content: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}
.article .tests.complete .head h2 {
    margin-bottom: 7px;
}
.article .tests.complete .in {
    padding-bottom: 0;
    border-bottom: 1px solid #d3d3d3;
}
.article .tests .social {
    margin-top: -10px;
    margin-bottom: 30px;
}
.article .tests .social img {
    width: 50px;
    height: 50px;
}
.article .tests .social a {
    margin: 0 7px;
}
.article .tests .social a:hover {
    opacity: 0.7;
}

.article .tests .result {
    padding-top: 18px;
    margin-bottom: 0px;
}
.article .tests .result .imgzoom {
    max-height: 405px;
    margin-bottom: 14px;
    width: 100%;
}
.article .tests .result figcaption {
    font-size: 18px;
    margin-bottom: 0;
}
.article .tests .bottom {
    padding: 22px 30px 49px;
}
.article .tests.complete .bottom {
    padding-bottom: 18px;
    justify-content: center;
}
.article .tests.complete .button_orange {
    margin-right: 15px;
}
.article .tests.complete .button_orange:last-child {
    margin-right: 0;
}
.article .tests.complete p {
    text-align: center;
}
.article .tests .bottom .button_orange {
    text-decoration: none;
    background-color: #fe6618;
    font-family: "roboto";
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #ffffff;
    padding: 15px 0 17px;
    display: flex;
    width: 227px;
    justify-content: center;
}
.article .tests .bottom .button_orange:hover {
    background-color: #ff732c;
}
.article a {
    color: #1c79c3;
    text-decoration: underline;
}
.article a:hover {
    color: #222;
    text-decoration: none;
}

.rubrica {
    border-bottom: 1px solid #d3d3d3;
    border-top: 1px solid #d3d3d3;
    padding: 20px 0;
    margin-bottom: 32px;
}
.rubrica .imgzoom {
    max-height: 141px;
    max-width: 250px;
    margin-bottom: 0;
    margin-right: 25px;
}
.rubrica h3 {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: bold;
    line-height: 28px;
    color: #222222;
}

.readmore {
    margin-bottom: 15px;
}
.readmore .stars {
    max-width: 236px;
    margin-right: 16px;
    margin-bottom: 10px;
}
.readmore .stars .imgzoom {
    height: 133px;
}
.readmore h2 {
    font-family: "roboto";
    font-size: 28px;
    font-weight: bold;
    line-height: 28px;
    color: #2e384d;
    margin-bottom: 17px;
}
.readmore .h3 {
    margin-bottom: 20px;
}

.article .auto::-webkit-scrollbar,
.readmore .auto::-webkit-scrollbar {
    width: 5px;
}
.article .auto::-webkit-scrollbar-track,
.readmore .auto::-webkit-scrollbar-track {
    border: 5px solid #fff;
    background: #d3d3d3;
    border-left: 0;
    border-right: 0;
}
.article .auto::-webkit-scrollbar-thumb,
.readmore .auto::-webkit-scrollbar-thumb {
    background-color: #1c79c3;
    border-radius: 5px;
    border: 5px solid #fff;
    border-left: 0;
    border-right: 0;
}

.info h1 {
    font-size: 38px;
    font-weight: 500;
    line-height: 38px;
    padding-top: 14px;
    margin-bottom: 23px;
}
.info h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 24px;
    color: #222222;
}
.info .phone b {
    font-family: "roboto";
    color: #2e384d;
}
.info .phone {
    color: #222;
    text-decoration: none;
}
.info .mail {
    color: #767676;
    text-decoration: none;
}
.info .table_rows {
    border-top: 1px solid #d3d3d3;
    margin-top: -10px;
}
.info .table_rows div.row {
    border-bottom: 1px solid #d3d3d3;
    padding: 19px 0 20px;
}
.info .table_rows div.column {
    width: 50%;
}
.info .table_rows p {
    padding-bottom: 0;
    line-height: 27px;
}

/* Mobile */
@media (max-width: 1700px) {
    .menu_more {
        padding-top: 50px;
    }
}

@media (max-width: 1250px) {
    .header .wrapper {
        padding-right: 0px;
    }
    .header .search .form input.text {
        width: 100%;
    }
}
@media (max-width: 1180px) {
    .blueline {
        padding: 23px 0;
    }
    .blueline .head {
        margin-bottom: 18px;
    }
    .blueline .buttons {
        width: 100%;
    }
    .blueline.desktop {
        display: none;
    }
    .blueline.mobile {
        display: flex;
        margin-bottom: 32px;
    }
    .blueline .in {
        flex-direction: column;
        padding: 0;
    }
}

@media (max-width: 1023px) {
    .main.flex.row {
        flex-direction: column;
        margin-bottom: 31px;
    }
    .headline_clear {
        height: 75px;
    }
    .main .left,
    .second_block .first {
        width: 100% !important;
    }
    .main .right {
        width: 100%;
    }
    .main .main_news {
        width: 100%;
        height: auto !important;
    }
    .main .main_news ol {
        flex-direction: row;
        display: flex;
    }
    .main_news ol li {
        min-width: 228px;
        padding-right: 0;
    }
    .main_news:after {
        display: none;
    }
    .second_block .first {
        padding-right: 0;
        margin-bottom: 24px;
    }
    .parliament .head .imgzoom {
        height: 416px;
    }
    .second_block .second {
        width: 50%;
        border-left: 0;
        padding-left: 0;
    }
    .second_block .three {
        width: 50%;
    }
    .blueline {
        padding: 23px 0;
    }
    .blueline .head {
        margin-bottom: 18px;
    }
    .blueline .buttons {
        width: 100%;
    }
    .blueline.desktop {
        display: none;
    }
    .blueline.mobile {
        display: flex;
        margin-bottom: 32px;
    }
    .blueline .in {
        flex-direction: column;
        padding: 0;
    }

    .first_face .imgzoom {
        height: 415px;
    }
    .second_block.v2 .second {
        padding-right: 20px;
    }
    .stars .imgzoom {
        height: 199px;
    }
    .second_block.v2 .three {
        border-left: 1px solid #d3d3d3;
    }
    .second_block.v2 {
        margin-bottom: 22px;
    }
    .second_block .first.v2 {
        padding-left: 0;
        border: none;
    }
    .second_block .first.v2 .w48 {
        width: 48.7%;
    }
    .partner {
        display: none;
    }
    .grayline {
        margin-top: 0;
    }
    .footer .text {
        flex-direction: column;
        width: 80%;
    }
    .footer .text > div:last-child {
        padding: 0;
    }

    .tags {
        padding-bottom: 7px;
        border: 0;
        margin-bottom: 0;
        height: 45px;
    }
    .tags:after {
        content: "";
        border-bottom: 2px solid #1c79c3;
        width: 100%;
        height: 1px;
        left: 0;
        z-index: 1;
        position: absolute;
        margin-top: 39px;
    }
    .main_block > div:first-child .h3 {
        width: 90%;
    }
    .agr .main .right {
        display: none;
    }
    .newspapers > div .imgzoom {
        max-width: 361px;
        max-height: 475px;
    }
    .newspapers_archive > div .imgzoom {
        max-width: 172px;
        max-height: 226px;
    }
    .h1.author {
        padding-top: 5px;
    }
    .authors {
        width: 100%;
    }
    .authors .letter {
        width: 26%;
    }
    .authors ul {
        padding-right: 13.2%;
    }
    .authors ul:last-child {
        padding-right: 0%;
    }
    .error_code {
        position: relative;
        right: auto;
        margin: 0 auto;
        justify-content: center;
        padding-bottom: 35px;
    }
    .error_code img {
        width: 91%;
        max-height: 250px;
    }
    .error_page {
        padding-top: 34px;
        padding-bottom: 11px;
    }
    .error_page .text {
        padding-left: 34px;
    }

    .body_article {
        padding-left: 0;
    }
}

@media (max-width: 899px) {
    .header .wrapper {
        padding-right: 0px;
    }
    .header .search .form input.text {
        width: 100%;
    }
    .header .radio .icon {
        display: none;
    }
    .header .wordmark {
        display: none;
    }

    .menu_more {
        width: 100%;
        padding-top: 0;
        padding-top: 60px;
        min-width: 375px;
    }
    .menu_more .auto {
        border-top: 4px solid white;
        width: 100%;
        padding-bottom: 70px;
    }
    .menu_more .socium {
        padding: 0px 24px;
    }
    .menu_more .socium > a {
        max-width: 82px;
    }
    .menu_more ul {
        padding-left: 52px;
    }
    .readmore .auto::-webkit-scrollbar {
        display: none;
    }

    .minds .mind .img img {
        object-fit: contain !important;
        transform: scale(1.4) rotate(0deg);
    }
}

@media (max-width: 769px) {
    .header .search.active .form {
        position: absolute;
        right: 63px;
        margin-left: 52px;
        left: 0;
    }
    .main_block > div:first-child .imgzoom {
        max-height: 334px;
    }
    .main_block > div .imgzoom {
        max-height: 133px;
    }
}

@media (max-width: 699px) {
    .main_block > div {
        width: 100%;
    }
    .main_block > div .imgzoom {
        max-height: 350px;
        margin-bottom: 13px;
        margin-bottom: 14px;
    }
    .main_block > div:first-child .h3 {
        position: relative;
        color: initial;
        bottom: auto;
        padding-left: 0;
        width: 100%;
        font-size: 26px;
        line-height: 30px;
    }
    .main_block > div:first-child .bottom {
        position: relative;
        bottom: 0;
        color: initial;
        margin-top: 20px;
        padding-left: 0;
    }
    .wrapper {
        padding: 0 12px;
    }
    .main_block > div:first-child {
        margin-bottom: 26px;
    }
    .main_block > div:first-child .bottom .time {
        color: #767676;
    }
    .main_block > div:first-child .bottom .tag {
        color: #767676 !important;
    }
    .main_block .bottom {
        margin-top: 15px;
    }
    .main_block > div {
        margin-bottom: 27px;
    }
    .main .main_news {
        margin-left: -12px;
        margin-right: -12px;
        box-sizing: initial;
        padding: 0 12px;
    }
    .main .main_news .h2 a {
        padding: 15px 0;
    }
    .main .main_news .h2:after {
        left: -12px;
        right: -12px;
    }
    .main_news ol li::after {
        display: none;
    }
    .main_news ol li {
        padding-left: 0;
        padding-right: 20px;
    }

    .parliament .head .imgzoom {
        margin-bottom: 11px;
    }
    .parliament .head .h3 {
        position: relative;
        color: initial;
        bottom: auto;
        padding-left: 0;
        width: 100%;
        font-size: 24px;
        line-height: 30px;
    }
    .parliament .head .bottom {
        position: relative;
        bottom: 0;
        color: initial;
        margin-top: 13px;
        padding-left: 0;
    }
    .parliament .bottom {
        position: relative;
        bottom: 0;
        color: initial;
        margin-top: 11px;
        padding-left: 0;
    }
    .parliament .bottom .time {
        color: #767676;
    }
    .parliament {
        margin-bottom: 26px;
    }
    .minds > div {
        width: 100%;
    }
    .minds .mind {
        margin-bottom: 8px;
    }
    .minds .mind:last-child {
        margin-bottom: 8px;
    }
    .second_block .second {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 27px;
    }
    .second_block .three {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
        border: none;
    }
    .blueline .buttons a {
        width: 48.6%;
        margin-bottom: 10px;
    }
    .blueline {
        padding-bottom: 13px;
    }

    .first_face .imgzoom {
        height: 197px;
        margin-bottom: 14px;
    }
    .first_face .h3 {
        margin-bottom: 14px;
    }
    .first_face p {
        padding-bottom: 15px;
    }
    .second_block.v2 .second {
        padding-right: 0;
        margin-bottom: 2px;
    }
    .second_block.v2 .three {
        border-left: none;
    }
    .second_block.v2 .partner2 {
        flex-wrap: wrap;
        margin-top: 25px;
    }

    .second_block .first.v2 .w48 {
        width: 100%;
    }
    .second_block .first.v2 .button_archive {
        margin-top: 14px;
        padding: 13px 0;
        width: 100%;
    }
    .second_block .first.v2 .narod {
        padding: 0;
    }
    .grayline .wrapper {
        flex-wrap: wrap;
        padding-top: 11px;
        justify-content: flex-start;
        padding: 17px 0 14px 12px;
    }
    .grayline a {
        font-size: 12px;
        padding: 4px 16px 4px 0px;
    }
    .blueline.mobile {
        margin-left: -12px;
        margin-right: -12px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .agr_item .item .imgzoom {
        display: none;
    }
    .agr_item .item .text {
        padding-left: 0;
    }
    .search_page.agr_item .item .text p {
        display: inline;
    }

    .newspapers.flex.row {
        flex-direction: column;
    }
    .newspapers > div {
        width: 100%;
        padding-bottom: 29px;
    }
    .newspapers > div:last-child {
        padding-bottom: 15px;
    }
    .newspapers_archive > div {
        width: 46.8%;
    }
    .newspapers > div .imgzoom {
        max-width: 361px;
        max-height: 475px;
    }
    .newspapers_archive > div .imgzoom {
        max-width: 165px;
        max-height: 216px;
    }

    .authors {
        flex-wrap: wrap;
    }
    .authors .letter {
        width: 100%;
        font-size: 100px;
        line-height: 80px;
        padding-bottom: 10px;
    }
    .h1.author {
        margin-bottom: 0;
    }
    .authors ul {
        font-size: 16px;
        padding-right: 0%;
        width: 100%;
        line-height: 29px;
        box-sizing: border-box;
    }
    .authors ul:last-child {
        padding-right: 0;
        padding-left: 1%;
    }

    .error_code {
        padding-top: 21px;
    }
    .error_code img {
        width: 100%;
        max-height: 130px;
    }
    .error_page.main.flex {
        margin-bottom: 21px;
    }
    .error_page .text {
        padding-left: 0;
    }
    .error_page h1 {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 8px;
    }
    .error_page p {
        font-size: 18px;
        line-height: 26px;
        padding-bottom: 22px;
    }
    .authors ul li {
        width: 50%;
        padding-left: 0;
    }

    .article h1 {
        font-size: 36px;
        line-height: 38px;
    }
    .article h4 {
        font-size: 20px;
        line-height: 28px;
    }
    .article .imgzoom {
        max-height: 236px;
    }
    .article p,
    .article div.p {
        font-size: 18px;
        line-height: 28px;
        padding-bottom: 25px;
    }
    .article blockquote {
        font-size: 22px;
        line-height: 30px;
        padding-left: 40px;
        padding-top: 10px;
    }
    .article blockquote:before {
        top: 4px;
        width: 29px;
        height: 45px;
    }
    .article blockquote ~ figcaption {
        padding-left: 40px;
        font-size: 16px;
        margin-bottom: 0;
    }
    .rubrica .imgzoom {
        display: none;
    }
    .rubrica h3 {
        font-size: 18px;
        line-height: 22px;
        padding-bottom: 14px;
    }
    .rubrica .time {
        font-size: 12px;
    }
    .rubrica {
        margin-bottom: 28px;
    }

    .article ol li,
    .article ul li {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .article table {
        width: auto;
        margin-bottom: 10px;
    }
    .article .table {
        margin-bottom: 23px;
    }
    .article .videoplayer .imgzoom {
        max-height: 198px;
    }
    .article .videoplayer.mini {
        width: 100%;
    }
    .article .videoplayer.mini .imgzoom {
        max-height: 197px;
    }
    .article .photo2 .imgzoom {
        width: 100%;
        max-height: 236px;
    }
    .article h3 {
        padding-bottom: 15px;
    }
    .article .listpoints .point h5:after {
        right: 0;
    }
    .article .tests {
        margin-left: -12px;
        margin-right: -12px;
    }
    .article .tests .in {
        padding: 44px 12px 0;
    }
    .article .tests .num {
        font-size: 21px;
    }
    .article .tests .bottom {
        padding: 22px 12px 49px;
    }
    .article {
        padding-bottom: 0;
    }
    .article .tagblock.last {
        margin-bottom: -12px;
        margin-top: 14px;
    }
    .blueline .buttons.body_article {
        width: 100%;
    }
    .blueline.article {
        padding-bottom: 13px;
        margin-bottom: 33px;
    }
    .article .owl-carousel .owl-prev {
        left: 10px;
        width: 40px;
        height: 40px;
        background-size: 50% !important;
    }
    .article .owl-carousel .owl-next {
        right: 10px;
        width: 40px;
        height: 40px;
        background-size: 50% !important;
    }
    .article .owl-carousel .owl-nav {
        top: 40%;
    }
    .article .tests .result .imgzoom {
        max-height: 250px;
    }

    .info h1 {
        font-size: 38px;
        line-height: 38px;
        padding-top: 10px;
        margin-bottom: 13px;
    }
    .info .table_rows div.column:last-child {
        padding-left: 2%;
    }
}

@media (max-width: 479px) {
    .parliament .head .imgzoom {
        height: 198px;
    }
    .header .logo {
        width: 191px;
    }
    .header .logo img {
        width: 100%;
    }
    .header .search a {
        width: 49px;
    }
    .header .play {
        margin-right: 15px;
    }
    .header .menu {
        width: 50px;
    }
    .header .search.active .form {
        right: 49px;
    }
    .header .search .form input.submit {
        width: 71px;
    }
    .f18 {
        font-size: 16px;
    }
    .main_block > div .imgzoom {
        max-height: 198px !important;
    }
    .headline_clear {
        height: 75px;
    }
    .agr .main_block > div:first-child {
        margin-bottom: 25px;
    }
    .agr .main_block > div {
        margin-bottom: 27px;
    }

    .agr_item .item .text p {
        display: none;
    }
    .agr_item .item .h3 {
        margin-bottom: 15px;
    }
}
