/* Скроллбар */
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

*::-webkit-scrollbar-track {

  background: #242424;
}

*::-webkit-scrollbar-thumb {

  background: #f7f7f7;
}

*::-webkit-scrollbar-thumb:hover {
  background: #005fa0;
}

*::-webkit-scrollbar-thumb:active {
  background: #005fa0;
}

body {
  font-family: "Roboto";
  font-weight: normal;
}

h1 {
  font-size: 14px;
  color: #fff;
  padding: 5px 0 5px;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-0 {
  padding: 0
}

/*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: #006c80;
  color: #000;
  border: 1px solid #006c80;
}

/*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: #006c80;
}

.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: 10px;
  padding-right: 10px;
  padding-top: 2px;
  padding-bottom: 2px;
}

/* 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: #005fa0;
  /* Old browsers */
  background: -moz-linear-gradient(top,
      #005fa0 2%,
      #025868 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top,
      #005fa0 2%,
      #025868 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,
      #005fa0 2%,
      #025868 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#008b8b', endColorstr='#006c80', 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: #04528c;
  padding: 5px 26px 5px 16px;
  color: #fff;
  float: left;
}

.showMore__button2 {
  height: 40px;
  line-height: 27px;
  background: #04528c;
  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: linear-gradient(to bottom, #006c80 20%, #074866 100%)
}

/* Скроллбар меню */
.leftSection::-webkit-scrollbar {
  width: 0;
  height: 6px;
}

.leftSection::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #006c80;
}

.leftSection::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #006c80;
}

.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%;
}

.sveden-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #35424d;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sveden-link a {
  color: #fff;
  font-weight: bolder;
  text-align: center;
  height: 60px;
  padding-top: 11px;
}

.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: 80%;
}

.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;
  border-bottom: 1px solid #01687d;
}

.left-nav__item:hover {
  background: #025868;
}

.left-nav__link {
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
  width: 100%;
  padding: 3px 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;

}

.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: #025868;
  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: #004b58;
}

.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 #268f87;
}

.left-hover__link:last-child {
  border-top: 1px solid #151a1d1f;

}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # Социальные сети
 * ~~~~~~~~~~~~~~~~~~~~~~~ */
.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 #268f87;
  border-bottom: solid 1px #268f87;
}

.left-social__item {
  width: 25%;
  height: 47px;
  line-height: 48px;
  font-size: 27px;
  text-align: center;
  border-right: solid 1px #268f87;
}

.left-social__item:last-child {
  border-right: none;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # Копирайт
 * ~~~~~~~~~~~~~~~~~~~~~~~ */
.copyright {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 11px;
  font-weight: 100;
  line-height: 16px;
  text-align: center;
  padding: 1px 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: 60px;
  line-height: 60px;
  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: #006c80;
}

.mobHeader,
.mobSearchTop {
  display: none;
}

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

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

.title-page {
  text-transform: uppercase;
  font-weight: bold;
  margin: 0 0 10px;
  font-family: "Roboto";
  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 #268f87;
  position: relative;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.topMenu-list__item:first-child {
  border-left: solid 1px #268f87;
}

.topMenu-list__item:hover {
  background: #118f86;
  -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: #006c80;
  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 !important;
  -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: #006c80;

  position: absolute;
  right: 20px;
  bottom: 80px;
  font-family: "Roboto";
  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: #006c80 !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 {

  width: 32%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;

  box-shadow: 0 4px 8px rgb(0 0 0 / 12%);
  border-radius: 8px;
  flex: 1;
  margin: 8px;
  min-width: 280px;
}

.news-body__item:last-child {

  width: 32%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;

  box-shadow: 0 4px 8px rgb(0 0 0 / 12%);
  border-radius: 8px;
  flex: 1;
  margin: 8px;
  min-width: 280px;
  max-width: 300px;
}

.news-body__item img {
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 365px;
}

.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: 16px;
  color: #000;
  margin-top: 8px;
  font-weight: bolder;
}

.news-item__title a {
  color: #000;
  text-decoration: none;
  font-family: "Roboto";
  font-weight: 900;
}

.news-item__desc {
  color: #000;
  font-size: 14px;
  font-family: "Roboto";
}

.news ul {
  border-bottom: solid 3px #006c80;
  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: #006c80;
  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: "Roboto";
  font-weight: 900;
}

.news .nav-link {
  color: #000;
}

.nav-tabs .active {
  background-color: #006c80 !important;
}

.nav-tabs>li.active>a {
  background-color: none;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # Медиабиблиотека
 * ~~~~~~~~~~~~~~~~~~~~~~~ */
.mediabiblioteka {
  padding: 30px 0 55px 0;
  margin: 30px 0;
  background: #178d85;
}

.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: #006c80;
  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: #178d85;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # Новости филиалов
 * ~~~~~~~~~~~~~~~~~~~~~~~ */
.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: "Roboto";
  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: 285px;
}

.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: #006c80;
}

.rSidebar-header .fa {
  padding: 19px;
  color: #fff;
  font-size: 23px;
}

.rightSidebar__title {
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
  color: #202931;
  text-align: center;
  margin-bottom: 14px;
  font-weight: bolder;
}

.nomination p {
  font-size: 19px;
  color: #000;
}

.nomination {
  text-align: center;
  margin: 10px 0;
  border-bottom: solid 3px #006c80;
}

.nomination img {
  max-width: 100%;
  height: 155px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # Блок обращения директора
 * ~~~~~~~~~~~~~~~~~~~~~~~ */
.rSidebar-dirSay .rSidebar-dirSay__box {
  border-top: solid 3px #006c80;
  padding: 15px 0 38px;
}

.rSidebar-dirSay .rSidebar-dirSay__box p {
  font-family: Roboto !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: #006c80;
}

.rSidebar-box {
  padding: 15px 0;
  border-top: solid 3px #006c80;
}

.rSidebar-events__item a {
  text-decoration: none;
}

/*.rSidebar-box:last-child {border-bottom: solid 3px #006c80;}*/

/* ~~~~~~~~~~~~~~~~~~~~~~~~~
 # Блок событий
 * ~~~~~~~~~~~~~~~~~~~~~~~ */
.rightSidebar__calendar {
  text-align: center;
  margin: 3px 0;
}

.rSidebar-events__item img {
  width: 100%;
}

.rSidebar-events__date {
  color: #006c80;
  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: #006c80;
  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: #006c80 !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: #006c80;
}

.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 {
    max-width: 350px;
  }

  .rSide__potomok {
    width: 280px;
  }

  .rSidebar-header {
    width: 280px;
  }

  .page {
    width: calc(100% - 280px);
  }

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

  .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: #006c80;
    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: #006c8082;
    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: "Roboto";
  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 #006c80;
  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: "Roboto" !important;
}

.postcontentmain p {
  font-size: 16px !important;
  font-family: "Roboto" !important;
}

.postcontentmain p span {
  font-family: "Roboto" !important;
}


.post-body__date {
  padding: 0px 0px 0px 70px;
  font: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rightpostsection {
  color: #192128;
  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: "Roboto" !important;
}

.content h3 {
  font-family: "Roboto";
}

.rsidebardate-post {
  color: #333;
}

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

  letter-spacing: 0px;
}

.show-morenews {
  cursor: pointer;
}

.showMore__button:hover {
  background: #006c80;
  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: #006c80;
  border-color: #268f87;
  border-radius: 0px;
}

.btn-primary:hover {
  background-color: #025868;
  border-color: #025868;
}

.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: #0d726a;
  color: #fff !important;
}

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

#documentlist>li::before {
  content: "";
  border-color: transparent #006c80;
  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: #006c80;
}

.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: #0c3f67;
}

.one .submenu {
  display: none;
  background: #006c80;
}

.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 */
  }
}

.tooltip-toggle {
  cursor: pointer;
  position: relative;
}

.tooltip-toggle svg {
  height: 18px;
  width: 18px;
}

.tooltip-toggle::before {
  position: absolute;
  top: -73px;
  left: -55px;
  background-color: #2B222A;
  border-radius: 5px;
  color: #fff;
  content: attr(aria-label);
  padding: 1rem;
  text-transform: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 160px;
}

.tooltip-toggle::after {
  position: absolute;
  top: -8px;
  left: 28px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #2B222A;
  content: " ";
  font-size: 0;
  line-height: 0;
  margin-left: -5px;
  width: 0;
}

.tooltip-toggle::before,
.tooltip-toggle::after {
  color: #efefef;
  font-family: monospace;
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  text-align: center;
}

.tooltip-toggle:focus::before,
.tooltip-toggle:focus::after,
.tooltip-toggle:hover::before,
.tooltip-toggle:hover::after {
  opacity: 1;
  -webkit-transition: all 0.75s ease;
  transition: all 0.75s ease;
}

.innerheader .indent {
  padding-left: 0px;
  padding-right: 0px;
}

.eabiturient {
  background: #35424d;
  color: #fff;
  margin-right: 0
}

.innerheader {
  display: flex;
  align-items: center;
}

#head-content {
  margin-top: 0;
  margin-bottom: 0;
}

.cb {
  clear: both
}

.w100 {
  width: 100%
}

.eventsonnews {
  height: 610px;
  background: #f6f8fb;
  color: #ffffff;
  width: 285px;
  padding: 30px 20px;


}

.card-body {
  display: flex;
  flex-direction: column;
  padding: 15px 15px;
}

.news-body__item img {
  width: 100%;
  height: 240px;
  background-color: #ccc;
  border-radius: 2px;
  object-fit: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.sotrudniki .news-body__item img {
  width: 100%;
  height: 350px;
  background-color: #ccc;
  border-radius: 2px;
  object-fit: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.news-body__item img {
  border-top-left-radius: 8px !important;
  border-top-right-radius: 8px !important;
}

.burger.open .menu-btn__burger::before,
.burger.open .menu-btn__burger::after {
  background: #35424d !important;
}

.events-block .more-events {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 50px;
  width: 50px;
  background: url(../assets/img/more-events.png) 100% 100% #f7f7f7 no-repeat;
}

.sliderNewsAll .card p.headName {
  margin-top: 16px;
  font-size: 15px;
  text-align: center;
  font-weight: bolder;
}

.oneNews {

  padding-top: 16px;
  margin-top: 20px;
}

.oneNews .text {
  font-size: 14px;
  color: #202931;
  font-weight: 500;
  font-family: "Roboto";
}

.oneNews .date {
  font-size: 12px;
  color: #35424d;
}

.bg-transparent {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(20, 24, 28, 0.1);
}

.social-container {
  float: right;
  width: auto;
  height: 50px;

}

.social-container .old-site {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  padding-right: 5px;
}

.social-container .social {
  display: inline-block;
}

.social-container .social a {
  float: left;
  display: block;
  color: #cecfd0;

  text-align: center;
  width: 50px;
  height: 50px;
}

.social-container .social a:hover {
  color: rgba(255, 255, 255, 0.7);
  background: #0f386b;
}

.social-container .old-site a {
  color: #cecfd0;
  font: 13px/17px "Open Sans Bold", sans-serif;
  width: 100%;
  padding: 3px;
}

.social-container .old-site a span {
  color: #FFF844;
}

.social-container .old-site a:hover {
  color: rgba(255, 255, 255, 0.7);
  background: #006c80;
}

.fotogallery h3 {
  font-size: 17px;
}

.fotogallery .thumbnail {
  min-height: 505px;
}

.m0 {
  margin: 0;
  padding: 0
}

.m-0 {
  margin: 0;
  padding: 0
}

.lightgallery-album {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.w-100 {
  width: 100%
}

iframe {
  width: 100%;
}

section h3 {
  font-size: 39px;
  font-weight: bolder;
}

#bigSlider {
  padding-bottom: 25px;
  background: linear-gradient(to bottom, #006c80 20%, #074866 100%);
  padding-top: 15px;
}

.post-content .row {
  margin: 0
}

.offer_tab_card__link:hover {
  background: #006c8021;
}

.menuContent .search {
  display: none
}

.abitur-sveden {
  background: #006c80;
}

.abitur-sveden a {
  color: #fff;
  font-size: 18px;
}