@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=PT+Serif&display=swap");
.c-hamburger {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 50px;
  height: 50px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: 50%;
  border: 0 solid #fff;
  cursor: pointer;
  transition: background 0.3s;
  background: transparent; }

.c-hamburger:focus {
  outline: none; }

.c-hamburger span {
  display: block;
  position: absolute;
  top: 21px;
  left: 6px;
  right: 6px;
  height: 5px;
  background: #fff; }

.c-hamburger span::before,
.c-hamburger span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #fff;
  content: ""; }

.c-hamburger span::before {
  top: -10px; }

.c-hamburger span::after {
  bottom: -10px; }

/*.c-hamburger--htx {
  background-color: #ff3264;
}*/
.c-hamburger--htx span {
  transition: background 0s 0.3s; }

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s; }

.c-hamburger--htx span::before {
  transition-property: top, transform; }

.c-hamburger--htx span::after {
  transition-property: bottom, transform; }

.c-hamburger--htx.is-active span {
  background: none !important; }

.c-hamburger--htx.is-active span::before {
  top: 0;
  transform: rotate(45deg); }

.c-hamburger--htx.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg); }

.c-hamburger--htx.is-active span::before,
.c-hamburger--htx.is-active span::after {
  transition-delay: 0s, 0.3s; }

.menu_button {
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  margin-left: 3%;
  cursor: pointer; }
  .menu_button div {
    margin-left: 10px; }

.mobile_menu_button {
  z-index: 101; }

.header_block {
  width: 100%;
  max-width: 1110px;
  height: auto;
  background: url(../img/page_content/header_bg.png) no-repeat top;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .header_block .first_line {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap; }
    .header_block .first_line .language_select_block, .header_block .first_line .search_block {
      width: 33%; }
    @media screen and (max-width: 767px) {
      .header_block .first_line .language_select_block {
        top: -44px; } }
  .header_block .second_line {
    width: 100%; }
    @media screen and (max-width: 767px) {
      .header_block .second_line {
        top: 115px;
        position: absolute; } }
    @media screen and (max-width: 640px) {
      .header_block .second_line {
        top: 0; } }
  @media screen and (max-width: 991px) {
    .header_block {
      justify-content: center; } }
  @media screen and (max-width: 767px) {
    .header_block {
      height: 180px; } }
  .header_block .language_select_block {
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 991px) {
      .header_block .language_select_block {
        position: relative; } }
    @media screen and (max-width: 767px) {
      .header_block .language_select_block {
        width: 100% !important;
        position: absolute; } }
    @media screen and (max-width: 991px) {
      .header_block .language_select_block .language_switcher {
        right: 10px;
        position: absolute; } }
    @media screen and (max-width: 767px) {
      .header_block .language_select_block .language_switcher {
        top: 160px; }
        .header_block .language_select_block .language_switcher #showLanguages {
          right: 0;
          left: inherit; } }
    @media screen and (max-width: 640px) {
      .header_block .language_select_block .language_switcher {
        top: 132px; } }
  @media screen and (max-width: 767px) {
    .header_block .logo_link {
      margin-left: 25%;
      width: 50%; } }
  .header_block .page_menu_block {
    position: relative;
    width: 100%; }
    .header_block .page_menu_block #top_menu_button {
      cursor: pointer;
      width: 44px;
      height: 24px;
      border-radius: 12px;
      background-color: rgba(0, 0, 0, 0.07);
      justify-content: center;
      align-items: center;
      display: none; }
      .header_block .page_menu_block #top_menu_button .menu_icon {
        width: 20px;
        height: 20px;
        background: url("../img/icons/menu_icon.svg"); }
      @media screen and (max-width: 991px) {
        .header_block .page_menu_block #top_menu_button {
          display: flex;
          position: absolute;
          margin-top: -24px;
          margin-left: 10px; } }
      @media screen and (max-width: 767px) {
        .header_block .page_menu_block #top_menu_button {
          margin-top: 0;
          top: 0; } }
    .header_block .page_menu_block #top_menu {
      position: relative;
      width: 100%;
      border-radius: 8px;
      padding: 8px 0;
      margin-top: 10px;
      z-index: 4;
      display: flex;
      justify-content: center; }
      .header_block .page_menu_block #top_menu a {
        color: #0A555F;
        display: inline-block;
        padding: 8px 16px;
        position: relative;
        text-align: center; }
        .header_block .page_menu_block #top_menu a:after {
          content: '|';
          display: inline;
          color: #16B0B8;
          right: -3px;
          top: 8px;
          position: absolute; }
        .header_block .page_menu_block #top_menu a:last-child:after {
          display: none; }
      @media screen and (max-width: 991px) {
        .header_block .page_menu_block #top_menu {
          width: 250px;
          display: none;
          position: absolute;
          background-color: #fff;
          box-shadow: 0 4px 8px rgba(11, 61, 71, 0.35); }
          .header_block .page_menu_block #top_menu a {
            text-align: left; }
            .header_block .page_menu_block #top_menu a:after {
              display: none; } }
      @media screen and (max-width: 767px) {
        .header_block .page_menu_block #top_menu {
          margin-top: 25px; } }
    .header_block .page_menu_block #top_menu.active {
      display: block !important; }
  .header_block .language_switcher {
    font-size: 12px;
    width: 80px;
    height: 24px;
    background: rgba(0, 0, 0, 0.07);
    border-radius: 12px;
    position: relative;
    top: 116px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    cursor: pointer; }
    .header_block .language_switcher .arrow_down {
      width: 8px;
      height: 12px;
      background: url(../img/icons/arrow_down.svg) center; }
    .header_block .language_switcher #showLanguages {
      display: none;
      position: absolute;
      top: 24px;
      left: 0;
      background-color: #16B0B8;
      border-radius: 12px;
      padding: 6px 12px;
      width: 125px;
      z-index: 10; }
      .header_block .language_switcher #showLanguages a {
        display: block;
        color: #fff; }
    .header_block .language_switcher #showLanguages.active {
      display: block; }
  .header_block .logo_link:hover {
    text-decoration: none; }
  .header_block .site_name_block {
    max-width: 350px;
    width: 100%;
    background-color: #fff;
    height: 140px;
    border-radius: 0 0 12px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .header_block .site_name_block .site_logo {
      min-width: 113px;
      width: 113px;
      height: 90px;
      background: url(../img/page_content/site_logo.png) no-repeat; }
    .header_block .site_name_block .site_name_kv, .header_block .site_name_block .site_name_ru {
      color: #00343F;
      text-transform: uppercase;
      text-align: center; }
      .header_block .site_name_block .site_name_kv .small, .header_block .site_name_block .site_name_ru .small {
        font-size: 11px; }
      .header_block .site_name_block .site_name_kv .big, .header_block .site_name_block .site_name_ru .big {
        font-weight: bold;
        font-size: 24px; }
    .header_block .site_name_block .ornament {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap; }
      .header_block .site_name_block .ornament:before, .header_block .site_name_block .ornament:after {
        content: '';
        width: 12px;
        height: 10px;
        background: url(../img/icons/ornament_2.svg) no-repeat center;
        position: absolute; }
      .header_block .site_name_block .ornament:before {
        top: -12px; }
      .header_block .site_name_block .ornament:after {
        bottom: -12px; }
    @media screen and (max-width: 767px) {
      .header_block .site_name_block {
        max-width: 100%;
        width: 100%; } }
  .header_block .search_block {
    margin-left: 12px; }
    .header_block .search_block form {
      top: 116px;
      position: relative; }
      .header_block .search_block form .input_with_icon {
        position: relative; }
      .header_block .search_block form .input_with_icon input {
        background: rgba(0, 0, 0, 0.07);
        border-radius: 12px;
        height: 24px;
        font-size: 12px;
        line-height: 100%;
        text-indent: 30px; }
      .header_block .search_block form .input_with_icon .fa-search {
        position: absolute;
        color: #1B7D96;
        top: 6px;
        left: 13px;
        font-size: 13px; }
    @media screen and (max-width: 767px) {
      .header_block .search_block {
        position: absolute;
        top: 33px;
        margin-left: 33%; } }
    @media screen and (max-width: 640px) {
      .header_block .search_block {
        top: 0; } }

.rubriks_main {
  overflow: hidden; }
  .rubriks_main .visible_rubric_block {
    position: absolute;
    right: 20px;
    width: 95%;
    height: 40px;
    font-size: 25px; }
    .rubriks_main .visible_rubric_block:after {
      display: block;
      position: absolute;
      top: 3px;
      right: 0;
      content: '\27A4';
      color: #fff;
      transform: rotate(90deg); }
  .rubriks_main .visible_rubric_block.open:after {
    transform: rotate(270deg); }

.block_title.adaptive_hide {
  display: none; }
  @media screen and (max-width: 575px) {
    .block_title.adaptive_hide {
      display: flex;
      position: relative; } }

.rubrik_list {
  justify-content: center;
  align-items: center;
  margin-bottom: 30px; }
  .rubrik_list .rubrik_tile {
    margin-bottom: 20px; }
    .rubrik_list .rubrik_tile .rubrik_body {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      border-radius: 3px;
      border: 1px solid #00ad28;
      height: 250px; }
      .rubrik_list .rubrik_tile .rubrik_body:hover {
        text-decoration: none; }
      @media screen and (max-width: 575px) {
        .rubrik_list .rubrik_tile .rubrik_body {
          border: 0;
          border-bottom: 1px solid #d7ffcf;
          flex-wrap: nowrap;
          height: auto;
          padding: 30px 0;
          justify-content: flex-start; } }
    @media screen and (max-width: 575px) {
      .rubrik_list .rubrik_tile .rubrik_icon_block {
        width: 150px;
        height: auto;
        text-align: center;
        margin-right: 5%; } }
    .rubrik_list .rubrik_tile .rubrik_name {
      width: 100%;
      text-align: center;
      font-size: 18px;
      color: #1f1e1e; }
      @media screen and (max-width: 575px) {
        .rubrik_list .rubrik_tile .rubrik_name {
          text-align: left;
          width: 60%; } }
    .rubrik_list .rubrik_tile .rubrik_icon {
      width: auto;
      height: 120px; }
      @media screen and (max-width: 575px) {
        .rubrik_list .rubrik_tile .rubrik_icon {
          max-width: 150px;
          height: auto; } }
    .rubrik_list .rubrik_tile:hover .rubrik_icon {
      -webkit-filter: opacity(70%);
      filter: opacity(70%); }
    @media screen and (max-width: 575px) {
      .rubrik_list .rubrik_tile {
        margin-bottom: 0; } }
  @media screen and (max-width: 575px) {
    .rubrik_list {
      height: 180px;
      overflow: hidden; } }

.rubrik_list.full {
  height: auto; }

.services_body .slick-slide img {
  width: 60%;
  height: 80%; }
  @media screen and (max-width: 375px) {
    .services_body .slick-slide img {
      width: 50%; } }

.main_page_news_block {
  margin: 30px 0; }

.main_page_container {
  background-color: #E5E5E5; }
  @media screen and (max-width: 480px) {
    .main_page_container {
      padding: 0; } }

.main_body {
  background-color: #E5E5E5; }

#calendar_top_ornament_left {
  width: 38px;
  height: 70px;
  position: absolute;
  left: 0;
  background: url(../img/page_content/calendar_top_ornament_left.png);
  top: 203px; }

#calendar_top_ornament_right {
  width: 180px;
  height: 246px;
  position: absolute;
  right: 0;
  background: url(../img/page_content/calendar_top_ornament_right.png);
  top: 247px; }

#calendar_middle_ornament_right {
  width: 102px;
  height: 129px;
  position: absolute;
  right: 0;
  background: url(../img/page_content/calendar_middle_ornament_right.png);
  top: 660px; }

#calendar_middle_ornament_left {
  width: 139px;
  height: 200px;
  position: absolute;
  left: 0;
  background: url(../img/page_content/calendar_middle_ornament_left.png);
  top: 580px; }

#calendar_bottom_ornament {
  width: 53px;
  height: 53px;
  position: absolute;
  right: 71px;
  background: url(../img/page_content/calendar_bottom_ornament.png);
  top: 1080px; }

#ornament_left_middle {
  width: 32px;
  height: 83px;
  position: absolute;
  left: 0;
  background: url(../img/page_content/ornament_left_middle.png);
  top: 1480px; }

#ornament_right_middle {
  width: 124px;
  height: 283px;
  position: absolute;
  right: 0;
  background: url(../img/page_content/ornament_right_middle.png);
  top: 1537px; }

#ornament_3 {
  width: 33px;
  height: 33px;
  position: absolute;
  left: 57px;
  background: url(../img/page_content/ornament_3.png);
  top: 1915px; }

#footer_ornament_left {
  width: 74px;
  height: 179px;
  position: absolute;
  left: 0;
  background: url(../img/page_content/footer_ornament_left.png);
  bottom: 360px; }

#footer_ornament_right {
  width: 57px;
  height: 111px;
  position: absolute;
  right: 0;
  background: url(../img/page_content/footer_ornament_right.png);
  bottom: 280px; }

.layout__page-header {
  margin-top: 60px; }

.layout__page-header .breadcrumbs {
  display: flex;
  flex-wrap: wrap; }

.layout__page-header .breadcrumbs .item {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 32px;
  display: inline-block; }

.layout__page-header .breadcrumbs .item a {
  color: #76767A; }

.layout__page-header .breadcrumbs .item:after {
  content: "/";
  font-size: 16px;
  line-height: 24px;
  color: #76767A;
  margin: 0 4px; }

.layout__page-header .breadcrumbs .item:last-child:after {
  content: ""; }

.layout__page-header .info .title {
  font-family: 'Conv_ArkhipKomi', serif;
  font-size: 44px;
  line-height: 56px;
  color: #000000;
  margin-bottom: 60px;
  font-weight: bold; }

.layout__page-header .menu {
  display: flex;
  position: relative; }

.layout__page-header .menu .list {
  display: flex;
  align-items: center;
  height: 100%;
  flex-wrap: wrap; }

.layout__page-header .menu .list .item {
  display: block;
  position: relative;
  color: #333;
  padding: 27px 0;
  margin-right: 24px;
  border-bottom: 2px solid transparent; }

.layout__page-header .menu .list .item.active {
  border-bottom-color: #0050B2; }

.layout__page-header .open-full {
  padding: 20px 12px;
  display: none; }

.layout__page-header .menu-full {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  box-shadow: 0px 8px 20px rgba(118, 118, 122, 0.4);
  background: #FFF;
  border-radius: 0px 0px 8px 8px;
  padding: 12px 24px;
  z-index: 1000;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden; }

@media (max-width: 576px) {
  .layout__page-header {
    margin-top: 32px;
    margin-bottom: 60px; }

  .layout__page-header .info {
    display: none; }

  .layout__page-header .info .title {
    font-family: 'Conv_ArkhipKomi', serif;
    font-weight: bold;
    font-size: 44px; }

  .layout__page-header .info .subtitle {
    font-family: 'Conv_ArkhipKomi', serif;
    font-size: 18px; }

  .layout__page-header .menu {
    width: 100%; }

  .layout__page-header .menu .item {
    padding: 14px 42px 10px 0; } }
.main_container {
  margin-top: 32px; }

.element_people_block {
  max-width: 736px;
  display: flex;
  justify-content: flex-start;
  padding-bottom: 48px; }
  .element_people_block .photo_block {
    margin-right: 48px; }
    .element_people_block .photo_block .photo {
      width: 128px;
      height: 128px;
      overflow: hidden;
      border-radius: 50%;
      display: inline-block; }
      .element_people_block .photo_block .photo img {
        width: 100%; }
  .element_people_block .text_block .fio_block {
    font-weight: 600;
    font-size: 26px;
    line-height: 40px; }
  .element_people_block .text_block .description_block {
    width: 70%;
    color: #76767A;
    font-size: 18px;
    line-height: 24px; }

.horizontal_page_menu span {
  margin-right: 24px; }
  .horizontal_page_menu span a {
    color: #333333;
    display: inline-block;
    padding-bottom: 28px; }
  .horizontal_page_menu span a.active {
    color: #0050B2;
    border-bottom: 2px solid #0050B2; }

.vertical_page_menu span {
  padding: 24px 36px;
  background-color: #fff;
  display: block;
  margin-bottom: 16px; }
  .vertical_page_menu span a {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
    text-decoration: none;
    width: 95%;
    height: 100%;
    display: block;
    position: relative; }
    .vertical_page_menu span a:after {
      content: '';
      width: 24px;
      height: 24px;
      background: url("../img/icons/link-inside.svg");
      position: absolute;
      right: -5%;
      top: 50%;
      margin-top: -12px; }

.page_body {
  padding: 60px 0; }

.page_container {
  position: relative;
  margin: 60px auto 100px auto !important;
  min-height: calc(100vh - 350px); }
  .page_container h1 {
    margin-bottom: 80px;
    font-weight: 400;
    font-size: 36px;
    line-height: 40px;
    color: #000; }
  .page_container h2 {
    margin-bottom: 60px;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: #000; }
    .page_container h2 span {
      font-size: 32px;
      line-height: 32px;
      color: #E1671F; }
  .page_container h5 {
    font-size: 28px;
    line-height: 100%;
    color: #1B7D96;
    margin-bottom: 16px; }
  .page_container .card {
    background: #FFFFFF;
    border-radius: 12px;
    z-index: 1; }
    .page_container .card .card-img-top {
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
      object-fit: cover;
      object-position: top;
      height: 400px; }
    .page_container .card .card-body {
      padding: 64px 60px 16px 60px; }
      .page_container .card .card-body .inf-block {
        padding-bottom: 48px; }
    .page_container .card .card-text {
      font-family: 'PT Serif', serif;
      color: #000; }
      .page_container .card .card-text.fs-20 {
        font-size: 20px;
        line-height: 20px; }
      .page_container .card .card-text.fs-24 {
        font-size: 24px;
        line-height: 24px; }
      .page_container .card .card-text.fs-28 {
        font-size: 28px;
        line-height: 28px; }
      .page_container .card .card-text.links a {
        color: #16B0B8;
        white-space: nowrap; }
        .page_container .card .card-text.links a:hover {
          color: #1B7D96; }
  .page_container .horizontal-card {
    background: none;
    border: none; }
    .page_container .horizontal-card .card-img-top {
      border-radius: 12px; }
    .page_container .horizontal-card .block_page_title h1 {
      margin-bottom: 48px; }
  .page_container .day {
    font-family: 'PT Serif', serif;
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 120%;
    color: #000;
    font-weight: 400;
    z-index: 2; }
    .page_container .day:last-child {
      margin-bottom: 0; }
    .page_container .day h5 {
      margin-bottom: 20px;
      font-family: 'Conv_ArkhipKomi', serif; }
    .page_container .day .accordion {
      margin-bottom: 16px; }
      .page_container .day .accordion .white-card {
        background: #FFFFFF;
        border-radius: 12px; }
        .page_container .day .accordion .white-card .btn-main {
          position: relative;
          border: none;
          background: #fff;
          text-align: left;
          white-space: normal;
          padding: 8px 56px 18px 8px;
          border-radius: 12px;
          width: 100%;
          display: flex;
          font-family: 'Font Awesome 5 Free';
          font-weight: 900; }
          .page_container .day .accordion .white-card .btn-main:after {
            content: "\f106";
            position: absolute;
            height: 24px;
            width: 24px;
            padding-left: 7.5px;
            background: #F2F2F2;
            color: #E1671F;
            right: 16px;
            top: 37%;
            border-radius: 50%; }
          .page_container .day .accordion .white-card .btn-main.collapsed:after {
            content: "\f107"; }
          .page_container .day .accordion .white-card .btn-main.collapsed .item.age_ico:before {
            display: none; }
          .page_container .day .accordion .white-card .btn-main .time {
            font-family: 'PT Serif', serif;
            padding: 7px 12px;
            background: rgba(0, 0, 0, 0.07);
            border-radius: 16px;
            font-size: 14px;
            line-height: 100%;
            color: #E1671F;
            font-weight: 600; }
          .page_container .day .accordion .white-card .btn-main .place {
            font-family: 'PT Serif', serif;
            width: 100%;
            font-size: 14px;
            line-height: 14px;
            color: #000000;
            padding-bottom: 20px;
            padding-top: 7px;
            font-weight: 400; }
          .page_container .day .accordion .white-card .btn-main .item {
            font-family: 'Conv_ArkhipKomi', serif;
            width: 100%;
            font-size: 18px;
            line-height: 100%;
            color: #0A555F;
            font-weight: 400;
            position: relative; }
            .page_container .day .accordion .white-card .btn-main .item.age_ico:before {
              position: absolute;
              display: block;
              content: '';
              background-repeat: no-repeat;
              background: url(../img/icons/Ellipse.svg);
              left: -40px;
              top: -2px;
              width: 24px;
              height: 24px;
              text-align: center;
              padding-top: 4px;
              font-size: 10px;
              color: #000; }
            .page_container .day .accordion .white-card .btn-main .item.age_ico_0:before {
              content: '0+'; }
            .page_container .day .accordion .white-card .btn-main .item.age_ico_1:before {
              content: '6+'; }
            .page_container .day .accordion .white-card .btn-main .item.age_ico_2:before {
              content: '12+'; }
            .page_container .day .accordion .white-card .btn-main .item.age_ico_3:before {
              content: '16+'; }
            .page_container .day .accordion .white-card .btn-main .item.age_ico_4:before {
              content: '18+'; }
        .page_container .day .accordion .white-card .collapse .card-body, .page_container .day .accordion .white-card .collapsing .card-body {
          padding: 0 20px 20px; }
          .page_container .day .accordion .white-card .collapse .card-body .card-text, .page_container .day .accordion .white-card .collapsing .card-body .card-text {
            padding: 0 65px 48px; }
          .page_container .day .accordion .white-card .collapse .card-body .bottom_block, .page_container .day .accordion .white-card .collapsing .card-body .bottom_block {
            display: flex; }
            .page_container .day .accordion .white-card .collapse .card-body .bottom_block .tag_list, .page_container .day .accordion .white-card .collapsing .card-body .bottom_block .tag_list {
              width: 70%;
              flex-wrap: wrap;
              -ms-flex-line-pack: start !important;
              align-content: flex-start !important;
              display: flex; }
              .page_container .day .accordion .white-card .collapse .card-body .bottom_block .tag_list .tag_item, .page_container .day .accordion .white-card .collapsing .card-body .bottom_block .tag_list .tag_item {
                display: block;
                background-color: #F2F2F2;
                border-radius: 24px;
                color: #16B0B8;
                padding: 4px 8px;
                font-weight: bold;
                font-size: 12px;
                line-height: 100%;
                margin-right: 8px;
                margin-bottom: 8px; }
            .page_container .day .accordion .white-card .collapse .card-body .bottom_block .url_block, .page_container .day .accordion .white-card .collapsing .card-body .bottom_block .url_block {
              width: 30%;
              display: flex;
              justify-content: flex-end; }
              .page_container .day .accordion .white-card .collapse .card-body .bottom_block .url_block a, .page_container .day .accordion .white-card .collapsing .card-body .bottom_block .url_block a {
                padding-right: 20px;
                color: #16B0B8; }
                .page_container .day .accordion .white-card .collapse .card-body .bottom_block .url_block a:last-child, .page_container .day .accordion .white-card .collapsing .card-body .bottom_block .url_block a:last-child {
                  padding-right: 0; }
      .page_container .day .accordion:last-child {
        margin-bottom: 40px; }
  .page_container #calendar_top_ornament_left {
    top: 1%;
    z-index: -1; }
  .page_container #calendar_top_ornament_right {
    top: 2%;
    z-index: -1; }
  .page_container #calendar_middle_ornament_right {
    top: 29%;
    z-index: -1; }
  .page_container #calendar_middle_ornament_left {
    top: 28%;
    z-index: -1; }
  .page_container #calendar_bottom_ornament {
    top: 60%;
    z-index: -1; }
  .page_container #ornament_left_middle {
    top: 65%;
    z-index: -1; }
  .page_container #ornament_right_middle {
    top: 72%;
    z-index: -1; }
  .page_container #ornament_3 {
    top: 69%;
    z-index: -1; }
  .page_container #footer_ornament_left {
    top: 74%;
    z-index: -1; }
  .page_container #footer_ornament_right {
    top: 90%;
    z-index: -1; }
  .page_container #ornament_bird {
    width: 113px;
    height: 98px;
    position: absolute;
    left: 12%;
    background: url(../img/page_content/ornament_bird.png);
    top: 57%;
    z-index: -1; }
  .page_container #ornament_center {
    width: 50px;
    height: 49px;
    position: absolute;
    right: 18%;
    background: url(../img/page_content/ornament_center.png);
    top: 73%;
    z-index: -1; }
  .page_container #footer_top_ornament {
    width: 28px;
    height: 30px;
    position: absolute;
    left: 35%;
    background: url(../img/page_content/footer_top_ornament.png);
    bottom: -37px;
    z-index: -1; }
  .page_container #ornament_birds {
    width: 146px;
    height: 96px;
    position: absolute;
    right: 5%;
    background: url(../img/page_content/ornament_birds.png);
    bottom: -60px;
    z-index: -1; }

.footer-page {
  background: #005A6D;
  position: relative !important;
  border: none !important; }
  .footer-page #footer_bottom_ornament {
    width: 233px;
    height: 119px;
    position: absolute;
    right: 23%;
    background: url(../img/page_content/footer_bottom_ornament.png);
    bottom: 0; }
  .footer-page .copyright::before {
    content: '';
    position: absolute;
    bottom: 0;
    margin-left: -100px;
    width: 75px;
    height: 131px;
    display: block;
    background-image: url(../img/page_content/ornament_fox.png); }

.block_page_title {
  position: relative; }
  .block_page_title h1, .block_page_title h2 {
    position: relative;
    z-index: 2; }
    .block_page_title h1 i, .block_page_title h2 i {
      color: #E1671F;
      position: relative;
      display: inline;
      background: transparent;
      font-style: normal;
      top: inherit; }
  .block_page_title i {
    display: block;
    width: 160px;
    height: 8px;
    background-color: #E1671F;
    position: absolute;
    top: 30px;
    z-index: 1; }
  .block_page_title i.small {
    width: 93px;
    height: 6px; }

.page_content .block {
  padding: 24px 20px;
  border: 1px solid #D9D9DE;
  border-radius: 4px;
  font-size: 14px;
  color: #333333;
  margin-bottom: 20px; }
  .page_content .block label {
    color: #76767A; }

.anons_list_block {
  padding-top: 28px; }

button.btn-main {
  outline: none;
  box-shadow: inherit !important; }

.tag_list a {
  text-decoration: none; }

.anons_list_block h1 {
  margin-bottom: 48px; }
.anons_list_block .anons_block {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #D9D9DE; }
  .anons_list_block .anons_block .anons_title {
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 10px; }
  .anons_list_block .anons_block .anons_phone, .anons_list_block .anons_block .anons_place {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #000; }
  .anons_list_block .anons_block .anons_date {
    font-size: 14px;
    line-height: 20px;
    color: #76767A;
    margin-top: 39px; }

.element_list_block, .sub_element_list_block {
  padding: 20px 0;
  border-bottom: 1px solid #D9D9DE;
  margin-bottom: 25px; }
  .element_list_block .element_title, .element_list_block .sub_element_title, .sub_element_list_block .element_title, .sub_element_list_block .sub_element_title {
    padding-right: 50px;
    font-weight: 600;
    font-size: 26px;
    line-height: 40px;
    color: #0050B2;
    position: relative;
    margin-bottom: 36px;
    cursor: pointer; }
  .element_list_block .sub_element_title, .sub_element_list_block .sub_element_title {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px; }
  .element_list_block .list_item .item_name, .sub_element_list_block .list_item .item_name {
    font-weight: 600;
    font-size: 26px;
    line-height: 40px;
    color: #000; }
  .element_list_block .list_item .item_description, .sub_element_list_block .list_item .item_description {
    font-size: 18px;
    line-height: 24px;
    color: #333333;
    opacity: 0.7;
    margin: 4px 0 32px 0; }
  .element_list_block .show_list, .sub_element_list_block .show_list {
    width: 24px;
    height: 24px;
    background: url("../img/icons/list_show_arrow.svg");
    position: absolute;
    right: 14px;
    top: 50%;
    margin-top: -12px;
    cursor: pointer; }
  .element_list_block .show_list.reverse, .sub_element_list_block .show_list.reverse {
    transform: scale(1, -1); }

.sub_element_list_block {
  border-bottom: 0; }

.element_url_block {
  margin-bottom: 40px; }
  .element_url_block .element_title {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #000000; }
  .element_url_block .list_item {
    background: rgba(0, 97, 217, 0.15);
    border-radius: 4px;
    padding: 2px 36px 2px 8px;
    display: inline-block;
    position: relative;
    margin-top: 8px; }
    .element_url_block .list_item:after {
      content: '';
      width: 16px;
      height: 16px;
      background: url("../img/icons/arrow-link-blue.svg");
      position: absolute;
      right: 8px;
      top: 50%;
      margin-top: -8px; }
    .element_url_block .list_item a {
      color: #0050B2;
      text-decoration: none;
      font-size: 16px;
      line-height: 24px; }

.element_file_block {
  background-color: #fff;
  padding: 36px;
  margin-bottom: 16px;
  border-radius: 4px; }
  .element_file_block .element_title {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    margin-bottom: 36px; }
  .element_file_block .string {
    display: flex;
    justify-content: space-between; }
    .element_file_block .string .date {
      font-size: 14px;
      line-height: 20px;
      color: #76767A; }
    .element_file_block .string .file_download {
      color: #0050B2;
      position: relative;
      cursor: pointer; }
      .element_file_block .string .file_download .ext {
        text-transform: uppercase; }
      .element_file_block .string .file_download .download_button {
        display: none;
        position: absolute;
        z-index: 1;
        top: 0;
        right: 0; }
      .element_file_block .string .file_download:hover .download_button {
        display: block; }
      .element_file_block .string .file_download:hover span {
        display: none; }

.photo_album_body {
  margin-bottom: 80px; }
  .photo_album_body .photo_album_block {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 32px;
    text-decoration: none; }
    .photo_album_body .photo_album_block .album_preview {
      width: 180px; }
      .photo_album_body .photo_album_block .album_preview img {
        width: 100%; }
    .photo_album_body .photo_album_block .album_title {
      margin-left: 32px;
      font-size: 18px;
      line-height: 24px;
      color: #000; }

.photo_album_item_body {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px; }
  .photo_album_item_body .photo_album_item_block {
    width: 33%;
    padding: 10px; }
    .photo_album_item_body .photo_album_item_block img {
      width: 100%; }

.content_column a {
  color: #000;
  text-decoration: underline; }

.color_circle {
  background-color: #F39C12;
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%; }

.calendar_list {
  width: 100%; }
  .calendar_list .calendar_block .calendar_item {
    background-color: #fff;
    min-height: 350px;
    margin-bottom: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column; }
    .calendar_list .calendar_block .calendar_item .photo_block {
      width: 100%;
      height: 208px;
      border-radius: 12px 12px 0 0;
      background-size: cover !important; }
    .calendar_list .calendar_block .calendar_item .title {
      margin: 20px 15px 0 15px; }
      .calendar_list .calendar_block .calendar_item .title a {
        font-size: 18px;
        color: #0A555F; }
    .calendar_list .calendar_block .calendar_item .date {
      font-size: 12px;
      margin-top: auto;
      margin-bottom: 20px;
      margin-left: 15px;
      font-family: 'PT Serif', serif;
      color: #000;
      font-weight: normal; }
  .calendar_list .calendar_block.show_more {
    display: none; }
  .calendar_list .calendar_block.show_more.active {
    display: block; }
  .calendar_list .show_more_button {
    margin: 20px auto;
    min-width: 180px;
    height: 40px;
    background-color: #16B0B8;
    color: #fff;
    font-size: 16px;
    border: 0;
    border-radius: 24px;
    cursor: pointer; }

.layout__footer {
  background: #3B4256;
  padding-top: 80px;
  font-size: 16px; }

.layout__footer .logo {
  background-image: url("/img/logo.png");
  background-repeat: no-repeat;
  width: 56px;
  height: 56px;
  display: block;
  margin-bottom: 32px; }

.layout__footer .info .title,
.layout__footer .phone .title,
.layout__footer .email .title {
  color: #FFF;
  font-size: 26px;
  line-height: 36px;
  font-family: 'Conv_ArkhipKomi', serif;
  margin-bottom: 8px; }

.layout__footer .info .subtitle,
.layout__footer .phone .subtitle,
.layout__footer .email .subtitle {
  color: #FFF;
  opacity: 0.7;
  font-size: 18px; }

.layout__footer .info {
  margin-bottom: 44px; }

.layout__footer .phone {
  margin-bottom: 22px; }

.layout__footer .email {
  margin-bottom: 36px; }

.layout__footer .email .title {
  font-size: 22px; }

.layout__footer .additional {
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.layout__footer .additional .questions {
  max-width: 380px;
  text-align: right; }

.layout__footer .additional .questions a {
  color: #fff; }

.layout__footer .additional .item {
  color: #fff;
  opacity: 0.7; }

.layout__footer .menu .title {
  color: #FFFFFF;
  font-size: 22px;
  line-height: 28px;
  font-family: 'Conv_ArkhipKomi', serif;
  margin-bottom: 32px; }

.layout__footer .menu .list {
  margin-bottom: 36px; }

.layout__footer .menu .list .item {
  display: block;
  color: #fff;
  opacity: 0.7;
  margin-bottom: 12px;
  font-size: 18px; }

.layout__footer .menu .list.vertical {
  display: flex; }

.layout__footer .menu .list.vertical .item {
  margin-right: 27px; }

@media (max-width: 576px) {
  .layout__footer {
    padding-top: 36px; }

  .layout__footer .logo {
    float: left;
    margin-right: 10px; }

  .layout__footer .info .title {
    font-size: 16px;
    margin-bottom: 0px;
    line-height: 20px; }

  .layout__footer .info .subtitle {
    font-size: 16px;
    line-height: 20px; }

  .layout__footer .phone .title,
  .layout__footer .email .title {
    font-size: 22px;
    margin-bottom: 0px; }

  .layout__footer .phone .subtitle,
  .layout__footer .email .subtitle {
    font-size: 14px; }

  .layout__footer .info {
    display: inline-block;
    margin-bottom: 32px; }

  .layout__footer .phone {
    clear: both; }

  .layout__footer .email {
    margin-bottom: 36px; }

  .layout__footer .additional {
    flex-direction: column-reverse;
    align-items: start;
    margin-top: 0;
    padding: 32px 0; }

  .layout__footer .additional .questions {
    text-align: left;
    margin-bottom: 32px; }

  .layout__footer .menu .title {
    font-size: 19px;
    line-height: 24px;
    margin-bottom: 16px; }

  .layout__footer .menu .list .item {
    display: block;
    color: #fff;
    opacity: 0.7;
    margin-bottom: 8px;
    font-size: 16px; }

  .layout__footer .menu-collapse .title {
    position: relative;
    cursor: pointer; }

  .layout__footer .menu-collapse:after {
    content: "";
    display: block;
    width: 12px;
    height: 6px;
    background-image: url("/img/icons/arrow-down-white.svg");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 10px;
    right: 15px;
    transform-origin: center;
    transform: rotate(0deg);
    transition: transform 400ms; }

  .layout__footer .menu-collapse.active:after {
    transform: rotate(180deg); }

  .layout__footer .menu-collapse .list {
    display: none; } }
@font-face {
  font-family: 'Arkhip';
  src: local("Arkhip Regular"), local("Arkhip-Regular"), url("/fonts/Arkhip.woff2") format("woff2"), url("/fonts/Arkhip.woff") format("woff"), url("/fonts/Arkhip.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }
@font-face {
  font-family: 'Conv_ArkhipKomi';
  src: url("fonts/ArkhipKomi.eot");
  src: local("☺"), url("/fonts/ArkhipKomi.woff") format("woff"), url("/fonts/ArkhipKomi.ttf") format("truetype"), url("/fonts/ArkhipKomi.svg") format("svg");
  font-weight: normal;
  font-style: normal; }
.content {
  min-height: 340px; }

.btn-outline-secondary {
  border: 1px solid #D9D9DE; }

.main_container {
  padding-bottom: 80px; }

.horizontal_page_menu .menu-short {
  position: relative; }
  .horizontal_page_menu .menu-short .open-page-menu-full {
    position: absolute;
    right: 0;
    display: none; }
  .horizontal_page_menu .menu-short .short-list {
    display: none;
    position: absolute;
    bottom: -64px;
    background-color: #fff;
    width: 100%;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 20px rgba(118, 118, 122, 0.4); }
  .horizontal_page_menu .menu-short .short-list.active {
    display: flex;
    justify-content: space-around; }

.breadcrumb_block {
  width: 100%;
  min-height: 30px;
  margin-bottom: 20px; }
  .breadcrumb_block .breadcrumb_list {
    font-family: 'PT Serif', serif;
    font-size: 12px;
    line-height: 24px;
    list-style: none;
    padding: 0;
    margin-left: 15px; }
    .breadcrumb_block .breadcrumb_list li {
      display: contents;
      line-height: 24px;
      color: #76767A;
      float: left;
      font-size: 12px; }
      .breadcrumb_block .breadcrumb_list li:after {
        display: block;
        content: '-';
        color: #76767A;
        padding: 0 5px;
        float: left; }
      .breadcrumb_block .breadcrumb_list li a, .breadcrumb_block .breadcrumb_list li span {
        color: #76767A;
        text-decoration: underline;
        float: left; }
    .breadcrumb_block .breadcrumb_list li.last:after {
      display: none; }
    .breadcrumb_block .breadcrumb_list:before {
      background: url("../img/icons/home_icon.svg");
      width: 11px;
      height: 11px;
      display: block;
      position: absolute;
      content: '';
      margin-left: -15px;
      margin-top: 6px; }

.child_list_block {
  background-color: #072C51;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 20px;
  border-radius: 3px; }
  .child_list_block li {
    padding: 5px 10px;
    color: #072C51;
    line-height: 34px;
    margin: 5px 0;
    margin-right: 20px; }
    .child_list_block li a {
      color: #fff; }
    @media screen and (max-width: 767px) {
      .child_list_block li {
        line-height: 24px; } }

.child_list_block li.active {
  background: #fff;
  border-radius: 3px;
  color: #072C51; }

table iframe, div iframe.note-video-clip {
  max-width: 100%; }

body.no-scroll {
  overflow: hidden; }

.page_body table {
  margin: 1em 0;
  min-width: 300px; }
  .page_body table tr {
    /* border-top: 1px solid #ddd;
     border-bottom: 1px solid #ddd;*/ }
  .page_body table th {
    display: none; }
  .page_body table td {
    display: block; }
    .page_body table td:first-child {
      padding-top: .5em; }
    .page_body table td:last-child {
      padding-bottom: .5em; }
    .page_body table td img {
      width: auto;
      max-width: 100% !important; }
  .page_body table th, .page_body table td {
    text-align: left; }
    @media (min-width: 567px) {
      .page_body table th, .page_body table td {
        display: table-cell;
        padding: .25em .5em; }
        .page_body table th img, .page_body table td img {
          width: auto;
          max-width: inherit !important; }
        .page_body table th:first-child, .page_body table td:first-child {
          padding-left: 0; }
        .page_body table th:last-child, .page_body table td:last-child {
          padding-right: 0; } }

.hide {
  display: none !important; }

.page_container {
  max-width: 1920px;
  width: 100%;
  margin: 60px auto 0 auto;
  background-attachment: fixed !important;
  background-position-x: center !important;
  background-size: cover; }

.icon {
  width: 16px;
  height: 16px;
  background-size: contain;
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  vertical-align: middle; }

.icon-sm {
  display: none; }

.icon-16 {
  width: 16px;
  height: 16px; }

.icon-24 {
  width: 24px;
  height: 24px; }

.icon-30 {
  width: 30px;
  height: 30px; }

.icon-40 {
  width: 40px;
  height: 40px; }

.icon-union {
  background-image: url("/img/icons/union.svg"); }

.icon-search {
  background-image: url("/img/icons/search.svg"); }

.icon-glasses {
  background-image: url("/img/icons/glasses.svg"); }

.icon-burger-dots {
  background-image: url("/img/icons/burger-dots.svg"); }

.icon-vk {
  background-image: url("/img/icons/vk.svg"); }

.icon-vk-black {
  background-image: url("/img/icons/vk-black.svg"); }

.icon-ok {
  background-image: url("/img/icons/ok.svg"); }

.icon-ok-black {
  background-image: url("/img/icons/ok-black.svg"); }

.icon-youtube {
  background-image: url("/img/icons/youtube.svg"); }

.icon-youtube-black {
  background-image: url("/img/icons/youtube-black.svg"); }

.icon-telegram {
  background-image: url("/img/icons/telegram.svg"); }

.icon-telegram-black {
  background-image: url("/img/icons/telegram-black.svg"); }

.icon-instagram {
  background-image: url("/img/icons/instagram.svg"); }

.icon-instagram-black {
  background-image: url("/img/icon/inst_black.svg"); }

.icon-twitter {
  background-image: url("/img/icons/twitter.svg"); }

@media (max-width: 360px) {
  .icon-sm {
    display: block; } }
.layout__activities {
  background: #F5F5F7;
  padding-bottom: 80px; }

.layout__activities__title {
  font-family: 'Conv_ArkhipKomi', serif;
  font-size: 26px;
  padding: 80px 28px 40px 0;
  position: relative;
  display: inline-block;
  color: #000 !important;
  text-decoration: none; }

.layout__activities__title:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("/img/icons/arrow-right.svg") no-repeat;
  position: absolute;
  top: 95px;
  right: 0; }

.layout__activities__title .no_elements {
  border: 1px solid #e6e6e6;
  padding: 30px;
  color: #333; }

.layout__activities .dropdown .dropdown-toggle {
  font-size: 19px;
  font-family: 'Conv_ArkhipKomi', serif;
  color: #76767A !important;
  width: 100%;
  margin-bottom: 32px;
  border-radius: 0 !important;
  border-bottom: 1px solid #D9D9DE !important;
  padding: 16px 0px !important; }

.layout__activities .dropdown .dropdown-menu {
  width: 100%;
  padding: 0; }

.layout__activities .dropdown .dropdown-menu .nav-link {
  border-radius: 0; }

.layout__activities .dropdown .dropdown-menu .nav-link.active {
  background: #eee; }

.layout__activities .nav-pills .nav-link {
  border-bottom: 1px solid #E5E5EB;
  padding: 16px 14px;
  border-radius: 4px;
  color: #333333; }

.layout__activities .nav-pills .nav-link.active {
  background: #FFFFFF;
  border-bottom-color: transparent; }

.layout__activities .list .item {
  font-family: 'Conv_ArkhipKomi', serif;
  font-size: 18px;
  line-height: 24px;
  padding: 24px 88px 24px 36px;
  background: #fff;
  border-radius: 4px;
  position: relative;
  display: block;
  margin-bottom: 8px;
  color: #333; }

.layout__activities .list .item--hidden {
  display: none; }

.layout__activities .list .item:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("/img/icons/arrow-right-full.svg") no-repeat;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%); }

.layout__activities .open-full {
  color: #000;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  padding-top: 24px; }

.layout__activities .open-full span {
  position: relative;
  padding-right: 32px; }

.layout__activities .open-full span:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("/img/icons/arrow-down.svg") no-repeat;
  position: absolute;
  top: 6px;
  right: 0px;
  background-position: center;
  transform-origin: center;
  transform: rotate(0deg);
  transition: transform 400ms; }

.layout__activities .open-full.active span:after {
  transform: rotate(180deg); }

.layout__main .content {
  font-size: 18px;
  line-height: 24px;
  color: #333;
  margin-bottom: 60px; }

.layout__main .content .title {
  font-size: 22px;
  line-height: 28px;
  color: #333; }

.layout__main .content .title--big {
  font-family: 'Conv_ArkhipKomi', serif;
  font-size: 26px;
  line-height: 40px;
  margin-bottom: 28px; }

.layout__main .content .row-table {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 36px 32px;
  margin-bottom: 60px; }

.layout__main .content .row-table .item {
  display: flex;
  margin-bottom: 20px; }

.layout__main .content .row-table .item:last-child {
  margin-bottom: 0; }

.layout__main .content .row-table .item .title {
  min-width: 150px;
  margin-right: 11px;
  font-family: 'Conv_ArkhipKomi', serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #76767A; }

.layout__main .content .row-table .item .description {
  font-family: 'Conv_ArkhipKomi', serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #333333; }

.layout__main .links .item {
  display: block;
  background: #fff;
  padding: 24px 80px 24px 36px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0px 8px 0px transparent;
  transition: box-shadow 300ms;
  margin-bottom: 16px;
  position: relative; }

.layout__main .links .item:after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("/img/icons/arrow-right-full.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%); }

.layout__main .links .item .title {
  font-family: 'Conv_ArkhipKomi', serif;
  font-size: 18px;
  line-height: 24px;
  color: #333; }

.layout__main .links .item:hover {
  box-shadow: 0px 8px 20px rgba(118, 118, 122, 0.2); }

.layout__main .links .item:hover:after {
  background-image: url("/img/icons/arrow-right-full-blue.svg"); }

.layout__main .links .item:hover .title {
  color: #0050B2; }

.layout__main .downloads > .title {
  font-family: 'Conv_ArkhipKomi', serif;
  font-size: 22px;
  line-height: 28px;
  color: #0050B2;
  padding: 16px 0;
  display: block;
  position: relative;
  border-bottom: 1px solid #E5E5EB;
  cursor: pointer; }

.layout__main .downloads > .title:after {
  content: "";
  background: url("/img/icons/arrow-down-blue.svg");
  background-repeat: no-repeat;
  width: 16px;
  height: 10px;
  position: absolute;
  top: 25px;
  right: 0;
  transition: transform 200ms;
  transform: rotate(0deg); }

.layout__main .downloads > .title.active {
  border-bottom: 1px solid transparent; }

.layout__main .downloads > .title.active:after {
  transform: rotate(180deg); }

.layout__main .downloads > .title.active + .list {
  display: block; }

.layout__main .downloads .list {
  display: none; }

.layout__main .downloads .list .item {
  display: block;
  background: #fff;
  padding: 32px 36px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0px 8px 0px transparent;
  transition: box-shadow 300ms;
  margin-bottom: 16px;
  position: relative; }

.layout__main .downloads .list .item .title {
  font-family: 'Conv_ArkhipKomi', serif;
  font-size: 18px;
  line-height: 24px;
  color: #000; }

.layout__main .downloads .list .item .footer {
  display: flex;
  justify-content: space-between;
  margin-top: 36px; }

.layout__main .downloads .list .item .footer .date {
  font-size: 14px;
  line-height: 20px;
  color: #76767A; }

.layout__main .downloads .list .item .footer .info {
  font-size: 14px;
  line-height: 20px;
  color: #76767A;
  opacity: 1;
  display: block; }

.layout__main .downloads .list .item .footer .info:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("/img/icons/download-grey.svg") no-repeat;
  background-position: center;
  vertical-align: middle;
  display: inline-block;
  margin-left: 10px; }

.layout__main .downloads .list .item .footer .button {
  padding: 10px 17px;
  background: #0061D9;
  border-radius: 4px;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #FFF;
  display: none;
  position: absolute;
  right: 36px;
  bottom: 32px; }

.layout__main .downloads .list .item:hover {
  box-shadow: 0px 8px 20px rgba(118, 118, 122, 0.2); }

.layout__main .downloads .list .item:hover .button {
  display: block; }

.layout__main .downloads .list .item:hover .info {
  display: none; }

.layout__main .downloads .list.active {
  display: block; }

.images_carousel .images_carousel_item {
  margin: 0 15px;
  border-radius: 4px 4px;
  overflow: hidden;
  height: 250px;
  background-size: cover;
  background-position: center; }

.images_carousel .images_carousel_item img {
  border-radius: 4px 4px; }

.page_image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-bottom: 12px; }

.subscribe {
  border: 1px solid #D9D9DE;
  border-radius: 4px;
  padding: 24px 20px;
  font-size: 14px; }

.subscribe .subscribe_title {
  font-size: 14px;
  line-height: 20px;
  color: #76767A; }

.subscribe form {
  margin-top: 12px; }

.mobile_filter_button {
  display: none;
  margin-left: 10px; }

.important-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.important-links a {
  display: flex;
  width: 24%;
  border: 1px solid #c6c6c6;
  align-items: center;
  color: #6c757d;
  padding: 15px 20px;
  transition: background 200ms;
  text-decoration: none; }

.important-links a:hover {
  background: #e6e6e6; }

@media screen and (max-width: 991px) {
  .mobile_filter_button {
    display: block; } }
body.main_body {
  font-family: 'Conv_ArkhipKomi', serif; }

.line {
  width: 100%; }

.block_title {
  color: #000;
  font-size: 36px;
  line-height: 120%;
  display: inline-block;
  position: relative;
  width: 100%;
  margin-top: 100px;
  margin-left: 95px; }
  .block_title .title {
    position: relative;
    z-index: 2; }
  .block_title i {
    display: block;
    width: 160px;
    height: 8px;
    background-color: #16B0B8;
    position: absolute;
    bottom: 8px;
    z-index: 1; }

.block_title.white {
  color: #fff; }

.additional_content_block {
  padding: 24px 20px;
  border: 1px solid #D9D9DE;
  box-sizing: border-box;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px; }
  .additional_content_block label {
    color: #76767A;
    margin-bottom: 0; }
  .additional_content_block .date {
    margin-bottom: 12px; }
  .additional_content_block a {
    color: #0050B2; }

.back_button {
  padding: 10px 17px;
  border: 1px solid rgba(0, 26, 255, 0.3);
  box-sizing: border-box;
  border-radius: 4px;
  display: inline-block;
  margin-top: 80px;
  color: #0050B2 !important;
  text-decoration: none !important; }

.text-header {
  font-weight: 600;
  font-size: 26px;
  line-height: 32px;
  color: #000000; }

.text-description_big {
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  color: #76767A; }

.text-normal {
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  color: #333333; }

.text-normal-bold {
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  color: #333333; }

.text-description {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #76767A; }

.mobile_back_button {
  display: none;
  position: relative; }
  .mobile_back_button:before {
    content: '';
    width: 24px;
    height: 24px;
    display: block;
    background: url("../img/icons/arrow-down-blue.svg") no-repeat center;
    transform: rotate(90deg); }

.table td, .table th {
  border: 0; }

.page_title {
  font-size: 44px;
  font-weight: bold;
  line-height: 56px; }

.desktop_hide {
  display: none; }

.filter_block .filter_title {
  display: none; }

.mobile_show {
  display: none; }

.open-full.button {
  color: #000;
  text-decoration: none; }

.mobile_children_menu_title {
  display: none; }

.column--fixed {
  position: fixed;
  z-index: 999;
  top: 15px; }

.column--absolute {
  position: absolute; }

.white_block {
  width: 100%;
  background: #fff;
  padding: 36px 32px;
  border-radius: 4px;
  display: flex; }
  .white_block .left_column {
    width: 30%;
    font-size: 14px;
    line-height: 20px;
    color: #76767A; }
  .white_block .right_column {
    width: 70%;
    font-size: 14px;
    line-height: 20px;
    color: #333333; }

.layout__navbar .menu-full.active {
  display: block; }

.layout__links .open-full.mobile_show, .mobile_show-xs {
  display: none; }

.desktop_show {
  display: block; }

.footer {
  border-top: 1px solid #1B7D96;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  position: absolute;
  bottom: 0;
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 50px; }
  .footer .item {
    z-index: 1; }

.header_slider {
  margin-top: 80px; }
  @media screen and (max-width: 991px) {
    .header_slider {
      margin-top: 140px; } }

.sale_slider {
  width: 100%;
  max-width: 1920px;
  height: auto;
  margin-bottom: 55px; }
  .sale_slider .slider_title {
    width: 355px;
    height: 68px;
    background: url(../img/slider_title_bg.png) no-repeat;
    font-family: sans-serif;
    font-weight: bold;
    color: #000;
    line-height: 68px;
    font-size: 36px;
    text-align: center; }
    @media screen and (max-width: 480px) {
      .sale_slider .slider_title {
        width: 300px; } }
  .sale_slider .slide {
    width: 100%;
    position: relative;
    display: flex !important;
    padding: 0 70px;
    min-height: 430px;
    background-size: cover !important;
    background-position-y: center !important; }
    .sale_slider .slide .left_block {
      float: left;
      width: 70%;
      position: relative;
      z-index: 2; }
      .sale_slider .slide .left_block .slide_title {
        font-size: 36px;
        width: 100%; }
        @media screen and (max-width: 480px) {
          .sale_slider .slide .left_block .slide_title {
            font-size: x-large; } }
      .sale_slider .slide .left_block .slide_description {
        font-size: 18px; }
      @media screen and (max-width: 767px) {
        .sale_slider .slide .left_block {
          order: 2;
          width: 100%;
          margin-top: 80px; } }
      @media screen and (max-width: 480px) {
        .sale_slider .slide .left_block {
          margin-top: 130px; } }
      @media screen and (max-width: 375px) {
        .sale_slider .slide .left_block {
          margin-top: 160px; } }
    @media screen and (max-width: 1199px) {
      .sale_slider .slide {
        background-size: cover !important;
        background-repeat: no-repeat !important; } }
    @media screen and (max-width: 991px) {
      .sale_slider .slide {
        background-position-y: center !important;
        min-height: 330px; } }
    @media screen and (max-width: 575px) {
      .sale_slider .slide {
        background-position-y: center !important;
        min-height: 230px; } }
    @media screen and (max-width: 375px) {
      .sale_slider .slide {
        background-position-y: center !important;
        min-height: 130px; } }
    @media screen and (max-width: 767px) {
      .sale_slider .slide {
        flex-wrap: wrap;
        padding: 0 30px;
        justify-content: center; } }
    @media screen and (max-width: 480px) {
      .sale_slider .slide {
        padding: 0; } }
  @media screen and (max-width: 991px) {
    .sale_slider {
      margin-bottom: 30px; } }
  @media screen and (max-width: 767px) {
    .sale_slider {
      height: auto;
      background-repeat-y: repeat !important; } }
  @media screen and (max-width: 480px) {
    .sale_slider {
      margin-bottom: 10px; } }

.slider_next_arrow, .slider_prev_arrow {
  width: 24px;
  height: 103px;
  position: absolute;
  top: 50%;
  margin-top: -51px;
  right: 350px;
  cursor: pointer;
  z-index: 2; }

.slider_prev_arrow {
  left: 350px;
  right: inherit;
  transform: scale(-1, 1); }

.slider_next_dark_arrow, .slider_prev_dark_arrow {
  width: 24px;
  height: 103px;
  position: absolute;
  top: 50%;
  margin-top: -51px;
  right: -30px;
  cursor: pointer;
  z-index: 2; }

.slider_prev_dark_arrow {
  left: -30px;
  right: inherit;
  transform: scale(-1, 1); }

.button_more {
  background: #eb6025;
  color: #fff;
  text-transform: uppercase;
  border-radius: 20px;
  border: 2px solid #eb6025;
  height: 38px;
  line-height: 35px;
  padding: 0 50px;
  font-family: sans-serif;
  font-weight: bold;
  outline: none;
  display: inline-block; }
  .button_more:hover {
    background: #fff;
    color: #eb6025;
    text-decoration: none; }

.carusel_next_arrow, .carusel_prev_arrow {
  width: 30px;
  position: absolute;
  background: url(../img/icon/arrow_right.png) no-repeat center center;
  right: 150px;
  z-index: 999;
  cursor: pointer;
  height: 100%;
  top: 0; }

.carusel_prev_arrow {
  left: 150px;
  right: inherit;
  transform: scale(-1, 1); }

.slide_text {
  color: #fff;
  font-size: 36px; }
  .slide_text a {
    color: #fff;
    text-decoration: underline; }

.slide_button {
  color: #fff;
  font-size: 36px;
  text-transform: uppercase;
  padding: 12px 15px;
  background-color: #3B88BE;
  margin-top: 30px;
  display: inline-block; }
  .slide_button:hover {
    background-color: #072C51;
    color: #fff; }

.callback_form {
  width: 100%;
  height: 502px;
  position: relative; }
  .callback_form .block_title {
    position: absolute;
    top: 50px;
    width: 96%;
    left: 2%;
    text-align: center;
    font-family: 'Conv_ArkhipKomi', serif;
    font-weight: bold;
    color: #fff;
    font-size: 36px; }
    @media screen and (max-width: 991px) {
      .callback_form .block_title {
        font-size: xx-large;
        line-height: 32px; } }
    @media screen and (max-width: 480px) {
      .callback_form .block_title {
        font-size: x-large;
        line-height: 22px;
        top: 30px; } }
  .callback_form .block_bg {
    width: 100%;
    display: flex;
    justify-content: space-between; }
    .callback_form .block_bg .orange_block {
      background: #eb6025 url(../img/form_bg.png) no-repeat bottom right;
      width: 50%;
      height: 502px; }
      @media screen and (max-width: 767px) {
        .callback_form .block_bg .orange_block {
          width: 100%; } }
      @media screen and (max-width: 480px) {
        .callback_form .block_bg .orange_block {
          background-position-x: center !important; } }
    .callback_form .block_bg .blue_block {
      background: #005fa7;
      width: 50%;
      height: 502px;
      color: #fff; }
      .callback_form .block_bg .blue_block .callback_form_body {
        margin-top: 130px;
        margin-left: 60px;
        width: 400px; }
        .callback_form .block_bg .blue_block .callback_form_body input[type=text], .callback_form .block_bg .blue_block .callback_form_body input[type=tel], .callback_form .block_bg .blue_block .callback_form_body input[type=email] {
          width: 100%;
          border: 0;
          border-bottom: 1px solid #fff;
          background: transparent;
          color: #fff;
          font-size: 20px;
          margin-bottom: 35px;
          outline: none; }
        .callback_form .block_bg .blue_block .callback_form_body input[type=text]::-webkit-input-placeholder, .callback_form .block_bg .blue_block .callback_form_body input[type=tel]::-webkit-input-placeholder, .callback_form .block_bg .blue_block .callback_form_body input[type=email]::-webkit-input-placeholder {
          color: #fff; }
        .callback_form .block_bg .blue_block .callback_form_body input[type=text]:-ms-input-placeholder, .callback_form .block_bg .blue_block .callback_form_body input[type=tel]:-ms-input-placeholder, .callback_form .block_bg .blue_block .callback_form_body input[type=email]:-ms-input-placeholder {
          color: #fff; }
        .callback_form .block_bg .blue_block .callback_form_body input[type=text]::-ms-input-placeholder, .callback_form .block_bg .blue_block .callback_form_body input[type=tel]::-ms-input-placeholder, .callback_form .block_bg .blue_block .callback_form_body input[type=email]::-ms-input-placeholder {
          color: #fff; }
        .callback_form .block_bg .blue_block .callback_form_body input[type=text]::placeholder, .callback_form .block_bg .blue_block .callback_form_body input[type=tel]::placeholder, .callback_form .block_bg .blue_block .callback_form_body input[type=email]::placeholder {
          color: #fff; }
        .callback_form .block_bg .blue_block .callback_form_body input[type=submit] {
          padding: 0 20px;
          background: #eb6025;
          height: 38px;
          line-height: 35px;
          color: #fff;
          font-family: 'Conv_ArkhipKomi', serif;
          font-weight: bold;
          font-size: 20px;
          border-radius: 20px;
          border: 2px solid #eb6025; }
          .callback_form .block_bg .blue_block .callback_form_body input[type=submit]:hover {
            background: #fff;
            color: #eb6025; }
        @media screen and (max-width: 767px) {
          .callback_form .block_bg .blue_block .callback_form_body {
            margin: 60px auto 0 auto; }
            .callback_form .block_bg .blue_block .callback_form_body form {
              text-align: center; } }
        @media screen and (max-width: 480px) {
          .callback_form .block_bg .blue_block .callback_form_body {
            width: 375px; } }
        @media screen and (max-width: 375px) {
          .callback_form .block_bg .blue_block .callback_form_body {
            width: 310px; } }
      @media screen and (max-width: 767px) {
        .callback_form .block_bg .blue_block {
          width: 100%;
          height: auto;
          min-height: 400px; } }
    @media screen and (max-width: 767px) {
      .callback_form .block_bg {
        flex-wrap: wrap; } }
  @media screen and (max-width: 767px) {
    .callback_form {
      height: auto; } }

.main_page_services_block {
  margin-bottom: 100px; }
  @media screen and (max-width: 480px) {
    .main_page_services_block {
      margin-bottom: 30px; } }

.services_block_body {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px; }

.services_body {
  margin-top: 50px; }
  @media screen and (max-width: 991px) {
    .services_body {
      margin-top: 20px; } }

.partner_tile {
  margin-bottom: 36px;
  text-align: center;
  justify-content: center;
  outline: none; }
  .partner_tile span {
    width: 96%;
    text-align: center;
    margin: 20px auto;
    display: block;
    font-size: 18px;
    color: #000; }
  .partner_tile:hover {
    text-decoration: none; }

.list.row {
  width: 100%; }

.search_tile {
  margin-bottom: 25px; }

.search_date {
  color: #072C51;
  font-size: 16px; }

.search_item_title {
  font-size: 22px;
  font-weight: bold; }
  .search_item_title a {
    color: #072C51; }

.search_page_type {
  font-style: italic;
  color: #999; }

.search_advise {
  width: 100%;
  padding: 10px;
  border: 1px solid #eee;
  margin-top: 10px;
  display: block; }
  .search_advise span {
    background-color: #ffed4a; }

.main_page_container {
  font-family: 'Conv_ArkhipKomi', serif;
  overflow-x: hidden;
  font-size: 18px;
  line-height: 24px;
  background-color: #E5E5E5; }

.landing_block {
  max-width: 1920px;
  margin: 0 auto; }

.home_page_header {
  width: 100%;
  min-width: 1120px;
  height: 256px;
  background: url("../img/home_page_header_bg.png") no-repeat;
  display: flex;
  align-items: center;
  padding: 0 48px; }
  .home_page_header .text_block {
    text-align: left;
    font-family: 'Conv_ArkhipKomi', serif;
    color: #000;
    position: relative; }
    .home_page_header .text_block .big_text {
      display: block;
      font-weight: bold;
      width: 100%;
      font-size: 44px;
      line-height: 56px; }
    .home_page_header .text_block .small_text {
      font-size: 18px;
      font-weight: 500;
      line-height: 24px; }

.home_page_services_block_container {
  width: 100%;
  background-color: #F5F5F7;
  padding: 25px 0 25px 0; }
  .home_page_services_block_container .service_tile {
    margin-bottom: 15px; }

.home_page_slider {
  width: 100%;
  height: 1080px;
  position: relative; }
  .home_page_slider .container {
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: center; }
  .home_page_slider .slick-dots {
    position: absolute;
    bottom: 168px;
    text-align: center;
    width: 100%; }
    .home_page_slider .slick-dots li {
      display: inline; }
      .home_page_slider .slick-dots li button {
        outline: none;
        cursor: pointer;
        background-color: #3B88BE;
        font-size: 0;
        width: 10px;
        height: 10px;
        border: 0;
        border-radius: 50%;
        margin: 0 5px;
        padding: 0; }
    .home_page_slider .slick-dots li.slick-active button {
      background-color: #fff; }
  .home_page_slider .slide_block_title, .home_page_slider .slide_title {
    color: #fff;
    position: absolute;
    z-index: 1000;
    font-size: 36px;
    line-height: 47px;
    top: 200px;
    text-transform: uppercase; }
  .home_page_slider .slide_description {
    width: 100%;
    color: #fff;
    z-index: 1000;
    font-size: 36px;
    padding: 0 30px;
    text-align: justify; }
    .home_page_slider .slide_description p {
      text-align: justify; }
    .home_page_slider .slide_description * {
      white-space: inherit !important; }
  .home_page_slider .slider_item {
    max-width: 1920px;
    height: 1080px;
    position: relative; }
  .home_page_slider .slide_overflow {
    background: rgba(7, 44, 81, 0.8);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 999; }
  .home_page_slider .slide {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center top !important;
    min-height: 100%;
    max-height: 1080px;
    height: auto;
    position: absolute;
    width: 100%;
    top: 0; }

.slide_column_block {
  display: flex;
  justify-content: space-between; }
  .slide_column_block .slide_left_column {
    margin-right: 50px; }

.slide_margin_top {
  margin-top: 30px; }

.home_page_news_block {
  margin-top: 100px; }
  .home_page_news_block .line {
    margin-bottom: 48px; }
  .home_page_news_block .all_news_url {
    font-size: 18px;
    font-weight: 500;
    color: #0061D9; }
  .home_page_news_block .container {
    position: relative; }
    .home_page_news_block .container .block_title {
      color: #000;
      font-size: 36px;
      line-height: 120%;
      display: inline-block;
      position: relative;
      z-index: 1; }
      .home_page_news_block .container .block_title:after {
        content: '';
        display: block;
        width: 160px;
        height: 8px;
        background-color: #16B0B8;
        position: absolute;
        bottom: 0;
        z-index: 0; }
    .home_page_news_block .container .block_title.white {
      color: #fff; }
  .home_page_news_block .main_news_block_list {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0 0 72px 0;
    display: flex; }
    .home_page_news_block .main_news_block_list .news_block {
      display: inline-block; }
      .home_page_news_block .main_news_block_list .news_block .news_text_block {
        flex-wrap: wrap;
        color: #000;
        width: 100%; }
        .home_page_news_block .main_news_block_list .news_block .news_text_block .news_title {
          width: 100%;
          font-size: 18px;
          color: #000;
          line-height: 24px;
          text-decoration: none; }
          .home_page_news_block .main_news_block_list .news_block .news_text_block .news_title a {
            color: #333; }
      .home_page_news_block .main_news_block_list .news_block .date_category_row {
        margin-top: 20px;
        margin-bottom: 8px; }
        .home_page_news_block .main_news_block_list .news_block .date_category_row .date_string {
          font-size: 14px;
          line-height: 20px;
          color: #76767A; }
        .home_page_news_block .main_news_block_list .news_block .date_category_row .category_url {
          font-size: 14px;
          line-height: 20px;
          color: #0050B2; }
    .home_page_news_block .main_news_block_list .news_block.big img {
      border-radius: 4px;
      width: auto;
      height: 100%; }
    .home_page_news_block .main_news_block_list .news_block.big .news_img {
      width: 100%;
      margin-bottom: 8px;
      max-height: 400px;
      height: 100%;
      position: relative;
      text-align: center; }
    .home_page_news_block .main_news_block_list .news_block.big .news_title a {
      font-size: 26px;
      line-height: 40px;
      color: #333;
      font-weight: bold; }
    .home_page_news_block .main_news_block_list .news_block.big .news_description {
      margin-top: 16px;
      color: #333333;
      font-size: 18px;
      font-weight: 500; }
    .home_page_news_block .main_news_block_list .right_column_news {
      max-width: 352px;
      padding-left: 32px; }
      .home_page_news_block .main_news_block_list .right_column_news .news_block.normal {
        padding-bottom: 56px;
        border-bottom: 1px solid #D9D9DE;
        margin-bottom: 32px; }
        .home_page_news_block .main_news_block_list .right_column_news .news_block.normal .news_title a {
          font-weight: bold;
          font-size: 18px;
          line-height: 24px; }
  .home_page_news_block .slick-dots {
    position: relative;
    bottom: 0;
    text-align: left;
    width: 100%; }
    .home_page_news_block .slick-dots li {
      display: inline; }
      .home_page_news_block .slick-dots li button {
        outline: none;
        cursor: pointer;
        background-color: #072C51;
        font-size: 0;
        width: 10px;
        height: 10px;
        border: 0;
        border-radius: 50%;
        margin: 0 5px;
        padding: 0; }
    .home_page_news_block .slick-dots li.slick-active button {
      background-color: #fff; }
  .home_page_news_block .button_block {
    position: absolute;
    bottom: 200px;
    left: 0; }
    .home_page_news_block .button_block a {
      color: #fff;
      outline: none; }
    .home_page_news_block .button_block .more_news_button {
      background-color: #3B88BE; }
    .home_page_news_block .button_block .subscribe_news_button {
      background-color: #E22428; }
    .home_page_news_block .button_block .more_anons_button {
      background-color: #072C51;
      border-color: #072C51; }

.mosaic_block {
  width: 100%;
  min-height: 1080px;
  background: url(../img/mosaic_bg.png) repeat-y top center;
  z-index: 1;
  position: relative; }

#home_page_goverment_body {
  padding-bottom: 100px;
  min-height: 980px; }
  #home_page_goverment_body .block_title {
    text-transform: uppercase;
    font-size: 36px;
    color: #072C51;
    margin-bottom: 25px;
    padding-top: 100px;
    width: 100%; }
  #home_page_goverment_body .column_block {
    display: flex; }
    #home_page_goverment_body .column_block .left_column {
      max-width: 255px;
      margin-right: 20px; }
      #home_page_goverment_body .column_block .left_column a {
        color: #072C51;
        font-size: 20px;
        display: block;
        padding: 12px 15px;
        border: 0.5px solid #E1E5EB;
        box-sizing: border-box;
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
        border-radius: 2px;
        margin-top: 10px;
        text-decoration: none;
        position: relative;
        z-index: 2;
        background-color: #fff; }
        #home_page_goverment_body .column_block .left_column a:hover {
          background-color: #3B88BE;
          color: #fff; }
      #home_page_goverment_body .column_block .left_column .glava_name {
        margin-top: 20px;
        width: 100%;
        padding: 12px 15px;
        color: #fff;
        font-size: 20px;
        background-color: #3B88BE;
        border: 0.5px solid #E1E5EB;
        box-sizing: border-box;
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
        border-radius: 2px; }
    #home_page_goverment_body .column_block .right_column {
      color: #072C51;
      font-size: 20px; }
      #home_page_goverment_body .column_block .right_column .text_title {
        font-size: 24px;
        line-height: 31px;
        text-transform: uppercase;
        margin-bottom: 20px; }
      #home_page_goverment_body .column_block .right_column p {
        margin-bottom: 0; }
      #home_page_goverment_body .column_block .right_column .btn_additional {
        float: right;
        padding: 12px 15px;
        background-color: #E22428;
        color: #fff;
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
        border-radius: 2px;
        font-size: 24px; }

.home_map_block {
  width: 100%;
  max-width: 1920px;
  max-height: 1080px;
  background: url("../img/home_map_block_bg.jpg") no-repeat center center; }
  .home_map_block svg {
    height: 1050px;
    width: 100%; }
    .home_map_block svg path {
      position: relative;
      cursor: pointer; }
      .home_map_block svg path:hover {
        fill: #072C51; }

.map_tooltip {
  border-radius: 2px;
  position: absolute;
  z-index: 1000;
  background-color: #3B88BE;
  min-width: 200px;
  min-height: 30px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  display: none;
  padding: 5px 15px; }

.home_url_block {
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 80px 0; }
  .home_url_block .logo_title {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: 32px; }
    .home_url_block .logo_title .logo_block {
      max-height: 74px;
      text-align: center;
      max-width: 137px; }
      .home_url_block .logo_title .logo_block img {
        height: 100%;
        width: auto; }
    .home_url_block .logo_title .logo_title_block {
      font-weight: 600;
      font-size: 22px;
      line-height: 28px;
      margin-top: 10px; }
      .home_url_block .logo_title .logo_title_block .big_text {
        font-family: 'Conv_ArkhipKomi', serif;
        font-weight: bold; }
    .home_url_block .logo_title .big_text {
      text-transform: uppercase;
      width: 100%; }
  .home_url_block .url_block {
    width: 48%;
    height: 100%;
    display: flex;
    border: 1px solid #E5E5EB;
    box-sizing: border-box;
    border-radius: 4px;
    flex-wrap: wrap;
    position: relative;
    min-height: 376px; }
    .home_url_block .url_block .portal_preview {
      position: absolute;
      right: 0;
      bottom: 0; }
    .home_url_block .url_block .to_portal_button {
      position: absolute;
      padding: 12px 44px 12px 22px;
      background: #0061D9;
      box-shadow: 0 8px 20px -8px #004FB1;
      border-radius: 4px;
      left: 48px;
      bottom: 36px;
      color: #fff; }
      .home_url_block .url_block .to_portal_button:after {
        content: '';
        width: 16px;
        height: 16px;
        display: inline-block;
        right: 15px;
        position: absolute;
        background: url("../img/icons/arrow-href.svg");
        top: 17px; }

.layout__links {
  background: #F5F5F7;
  padding-bottom: 80px; }

.layout__links .no_elements {
  border: 1px solid #e6e6e6;
  padding: 30px;
  color: #333; }

.layout__links .block_title {
  font-size: 26px;
  color: #000;
  padding: 80px 0 40px 0; }

.layout__links .list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px; }

.layout__links .list .item {
  display: block;
  background: #FFF;
  padding: 20px 34px 20px 32px;
  border-radius: 4px;
  color: #000;
  font-size: 18px;
  font-family: 'Conv_ArkhipKomi', serif;
  margin: 16px auto;
  width: 30%;
  position: relative; }

.layout__links .list .item--hidden {
  display: none; }

.layout__links .list .item--hidden.active {
  display: block; }

.layout__links .list .item_url:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("/img/icons/arrow-link.svg") no-repeat;
  position: absolute;
  top: 12px;
  right: 12px; }

.layout__links .list .item_content:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("/img/icons/link-inside.svg") no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: 12px; }

.layout__links .open-full {
  background: #fff;
  display: block;
  padding: 12px;
  text-align: center;
  color: #000;
  font-size: 18px;
  margin-top: 16px;
  border-radius: 4px; }

@media (max-width: 768px) {
  .layout__links {
    background: #F5F5F7;
    padding-bottom: 80px; }

  .layout__links .title {
    font-size: 22px;
    padding: 36px 0 16px 0; }

  .layout__links .list {
    display: flex;
    flex-wrap: wrap;
    margin: 0; }

  .layout__links .list .item {
    padding: 16px 56px 16px 16px;
    font-size: 16px;
    margin: 8px auto;
    width: 100%; }

  .layout__links .list .item--hidden {
    display: none; }

  .layout__links .list .item:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url("/img/icons/arrow-link.svg") no-repeat;
    position: absolute;
    top: 12px;
    right: 12px; }

  .open-full {
    width: 100%;
    background: #fff;
    display: block;
    padding: 12px;
    text-align: center;
    color: #000;
    font-size: 18px;
    margin-top: 16px;
    border-radius: 4px; }

  .open-full.mobile_show-xs {
    display: none; } }
.landing_block {
  margin-bottom: 116px; }
  .landing_block:last-child {
    margin-bottom: 0; }

#landing_block_3, .landing_block_random_fact {
  margin-bottom: 0; }

.landing_block_random_fact {
  width: 100%;
  height: 842px;
  background: #005A6D url(../img/page_content/footer_bg.png) center no-repeat;
  position: relative; }
  .landing_block_random_fact:after {
    content: '';
    position: absolute;
    top: -92px;
    right: 5%;
    width: 187px;
    height: 144px;
    display: block;
    background-image: url(../img/page_content/footer_right_icon.png); }
  .landing_block_random_fact:before {
    content: '';
    position: absolute;
    top: -17px;
    left: 22%;
    width: 34px;
    height: 34px;
    display: block;
    background-image: url(../img/page_content/footer_left_icon.png); }
  .landing_block_random_fact .container {
    overflow: hidden;
    height: 100%;
    position: relative; }
  .landing_block_random_fact .fact_body {
    max-width: 730px;
    width: 100%;
    min-height: 370px;
    height: auto;
    position: relative;
    top: 100px;
    background-image: url(../img/page_content/random_fact_bg.png), linear-gradient(180deg, #FFFFFF 0%, #EAEAEA 100%);
    background-repeat: no-repeat !important;
    background-position: center !important;
    border-radius: 12px;
    margin: 0 auto;
    display: flex;
    align-items: center; }
  .landing_block_random_fact .fact_body_title {
    width: 100%;
    text-align: center;
    font-size: 28px;
    line-height: 120%;
    color: #E1671F;
    padding-top: 60px; }
  .landing_block_random_fact .fact_body_text {
    font-family: 'PT Serif', serif;
    padding: 60px 60px 75px 60px;
    color: #0A555F;
    font-size: 22px;
    line-height: 120%; }
  .landing_block_random_fact .change_fact_button {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px; }

.congratulation_block .container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between; }
  .congratulation_block .container .photo_block {
    width: 100%;
    height: 336px;
    background-image: url(../img/page_content/glava_photo.png);
    background-position: top center;
    background-repeat: no-repeat; }
  .congratulation_block .container .text_block {
    min-width: 540px;
    max-width: 540px;
    height: auto;
    border-radius: 12px;
    background-color: #fff;
    padding: 30px 40px;
    position: relative; }
    .congratulation_block .container .text_block p {
      z-index: 2;
      position: relative;
      color: #0A555F;
      font-family: 'PT Serif', serif;
      font-size: 20px;
      line-height: 130%; }
    .congratulation_block .container .text_block span {
      letter-spacing: 0.1em;
      font-size: 12px;
      line-height: 120%;
      color: #E1671F;
      text-transform: uppercase;
      padding-top: 30px; }
    .congratulation_block .container .text_block:before {
      content: '';
      position: absolute;
      width: 88px;
      height: 69px;
      left: -30px;
      top: -30px;
      background-image: url(../img/page_content/quotes.png);
      display: block;
      z-index: 1; }
    .congratulation_block .container .text_block:after {
      content: '';
      position: absolute;
      width: 68px;
      height: 51px;
      right: 5px;
      bottom: 50px;
      background-image: url(../img/page_content/ornament_1.png);
      display: block;
      z-index: 1; }

.bvi-body .main_page_container {
  margin-top: 0; }
.bvi-body .header_top_line {
  position: relative;
  z-index: 1001; }
.bvi-body .page_container {
  margin-top: 0; }
.bvi-body .slick-dots {
  position: relative;
  top: inherit; }
  .bvi-body .slick-dots li button {
    width: 20px;
    height: 20px; }
.bvi-body .landing_block {
  border-bottom: 2px solid; }
.bvi-body .home_page_header {
  display: none; }
.bvi-body .home_page_slider, .bvi-body .home_page_news_block {
  min-height: inherit;
  height: 100%; }
  .bvi-body .home_page_slider .container, .bvi-body .home_page_news_block .container {
    min-height: inherit;
    height: 100%;
    flex-wrap: wrap; }
  .bvi-body .home_page_slider .slide_block_title, .bvi-body .home_page_news_block .slide_block_title {
    position: relative;
    top: inherit; }
  .bvi-body .home_page_slider .slider_item, .bvi-body .home_page_news_block .slider_item {
    min-height: inherit;
    height: 100%;
    display: flex !important; }
    .bvi-body .home_page_slider .slider_item .slide_title, .bvi-body .home_page_news_block .slider_item .slide_title {
      top: 20px; }
.bvi-body .button_block {
  position: relative;
  bottom: inherit; }

.bvi-body[data-bvi-size='32'] .slider_item .container {
  display: flex;
  flex-wrap: wrap; }
.bvi-body[data-bvi-size='32'] .slider_item .slide_title {
  width: 100%;
  top: 0;
  position: relative; }
.bvi-body[data-bvi-size='32'] .slick-dots {
  bottom: inherit;
  position: relative; }
  .bvi-body[data-bvi-size='32'] .slick-dots li button {
    width: 40px;
    height: 40px;
    text-decoration: none !important; }
.bvi-body[data-bvi-size='32'] #home_page_goverment_body .block_title {
  padding-top: 0; }
.bvi-body[data-bvi-size='32'] .block_link.col-lg-3 {
  max-width: 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%; }
.bvi-body[data-bvi-size='32'] #home_page_userful_links .links_block .block_link {
  max-width: 100%;
  width: 100%;
  flex: 1 0; }
  .bvi-body[data-bvi-size='32'] #home_page_userful_links .links_block .block_link a {
    height: auto; }
    .bvi-body[data-bvi-size='32'] #home_page_userful_links .links_block .block_link a .link_url_name {
      position: relative;
      bottom: inherit; }
.bvi-body[data-bvi-size='32'] #home_page_goverment_body .column_block .left_column {
  max-width: inherit; }

.bvi-body[data-bvi-size='24'] .slick-dots {
  bottom: 0; }
  .bvi-body[data-bvi-size='24'] .slick-dots li button {
    width: 30px;
    height: 30px; }
.bvi-body[data-bvi-size='24'] .block_link.col-lg-3 {
  max-width: 33%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33%;
  flex: 0 0 33%; }

.bvi-body[data-bvi-theme='white'] svg line {
  stroke: #000; }
.bvi-body[data-bvi-theme='white'] .search.block:hover svg.search_ico line {
  stroke: #fff; }
.bvi-body[data-bvi-theme='white'] .map_override {
  fill: #fff !important; }

.bvi-body[data-bvi-theme='black'] svg line {
  stroke: #fff; }
.bvi-body[data-bvi-theme='black'] .search.block:hover svg.search_ico path {
  stroke: #000; }
.bvi-body[data-bvi-theme='black'] .search.block:hover svg.search_ico line {
  stroke: #000; }
.bvi-body[data-bvi-theme='black'] .map_override {
  fill: #000 !important; }

.bvi-body[data-bvi-theme='blue'] svg line {
  stroke: #063462; }
.bvi-body[data-bvi-theme='blue'] .search.block svg.search_ico path {
  stroke: #063462;
  fill: #9DD1FF; }
.bvi-body[data-bvi-theme='blue'] .search.block:hover svg.search_ico path {
  stroke: #9DD1FF; }
.bvi-body[data-bvi-theme='blue'] .search.block:hover svg.search_ico line {
  stroke: #9DD1FF; }
.bvi-body[data-bvi-theme='blue'] .map_override {
  fill: #fff !important; }

.bvi-body[data-bvi-theme='brown'] .search.block svg.search_ico path {
  stroke: #F7F3D6; }
.bvi-body[data-bvi-theme='brown'] .search.block:hover svg.search_ico path {
  stroke: #F7F3D6; }
.bvi-body[data-bvi-theme='brown'] .search.block:hover svg.search_ico line {
  stroke: #F7F3D6; }
.bvi-body[data-bvi-theme='brown'] svg line {
  stroke: #4D4B43; }
.bvi-body[data-bvi-theme='brown'] .map_override {
  fill: #F7F3D6 !important; }

.bvi-body[data-bvi-theme='green'] .search.block svg.search_ico path {
  stroke: #3B2716; }
.bvi-body[data-bvi-theme='green'] .search.block:hover svg.search_ico path {
  stroke: #3B2716; }
.bvi-body[data-bvi-theme='green'] .search.block:hover svg.search_ico line {
  stroke: #3B2716; }
.bvi-body[data-bvi-theme='green'] svg line {
  stroke: #A9E44D; }
.bvi-body[data-bvi-theme='green'] .map_override {
  fill: #3B2716 !important; }

.calendar_panel {
  width: 100%;
  height: 47px;
  background-color: #16B0B8;
  border-radius: 12px;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  color: #fff;
  position: relative;
  margin-top: 70px;
  z-index: 3; }
  .calendar_panel .filter_item_string {
    display: flex;
    align-items: center;
    font-size: 14px;
    min-width: 85px; }
    .calendar_panel .filter_item_string input {
      position: absolute;
      opacity: 0;
      width: 80%; }
    .calendar_panel .filter_item_string span.custom {
      display: inline-flex;
      align-items: center;
      user-select: none; }
      .calendar_panel .filter_item_string span.custom::before {
        content: '';
        display: inline-block;
        width: 1em;
        height: 1em;
        flex-shrink: 0;
        flex-grow: 0;
        border: 2px solid rgba(0, 0, 0, 0.3);
        border-radius: 0.25em;
        margin-right: 0.5em;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 50% 50%; }
    .calendar_panel .filter_item_string input:not(:disabled):not(:checked) + span.custom:hover::before {
      border-color: #E1671F; }
    .calendar_panel .filter_item_string input:not(:disabled):not(:checked):hover + span.custom::before {
      border-color: #E1671F; }
    .calendar_panel .filter_item_string input:not(:disabled):active + span.custom::before {
      background-color: #E1671F;
      border-color: #E1671F; }
    .calendar_panel .filter_item_string .custom-checkbox > input:focus + span::before {
      border-color: #E1671F; }
    .calendar_panel .filter_item_string input:focus:not(:checked) + span.custom::before {
      border-color: rgba(0, 0, 0, 0.3); }
    .calendar_panel .filter_item_string input:checked + span.custom::before {
      border-color: #E1671F;
      background-color: #E1671F;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
      background-size: auto; }
    .calendar_panel .filter_item_string input:checked + span.custom {
      color: #E1671F; }
    .calendar_panel .filter_item_string .color_circle {
      margin-right: 10px; }
    .calendar_panel .filter_item_string .type_choose_checkbox {
      margin-right: 5px; }
    .calendar_panel .filter_item_string:hover {
      color: #E1671F; }
  .calendar_panel .calendar_type_choose, .calendar_panel .city_choose, .calendar_panel .month_choose {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(11, 61, 71, 0.35);
    border-radius: 8px;
    position: absolute;
    padding: 14px 18px;
    font-size: 14px;
    color: #0A555F;
    z-index: 999;
    display: none;
    right: 0;
    top: 32px; }
    .calendar_panel .calendar_type_choose .filter_item_string, .calendar_panel .city_choose .filter_item_string, .calendar_panel .month_choose .filter_item_string {
      margin-bottom: 5px; }
  .calendar_panel .month_choose .month_string {
    cursor: pointer;
    font-size: 14px; }
    .calendar_panel .month_choose .month_string:hover {
      color: #E1671F; }
  .calendar_panel .month_string.active {
    color: #E1671F; }
  .calendar_panel .calendar_type_choose.active, .calendar_panel .city_choose.active, .calendar_panel .month_choose.active {
    display: block; }
  .calendar_panel .type_choose_block, .calendar_panel .month_choose_block, .calendar_panel .city_choose_block {
    display: flex;
    position: relative; }
  .calendar_panel #calendar_type_counter, .calendar_panel #calendar_choose_month, .calendar_panel #city_list_input {
    background: rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    height: 28px;
    line-height: 28px;
    margin-left: 12px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    min-width: 100px;
    font-size: 12px; }
    .calendar_panel #calendar_type_counter:after, .calendar_panel #calendar_choose_month:after, .calendar_panel #city_list_input:after {
      content: '\25BE';
      color: #fff;
      position: absolute;
      right: 5px;
      display: block;
      font-size: 16px; }
  .calendar_panel #calendar_type_counter_mobile, .calendar_panel #calendar_choose_month_mobile, .calendar_panel #city_list_input_mobile {
    cursor: pointer; }
  .calendar_panel #calendar_type_counter_mobile.active .fa-circle, .calendar_panel #calendar_choose_month_mobile.active .fa-circle, .calendar_panel #city_list_input_mobile.active .fa-circle {
    color: #fff; }
  .calendar_panel #calendar_type_counter_mobile.active .fa-calendar-minus, .calendar_panel #calendar_type_counter_mobile.active .fa-tasks, .calendar_panel #calendar_type_counter_mobile.active .fa-map-marker-alt, .calendar_panel #calendar_choose_month_mobile.active .fa-calendar-minus, .calendar_panel #calendar_choose_month_mobile.active .fa-tasks, .calendar_panel #calendar_choose_month_mobile.active .fa-map-marker-alt, .calendar_panel #city_list_input_mobile.active .fa-calendar-minus, .calendar_panel #city_list_input_mobile.active .fa-tasks, .calendar_panel #city_list_input_mobile.active .fa-map-marker-alt {
    color: #E1671F; }
  .calendar_panel #city_list_input {
    min-width: 200px;
    overflow: hidden;
    font-size: 14px;
    max-width: 200px;
    display: flex;
    line-height: 28px;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 10px; }
    .calendar_panel #city_list_input:after {
      display: none; }
  .calendar_panel .fa-stack {
    font-size: 1em; }
    .calendar_panel .fa-stack i {
      vertical-align: middle; }
    .calendar_panel .fa-stack .fa-circle {
      color: #14A4AB; }

.calendar_table .counter_ticket {
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 12px;
  background: #fff;
  border-radius: 50%;
  color: #ff0000;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px; }

.calendar_table {
  background-color: #E5E5E5; }
  .calendar_table .calendar_row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between; }
  .calendar_table .cell {
    margin: .5rem;
    width: 100%;
    max-width: 260px;
    z-index: 2; }
  .calendar_table .no_active {
    width: 100%;
    max-width: 260px;
    background-color: #8B8B8B;
    min-height: 137px;
    max-height: 137px;
    border-radius: 12px;
    position: relative;
    color: #fff; }
  .calendar_table .active {
    background-color: #fff;
    width: 100%;
    min-height: 137px;
    max-height: 137px;
    border-radius: 12px;
    position: relative; }
  .calendar_table .active.ticket {
    cursor: pointer; }
    .calendar_table .active.ticket div:first-child {
      border-radius: 12px;
      width: 100%;
      height: 100%;
      position: absolute;
      color: #fff;
      font-weight: bold;
      background-size: cover !important;
      background-position-x: center;
      background: linear-gradient(to top, #005A6D 0%, rgba(0, 0, 0, 0) 80%); }
      .calendar_table .active.ticket div:first-child .title {
        width: 100%;
        word-break: break-all; }
  .calendar_table .date_num {
    min-width: 28px;
    min-height: 28px;
    width: 28px;
    background: rgba(0, 0, 0, 0.07);
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 8px;
    left: 8px;
    position: absolute; }
  .calendar_table .date_num.active {
    background-color: #fff;
    color: #E1671F; }
  .calendar_table .type_list {
    background-color: #fff;
    padding: 4px 4px;
    position: absolute;
    top: 14px;
    right: 8px;
    border-radius: 12px;
    display: flex; }
    .calendar_table .type_list .type_circle {
      border-radius: 50%;
      width: 8px;
      height: 8px;
      margin: 0 2px; }
  .calendar_table .title_block {
    display: flex;
    flex-wrap: wrap;
    flex-flow: column;
    justify-content: flex-end;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 15px; }
    .calendar_table .title_block .string {
      display: inline-block;
      width: 100%;
      height: 15px;
      overflow: hidden; }
      .calendar_table .title_block .string .time {
        font-family: 'PT Serif', serif;
        font-weight: normal; }
      .calendar_table .title_block .string .title {
        font-weight: bold; }
  .calendar_table .width_x_1 {
    min-width: 260px; }
  .calendar_table .width_x_2 {
    min-width: 260px; }
  .calendar_table .width_x_3 {
    min-width: 260px; }
  .calendar_table .width_x_4 {
    min-width: 214px; }
  .calendar_table .width_x_5 {
    min-width: 181px; }
  .calendar_table .width_x_6 {
    min-width: 158px; }
  .calendar_table .width_x_7 {
    min-width: 134px; }

#calendarDateDataModal .modal-dialog {
  top: 15%;
  width: 660px;
  max-width: 660px; }
  #calendarDateDataModal .modal-dialog .modal-content {
    border-radius: 12px;
    min-height: 617px;
    box-shadow: 0 20px 24px rgba(11, 61, 71, 0.5), 20px 12px 15px -19px rgba(11, 61, 71, 0.65), -20px 12px 15px -19px rgba(11, 61, 71, 0.65), 0px 24px 16px -25px #0B3D47;
    width: 100%;
    background-size: contain !important;
    background-position: top center !important;
    border: 0; }
    #calendarDateDataModal .modal-dialog .modal-content .modal-body {
      width: 100%;
      border-radius: 12px;
      min-height: 410px;
      position: relative;
      height: auto;
      background: linear-gradient(180deg, rgba(0, 90, 109, 0) 6.02%, #005A6D 50%) !important; }
      #calendarDateDataModal .modal-dialog .modal-content .modal-body #modal_date {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        min-width: 100px;
        width: auto;
        height: 28px;
        padding: 0 6px;
        left: 8px;
        top: 8px;
        background: #FFFFFF;
        border-radius: 16px;
        color: #E1671F;
        font-style: normal;
        font-weight: normal;
        font-size: 12px;
        line-height: 120%; }
      #calendarDateDataModal .modal-dialog .modal-content .modal-body #modal_type {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        padding: 6px 14px;
        height: auto;
        justify-content: flex-start;
        align-items: center;
        position: absolute;
        min-width: 72px;
        right: 8px;
        top: 8px;
        background: #FFFFFF;
        border-radius: 8px;
        color: #0A555F;
        font-style: normal;
        font-weight: normal;
        font-size: 10px;
        line-height: 100%; }
        #calendarDateDataModal .modal-dialog .modal-content .modal-body #modal_type .type_string {
          width: 100%;
          display: flex;
          align-items: center;
          padding: 3px 0;
          line-height: 11px; }
      #calendarDateDataModal .modal-dialog .modal-content .modal-body #modal_calendar_data {
        position: relative;
        margin-top: 250px; }
      #calendarDateDataModal .modal-dialog .modal-content .modal-body #modal_download {
        width: 40px;
        height: 40px;
        background: #fff url(../img/icons/afisha_download_icon.svg) no-repeat center;
        position: absolute;
        left: 8px;
        top: 48px;
        border-radius: 50%;
        cursor: pointer; }
      #calendarDateDataModal .modal-dialog .modal-content .modal-body .calendar_item {
        color: #fff;
        margin-bottom: 20px; }
        #calendarDateDataModal .modal-dialog .modal-content .modal-body .calendar_item .calendar_time {
          font-family: 'PT Serif', serif;
          font-style: normal;
          font-weight: bold;
          font-size: 12px;
          margin-right: 8px; }
        #calendarDateDataModal .modal-dialog .modal-content .modal-body .calendar_item .calendar_item_text_block {
          font-size: 14px; }
          #calendarDateDataModal .modal-dialog .modal-content .modal-body .calendar_item .calendar_item_text_block .calendar_item_place {
            font-family: 'PT Serif', serif;
            font-style: normal;
            font-weight: normal;
            font-size: 14px;
            line-height: 100%;
            display: inline-block;
            margin-bottom: 8px;
            padding-right: 40px; }
          #calendarDateDataModal .modal-dialog .modal-content .modal-body .calendar_item .calendar_item_text_block .calendar_item_title {
            display: block;
            font-size: 18px;
            margin-bottom: 4px; }
        #calendarDateDataModal .modal-dialog .modal-content .modal-body .calendar_item .show_more_button {
          background: #E1671F;
          width: 20px;
          height: 20px;
          border-radius: 50%;
          color: #fff;
          position: absolute;
          right: 20px;
          cursor: pointer;
          display: flex;
          justify-content: center; }
          #calendarDateDataModal .modal-dialog .modal-content .modal-body .calendar_item .show_more_button:after {
            content: '\005E';
            display: block;
            transform: scale(1, -1);
            margin-left: 1px; }
      #calendarDateDataModal .modal-dialog .modal-content .modal-body .calendar_item.show_more .show_more_button {
        background-color: #fff; }
        #calendarDateDataModal .modal-dialog .modal-content .modal-body .calendar_item.show_more .show_more_button:after {
          color: #E1671F;
          transform: scale(1, 1);
          margin-top: 1px; }
      #calendarDateDataModal .modal-dialog .modal-content .modal-body .calendar_item.show_more .age_limit_ico {
        display: block; }
      #calendarDateDataModal .modal-dialog .modal-content .modal-body .calendar_item.show_more .calendar_item_text {
        display: block;
        font-family: 'PT Serif', serif;
        font-weight: bold; }
      #calendarDateDataModal .modal-dialog .modal-content .modal-body .calendar_item.show_more .bottom_block {
        display: flex; }
      #calendarDateDataModal .modal-dialog .modal-content .modal-body .type_circle {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        margin-right: 5px;
        display: inline-block; }
      #calendarDateDataModal .modal-dialog .modal-content .modal-body .type_circle.white_border {
        border: 1px solid #fff; }
      #calendarDateDataModal .modal-dialog .modal-content .modal-body .calendar_block {
        display: flex; }
      #calendarDateDataModal .modal-dialog .modal-content .modal-body .right_block {
        position: relative;
        min-width: 65px; }
        #calendarDateDataModal .modal-dialog .modal-content .modal-body .right_block .age_limit_ico {
          display: none;
          width: 21px;
          height: 21px;
          position: absolute;
          background-repeat: no-repeat;
          right: 9px;
          top: 30px; }
        #calendarDateDataModal .modal-dialog .modal-content .modal-body .right_block .age_ico_0 {
          background-image: url(../img/icons/age_limit_0.svg); }
        #calendarDateDataModal .modal-dialog .modal-content .modal-body .right_block .age_ico_1 {
          background-image: url(../img/icons/age_limit_6.svg); }
        #calendarDateDataModal .modal-dialog .modal-content .modal-body .right_block .age_ico_2 {
          background-image: url(../img/icons/age_limit_12.svg); }
        #calendarDateDataModal .modal-dialog .modal-content .modal-body .right_block .age_ico_3 {
          background-image: url(../img/icons/age_limit_16.svg); }
        #calendarDateDataModal .modal-dialog .modal-content .modal-body .right_block .age_ico_4 {
          background-image: url(../img/icons/age_limit_18.svg); }
      #calendarDateDataModal .modal-dialog .modal-content .modal-body .calendar_item_text {
        display: none; }
      #calendarDateDataModal .modal-dialog .modal-content .modal-body .bottom_block {
        margin-top: 40px;
        display: none; }
        #calendarDateDataModal .modal-dialog .modal-content .modal-body .bottom_block .tag_list {
          width: 70%;
          flex-wrap: wrap;
          -ms-flex-line-pack: start !important;
          align-content: flex-start !important;
          display: flex; }
          #calendarDateDataModal .modal-dialog .modal-content .modal-body .bottom_block .tag_list .tag_item {
            display: block;
            background-color: #16B0B8;
            border-radius: 12px;
            color: #fff;
            padding: 4px 8px;
            font-family: 'PT Serif', serif;
            font-weight: bold;
            font-size: 12px;
            line-height: 100%;
            margin-right: 8px;
            margin-bottom: 8px; }
        #calendarDateDataModal .modal-dialog .modal-content .modal-body .bottom_block .url_block {
          width: 30%;
          display: flex;
          justify-content: flex-end; }

.calendar_update_notice {
  font-family: "Conv_ArkhipKomi";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 100%;
  color: #696969;
  margin-top: 20px;
  display: block; }

body.noscroll {
  overflow-y: hidden; }

@media screen and (max-width: 1919px) {
  .home_page_header {
    min-width: 320px;
    background-position-x: right;
    border-radius: 14px; } }
@media screen and (max-width: 1199px) {
  .service_tile {
    position: relative;
    margin-bottom: 15px; }
    .service_tile img {
      width: 100%; }

  .calendar_table .width_x_1 {
    min-width: 260px; }
  .calendar_table .width_x_2 {
    min-width: 260px; }
  .calendar_table .width_x_3 {
    min-width: 214px; }
  .calendar_table .width_x_4 {
    min-width: 171px; }
  .calendar_table .width_x_5 {
    min-width: 147px; }
  .calendar_table .width_x_6 {
    min-width: 129px; }
  .calendar_table .width_x_7 {
    min-width: 116px; }

  .calendar_panel {
    padding: 10px; }
    .calendar_panel #calendar_type_counter, .calendar_panel #calendar_choose_month, .calendar_panel #city_list_input {
      margin-left: 5px; } }
@media screen and (max-width: 991px) {
  .calendar_panel {
    padding: 10px 60px; }
    .calendar_panel .type_choose_block, .calendar_panel .city_choose_block {
      position: initial; }
    .calendar_panel .calendar_type_choose.active, .calendar_panel .city_choose.active {
      width: 100%;
      top: 38px; }

  .calendar_panel #calendar_type_counter, .calendar_panel #calendar_choose_month, .calendar_panel #city_list_input {
    margin-left: 0; }

  .calendar_table .width_x_1 {
    min-width: 260px; }
  .calendar_table .width_x_2 {
    min-width: 183px; }
  .calendar_table .width_x_3 {
    min-width: 137px; }
  .calendar_table .width_x_4 {
    min-width: 112px; }
  .calendar_table .width_x_5 {
    min-width: 98px; }
  .calendar_table .width_x_6 {
    min-width: 89px; }
  .calendar_table .width_x_7 {
    min-width: 82px; }

  .calendar_panel
  .language_switcher {
    margin-left: 8px; }

  .search_block {
    margin-right: 8px; }

  .congratulation_block .container {
    display: block;
    position: relative; }
    .congratulation_block .container .photo_block {
      background-position-x: right; }
    .congratulation_block .container .text_block {
      max-width: max-content;
      margin-top: -100px;
      min-width: auto;
      padding: 40px 16px; }
      .congratulation_block .container .text_block:before {
        width: 68px;
        height: 53px;
        left: 32px;
        background-size: contain; }
      .congratulation_block .container .text_block:after {
        bottom: -10px; }

  .layout__links .list .item {
    display: flex;
    align-items: center;
    font-size: 16px; }

  #gosbar_grid {
    margin-top: 0;
    display: block; }

  .home_page_news_block .main_news_block_list .news_block .news_title a, .home_page_news_block .main_news_block_list .news_block.big .news_title a {
    font-size: 24px;
    line-height: 32px; }
  .home_page_news_block .main_news_block_list .news_block.big .news_img {
    max-height: 340px; }
  .home_page_news_block .main_news_block_list .news_block.big img {
    width: 100%;
    height: auto; }
  .home_page_news_block .main_news_block_list .news_block.big .list .item--hidden {
    display: none; }

  .home_url_block .url_block .logo_title {
    margin-top: 0;
    flex-wrap: wrap;
    align-items: center;
    max-height: 280px; }
    .home_url_block .url_block .logo_title .logo_block {
      height: 110px;
      max-height: 100%;
      min-width: 100%; }
      .home_url_block .url_block .logo_title .logo_block img {
        max-width: 100%;
        width: auto; }
    .home_url_block .url_block .logo_title .logo_title_block {
      text-align: center;
      font-size: 19px; }
  .home_url_block .url_block .portal_preview {
    display: none; }

  .layout__navbar .menu .desktop_menu {
    display: none; }
  .layout__navbar .menu .open-full {
    display: block; }

  .right_button_block div {
    margin-bottom: 10px;
    padding: 0 !important; }

  .right_column_news {
    padding-left: 0; } }
@media screen and (max-width: 767px) {
  #landing_block_2 {
    margin-bottom: 50px; }

  .main_container {
    padding-bottom: 32px; }

  .calendar_panel {
    margin-bottom: 20px; }

  .calendar_panel .calendar_type_choose.active, .calendar_panel .city_choose.active {
    top: 50px; }
  .calendar_panel .month_choose_block {
    position: initial; }
    .calendar_panel .month_choose_block .month_choose.active {
      display: flex;
      right: 0;
      margin: 0;
      top: 50px; }
      .calendar_panel .month_choose_block .month_choose.active .filter_item_string {
        padding: 0;
        justify-content: center; }
        .calendar_panel .month_choose_block .month_choose.active .filter_item_string .month_string {
          width: 60px;
          height: 60px;
          line-height: 60px;
          text-align: center; }
        .calendar_panel .month_choose_block .month_choose.active .filter_item_string .month_string.active {
          background: rgba(0, 0, 0, 0.07);
          border-radius: 8px; }

  .calendar_table .cell {
    margin: 2px; }
  .calendar_table .no_active {
    background-color: inherit;
    color: #898989;
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
    border-radius: 50%;
    width: 40px; }
  .calendar_table .active {
    background-color: inherit;
    color: #000;
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
    width: 40px; }
  .calendar_table .date_num {
    top: 0;
    left: 0;
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
    width: 40px;
    background: none; }
  .calendar_table .date_num.active {
    background-color: #1B7D96;
    color: #fff; }
  .calendar_table .active.ticket {
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
    width: 40px; }
    .calendar_table .active.ticket div:first-child {
      min-width: 40px;
      max-width: 40px;
      min-height: 40px;
      max-height: 40px;
      width: 40px;
      background: none !important;
      font-weight: normal; }
  .calendar_table .title_block {
    display: none; }
  .calendar_table .type_list {
    display: none; }

  #calendarDateDataModal .modal-dialog {
    top: 5%;
    width: auto; }
    #calendarDateDataModal .modal-dialog .modal-content {
      background-repeat: no-repeat; }
      #calendarDateDataModal .modal-dialog .modal-content .modal-body {
        background: linear-gradient(180deg, rgba(0, 90, 109, 0) 6.02%, #005A6D 32vh) !important; }
        #calendarDateDataModal .modal-dialog .modal-content .modal-body .calendar_item .show_more_button {
          right: 0px; }

  .landing_block_random_fact {
    height: auto; }
    .landing_block_random_fact .fact_body {
      margin-bottom: 200px; }

  .layout__links .list .item_url:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url("/img/icons/arrow-link.svg") no-repeat;
    position: absolute;
    top: 12px;
    right: 12px; }

  .layout__links .list .item_content:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url("/img/icons/link-inside.svg") no-repeat;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: 12px; }

  .news_item_body .news_column_block .news_content_column {
    max-width: 100%; }
  .news_item_body .news_column_block .right_column_news {
    max-width: 100%;
    min-width: 100%; }
    .news_item_body .news_column_block .right_column_news .right_button_block {
      padding: 0; }

  .mobile_children_menu_title {
    display: block; }

  .back_button {
    width: 100%;
    margin-bottom: 32px;
    text-align: center;
    margin-top: 60px; }

  .page_body {
    padding: 36px 0; }

  .page_container {
    padding: 0; }

  .layout__navbar .menu .open-full {
    padding: 0;
    margin-top: 0; }

  .home_page_services_block_container {
    padding: 0 0 36px 0; }
    .home_page_services_block_container .services_block_body {
      margin-top: 0; }

  .layout__links {
    padding-bottom: 36px; }

  .block_title {
    font-size: 22px;
    margin-top: 60px;
    margin-left: 0; }
    .block_title i {
      width: 88px;
      height: 4px;
      bottom: 4px; }

  .calendar_panel {
    margin-top: 40px; }

  .home_page_news_block .container .main_news_block_list {
    margin-top: 22px; }
    .home_page_news_block .container .main_news_block_list .news_block.big .news_img {
      margin-bottom: 24px; }
    .home_page_news_block .container .main_news_block_list .news_block.big img {
      width: auto;
      height: 100%; }
    .home_page_news_block .container .main_news_block_list .news_block.big .news_text_block .news_title a {
      font-weight: 600;
      font-size: 22px;
      line-height: 28px; }
    .home_page_news_block .container .main_news_block_list .right_column_news .news_block .news_title a {
      font-weight: 500;
      font-size: 16px;
      line-height: 20px; }

  .layout__all-news .news_data {
    flex-wrap: wrap; }
    .layout__all-news .news_data .news_block_list, .layout__all-news .news_data .right_column_news {
      max-width: 100%; }
    .layout__all-news .news_data .news_block_list {
      order: 1; }
      .layout__all-news .news_data .news_block_list .news_title a {
        font-weight: 500;
        font-size: 16px;
        line-height: 20px; }
    .layout__all-news .news_data .right_column_news {
      order: 0;
      padding-left: 0;
      margin-bottom: 36px; }
      .layout__all-news .news_data .right_column_news .filter_block {
        padding: 0; }
  .layout__all-news .column .block {
    border: 0; }

  .page_container {
    margin-top: 36px; }

  .desktop_hide {
    display: block; }

  .news_data {
    margin-top: 36px; }

  .page_title {
    font-size: 29px;
    line-height: 36px; }

  .breadcrumb_block .breadcrumb_list {
    display: none; }
  .breadcrumb_block .mobile_back_button {
    display: flex;
    color: #1B7D96; }

  .home_page_header {
    background-image: none;
    padding: 0;
    height: auto; }

  .home_page_news_block {
    margin-top: 36px; }
    .home_page_news_block .container .line {
      margin-bottom: 0; }
      .home_page_news_block .container .line .float-right {
        display: none; }
    .home_page_news_block .container .main_news_block_list {
      flex-wrap: wrap;
      padding: 0; }
      .home_page_news_block .container .main_news_block_list .news_block {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 32px;
        padding: 0; }
        .home_page_news_block .container .main_news_block_list .news_block .news_img {
          order: 0;
          height: auto; }
        .home_page_news_block .container .main_news_block_list .news_block .date_category_row {
          order: 2; }
        .home_page_news_block .container .main_news_block_list .news_block .news_text_block {
          order: 1; }
        .home_page_news_block .container .main_news_block_list .news_block .news_description {
          display: none; }
        .home_page_news_block .container .main_news_block_list .news_block .news_block.big .news_text_block .news_title a {
          font-weight: 600;
          font-size: 22px;
          line-height: 28px; }
      .home_page_news_block .container .main_news_block_list .right_column_news {
        max-width: 100%;
        padding: 0; }
        .home_page_news_block .container .main_news_block_list .right_column_news .news_block {
          padding-bottom: 0;
          border-bottom: 0; }

  .home_url_block {
    flex-wrap: wrap;
    margin: 36px 0; }
    .home_url_block .url_block {
      display: block;
      min-height: inherit;
      border: 0;
      width: 100%;
      margin-bottom: 36px; }
      .home_url_block .url_block .logo_title {
        padding: 50px 50px 100px 50px;
        min-height: 350px;
        width: 90%;
        margin: 0 auto;
        border: 1px solid #E5E5EB; }
      .home_url_block .url_block .to_portal_button {
        position: absolute;
        bottom: 30px;
        text-align: center;
        width: 100%;
        padding: 12px 22px;
        left: inherit; }

  .news_column_block {
    display: flex; }
    .news_column_block .news_content_column {
      order: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start; }
      .news_column_block .news_content_column .news_title {
        order: 0; }
      .news_column_block .news_content_column .news_img_block {
        width: 100%;
        order: 1;
        border-bottom: 0;
        margin-bottom: 0;
        padding: 0; }
        .news_column_block .news_content_column .news_img_block .news_big_image {
          margin-bottom: 15px; }
          .news_column_block .news_content_column .news_img_block .news_big_image .slick-slide div img {
            width: 100% !important; }
        .news_column_block .news_content_column .news_img_block .download_images_block {
          margin-bottom: 36px;
          border: 1px solid rgba(0, 97, 217, 0.3);
          box-sizing: border-box;
          border-radius: 4px;
          width: 100%;
          text-align: center;
          padding: 8px 0; }
      .news_column_block .news_content_column .news_text {
        order: 2; }
      .news_column_block .news_content_column .back_button {
        order: 3; }
      .news_column_block .news_content_column .news_carusel_image {
        display: none; }
    .news_column_block .right_column_news {
      order: 1;
      width: 100%;
      max-width: 100%;
      display: flex;
      flex-wrap: wrap;
      padding: 0 15px; }
      .news_column_block .right_column_news .news_subscribe_block {
        border: 0;
        padding: 0;
        width: 100%;
        order: 2;
        margin-top: 36px; }
        .news_column_block .right_column_news .news_subscribe_block .news_subscribe_block_title {
          position: relative; }
          .news_column_block .right_column_news .news_subscribe_block .news_subscribe_block_title:after {
            content: '';
            display: block;
            position: absolute;
            width: 24px;
            height: 24px;
            background: url("../img/icons/mail.svg") no-repeat;
            right: 0;
            top: 0; }
      .news_column_block .right_column_news .right_button_block {
        order: 0;
        width: 100%;
        margin: 0; }
        .news_column_block .right_column_news .right_button_block .btn_block {
          width: 100%;
          max-width: 100%;
          flex: auto;
          margin-bottom: 16px;
          padding: 0; }
      .news_column_block .right_column_news .additional_content_block {
        order: 1;
        width: 100%; }

  .filter_block .filter_title {
    display: block;
    position: relative;
    font-weight: 600;
    font-size: 19px;
    line-height: 24px; }
    .filter_block .filter_title:after {
      top: 0;
      content: '';
      display: block;
      position: absolute;
      right: 0;
      width: 24px;
      height: 24px;
      background: url("../img/icons/filter.svg"); }
  .filter_block .filter_title.active {
    padding-bottom: 16px;
    border-bottom: 1px solid #D9D9DE; }
    .filter_block .filter_title.active:after {
      background: url("../img/icons/close.svg"); }
  .filter_block .filter_hide_block {
    display: none;
    opacity: 0; }
  .filter_block .filter_hide_block.active {
    display: block;
    opacity: 1;
    margin-top: 36px; }

  .layout__links .list .item--hidden, .layout__links .list .item--hidden-xs {
    display: none; }

  .layout__links .list .item--hidden.active, .layout__links .list .item--hidden-xs.active {
    display: block; }

  .anons_list_block h1, .page_container h1 {
    margin-bottom: 36px; }

  .horizontal_page_menu {
    position: relative; }
    .horizontal_page_menu:after {
      content: '';
      display: block;
      width: 24px;
      height: 24px;
      background: url("../img/icons/arrow-down-gray.svg");
      position: absolute;
      top: 50%;
      margin-top: -12px;
      right: 0; }
    .horizontal_page_menu span {
      display: none; }
      .horizontal_page_menu span a {
        padding-bottom: 0;
        border-bottom: 0;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px; }
    .horizontal_page_menu span.active {
      margin-bottom: 24px;
      display: block; }
      .horizontal_page_menu span.active a {
        font-weight: bold;
        color: #000;
        border: 0; }
    .horizontal_page_menu .children_menu_mobile_list {
      width: 100%;
      padding: 15px;
      background-color: #fff;
      box-shadow: 0 8px 20px rgba(118, 118, 122, 0.4);
      position: absolute;
      border-radius: 0 0 8px 8px;
      z-index: 1; }
      .horizontal_page_menu .children_menu_mobile_list a {
        width: 100%;
        display: block;
        color: #000;
        margin-bottom: 10px; }

  .layout__links .open-full.mobile_show {
    display: block; }

  .desktop_show {
    display: none; }

  .landing_block_random_fact {
    background-position-x: -166px !important;
    background-position-y: top; }

  .calendar_panel .calendar_type_choose, .calendar_panel .city_choose, .calendar_panel .month_choose {
    top: 44px; }

  #calendar_top_ornament_left, #calendar_middle_ornament_left, #calendar_top_ornament_right, #calendar_bottom_ornament, #calendar_middle_ornament_right, #ornament_right_middle, #ornament_3, #footer_ornament_left, #footer_ornament_right, #footer_bottom_ornament {
    display: none; } }
@media screen and (max-width: 576px) {
  .calendar_table .date_num {
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px; }

  .congratulation_block .container .text_block:before {
    background-repeat: no-repeat !important;
    width: 50px;
    left: -9px; }

  .open-full.mobile_show-xs {
    display: block; }

  .layout__links .block_title {
    font-size: 22px; }

  .landing_block_random_fact .fact_body_text {
    padding: 35px 16px 60px 16px; }

  .element_list_block .element_title, .sub_element_list_block .element_title {
    font-size: 19px;
    line-height: 24px; }
  .element_list_block .list_item .item_name, .sub_element_list_block .list_item .item_name {
    font-size: 22px;
    line-height: 28px; }
  .element_list_block .list_item .item_description, .sub_element_list_block .list_item .item_description {
    font-size: 16px;
    line-height: 24px; }

  .element_people_block .text_block .fio_block {
    font-weight: bold;
    font-size: 19px;
    line-height: 24px; }
  .element_people_block .text_block .description_block {
    font-size: 14px;
    line-height: 20px; }
  .element_people_block .photo_block {
    margin-right: 24px; }

  .home_page_news_block {
    margin-top: 0; }
    .home_page_news_block .container .block_title {
      padding: 0 !important;
      font-weight: 600;
      font-size: 22px;
      line-height: 28px;
      margin-bottom: 22px; }
    .home_page_news_block .container .main_news_block_list {
      margin-top: 0; }

  .breadcrumb_block {
    margin-bottom: 12px; }

  .news_column_block .news_content_column .news_title {
    font-weight: 600;
    font-size: 22px;
    line-height: 28px; }

  .home_page_header {
    display: none; }

  .home_page_news_block .main_news_block_list {
    padding-bottom: 0; }
    .home_page_news_block .main_news_block_list .news_block .news_title a, .home_page_news_block .main_news_block_list .news_block.big .news_title a {
      font-weight: 600;
      font-size: 16px;
      line-height: 20px; }

  .layout__navbar .menu-full .list a {
    display: block; }

  .layout__links {
    padding-bottom: 36px; }
    .layout__links .block_title {
      padding: 0; }

  .layout__gosbar .main-menu .item-language .list {
    right: 0;
    min-width: 120px;
    left: inherit; }
    .layout__gosbar .main-menu .item-language .list a {
      padding: 10px 16px; }

  .home_page_services_block_container .service_tile {
    padding: 0 15px;
    display: inline-block; }

  .layout__links .list .item--hidden-xs, .home_page_services_block_container .service_tile.item--hidden-xs {
    display: none; }

  .layout__links .list .item--hidden-xs.active, .home_page_services_block_container .service_tile.item--hidden-xs.active {
    display: block; }

  .open-full.mobile_show {
    display: block; }

  .photo_album_item_body .photo_album_item_block {
    width: 50%; } }
@media screen and (max-width: 480px) {
  .home_page_news_block .container .main_news_block_list .news_block.big img {
    width: 100%;
    height: auto; }

  .photo_album_body {
    margin-bottom: 36px; }
    .photo_album_body .photo_album_block {
      flex-wrap: wrap; }
      .photo_album_body .photo_album_block .album_preview {
        width: 100%; }
      .photo_album_body .photo_album_block .album_title {
        text-align: center;
        width: 100%;
        display: block;
        margin: 16px 0; } }
@media screen and (max-width: 640px) {
  .header_block {
    height: 80px;
    background-size: cover; }
    .header_block .language_switcher, .header_block .page_menu_block, .header_block .search_block form {
      top: 88px; }
    .header_block .site_name_block {
      justify-content: center;
      max-width: 100%;
      width: 100%;
      height: 80px; }
      .header_block .site_name_block .site_logo {
        min-width: 68px;
        width: 68px;
        height: 54px;
        background-size: contain; }
      .header_block .site_name_block .site_name_kv, .header_block .site_name_block .site_name_ru {
        display: none; }
    .header_block .logo_link {
      max-width: 33%;
      width: 100%;
      margin-left: 33%; }
      .header_block .logo_link .site_name_block.ornament {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap; }
    .header_block .site_name_block.ornament:before, .header_block .site_name_block.ornament:after {
      content: '';
      width: 18px;
      height: 18px;
      background: url(../img/icons/ornament_2.svg) no-repeat center;
      position: absolute;
      background-size: contain;
      top: 37%; }
    .header_block .site_name_block.ornament:before {
      left: 10%; }
    .header_block .site_name_block.ornament:after {
      right: 10%; }

  .congratulation_block .container .photo_block {
    background-size: contain;
    height: 300px; }

  .page_container {
    min-height: calc(100vh - 290px); } }
@media screen and (max-width: 375px) {
  .photo_album_item_body .photo_album_item_block {
    width: 100%; } }

/*# sourceMappingURL=app.css.map */
