@font-face {
  font-family: "PF Centro Slab Pro";
  src: url("/fonts/PFCentroSlabPro-Regular.woff2") format("woff2"),
    url("/fonts/PFCentroSlabPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("/fonts/MuseoSansRegular.eot");
  src: url("/fonts/MuseoSansRegular.eot?#iefix") format("embedded-opentype"),
    url("/fonts/MuseoSansRegular.woff") format("woff"),
    url("/fonts/MuseoSansRegular.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("/fonts/MuseoSansBold.eot");
  src: url("/fonts/MuseoSansBold.eot?#iefix") format("embedded-opentype"),
    url("/fonts/MuseoSansBold.woff") format("woff"),
    url("/fonts/MuseoSansBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("/fonts/MuseoSansItalic.eot");
  src: url("/fonts/MuseoSansItalic.eot?#iefix") format("embedded-opentype"),
    url("/fonts/MuseoSansItalic.woff") format("woff"),
    url("/fonts/MuseoSansItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 300;
}
@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("/fonts/MuseoSansLight.eot");
  src: url("/fonts/MuseoSansLight.eot?#iefix") format("embedded-opentype"),
    url("/fonts/MuseoSansLight.woff") format("woff"),
    url("/fonts/MuseoSansLight.ttf") format("truetype");
  font-style: normal;
  font-weight: 100;
}
@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("/fonts/MuseoSansMedium.eot");
  src: url("/fonts/MuseoSansMedium.eot?#iefix") format("embedded-opentype"),
    url("/fonts/MuseoSansMedium.woff") format("woff"),
    url("/fonts/MuseoSansMedium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("/fonts/MuseoSansBlack.eot");
  src: url("/fonts/MuseoSansBlack.eot?#iefix") format("embedded-opentype"),
    url("/fonts/MuseoSansBlack.woff") format("woff"),
    url("/fonts/MuseoSansBlack.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
}
@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("/fonts/MuseoSansBoldItalic.eot");
  src: url("/fonts/MuseoSansBoldItalic.eot?#iefix") format("embedded-opentype"),
    url("/fonts/MuseoSansBoldItalic.woff") format("woff"),
    url("/fonts/MuseoSansBoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 700;
}
@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("/fonts/MuseoSansMediumItalic.eot");
  src: url("/fonts/MuseoSansMediumItalic.eot?#iefix")
      format("embedded-opentype"),
    url("/fonts/MuseoSansMediumItalic.woff") format("woff"),
    url("/fonts/MuseoSansMediumItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 500;
}
@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("/fonts/MuseoSansLightItalic.eot");
  src: url("/fonts/MuseoSansLightItalic.eot?#iefix") format("embedded-opentype"),
    url("/fonts/MuseoSansLightItalic.woff") format("woff"),
    url("/fonts/MuseoSansLightItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 100;
}
@font-face {
  font-family: "Museo Sans Cyrl";
  src: url("/fonts/MuseoSansBlackItalic.eot");
  src: url("/fonts/MuseoSansBlackItalic.eot?#iefix") format("embedded-opentype"),
    url("/fonts/MuseoSansBlackItalic.woff") format("woff"),
    url("/fonts/MuseoSansBlackItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 900;
}


/* Скроллбар */
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
*::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #02698e;
}
*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #007ba7;
}
*::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}
*::-webkit-scrollbar-thumb:active {
  background: rgba(0, 0, 0, 0.9);
}

body {
  font-family: "PF Centro Slab Pro";
  font-weight: normal;
}
h1 {
  font-size: 14px;
  color: #fff;
  padding: 5px 0 5px;
}
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*Now the CSS*/
* {
  margin: 0;
  padding: 0;
}

.tree ul {
  padding-top: 20px;
  position: relative;

  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

.tree li {
  float: left;
  text-align: center;
  list-style-type: none;
  position: relative;
  padding: 20px 5px 0 5px;

  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

/*We will use ::before and ::after to draw the connectors*/

.tree li::before,
.tree li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  border-top: 1px solid #ccc;
  width: 50%;
  height: 20px;
}
.tree li::after {
  right: auto;
  left: 50%;
  border-left: 1px solid #ccc;
}

/*We need to remove left-right connectors from elements without 
any siblings*/
.tree li:only-child::after,
.tree li:only-child::before {
  display: none;
}

/*Remove space from the top of single children*/
.tree li:only-child {
  padding-top: 0;
}

/*Remove left connector from first child and 
right connector from last child*/
.tree li:first-child::before,
.tree li:last-child::after {
  border: 0 none;
}
/*Adding back the vertical connector to the last nodes*/
.tree li:last-child::before {
  border-right: 1px solid #ccc;
  border-radius: 0 5px 0 0;
  -webkit-border-radius: 0 5px 0 0;
  -moz-border-radius: 0 5px 0 0;
}
.tree li:first-child::after {
  border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
}

/*Time to add downward connectors from parents*/
.tree ul ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-left: 1px solid #ccc;
  width: 0;
  height: 20px;
}

.tree li a {
  border: 1px solid #ccc;
  padding: 15px 10px;
  text-decoration: none;
  color: #666;
  font-family: arial, verdana, tahoma;
  font-size: 13px;
  display: inline-block;

  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;

  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

/*Time for some hover effects*/
/*We will apply the hover effect the the lineage of the element also*/
.tree li a:hover,
.tree li a:hover + ul li a {
  background: #007ba7;
  color: #000;
  border: 1px solid #007ba7;
}
/*Connector styles on hover*/
.tree li a:hover + ul li::after,
.tree li a:hover + ul li::before,
.tree li a:hover + ul::before,
.tree li a:hover + ul ul::before {
  border-color: #007ba7;
}

.contenttree {
  width: 100%;
  overflow-x: scroll;
}
.tree {
  width: 1600px;
  overflow: auto;
  padding: 30px 0 30px 0;
}

/* Убираем отступ справа */
.r0 {
  padding-right: 0;
}
/* Кастомные отступы по краям */
.indent {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

/* 9 мая
.header-top .indent{background : url(../img/x23-february--left.png) left center no-repeat, url(../img/x23-february--right.png) right center no-repeat;}
.left-sidebar >.indent{background: transparent url(../img/georgievskaya-lentochka.png) no-repeat left top;}
.postcontentmain h1,.postcontentmain p {width:100% !important}
*/

.show-more {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.show-more:hover a {
  color: #fff;
  text-decoration: none;
  background: #008b8b; /* Old browsers */
  background: -moz-linear-gradient(
    top,
    #008b8b 2%,
    #007ba7 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #008b8b 2%,
    #007ba7 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #008b8b 2%,
    #007ba7 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#008b8b', endColorstr='#007ba7',GradientType=0 ); /* IE6-9 */
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.showMore__button {
  height: 40px;
  font-size: 19px;
  line-height: 27px;
  background: #02698e;
  padding: 5px 26px 5px 16px;
  color: #fff;
  float: left;
}
.showMore__button2 {
  height: 40px;
  line-height: 27px;
  background: #02698e;
  padding: 5px;
  color: #fff;
  float: left;
  border-left: solid 1px #29b1b1;
}
.show-more .fa {
  font-size: 21px;
  padding: 5px;
}

/* ~~~~~~~~~~~~~~~~~~~~~
 # Левый раздел
 * ~~~~~~~~~~~~~~~~~~~ */
.leftSection {
  width: 230px;
  height: 100vh;
  position: fixed;
  z-index: 7;
  padding: 0;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  background: #007ba7;
}

/* Скроллбар меню */
.leftSection::-webkit-scrollbar {
  width: 0;
  height: 6px;
}
.leftSection::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #007ba7;
}
.leftSection::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #007ba7;
}
.leftSection::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}
.leftSection::-webkit-scrollbar-thumb:active {
  background: rgba(0, 0, 0, 0.9);
}

.search-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #35424d;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.search-top__form {
  width: 87%;
}
.leftSection input {
  width: 100%;
  height: 50px;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 12px;
  border: none;
  color: #efefef;
  background: #35424d;
  text-transform: uppercase;
}
.leftSection input[type="search"]::-webkit-input-placeholder {
  color: #efefef;
}
.leftSection input[type="search"]:-ms-input-placeholder {
  color: #efefef;
}
.leftSection input[type="search"]::-ms-input-placeholder {
  color: #efefef;
}
.leftSection input[type="search"]::placeholder {
  color: #efefef;
}
.leftSection i {
  color: #fff;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}
.logo__img {
  width: 92%;
}
.logo__link {
  padding: 8px 0 5px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # Левое меню
 * ~~~~~~~~~~~~~~~~~~~~~~~ */
.left-nav {
  position: relative;
  z-index: 1;
}
.left-nav__item {
  position: inherit;
  width: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.left-nav__item:hover {
  background: #02698e;
}
.left-nav__link {
  font-size: 15px;
  line-height: 27px;
  display: inline-block;
  width: 100%;
  padding: 10px 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
  border-top: 1px solid #02698e;
}
.left-nav__item:hover .left-nav__link {
  color: #fff;
}

.left-hover {
  width: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  left: 230px;
  -webkit-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
  background: #02698e;
  overflow: hidden;
  z-index: 999;
}
.left-hover__item {
  position: inherit;
  width: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.left-hover__item:hover {
  background: #11736d;
}
.left-hover__item:hover a {
  color: #fff;
  text-decoration: none;
}
.left-hover__link {
  font-size: 15px;
  display: inline-block;
  width: 100%;
  padding: 5px 15px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
  border-top: 1px solid #02698e;
}
.left-hover__link:last-child {
  border-top: 1px solid #02698e;
  border-bottom: 1px solid #02698e;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # Социальные сети
 * ~~~~~~~~~~~~~~~~~~~~~~~ */
.left-social__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: solid 1px #02698e;
  border-bottom: solid 1px #02698e;
}
.left-social__item {
  width: 25%;
  height: 47px;
  line-height: 48px;
  font-size: 27px;
  text-align: center;
  border-right: solid 1px #02698e;
}
.left-social__item:last-child {
  border-right: none;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # Копирайт
 * ~~~~~~~~~~~~~~~~~~~~~~~ */
.copyright {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 12px;
  font-weight: 100;
  line-height: 16px;
  text-align: center;
  padding: 20px 17px;
  color: #fff;
}
.copyright-line {
  display: block;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # Основной раздел
 * ~~~~~~~~~~~~~~~~~~~~~~~ */
.page {
  left: 0;
  float: right;
  width: calc(100% - 230px);
  -webkit-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.header-top {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  color: #d2d2d2;
  background: #202931;
}
.header-top .fa-tel {
  font-size: 11px;
  padding: 3px 4px;
  position: relative;
  top: -2px;
  border: solid 1px #fff;
  border-radius: 20px;
}
.header-bottom {
  height: 50px;
  line-height: 33px;
  background: #007ba7;
}
.mobHeader,
.mobSearchTop {
  display: none;
}

.main-col {
  width: 100%;
}
.main-col__potomok {
  width: calc(100% - 230px);
}

.title-page {
  text-transform: uppercase;
  font-weight: bold;
  margin: 0 0 10px;
  font-family: "Museo Sans Cyrl";
  font-weight: 900;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # Верхняя навигация сайта
 * ~~~~~~~~~~~~~~~~~~~~~~~ */
.topMenu-list {
  height: 50px;
  line-height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}
.topMenu-list__item {
  width: 100%;
  height: 100%;
  text-align: center;
  border-right: solid 1px #02698e;
  position: relative;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.topMenu-list__item:first-child {
  border-left: solid 1px #02698e;
}
.topMenu-list__item:hover {
  background: #02698e;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  color: #fff;
}
.topMenu-list__item:hover a {
  color: #fff;
}
.topMenu-item__link {
  font-size: 16px;
  line-height: 31px;
  padding: 10px 0;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-decoration: none;
}

.topMenuMobile {
  width: 220px;
  position: relative;
  top: 23px;
  left: 5px;
  z-index: 2;
}
.topMenuMobile-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background: #007ba7;
  color: #fff;
  padding: 5px 10px;
}
.topMenuMobile-list__item {
  width: 100%;
  height: 40px;
  position: relative;
  z-index: 3;
}

.topMenuMobile-item__link {
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5px 10px;
  border-bottom: solid 1px #119c92;
}

/*мобильное */
.topMenu-listmobile {
  height: 50px;
  line-height: 32px;
  display: block;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}
.mm-listitem .mm-btn_next:hover {
  color: #fff;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # Слайдер
 * ~~~~~~~~~~~~~~~~~~~~~~~ */
.slider__img {
  height: 610px;
  -o-object-fit: cover;
  object-fit: cover;
}
.slider-body__meta {
  color: #fff;
  position: absolute;
  top: 20px;
  left: 20px;
  text-shadow: 0 0 20px #000;
}
.slider-body__meta p {
  padding: 0;
  margin: 0;
  line-height: 19px;
}
.slider-body__date {
  font-size: 24px;
  margin-bottom: 7px !important;
}
.slider-body__title {
  color: #fff;
  width: 60%;
  font-size: 21px;
  padding: 5px 10px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(85%, #007ba7),
    to(#ffffff00)
  );
  background: -webkit-linear-gradient(left, #007ba7 85%, #ffffff00 100%);
  background: -o-linear-gradient(left, #007ba7 85%, #ffffff00 100%);
  background: linear-gradient(90deg, #007ba7 85%, #ffffff00 100%);
  position: absolute;
  left: 20px;
  bottom: 80px;
  font-family: "Museo Sans Cyrl";
  font-weight: 900;
}

.owl-nav {
  width: 97px;
  position: absolute;
  color: #fff;
  right: 20px;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.owl-nav button {
  width: 49.5% !important;
  height: 40px;
  line-height: 3px !important;
  background: #007ba7 !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 !important;
  border-radius: 0 !important;
  outline: none;
}
.owl-nav span {
  font-size: 64px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # Новости
 * ~~~~~~~~~~~~~~~~~~~~~~~ */
.news {
  margin-top: 15px;
}
.news-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 15px;
}
.news-body__item {
  padding-top: 10px;
  width: 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.news-body__item img {
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 365px;
}
.news-item__date {
  margin: 3px 0;
}
.news-item__title {
  font-size: 17px;
  color: #000;
  margin-top: 8px;
  font-weight: bolder;
}
.news-item__title a {
  color: #000;
  text-decoration: none;
  font-family: "Museo Sans Cyrl";
  font-weight: 900;
}
.news-item__desc {
  color: #000;
  font-size: 16px;
  font-family: "Museo Sans Cyrl";
}
.news ul {
  border-bottom: solid 3px #007ba7;
  margin-bottom: 9px;
}
.news .nav-tabs .nav-item {
  margin-bottom: 0;
  width: auto;
  background: #fff;
  border: none;
}
.news .nav-tabs .nav-item + .nav-item {
  margin-left: 0;
}
.news .nav-tabs .nav-item.open .nav-link,
.news .nav-tabs .nav-item.open .nav-link:focus,
.news .nav-tabs .nav-item.open .nav-link:hover,
.news .nav-tabs .nav-link.active,
.news .nav-tabs .nav-link.active:focus,
.news .nav-tabs .nav-link.active:hover {
  color: #fff;
  background-color: #007ba7;
  border-color: #ddd #ddd transparent;
}
.news .nav-tabs .nav-link {
  padding: 0 23px;
  line-height: 35px;
  border: none !important;
  border-radius: 0;
  font-weight: bolder;
  font-size: 15px;
  font-family: "Museo Sans Cyrl";
  font-weight: 900;
}
.news .nav-link {
  color: #000;
}

.nav-tabs .active {
  background-color: #007ba7 !important;
}
.nav-tabs > li.active > a {
  background-color: none;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # Медиабиблиотека
 * ~~~~~~~~~~~~~~~~~~~~~~~ */
.mediabiblioteka {
  padding: 30px 0 55px 0;
  margin: 30px 0;
  background: #02698e;
}
.mediabiblioteka-box {
  height: 365px;
  margin-left: 15px;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.instagram-box {
  margin-left: 15px;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 5px;
}
.instainfo {
  font-size: 13px;
  font-size: 14px;
  float: right;
}
.mediabiblioteka-item__play img {
  cursor: pointer;
}

.instagram-box .title-page a {
  color: #fff;
  font-size: 21px;
}
.mediabiblioteka .instagram-box .owl-item {
  max-height: 450px;
}
.mediabiblioteka .title-page {
  color: #fff;
  margin: 2px 0 20px;
}
/*.mediabiblioteka .owl-item {max-height: 220px;}*/
.mediabiblioteka-item__image img {
  width: 98% !important;
}
.mediabiblioteka-item__play {
  width: 37px;
  height: 140px;
  margin: 0 auto;
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.mediabiblioteka-item__play:before {
  content: "";
  width: 50px;
  height: 50px;
  background: #007ba7;
  position: absolute;
  opacity: 0.7;
}
.mediabiblioteka-play__img {
  z-index: 1;
}
.mediabiblioteka-item__date {
  color: #efefef;
  margin-bottom: 5px;
}
.mediabiblioteka-item__title {
  font-size: 15px;
  color: #efefef;
  word-wrap: break-word;
  font-weight: bolder;
}
.mediabiblioteka .showMore__button,
.mediabiblioteka .showMore__button2 {
  background: #fff;
  color: #02698e;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # Новости филиалов
 * ~~~~~~~~~~~~~~~~~~~~~~~ */
.branchNews-items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.branchNews-items .owl-carousel {
  width: 24%;
}
.branchNews-item__img {
  max-width: 100%;
  height: 220px;
  -o-object-fit: cover;
  object-fit: cover;
}
.branchNews-item__title {
  font-size: 16px;
  font-weight: bolder;
  font-family: "Museo Sans Cyrl";
  font-weight: 900;
}
.branchNews-item a {
  color: #000;
  text-decoration: none;
}
.branchNews .owl-nav {
  right: 10px !important;
  top: 162px !important;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # Партнеры
 * ~~~~~~~~~~~~~~~~~~~~~~~ */
.partners {
  overflow: hidden;
}
.partners-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 40px;
}
.partners-list__item {
  width: 20%;
  height: 135px;
  text-align: center;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.partners-item__title {
  height: 66px;
  text-align: center;
  font-size: 14px;
  line-height: 19px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.partners-item__kartinka {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.partners-item__img {
  width: 56px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # Правый раздел
 * ~~~~~~~~~~~~~~~~~~~~~~~ */
.teleport-from {
  width: 230px;
}
.rightSection {
}
.rSide__potomok {
  width: 230px;
  height: 50px;
  background: #202931;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.rightTopNav-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #efefef;
}
.rightTopNav-all__item {
  width: 50%;
  font-size: 15px;
  padding: 15px 0;
  text-align: center;
}
.rightTopNav-all__item.smi {
  background: #35424d;
}
.rightTopNav-all__item .smi {
  font-family: Verdana;
}

.rSidebar-col {
  text-align: center;
}
.rSidebar-header {
  width: 230px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #007ba7;
}
.rSidebar-header .fa {
  padding: 19px;
  color: #fff;
  font-size: 23px;
}
.rightSidebar__title {
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
  color: #007ba7;
  text-align: center;
  margin-bottom: 14px;
}
.nomination p {
  font-size: 19px;
  color: #000;
}

.nomination {
  text-align: center;
  margin: 10px 0;
  border-bottom: solid 3px #007ba7;
}
.nomination img {
  max-width: 100%;
  height: 155px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # Блок обращения директора
 * ~~~~~~~~~~~~~~~~~~~~~~~ */
.rSidebar-dirSay .rSidebar-dirSay__box {
  border-top: solid 3px #007ba7;
  padding: 15px 0 38px;
}
.rSidebar-dirSay .rSidebar-dirSay__box p {
  font-family: Museo Sans Cyrl !important;
}
.rSidebar-dirSay .dirSayImg {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.rSidebar-dirSay__box p {
  color: #000;
  font-weight: 500;
  font-size: 13px;
  text-align: justify;
}
.rSidebar-dirSay .dirSay_link {
  color: #007ba7;
}

.rSidebar-box {
  padding: 15px 0;
  border-top: solid 3px #007ba7;
}
.rSidebar-events__item a {
  text-decoration: none;
}
/*.rSidebar-box:last-child {border-bottom: solid 3px #007ba7;}*/

/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # Блок событий
 * ~~~~~~~~~~~~~~~~~~~~~~~ */
.rightSidebar__calendar {
  text-align: center;
  margin: 3px 0;
}
.rSidebar-events__item img {
  width: 100%;
}
.rSidebar-events__date {
  color: #007ba7;
  padding-top: 5px;
}
.rSidebar-events__title {
  font-size: 15px;
  position: relative;
  margin-top: 6px;
  color: #000;
  font-family: "Gilroy-ExtraBold" !important;
}
.polosa {
  margin-top: -20px;
  color: #b4b4b4;
}
.polosa:before {
  content: "________";
  width: 48px;
}
.rSidebar-events__meta {
  color: #b4b4b4;
  margin: 10px 0 0;
}

.foot {
  width: 100%;
  position: relative;
  height: auto;
  background: #202931;
}
.footer .foot {
  padding: 10px 0 0;
}
.footer .col {
  width: 20%;
  height: auto;
  float: left;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 0 20px 20px 20px;
}
.footer .footer-title {
  margin: 0;
  font-family: inherit;
  font-size: 19px;
  line-height: 17px;
  padding: 20px 0 5px 0;
  color: #fff;
  font-weight: normal;
  position: relative;
  font-family: "Gilroy-ExtraBold" !important;
}
.footer .footer-title:after {
  content: "";
  width: 70%;
  height: 1px;
  background: #007ba7;
  position: absolute;
  top: 49px;
  left: 0;
}
.footer-menu__list {
  list-style-type: none;
  margin: 15px 0 0;
  padding: 0;
}
.footer-menu__item {
  color: #fff;
  font-family: inherit;
  padding: 0;
  cursor: pointer;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
}
.footer-menu__item:hover {
  color: #ffffff;
  -o-transition: 0.1s;
  transition: 0.1s;
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
}
.footer .footer__link {
  font-size: 15px;
  color: #fff !important;
}
.footer .footer__link:hover {
  color: #007ba7 !important;
}

.footer-info__item {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 10px 0;
}
.footer-info__item span {
  color: #007ba7;
}
.footer-info__item a {
  font-size: 15px;
  color: #fff;
}

.col-xs-12.p0.r0 {
  padding-left: 0px;
}

.clearfix {
  clear: both;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # АДАПТИВ
 * ~~~~~~~~~~~~~~~~~~~~~~~ */

/* Если больше чем FullHD */
@media (min-width: 2400px) {
  .leftSection {
    width: 320px;
  }
  .left-hover {
    left: 320px;
  }
  .rightSection {
    width: 320px;
  }
  .rSide__potomok {
    width: 320px;
  }
  .rSidebar-header {
    width: 320px;
  }
  .page {
    width: calc(100% - 320px);
  }
  .main-col {
    width: calc(100% - 320px);
  }
  .main-col__potomok {
    width: calc(100% - 320px);
  }
  .tree2f {
    padding: 0 0 30px 475px;
  }
}
@media (min-width: 1920px) {
  .leftSection {
    width: 280px;
  }
  .left-hover {
    left: 280px;
  }
  .rightSection {
    width: 250px;
  }
  .rSide__potomok {
    width: 280px;
  }
  .rSidebar-header {
    width: 280px;
  }
  .page {
    width: calc(100% - 280px);
  }
  .main-col {
    width: calc(100% - 280px);
  }
  .main-col__potomok {
    width: calc(100% - 280px);
  }
  .tree2f {
    padding: 0 0 30px 475px;
  }
}

@media (max-height: 800px) {
  .leftSection {
    position: fixed;
    height: 100%;
    overflow-y: auto;
  }
  .copyright {
    position: relative;
  }
}

@media (max-width: 1140px) {
  .leftSection {
    width: 200px;
  }
  .leftSection input {
    font-size: 13px;
  }
  .rSide__potomok {
    width: 200px;
  }
  .rSidebar-header {
    width: 200px;
  }
  .page {
    width: calc(100% - 200px);
  }
  .main-col {
    width: calc(100% - 200px);
  }
  .main-col__potomok {
    width: calc(100% - 200px);
  }

  .r0 {
    padding: 0 15px;
  }

  .main-col {
    width: 100%;
  }

  .slider-list img {
    height: 50vh;
  }
  .slider-body__title {
    width: 50%;
    font-size: 25px;
  }

  .teleport-to {
    width: 34%;
    float: left;
  }
  .postteleport {
    width: 100%;
  }
  .rightSection {
    position: relative;
    top: 39px;
    margin-bottom: 20px;
  } /* Отпускаем немного сайдбар */
  .news {
    width: 66%;
  } /* Делаем на одном уровне с сайдбаром */

  /* .nomination {
    display: none;
  } Выключаем наминацию в сайдбаре */

  .news-body__item {
    width: 100%;
  }

  /* Новости филиалов */
  .branchNews-items .owl-carousel {
    width: 49%;
  }
  .branchNews-item {
    margin-bottom: 20px;
  }
  .branchNews-item__img {
    height: 170px;
  }
  .branchNews .owl-nav {
    bottom: 76px !important;
  }

  .partners-list {
    padding: 0;
  }

  .footer .col {
    width: 50%;
  }
}

@media (max-width: 991px) {
  .news {
    width: 100%;
  }
  .teleport-to {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .p0 {
    padding: 0;
  }
  .leftSection {
    display: none;
  }

  .mobHeader {
    height: 80px;
    background: #007ba7;
    z-index: 3;
  }
  .mob-logo {
    line-height: 80px;
  }
  .mob-logo__img {
    width: auto;
    height: 70px;
  }
  i.fa.fa-bars {
    font-size: 56px;
    height: 80px;
    line-height: 80px;
    color: #fff;
  }
  .mobHeader-right {
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .mobHeader-right .fa {
    font-size: 28px;
    color: #fff;
  }
  #mobSearchBtn {
    background: none;
    border: none;
    outline: none;
  }
  .mobSearchTop {
    height: 0;
    position: relative;
    -ms-transform: translate(0, 90px);
    -webkit-transform: translate(0, 90px);
    transform: translate(0, 90px);
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .mobSearchTop-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mobSearchTop.active {
    height: 46px;
    -ms-transform: translate(0, 40px);
    -webkit-transform: translate(0, 40px);
    transform: translate(0, 0px);
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .mobSearchTop-form__input {
    max-width: 100%;
    width: 100%;
    min-width: 100px;
    height: 46px;
    padding: 0 5px;
    border: solid 1px #919191;
    outline: none;
  }
  .mobSearchTop-form__btn {
    height: 46px;
    color: #fff;
    background: #129b91;
    border: none;
  }

  #languageBtn {
    font-size: 23px;
    color: #fff;
    background: none;
    padding: 0;
    border: none;
   /* border-bottom: solid 1px; */
    margin: 0;
    outline: none;
    cursor: pointer;
  }
  #language {
    display: none;
    position: absolute;
    top: 105px;
    right: 0;
    z-index: 2;
    -ms-transform: translate(150px, -25px);
    -webkit-transform: translate(150px, -25px);
    transform: translate(150px, -25px);
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  #language.active {
    display: block;
    z-index: 2;
    -ms-transform: translate(0, -25px);
    -webkit-transform: translate(0, -25px);
    transform: translate(0, -25px);
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .language-list {
    width: 107px;
    display: flex;
    justify-content: space-between;
    font-size: 26px;
    align-items: center;
    color: #0e4d48;
    background: #007ba782;
    padding: 10px 15px;
  }
  .language-list__item {
    border-bottom: solid 1px #1c1c1c;
  }

  .page {
    width: 100%;
  }
  .header {
    display: none;
  }
  .mobHeader,
  .mobSearchTop {
    display: block;
  }

  .slider-body__title {
    width: 63%;
    font-size: 20px;
  }

  .news {
    width: 100%;
  } /* Делаем на одном уровне с сайдбаром */

  .branchNews-item__img {
    height: 150px;
  }

  .partners-item__title {
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0;
    font-family: sans-serif;
  }
  .slider-body__date {
    font-size: 15px;
    margin-bottom: 7px !important;
  }
}

@media (max-width: 600px) {
  .rSide_Top {
    display: none;
  }
  .partners {
    display: none;
  }
}

@media (max-width: 420px) {
  .slider-body__title {
    width: 67%;
    font-size: 16px;
  }
  .branchNews-items .owl-carousel {
    width: 100%;
  }
  .branchNews-item__img {
    height: 170px;
  }
  /* .rSidebar-dirSay {
    display: none;
  } */
  .content-main {
    margin: 30px 20px 30px 20px !important;
  }
  .lg-sub-html {
    display: none;
  }
  .lg-actions .lg-next {
    right: 20px !important;
  }
  .lg-outer.fb-comments .lg-img-wrap,
  .lg-outer.fb-comments .lg-video-cont {
    padding-right: 5px !important;
  }
  .lg-outer.fb-comments .lg-toolbar {
    right: 5px !important;
    width: auto;
  }
  .post-body__posttitle {
    padding: 20px 20px 20px 20px !important;
    font-size: 20px !important;
    line-height: 25px !important;
  }
  .post-body__date {
    padding: 0px 0px 0px 20px !important;
  }
  .postcontentmain {
    margin: 20px 20px 20px 20px !important;
  }
  .post-body__postshorttext {
    padding: 0px 20px 20px 20px !important;
    font-size: 17px !important;
  }
  .slider-body__date {
    font-size: 15px;
    margin-bottom: 7px !important;
  }
}

.modal-backdrop {
  display: none;
}

.modal-dialog {
  width: 673px;
}

.list-group .mediabiblioteka-item__play {
  margin: unset;
  left: 42%;
  cursor: pointer;
}
.hide {
  display: none;
}

.smi a,
.language a {
  display: block;
  color: #cecfd0;

  text-align: center;
}
.partenrslinks {
  color: #000;
  text-decoration: none;
  font-weight: bolder;
  font-family: "Museo Sans Cyrl";
  font-weight: 900;
}
.partenrslinks:hover {
  text-decoration: none;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
  word-wrap: break-word;
}

.content h1 {
  color: #000;
  text-align: left;
  font-size: 33px;
  font-weight: bolder;
  word-break: break-word;
  hyphens: manual;

}

.content-main ul.sveden li {
  padding-bottom: 10px;
  color: #202931;
}

.content-main ul.sveden li:before {
  content: "";
  border-color: transparent #007ba7;
  border-style: solid;
  border-width: 0.25em 0 0.25em 0.35em;
  display: block;
  height: 0;
  width: 0;
  left: -0.9em;
  top: 0.9em;
  position: relative;
}

.sveden {
  font-size: 18px;
}

.post-content {
  padding: 40px 0px 0px 0px;
}

.post-body .slider-body__date {
  padding: 0px 0px 0px 70px;
  font: 10px "Open Sans", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.post-body__posttitle {
  padding: 20px 80px 28px 70px;
  font-size: 36px;
  letter-spacing: 2.8px;
  line-height: 40px;
  text-transform: uppercase;
  font-weight: bolder;
}

.post-body__postshorttext {
  padding: 0px 80px 20px 70px;
  font-size: 20px;
  letter-spacing: 0px;
  line-height: 28px;
  font-style: italic;
}

.postcontentmain {
  text-align: left !important;
  margin: 40px 80px 20px 70px;
  padding-bottom: 35px;
  font-size: 16px;

  letter-spacing: 0px;
  line-height: 24px;
  border-bottom: 1px solid #e8e8e9;
  font-family: "Museo Sans Cyrl" !important;
}
.postcontentmain p {
  font-size: 16px !important;
  font-family: "Museo Sans Cyrl" !important;
}
.postcontentmain p span {
  font-family: "Museo Sans Cyrl" !important;
}
.post-body__date {
  padding: 0px 0px 0px 70px;
  font: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.rightpostsection {
  color: #192128;
  padding: 40px 5px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.rsidebar-post {
  display: block;
  color: #192128;
  font: 14px "Open Sans", sans-serif;
  text-transform: none;
  margin: 20px 0px 12px 0;
  line-height: 1.2;
  letter-spacing: 0.1px;
}
.rsidebarhead-post {
  color: #192128;
  font-weight: bolder;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
}
.content p,
.content font {
  font-family: "Museo Sans Cyrl" !important;
}
.content h3 {
  font-family: "PF Centro Slab Pro";
}
.rsidebardate-post {
  color: #333;
}

.content-main {
  margin: 65px 50px 50px 70px;
  color: #202931;

  letter-spacing: 0px;
}
.show-morenews {
  cursor: pointer;
}
.showMore__button:hover {
  background: #007ba7;
  cursor: pointer;
}
.active {
  display: block !important;
}
.mobSearchTop {
  display: none;
}
.postattachement li {
  padding: 5px;
}

.post-body__postshorttext img {
  display: none !important;
}
.postcontentmain p img {
  width: 50%;
  height: 100%;
}
.pagination {
  width: 100%;
}

.mediabiblioteka-item__image img {
  height: 218px;
  object-fit: cover;
}
.mediabiblioteka-play__img {
  height: 100% !important;
  object-fit: none !important;
}
.btn-primary {
  color: #fff;
  background-color: #007ba7;
  border-color: #02698e;
  border-radius: 0px;
}
.btn-primary:hover {
  background-color: #02698e;
  border-color: #02698e;
}
.gallarycover {
  padding: 10px 0 10px 0;
}
.youtubecss .mediabiblioteka-item__title,
.youtubecss .mediabiblioteka-item__date {
  color: #000 !important;
}
.rightshowmoreyoutube {
  text-align: right;
}
.showMore__buttonyoutube {
  width: 50%;
}
.showMore__buttonyoutube:hover {
  color: #fff;
  text-decoration: underline;
}
.mm-listitem {
  position: relative;
  height: 45px;
}
.thumbnail {
  cursor: pointer;
}
.video {
  cursor: pointer;
}
.fb-comments {
  color: #fff;
  background: #000 !important;
  padding: 5px;
  text-align: justify !important;
}
.nav-newst .active {
  color: #fff;
}
.left-hover__list {
  overflow-y: auto;
  width: 100%;
}

.darkblue {
  background: #ff324d;
  color: #fff !important;
}

.darkorange {
  background: #f19e06;
  color: #fff !important;
}
.lightblue {
  background: #63a0e0;
  color: #fff !important;
}
.darkgreen {
  background: #02698e;
  color: #fff !important;
}

#documentlist > li > ul {
  display: none;
  padding: 5px;
}

#documentlist > li::before {
  content: "";
  border-color: transparent #007ba7;
  border-style: solid;
  border-width: 0.25em 0 0.25em 0.35em;
  display: block;
  height: 0;
  width: 0;
  left: -0.9em;
  top: 0.9em;
  position: relative;
}
#documentlist b {
  padding: 10px 10px 10px 0;
  font-size: 17px;
  cursor: pointer;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.one ul {
  background: #007ba7;
}
.one ul a {
  font-size: 16px;
  line-height: 31px;
  padding: 10px 0;
  color: #fff;
  display: inline-block;
  width: 100%;
  text-decoration: none;
}
.submenu li:hover {
  background: #11736d;
}
.one .submenu {
  display: none;
  background: #007ba7;
}
.one ul li:hover .submenu {
  display: block;
}
h4 span {
  font-family: Gilroy-ExtraBold !important;
}

/* Accordion */
.wrap {
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}

a:focus,
a:hover,
a:active {
  outline: 0;
  text-decoration: none;
}

.panel {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #fff;
  background: none;
  box-shadow: none;
}

.panel:last-child {
  border-bottom: none;
}

.panel-group > .panel:first-child .panel-heading {
  border-radius: 4px 4px 0 0;
}

.panel-group .panel {
  border-radius: 0;
}

.panel-group .panel + .panel {
  margin-top: 0;
}

.panel-heading {
  background-color: #009688;
  border-radius: 0;
  border: none;
  color: #fff;
  padding: 0;
}

.panel-title a {
  display: block;
  color: #fff;
  padding: 15px;
  position: relative;
  font-size: 16px;
  font-weight: 400;
}

.panel-body {
  background: #fff;
}

.panel:last-child .panel-body {
  border-radius: 0 0 4px 4px;
}

.panel:last-child .panel-heading {
  border-radius: 0 0 4px 4px;
  transition: border-radius 0.3s linear 0.2s;
}

.panel:last-child .panel-heading.active {
  border-radius: 0;
  transition: border-radius linear 0s;
}
/* #bs-collapse icon scale option */

.panel-heading a:before {
  content: "\e146";
  position: absolute;
  font-family: "FontAwesome";
  right: 5px;
  top: 10px;
  font-size: 24px;
  transition: all 0.5s;
  transform: scale(1);
}

.panel-heading.active a:before {
  content: " ";
  transition: all 0.5s;
  transform: scale(0);
}

#bs-collapse .panel-heading a:after {
  content: " ";
  font-size: 24px;
  position: absolute;
  font-family: "FontAwesome";
  right: 5px;
  top: 10px;
  transform: scale(0);
  transition: all 0.5s;
}

#bs-collapse .panel-heading.active a:after {
  content: "\e909";
  transform: scale(1);
  transition: all 0.5s;
}
/* #accordion rotate icon option */

#accordion .panel-heading a:before {
  content: "\f078";
  font-size: 16px;
  position: absolute;
  font-family: "FontAwesome";
  right: 16px;
  top: 16px;
  transform: rotate(180deg);
  transition: all 0.5s;
}

#accordion .panel-heading.active a:before {
  transform: rotate(0deg);
  transition: all 0.5s;
}
.covid {
	text-decoration: blink;color: #f00;font-weight: bold;animation: blink 2s linear infinite;
}
@keyframes blink { 50% { color: #f14040; }  100% { color: #a94442; } }
.af-col {
    background-color: #eef8f7;
    padding: 20px 20px 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
    margin-bottom: 30px;
}

.btn span.fa {    			
	opacity: 0;				
}
.btn.active span.fa {				
	opacity: 1;				
}
.field-attestat-specialty-posle-9 {display:none}
@media (max-width: 1140px){
	.eabiturient {display:none}
}
@media (min-width: 1580px){
	.eabiturient span {padding:14px 250px !important}
}



.content__form {
	width: 100%;
	height: 210px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	padding: 40px 72px;
	margin: 95px 0 40px;
	box-sizing: border-box;
	background-color: rgba(45, 141, 189, .1)
}

.clinic__select,
.form__item_input,
label.error {
	-webkit-box-sizing: border-box
}

.content__form .form__confirm_input {
	opacity: 0
}

.content__form .form__confirm {
	width: 100%;
	margin-top: 20px
}

.content__form .form__confirm label.error {
	text-align: center;
	top: 10px;
	pointer-events: none
}

.form__head {
	font-size: 18px
}

.form__head_phone {
	font-size: 24px;
	padding: 0 10px
}

.form__main {
	display: flex;
	-webkit-box-orient: horizontal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 25px 0 20px
}

.clinics__contacts,
.form__result {
	-webkit-box-orient: vertical;
	-ms-flex-direction: column;
	-webkit-box-direction: normal
}

.form__label {
	position: relative
}

.form__result {
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	width: 100%
}

.form__result h3 {
	font-size: 24px;
	margin-bottom: 0
}

.form__result p {
	font-size: 18px
}

label.error {
	position: absolute;
	width: 100%;
	left: 0;
	top: 40px;
	color: red;
	font-size: 12px;
	font-weight: 700;
	padding: 6px;
	pointer-events: none;
	box-sizing: border-box;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	z-index: 1
}

.form__item {
	width: 240px;
	height: 46px;
	-webkit-border-radius: 4px;
	border-radius: 4px
}

.form__item_input {
	position: relative;
	padding: 0 15px;
	box-sizing: border-box;
	border: 1px solid #2d8dbd
}

.form__label_name:after,
.form__label_phone:after {
	position: absolute;
	width: 16px;
	height: 16px;
	top: 14px;
	right: 10px;
	pointer-events: none;
}

.form__label_name:after {
	background: url(upload/user.svg) no-repeat;
	-webkit-background-size: cover;
	background-size: cover
}

.form__label_phone:after {
	background: url(upload/phone.svg) no-repeat;
	-webkit-background-size: cover;
	background-size: cover
}

.form__item_submit {
	/*
	background-image: -webkit-gradient(linear, left top, right top, from(#ffc929), to(#ffe94e));
	background-image: -webkit-linear-gradient(left, #ffc929, #ffe94e);
	background-image: -o-linear-gradient(left, #ffc929, #ffe94e);
	*/
	background: linear-gradient(to right, #25b778, #bee9d6);
	background-color: #ffc929;
	font-weight: 700;
	border: 0;
	cursor: pointer;
	-o-transition: .2s ease;
	-webkit-transition: .2s ease;
	transition: .2s ease
}

.clinics__address,
.clinics__clubs_name,
.clinics__contacts_phone,
.clinics__job_head,
.clinics__phone,
.clinics__time,
.footer__clubs_name,
.footer__head,
.modal__name,
.result__box_option span,
.result__link:after,
.result__link:before {
	font-family: 'Russo One';
	font-weight: 400
}

.form__item_submit:disabled,
.form__item_submit:disabled:hover {
	background: #cae0ec;
	color: #8bb7ce;
	pointer-events: none;
	-webkit-box-shadow: none;
	box-shadow: none
}

.form__item_submit:hover {
	background: -webkit-gradient(linear, left top, right top, from(#ffc929), to(#ffc929));
	background: -webkit-linear-gradient(left, #ffc929, #ffc929);
	background: -o-linear-gradient(left, #ffc929, #ffc929);
	background: linear-gradient(to right, #ffc929, #ffc929);
	background-color: #ffc929;
	-webkit-box-shadow: 0 2px 8px 0 rgba(2, 54, 127, .1);
	box-shadow: 0 2px 8px 0 rgba(2, 54, 127, .1)
}

.form__confirm {
	display: flex;
	position: relative;
	font-size: 14px;
	line-height: 1.14;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center
}

.form__confirm_item {
	position: relative;
	cursor: pointer
}

.form__confirm_item>.error {
	top: 10px;
	left: -6px
}

.form__confirm_input:checked~.form__confirm_item:before {
	background: url(upload/checked.svg) no-repeat;
	-webkit-background-size: cover;
	background-size: cover
}

.form__confirm_item:before {
	position: absolute;
	-webkit-background-size: cover;
	background-size: cover;
	width: 12px;
	height: 12px;
	top: 0;
	left: -25px;
	border: 2px solid #333;
	-webkit-border-radius: 4px;
	border-radius: 4px
}
.clinic__select {
	display: flex;
	position: relative;
	width: 100%;
	height: 46px;
	line-height: 46px;
	padding-left: 15px;
	border: 1px solid #2d8dbd;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
	box-sizing: border-box
}

.clinic__list,
.clinics__item {
	overflow: hidden;
	-webkit-box-sizing: border-box
}

.clinic__select:after {
	position: absolute;
	top: 20px;
	right: 15px;
	width: 0;
	height: 0;
	transition: .3s ease;
	border-style: solid;
	border-width: 5px 5px 0;
	border-color: #2d8dbd transparent transparent
}

.clinic__select.js__active:after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg)
}

.clinic__list {
	width: 100%;
	position: absolute;
	background: #fff;
	list-style: none;
	padding: 4px;
	margin: 0;
	border: 1px solid #2d8dbd;
	-webkit-border-radius: 4px;
	box-sizing: border-box;
	opacity: 0;
	pointer-events: none;
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
	z-index: 1;
	-webkit-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
	border-radius: 4px;
	-webkit-box-shadow: 0 6px 12px 0 rgba(2, 54, 127, .1);
	box-shadow: 0 6px 12px 0 rgba(2, 54, 127, .1)
}

.certificates__link,
.clinic__item:after {
	-webkit-transition: .3s opacity ease;
	-o-transition: .3s opacity ease
}

.clinic__list.js__active {
	opacity: 1;
	pointer-events: all;
	-webkit-transform: translateY(-1px);
	-ms-transform: translateY(-1px);
	transform: translateY(-1px);
	z-index: 99
}

.clinic__item {
	position: relative;
	line-height: 36px;
	padding-left: 20px;
	background: #fff;
	cursor: pointer;
	z-index: 3
}

.clinic__item:hover {
	color: #fff
}

.clinic__item:after {
	opacity: 0;
	transition: .3s opacity ease
}

.clinic__item:hover:after {
	position: absolute;
	background: #2d8dbd;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 1;
	-webkit-border-radius: 4px;
	border-radius: 4px
}
.doctors__name {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
}
.doctors__info {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    color: rgba(51, 51, 51, .9);
    margin-top: 20px;
    text-align: center;
}

@media(max-width:1170px) {
	.content__form {
		height: auto;
		-webkit-border-radius: 0;
		border-radius: 0;
		padding: 30px;
		margin: 40px 0
	}
}
@media (max-width: 960px){
.form__item, .maps__block .form__label, .modal__form .form__label {
    width: 100%;
}
.form__head {
    display: inline-block;
    width: 100%;
    text-align: center;
}
}

@media (max-width: 640px){
	.form__head_phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 5px 0;
}

}
.form__head_phone {
    font-size: 24px;
    padding: 0 10px;
}
.form__head {
    font-size: 18px;
}
.form__head_phone, .table__catalog_name {
    font-family: 'Russo One';
    font-weight: 400;
}
.form__item_input {
    position: relative;
    padding: 0 15px;
    box-sizing: border-box;
    border: 1px solid #2d8dbd;
}
.clinic__select {
    display: flex;
    position: relative;
    width: 100%;
    height: 46px;
    line-height: 46px;
    padding-left: 15px;
    border: 1px solid #2d8dbd;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    box-sizing: border-box;
}