@font-face {
  font-family: "VestiSans-Regular";
  src: url(/fonts/VestiSans-Regular.woff) format("woff"), url(/fonts/VestiSans-Regular.woff2) format("woff2");
}

@font-face {
  font-family: "VestiSans-Medium";
  src: url(/fonts/VestiSans-Medium.woff) format("woff"), url(/fonts/VestiSans-Medium.woff2) format("woff2");
}

@font-face {
  font-family: "VestiSans-Light";
  src: url(/fonts/VestiSans-Light.woff) format("woff"), url(/fonts/VestiSans-Light.woff2) format("woff2");
}

@font-face {
  font-family: "VestiSans-Bold";
  src: url(/fonts/VestiSans-Bold.woff) format("woff"), url(/fonts/VestiSans-Bold.woff2) format("woff2");
}

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  font: 100% "VestiSans-Regular", sans-serif;
  color: #000000;
  position: relative;
}

body.app--scheme-light {
  background: #FFFFFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font: 100% "VestiSans-Regular", sans-serif;
}

.grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
  background: rgba(196, 0, 0, 0.1);
  overflow: hidden;
  z-index: 4;
}

.grid--hidden {
  height: 0;
  opacity: 0;
  transition: opacity 300ms ease 0ms, height 0ms ease 300ms;
}

.grid--active {
  height: 100%;
  opacity: 1;
  transition: height 0ms ease 0ms, opacity 300ms ease 0ms;
}

.grid__wrapper {
  max-width: 1280px;
  display: flex;
  flex-flow: row nowrap;
  height: 100%;
  margin: 0 auto;
}

.grid__column {
  width: 8.3333333333%;
}

.grid__column:after {
  content: "";
  display: block;
  height: 100%;
  margin: 0 10px;
  background: rgba(196, 0, 0, 0.1);
}

.error {
  margin: 6rem 0;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .error {
    margin: 2rem 0;
  }
}

.error__holder {
  box-sizing: border-box;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  flex-flow: row nowrap;
}

@media screen and (max-width: 768px) {
  .error__holder {
    flex-flow: column-reverse nowrap;
  }
}

.error__control {
  box-sizing: border-box;
  width: 16.6666666667%;
  margin: 0 0 auto 16.6666666667%;
}

@media screen and (max-width: 768px) {
  .error__control {
    width: 75%;
    margin: 1.5rem 0 auto 25%;
  }
}

.error__content {
  box-sizing: border-box;
  width: 66.6666666667%;
  margin: 0 0 auto;
}

@media screen and (max-width: 768px) {
  .error__content {
    width: 75%;
    margin: 0 0 auto 25%;
  }
}

.error__code {
  font: 1.5rem/1.2 "VestiSans-Regular", sans-serif;
  color: #C40000;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  padding: 0 10px;
}

.error__message {
  font: 5rem/1.175 "VestiSans-Regular", sans-serif;
  color: #000000;
  text-transform: uppercase;
  margin: 0;
  padding: 0 10px;
}

@media screen and (max-width: 1280px) {
  .error__message {
    font: 4rem/1.175 "VestiSans-Regular", sans-serif;
  }
}

@media screen and (max-width: 1280px) {
  .error__message {
    font: 3rem/1.175 "VestiSans-Regular", sans-serif;
  }
}

.error__link {
  font: 0.6875rem/1.45 "VestiSans-Regular", sans-serif;
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  position: relative;
  padding: 0 10px;
}

.error__link:before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: -50%;
  display: block;
  width: 16px;
  height: 16px;
  background: transparent url(/i/icon-back-black.svg?125b0283a7e8c475d177be43aab23ccf) center no-repeat;
  background-size: 100%;
  transform: translate(10px, -50%);
}

@media screen and (max-width: 768px) {
  .error__link:before {
    left: -33.3333333333%;
  }
}

@media screen and (max-width: 500px) {
  .error__link:before {
    top: -0.1rem;
  }
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120vh;
  z-index: 1;
}

.footer {
  margin: 6rem 0;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .footer {
    margin: 2rem 0;
  }
}

.footer__holder {
  box-sizing: border-box;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
  display: flex;
  flex-flow: row wrap;
}

.footer__holder:after {
  content: "";
  box-shadow: 0 0.3125rem 2.75rem rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: calc(100% - 40px);
  background: #FFFFFF;
  z-index: 1;
}

.footer__channels {
  box-sizing: border-box;
  padding: 0 10px;
  margin: 0 8.3333333333% 2.75rem;
  width: 83.3333333333%;
  position: relative;
  z-index: 2;
}

.footer__social-groups {
  box-sizing: border-box;
  padding: 0 10px;
  margin: 0 0 6.25rem 8.3333333333%;
  width: 25%;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .footer__social-groups {
    margin: 0 8.3333333333% 2.75rem;
    width: 83.3333333333%;
  }
}

.footer__navigation {
  box-sizing: border-box;
  padding: 0;
  margin: 0 8.3333333333% 2.75rem;
  width: 83.3333333333%;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .footer__navigation {
    margin: 0 8.3333333333% 2.75rem;
    width: 83.3333333333%;
  }
}

.footer__navigation .navigation__type:first-child {
  display: none;
}

.footer__info {
  box-sizing: border-box;
  padding: 0 10px 6rem;
  margin: 0 8.3333333333%;
  width: 83.3333333333%;
  position: relative;
  z-index: 2;
}

.footer__info p {
  font: 0.5625rem/1.3 "VestiSans-Regular", sans-serif;
  color: #A6A6A6;
  margin: 0;
}

.header {
  position: relative;
  z-index: 4;
}

.header__holder {
  box-sizing: border-box;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
}

@media screen and (max-width: 400px) {
  .header__holder {
    padding: 0;
    margin-right: 10px;
    background: #C40000;
  }
}

.header__content {
  width: 83.3333333333%;
  margin: 0 auto;
  display: flex;
  flex-flow: row nowrap;
}

@media screen and (max-width: 768px) {
  .header {
    margin: 0 0 2rem 0;
    padding: 0 0 2rem 0;
  }
  .header__content {
    width: auto;
  }

}

.header__lang-switch {
  box-sizing: border-box;
  margin: auto 0;
  padding: 0 10px;
  width: 50%;
}

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

  .header__lang-switch {
    padding: 0;
    background: #C40000;
    width: 70%;
  }

}

.header__search {
  box-sizing: border-box;
  margin: auto 0;
  padding: 0 10px;
  width: 16.6666666667%;
}

@media screen and (max-width: 768px) {
  .header__search {
    display: none;
  }
}

.header__navigation {
  box-sizing: border-box;
  margin: auto 0;
  padding: 0 10px;
  width: 33.3333333333%;
}

@media screen and (max-width: 768px) {
  .header__navigation {
    width: 50%;
  }
}

@media screen and (max-width: 400px) {
  .header__navigation {
    display: none;
  }
}

.header__logo {
  box-sizing: border-box;
  margin: auto 0;
  padding: 0 10px;
}

@media screen and (max-width: 768px) {
  .header__logo {
    width: 50%;
  }
}

@media screen and (max-width: 400px) {
  .header__logo {
    padding: 0;
    width: 30%;
    min-width: 143px;
  }
}

.header__logo .header__link {
  font: 0 sans-serif;
  display: block;
  height: 58px;
  width: 142px;
  background: transparent url(/img/vgtrk-logo.svg) center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 400px) {
  .header__logo .header__link {
    float: right;
    border-left: 1px solid #fff;
  }
}

.header__button {
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  text-transform: uppercase;
}

.article {
  margin: 6rem 0;
  position: relative;
  z-index: 2;
  clear: both;
}

@media screen and (max-width: 768px) {
  .article {
    margin: 2rem 0;
  }
}

.app--page-regions .article,
.app--page-social .article {
  overflow: hidden;
}

.article__holder {
  box-sizing: border-box;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
}

.article__header {
  width: 83.3333333333%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .article__header {
    width: 100%;
  }
}

.article__content {
  width: 83.3333333333%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .article__content {
    width: 100%;
  }
}

.article__title {
  width: 40%;
  margin: 0 auto 0 30%;
  font: bold 2.4375rem/1.1 "VestiSans-Regular", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  position: relative;
  box-sizing: border-box;
  padding: 0 10px 80px 10px;
}

@media screen and (max-width: 1024px) {
  .article__title {
    width: 66.6666666667%;
    margin: 0 auto 0 16.6666666667%;
  }
}

@media screen and (max-width: 500px) {
  .article__title {
    font: bold 1.4rem/1.1 "VestiSans-Regular", sans-serif;
    padding: 0 10px 50px 10px;
  }
}

.app--page-required-copy .article__body {
  margin: 4.5rem 0 0;
  display: flex;
  flex-flow: row nowrap;
}

@media screen and (max-width: 768px) {
  .app--page-required-copy .article__body {
    margin: 3.5rem 0 0;
    display: block;
  }
}

@media screen and (max-width: 500px) {
  .app--page-required-copy .article__body {
    margin: 1.5rem 0 0;
  }
}

.app--page-required-copy .article__body div {
  width: 45%;
}

@media screen and (max-width: 768px) {
  .app--page-required-copy .article__body div {
    width: 100%;
  }
}

.app--page-required-copy .article__body div:first-child {
  margin: 0 10% 0 0;
}

@media screen and (max-width: 768px) {
  .app--page-required-copy .article__body div:first-child {
    margin: 0;
  }
}

.app--page-anti-corruption .article__body {
  display: flex;
  flex-flow: row wrap;
}

.article__body h2 {
  font: 2.4375rem/1.1 "VestiSans-Light", sans-serif;
  text-transform: uppercase;
  box-sizing: border-box;
  padding: 0 10px;
  margin: 4.5rem auto 3.5rem 30%;
}

.app--page-anti-corruption .article__body h2 {
  width: 70%;
}

@media screen and (max-width: 768px) {
  .app--page-anti-corruption .article__body h2 {
    width: 83.3333333333%;
  }
}

.article__body h2:first-child {
  margin: 0 auto 3.5rem 30%;
}

@media screen and (max-width: 1024px) {
  .article__body h2:first-child {
    margin: 0 auto 3.5rem 16.6666666667%;
  }
}

.app--page-regions .article__body h2 {
  position: relative;
  margin: 20% auto 25% 30%;
  width: 40%;
  min-height: 168px;
}

@media screen and (max-width: 768px) {
  .app--page-regions .article__body h2 {
    width: 66.6666666667%;
    margin: 20% auto 25% 16.6666666667%;
    min-height: 96px;
  }
}

.app--page-regions .article__body h2:hover {
  background: #FFFFFF;
}

.app--page-regions .article__body h2:hover ~ ul {
  background: #FFFFFF;
}

.app--page-regions .article__body h2:after {
  content: "";
  display: block;
  width: 200%;
  padding-bottom: 100%;
  position: absolute;
  top: -50%;
  left: 0;
  z-index: -1;
}

.app--page-regions .article__body h2:nth-child(1) {
  margin: 0 auto 25% 30%;
}

@media screen and (max-width: 768px) {
  .app--page-regions .article__body h2:nth-child(1) {
    width: 66.6666666667%;
    margin: 0 auto 25% 16.6666666667%;
  }
}

.app--page-regions .article__body h2:nth-child(1):after {
  background: transparent url(/i/background-map-central.svg?2caf4733e201d34b04de28c879ad27f3) center no-repeat;
  background-size: auto 100%;
}

.app--page-regions .article__body h2:nth-child(3):after {
  background: transparent url(/i/background-map-north-west.svg?af95d1bc526c72993bcf8d4f6c3f46dd) center no-repeat;
  background-size: auto 100%;
}

.app--page-regions .article__body h2:nth-child(5):after {
  background: transparent url(/i/background-map-south.svg?09069736f81555a5c44d5ef0e5ec195a) center no-repeat;
  background-size: auto 100%;
}

.app--page-regions .article__body h2:nth-child(7):after {
  background: transparent url(/i/background-map-north-kav.svg?29973e54521852084b6552613c9867b8) center no-repeat;
  background-size: auto 100%;
}

.app--page-regions .article__body h2:nth-child(9):after {
  background: transparent url(/i/background-map-privol.svg?2bf6001ad5ea970111efc719c3d58997) center no-repeat;
  background-size: auto 100%;
}

.app--page-regions .article__body h2:nth-child(11):after {
  background: transparent url(/i/background-map-ural.svg?ae8fbeb640c65ab36678e03d9fd606d8) center no-repeat;
  background-size: auto 100%;
}

.app--page-regions .article__body h2:nth-child(13):after {
  background: transparent url(/i/background-map-sibir.svg?e0b8d3f1b94e0369c582a263ff27cde0) center no-repeat;
  background-size: auto 100%;
}

.app--page-regions .article__body h2:nth-child(15):after {
  background: transparent url(/i/background-map-east.svg?bfb65337996ad1531e0c516fb4b7fa6d) center no-repeat;
  background-size: auto 100%;
}

.app--page-regions .article__body h2:nth-child(17):after {
  background: transparent url(/i/background-map-krym.svg?679be201dc8b22a008fd12b76a1fcec7) center no-repeat;
  background-size: auto 100%;
}

@media screen and (max-width: 768px) {
  .article__body h2 {
    margin: 3.5rem auto 2.5rem 16.6666666667%;
  }
}

@media screen and (max-width: 500px) {
  .article__body h2 {
    font: 1.4rem/1.1 "VestiSans-Light", sans-serif;
    margin: 1.5rem auto 1rem 16.6666666667%;
  }
}

.article__body ul {
  margin: 0 0 0.75rem;
  padding: 0 10px;
  list-style: none;
}

.app--page-regions .article__body ul {
  display: flex;
  flex-flow: row wrap;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .app--page-regions .article__body ul {
    display: block;
    flex-flow: unset;
  }
}

.article__body li {
  font: 0.875rem/1.5rem "VestiSans-Light", sans-serif;
}

.article__body li:before {
  content: "- ";
}

.app--page-about .article__body li {
  font: 1rem/1.5rem "VestiSans-Light", sans-serif;
}

.app--page-regions .article__body li {
  width: 20%;
  box-sizing: border-box;
  padding: 0 10px;
  margin: 0 10% 1.5rem 0;
}

@media screen and (max-width: 768px) {
  .app--page-regions .article__body li {
    width: 100%;
    margin: 0 0 1.5rem 0;
  }
}

.app--page-regions .article__body li:before {
  content: none;
}

.article__body h3 {
  margin: 1.5rem 0;
  padding: 0 10px;
}

.article__body p {
  font: 0.875rem/1.5rem "VestiSans-Light", sans-serif;
  margin: 0 0 0.75rem;
  padding: 0 10px;
}

.app--page-about .article__body p {
  font: 1rem/1.5rem "VestiSans-Light", sans-serif;
}

.app--page-required-copy .article__body p {
  box-sizing: border-box;
}

.article__body p:first-child {
  margin: 4.5rem 0 0.75rem;
}

@media screen and (max-width: 768px) {
  .article__body p:first-child {
    margin: 3.5rem 0 0.75rem;
  }
}

@media screen and (max-width: 500px) {
  .article__body p:first-child {
    margin: 1.5rem 0 0.75rem;
  }
}

.app--page-required-copy .article__body p:first-child {
  margin: 0 0 0.75rem;
}

.app--page-info .article__body p {
  margin: 0 auto 0.75rem 30%;
}

@media screen and (max-width: 768px) {
  .app--page-info .article__body p {
    margin: 0 auto 0.75rem 16.6666666667%;
  }
}

@media screen and (max-width: 500px) {
  .app--page-info .article__body p {
    margin: 0 auto 0.75rem 16.6666666667%;
  }
}

.app--page-info .article__body p:first-child {
  margin: 4.5rem auto 0.75rem 30%;
}

@media screen and (max-width: 768px) {
  .app--page-info .article__body p:first-child {
    margin: 3.5rem auto 0.75rem 16.6666666667%;
  }
}

@media screen and (max-width: 500px) {
  .app--page-info .article__body p:first-child {
    margin: 1.5rem auto 0.75rem 16.6666666667%;
  }
}

.app--page-anti-corruption .article__body p {
  width: 20%;
}

@media screen and (max-width: 768px) {
  .app--page-anti-corruption .article__body p {
    width: 100%;
    margin: 0 0 0.75rem 16.6666666667%;
  }
}

.app--page-anti-corruption .article__body p:nth-child(2) {
  margin: 0 10% 0.75rem 30%;
}

@media screen and (max-width: 768px) {
  .app--page-anti-corruption .article__body p:nth-child(2) {
    margin: 0 0 0.75rem 16.6666666667%;
  }
}

.article__body a {
  color: #0602FF;
}

.app--page-info .article__body a,
.app--page-anti-corruption .article__body a {
  display: block;
  padding: 0 0 0 24px;
  background: transparent url(/i/icon-file-white.svg?242a94a134a4a6a51f576162069e5723) left 3px no-repeat;
  background-size: auto;
}

.app--page-info .article__body a:hover,
.app--page-anti-corruption .article__body a:hover {
  background: transparent url(/i/icon-file-blue.svg?013bdc1853cd79e04910436f07ce3c9f) left 3px no-repeat;
  background-size: auto;
}

.article__body .logos {
  width: 120%;
  margin: 4.5rem -10% 0;
  display: flex;
  flex-flow: row wrap;
}

@media screen and (max-width: 768px) {
  .article__body .logos {
    margin: 3.5rem 0 0;
    width: 100%;
    flex-flow: column nowrap;
  }
}

@media screen and (max-width: 768px) {
  .article__body .logos {
    margin: 1.5rem 0 0;
  }
}

.article__body .logos div {
  box-sizing: border-box;
  width: 50%;
  padding: 2.5rem 10px 2rem;
  margin: 0 0 25px 0;
  position: relative;
  display: flex;
  flex-flow: column wrap;
}

.article__body .logos div:before {
  content: "";
  box-shadow: 0 0.3125rem 2.75rem rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 10px;
  height: 100%;
  width: calc(100% - 20px);
  background: #FFFFFF;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .article__body .logos div {
    width: 100%;
    margin: 0 0 3.5rem;
  }
}

.article__body .logos div h2 {
  font: 1.125rem/1 "VestiSans-Light", sans-serif;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 2.5rem;
  position: relative;
  z-index: 2;
}

.article__body .logos div ul {
  margin: 0 auto 2rem;
  padding: 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: row wrap;
}

@media screen and (max-width: 1024px) {
  .article__body .logos div ul {
    flex-flow: column nowrap;
  }
}

@media screen and (max-width: 768px) {
  .article__body .logos div ul {
    flex-flow: row wrap;
  }
}

@media screen and (max-width: 500px) {
  .article__body .logos div ul {
    flex-flow: column nowrap;
  }
}

.article__body .logos div li {
  box-sizing: border-box;
  width: 50%;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .article__body .logos div li {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .article__body .logos div li {
    width: 50%;
  }
}

@media screen and (max-width: 500px) {
  .article__body .logos div li {
    width: 100%;
  }
}

.article__body .logos div li:before {
  content: none;
}

.article__body .logos div li a[href*="/i/logos"] {
  margin: 0 auto;
  display: block;
  font: 0 sans-serif;
}

.article__body .logos div li a[href*="brand_vgtrk_ru.pdf"] {
  height: 32px;
  width: 79px;
  background: transparent url(/i/brand_vgtrk_ru.svg?771bd5de0714ed48731c2fb78096ebaf) center no-repeat;
  background-size: cover;
}

.article__body .logos div li a[href*="brand_vgtrk_eng.pdf"] {
  height: 32px;
  width: 79px;
  background: transparent url(/i/brand_vgtrk_eng.svg?8a43afd3e473334e9415ea9e5e8968f4) center no-repeat;
  background-size: cover;
}

.article__body .logos div li a[href*="brand_russia_1_ru.pdf"] {
  height: 32px;
  width: 79px;
  background: transparent url(/i/brand_russia_1_ru.svg?12831d1db85e3f14b8724288ac933e4c) center no-repeat;
  background-size: cover;
}

.article__body .logos div li a[href*="brand_russia_1_eng.pdf"] {
  height: 32px;
  width: 79px;
  background: transparent url(/i/brand_russia_1_eng.svg?b1ff0f611d9964bb74186986032601ae) center no-repeat;
  background-size: cover;
}

.article__body .logos div li a[href*="tv_russia_1_ru.pdf"] {
  height: 20px;
  width: 87px;
  background: transparent url(/i/tv_russia_1_ru.svg?55818bef0d016dc2ec1a707b38c778d3) center no-repeat;
  background-size: cover;
}

.article__body .logos div li a[href*="tv_russia_1_eng.pdf"] {
  height: 20px;
  width: 87px;
  background: transparent url(/i/tv_russia_1_eng.svg?51d1cf9166bd441042faf25bf4d511ae) center no-repeat;
  background-size: cover;
}

.article__body .logos div li a[href*="tv_russia_24_ru.pdf"] {
  height: 20px;
  width: 87px;
  background: transparent url(/i/tv_russia_24_ru.svg?210687daea542e4791cdd5f8d0dcb0e6) center no-repeat;
  background-size: cover;
}

.article__body .logos div li a[href*="tv_russia_24_eng.pdf"] {
  height: 20px;
  width: 87px;
  background: transparent url(/i/tv_russia_24_eng.svg?9dbfbaffda8db651d88014c013f2b335) center no-repeat;
  background-size: cover;
}

.article__body .logos div li a[href*="tv_russia_culture_ru.pdf"] {
  height: 20px;
  width: 87px;
  background: transparent url(/i/tv_russia_culture_ru.svg?e9bfb1f037b2eff4b1e133a660ce9a72) center no-repeat;
  background-size: cover;
}

.article__body .logos div li a[href*="tv_russia_culture_eng.pdf"] {
  height: 20px;
  width: 87px;
  background: transparent url(/i/tv_russia_culture_eng.svg?a1bc09ef8c823873be12df5cf5edc76a) center no-repeat;
  background-size: cover;
}

.article__body .logos div li a[href*="tv_russia_rtr_ru.pdf"] {
  height: 20px;
  width: 87px;
  background: transparent url(/i/tv_russia_rtr_ru.svg?84f157699b35fdbf6587f6d1bee356f2) center no-repeat;
  background-size: cover;
}

.article__body .logos div li a[href*="tv_russia_rtr_eng.pdf"] {
  height: 20px;
  width: 87px;
  background: transparent url(/i/tv_russia_rtr_eng.svg?3779e358014a493b02322b20e00c4665) center no-repeat;
  background-size: cover;
}

.article__body .logos div li a[href*="radio_mayak.pdf"] {
  height: 37px;
  width: 60px;
  background: transparent url(/i/radio_mayak.svg?79e427b113d29b894e072eb59b74d76f) center no-repeat;
  background-size: cover;
}

.article__body .logos div li a[href*="radio_russia.pdf"] {
  height: 37px;
  width: 60px;
  background: transparent url(/i/radio_russia.svg?48010cb37c5db219fe38d55aead1f783) center no-repeat;
  background-size: cover;
}

.article__body .logos div li a[href*="radio_cultura.pdf"] {
  height: 55px;
  width: 60px;
  background: transparent url(/i/radio_cultura.svg?5c671b6898bb46c5cbbc9f74640a652b) center no-repeat;
  background-size: cover;
}

.article__body .logos div li a[href*="vesti_fm.pdf"] {
  height: 52px;
  width: 60px;
  background: transparent url(/i/vesti_fm.svg?96e56e51150f6fb36be2c069e657a589) center no-repeat;
  background-size: cover;
}

.article__body .logos div li a[href*="ufm.pdf"] {
  height: 60px;
  width: 60px;
  background: transparent url(/i/ufm.svg?1c1a3a01b612c082e16c07382544ee1a) center no-repeat;
  background-size: cover;
}

.article__body .logos div li a[href*="smotrim.pdf"] {
  height: 58px;
  width: 129px;
  background: transparent url(/i/logo-smotrim.svg) center no-repeat;
  background-size: cover;
}

.article__body .logos div li a[href*="vesti.pdf"] {
  height: 64px;
  width: 64px;
  background: transparent url(/i/logo-vesti.svg) center no-repeat;
  background-size: cover;
}

.article__body .logos div p {
  margin: auto 0 0;
  padding: 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.article__body .logos div p a {
  display: inline-block;
  font: 0.6875rem/1.125rem "VestiSans-Light", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #000000;
  padding: 0 0 0 1.5rem;
  background: transparent url(/i/icon-download-black.svg?1a402026ef16dc61064c1918b08ad1b8) left center no-repeat;
  background-size: 1rem auto;
}

.article__body .logos div:nth-child(1) ul {
  margin: 0 5% 46px;
  height: 150px;
  align-content: center;
}

@media screen and (max-width: 1024px) {
  .article__body .logos div:nth-child(1) ul {
    margin-top: 60px;
    height: inherit;
  }
}

@media screen and (max-width: 768px) {
  .article__body .logos div:nth-child(1) ul {
    margin-top: inherit;
    height: inherit;
  }
}

@media screen and (max-width: 500px) {
  .article__body .logos div:nth-child(1) ul {
    height: inherit;
  }
}

.article__body .logos div:nth-child(1) li {
  margin: 0 0 1.5rem;
}

.article__body .logos div:nth-child(1) li:nth-child(3),
.article__body .logos div:nth-child(1) li:nth-child(4) {
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .article__body .logos div:nth-child(1) li:nth-child(3) {
    margin: 0 0 1.5rem;
  }

  .article__body .logos div:nth-child(1) li:nth-child(4) {
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .article__body .logos div:nth-child(1) li:nth-child(3),
  .article__body .logos div:nth-child(1) li:nth-child(4) {
    margin: 0;
  }
}

@media screen and (max-width: 500px) {
  .article__body .logos div:nth-child(1) li:nth-child(3) {
    margin: 0 0 1.5rem;
  }

  .article__body .logos div:nth-child(1) li:nth-child(4) {
    margin: 0;
  }
}

.article__body .logos div:nth-child(2) ul {
  margin: 0 5% 46px;
}

.article__body .logos div:nth-child(2) li {
  margin: 0 0 1.5rem;
}

.article__body .logos div:nth-child(2) li:nth-child(7),
.article__body .logos div:nth-child(2) li:nth-child(8) {
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .article__body .logos div:nth-child(2) li {
    margin: 0 0 1.5rem;
  }

  .article__body .logos div:nth-child(2) li:nth-child(7) {
    margin: 0 0 1.5rem;
  }

  .article__body .logos div:nth-child(2) li:nth-child(8) {
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .article__body .logos div:nth-child(2) li {
    margin: 0 0 1.5rem;
  }

  .article__body .logos div:nth-child(2) li:nth-child(7),
  .article__body .logos div:nth-child(2) li:nth-child(8) {
    margin: 0;
  }
}

@media screen and (max-width: 500px) {
  .article__body .logos div:nth-child(2) li {
    margin: 0 0 1.5rem;
  }

  .article__body .logos div:nth-child(2) li:nth-child(7) {
    margin: 0 0 1.5rem;
  }

  .article__body .logos div:nth-child(2) li:nth-child(8) {
    margin: 0;
  }
}

.article__body .logos div:nth-child(3) ul {
  margin: 0 5%;
  height: 130px;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .article__body .logos div:nth-child(3) ul {
    height: 276px;
  }

  .article__body .logos div:nth-child(3) ul li {
    align-items: center;
    height: 140px;
  }
}

@media screen and (max-width: 768px) {
  .article__body .logos div:nth-child(3) ul {
    height: 140px;
  }

  .article__body .logos div:nth-child(3) ul li {
    height: inherit;
    align-items: normal;
  }
}

@media screen and (max-width: 500px) {
  .article__body .logos div:nth-child(3) ul {
    height: 170px;
  }

  .article__body .logos div:nth-child(3) ul li {
    margin: 0 0 1.5rem;
  }
}

.article__body .logos div:nth-child(4) ul {
  margin: 0 5% 46px;
}

.article__body .logos div:nth-child(4) li {
  margin: 0 0 1.5rem;
}

.article__body .logos div:nth-child(4) li:nth-child(4),
.article__body .logos div:nth-child(4) li:nth-child(5) {
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .article__body .logos div:nth-child(4) li {
    margin: 0 0 1.5rem;
  }

  .article__body .logos div:nth-child(4) li:nth-child(5) {
    margin: 0 0 1.5rem;
  }

  .article__body .logos div:nth-child(4) li:nth-child(5) {
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .article__body .logos div:nth-child(4) li {
    margin: 0 0 1.5rem;
  }

  .article__body .logos div:nth-child(4) li:nth-child(4),
  .article__body .logos div:nth-child(4) li:nth-child(5) {
    margin: 0;
  }
}

@media screen and (max-width: 500px) {
  .article__body .logos div:nth-child(4) li {
    margin: 0 0 1.5rem;
  }

  .article__body .logos div:nth-child(4) li:nth-child(4) {
    margin: 0 0 1.5rem;
  }

  .article__body .logos div:nth-child(4) li:nth-child(5) {
    margin: 0;
  }
}

.article__body .docs {
  padding: 6rem 0 3rem 6rem;
  margin: 1.5rem -10%;
  width: 120%;
  box-sizing: border-box;
  position: relative;
}

@media screen and (max-width: 768px) {
  .article__body .docs {
    width: 100%;
    margin: 1.5rem 0;
    padding: 2.5rem 2.5rem 0 2.5rem;
  }
}

.article__body .docs__list {
  flex-flow: row wrap;
  width: 66.6666666667%;
  padding: 0;
  margin: inherit;
}

@media screen and (max-width: 768px) {
  .article__body .docs__list {
    width: 100%;
    margin: 1.5rem 0;
  }
}

.article__body .docs h3 {
  color: #000000;
  z-index: 2;
  position: relative;
  width: 16.6666666667%;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .article__body .docs h3 {
    width: 100%;
  }
}

.article__body .docs:after {
  content: "";
  box-shadow: 0 0.25rem 2.75rem rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 10px;
  height: 100%;
  width: calc(100% - 20px);
  background: #FFFFFF;
  z-index: 1;
}

.article__body .docs div {
  color: #000000;
  margin: 0 auto 0.5rem;
  padding: 0 20px;
  z-index: 2;
  position: relative;
  display: flex;
  flex-flow: row wrap;
}

@media screen and (max-width: 768px) {
  .article__body .docs div {
    width: 100%;
    margin: 1.5rem 0;
    padding: 0;
  }
}

.article__body .docs div p {
  position: relative;
  z-index: 2;
  width: 41.6666666667%;
  margin: 0 auto 1.875rem;
  padding: 0;
  color: #000000;
  display: flex;
  flex-flow: row nowrap;
}

.article__body .docs div p:before {
  content: "";
  display: block;
  width: 10px;
}

@media screen and (max-width: 768px) {
  .article__body .docs div p:before {
    content: none;
  }
}

.article__body .docs div p a {
  color: #0602FF;
  text-decoration: none;
}

.article__body .docs div p a:active,
.article__body .docs div p a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .article__body .docs div p {
    width: 100%;
    margin: 0.75rem 0;
    padding: 0;
  }
}

.article__body .social-links__list {
  position: relative;
  margin: 4.5rem 0;
}

.article__body .social-links__list:before {
  content: "";
  display: block;
  height: 48px;
  width: 48px;
  border-radius: 100%;
  background: #0602FF;
  margin: 0 0 1rem 10px;
}

.article__body .social-links__list.fb:before {
  background: transparent url(/i/icon-facebook-blue.svg?ac2cf27da5bc575e7e3ae7038e3814ab) center no-repeat;
  background-size: cover;
}

.article__body .social-links__list.vk:before {
  background: transparent url(/i/icon-vkontakte-blue.svg?7171b3ea8831d1bfb77a4596ea8d10e8) center no-repeat;
  background-size: cover;
}

.article__body .social-links__list.ok:before {
  background: transparent url(/i/icon-odnoklassniki-blue.svg?ce073c81a91af83ce848691f7d44c256) center no-repeat;
  background-size: cover;
}

.article__body .social-links__list.insta:before {
  background: transparent url(/i/icon-instagram-blue.svg?108c6287d99e64085a4e2bbc625ea964) center no-repeat;
  background-size: cover;
}

.article__body .social-links__list.twit:before {
  background: transparent url(/i/icon-twitter-blue.svg?c1077c4123451f1f5c2ffb82c8c70e07) center no-repeat;
  background-size: cover;
}

.article__body .social-links__list.yt:before {
  background: transparent url(/i/icon-youtube-blue.svg?0597bde5f02860679c16252a9cea2efc) center no-repeat;
  background-size: cover;
}

.article__body .social-links__list.zen:before {
  background: transparent url(/i/icon-dzen-blue.svg?9d0bdcf5b1f79d96d7e97c955f67ff8c) center no-repeat;
  background-size: cover;
}

.article__body .social-links__list.tiktok:before {
  background: transparent url(/i/icon-tiktok-blue.svg?11a90dc56e279f30f6b15ba292e3ebdd) center no-repeat;
  background-size: cover;
}

.article__body .social-links__list.telegram:before {
  background: transparent url(/i/icon-telegram-blue.svg?b2e17d336cad50477b062eb21362b832) center no-repeat;
  background-size: cover;
}

.article__body .social-links__list p {
  font: 12rem/10.5rem "VestiSans-Bold", sans-serif;
  position: absolute;
  top: 0;
  left: 30%;
  color: #EBEBEB;
  padding: 0;
  z-index: 1;
  white-space: nowrap;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .article__body .social-links__list p {
    font: 6rem/5rem "VestiSans-Bold", sans-serif;
  }
}

.article__body .social-links__list ul {
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  padding: 0;
  height: 10.5rem;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 500px) {
  .article__body .social-links__list ul {
    height: auto;
  }
}

.article__body .social-links__list ul:before {
  content: "";
  display: block;
  height: 100%;
  width: 10%;
}

@media screen and (max-width: 768px) {
  .article__body .social-links__list ul:before {
    content: none;
  }
}

.article__body .social-links__list.vk ul {
  height: 12rem;
}

@media screen and (max-width: 500px) {
  .article__body .social-links__list.vk ul {
    height: auto;
  }
}

.article__body .social-links__list.insta ul {
  height: 18rem;
}

@media screen and (max-width: 500px) {
  .article__body .social-links__list.insta ul {
    height: auto;
  }
}

.article__body .social-links__list.yt ul {
  height: 16.5rem;
}

@media screen and (max-width: 1024px) {
  .article__body .social-links__list.yt ul {
    height: 21rem;
  }
}

@media screen and (max-width: 500px) {
  .article__body .social-links__list.yt ul {
    height: auto;
  }
}

.article__body .social-links__list li {
  box-sizing: border-box;
  padding: 0 10px;
  width: 30%;
  margin: 0 auto 0 0;
}

.article__body .social-links__list li:before {
  content: none;
}

@media screen and (max-width: 768px) {
  .article__body .social-links__list li {
    width: 33.3333333333%;
  }
}

@media screen and (max-width: 500px) {
  .article__body .social-links__list li {
    width: 100%;
  }
}

.article__body .social-links__list a {
  font: 0.875rem/1.5rem "VestiSans-Regular", sans-serif;
  color: #000000;
  text-decoration: none;
}

@media (max-width: 1279px) {
  .container-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

}

@font-face {
  font-family: "fontello";
  src: url("/fonts/fontello.eot?79330545");
  src: url("/fonts/fontello.eot?79330545#iefix") format("embedded-opentype"), url("/fonts/fontello.woff2?79330545") format("woff2"), url("/fonts/fontello.woff?79330545") format("woff"), url("/fonts/fontello.ttf?79330545") format("truetype"), url("/fonts/fontello.svg?79330545#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^=icon-]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-twitter:before {
  content: "\F099";
}

/* '' */

.icon-facebook:before {
  content: "\F09A";
}

/* '' */

.icon-youtube-play:before {
  content: "\F16A";
}

/* '' */

.icon-instagram-1:before {
  content: "\F16D";
}

/* '' */

.icon-vkontakte:before {
  content: "\F189";
}

/* '' */

.icon-odnoklassniki:before {
  content: "\F263";
}

/* '' */

.icon-yandex:before {
  content: "\F306";
}

/* '' */

.icon-tiktok:before {
  content: "\E800";
}

/* '' */

.icon-telegram:before {
  content: "\F1D8";
}

/* '' */

.icon-flipboard:before {
  content: "\E807";
}

/* '' */

.socials__link em {
  display: none;
}

.vgtrk-bar .vgtrk-bar__item {
  font: bold 2.4375rem/1.025 "VestiSans-Regular", sans-serif;
  text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
  .vgtrk-bar .vgtrk-bar__item {
    font: bold 2rem/1.025 "VestiSans-Regular", sans-serif;
  }
}

@media screen and (max-width: 768px) {
  .vgtrk-bar .vgtrk-bar__item {
    font: bold 1.0625rem/1.2 "VestiSans-Regular", sans-serif;
  }
}

.vgtrk-bar__content {
  display: flex;
  flex-flow: row nowrap;
}

@media screen and (max-width: 768px) {
  .vgtrk-bar__content {
    display: block;
    flex-flow: unset;
  }
}

.vgtrk-bar__type {
  box-sizing: border-box;
  margin: 0;
  padding: 0 10px;
  width: 33.3333333333%;
}

@media screen and (max-width: 768px) {
  .vgtrk-bar__type {
    width: 100%;
    margin: 0 0 1.5rem;
  }
}

.vgtrk-bar__title {
  font: 1rem/1.4 "VestiSans-Regular", sans-serif;
  color: #000000;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

@media screen and (max-width: 768px) {
  .vgtrk-bar__title {
    margin: 0 0 0.5rem;
  }
}

.vgtrk-bar__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vgtrk-bar__link {
  color: #0602FF;
  text-decoration: none;
  transition: color 300ms ease 0ms;
}

.vgtrk-bar__link:hover {
  color: #C40000;
  transition: color 300ms ease 0ms;
}

.navigation__content {
  display: flex;
  flex-flow: row nowrap;
}

@media screen and (max-width: 768px) {
  .navigation__content {
    display: block;
    flex-flow: unset;
  }
}

.navigation__type {
  box-sizing: border-box;
  margin: 0;
  padding: 0 10px;
}

.footer .navigation__type {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .footer .navigation__type:last-child {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .footer .navigation__type {
    width: 100%;
  }
}

.navigation__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navigation__item {
  font: 0.6875rem/1.8 "VestiSans-Regular", sans-serif;
}

.navigation__link {
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 300ms ease 0ms;
}

.footer .navigation__link {
  background: transparent url(/img/arr.svg) right center no-repeat;
  padding-right: 12px;
  padding-top: 2px;
}

.navigation__link:hover {
  color: #C40000;
  transition: color 300ms ease 0ms;
}

.channels__list {
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
  display: flex;
  flex-flow: row wrap;
}

.channels__list:first-child {
  margin: 0 -10px;
  justify-content: space-between;
  border-bottom: 1px solid #EBEBEB;
}

@media screen and (max-width: 1024px) {
  .channels__list:first-child {
    justify-content: unset;
  }
}

.channels__list:last-child {
  border-top: 1px solid #EBEBEB;
  border-bottom: 1px solid #EBEBEB;
}

.channels__list:last-child li {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .channels__list:last-child li {
    width: 33.3333333333%;
  }
}

.channels__item {
  box-sizing: border-box;
  width: 20%;
  padding: 60px 10px;
  display: flex;
}

.channels__list:first-child .channels__item {
  width: auto;
}

@media screen and (max-width: 1024px) {
  .channels__list:first-child .channels__item {
    width: 20%;
  }
}

@media screen and (max-width: 768px) {
  .channels__list:first-child .channels__item {
    width: 33.3333333333%;
  }
}

@media screen and (max-width: 768px) {
  .channels__item {
    width: 33.3333333333%;
  }
}

.channels__link {
  margin: auto;
  text-align: center;
  width: 85%;
}

.channels__list:first-child .channels__link {
  display: block;
  width: 100%;
}

.channels__link img {
  margin: auto;
  max-width: 100%;
}

.lang-switch__content {
  margin: 0 -10px;
}

@media screen and (max-width: 400px) {
  .lang-switch__content {
    margin: 0;
    text-align: center;
  }
}

.lang-switch__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: row nowrap;
}

.lang-switch__item {
  margin: 0 0 0 10px;
  color: #A6A6A6;
  background: #C40000;
  padding-right: 40px;
  padding-left: 40px;
}

@media screen and (max-width: 400px) {
  .lang-switch__item {
    margin: 0;
    text-align: center;
    padding-right: 10px;
    padding-left: 10px;
  }
  .lang-switch__list {
    display: inline-block;
    margin: 0 auto;
  }
}

.lang-switch__link {
  font: 14px/14px "VestiSans-Regular", sans-serif;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 58px;
  background: transparent url(/img/arr_white.svg) right center no-repeat;
  padding-right: 18px;
  padding-top: 2px;
  white-space: nowrap;
}