@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:700|Roboto:400,400i,500,700&subset=cyrillic');
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*clarify*/
/*clarify*/
/*clarify*/
/*clarify*/
/*clarify*/
/* form */
/* hv form */
html,
body {
  height: 100%;
}
body {
  position: relative;
  text-align: left;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
}
em,
i {
  font-style: italic;
}
strong,
b {
  font-weight: bold;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
img {
  vertical-align: top;
}
.test {
  background-color: rgba(20, 90, 50, 0.3);
}
.ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.hidden {
  display: none;
}
/*
LESS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: @icon-home-width;
}

The large array-like variables contain all information about a single icon
@icon-home: x y offset_x offset_y width height total_width total_height image_path name;

At the bottom of this section, we provide information about the spritesheet itself
@spritesheet: width height image @spritesheet-sprites;
*/
/*
The provided classes are intended to be used with the array-like variables

.icon-home {
  .sprite-width(@icon-home);
}
.icon-email {
  .sprite(@icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
/*
The `.sprites` mixin generates identical output to the CSS template
  but can be overridden inside of LESS

This must be run when you have at least 2 sprites.
  If run with a single sprite, then there will be reference errors.

.sprites(@spritesheet-sprites);
*/
.f-nav__item {
  margin-bottom: 6px;
}
.f-nav__item:last-child {
  margin-bottom: 0;
}
.f-nav__link {
  text-decoration: none;
  color: #5a6069;
  font-size: 16px;
  line-height: 20px;
  border-bottom: 1px solid transparent;
}
.f-nav__link:hover {
  border-bottom-color: #adaeb1;
}
.footer {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  background-color: #f1f3f6;
  border-top: 2px solid #d3d7df;
}
.footer__top {
  display: -ms-flexbox;
  display: flex;
  padding-top: 31px;
}
.footer__base {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  padding-right: 15px;
}
.footer__grid {
  display: -ms-flexbox;
  display: flex;
}
.footer__grid_wide {
  width: 66.66%;
  padding-right: 15px;
}
.footer__grid_narrow {
  box-sizing: border-box;
  width: 33.33%;
  padding-left: 15px;
}
.footer__side {
  width: 220px;
  padding-left: 0;
}
.footer__cell {
  box-sizing: border-box;
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.footer__cell:first-child {
  padding-left: 0;
}
.footer__cell:nth-child(2) {
  padding-right: 0;
}
.footer__sites {
  padding-top: 34px;
}
.footer__bottom {
  display: -ms-flexbox;
  display: flex;
  padding-top: 25px;
  padding-bottom: 25px;
}
@media screen and (max-width: 1023px) {
  .footer__top {
    display: block;
  }
  .footer__base {
    padding-right: 0;
  }
  .footer__side {
    width: auto;
    padding-left: 0;
    margin-top: 28px;
  }
}
@media screen and (max-width: 768px) {
  .footer__grid {
    width: 50%;
  }
  .footer__grid_wide {
    box-sizing: border-box;
    display: block;
  }
  .footer__cell {
    padding-right: 0;
    padding-left: 0;
    width: auto;
  }
  .footer__cell:nth-child(n+2) {
    margin-top: 25px;
  }
  .footer__bottom {
    display: block;
    padding-top: 29px;
    padding-bottom: 29px;
  }
}
@media screen and (max-width: 480px) {
  .footer__base {
    display: block;
  }
  .footer__grid {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .footer__grid_narrow {
    margin-top: 25px;
  }
}
.header {
  position: relative;
  z-index: 1001;
  height: 182px;
  background-color: #40558a;
}
.header__base {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.header__link {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  padding-top: 8px;
  padding-bottom: 8px;
  transition: color 0.1s ease;
}
.header__link:hover {
  color: #baceff;
}
@media screen and (min-width: 1024px) {
  .header__box {
    height: 100%;
    position: relative;
  }
  .header__inner {
    display: block!important;
    margin-left: 130px;
    height: 100%;
  }
  .header__base {
    -ms-flex-direction: column;
        flex-direction: column;
    height: 100%;
    position: relative;
  }
  .header__container {
    margin-left: 450px;
    padding-top: 12px;
  }
  .header__nav {
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
  .header__nav:after {
    content: '';
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  .header__top {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
        justify-content: flex-end;
    -ms-flex-align: center;
        align-items: center;
  }
  .header__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
        justify-content: flex-end;
    -ms-flex-align: center;
        align-items: center;
    margin-top: 17px;
  }
  .header__row .btn_type_simple-dark {
    margin-left: 20px;
  }
  .header__cell {
    margin-left: 28px;
  }
  .header__cell_social {
    margin-left: 14px;
  }
  .header__cell:first-child {
    margin-left: 0;
  }
}
@media screen and (min-width: 1121px) and (max-width: 1279px) {
  .header__inner {
    margin-left: 116px;
  }
  .header__container {
    margin-left: 370px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1120px) {
  .header__inner {
    margin-left: 0;
  }
  .header__container {
    margin-left: 420px;
  }
}
@media screen and (max-width: 1023px) {
  .header {
    height: 51px;
  }
  .header__inner {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }
  .header__base {
    background-color: #40558a;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
  .header__container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    padding: 16px 25px 0;
  }
  .header__top {
    padding-bottom: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
  }
  .header__cell {
    margin-top: 18px;
  }
  .header__row {
    padding-bottom: 29px;
  }
  .header__row .btn_type_simple-dark {
    margin-top: 29px;
  }
}
@media screen and (max-width: 768px) {
  .header__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.logo {
  display: block;
  width: 100px;
  height: 182px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  text-decoration: none;
  z-index: 150;
}
.logo:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background-repeat: no-repeat;
}
.logo__img {
  max-width: 100%;
}
.logo__item {
  position: absolute;
  top: 0;
  left: 100%;
  padding-top: 30px;
  margin-left: 24px;
  color: #fff;
  text-transform: uppercase;
  font-size: 29px;
  line-height: 33px;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .logo:after {
    margin-left: -67px;
    margin-top: -74px;
    background-image: url("../images/logo/newLogo.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 1121px) and (max-width: 1279px) {
  .logo {
    width: 95px;
  }
  .logo:after {
    margin-top: -67px;
    margin-left: -61px;
  }
  .logo__item {
    font-size: 24px;
    line-height: 28px;
    padding-top: 36px;
    margin-left: 22px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1120px) {
  .logo {
    width: 80px;
    height: 125px;
  }
  .logo:after {
    margin-left: -46px;
    margin-top: -58px;
  }
  .logo__item {
    padding-top: 42px;
    font-size: 20px;
    line-height: 24px;
    margin-left: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .logo {
    display: inline-block;
    height: 51px;
    width: auto;
    position: relative;
    top: 0;
    bottom: 0;
    left: auto;
    padding-left: 39px;
  }
  .logo:after {
    left: 0;
    margin-top: -19px;
    background-image: url("../images/logo/newLogo.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
  }
  .logo__item {
    box-sizing: border-box;
    height: 100%;
    position: relative;
    padding-top: 9px;
    font-size: 14px;
    line-height: 16px;
    left: auto;
    margin-left: 0;
  }
}
.lang {
  display: -ms-flexbox;
  display: flex;
}
.lang__item {
  margin-right: 1px;
}
.lang__item:last-child {
  margin-right: 0;
}
.lang__item_active .lang__link {
  border-color: rgba(255, 255, 255, 0.17);
}
.lang__link {
  padding: 6px 9px;
  border-radius: 14px;
  border: 1px solid transparent;
  display: block;
  color: #fff;
  font-size: 11px;
  line-height: 14px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.1s ease;
}
.lang__link:hover {
  color: #baceff;
}
.nav {
  opacity: 1;
  visibility: visible;
}
.nav__item {
  position: relative;
  z-index: 100;
  transform: translate3d(0, 0, 0);
  opacity: 0.99;
}
.nav__link {
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  z-index: 100;
  transform: translate3d(0, 0, 0);
  opacity: 0.99;
}
.nav__submenu {
  display: none;
}
.nav__subitem {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.nav__subitem_category-link {
  display: none;
  font-weight: bold;
}
.nav__subitem:nth-child(2) {
  border-top: none;
}
.nav__sublink {
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
}
.nav__sublink:hover .nav__text {
  border-bottom-color: #979fb3;
}
.nav__text {
  border-bottom: 1px solid transparent;
}
@media screen and (min-width: 1024px) {
  .nav {
    max-width: 92%;
  }
  .nav__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
  .nav__item {
    margin-right: 21px;
  }
  .nav__item:last-child {
    margin-right: 0;
  }
  .nav__item:hover .nav__link:before {
    background-color: rgba(255, 255, 255, 0.9);
  }
  .nav__item_active .nav__link:before {
    background-color: rgba(255, 255, 255, 0.9);
  }
  .nav__item_submenu:hover .nav__submenu {
    display: block;
  }
  .nav__link {
    white-space: nowrap;
    padding-top: 17px;
    padding-bottom: 20px;
  }
  .nav__link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.15s ease;
  }
  .nav__submenu {
    position: absolute;
    top: 100%;
    left: -16px;
    box-sizing: border-box;
    width: 272px;
    padding: 6px 16px 3px;
    background-color: #2f3e67;
  }
  .nav__subitem {
    padding-top: 12px;
    padding-bottom: 13px;
  }
  .nav__sublink {
    display: inline-block;
    white-space: normal;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .nav__link {
    font-size: 15px;
  }
}
@media screen and (max-width: 1023px) {
  .nav__item {
    padding-left: 25px;
    padding-right: 25px;
  }
  .nav__item:first-child .nav__link {
    border-top: none;
  }
  .nav__item_submenu .nav__link:after {
    content: '';
    display: inline-block;
    vertical-align: top;
    margin-top: 7px;
    margin-left: 5px;
    width: 11px;
    height: 7px;
    background-repeat: no-repeat;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxMXB4IiBoZWlnaHQ9IjdweCIgdmlld0JveD0iLTMuNSAtMi41IDExIDciIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgLTMuNSAtMi41IDExIDciIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cG9seWdvbiBmaWxsPSIjRkZGRkZGIiBwb2ludHM9IjYuMjUsLTAuNTc2IDUuMzkzLC0xLjQ3MSAxLjg3NSwxLjYyOSAtMS42NDEsLTEuNSAtMi41LC0wLjU2IDEuNzU2LDMuNSAxLjk5NCwzLjUgIi8+Cjwvc3ZnPgo=);
    transition: transform 0.3s ease;
  }
  .nav__item_opened {
    border-top-color: transparent;
    background-color: #2f3e67;
  }
  .nav__item_opened + .nav__item .nav__link {
    border-top-color: transparent;
  }
  .nav__item_opened .nav__link {
    border-top-color: transparent;
  }
  .nav__item_opened .nav__link:after {
    transform: rotate(180deg);
  }
  .nav__link {
    padding-top: 14px;
    padding-bottom: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .nav__submenu {
    padding: 6px 0 3px;
  }
  .nav__sublink {
    display: block;
    padding-top: 12px;
    padding-bottom: 13px;
  }
}
@media screen and (max-width: 768px) {
  .nav__item {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.mobile-yes .nav__subitem {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-yes .nav__subitem_category-link {
  border-top: none;
  display: block;
}
.mobile-yes .nav__subitem:nth-child(2) {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-btn {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2000;
  width: 72px;
  height: 100%;
  cursor: pointer;
}
.nav-btn__item,
.nav-btn__item:before,
.nav-btn__item:after {
  position: absolute;
  height: 3px;
  background-color: #fff;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.nav-btn__item {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -2px;
  margin-left: -11px;
  width: 22px;
}
.nav-btn__item:before,
.nav-btn__item:after {
  content: '';
  left: 0;
  right: 0;
  top: 0;
}
.nav-btn__item:before {
  transform: rotate(0) translateY(-6px);
}
.nav-btn__item:after {
  transform: rotate(0) translateY(6px);
}
.nav-btn:focus {
  outline: none;
}
@media screen and (max-width: 1023px) {
  .nav-btn {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .nav-btn {
    width: 62px;
  }
}
.nav-opened .nav-btn__item {
  background: transparent;
}
.nav-opened .nav-btn__item:before {
  transform: rotate(45deg) translateY(0);
}
.nav-opened .nav-btn__item:after {
  transform: rotate(-45deg) translateY(0);
}
.social {
  display: -ms-flexbox;
  display: flex;
}
.social__item {
  opacity: 1;
  transition: opacity 0.15s ease;
}
.social__link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.social__icon {
  fill: #fff;
  transition: fill 0.15s ease;
}
.social_light .social__item {
  margin-right: 9px;
}
.social_light .social__item:last-child {
  margin-right: 0;
}
.social_light .social__link {
  width: 28px;
  height: 28px;
}
.social_light .social__link:hover .social__icon {
  fill: #baceff;
}
.social_color .social__item {
  margin-right: 7px;
}
.social_color .social__item:last-child {
  margin-right: 0;
}
.social_color .social__link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: opacity 0.15s ease;
}
.social_color .social__link:hover {
  opacity: 0.9;
}
.social_color .social__link_telegram {
  background-color: #35ade1;
}
.social_color .social__link_telegram .social__icon {
  height: 16px;
  width: 16px;
}
.social_color .social__link_vk {
  background-color: #507299;
}
.social_color .social__link_vk .social__icon {
  height: 11px;
  width: 18px;
}
.social_color .social__link_facebook {
  background-color: #3b5998;
}
.social_color .social__link_facebook .social__icon {
  height: 17px;
  width: 9px;
}
.social_color .social__link_youtube {
  background-color: #e82a2c;
}
.social_color .social__link_youtube .social__icon {
  height: 15px;
  width: 20px;
}
.social_color .social__link_instagram {
  background-image: linear-gradient(-135deg, #b239b4 0%, #e5a365 80%);
}
.social_color .social__link_twitter {
  background-color: #000000;
}
.social_color .social__link_twitter .social__icon {
  height: 16px;
  width: 18px;
}
.search__form {
  box-sizing: border-box;
  margin-left: auto;
}
.search__input {
  box-sizing: border-box;
  width: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  background-color: #40558a;
  position: relative;
  display: block;
  margin: 0;
  transition: border-color 0.15s linear;
}
.search__input:focus {
  outline: none;
  z-index: 50;
}
.search__input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
.search__input::-webkit-input-placeholder {
  color: #798bb9;
}
.search__input::-moz-placeholder {
  color: #bec5cf;
}
.search__input:-ms-input-placeholder {
  color: #798bb9;
}
.search__submit {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  right: 0;
  outline: 0;
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  box-sizing: border-box;
  cursor: pointer;
  text-align: left;
  word-wrap: break-word;
  color: #fff;
  z-index: 70;
  background-color: transparent;
  transition: color 0.05 linear, background-color 0.05 linear;
}
.search__icon-find {
  fill: #fff;
}
.search__icon-clear {
  fill: #fff;
}
.search__reset {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 24px;
  -ms-flex-pack: end;
      justify-content: flex-end;
  width: 22px;
  z-index: 60;
}
.search__reset:hover .search__icon-clear {
  fill: #baceff;
}
.search__title {
  font-size: 16px;
  color: #fff;
  border-bottom: 1px dotted #fff;
}
.search__actions {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  -ms-flex-align: center;
      align-items: center;
  padding-bottom: 4px;
}
@media screen and (min-width: 1024px) {
  .search__inner {
    position: absolute;
    top: 2px;
    left: 100%;
    right: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    visibility: hidden;
    z-index: -1;
    pointer-events: none;
    transition: left 0.3s ease;
  }
  .search__input {
    height: 55px;
    padding: 0;
  }
  .search__toggle {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: end;
        justify-content: flex-end;
    text-decoration: none;
    height: 57px;
    width: auto;
    box-sizing: border-box;
    padding-bottom: 5px;
    z-index: 50;
    position: relative;
  }
  .search__icon {
    margin-right: 5px;
  }
  .search__reset {
    margin-left: 6px;
  }
  .search__submit {
    padding: 3px 17px;
    font-size: 16px;
    border-radius: 15px;
    border: 2px solid #fff;
  }
  .search__submit:disabled,
  .search__submit:disabled:hover {
    cursor: default;
    color: #8e9cbf;
    border-color: #6677a1;
    background-color: transparent;
  }
  .search__submit:active,
  .search__submit:focus {
    border-width: 2px;
    margin: 0;
  }
  .search__submit:hover {
    color: #40558a;
    border-color: #fff;
    background-color: #fff;
  }
  .search__icon-find.icon {
    display: none;
  }
  .search_opened .search__input {
    padding: 10px 135px 15px 2px;
  }
  .search_opened .search__inner {
    width: auto;
    left: 0;
    height: 55px;
    visibility: visible;
    z-index: 100;
    pointer-events: auto;
  }
  .search_opened .search__toggle {
    opacity: 0;
    display: none;
  }
  .search_opened .search__actions {
    display: -ms-flexbox;
    display: flex;
  }
  .search_opened .nav {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s ease 0.3s;
  }
}
@media screen and (max-width: 1180px) {
  .search__title {
    display: none;
  }
  .search__icon {
    margin-right: 0;
  }
  .search__toggle {
    width: 36px;
  }
}
@media screen and (max-width: 1023px) {
  .search__form {
    padding-top: 17px;
    margin: 3px 25px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
  }
  .search__inner {
    position: relative;
  }
  .search__input {
    height: 38px;
    padding: 4px 42px 8px 2px;
  }
  .search__actions {
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 3px;
  }
  .search__submit {
    padding: 5px;
    font-size: 0;
    line-height: 0;
  }
  .search__reset {
    display: none;
  }
  .search__toggle {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .search__form {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.radio {
  line-height: 1;
}
.radio__input {
  display: none;
}
.radio__input:checked + .radio__label:before {
  background-color: #f8cd65;
  border-color: #d6ae4e;
}
.radio__input:checked + .radio__label:after {
  opacity: 1;
}
.radio__label {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  position: relative;
  padding-left: 27px;
  min-height: 20px;
  color: #3b3e45;
}
.radio__label:before {
  top: 0;
  content: "";
  box-sizing: border-box;
  position: absolute;
  border-radius: 50%;
  left: 0;
  height: 19px;
  width: 19px;
  background-color: #fff;
  border: 1px solid #afb2bb;
}
.radio__label:after {
  content: "";
  box-sizing: border-box;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
  height: 9px;
  width: 9px;
  opacity: 0;
  background-color: #3b3e45;
  transition: opacity 0.1s ease;
}
.radio__label:hover:before {
  border-color: #9b9ea7;
}
.radio__title {
  display: block;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 1px;
}
.radio__desc {
  display: block;
  font-size: 16px;
  line-height: 24px;
}
.news__item {
  box-sizing: border-box;
}
.news__link {
  text-decoration: none;
  color: #3b3e45;
  display: block;
}
.news__link:focus {
  outline: none;
}
.news__link:hover .news__text {
  border-bottom-color: #adaeb1;
}
.news__link:hover .news__pic:after {
  opacity: 0.1;
}
.news__pic {
  position: relative;
}
.news__pic:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  background-color: #fff;
  transition: opacity 0.15s ease;
}
.news__img {
  max-width: 100%;
}
.news__info {
  display: block;
  font-size: 14px;
  color: #989ca4;
  margin-right: 22px;
}
.news__info:last-child {
  margin-right: 0;
}
.news__content {
  margin-top: 7px;
  font-size: 16px;
  line-height: 22px;
}
.news__text {
  border-bottom: 1px solid transparent;
}
.news__top {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news_column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -14px;
  margin-right: -14px;
}
.news_column .news__item {
  margin-bottom: 24px;
}
.news_column .news__link {
  border-bottom: 2px solid #d1d7e1;
  padding-bottom: 18px;
}
.news_column .news__pic {
  margin-bottom: 19px;
}
.news_column .news__column {
  box-sizing: border-box;
  padding-left: 14px;
  padding-right: 14px;
}
@media screen and (min-width: 910px) and (max-width: 1099px) {
  .news_column {
    margin-left: -11px;
    margin-right: -11px;
  }
  .news_column .news__content {
    font-size: 14px;
    line-height: 19px;
  }
  .news_column .news__column {
    padding-left: 11px;
    padding-right: 11px;
  }
}
@media screen and (min-width: 621px) and (max-width: 768px) {
  .news_column {
    margin-left: -11px;
    margin-right: -11px;
  }
  .news_column .news {
    /*salv*/
  }
  .news_column .news__content {
    font-size: 14px;
    line-height: 19px;
  }
  .news_column .news__column {
    padding-left: 11px;
    padding-right: 11px;
  }
}
@media screen and (min-width: 621px) {
  .news_column .news__column {
    width: 33.333%;
  }
}
@media screen and (max-width: 620px) {
  .news_column {
    margin-left: 0;
    margin-right: 0;
  }
  .news_column .news__column {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.news_side .news__item {
  margin-bottom: 22px;
}
.news_side .news__item:last-child {
  margin-bottom: 0;
}
.news_side .news__item:last-child .news__link {
  border-bottom: none;
  padding-bottom: 0;
}
.news_side .news__link {
  border-bottom: 2px solid #d1d7e1;
  padding-bottom: 18px;
}
.news_side .news__content {
  margin-top: 8px;
  font-size: 15px;
  line-height: 21px;
}
.news_line .news__item {
  margin-bottom: 38px;
}
.news_line .news__item:last-child {
  margin-bottom: 0;
}
.news_line .news__item:last-child .news__link {
  border-bottom: none;
  padding-bottom: 0;
}
.news_line .news__link {
  border-bottom: 2px solid #ebedf2;
  padding-bottom: 31px;
  display: -ms-flexbox;
  display: flex;
}
.news_line .news__pic {
  padding-top: 2px;
  margin-right: 23px;
}
.news_line .news__container {
  -ms-flex: 1;
      flex: 1;
}
.news_line .news__content {
  font-size: 19px;
  line-height: 25px;
}
@media screen and (max-width: 768px) {
  .news_line .news__link {
    padding-bottom: 28px;
  }
}
@media screen and (max-width: 520px) {
  .news_line .news__pic {
    margin-right: 20px;
  }
  .news_line .news__pic + .news__container .news__top {
    display: block;
  }
  .news_line .news__pic + .news__container .news__info:nth-child(n+2) {
    margin-top: 5px;
  }
}
@media screen and (max-width: 479px) {
  .news_line .news__link {
    display: block;
  }
  .news_line .news__pic {
    float: left;
    margin-bottom: 18px;
  }
  .news_line .news__content {
    clear: both;
  }
}
@media screen and (max-width: 360px) {
  .news_line .news__top {
    display: block;
  }
  .news_line .news__info:nth-child(n+2) {
    margin-top: 5px;
  }
}
.news_box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -14px;
  margin-right: -14px;
}
.news_box .news__item {
  width: 33.333%;
  padding-left: 14px;
  padding-right: 14px;
}
.news_box .news__pic {
  margin-bottom: 17px;
}
@media screen and (min-width: 910px) and (max-width: 1099px) {
  .news_box {
    margin-left: -11px;
    margin-right: -11px;
  }
  .news_box .news__item {
    padding-left: 11px;
    padding-right: 11px;
  }
  .news_box .news__content {
    font-size: 14px;
    line-height: 19px;
  }
}
@media screen and (min-width: 621px) and (max-width: 768px) {
  .news_box {
    margin-left: -11px;
    margin-right: -11px;
  }
  .news_box .news__item {
    padding-left: 11px;
    padding-right: 11px;
  }
  .news_box .news__content {
    font-size: 14px;
    line-height: 19px;
  }
}
@media screen and (max-width: 620px) {
  .news_box .news__item {
    width: 50%;
  }
  .news_box .news__item:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 450px) {
  .news_box .news__item {
    width: 100%;
  }
  .news_box .news__item:nth-child(n+2) {
    margin-top: 35px;
  }
}
.news_tile {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.news_tile .news__item {
  width: 50%;
  padding-left: 12px;
  padding-right: 12px;
}
.news_tile .news__item:nth-child(n+3) {
  margin-top: 30px;
}
.news_tile .news__pic {
  margin-bottom: 20px;
}
.news_tile .news__content {
  font-size: 18px;
  line-height: 24px;
  margin-top: 9px;
}
@media screen and (min-width: 910px) and (max-width: 1024px) {
  .news_tile {
    margin-left: -11px;
    margin-right: -11px;
  }
  .news_tile .news__item {
    padding-left: 11px;
    padding-right: 11px;
  }
  .news_tile .news__content {
    font-size: 16px;
    line-height: 21px;
  }
}
@media screen and (min-width: 464px) and (max-width: 684px) {
  .news_tile {
    margin-left: -11px;
    margin-right: -11px;
  }
  .news_tile .news__item {
    padding-left: 11px;
    padding-right: 11px;
  }
  .news_tile .news__content {
    font-size: 15px;
    line-height: 20px;
  }
}
@media screen and (max-width: 463px) {
  .news_tile .news__item {
    width: 100%;
  }
  .news_tile .news__item:nth-child(n+2) {
    margin-top: 35px;
  }
}
.breadcrumbs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 4px;
}
.breadcrumbs__item {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  line-height: 18px;
  position: relative;
  margin-right: 12px;
  color: #989ca4;
}
.breadcrumbs__item:after {
  content: '/';
  position: absolute;
  top: 0;
  right: -9px;
  font-size: 14px;
  line-height: 18px;
  color: #989ca4;
}
.breadcrumbs__item:last-child {
  margin-right: 0;
}
.breadcrumbs__item:last-child:after {
  content: none;
}
.breadcrumbs__link {
  display: block;
  text-decoration: none;
  color: #989ca4;
}
.breadcrumbs__link:hover .breadcrumbs__text {
  border-bottom-color: #adaeb1;
}
.breadcrumbs__text {
  display: inline;
  border-bottom: 1px solid transparent;
}
/* tabs */
.tabs {
  font-size: 0;
}
.tabs__item {
  display: inline;
  box-sizing: border-box;
}
.tabs__link {
  display: inline-block;
  vertical-align: bottom;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  box-sizing: border-box;
  cursor: pointer;
}
.tabs__link:focus {
  outline: none;
}
.tabs__block {
  position: relative;
  color: #3b3e45;
}
.tabs__box {
  display: none;
  box-sizing: border-box;
  float: left;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 14px;
}
.tabs_light {
  border-bottom: 2px solid #dcdfe3;
}
.tabs_light .tabs__box {
  padding-top: 32px;
}
.tabs_light .tabs__item:first-child .tabs__link {
  padding-left: 0;
}
.tabs_light .tabs__item:last-child .tabs__link {
  padding-right: 0;
}
.tabs_light .tabs__item_active .tabs__block {
  font-weight: bold;
  color: #40558a;
}
.tabs_light .tabs__item_active .tabs__block:after {
  opacity: 1;
}
.tabs_light .tabs__item_active .tabs__link:hover .tabs__block {
  color: #40558a;
}
.tabs_light .tabs__link {
  padding: 0 16px;
}
.tabs_light .tabs__link:hover .tabs__block {
  color: #474b54;
}
.tabs_light .tabs__block {
  display: block;
  font-size: 20px;
  padding: 17px 0 18px;
  color: #3b3e45;
}
.tabs_light .tabs__block:after {
  content: '';
  position: absolute;
  bottom: -2px;
  height: 2px;
  background-color: #40558a;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.tabs_light .news {
  padding-top: 13px;
}
.tabs_light-wide .tabs__box {
  padding-top: 25px;
}
.tabs_light-wide .tabs__link {
  padding: 0 12px;
}
.tabs_light-wide .tabs__block {
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 0.1em;
  font-size: 18px;
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .tabs_light-wide .tabs__link {
    padding: 0 11px;
  }
  .tabs_light-wide .tabs__block {
    letter-spacing: 0.03em;
  }
}
@media screen and (min-width: 1101px) and (max-width: 1199px) {
  .tabs_light-wide .tabs__link {
    padding: 0 10px;
  }
  .tabs_light-wide .tabs__block {
    letter-spacing: 0.03em;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1100px) {
  .tabs_light-wide .tabs__link {
    padding: 0 8px;
  }
  .tabs_light-wide .tabs__block {
    font-size: 16px;
    letter-spacing: 0.01em;
    padding: 13px 0 14px;
  }
}
@media screen and (min-width: 910px) and (max-width: 1023px) {
  .tabs_light-wide .tabs__link {
    padding: 0 6px;
  }
  .tabs_light-wide .tabs__block {
    font-size: 14px;
    letter-spacing: normal;
    padding: 10px 0 11px;
  }
}
.tabs_light-wide .news {
  padding-top: 0;
}
.tabs_cover {
  padding-top: 8px;
}
.tabs_cover .tabs__item_active .tabs__link {
  background-color: #40558a;
}
.tabs_cover .tabs__item_active .tabs__block {
  font-weight: bold;
  color: #fff;
  border-bottom-color: transparent;
}
.tabs_cover .tabs__link {
  padding: 7px 15px 9px;
  background-color: transparent;
}
.tabs_cover .tabs__link:hover .tabs__block:after {
  opacity: 1;
}
.tabs_cover .tabs__block {
  display: inline;
  font-size: 16px;
  line-height: 20px;
  border-bottom: 1px dotted #292c33;
}
.tabs_cover .tabs__box {
  padding-top: 29px;
}
@media screen and (max-width: 768px) {
  .tabs__item {
    display: block;
  }
  .tabs__link {
    display: block;
  }
  .tabs__box {
    float: none;
  }
  .tabs_light {
    border-bottom: none;
  }
  .tabs_light .tabs__item {
    margin-bottom: 16px;
  }
  .tabs_light .tabs__item:last-child {
    margin-bottom: 0;
  }
  .tabs_light .tabs__item_active .tabs__block {
    display: inline-block;
  }
  .tabs_light .tabs__item_active .tabs__block:after {
    background-color: #40558a;
  }
  .tabs_light .tabs__link {
    padding-left: 0;
    padding-right: 0;
  }
  .tabs_light .tabs__block {
    padding: 8px 0 6px;
  }
  .tabs_light .tabs__block:after {
    opacity: 1;
    background-color: #dcdfe3;
  }
  .tabs_cover {
    padding-top: 4px;
  }
  .tabs_cover .tabs__item {
    display: block;
    margin-top: 10px;
  }
  .tabs_cover .tabs__item:first-of-type {
    margin-top: 0;
  }
}
.unit {
  position: relative;
  display: block;
  text-decoration: none;
  color: #292c33;
  border: 2px solid transparent;
  padding: 20px 22px 22px;
}
.unit:focus {
  outline: none;
}
.unit__top {
  margin-bottom: 15px;
}
.unit__img {
  margin-top: 3px;
  margin-bottom: 10px;
  max-width: 100%;
}
.unit__caption {
  display: inline-block;
  padding-left: 12px;
  padding-right: 12px;
  position: absolute;
  top: -14px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  background-color: #fff;
}
.unit__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  color: #292c33;
}
.unit__content {
  margin-top: 12px;
  font-size: 16px;
  line-height: 22px;
  color: #292c33;
}
.unit__content a {
  color: #3b3e45;
  text-decoration: none;
  border-bottom: 1px solid #7d7e82;
}
.unit__content a:hover {
  color: #474b54;
  border-bottom-color: #aaabad;
}
.unit__btn {
  margin-top: 20px;
}
.unit__link {
  margin-top: 13px;
}
.unit__wrap {
  display: block;
  color: #3b3e45;
  text-decoration: none;
}
.unit__wrap:hover .unit__text {
  color: #474b54;
  border-bottom-color: #adaeb1;
}
.unit__layout {
  margin-top: 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.unit__box {
  margin-top: 15px;
}
.unit__pic {
  width: 97px;
  height: 97px;
  margin-right: 19px;
}
.unit__name {
  -ms-flex: 1;
      flex: 1;
  font-size: 16px;
  line-height: 20px;
  color: #5a6069;
}
.unit__text {
  display: inline;
  color: #3b3e45;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.unit_main {
  border-color: #f8cd65;
  padding-bottom: 28px;
}
.unit_main .unit__btn {
  margin-top: 28px;
}
.unit_plain {
  border-color: #e3e6ee;
}
.unit_bg {
  border-color: #f3efe6;
  background-color: #f3efe6;
}
.unit_pattern {
  background-repeat: repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAMAAADW3miqAAAAY1BMVEXc3Nzd3d3e3t7f39/g4ODh4eHi4uLj4+Pk5OTl5eXm5ubn5+fp6enr6+vs7Ozt7e3u7u7v7+/w8PDx8fHy8vLz8/P09PT19fX29vb39/f4+Pj5+fn6+vr7+/v8/Pz+/v7////37Ki6AAAAIXRSTlNmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmbG/eL7AAAArUlEQVR42u2RyxKDIAxFSVEeKrUKUoUi+f+vLEOtM/mBdmNWmbPImZvLWs3FhmVeHSgBYy5rfgDBzNsN08BFHzE6v6NTjXK4E8wQ8wTDuhgwGTEoPoWZy0Bw1a1YJmrQgt2rbgSC/6DLu2nV8MJofULfCe0xEVx0OEP/dKa+KBbdNnEVCWayb9rj7q2Tp45gttg1f2JU3ZEuEfxN5890c7CNDARf3V3dXd39vrs3zElg6FGSajIAAAAASUVORK5CYII=);
}
.unit_large {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  padding-top: 63px;
  padding-bottom: 63px;
}
.unit_large .unit__top {
  margin-bottom: 0;
  margin-right: 7%;
}
.unit_large .unit__box {
  width: 51%;
}
.unit_large .unit__title {
  font-size: 32px;
  line-height: 35px;
}
@media screen and (min-width: 841px) and (max-width: 1023px) {
  .unit_large {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .unit_large .unit__icon {
    height: 100px;
    width: 100px;
  }
  .unit_large .unit__top {
    margin-right: 6%;
  }
  .unit_large .unit__box {
    width: 65%;
  }
  .unit_large .unit__title {
    font-size: 28px;
    line-height: 31px;
  }
}
@media screen and (min-width: 769px) and (max-width: 840px) {
  .unit_large {
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .unit_large .unit__icon {
    height: 90px;
    width: 90px;
  }
  .unit_large .unit__top {
    margin-right: 6%;
  }
  .unit_large .unit__box {
    width: 63%;
  }
  .unit_large .unit__title {
    font-size: 26px;
    line-height: 29px;
  }
}
@media screen and (max-width: 768px) {
  .unit_large {
    display: block;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .unit_large .unit__icon {
    height: 90px;
    width: 90px;
  }
  .unit_large .unit__top {
    margin-bottom: 15px;
    margin-right: 0;
  }
  .unit_large .unit__box {
    width: auto;
  }
  .unit_large .unit__title {
    font-size: 26px;
    line-height: 29px;
  }
}
.unit_color_light .unit__content {
  color: #5a6069;
}
.unit_light .unit__title {
  font-weight: normal;
}
.unit_row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: top;
      align-items: top;
  -ms-flex-pack: center;
      justify-content: center;
  border-color: #d1d7e1;
  padding: 14px 20px 15px;
}
.unit_row .unit__top {
  margin-bottom: 0;
  margin-right: 8px;
}
.unit_row .unit__title {
  color: #3b3e45;
  font-size: 16px;
  line-height: 19px;
  font-weight: normal;
  min-height: 33px;
  box-sizing: border-box;
  padding-top: 6px;
}
a.unit:hover .unit__text {
  color: #474b54;
  border-bottom-color: #adaeb1;
}
.paginator {
  margin-top: 37px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
}
.paginator__list {
  display: -ms-flexbox;
  display: flex;
}
.paginator__text {
  color: #3b3e45;
  border-bottom: 1px solid transparent;
}
.paginator__link {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  padding-top: 7px;
  text-decoration: none;
  background-color: #fff;
  margin-left: 1px;
  margin-right: 1px;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 18px;
  color: #3b3e45;
  text-align: center;
}
.paginator__link:hover .paginator__text {
  color: #3b3e45;
  border-bottom-color: #adaeb1;
}
.paginator__link_active {
  cursor: default;
  background-color: #40558a;
  color: #fff;
  font-weight: bold;
}
.paginator__link_active .paginator__text {
  color: #fff;
  border-bottom-color: transparent;
}
.paginator__link_active:hover .paginator__text {
  color: #fff;
  border-bottom-color: transparent;
}
.paginator__item_prev {
  margin-right: 20px;
}
.paginator__item_prev .paginator__icon {
  left: 15px;
  transform: rotate(-180deg);
}
.paginator__item_prev .paginator__btn {
  padding-left: 29px;
}
.paginator__item_next {
  margin-left: 20px;
}
.paginator__item_next .paginator__icon {
  right: 15px;
}
.paginator__item_next .paginator__btn {
  padding-right: 29px;
}
.paginator__icon {
  position: absolute;
  top: 50%;
  margin-top: -6px;
}
@media screen and (max-width: 768px) {
  .paginator {
    margin-top: 32px;
    -ms-flex-align: start;
        align-items: flex-start;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .paginator__text {
    font-size: 16px;
    line-height: 16px;
  }
  .paginator__list {
    width: 100%;
    -ms-flex-order: 1;
        order: 1;
    margin-bottom: 20px;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .paginator__item {
    -ms-flex-order: 2;
        order: 2;
  }
  .paginator__item_next {
    margin-right: 0;
  }
}
@media screen and (max-width: 680px) {
  .paginator__btn {
    font-size: 0 !important;
    line-height: 0 !important;
    height: 38px !important;
    padding: 0 !important;
    width: 41px !important;
  }
  .paginator__item {
    margin-right: 12px;
  }
  .paginator__item_prev {
    -ms-flex-order: 3;
        order: 3;
  }
  .paginator__item_next {
    -ms-flex-order: 4;
        order: 4;
  }
  .paginator__item_first {
    -ms-flex-order: 2;
        order: 2;
  }
  .paginator__item_last {
    -ms-flex-order: 5;
        order: 5;
  }
}
.file {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  padding-top: 4px;
  margin-bottom: -6px;
}
.file__base {
  -ms-flex: 1;
      flex: 1;
  padding-top: 10px;
}
.file__note {
  color: #7a7f8a;
  font-size: 14px;
  line-height: 18px;
}
.file__list {
  position: relative;
  padding-bottom: 5px;
  margin-top: 8px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.file__list_loading .file__item {
  opacity: 0;
}
.file__item {
  display: inline-block;
  margin-top: 9px;
  margin-right: 11px;
  padding-right: 18px;
  position: relative;
}
.file__item:last-child {
  margin-right: 0;
}
.file__del {
  position: absolute;
  width: 18px;
  height: 18px;
  right: -2px;
  top: -1px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-decoration: none;
}
.file__icon {
  fill: #3b3e45;
}
.file__upload {
  margin-left: -10px;
  margin-top: -10px;
  padding: 10px;
  position: relative;
  width: 85px;
  overflow: hidden;
}
.file__input {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 85px;
  opacity: 0;
  font-size: 150px;
  height: 39px;
  z-index: 20;
  cursor: pointer;
}
.file__input:hover + .file__select {
  box-shadow: 0 3px 10px 0 rgba(50, 73, 118, 0.25) !important;
}
.file__loader {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding-top: 9px;
  padding-bottom: 7px;
  position: absolute;
  top: 0;
  left: 0;
}
.file__load {
  margin-left: 10px;
  font-size: 14px;
}
@media screen and (max-width: 520px) {
  .file {
    display: block;
  }
  .file__base {
    padding-top: 6px;
  }
}
.flatpickr-calendar {
  background: transparent;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  padding: 0;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 315px;
  box-sizing: border-box;
  transition: top cubic-bezier(0, 1, 0.5, 1) 100ms;
  z-index: 999;
  background: #fff;
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 350px) {
  .flatpickr-calendar {
    width: 230px;
  }
}
.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  visibility: visible;
  overflow: visible;
  max-height: 640px;
}
.flatpickr-calendar.open {
  display: inline-block;
  animation: flatpickrFadeInDown 300ms cubic-bezier(0, 1, 0.5, 1);
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(102%);
}
.flatpickr-calendar.static.open {
  display: block;
}
.flatpickr-calendar.hasWeeks {
  width: auto;
}
.flatpickr-calendar.dateIsPicked.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px;
}
.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.rightMost:after {
  left: auto;
  right: 22px;
}
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}
.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}
.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
.flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 38px;
  line-height: 24px;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.flatpickr-prev-month,
.flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 14px;
  height: 16px;
  line-height: 16px;
}
.flatpickr-prev-month i,
.flatpickr-next-month i {
  position: relative;
}
.flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-next-month.flatpickr-prev-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  left: calc(2.07%);
  /*
        /*rtl:end:ignore*/
  /*
        */
}
/*
        /*rtl:begin:ignore*/
/*
        /*rtl:end:ignore*/
.flatpickr-prev-month.flatpickr-next-month,
.flatpickr-next-month.flatpickr-next-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  right: calc(2.07%);
  /*
        /*rtl:end:ignore*/
  /*
        */
}
/*
        /*rtl:begin:ignore*/
/*
        /*rtl:end:ignore*/
.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  color: #959ea9;
}
.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
  fill: #f64747;
}
.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  width: 14px;
}
.flatpickr-prev-month svg path,
.flatpickr-next-month svg path {
  transition: fill 0.1s;
  fill: inherit;
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.05);
  box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}
.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}
.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
  top: 33%;
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}
.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}
.numInputWrapper:hover span {
  opacity: 1;
}
.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  top: 9px;
  display: inline-block;
  text-align: center;
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 7px;
  padding: 0;
}
.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}
.flatpickr-current-month input.cur-year {
  background: transparent;
  box-sizing: border-box;
  color: inherit;
  cursor: default;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: initial;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}
.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
}
.flatpickr-days,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}
.flatpickr-days {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 315px;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
@media screen and (max-width: 350px) {
  .flatpickr-days {
    width: 230px;
  }
}
.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0;
  display: inline-block;
  position: relative;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}
.flatpickr-day.today {
  border-color: #959ea9;
}
.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  color: #fff;
  border-color: #569ff7;
}
.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}
.flatpickr-day.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  pointer-events: none;
}
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  color: rgba(0, 0, 0, 0.54);
  height: 27.333333333333332px;
  line-height: 24px;
  background: transparent;
  text-align: center;
  display: block;
  float: left;
  width: 14.28%;
  font-weight: bold;
  margin: 0;
  padding-top: 3.333333333333333px;
}
.rangeMode .flatpickr-day {
  margin-top: 1px;
}
.flatpickr-weekwrapper {
  display: inline-block;
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 1px 12px 0 12px;
  box-shadow: 1px 0 0 #e6e6e6;
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
}
.flatpickr-weekwrapper span.flatpickr-day {
  display: block;
  width: 100%;
  max-width: none;
}
.flatpickr-innerContainer {
  display: block;
  display: -ms-flexbox;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
}
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  box-sizing: border-box;
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  box-sizing: border-box;
  overflow: hidden;
  transition: height 0.33s cubic-bezier(0, 1, 0.5, 1);
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}
.flatpickr-time .numInputWrapper {
  -ms-flex: 1;
  flex: 1 1 0%;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
.flatpickr-time input {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  cursor: pointer;
  color: #393939;
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
}
.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}
.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  display: inline-block;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #f0f0f0;
}
.hasWeeks .flatpickr-days,
.hasTime .flatpickr-days {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.hasWeeks .flatpickr-days {
  border-left: 0;
}
@media all and (-ms-high-contrast: none) {
  .flatpickr-month {
    padding: 0;
  }
  .flatpickr-month svg {
    top: 0 !important;
  }
}
@keyframes flatpickrFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* ----//-------- Site structure, layouts --------//---- */
body {
  color: #3b3e45;
}
.box {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 25px;
  max-width: 1250px;
  min-width: 260px;
}
@media screen and (max-width: 768px) {
  .box {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #16222e;
  opacity: 0;
  height: 0;
  width: 0;
  z-index: 3000;
  transition: width 0s ease 0.3s, height 0s ease 0.3s;
}
.wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100%;
  position: relative;
}
.wrapper__inner {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
}
.container {
  padding-top: 31px;
  padding-bottom: 40px;
}
.container_main {
  padding-top: 35px;
}
.mb-little {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .mb-little {
    margin-bottom: 26px;
  }
}
.mb-sm {
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .mb-sm {
    margin-bottom: 30px;
  }
}
.mb-middle {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .mb-middle {
    margin-bottom: 34px;
  }
}
.mb-big {
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .mb-big {
    margin-bottom: 37px;
  }
}
.mb-large {
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .mb-large {
    margin-bottom: 45px;
  }
}
.grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -11px;
  margin-right: -11px;
}
.grid__cell {
  display: -ms-flexbox;
  display: flex;
  box-sizing: border-box;
  padding-left: 11px;
  padding-right: 11px;
}
.grid_social {
  -ms-flex-align: stretch;
      align-items: stretch;
}
.grid_social .grid__cell {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .grid_social .grid__cell {
    width: 100%;
  }
  .grid_social .grid__cell:nth-child(n+2) {
    margin-top: 36px;
  }
}
.grid_half {
  margin-bottom: 24px;
}
.grid_half .grid__cell {
  width: 50%;
}
@media screen and (max-width: 550px) {
  .grid_half .grid__cell {
    width: 100%;
  }
  .grid_half .grid__cell:nth-child(n+2) {
    margin-top: 24px;
  }
}
.grid_third .grid__cell {
  width: 33.333%;
}
@media screen and (max-width: 768px) {
  .grid_third .grid__cell {
    width: 50%;
  }
  .grid_third .grid__cell:nth-child(n+3) {
    margin-top: 24px;
  }
}
@media screen and (max-width: 480px) {
  .grid_third .grid__cell {
    width: 100%;
  }
  .grid_third .grid__cell:nth-child(n+2) {
    margin-top: 24px;
  }
}
.sep {
  display: -ms-flexbox;
  display: flex;
}
.sep__side {
  -ms-flex: 0 0 285px;
      flex: 0 0 285px;
}
.sep__base {
  width: calc(100% - 315px);
}
.sep__box {
  margin-bottom: 29px;
}
.sep__box:last-child {
  margin-bottom: 0;
}
.sep__content {
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 24px;
}
.sep_left .sep__side {
  margin-right: 30px;
}
.sep_right .sep__side {
  margin-left: 30px;
}
@media screen and (max-width: 909px) {
  .sep {
    display: block;
  }
  .sep__base {
    width: 100%;
  }
  .sep__base:after {
    content: "";
    display: table;
    clear: both;
  }
  .sep__side {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sep__box {
    box-sizing: border-box;
    width: 50%;
    padding-left: 14px;
    padding-right: 14px;
    margin-bottom: 0;
  }
  .sep__box:nth-child(n+3) {
    margin-top: 29px;
  }
  .sep_left .sep__side {
    margin-left: -14px;
    margin-right: -14px;
    margin-bottom: 40px;
  }
  .sep_right .sep__side {
    margin-left: -14px;
    margin-right: -14px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 640px) {
  .sep__box {
    width: 100%;
  }
  .sep__box:nth-child(n+2) {
    margin-top: 29px;
  }
}
.hr {
  margin-top: 44px;
  margin-bottom: 40px;
  display: block;
  height: 2px;
  background-color: #ebedf2;
  border: none;
}
@media screen and (max-width: 768px) {
  .hr {
    margin-top: 34px;
    margin-bottom: 28px;
  }
}
.icons {
  background-color: rgba(20, 90, 50, 0.3);
}
.icon {
  display: inline-block;
}
.icon_check_success {
  fill: #5cad78;
  width: 30px;
  height: 35px;
}
.icon_calendar {
  fill: #A7ABB8;
  width: 18px;
  height: 18px;
}
.icon_dropdown {
  fill: #FFF;
  width: 16px;
  height: 10px;
}
.icon_facebook {
  fill: #fff;
  width: 10px;
  height: 19px;
}
.icon_file1 {
  width: 36px;
  height: 47px;
}
.icon_file2 {
  width: 36px;
  height: 47px;
}
.icon_file3 {
  width: 36px;
  height: 47px;
}
.icon_help {
  width: 85px;
  height: 79px;
}
.icon_ico1 {
  width: 148px;
  height: 149px;
}
.icon_ico10 {
  width: 68px;
  height: 69px;
}
.icon_ico11 {
  width: 82px;
  height: 59px;
}
.icon_ico12 {
  width: 82px;
  height: 48px;
}
.icon_ico13 {
  width: 48px;
  height: 48px;
}
.icon_ico14 {
  width: 72px;
  height: 42px;
}
.icon_ico15 {
  width: 75px;
  height: 31px;
}
.icon_ico16 {
  width: 85px;
  height: 79px;
}
.icon_ico17 {
  width: 94px;
  height: 80px;
}
.icon_ico18 {
  width: 68px;
  height: 69px;
  fill: #6f80a8;
}
.icon_ico2 {
  width: 155px;
  height: 154px;
}
.icon_ico3 {
  width: 71px;
  height: 64px;
}
.icon_ico4 {
  width: 79px;
  height: 58px;
}
.icon_ico5 {
  width: 70px;
  height: 64px;
}
.icon_ico6 {
  width: 53px;
  height: 55px;
}
.icon_ico7 {
  width: 49px;
  height: 64px;
}
.icon_ico8 {
  width: 56px;
  height: 61px;
}
.icon_ico9 {
  width: 49px;
  height: 67px;
}
.icon_index_slider_left {
  width: 13px;
  height: 21px;
}
.icon_index_slider_right {
  width: 13px;
  height: 21px;
}
.icon_instagram {
  width: 19px;
  height: 19px;
}
.icon_instagram_bottom {
  width: 24px;
  height: 25px;
}
.icon_map-icon {
  width: 29px;
  height: 45px;
}
.icon_percent {
  width: 30px;
  height: 30px;
}
.icon_percent_big {
  width: 35px;
  height: 35px;
}
.icon_question_bottom {
  width: 27px;
  height: 35px;
}
.icon_right_category {
  width: 7px;
  height: 11px;
}
.icon_search {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.icon_search_reset {
  width: 13px;
  height: 13px;
}
.icon_search_del {
  width: 9px;
  height: 9px;
}
.icon_slider_arrow_left {
  width: 18px;
  height: 30px;
}
.icon_slider_arrow_right {
  width: 18px;
  height: 30px;
}
.icon_twitter {
  width: 21px;
  height: 17px;
  fill: #fff;
}
.icon_twitter_bottom {
  width: 27px;
  height: 22px;
  fill: #fff;
}
.icon_user {
  width: 38px;
  height: 41px;
  fill: #fff;
}
.icon_vk {
  width: 22px;
  height: 13px;
  fill: #fff;
}
.icon_youtube {
  width: 24px;
  height: 18px;
  fill: #fff;
}
.icon_websecret {
  width: 58px;
  height: 30px;
  fill: #979DA5;
}
.btn-row {
  margin-top: 27px;
}
.btn-row_sm {
  margin-top: 12px;
}
.btn-row_big {
  margin-top: 33px;
}
.btn-row_large {
  margin-top: 38px;
}
@media screen and (max-width: 768px) {
  .btn-row {
    margin-top: 22px;
  }
  .btn-row_sm {
    margin-top: 11px;
  }
  .btn-row_big {
    margin-top: 26px;
  }
  .btn-row_large {
    margin-top: 32px;
  }
}
.loader {
  display: -ms-flexbox;
  display: flex;
}
.loader__item {
  display: inline-block;
  width: 3px;
  height: 14px;
  border-radius: 3px;
  animation: loading 1s ease-in-out infinite;
  margin-left: 4px;
  background-color: rgba(0, 0, 0, 0.25);
}
.loader__item:nth-child(1) {
  animation-delay: 0;
}
.loader__item:nth-child(2) {
  animation-delay: 0.09s;
}
.loader__item:nth-child(3) {
  animation-delay: .18s;
}
.loader__item:nth-child(4) {
  animation-delay: .27s;
}
@keyframes loading {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1, 2);
  }
  40% {
    transform: scale(1);
  }
}
.btn {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 0;
  border: none;
  outline: 0;
  margin: 0;
  font-weight: normal;
  line-height: 1;
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  background-color: transparent;
  transition: box-shadow 0.1s ease, background-color 0.1s ease;
  /* loading */
}
.btn__text {
  border-bottom: 1px dotted #40558a;
}
.btn.btn_loading:hover,
.btn.btn_loading:active,
.btn.btn_loading:focus {
  cursor: default;
  color: transparent !important;
}
.btn_loading {
  position: relative;
  color: transparent !important;
  cursor: default;
  text-shadow: none;
}
.btn_loading .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn_type_simple {
  border-radius: 20px;
  font-size: 16px;
  line-height: 20px;
  background-color: #f8cd65;
  color: #313131;
  padding: 8px 19px 10px;
  box-shadow: 0 2px 7px 0 rgba(248, 205, 101, 0.28);
}
.btn_type_simple:hover {
  background-color: #fac951;
  box-shadow: 0 3px 10px 0 rgba(248, 205, 101, 0.41);
}
.btn_type_simple.btn_loading {
  background-color: #f8cd65;
  box-shadow: 0 2px 7px 0 rgba(248, 205, 101, 0.28);
}
.btn_type_simple-dark {
  border-radius: 20px;
  font-size: 16px;
  line-height: 20px;
  background-color: #f8cd65;
  color: #313131;
  padding: 8px 19px 10px;
  box-shadow: 0 2px 7px 0 rgba(71, 71, 71, 0.28);
}
.btn_type_simple-dark:hover {
  box-shadow: 0 3px 10px 0 rgba(71, 71, 71, 0.41);
}
.btn_type_simple-dark.btn_loading {
  box-shadow: 0 2px 7px 0 rgba(71, 71, 71, 0.28);
}
.btn_type_bright {
  border-radius: 10px;
  font-size: 16px;
  line-height: 20px;
  background-color: #dfeafa;
  color: #40558a;
  padding: 8px 19px 10px;
}
.btn_type_bright:hover {
  background-color: #d3e2f7;
}
.btn_type_bright.btn_loading {
  background-color: #dfeafa;
}
.btn_type_light {
  border: 2px solid #c9cbd2;
  border-radius: 20px;
  font-size: 16px;
  line-height: 20px;
  background-color: #fff;
  color: #696c74;
  padding: 6px 16px 8px;
  box-shadow: 0 2px 7px 0 rgba(50, 73, 118, 0.07);
}
.btn_type_light:hover {
  box-shadow: 0 3px 10px 0 rgba(50, 73, 118, 0.25);
}
.btn_type_light.btn_loading {
  box-shadow: 0 2px 7px 0 rgba(50, 73, 118, 0.07);
}
.btn_size_wide {
  width: 100%;
}
.poll {
  position: relative;
  border: 5px solid #f8cd65;
  padding: 43px 32px 32px;
  text-align: center;
}
.poll__title {
  color: #3b3e45;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: bold;
}
.poll__question {
  margin-top: 25px;
  font-weight: 500;
  font-size: 25px;
  line-height: 27px;
  color: #292c33;
  /*design*/
}
.poll__answers {
  margin-top: 31px;
}
.poll__btn {
  margin-top: 20px;
}
.poll__icon {
  border-radius: 50%;
  position: absolute;
  top: -28px;
  left: 50%;
  margin-left: -20px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
@media screen and (max-width: 768px) {
  .poll {
    text-align: left;
    padding: 40px 21px 32px;
  }
  .poll__btn {
    margin-top: 28px;
  }
  .poll__icon {
    left: 19px;
    margin-left: 0;
  }
  .poll__question {
    font-size: 22px;
    line-height: 26px;
  }
}
.cover {
  background-color: #ebf2fc;
  border-radius: 10px;
  padding: 26px 26px 30px;
}
.cover:after {
  content: '';
  display: table;
  clear: both;
}
@media screen and (max-width: 768px) {
  .cover {
    padding: 20px 20px 24px;
  }
}
.text-expand {
  height: 312px;
  padding-bottom: 38px;
  overflow: hidden;
  position: relative;
}
.text-expand:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  opacity: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 60%, #ffffff 100%);
  transition: opacity 0.5s ease,
					height 0.5s ease;
}
.text-expand__btn {
  text-decoration: none;
  display: inline;
  font-size: 16px;
  color: #40558a;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1px dotted #40558a;
  z-index: 1;
}
.text-expand__btn:hover {
  color: #455b94;
}
.text-expand__btn:focus {
  outline: none;
}
.text-expand_closed:after {
  opacity: 1;
  height: 150px;
}
.form {
  /* required field */
  /* error message */
  /* input fields */
  /* form layouts */
}
.form__row {
  margin-top: 26px;
}
.form__row:first-of-type {
  margin-top: 0;
}
.form__row_hidden {
  display: none;
}
.form__inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.form__inline_center {
  -ms-flex-pack: center;
      justify-content: center;
}
@media screen and (max-width: 768px) {
  .form__inline_center {
    display: block;
  }
}
.form__label {
  box-sizing: border-box;
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
  color: #3b3e45;
  display: block;
  margin-bottom: 11px;
}
.form__control {
  box-sizing: border-box;
  position: relative;
  max-width: 100%;
}
.form__grid {
  display: -ms-flexbox;
  display: flex;
}
.form__grid_1-2 .form__cell {
  width: 50%;
}
.form__grid_1-3 .form__cell {
  width: 33.333%;
}
.form__grid_big {
  margin-left: -13px;
  margin-right: -13px;
}
.form__grid_big .form__cell {
  padding-left: 13px;
  padding-right: 13px;
}
.form__grid_middle {
  margin-left: -11px;
  margin-right: -11px;
}
.form__grid_middle .form__cell {
  padding-left: 11px;
  padding-right: 11px;
}
.form__grid_small {
  margin-left: -7px;
  margin-right: -7px;
}
.form__grid_small .form__cell {
  padding-left: 7px;
  padding-right: 7px;
}
.form__cell {
  box-sizing: border-box;
}
.form__cell_datepicker {
  position: relative;
}
.form__cell_datepicker .form__input {
  position: relative;
  padding-right: 40px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIyOXB4IiBoZWlnaHQ9IjE4cHgiIHZpZXdCb3g9Ii0yLjUgLTEuNSAyOSAxOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAtMi41IC0xLjUgMjkgMTgiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cGF0aCBmaWxsPSIjQTdBQkI4IiBkPSJNMTIuNSwwLjVoLTJ2LTFoLTJ2MWgtNnYtMWgtMnYxaC0yYy0wLjU1MiwwLTEsMC40NDgtMSwxdjEzYzAsMC41NTIsMC40NDgsMSwxLDFoMTRjMC41NTIsMCwxLTAuNDQ4LDEtMQoJdi0xM0MxMy41LDAuOTQ4LDEzLjA1MiwwLjUsMTIuNSwwLjV6IE0tMC41LDIuNWgxdjFoMnYtMWg2djFoMnYtMWgxdjJoLTEyVjIuNXogTS0wLjUsMTMuNXYtN2gxMnY3SC0wLjV6Ii8+Cjwvc3ZnPgo=);
  background-position: right center;
}
.form__cell_date_from .form__input {
  padding-left: 30px;
}
.ln-en .form__cell_date_from .form__input {
  padding-left: 50px;
}
.form__cell_date_to .form__input {
  padding-left: 40px;
}
.form__item {
  margin-right: 33px;
  margin-bottom: 15px;
}
.form__item:last-child {
  margin-right: 0;
}
.form__btn {
  margin-top: 22px;
}
.form__required .form__label:after {
  content: '*';
  margin: -3px 1px 0 4px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #e73552;
}
.form__error .form__input,
.form__error .form__textarea,
.form__error .form__select {
  border-color: #f13131;
}
.form__error .form__input:focus,
.form__error .form__textarea:focus,
.form__error .form__select:focus {
  border-color: #f13131;
}
.form__error .form__error-message {
  display: block;
}
.form__error-message {
  width: 100%;
  display: none;
  color: #e73552;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 15px;
  padding-top: 5px;
  text-align: left;
}
.form__select,
.form__input,
.form__textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #c9cbd2;
  color: #3b3e45;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: normal;
  padding: 8px 10px;
  background-color: #fff;
  transition: border-color 0.1s linear;
  border-radius: 10px;
  box-shadow: inset 0 2px 2px 0 rgba(1, 1, 1, 0.11);
}
.form__select:focus,
.form__input:focus,
.form__textarea:focus {
  border-color: #b3b5bd;
  outline: none;
  z-index: 50;
}
.form__select:disabled,
.form__input:disabled,
.form__textarea:disabled,
.form__select_disabled,
.form__input_disabled,
.form__textarea_disabled {
  color: #989ca4;
  background-color: #f4f5f7;
}
.form__input,
.form__select {
  position: relative;
  display: block;
  margin: 0;
  height: 38px;
  line-height: 20px;
  z-index: 10;
}
.form__select {
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  z-index: 1;
  padding-left: 10px;
  padding-right: 41px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIyOXB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9Ii0yLjUgLTIuNSAyOSAxMCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAtMi41IC0yLjUgMjkgMTAiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cG9seWdvbiBmaWxsPSIjQTdBQkI4IiBwb2ludHM9IjEyLjUsLTAuMDIxIDExLjEyOSwtMS40NTMgNS41LDMuNTA3IC0wLjEyNSwtMS41IC0xLjUsMC4wMDQgNS4zMDksNi41IDUuNjkxLDYuNSAiLz4KPC9zdmc+Cg==);
  background-position: right center;
}
.form__select::-ms-expand {
  display: none;
}
.form__option {
  padding: 5px 9px;
}
.form__option:focus {
  outline: none;
}
.form__input::-webkit-input-placeholder,
.form__textarea::-webkit-input-placeholder {
  color: #666;
}
.form__input::-moz-placeholder,
.form__textarea::-moz-placeholder {
  color: #666;
}
.form__input:-ms-input-placeholder,
.form__textarea:-ms-input-placeholder {
  color: #666;
}
.form__input_search {
  padding-right: 42px;
}
.form__textarea {
  display: block;
  overflow: auto;
  margin: 0;
  resize: vertical;
  line-height: 20px;
  font-weight: 400;
}
.form__loading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 20px;
  margin-left: 3px;
}
.form__spinner {
  display: inline-block;
}
.form__note {
  margin-top: 11px;
  font-size: 14px;
  line-height: 18px;
  color: #7a7f8a;
}
.form__search {
  position: relative;
}
.form__submit {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  outline: 0;
  margin: 0;
  padding-left: 5px;
  padding-right: 10px;
  border: none;
  text-decoration: none;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 70;
  background-color: transparent;
  transition: color 0.05 linear;
}
.form__search-icon {
  fill: #a7abb8;
}
.form__part {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  margin-left: 3px;
  font-size: 16px;
  line-height: 22px;
  padding: 8px 10px;
  color: #989ca4;
  height: 38px;
  z-index: 200;
}
.form_type_search .form__select,
.form_type_search .form__input,
.form_type_search .form__textarea {
  border-color: #c9cbd2;
  background-color: #f5f6f9;
}
.form_type_search .form__select:focus,
.form_type_search .form__input:focus,
.form_type_search .form__textarea:focus {
  border-color: #b3b5bd;
}
.form_type_search .form__select:disabled,
.form_type_search .form__input:disabled,
.form_type_search .form__textarea:disabled,
.form_type_search .form__select_disabled,
.form_type_search .form__input_disabled,
.form_type_search .form__textarea_disabled {
  color: #989ca4;
  background-color: #f4f5f7;
}
.result {
  margin-top: 35px;
}
.result__mark {
  font-weight: bold;
}
.result__list {
  margin-top: 34px;
}
.result__item {
  padding-top: 30px;
  padding-bottom: 27px;
  border-bottom: 2px solid #ebedf2;
}
.result__item:first-child {
  padding-top: 0;
}
.result__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.result__link {
  text-decoration: none;
  color: #3b3e45;
  display: block;
}
.result__link:focus {
  outline: none;
}
.result__link:hover .result__title,
.result__link:hover .result__text {
  border-bottom-color: #767c8a;
}
.result__title {
  font-size: 18px;
  line-height: 24px;
}
.result__top {
  margin-top: 8px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.result__info {
  display: block;
  font-size: 14px;
  color: #989ca4;
  margin-right: 22px;
}
.result__info:last-child {
  margin-right: 0;
}
.result__content {
  margin-top: 8px;
}
.result__text {
  font-size: 16px;
  line-height: 24px;
}
.result__words {
  font-weight: bold;
}
.field {
  margin-top: 34px;
  max-width: 895px;
}
.message {
  padding-left: 40px;
  position: relative;
}
.message__icon {
  position: absolute;
  top: 0;
  left: 0;
}
.caption {
  font-size: 38px;
  line-height: 41px;
  font-weight: bold;
  margin-bottom: 24px;
}
.caption_main {
  margin-bottom: 33px;
}
@media screen and (max-width: 768px) {
  .caption {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 29px;
  }
  .caption_sm {
    margin-bottom: 21px;
  }
}
.title {
  font-size: 28px;
  line-height: 34px;
  font-weight: bold;
  margin-bottom: 27px;
}
.title_main {
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 22px;
    line-height: 28px;
  }
}
.inner-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}
.sub-title {
  text-transform: uppercase;
  font-size: 19px;
  line-height: 23px;
  font-weight: bold;
  letter-spacing: 0.11rem;
  margin-bottom: 26px;
}
.region {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: stretch;
      align-items: stretch;
  margin-left: -10px;
  margin-right: -10px;
}
.region_top {
  margin-bottom: 55px;
}
.region_contact {
  padding-top: 6px;
  margin-bottom: 37px;
}
.region__cell {
  display: -ms-flexbox;
  display: flex;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
  width: 12.5%;
}
.region__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  text-decoration: none;
  color: #3b3e45;
  background-color: #dfeafa;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 15px 19px;
  transform: translate3d(0, 0, 0);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.region__item:hover {
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 5px 7px 0 rgba(175, 191, 222, 0.23);
}
.region__item_state_active {
  background-color: #40558a;
}
.region__item_state_active .region__title {
  color: #fff;
}
.region__item_state_active .region__number {
  color: #a5b0cd;
}
.region__item_main .region__img:after {
  background-image: url(../images/sprite/sprite.png);
  background-position: 0px -909px;
  width: 42px;
  height: 60px;
}
.region__item_1 .region__img:after {
  background-image: url(../images/sprite/sprite.png);
  background-position: 0px -355px;
  width: 37px;
  height: 51px;
}
.region__item_2 .region__img:after {
  background-image: url(../images/sprite/sprite.png);
  background-position: 0px -298px;
  width: 57px;
  height: 51px;
}
.region__item_3 .region__img:after {
  background-image: url(../images/sprite/sprite.png);
  background-position: 0px -241px;
  width: 50px;
  height: 51px;
}
.region__item_4 .region__img:after {
  background-image: url(../images/sprite/sprite.png);
  background-position: 0px -471px;
  width: 57px;
  height: 53px;
}
.region__item_5 .region__img:after {
  background-image: url(../images/sprite/sprite.png);
  background-position: 0px -412px;
  width: 53px;
  height: 53px;
}
.region__item_6 .region__img:after {
  background-image: url(../images/sprite/sprite.png);
  background-position: 0px -135px;
  width: 56px;
  height: 46px;
}
.region__item_7 .region__img:after {
  background-image: url(../images/sprite/sprite.png);
  background-position: 0px -777px;
  width: 50px;
  height: 60px;
}
.region__img {
  position: relative;
  width: 60px;
  height: 60px;
}
.region__img:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-image: url("../images/sprite/sprite.png");
}
.region__container {
  margin-top: 4px;
}
.region__title {
  font-size: 16px;
  line-height: 20px;
}
.region__number {
  margin-top: 10px;
  font-size: 12px;
  color: #6e7890;
}
@media screen and (max-width: 1279px) {
  .region__cell {
    width: 25%;
  }
  .region__cell:nth-child(n+5) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .region_top {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 640px) {
  .region__cell {
    width: 50%;
  }
  .region__cell:nth-child(n+3) {
    margin-top: 20px;
  }
}
.date {
  display: block;
  font-size: 14px;
  color: #989ca4;
}
.article__header {
  margin-bottom: 31px;
}
.article__row {
  padding-top: 9px;
  margin-bottom: 43px;
}
.article__img {
  max-width: 100%;
}
.article__desc {
  font-weight: bold;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .article__header {
    margin-bottom: 28px;
  }
}
/* content */
.note {
  border-radius: 10px;
  font-size: 16px;
  line-height: 24px;
  background-color: #f3efe6;
  margin-bottom: 25px;
  padding: 15px 22px 16px 50px;
  position: relative;
}
.note:after {
  content: 'i';
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 14px;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  color: #2d2c2a;
  border: 1px solid #2d2c2a;
  border-radius: 50%;
  position: absolute;
  top: 18px;
  left: 21px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.table-wrap {
  overflow-x: auto;
}
.content {
  font-size: 16px;
  line-height: 24px;
  color: #3b3e45;
}
.content img {
  max-width: 100%;
  vertical-align: top;
  margin-bottom: 6px;
}
.content .img-left {
  float: left;
  margin-right: 30px;
  margin-bottom: 18px;
}
.content .img-right {
  float: right;
  margin-left: 30px;
  margin-bottom: 18px;
}
.content .img-center {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}
.content a:not(.docs__item) {
  color: #3b3e45;
  text-decoration: none;
  border-bottom: 1px solid #7d7e82;
}
.content a:not(.docs__item):hover {
  color: #474b54;
  border-bottom-color: #aaabad;
}
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  margin-top: 33px;
  margin-bottom: 25px;
}
.content h2:first-child,
.content h3:first-child,
.content h4:first-child,
.content h5:first-child,
.content h6:first-child {
  margin-top: 0;
}
.content h2 {
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
}
@media screen and (max-width: 768px) {
  .content h2 {
    font-size: 22px;
    line-height: 26px;
    font-weight: 500;
  }
}
.content h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .content h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
  }
}
.content h4 {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .content h4 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
  }
}
.content h5 {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .content h5 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
  }
}
.content h6 {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .content h6 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
  }
}
.content p {
  margin-bottom: 24px;
}
.content p:last-child,
.content ul:last-child,
.content ol:last-child,
.content blockquote:last-child {
  margin-bottom: 0;
}
.content ul,
.content ol {
  margin-bottom: 20px;
}
.content ul li,
.content ol li {
  position: relative;
  margin-bottom: 6px;
}
.content ul li:before,
.content ol li:before {
  content: '';
  position: absolute;
  color: #3b3e45;
}
.content ul li:last-child,
.content ol li:last-child {
  margin-bottom: 0;
}
.content ul {
  list-style: none outside none;
  padding-left: 31px;
}
.content ul li:before {
  top: 10px;
  left: -18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #3b3e45;
}
.content ol {
  list-style: none;
  counter-reset: ol-content;
  padding-left: 21px;
}
.content ol li {
  padding-left: 9px;
}
.content ol li:before {
  top: 0;
  right: 100%;
  content: counter(ol-content) '.';
  counter-increment: ol-content;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  text-align: right;
}
.content blockquote {
  position: relative;
  font-size: 18px;
  line-height: 26px;
  padding-left: 48px;
  margin-bottom: 25px;
}
.content blockquote:after {
  content: '“';
  position: absolute;
  top: 25px;
  left: 8px;
  font-size: 68px;
}
.content table {
  width: 100%;
  margin-bottom: 20px;
}
.content table tr {
  border-top: 1px solid #dcdfe3;
}
.content table th,
.content table td {
  vertical-align: top;
  padding: 0 17px;
  font-size: 16px;
  line-height: 22px;
  word-wrap: break-word;
}
.content table th {
  padding-top: 9px;
  padding-bottom: 11px;
}
.content table td {
  padding-top: 23px;
  padding-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .content .img-left {
    margin-right: 22px;
    margin-bottom: 19px;
  }
  .content .img-right {
    margin-left: 22px;
    margin-bottom: 19px;
  }
  .content .img-center {
    margin-bottom: 19px;
  }
}
@media screen and (max-width: 680px) {
  .content .img-left,
  .content .img-right,
  .content .img-center {
    float: none;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 23px;
    text-align: center;
  }
}
.map {
  position: relative;
}
.map__item {
  height: 470px;
  width: 100%;
}
.map__box {
  position: relative;
}
.map__container {
  position: absolute;
  right: 0;
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  height: 470px;
  -ms-flex-pack: end;
      justify-content: flex-end;
  transform: translateY(-100%);
  padding: 20px 25px;
  box-sizing: border-box;
}
.map__info {
  box-sizing: border-box;
  width: 280px;
  background-color: #fff;
  padding: 20px 22px 20px;
  border-bottom: 2px solid #d1d7e1;
  position: relative;
  z-index: 100;
}
.map__header {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}
.map__pic {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 19px;
}
.map__img {
  max-width: 100%;
}
.map__title {
  margin-top: -2px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  min-height: 60px;
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
  -ms-flex: 1;
      flex: 1;
}
.map__row {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 12px;
}
.map__row:last-child {
  margin-bottom: 0;
}
.map__row a {
  text-decoration: none;
  color: #40558a;
}
.map__row a:hover {
  border-bottom-color: #adaeb1;
}
.map__link {
  text-decoration: none;
  color: #40558a;
}
.map__link:hover {
  border-bottom-color: #adaeb1;
}
@media screen and (max-width: 768px) {
  .map__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 720px) {
  .map_main .map__item {
    height: 660px;
  }
  .map_main .map__container {
    height: auto;
    -ms-flex-pack: center;
        justify-content: center;
    left: 50%;
    right: auto;
    margin-left: -160px;
  }
  .map_contact .map__item {
    height: 350px;
  }
  .map_contact .map__container {
    position: relative;
    transform: none;
    height: auto;
    -ms-flex-pack: center;
        justify-content: center;
    left: 0;
    padding-top: 39px;
    padding-bottom: 0;
  }
  .map_contact .map__info {
    background-color: #f5f6f9;
  }
}
.svg-box {
  height: 0;
  width: 0;
  position: absolute;
  visibility: hidden;
}
.slider {
  position: relative;
}
.slider__item:focus {
  outline: none;
}
.slider__item:nth-child(n+2) {
  display: none;
}
.slider__box {
  display: -ms-flexbox;
  display: flex;
}
.slider__side {
  box-sizing: border-box;
  width: 284px;
  padding: 15px 20px 50px;
}
.slider__title {
  font-size: 19px;
  line-height: 23px;
  font-weight: 500;
  overflow: hidden;
}
.slider__link {
  color: #3b3e45;
  text-decoration: none;
  word-wrap: break-word;
}
.slider__link:focus {
  outline: none;
}
.slider__date {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #989ca4;
}
.slider__pic {
  display: block;
}
.slider__figure {
  padding-bottom: 43.4%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-color: #f4f5f7;
}
.slider_main {
  background-color: #f3efe6;
  margin-bottom: 44px;
}
.slider_main .slider__pic {
  width: calc(100% - 284px);
}
@media screen and (max-width: 960px) {
  .slider_main .slider__pic {
    width: 100%;
  }
}
.slider_main .slider__img {
  max-height: 100%;
}
.slider_main.slick-slider .slick-dots {
  right: 5px;
  bottom: 13px;
  padding: 9px 18px;
}
.slider_main.slick-slider .slick-dots li.slick-active button {
  background-color: #67686c;
}
.slider_main.slick-slider .slick-dots button {
  background-color: #a9a8a6;
}
.slider_main.slick-slider .slick-dots button:hover {
  background-color: #67686c;
}
.slider_main.slick-slider .slick-arrow {
  bottom: 20px;
}
.slider_main.slick-slider .slick-arrow:after {
  margin-top: -11px;
  margin-left: -7px;
  width: 13px;
  height: 21px;
}
.slider_main.slick-slider .slick-prev {
  right: 237px;
}
.slider_main.slick-slider .slick-prev:after {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxM3B4IiBoZWlnaHQ9IjIxcHgiIHZpZXdCb3g9IjAgMCAxMyAyMSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTMgMjEiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cG9seWdvbiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZmlsbD0iIzY3Njg2QyIgcG9pbnRzPSIxMi45OTgsMi43NzIgMTAuMjYxLDAuMDAxIDAsMTAuMzkxIDAuMTA3LDEwLjUgMCwxMC42MDkgCgkxMC4yNjEsMjAuOTk5IDEyLjk5OCwxOC4yMjggNS4zNjUsMTAuNSAiLz4KPC9zdmc+Cg==);
}
.slider_main.slick-slider .slick-next {
  right: 205px;
}
.slider_main.slick-slider .slick-next:after {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIxM3B4IiBoZWlnaHQ9IjIxcHgiIHZpZXdCb3g9IjAgMCAxMyAyMSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTMgMjEiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cG9seWdvbiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZmlsbD0iIzY3Njg2QyIgcG9pbnRzPSIwLDIuNzcyIDIuNzM2LDAuMDAxIDEyLjk5OCwxMC4zOTEgMTIuODksMTAuNSAKCTEyLjk5OCwxMC42MDkgMi43MzYsMjAuOTk5IDAsMTguMjI4IDcuNjMyLDEwLjUgIi8+Cjwvc3ZnPgo=);
}
@media screen and (max-width: 960px) {
  .slider_main.slick-slider .slick-dots {
    bottom: 18px;
  }
  .slider_main.slick-slider .slick-arrow {
    bottom: 26px;
    right: auto;
  }
  .slider_main.slick-slider .slick-prev {
    left: 13px;
  }
  .slider_main.slick-slider .slick-next {
    left: 45px;
  }
}
.slider_inner {
  background-color: #f4f5f7;
  margin-bottom: 34px;
}
.slider_inner .slider__item {
  text-align: center;
}
.slider_inner .slick-track {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.slider_inner.slick-slider .slick-dots {
  padding: 19px 18px 9px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.slider_inner.slick-slider .slick-dots li.slick-active button {
  background-color: #fff;
}
.slider_inner.slick-slider .slick-dots button {
  box-shadow: 0 1px 2px 0 rgba(60, 79, 126, 0.39);
  background-color: rgba(238, 241, 245, 0.8);
}
.slider_inner.slick-slider .slick-dots button:hover {
  background-color: #eef1f5;
}
.slider_inner.slick-slider .slick-arrow {
  border-radius: 50%;
  height: 42px;
  width: 42px;
  top: 50%;
  margin-top: -21px;
  border: 2px solid #fff;
  background-color: rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.slider_inner.slick-slider .slick-arrow:after {
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
}
.slider_inner.slick-slider .slick-prev {
  left: 21px;
}
.slider_inner.slick-slider .slick-prev:after {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIzOHB4IiBoZWlnaHQ9IjM4cHgiIHZpZXdCb3g9IjIgMiAzOCAzOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAyIDIgMzggMzgiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMTUuNjk1LDIwLjEzOWw3LjE5Mi03LjE5MmMwLjM5MS0wLjM5MSwxLjAyNC0wLjM5MSwxLjQxNCwwYzAuMzkxLDAuMzkxLDAuMzkxLDEuMDI0LDAsMS40MTRsLTYuNTA2LDYuNTA2CglsNi41MDYsNi41MDZjMC4zOTEsMC4zOTEsMC4zOTEsMS4wMjQsMCwxLjQxNGMtMC4zOTEsMC4zOTEtMS4wMjQsMC4zOTEtMS40MTQsMGwtNy4xOTItNy4xOTJjLTAuMjAxLTAuMjAxLTAuMjk0LTAuNDY1LTAuMjg5LTAuNzI4CglDMTUuNCwyMC42MDQsMTUuNDk0LDIwLjM0LDE1LjY5NSwyMC4xMzl6Ii8+Cjwvc3ZnPgo=);
}
.slider_inner.slick-slider .slick-next {
  right: 21px;
}
.slider_inner.slick-slider .slick-next:after {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIzOHB4IiBoZWlnaHQ9IjM4cHgiIHZpZXdCb3g9IjIgMiAzOCAzOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAyIDIgMzggMzgiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMjYuMzA1LDIwLjEzOWwtNy4xOTItNy4xOTJjLTAuMzkxLTAuMzkxLTEuMDI0LTAuMzkxLTEuNDE0LDBjLTAuMzkxLDAuMzkxLTAuMzkxLDEuMDI0LDAsMS40MTQKCWw2LjUwNiw2LjUwNmwtNi41MDYsNi41MDZjLTAuMzkxLDAuMzkxLTAuMzkxLDEuMDI0LDAsMS40MTRjMC4zOTEsMC4zOTEsMS4wMjQsMC4zOTEsMS40MTQsMGw3LjE5Mi03LjE5MgoJYzAuMjAxLTAuMjAxLDAuMjk0LTAuNDY1LDAuMjg5LTAuNzI4QzI2LjYsMjAuNjA0LDI2LjUwNiwyMC4zNCwyNi4zMDUsMjAuMTM5eiIvPgo8L3N2Zz4K);
}
.slider_state_ready {
  opacity: 1;
}
.slider_state_ready .slider__item:nth-child(n+2) {
  display: block;
}
@media screen and (max-width: 1279px) {
  .slider__title {
    font-size: 18px;
    line-height: 22px;
  }
}
@media screen and (max-width: 1199px) {
  .slider__title {
    font-size: 15px;
    line-height: 19px;
  }
}
@media screen and (max-width: 960px) {
  .slider__box {
    display: block;
  }
  .slider__side {
    width: 100%;
    padding-bottom: 75px;
  }
  .slider__title {
    font-size: 20px;
    line-height: 24px;
  }
}
@media screen and (max-width: 768px) {
  .slider_main {
    margin-bottom: 32px;
  }
  .slider_inner {
    margin-bottom: 29px;
  }
}
@media screen and (max-width: 480px) {
  .slider__side {
    padding-left: 17px;
    padding-right: 17px;
  }
  .slider_inner.slick-slider .slick-arrow {
    transform: scale(0.75);
  }
  .slider_inner.slick-slider .slick-dots {
    display: none!important;
  }
  .slider_inner.slick-slider .slick-prev {
    left: 12px;
  }
  .slider_inner.slick-slider .slick-next {
    right: 12px;
  }
}
.slick-slider img {
  display: inline-block;
  max-width: 100%;
}
.slick-slider .slick-arrow {
  position: absolute;
  width: 30px;
  height: 30px;
  z-index: 50;
  font-size: 0;
  border: none;
  border-radius: 0;
  padding: 0;
  background-color: transparent;
  transition: opacity 0.1s ease;
}
.slick-slider .slick-arrow:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-repeat: no-repeat;
}
.slick-slider .slick-arrow:focus {
  outline: none;
}
.slick-slider .slick-arrow.slick-disabled {
  opacity: 0.3;
}
.slick-slider .slick-arrow.slick-disabled:hover {
  cursor: default;
}
.slick-slider .slick-arrow:hover {
  cursor: pointer;
}
.slick-slider .slick-dots {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
}
.slick-slider .slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin-right: 9px;
  margin-bottom: 9px;
}
.slick-slider .slick-dots li:last-child {
  margin-right: 0;
}
.slick-slider .slick-dots button {
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  font-size: 0;
  margin: 0;
  outline: medium none;
  padding: 0;
  border-radius: 50%;
  width: 11px;
  height: 11px;
  transition: background-color 0.1s ease;
}
.table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.table__box_thead .table__tr {
  border-top: none;
}
.table__box_tbody .table__tr:last-child .table__td {
  padding-bottom: 0;
}
.table__tr {
  border-top: 1px solid #dcdfe3;
}
.table__th,
.table__td {
  vertical-align: top;
  padding: 0 17px;
  font-size: 16px;
  line-height: 22px;
  word-wrap: break-word;
}
.table__th {
  padding-top: 9px;
  padding-bottom: 11px;
  background-color: #f1f3f6;
}
.table__td {
  padding-top: 23px;
  padding-bottom: 24px;
}
.table__caption {
  display: none;
  font-weight: 500;
}
.table__link {
  color: #3b3e45;
  text-decoration: underline;
}
.table__info-link {
  color: #3b3e45;
  text-decoration: none;
  border-bottom: 1px dotted #3b3e45;
}
.table__person {
  display: -ms-flexbox;
  display: flex;
}
.table__pic {
  width: 90px;
  margin: 4px 17px 3px 0;
}
.table__img {
  max-width: 100%;
}
.table__icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 90px;
  height: 90px;
  background-color: #e5e8ec;
}
.table__name {
  -ms-flex: 1;
      flex: 1;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
}
.table__title {
  font-weight: normal;
}
.table a:not(.table__info-link) {
  color: #3b3e45;
  text-decoration: none;
  border-bottom: 1px solid #7d7e82;
}
.table a:not(.table__info-link):hover {
  color: #474b54;
  border-bottom-color: #aaabad;
}
@media screen and (min-width: 1025px) and (max-width: 1199px) {
  .table__th,
  .table__td {
    padding: 0 14px;
    font-size: 14px;
    line-height: 19px;
  }
  .table__th {
    padding-top: 9px;
    padding-bottom: 10px;
  }
  .table__td {
    padding-top: 18px;
    padding-bottom: 19px;
  }
  .table__pic {
    width: 70px;
    margin: 3px 14px 2px 0;
  }
  .table__icon {
    width: 70px;
    height: 70px;
  }
  .table__name {
    font-size: 14px;
    line-height: 19px;
  }
}
@media screen and (max-width: 1024px) {
  .table {
    display: block;
  }
  .table__box_thead {
    display: none;
  }
  .table__box_tbody {
    display: block;
  }
  .table__tr {
    display: block;
    padding-top: 15px;
    padding-bottom: 17px;
  }
  .table__th,
  .table__td {
    padding-left: 12px;
    padding-right: 12px;
  }
  .table__td {
    display: block;
    padding-top: 5px;
    padding-bottom: 6px;
  }
  .table__title {
    font-weight: bold;
    display: block;
  }
  .table__caption {
    display: block;
  }
}
.line {
  border-bottom: 2px solid #dcdfe3;
}
.line__item {
  padding: 23px 0 21px;
  border-bottom: 1px solid #dcdfe3;
}
.line__item:first-child {
  padding-top: 0;
}
.line__item:last-child {
  border-bottom: none;
}
.menu__item {
  display: inline-block;
  vertical-align: top;
  margin-right: 23px;
  margin-bottom: 8px;
}
.menu__item:last-child {
  margin-right: 0;
}
.menu__item_active .menu__link {
  color: #40558a;
  font-weight: bold;
  border-bottom-color: transparent;
}
.menu__item_active .menu__link:hover {
  color: #40558a;
  border-bottom-color: transparent;
}
.menu__link {
  font-size: 16px;
  line-height: 20px;
  color: #3b3e45;
  text-decoration: none;
  border-bottom: 1px solid #7d7e82;
}
.menu__link:hover {
  color: #474b54;
  border-bottom-color: #aaabad;
}
.category {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -14px;
  margin-right: -14px;
}
.category__column {
  box-sizing: border-box;
  padding-left: 14px;
  padding-right: 14px;
}
.category__item {
  margin-bottom: 25px;
}
.category__link {
  text-decoration: none;
  color: #3b3e45;
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  word-wrap: break-word;
}
@media screen and (min-width: 1200px) {
  .category[data-columns]::before {
    content: '4 .category__column';
  }
  .category__column {
    width: 25%;
  }
}
@media screen and (min-width: 961px) and (max-width: 1199px) {
  .category[data-columns]::before {
    content: '3 .category__column';
  }
  .category__column {
    width: 33.333%;
  }
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .category[data-columns]::before {
    content: '2 .category__column';
  }
  .category__column {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .category[data-columns]::before {
    content: '1 .category__column';
  }
  .category__column {
    width: 100%;
  }
}
.subcategory {
  margin-top: 6px;
}
.subcategory__item {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 8px;
}
.subcategory__item:last-child {
  margin-bottom: 0;
}
.subcategory__link {
  color: #3b3e45;
  text-decoration: none;
  border-bottom: 1px solid #7d7e82;
}
.subcategory__link:hover {
  color: #474b54;
  border-bottom-color: #aaabad;
}
.submenu {
  margin-top: 14px;
  padding-left: 30px;
  padding-bottom: 9px;
}
.submenu__item {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 10px;
  position: relative;
}
.submenu__item:after {
  content: '';
  position: absolute;
  top: 3px;
  left: -19px;
  width: 7px;
  height: 11px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSI3cHgiIGhlaWdodD0iMTFweCIgdmlld0JveD0iMCAwIDcgMTEiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDcgMTEiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cG9seWdvbiBmaWxsPSIjM0IzRTQ1IiBwb2ludHM9IjcsNS40NzQgMS40NjEsMCAwLDEuNDQzIDQuMTA1LDUuNSAwLDkuNTU3IDEuNDYxLDExIDcsNS41MjYgNi45NzQsNS41ICIvPgo8L3N2Zz4K);
}
.submenu__item:last-child {
  margin-bottom: 0;
}
.submenu__link {
  color: #3b3e45;
  text-decoration: none;
  border-bottom: 1px solid #7d7e82;
}
.submenu__link:hover {
  color: #474b54;
  border-bottom-color: #aaabad;
}
.list__item {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 8px;
}
.list__item:last-child {
  margin-bottom: 0;
}
.list__date {
  margin-bottom: 6px;
}
.list__link {
  color: #3b3e45;
  text-decoration: none;
  border-bottom-width: 1px;
  border-bottom-color: #7d7e82;
}
.list__link:hover {
  color: #474b54;
  border-bottom-color: #aaabad;
}
.list_line .list__link {
  border-bottom-style: solid;
}
.list_dotted .list__item {
  margin-bottom: 10px;
}
.list_dotted .list__item:last-child {
  margin-bottom: 0;
}
.list_dotted .list__link {
  border-bottom-style: dotted;
}
.list_time .list__item {
  margin-bottom: 25px;
}
.list_time .list__item:last-child {
  margin-bottom: 0;
}
.list_links {
  padding-left: 30px;
}
.list_links .list__item {
  position: relative;
  line-height: 24px;
  margin-bottom: 9px;
}
.list_links .list__item:after {
  content: '';
  position: absolute;
  top: 7px;
  left: -18px;
  width: 7px;
  height: 11px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSI3cHgiIGhlaWdodD0iMTFweCIgdmlld0JveD0iMCAwIDcgMTEiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDcgMTEiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cG9seWdvbiBmaWxsPSIjM0IzRTQ1IiBwb2ludHM9IjcsNS40NzQgMS40NjEsMCAwLDEuNDQzIDQuMTA1LDUuNSAwLDkuNTU3IDEuNDYxLDExIDcsNS41MjYgNi45NzQsNS41ICIvPgo8L3N2Zz4K);
}
.list_links .list__item:last-child {
  margin-bottom: 0;
}
.link {
  color: #3b3e45;
  text-decoration: none;
  border-bottom: 1px solid #7d7e82;
}
.link:hover {
  color: #474b54;
  border-bottom-color: #aaabad;
}
.filter {
  margin-bottom: 43px;
}
.filter__search {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.filter__base {
  -ms-flex: 1;
      flex: 1;
  position: relative;
}
.filter__btn {
  padding-left: 14px;
}
.filter__details {
  display: none;
}
.filter__details_tags {
  margin-bottom: 34px;
}
.filter__details_data {
  margin-top: 14px;
}
.filter__grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}
.filter__cell {
  display: -ms-flexbox;
  display: flex;
  box-sizing: border-box;
  padding-left: 8px;
  padding-right: 8px;
  width: 33.333%;
}
@media screen and (min-width: 910px) and (max-width: 1023px) {
  .filter__cell {
    width: 50%;
  }
  .filter__cell_wide {
    margin-top: 14px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .filter {
    margin-bottom: 34px;
  }
  .filter__cell {
    width: 50%;
  }
  .filter__cell_wide {
    margin-top: 14px;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .filter {
    margin-bottom: 32px;
  }
  .filter__cell {
    margin-top: 14px;
    width: 100%;
  }
  .filter__cell:first-child {
    margin-top: 0;
  }
  .filter__cell_wide {
    margin-top: 14px;
    width: 100%;
  }
  .filter__search {
    display: block;
  }
  .filter__base {
    width: 100%;
  }
  .filter__btn {
    padding-left: 0;
    width: 100%;
    margin-top: 14px;
  }
  .filter__btn .btn {
    width: 100%;
  }
}
.social-bar {
  padding: 18px 0 27px 25px;
  width: 100%;
  background-color: #f4f4f4;
  box-sizing: border-box;
}
.social-bar__header {
  display: -ms-flexbox;
  display: flex;
}
.social-bar__icon {
  margin-right: 11px;
  fill: #1da1f2;
}
.social-bar__info {
  margin-top: 20px;
  font-size: 14px;
  color: #292c33;
}
.social-bar__link {
  text-decoration: none;
  color: #292c33;
  border-bottom: 1px solid transparent;
}
.social-bar__link:hover {
  border-bottom-color: #adaeb1;
}
.social-bar__title {
  -ms-flex: 1;
      flex: 1;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #292c33;
}
.social-bar__inline {
  display: inline;
  border-bottom: 1px solid transparent;
}
.social-bar__text {
  margin-top: 21px;
  font-size: 19px;
  line-height: 26px;
  color: #292c33;
}
.social-bar__text a {
  word-wrap: break-word;
  color: #3b3e45;
  text-decoration: none;
  border-bottom: 1px solid #7d7e82;
}
.social-bar__text a:hover {
  color: #474b54;
  border-bottom-color: #aaabad;
}
.social-bar__box {
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
  color: #292c33;
  position: relative;
}
.social-bar__box:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  background-color: #fff;
  transition: opacity 0.15s ease;
}
.social-bar__box:hover:after {
  opacity: 0.1;
}
.social-bar__item {
  display: block;
  margin-right: 8px;
}
.social-bar__figure {
  overflow: hidden;
  width: 101px;
  height: 101px;
}
.social-bar__img {
  max-width: 100%;
}
.social-bar__caption {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-decoration: none;
}
.social-bar__caption:hover .social-bar__inline {
  border-bottom-color: #adaeb1;
}
.social-bar_twitter {
  padding-right: 25px;
  background-color: #f3faff;
}
.social-bar_instagram {
  background-image: linear-gradient(to top, #ffdee7 0%, #fff0e5 100%);
}
@media screen and (max-width: 480px) {
  .social-bar__item {
    margin-right: 9px;
  }
  .social-bar__figure {
    width: 70px;
    height: 70px;
  }
  .social-bar_twitter {
    padding-bottom: 22px;
  }
}
.docs__item {
  text-decoration: none;
  color: #3b3e45;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  margin-bottom: 28px;
}
.docs__item:last-child {
  margin-bottom: 0;
}
.docs__item:hover .docs__title {
  color: #474b54;
  border-bottom-color: #aaabad;
}
.docs__icon {
  width: 37px;
  margin-right: 11px;
  position: relative;
}
.docs__type {
  color: #fff;
  font-size: 14px;
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}
.docs__container {
  -ms-flex: 1;
      flex: 1;
}
.docs__title {
  display: inline;
  font-size: 16px;
  line-height: 24px;
  color: #3b3e45;
  text-decoration: none;
  border-bottom: 1px solid #7d7e82;
}
.docs__size {
  margin-top: 8px;
  font-size: 14px;
  color: #989ca4;
}
.sites {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fff;
  border-radius: 3px;
  padding: 4px 10px 8px;
}
.sites__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-decoration: none;
  color: #5a6069;
  box-sizing: border-box;
  padding: 10px;
  width: 16.666%;
  min-height: 78px;
}
.sites__item_1 .sites__inner {
  padding-left: 62px;
}
.sites__item_1 .sites__inner:after {
  background-image: url(../images/sprite/sprite.png);
  background-position: 0px -187px;
  width: 48px;
  height: 48px;
}
.sites__item_2 .sites__inner {
  padding-left: 57px;
}
.sites__item_2 .sites__inner:after {
  background-image: url(../images/sprite/sprite.png);
  background-position: 0px -530px;
  width: 47px;
  height: 54px;
}
.sites__item_3 .sites__inner {
  padding-left: 50px;
}
.sites__item_3 .sites__inner:after {
  background-image: url(../images/sprite/sprite.png);
  background-position: 0px -975px;
  width: 38px;
  height: 64px;
}
.sites__item_4 .sites__inner {
  padding-left: 50px;
}
.sites__item_4 .sites__inner:after {
  background-image: url(../images/sprite/sprite.png);
  background-position: 0px -590px;
  width: 39px;
  height: 54px;
}
.sites__item_5 .sites__inner {
  padding-left: 54px;
}
.sites__item_5 .sites__inner:after {
  background-image: url(../images/sprite/sprite.png);
  background-position: 0px -843px;
  width: 42px;
  height: 60px;
}
.sites__item_6 .sites__inner {
  padding-left: 62px;
}
.sites__item_6 .sites__inner:after {
  background-image: url(../images/sprite/sprite.png);
  background-position: 0px -650px;
  width: 52px;
  height: 57px;
}
.sites__inner {
  font-size: 12px;
  line-height: 14px;
  color: #5a6069;
  position: relative;
}
.sites__inner:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-image: url("../images/sprite/sprite.png");
}
.sites__title {
  border-bottom: 1px solid transparent;
}
@media screen and (max-width: 1279px) {
  .sites__item {
    width: 33.333%;
  }
}
@media screen and (max-width: 768px) {
  .sites__item {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .sites__item {
    width: 100%;
  }
}
.copyright {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.copyright__icon {
  display: block;
  background-image: url("../images/logo/newLogo.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 26px;
  height: 33px;
  filter: grayscale(100%);
  margin-right: 9px;
}
.copyright__text {
  -ms-flex: 1;
      flex: 1;
  font-size: 14px;
  line-height: 18px;
  font-weight: normal;
  color: #989ca4;
}
.dev {
  white-space: nowrap;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  min-height: 30px;
  text-decoration: none;
  margin-left: auto;
}
.dev__title,
.dev__logo {
  font-family: 'Roboto', sans-serif;
}
.dev__title {
  color: #989ca4;
  text-decoration: none;
  font-size: 14px;
}
.dev__logo {
  display: inline-block;
  margin-left: 5px;
}
.dev__icon {
  transition: filter 0.15s ease;
}
.dev:hover .dev__icon {
  filter: contrast(20%);
}
@media screen and (max-width: 768px) {
  .dev {
    margin-top: 29px;
  }
}
.search__inner {
  z-index: 100;
  transform: translate3d(0, 0, 0);
  opacity: 0.99;
}
.header__row .btn_type_simple-dark {
  z-index: 100;
  transform: translate3d(0, 0, 0);
  opacity: 0.99;
}

.slider_inner {
  background: none;
}


@media (min-width: 1024px) {
  .nav__list {
  display: block;
}

.nav__item {
  display: inline-block;
}
.nav__item {
    margin-right: 15px;
}

.nav__link {
    font-size: 13px;
    line-height: 15px; 
  }
}

@media {max-width}

/*.header {
    height: 225px;
    background-size: contain !important;
}

.nav__link {
    white-space: nowrap;
    padding-top: 15px;
    padding-bottom: 15px;
}*/

.nav {
    max-width: 100%;
}



  @media (max-width: 1240px) and (min-width: 1024px){
    .nav__item {
      margin-right: 10px;
  }
  .nav__link {
    font-size: 12px;
}
}

@media (max-width: 1023px){
  .header__coat-of-arms {
    margin-left: 0 !important;
    margin-top: 15px;
}
}

  @media (max-width: 620px){
    .main-projects-elem {
      padding-right: 0;
    }
  }

  #main-projects .slick-default .slick-prev, 
  #main-projects .slick-default .slick-next {
    top: -37px;
  }

  #main-projects .slick-default .slick-prev {
    right: 20px!important;
    left: auto!important;
  }

  #main-projects .slick-default .slick-next {
    right: -5px!important;
}

@media (max-width: 400px) {
    #main-projects .slick-list.draggable {
      max-width: 100%!important;
   }
}


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

.box .wrap .colinfwrap {
    width: 14%;
    float: none;
    box-sizing: border-box;
    display: flex;
}

@media (max-width: 1279px){
  .box .wrap .colinfwrap {
      width: 25%;
  }
  .box .wrap .colinfwrap .wrapcolinf {
      width: 100%;
  }
  .box .wrap {
    justify-content: center;
  }
}

@media (max-width: 700px){
  .box .wrap .colinfwrap {
      width: 50%;
  }
}

@media (max-width: 400px){
  .box .wrap .colinfwrap {
      width: 100%;
  }
}

.colinfwrap img {
    max-height: 45px;
}