@import url(https://fonts.googleapis.com/css?family=Rubik:400,500&subset=cyrillic);@import url(https://fonts.googleapis.com/css?family=Montserrat:500,600,800&subset=cyrillic);/* Theme Name: MRSK */

:root {
  --animation: cubic-bezier(0.445, 0.050, 0.550, 0.950);
}

:focus {
  outline: none;
}

.grayscale {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
  filter: gray; /* IE 6-9 */
  -webkit-filter: grayscale(1);
}

html, body, div, span, iframe,
h1, h2, h3, h4, p, a, em, img, q, s, samp,
small, b, u, center,
dl, dt, dd, ol, ul, li, form, label, legend,
table, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, figure, figcaption,
footer, header, menu, nav, section, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

button, input, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

h1 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  margin-bottom: 40px;
}

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

body {
  width: 100%;
  min-width: 320px;
  overflow: hidden;
  /*color: #34343A;*/
  color: #00599f;
  font-family: 'Rubik', 'Arial', 'Helvetica', sans-serif;
  /*font-family: 'Montserrat', sans-serif;*/
  height: 100vh;
  background: #c2cad5; /* было #f1f1f1*/
  display: none;
  position: relative;
}

input, textarea {
  font-family: 'Rubik', 'Arial', 'Helvetica', sans-serif;
}

/*
    .ns_number {
    font-family: 'Montserrat', sans-serif;
    font-size: 14vw;
    line-height: 9.5vw;
    font-weight: 800;
    }*/

.center_cnt {
  width: 100%;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

/* custom */

/*header */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
}

header .center_cnt {
  padding-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.menu_btn {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
  z-index: 100;
  margin-left: auto;
}

.menu_btn span {
  display: block;
  position: absolute;
  width: 30px;
  border-top: 3px solid #34343A;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: border-color 0.7s var(--animation),
  -webkit-transform 0.3s ease-out;
  transition: border-color 0.7s var(--animation),
  -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out,
  border-color 0.7s var(--animation);
  transition: transform 0.3s ease-out,
  border-color 0.7s var(--animation);
  transition: transform 0.3s ease-out,
  border-color 0.7s var(--animation),
  -webkit-transform 0.3s ease-out;
}

.last_active .menu_btn span,
.dark_screen .menu_btn span {
  border-color: white;
}

.menu_btn span:nth-child(1) {
  top: 7px;
}

.menu_btn span:nth-child(2) {
  top: 21px;
}

.menu_btn.active span {
  border-color: white;
}

.menu_btn.active span:nth-child(1) {
  -webkit-animation: burger-open-top 0.3s ease-out forwards;
  animation: burger-open-top 0.3s ease-out forwards;
}

.menu_btn.active span:nth-child(2) {
  -webkit-animation: burger-open-bot 0.3s ease-out forwards;
  animation: burger-open-bot 0.3s ease-out forwards;
}

.menu_btn.closing span:nth-child(1) {
  -webkit-animation: burger-close-top 0.3s ease-out forwards;
  animation: burger-close-top 0.3s ease-out forwards;
}

.menu_btn.closing span:nth-child(2) {
  -webkit-animation: burger-close-bot 0.3s ease-out forwards;
  animation: burger-close-bot 0.3s ease-out forwards;
}

@-webkit-keyframes burger-open-top {
  50% {
    -webkit-transform: translate3d(0, 7px, 0);
    transform: translate3d(0, 7px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 7px, 0) rotate(45deg);
    transform: translate3d(0, 7px, 0) rotate(45deg);
  }
}

@keyframes burger-open-top {
  50% {
    -webkit-transform: translate3d(0, 7px, 0);
    transform: translate3d(0, 7px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 7px, 0) rotate(45deg);
    transform: translate3d(0, 7px, 0) rotate(45deg);
  }
}

@-webkit-keyframes burger-open-bot {
  50% {
    -webkit-transform: translate3d(0, -7px, 0);
    transform: translate3d(0, -7px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -7px, 0) rotate(-45deg);
    transform: translate3d(0, -7px, 0) rotate(-45deg);
  }
}

@keyframes burger-open-bot {
  50% {
    -webkit-transform: translate3d(0, -7px, 0);
    transform: translate3d(0, -7px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -7px, 0) rotate(-45deg);
    transform: translate3d(0, -7px, 0) rotate(-45deg);
  }
}

@-webkit-keyframes burger-close-top {
  0% {
    -webkit-transform: translate3d(0, 7px, 0) rotate(45deg);
    transform: translate3d(0, 7px, 0) rotate(45deg);
  }
  50% {
    -webkit-transform: translate3d(0, 7px, 0) rotate(0deg);
    transform: translate3d(0, 7px, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes burger-close-top {
  0% {
    -webkit-transform: translate3d(0, 7px, 0) rotate(45deg);
    transform: translate3d(0, 7px, 0) rotate(45deg);
  }
  50% {
    -webkit-transform: translate3d(0, 7px, 0) rotate(0deg);
    transform: translate3d(0, 7px, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes burger-close-bot {
  0% {
    -webkit-transform: translate3d(0, -7px, 0) rotate(-45deg);
    transform: translate3d(0, -7px, 0) rotate(-45deg);
  }
  50% {
    -webkit-transform: translate3d(0, -7px, 0) rotate(0deg);
    transform: translate3d(0, -7px, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes burger-close-bot {
  0% {
    -webkit-transform: translate3d(0, -7px, 0) rotate(-45deg);
    transform: translate3d(0, -7px, 0) rotate(-45deg);
  }
  50% {
    -webkit-transform: translate3d(0, -7px, 0) rotate(0deg);
    transform: translate3d(0, -7px, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.header_year {
  font-size: 18px;
  font-weight: 500;
  position: absolute;
  top: 75px;
  width: 44px;
  text-align: center;
  left: 50%;
  margin-left: -22px;
  -webkit-transition: all 0.7s var(--animation);
  -o-transition: all 0.7s var(--animation);
  transition: all 0.7s var(--animation);
}

.dark_screen .header_year {
  color: white;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.logo .header__text {
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 30px;
  border-left: 2px solid rgba(52,52,58,0.2);
  color: #34343A;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  -webkit-transition: all 0.7s var(--animation);
  -o-transition: all 0.7s var(--animation);
  transition: all 0.7s var(--animation);
}

.logo span:last-child {
  color: #34343A;
  opacity: 0.8;
  margin-top: 5px;
  font-size: 12px;
  font-weight: normal;
}

.dark_screen .logo .header__text {
  border-left-color: white;
}

.dark_screen .logo span {
  color: white;
}

.logo path {
  -webkit-transition: all 0.7s var(--animation);
  -o-transition: all 0.7s var(--animation);
  transition: all 0.7s var(--animation);
}

.dark_screen .logo path {
  fill: white;
}

.header_menu {
  position: fixed;
  right: -560px;
  width: 560px;
  background: #343740;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 10;
}

.header_menu > * {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(50px, 0, 0);
  transform: translate3d(50px, 0, 0);
}

.hm_header {
  margin: 75px 0 10px 0;
  padding: 0 150px 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 25px;
  z-index: 2;
  position: relative;
}

.hm_search {
  width: 70%;
}

.hm_lang {
  color: #9fa0a5;
}

.hm_lang a {
  font-size: 14px;
  color: #fff;
  opacity: 0.6;
  text-decoration: none;
  -webkit-transition: all .3s var(--animation);
  -o-transition: all .3s var(--animation);
  transition: all .3s var(--animation);
}

.hm_lang a.current {
  opacity: 1;
  font-weight: 500;
}

.hm_lang a:hover,
.hm_lang a:focus {
  opacity: 1;
}

.search_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.search_input_wrap {
  position: relative;
  overflow: hidden;
  width: 0;
  -webkit-transition: all 0.3s var(--animation);
  -o-transition: all 0.3s var(--animation);
  transition: all 0.3s var(--animation);
}

.active .search_input_wrap {
  width: 200px;
}

.search_input {
  border: none;
  border-radius: 0px;
  padding: 0 20px 5px 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid white;
  height: 25px;
  background: none;
  color: white;
}

.search_btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 20px;
  cursor: pointer;
  opacity: 0.6;
  -webkit-transition: all 0.3s var(--animation);
  -o-transition: all 0.3s var(--animation);
  transition: all 0.3s var(--animation);
}

.search_btn:hover,
.search_btn:focus {
  opacity: 1;
}

.active .search_btn {
  width: auto;
}

.si_clear {
  position: absolute;
  top: 5px;
  right: 0;
  cursor: pointer;
  display: none;
  padding: 5px;
}

.result_article {
  margin-bottom: 15px;
}

.result_article span.find {
  color: white;
}

.spinner {
  animation: rotate 1.4s linear infinite;
  -webkit-animation: rotate 1.4s linear infinite;
  -moz-animation: rotate 1.4s linear infinite;
  width:100%;
  height:35px;
  position: relative;
  display: none;
}

@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.path {
  stroke-dasharray: 170;
  stroke-dashoffset: 20;
}

.hm_header:before {
  content: '';
  width: 100%;
  position: absolute;
  left: 0;
  background: red;
  height: 50px;
  bottom: -60px;
  background: -webkit-linear-gradient(top, rgba(22, 24, 35, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(22, 24, 35, 1)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(top, rgba(22, 24, 35, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(52, 55, 64, 1) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#364161', endColorstr='#00000000', GradientType=0);
}

.hm_body {
  padding: 50px 80px;
  color: white;
  overflow-y: auto;
  overflow-x: hidden;
}

.hm_body ol {
  /*counter-reset: item;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

.hm_body a {
  color: #9fa0a5;
  line-height: 1.4;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.hm_body a:hover,
.hm_body a:focus,
.hm_body li:hover span,
.hm_body li:hover > a,
.hm_body li:focus span,
.hm_body li:focus > a,
.hm_body li:hover > a::after,
.hm_body li:focus > a::after{
  color: white;
  opacity: 1;
}

.hm_body ol li {
  color: #9fa0a5;
  position: relative;
}

.hm_body ol li.hidden {
  opacity: 0;
  left: -100%;
}

.hm_body > ol ol.visible {
  left: 0;
  opacity: 1;
  display: block;
}

.hm_body ol li {
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hm_body ol li a {
  padding-left: 15px;
  display: block;
  max-width: 380px;
}

.hm_body ol li.active,
.hm_body ol li.active a {
  color: white;
}

.hm_body > ol ol {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  right: -100%;
}

.hm_body::-webkit-scrollbar {
  width: 10px;
}

.hm_body::-webkit-scrollbar-track {
  background: none;
}

.hm_body::-webkit-scrollbar-thumb {
  background: #212333;
  border-radius: 10px;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  width: calc(100% - 520px);
}

.breadcrumbs li {
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.breadcrumbs li::after {
  content: '>';
  opacity: 0.4;
  font-weight: 500;
  font-size: 14px;
  margin-left: 10px;
}

.breadcrumbs li:last-child::after {
  display: none;
}

.breadcrumbs li:last-child a{
  pointer-events: none;
}

.breadcrumbs a {
  color: #34343a;
  opacity: 0.4;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: all .3s var(--animation);
  -o-transition: all .3s var(--animation);
  transition: all .3s var(--animation);
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
  opacity: 1;
}

.breadcrumbs--menu {
  width: 100%;
  margin: 10px 0 30px;
  min-height: 20px;
}

.breadcrumbs--menu li {
  display: inline;
}

.breadcrumbs--menu a {
  color: #ffffff;
  opacity: 0.6;
  font-size: 12px;
  font-weight: normal;
}

.breadcrumbs--menu li:nth-last-child(2) a {
  pointer-events: inherit;
}

.breadcrumbs--menu li:last-child a {
  pointer-events: none;
}

.breadcrumbs--menu li:first-child a {
  pointer-events: inherit;
}

.breadcrumbs--menu li::after {
  opacity: 0.6;
  font-size: 12px;
}

.hm_footer {
  margin: auto 0 25px;
  padding: 0 80px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  position: relative;
  z-index: 2;
}

.hm_footer:before {
  content: '';
  width: 100%;
  position: absolute;
  left: 0;
  background: red;
  height: 50px;
  bottom: 100%;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(22, 24, 35, 1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(22, 24, 35, 1)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(22, 24, 35, 1) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(52, 55, 64, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#364161', GradientType=0);
}

.hm_footer_btns a {
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  text-decoration: none;
}

.hm_footer_btns a g{
  -webkit-transition: all .3s var(--animation);
  -o-transition: all .3s var(--animation);
  transition: all .3s var(--animation);
}

.mode_switcher g {
  -webkit-transition: all .3s var(--animation);
  -o-transition: all .3s var(--animation);
  transition: all .3s var(--animation);
  cursor: pointer;
}

.hm_footer_btns a:hover g,
.hm_footer_btns a:focus g,
.mode_switcher:hover g,
.mode_switcher:focus g {
  opacity: 1;
}

.hm_footer_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.storage span {
  background: #00599F;
  color: white;
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  font-size: 10px;
  position: absolute;
  top: -5px;
  right: -10px;
}

/* footer */

footer {
  display: none;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.main_page footer {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

footer .center_cnt {
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer_text {
  font-size: 14px;
  opacity: 1;
  text-align: center;
  position: absolute;
  left: 50%;
  margin-left: -70px;
  top: 11px;
  -webkit-transition: all 0.7s var(--animation);
  -o-transition: all 0.7s var(--animation);
  transition: all 0.7s var(--animation);
  pointer-events: none;
}

.dark_screen .footer_text {
  color: white;
}

.first_active .footer_text {
  opacity: 0.5;
  left: 80px;
  margin-left: 0;
  -webkit-transition: left 0.7s var(--animation) 0.7s,
  margin-left 0.7s var(--animation) 0.7s,
  opacity 0.7s var(--animation),
  color 0.7s var(--animation);
  -o-transition: left 0.7s var(--animation) 0.7s,
  margin-left 0.7s var(--animation) 0.7s,
  opacity 0.7s var(--animation),
  color 0.7s var(--animation);
  transition: left 0.7s var(--animation) 0.7s,
  margin-left 0.7s var(--animation) 0.7s,
  opacity 0.7s var(--animation),
  color 0.7s var(--animation);
}

.last_active .footer_text {
  opacity: 0;
  -webkit-transition: all 0.7s var(--animation);
  -o-transition: all 0.7s var(--animation);
  transition: all 0.7s var(--animation);
}

.slider_controls {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.sc_btn {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  cursor: pointer;
  opacity: 1;
  width: 150px;
  overflow: hidden;
  height: 40px;
  position: relative;
}

.dark_screen .sc_btn {
  color: white;
}

.sc_btn > * {
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.sc_btn svg {
  width: 80px;
}

.sc_next .sp_text1 {
  right: 105px;
}

.sc_next .sc_arr1 {
  right: 0;
}

.sc_next .sp_text2,
.sc_next .sc_arr2 {
  right: 175px;
}

.sc_btn.off {
  pointer-events: none;
}

.sc_prev .sp_text1 {
  left: 105px;
}

.sc_prev .sc_arr1 {
  left: 0;
}

.sc_prev .sp_text2,
.sc_prev .sc_arr2 {
  left: 175px;
}

.sc_arrow path {
  fill: #34343A;
  -webkit-transition: fill 0.7s var(--animation);
  -o-transition: fill 0.7s var(--animation);
  transition: fill 0.7s var(--animation);
}

.menu_prev .sc_arrow path {
  fill: white;
}

.dark_screen .sc_arrow path {
  fill: white;
}

.sc_prev {
  -webkit-transition: opacity 0.7s var(--animation) 0.7s,
  color 0.7s var(--animation);
  -o-transition: opacity 0.7s var(--animation) 0.7s,
  color 0.7s var(--animation);
  transition: opacity 0.7s var(--animation) 0.7s,
  color 0.7s var(--animation);
}

.first_active .sc_prev {
  -webkit-transition: all 0.7s var(--animation);
  -o-transition: all 0.7s var(--animation);
  transition: all 0.7s var(--animation);
  opacity: 0;
  pointer-events: none;
}

.last_active .sc_next,
.first_active .sc_prev {
  color: white;
}

.last_active .sc_next path,
.first_active .sc_prev path {
  fill: white;
}

.menu_prev {
  opacity: 0;
  pointer-events: none;
}

.menu_prev.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.sc_next {
  -webkit-transition: all 0.7s var(--animation);
  -o-transition: all 0.7s var(--animation);
  transition: all 0.7s var(--animation);
}

.last_active .sc_next {
  opacity: 0;
  pointer-events: none;
}

.footer_mouse {
  width: 24px;
  border: 2px solid #69696D;
  height: 40px;
  border-radius: 15px;
  margin-left: 75px;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.7s var(--animation);
  -o-transition: opacity 0.7s var(--animation);
  transition: opacity 0.7s var(--animation);
  position: relative;
}

.first_active .footer_mouse {
  opacity: 1;
  -webkit-transition: opacity 0.7s var(--animation) 0.8s;
  -o-transition: opacity 0.7s var(--animation) 0.8s;
  transition: opacity 0.7s var(--animation) 0.8s;
}

.footer_mouse:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.footer_mouse:after {
  background-color: #69696D;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  -webkit-animation: trackBallSlide 5s linear infinite;
  animation: trackBallSlide 5s linear infinite;
}

@-webkit-keyframes trackBallSlide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-10px);
    transform: scale(1) translateY(-10px);
  }

  6% {
    opacity: 1;
    -webkit-transform: scale(0.9) translateY(5px);
    transform: scale(0.9) translateY(5px);
  }

  14% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(10px);
    transform: scale(0.4) translateY(10px);
  }

  15%, 19% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(-10px);
    transform: scale(0.4) translateY(-10px);
  }

  28%, 29.99% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-10px);
    transform: scale(1) translateY(-10px);
  }

  30% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-10px);
    transform: scale(1) translateY(-10px);
  }

  36% {
    opacity: 1;
    -webkit-transform: scale(0.9) translateY(5px);
    transform: scale(0.9) translateY(5px);
  }

  44% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(10px);
    transform: scale(0.4) translateY(10px);
  }

  45%, 49% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(-10px);
    transform: scale(0.4) translateY(-10px);
  }

  58%, 59.99% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-10px);
    transform: scale(1) translateY(-10px);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-10px);
    transform: scale(1) translateY(-10px);
  }

  66% {
    opacity: 1;
    -webkit-transform: scale(0.9) translateY(5px);
    transform: scale(0.9) translateY(5px);
  }

  74% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(10px);
    transform: scale(0.4) translateY(10px);
  }

  75%, 79% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(-10px);
    transform: scale(0.4) translateY(-10px);
  }

  88%, 100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-10px);
    transform: scale(1) translateY(-10px);
  }
}

@keyframes trackBallSlide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-10px);
    transform: scale(1) translateY(-10px);
  }

  6% {
    opacity: 1;
    -webkit-transform: scale(0.9) translateY(5px);
    transform: scale(0.9) translateY(5px);
  }

  14% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(10px);
    transform: scale(0.4) translateY(10px);
  }

  15%, 19% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(-10px);
    transform: scale(0.4) translateY(-10px);
  }

  28%, 29.99% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-10px);
    transform: scale(1) translateY(-10px);
  }

  30% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-10px);
    transform: scale(1) translateY(-10px);
  }

  36% {
    opacity: 1;
    -webkit-transform: scale(0.9) translateY(5px);
    transform: scale(0.9) translateY(5px);
  }

  44% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(10px);
    transform: scale(0.4) translateY(10px);
  }

  45%, 49% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(-10px);
    transform: scale(0.4) translateY(-10px);
  }

  58%, 59.99% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-10px);
    transform: scale(1) translateY(-10px);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-10px);
    transform: scale(1) translateY(-10px);
  }

  66% {
    opacity: 1;
    -webkit-transform: scale(0.9) translateY(5px);
    transform: scale(0.9) translateY(5px);
  }

  74% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(10px);
    transform: scale(0.4) translateY(10px);
  }

  75%, 79% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(-10px);
    transform: scale(0.4) translateY(-10px);
  }

  88%, 100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-10px);
    transform: scale(1) translateY(-10px);
  }
}

/* main screen */

.main_screen {
  position: relative;
  z-index: 9;
  height: 100vh;
}

.content_slider,
.main_slider {
  position: fixed;
  width: 100%;
  height: 100vh;
}

.main_slider {
  z-index: 1;
}

.content_slider {
  z-index: 3;
}

.ms_slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*    align-items: center;
    justify-content: center;*/
}

.ms_slide_cnt {
  margin: calc(27vh + 55px) 160px 150px;
}

.cs_slide {
  height: 100%;
  width: 100%;
  position: relative;
  display: none;
}

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

.cs_slide_cnt {
  margin: 27vh 160px 150px;
  width: calc(100% - 320px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  position: relative;
  z-index: 100;
}

.cs_slide_header,
.cs_slide_footer {
  width: 100%;
  position: relative;
}

.cs_slide_header {
  height: 20px;
}

.cs_slide_footer {
  min-height: 70px;
}

.cs_slide_num {
  position: absolute;
  top: 0;
  left: -80px;
}

.cs_slide_num,
.cs_slide_title {
  font-weight: 500;
  font-size: 14px;
  overflow: hidden;
}

.cs_slide_subtitle,
.cs_slide_title {
  position: relative;
}

.cs_slide_num span,
.cs_slide_title span {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  display: inline-block;
}

.cs_slide_subtitle span {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  display: inline-block;
}

.cs_slide_subtitle {
  font-size: 16px;
  line-height: 18px;
  max-width: 200px;
  margin-bottom: 15px;
  overflow: hidden;
}

.cs_slide_timeline {
  position: absolute;
  top: 7px;
  width: 140px;
  height: 2px;
  background: #d4d4d4;
  left: -160px;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.cs_slide_timeline:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #34343A;
}

.dark_screen .cs_slide_timeline:before {
  background: #ffffff;
}

a.cs_slide_link {
  font-size: 14px;
  line-height: 16px;
  color: #34343A;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s var(--animation);
  -o-transition: all .3s var(--animation);
  transition: all .3s var(--animation);
}

.cs_slide_link::after {
  content: '>';
  display: inline-block;
  color: #34343A;
  opacity: 0.6;
  margin-left: 5px;
}

.cs_slide[data-content-slide="2"],
.cs_slide[data-content-slide="3"],
.cs_slide[data-content-slide="4"],
.cs_slide[data-content-slide="5"],
.cs_slide[data-content-slide="2"] a.cs_slide_link,
.cs_slide[data-content-slide="3"] a.cs_slide_link,
.cs_slide[data-content-slide="4"] a.cs_slide_link,
.cs_slide[data-content-slide="2"] a.cs_slide_link::after ,
.cs_slide[data-content-slide="3"] a.cs_slide_link::after ,
.cs_slide[data-content-slide="4"] a.cs_slide_link::after {
  color: white;
}

a.cs_slide_link:hover,
a.cs_slide_link:focus,
a.cs_slide_link:hover::after,
a.cs_slide_link:focus::after{
  opacity: 1 !important;
}

.cs_slide:not(:first-child):not(:last-child) .cs_slide_timeline:before {
  background: white;
}

.cs_slide_body {
  width: 100%;
  height: calc(100% - 90px);
  padding-top: 35px;
}

.cs_numbers {
  display: none;
}

.content_slides_wrap {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}

/* news slide */

.cs_news {
  background: url("/wp-content/themes/mrsk/img/news_bg.jpg") center no-repeat;
  background-size: cover;
}

.cs_news:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #0F1115;
  opacity: 0.9;
}

.news_slider {
  width: 100%;
  height: calc(100% - 120px);
}

.cs_news .cs_slide_header {
  height: 0;
}

.cs_news .cs_slide_body {
  height: calc(100% - 70px);
  padding-top: 0;
}

.ns_slide_title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.ns_slide p {
  font-size: 14px;
  color: #88888D;
  line-height: 24px;
  overflow: hidden;
  /*min-height: 200px;*/
  /*height: 200px;*/
}

.ns_slide p.full {
  height: auto;
}

.ns_slide p:not(:last-child) {
  margin-bottom: 15px;
}

.ns_slide {
  opacity: 0;
  -webkit-transform: translate3d(0, 15px, 0);
  transform: translate3d(0, 15px, 0);
}

.ns_slide::-webkit-scrollbar {
  width: 5px;
}

.ns_slide::-webkit-scrollbar-track {
  background: none;
}

.ns_slide::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 27px;
}

.ns_pager_container {
  left: -15px;
  margin: 50px 0;
  position: relative;
  overflow: hidden;
}

.ns_pager_wrap {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.ns_pager {
  position: relative;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: auto;
  left: 0;
}

.ns_pager span {
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 15px;
  font-size: 12px;
  opacity: 0.5;
  cursor: pointer;
  -webkit-transition: all 0.3s var(--animation);
  -o-transition: all 0.3s var(--animation);
  transition: all 0.3s var(--animation);
}

.ns_pager span:hover,
.ns_pager span:focus,
.ns_pager span.active {
  opacity: 1;
}

.ns_sliding_bg {
  position: absolute;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  left: 0;
  width: 283px;
  -webkit-transition: all 0.5s var(--animation);
  -o-transition: all 0.5s var(--animation);
  transition: all 0.5s var(--animation);
}

/* last slide */
.appeal_mobile_img {
  display: none;
}

.cs_appeal {
  background: #F1F1F1;
}

.appeal_img {
  position: fixed;
  top: 0;
  right: -32%;
  width: 32%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 60px 80px;
  color: white;
  text-align: right;
  -webkit-transition: right 0.5s ease-out;
  -o-transition: right 0.5s ease-out;
  transition: right 0.5s ease-out;
}

.appeal_img.shown {
  right: 0;
}

.appeal_name {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.appeal_post {
  width: 100%;
  font-size: 12px;
  line-height: 18px;
  opacity: 0.8;
}

.appeal_cnt {
  font-size: 14px;
  line-height: 22px;
  color: #69696D;
  max-width: 62%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, 15px, 0);
  transform: translate3d(0, 15px, 0);
}

/* parallax */

.parallax_container {
  position: fixed;
  z-index: 5;
  height: 100vh;
  width: 100%;
}

.parallax {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
  -webkit-transform-origin: center right;
  -ms-transform-origin: center right;
  transform-origin: center right;
  /*left: 0;*/

  /*    transform: scale(0.66);
    left: 10vw;*/

  -webkit-transform: scale(0.7);

  -ms-transform: scale(0.7);

  transform: scale(0.7);
  left: 2vw;
  -webkit-transition: all 0.7s var(--animation) 0.5s;
  -o-transition: all 0.7s var(--animation) 0.5s;
  transition: all 0.7s var(--animation) 0.5s;
}

.wide .parallax {
  left: 0vw;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.7s var(--animation);
  -o-transition: all 0.7s var(--animation);
  transition: all 0.7s var(--animation);
}

.parallax img {
  position: absolute;
  top: -100px;
  left: -50px;
  width: auto;
  height: calc(100vh + 200px);
}

.parallax img.bg4 {
  height: calc(100vh + 450px);
  top: -50px;
}

.number_screen {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.night_overlay {
  background: black;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 10;
  mix-blend-mode: soft-light;
  opacity: 0;
}

.number_screen:not([data-numscreen="1"]) {
  color: white;
}

.nums_cnt {
  margin: calc(27vh + 65px) 160px 150px;
  width: calc(100% - 320px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.nums_number {
  font-family: 'Montserrat', sans-serif;
  /*    font-size: 14vw;
    line-height: 14.5vw;*/
  font-weight: 800;
  margin-right: 15px;
  overflow: hidden;
  top: -2.5vw;
  position: relative;

  font-size: 34vh;
  line-height: 34vh;
  z-index: 100;
}

.nums_number_desc {
  font-weight: 500;
  line-height: 28px;
  font-size: 24px;
  top: -10px;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.nums_number_desc span,
.nums_number span {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  display: inline-block;
}

/*404*/
.page_not_found {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page_not_found h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 275px;
  line-height: normal;
  color: #34343A;
}

.page_not_found p {
  max-width: 320px;
  font-size: 14px;
  color: #88888D;
  margin-bottom: 14px;
}

.page_not_found a {
  font-size: 14px;
  color: #00599F;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#00599F), to(#00599F));
  background-image: -webkit-linear-gradient(#00599F, #00599F);
  background-image: -o-linear-gradient(#00599F, #00599F);
  background-image: linear-gradient(#00599F, #00599F);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  -webkit-transition: background-size .3s;
  -o-transition: background-size .3s;
  -webkit-transition: -webkit-background-size .3s;
  transition: background-size .3s;
}

.page_not_found a:hover,
.page_not_found a:focus {
  background-size: 100% 1px;
}

.document_menu_wrap {
  position: fixed;
  height: 60px;
  bottom: 0;
  left: 0;
  width: calc(100% - 560px);
  z-index: 10;
  opacity: 0;
}

.document_menu_btn {
  width: 48px;
  height: 48px;
  background: #00599F;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 11;
}

.document_menu_btn span {
  width: 4px;
  height: 4px;
  display: block;
  background: #ffffff;
  border-radius: 50%;
  margin-right: 3px;
}

.document_menu_btn span:last-child {
  margin-right: 0;
}

.document_menu_btn.active span {
  width: 24px;
  height: 3px;
  position: absolute;
  left: 50%;
  margin-left: -12px;
  top: 47%;
  background: #fff;
  border-radius: 1px;
}

.document_menu_btn.active span:first-child {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.document_menu_btn.active span:nth-child(2) {
  display: none;
}

.document_menu_btn.active span:last-child {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.document_menu {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 80px;
  border-top: 1px solid #DBDBDB;
  display: none;
  background: #ffffff;
}

.document_menu--mobile {
  display: none;
}

.document_menu.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fadeIn 0.3s forwards;
  animation: fadeIn 0.3s forwards;
}

.document_menu a {
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: all 0.3s var(--animation);
  -o-transition: all 0.3s var(--animation);
  transition: all 0.3s var(--animation);
  padding: 0 10px;
  position: relative;
  display: block;
}

.document_menu .left_block,
.document_menu .right_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.document_menu a:hover,
.document_menu a:focus {
  opacity: 1;
}

.link_title {
  position: absolute;
  bottom: calc(100% + 10px);
  background: rgba(0,0,0,0.6);
  border-radius: 4px;
  color: white;
  padding: 10px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  left: 99999999px;
  -webkit-transition: opacity .3s var(--animation);
  -o-transition: opacity .3s var(--animation);
  transition: opacity .3s var(--animation);
}

.link_title::before {
  content: "";
  display: block;
  height: 15px;
  left: 0;
  right: 0;
  bottom: -14px;
  position: absolute;
}

.link_title::after {
  content: '';
  border-top: 6px solid rgba(0,0,0,0.6);
  position: absolute;
  bottom: -6px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  margin-left: -7px;
}

.link_title.left::after {
  left: 15px;
}

.link_title.center::after {
  left: 50%;
}

.link_title.right::after {
  left: auto;
  right: 15px;
}

.mode_switcher .link_title{
  font-size: 14px;
  width: 150px;
  white-space: normal;
  right: -10px;
}

.doc_link {
  position: relative;
  cursor: pointer;
}

.doc_link:hover > .link_title.left  {
  opacity: 1;
  left: 0;
}

.doc_link:hover > .link_title.center {
  opacity: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.doc_link:hover > .link_title.right {
  opacity: 1;
  right: 0;
  left: auto;
}

.doc_link__shared {
  z-index: 10000;
}

.shared_block {
  position: absolute;
  bottom: calc(100% - 10px);
  background: white;
  border-radius: 8px;
  -webkit-box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 10000;
}

.social_block {
  bottom: calc(100% + 10px);
  left: 50%;
  -webkit-transform: translateX(-75%);
  -ms-transform: translateX(-75%);
  transform: translateX(-75%);
}

a.shared_btn{
  color: #34343A;
  opacity: 0.6;
  padding: 10px 20px;
  font-size: 14px;
  -webkit-transition: all .3s var(--animation);
  -o-transition: all .3s var(--animation);
  transition: all .3s var(--animation);
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

a.shared_btn svg {
  margin-right: 15px;
}

a.shared_btn:hover {
  background: #F1F1F1;
  opacity: 1;
}

a.shared_btn:nth-child(2),
.document_menu__list .doc_link:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

a.shared_btn:last-child,
.document_menu__list .doc_link:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

a.shared_btn:nth-child(2):hover,
.document_menu__list .doc_link:first-child:hover {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

a.shared_btn:last-child:hover,
.document_menu__list .doc_link:last-child:hover {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.doc_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.overlay {
  width: 100%;
  height: 100%;
}

.overlay_menu {
  background: #34343a;
  width: 5000px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
  opacity: 0;
  right: 100%;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}


.closeZakon {
  width: 38px;
  height: 38px;
  cursor: pointer;
  position: absolute;
  right: 13px;
  top: 10px;
  z-index: 10
}

.zakon152 {
  display: none;
  text-align: center;
  padding: 20px 50px;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  font-size: 14px;
  bottom: 0;
  z-index: 99;
  width: 100%
}

.zakon152 p {
  color: white;
  margin: 15px 0;
  font-size: 16px;
}

.closeZakon:before,
.closeZakon:after {
  content: '';
  width: 25px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 18px;
  left: 7px
}

.closeZakon:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}

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

#ars_msgField {
  position: fixed;
  top: 64px;
  left: calc(100% - 790px);
  z-index: 1000;
}

.msg-elem {
  background: rgba(0,0,0,0.6);
  border-radius: 4px;
  color: white;
  padding: 10px;
  font-size: 12px;
  white-space: nowrap;
  margin-bottom: 20px;
}

.show_more {
  border-radius: 30px;
  width: 22px;
  height: 12px;
  background: url("/wp-content/themes/mrsk/img/svg/show_more.svg");
  cursor: pointer;
  /*display: inline-block;*/
  display: none;
}

.show_more:hover {
  background: url("/wp-content/themes/mrsk/img/svg/show_more_hover.svg");
}

.show_less {
  width: 16px;
  height: 12px;
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  background: url("/wp-content/themes/mrsk/img/svg/hide_more.svg");
}

.show_less:hover {
  background: url("/wp-content/themes/mrsk/img/svg/hide_more_hover.svg");
}

.has_children a::after {
  content: '>';
  opacity: 0.4;
  font-weight: 500;
  font-size: 14px;
  margin-left: 5px;
  color: #ffffff;
}

.modal__email {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 1000;
}

.overlay_email {
  background: #34343a;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 0.6;
}

.form_modal {
  background: #F9F9FB;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  padding: 30px;
  width: 440px;
}

.modal__close {
  width: 24px;
  height: 24px;
  top: -34px;
  right: 0;
  position: absolute;
}

.modal__close span {
  width: 24px;
  height: 3px;
  position: absolute;
  left: 50%;
  margin-left: -12px;
  top: 50%;
  background: #fff;
  border-radius: 1px;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;
}

.modal__close span:first-child {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.modal__close span:last-child {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.form_success {
  display: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
}

#toTop {
  position: fixed;
  width: 48px;
  height: 48px;
  background: #F1F1F1;
  border-radius: 50%;
  bottom: 60px;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
}

.result_search a {
  display: block;
  margin-top: 20px;
}

.global_search .content li {
  margin-left: 0;
  margin-bottom: 45px;
}

.global_search li::before {
  display: none;
}

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

.global_search__link span {
  font-size: 18px;
}

.global_search__link span:first-child {
  margin-right: 10px;
}

.global_search__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 45px;
}

.global_search__form input{
  width: 100%;
  border-right: none;
}

.global_search__form input:hover,
.global_search__form input:focus {
  border-right: none;
}@media (min-width: 1025px) and (max-width: 1440px) {
    .nums_number {
        font-size: 30vh;
        line-height: 30vh;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .ns_pager span {
        padding: 0 10px;
    }

    .center_cnt {
        padding-left: 50px;
        padding-right: 50px;
    }

    .first_active .footer_text {
        left: 45px;
    }

    header .center_cnt {
        padding-top: 50px;
    }

    footer .center_cnt {
        padding-bottom: 50px;
    }

    .cs_slide_num {
        left: -50px;
    }

    .cs_slide_cnt {
        margin: 23vh 100px 100px;
        width: calc(100% - 200px);
    }

    .parallax {
        -webkit-transform: scale(0.6);
        -ms-transform: scale(0.6);
        transform: scale(0.6);
    }

    .nums_number {
        line-height: 32vh;
        font-size: 34vh;
    }

    .nums_cnt {
        margin: calc(23vh + 65px) 100px 150px;
        width: calc(100% - 200px);
    }

    .ns_pager_container {
        left: -10px;
    }

    .appeal_img {
        width: 40%;
        right: -40%;
    }

    .cs_slide_body {
        padding-top: 20px;
    }

    .appeal_cnt {
        max-width: 52%;
    }
}

@media screen and (max-width: 1024px) {
    .main_screen,
    body, html {
        height: auto;
    }

    body {
        overflow-y: auto;
    }

    header {
        background: white;
    }

    header .center_cnt {
        padding-top: 15px;
        padding-bottom: 15px;
    }

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

    .main_slider,
    .main_page footer,
    .header_year,
    .parallax_container,
    .logo span {
        display: none;
    }

    .cs_slide {
        display: block;
        height: auto;
    }

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

    .content_slider {
        position: relative;
        height: auto;
    }

    .cs_slide_cnt {
        width: 100%;
        margin: 30px 0;
        padding: 0 15px;
    }

    .cs_slide_num span,
    .cs_slide_title span {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

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

    .cs_slide_num {
        margin-right: 20px;
    }

    .content_slides_wrap,
    .cs_slide_num {
        position: relative;
        top: auto;
        left: auto;
    }

    .content_slides_wrap {
        height: auto;
        padding-top: 75px;
    }

    .nums_number_desc span, .nums_number span {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    [data-content-slide="1"] {
        padding-top: 100px;
        min-height: 80vh;
    }

    .cs_slide_body {
        padding-top: 25px;
    }

    .nums_number_desc {
        line-height: 20px;
        font-size: 18px;
        top: -6px;
    }

    .nums_number {
        top: -15px;
        font-size: 100px;
        line-height: 100px;
    }

    .content_slides_wrap {
        background: url("/wp-content/themes/mrsk/img/mobile_bg.jpg") bottom right -1075px no-repeat;
        background-size: auto 100%;
        background-repeat: no-repeat;
    }

    [data-content-slide="1"] {
        background: white;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    [data-content-slide="1"] .cs_slide_cnt {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-line-pack: center;
        align-content: center;
        margin-top: 0;
        padding-bottom: 100px;
    }

    [data-content-slide="1"] .cs_slide_body {
        height: auto;
    }

    .cs_slide:not([data-content-slide="4"]):not([data-content-slide="1"]) .cs_slide_footer {
        display: none;
    }

    .cs_slide_footer a.cs_slide_link {
        opacity: 0.6;
        visibility: visible;
    }

    [data-content-slide="1"] .cs_slide_footer {
        position: static;
        padding-left: 15px;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-bottom: 30px;
    }

    .cs_slide_subtitle span {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    [data-content-slide="2"] .cs_slide_cnt,
    [data-content-slide="3"] .cs_slide_cnt,
    [data-content-slide="4"] .cs_slide_cnt {
        /*min-height: 230px;*/
        padding: 50px 15px;
    }

    .cs_news .cs_slide_body {
        height: auto;
    }

    .content_slides_wrap:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120px;
        background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)),to(rgba(255,255,255,0)));
        background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
        background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
    }

    .cs_slide_cnt {
        margin: 0;
    }

    [data-content-slide="4"] .cs_slide_footer {
        margin: 50px 0 0;
        display: none;
    }

    .appeal_cnt {
        max-width: 100%;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .cs_mobile_slide_footer {
        position: fixed;
        bottom: 25px;
        left: 15px;
    }

    .cs_appeal .cs_slide_cnt {
        padding: 70px 15px 50px;
    }

    .appeal_img {
        position: relative;
        top: 0;
        right: auto;
        width: 200px;
        margin: 50px auto 0;
        height: 100%;
        background-image: none !important;
        padding: 0;
        color: #69696D;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .appeal_mobile_img {
        display: block;
        width: 150px;
        height: 150px;
        background-size: cover;
        border-radius: 100%;
        margin-bottom: 25px;
    }

    .ns_slide {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .cs_news {
        height: auto;
    }

    .ns_pager_wrap {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .ns_pager_container {
        left: 0;
        margin: 50px 0 0;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 15px;
    }

    .news_slider {
        height: auto;
    }

    .active .search_input_wrap {
        width: calc(100% - 145px);
    }

    .search_input_wrap {
        left: 75px;
        position: absolute;
        background: #161924;
    }

    .hm_search {
        z-index: 10;
    }

    .cs_news .cs_slide_body {
        padding: 30px 0;
    }

    .header_menu {
        right: -100%;
        width: 100%;
    }

    .hm_body {
        height: calc(100vh - 155px);
        padding: 30px 50px 30px 25px;
    }

    .hm_footer {
        padding: 0 25px;
        margin: 25px 0;
    }

    .hm_header {
        margin: 30px 0 25px 0;
        padding: 0 70px 0 25px;
    }

    .hm_footer:before {
        top: -75px;
    }

    .hm_body a {
        display: inline-block;
    }

    .hm_body ol li a {
        max-width: none;
    }

    .cs_mobile_slide_footer.bottom {
        position: absolute;
    }

    .cs_mobile_slide_footer.white_text a,
    .cs_mobile_slide_footer.white_text {
        color: white;
    }

    .ns_pager span {
        width: auto;
        background: none;
        -webkit-transition: all 0.3s cubic-bezier(0.445, 0.050, 0.550, 0.950);
        -o-transition: all 0.3s cubic-bezier(0.445, 0.050, 0.550, 0.950);
        transition: all 0.3s cubic-bezier(0.445, 0.050, 0.550, 0.950);
        border-radius: 20px;
        background: transparent;
    }

    .ns_pager span.swiper-pagination-bullet-active {
        background: rgba(255, 255, 255, 0.2);
        opacity: 1;
    }
    .ns_sliding_bg {
        display: none;
    }

    body.overlay {
        height: 100vh;
        overflow: hidden;
    }

    .cs_slide[data-content-slide="2"],
    .cs_slide[data-content-slide="3"],
    .cs_slide[data-content-slide="4"] {
        opacity: 0;
    }
    .ns_pager span {
        padding: 0 10px;
    }

    .page_not_found h1 {
        margin-top: 150px;
        font-size: 30vw;
    }

    .page_not_found p {
        font-size: 12px;
        max-width: 250px;
    }

    #ars_msgField {
        top: 90px;
        right: 50px;
        left: auto;
    }
}

@media (min-width: 769px) and (max-width: 1024px){
    .cs_slide_cnt {
        padding: 0 30px;
    }

    .center_cnt {
        padding-left: 30px;
        padding-right: 30px;
    }

    [data-content-slide="1"] .cs_slide_footer {
        padding-left: 30px;
    }

    [data-content-slide="2"] .cs_slide_cnt,
    [data-content-slide="3"] .cs_slide_cnt,
    [data-content-slide="4"] .cs_slide_cnt {
        padding: 50px 30px;
    }
    .cs_appeal .cs_slide_cnt {
        padding: 70px 30px 50px;
    }

    .ns_sliding_bg {
        display: block;
    }

    .ns_pager span:last-child {
        padding-right: 10px;
    }

    .hm_header {
        padding: 0 85px 0 25px;
    }

    .active .search_input_wrap {
        width: calc(100% - 160px);
    }
}

@media screen and (max-width: 1024px) {
    .document_menu_wrap {
        width: 100%;
        visibility: inherit!important;
        opacity: 1!important;
        z-index: -1;
    }

    .document_menu_btn {
        right: 40px;
    }

    .document_menu {
        display: none !important;
    }

    .document_menu--mobile {
        position: absolute;
        bottom: calc(100% + 35px);
        right: 15px;
        background: white;
        border-radius: 7px;
        -webkit-box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.2);
        display: none;
    }

    .document_menu__list {
        list-style: none;
    }

    .document_menu__list .doc_link {
        padding: 15px 25px;
    }

    .doc_link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-decoration: none;
        -webkit-transition: all .3s var(--animation);
        -o-transition: all .3s var(--animation);
        transition: all .3s var(--animation);
        color: #34343A;
        opacity: 0.6;
    }

    .document_menu__list .doc_link:hover,
    .document_menu__list .doc_link:focus {
        background: #F1F1F1;
        opacity: 1;
    }

    .doc_link p {
        margin: 0;
        margin-left: 15px;
    }

    .zakon152 {
        padding: 0 50px;
    }

    .zakon152 p {
        font-size: 12px;
    }
}

@-webkit-keyframes fadeIn{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media screen and (max-height: 600px) and (min-width: 1024px) {
    .last_active {
        overflow-y: auto;
        min-height: 600px;
    }

    .main_page footer {
        position: absolute;
    }

    .cs_slide_cnt {
        margin-top: 150px;
    }
}

@media screen and (max-width: 480px) {
    .bvi-open {
        display: none !important;
    }
}