@font-face {
  font-family: 'ProximaNovaBold';
  src: url('../fonts/ProximaNova-Bold.eot');
  src: local('Proxima Nova Bold'), local('ProximaNova-Bold'),
    url('../fonts/ProximaNova-Boldd41d.eot?#iefix') format('embedded-opentype'),
    url('../fonts/ProximaNova-Bold.woff') format('woff'),
    url('../fonts/ProximaNova-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'ProximaNova';
  src: url('../fonts/ProximaNova-Regular.eot');
  src: local('Proxima Nova Regular'), local('../fonts/ProximaNova-Regular'),
    url('../fonts/ProximaNova-Regulard41d.eot?#iefix') format('embedded-opentype'),
    url('../fonts/ProximaNova-Regular.woff') format('woff'),
    url('../fonts/ProximaNova-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ProximaNovaSemi';
  src: url('../fonts/ProximaNova-Semibold.eot');
  src: local('Proxima Nova Semibold'), local('../fonts/ProximaNova-Semibold'),
    url('../fonts/ProximaNova-Semiboldd41d.eot?#iefix') format('embedded-opentype'),
    url('../fonts/ProximaNova-Semibold.woff') format('woff'),
    url('../fonts/ProximaNova-Semibold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'ProximaNova';
  color: #323232;
}

.logo {
  height: 130px;
  width: 125px;
  min-width: 125px;
  background: #009ee1;
  margin-right: 56px;
  text-align: center;
  vertical-align: bottom;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;

  height: 200px;
  background: #ffffff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.contacts img {
  width: 15px;
  margin-right: 15px;
}

.icons-right img {
  width: 20px;
}

.header {
  padding-bottom: 55px;
  background-image: url(../img/mount.png);
  color: #fff;
  background-size: cover;
  background-position: center;

  /* background-image: url("https://images.unsplash.com/photo-1464938050520-ef2270bb8ce8?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1353&q=80"); */
  background-image: url(../img/bg/bg.jpg);
  background-size: 100%;
  padding-bottom: 120px;

  animation-name: header;
  animation-duration: 30s;
  animation-iteration-count: infinite;
}

@keyframes header {
  0% {
    background-size: 120%;
  }
  50% {
    background-size: 100%;
  }
  100% {
    background-size: 120%;
  }
}

.head {
  padding-top: 15px;
  width: 100%;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 15px;
}

.header a {
  color: #fff;
  font-size: 15px;
  font-size: 1rem;
}

.phone {
  margin-right: 45px;
  display: flex;
  align-items: center;

  margin-right: 0;
}

.email {
  display: flex;
  align-items: center;

  margin-right: 45px;
}

.week-see span {
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  height: 31px;
  width: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;

  margin-left: 0;
  margin-right: 15px;
}

.week-see {
  text-align: left;
  line-height: 1.1;
}

.week-see span img {
  width: 17px;
}

.search2 {
  margin-left: 21px;
  cursor: pointer;


  margin-left: 0;
  margin-right: 21px;
}

.w100 {
  width: 100%;
}

.sitename {
  margin-top: 30px;
}

.sitename h2 {
  font-size: 26px;
  font-family: 'ProximaNovaBold';
  margin-top: -2px;
  color: #fff;
}

.main-menu {
  padding: 15px 0;
  background-color: #f3f3f3;
  margin-bottom: 35px;
}

.main-menu a {
  color: #636363;
  text-decoration: none;
  font-size: 15px;
}

.sub-menu {
  display: none;
  list-style: none;
  padding-left: 0;
  position: absolute;
  padding: 15px 0;
  background-color: #f3f3f3;
  width: 242px;
  box-shadow: 0 4px 3px -3px black;
  left: -14px;
  border-radius: 0;
  z-index: 99;
}

.sub-menu li {
  position: relative;
}

.sub-menu a {
  padding: 7.5px 15px;
  width: 100%;
  display: block;
  line-height: 1.3;
}

.sub-menu li:hover {
  background: #efeeee;
}

#menu-top {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

#menu-top li {
  position: relative;
}

.menu-items-has-children {
  transition: 0.4s;
}

.menu-item-has-children:hover .sub-menu {
  display: block;
}

.menu-item-has-children:after {
  content: '';
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  background-image: url(../img/download.svg);
  background-size: cover;
  right: -16px;
  top: 8px;
  transition: 0.4s;
}

.menu-item-has-children:hover:after {
  transform: rotate(180deg);
  transition: 0.4s;
}

#menu-left {
  padding: 0;
  list-style: none;
  margin-bottom: 15px;
}

#menu-left a {
  color: #636363;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
}

#menu-left li {
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

#menu-left li a:before {
  width: 10px;
  height: 10px;
  content: '';
  background-image: url(../img/next.svg);
  display: block;
  background-size: cover;
  position: absolute;
  left: 1px;
  top: 5px;
  transition: 0.4s;
}

#menu-left li:hover a {
  color: #48bfff;
  text-decoration: none;

  color: #48bfff;
}

#menu-left li:hover a:before {
  background-image: url(../img/next2.svg);
  transition: 0.4s;
}

.priem {
  position: relative;

  /* color: #48bfff; */
  color: #ff0000;
  text-align: center;
  padding: 15px 25px;
  font-family: 'ProximaNovaSemi';

  color: #ff0000;
  background: #fff;
  border: 3px solid #ff0000 ;
  border-radius: 5px;
  border-color: #ff0000;
  overflow: hidden;
}

.test_my_priem {
  position: relative;

  text-align: center;
  padding: 15px 17px;
  font-family: 'ProximaNovaSemi';
  background: #fff;
  border: 3px solid #01a6ff ;
  border-radius: 5px;
  overflow: hidden;
}

.test_my_priem .btn {
  display: block;
  /* border: 1px solid #fff; */
  margin-top: 10px;
  margin-bottom: 10px;
  color: #fff;
  padding: 10px 0;
  background-color: #01a6ff;
  border-radius: 30px;
}

.test_my_priem .btn,
.test_my_priem span {
  position: relative;
  z-index: 3;
}

.priem::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background-image: url("https://images.unsplash.com/photo-1464938050520-ef2270bb8ce8?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1353&q=80"); */
  /*background-image: url(../img/bg/bg.jpg);*/
  z-index: 1;

  animation-name: header;
  animation-duration: 30s;
  animation-iteration-count: infinite;
}

.priem::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /*background-color: rgba(0,0,0,.3);*/
  z-index: 2;
}

.priem .btn {
  display: block;
  /* border: 1px solid #fff; */
  margin-top: 20px;
  color: #fff;
  padding: 10px 0;
  background-color: #ff0000;
  border-radius: 30px;
  /* border: 1px solid #fff;
  color: #ff0000; */
}

.priem .btn,
.priem span {
  position: relative;
  z-index: 3;
}

.hotline,
.quest {
  border: 1px solid #009ee1;
  margin-top: 15px;
  border-radius: 5px;
  text-align: center;
  padding: 7px;
  color: #009ee1 !important;
  display: block;
  font-family: 'ProximaNovaSemi';

  color: #009ee1 !important;
  border: 1px solid #009ee1;
}

.hotline img,
.quest img {
  width: 20px;
  margin-right: 5px;
}

.swiper-container,
.part-slider {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-slide {
  /* Center slide text vertically */
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.main-news {
  width: 100%;
  height: 100%;
  background-size: 100%;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center center;

  animation-name: header-main-news;
  animation-duration: 30s;
  animation-iteration-count: infinite;
}

@keyframes header-main-news {
  0% {
    background-size: 130%;
  }
  50% {
    background-size: 110%;
  }
  100% {
    background-size: 130%;
  }
}

.detail {
  z-index: 9;
  position: relative;
  padding-left: 47px;
  padding-bottom: 50px;
  padding-right: 180px;
}

.shadow {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.detail a {
  font-size: 20px;
  font-family: 'ProximaNovaBold';
  color: #fff;
  text-align: left;
}

.date img {
  width: 15px;
  margin-right: 5px;
}

.date {
  color: #929292;
  display: flex;
  align-items: center;
}

.bot-block {
  margin-top: 15px;
}

.bot-block .btn-detail {
  background: #009ee1;
  font-size: 14px;
  display: block;
  font-family: 'ProximaNova';
  margin-left: 18px;
  width: 126px;
  height: 35px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #01a6ff;
}

.godetal {
  display: flex;
  align-items: center;
  color: #009ee1 !important;
  font-size: 14px;
  text-decoration: underline;
  text-align: right;
  justify-content: flex-end;

  justify-content: flex-start;
  text-align: left;
  color: #009ee1 !important;
}

.head2 {
  padding-bottom: 5px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 35px;
}

h2 {
  font-size: 20px;
  color: #009ee1;
  font-family: 'ProximaNovaBold';
  margin: 0;

  color: #343434;
}

.main-block {
  margin-bottom: 65px;
}

.godetal img {
  width: 10px;
  margin-left: 5px;
}

.news .img {
  height: 187px;
  background-size: 100%;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
}

.news-tpl .news .img {
  height: 387px;
  background-size: 100%;
  background-position: center;
  position: relative;

  border-radius: 10px;
  background-size: 100%;

  transition: all ease-in-out .2s;


}

.news-tpl .news .img:hover {
  background-size: 105% ;
}



.page-numbers {
  display: block;
  width: 100%;
}

.page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;

  display: flex;
  flex-direction: row;

  padding-left: 15px;
}

.page-numbers li {
  margin-right: 20px;
}

.page-numbers a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;

  background-color: #f3f3f3;
  border-radius: 5px;
}

.page-numbers li:last-child a,
.page-numbers li:first-child a {
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-numbers .current {
  box-sizing: border-box;
  border: 3px solid rgba(0,0,0,0.1);
}

.excerpt,
.excerpt a {
  font-size: 18px;
  color: #343434;
  font-family: 'ProximaNovaBold';
  line-height: 1.2;
  margin-top: 5px;
  margin-bottom: 7px;
  height: 130px;
}

.news .col-md-3 {
  margin-bottom: 30px;
}

.news .date {
  color: #929292;
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-top: 10px;
}

.section-news {
  padding-bottom: 100px;
}

.partners {
  margin-bottom: 60px;
}

.partners__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.partners__item {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners__link {
  opacity: .7;

  transition: all ease-in-out .2s;
}

.partners__link:hover {
  opacity: 1;
}

.footer {
  padding: 50px 0;
  background-color: #141414;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
}


.footer img {
  width: 15px;
  margin-right: 5px;
}

.adress {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
}

.footer a {
  color: #fff;
  font-family: 'ProximaNovaSemi';
}

.phone2 {
  display: block;
  color: #fff !important;
  font-family: 'ProximaNovaSemi';
  font-size: 16px;
  margin-top: 5px;
}

.footer .sub-menu {
  display: block;
  position: relative;
  background: transparent;
  box-shadow: none;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer .menu-item-has-children:after {
  display: none;
}

.footer .sub-menu li:hover {
  background: transparent;
}

.footer .menu-item-has-children>a {
  color: #cacaca;
  text-transform: uppercase;
}

.footer .row {
  margin-bottom: 45px;
}

.footer .row:last-of-type {
  margin-bottom: 0;
}

.footer2,
.footer2 a {
  color: #4b4b4b;
  font-size: 13px;
}

.footer2 {
  padding: 30px 0;
  background: none;
  /* background-image: url("https://images.unsplash.com/photo-1464938050520-ef2270bb8ce8?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1353&q=80"); */
  background-position: bottom center;
  position: relative;

  background-image: url(../img/bg/bg.jpg);
  animation-name: header;
  animation-duration: 30s;
  animation-iteration-count: infinite;
}

.footer2::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);

  position: absolute;
  left: 0;
  top: 0;  
}

.footer2 .container,
.footer2 .container a {
  position: relative;
  color: white;
}

.copy {
  margin-right: 150px;
}

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

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

.sidebar li {
  list-style: none;
}

.detail2 {
  padding: 15px 0;
  display: table;
  color: #838383;
}

.acts-list,
.acts-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.acts-list input {
  display: none;
}

.acts-list ul {

  padding-left: 30px;
  border-left: 1px solid rgba(0,0,0,0.5);

  display: none;
}

.acts-list ul > li {
  margin-bottom: 20px;
}

.acts-list label {
  cursor: pointer;
}
.acts-list label:hover {
  text-decoration: underline;
}

.acts-list input:checked ~ label {
  font-weight: bold;
}

.acts-list input:checked ~ ul {
  display: block;
}

.acts-list label {
  display: block;
}

.content {
  margin-top: 20px;
}

.txt-tpl,
.doc-tpl,
.section-404,
.search-page {
  padding-bottom: 80px;
}

h1 {
  font-size: 36px;
  font-family: 'ProximaNovaBold';
  margin-top: 30px;
}

.detail2 img {
  width: 10px;
  margin-right: 5px;
  margin-top: -2px;
}

.breadcrumbs,
.breadcrumbs a,
.breadcrumbs span {
  color: #838383;
}

.docs a {
  color: #009ee1;
  font-family: 'ProximaNovaBold';
}

.docs a img {
  width: 20px;
  margin-left: 5px;
  margin-top: -6px;
}

ol li {
  margin-bottom: 10px;
}

.relative {
  position: relative;
}

.section-404 h1 {
  margin-top: 0;
}

.section-404 a {
  color: #009ee1;
}

.btn-link {
  color: #838383 !important;
  text-align: left;
  font-size: 16px;
}

.year {
  font-size: 34px;
  line-height: 1;
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid rgba(131, 131, 131, 0.64);
  min-width: 112px;
}

.otdel {
  font-size: 1.6em;
  margin: 33px 0 25px;
  width: 100%;
}

.font_upper {
  font-size: .6667em;
  line-height: 1.3em;
  text-transform: uppercase;
  letter-spacing: 0.8px !important;
}

.fio {
  font-size: 1.2em;
  line-height: 1.2308em;
  margin-bottom: 6px;
  color: #333;
}

.sotr-inner {
  padding: 15px 0;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  margin: 0 0 -1px;
}

.photo {
  float: left;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  margin-right: 40px;
  position: relative;
  overflow: hidden;
  background: #FFF;
}

.photo img {
  display: inline;
  max-height: 100%;
  max-width: 100%;
  height: auto;
}

.phones div {
  margin-right: 50px;
}

.phones div:nth-child(1) {
  min-width: 200px;
}

.phones label {
  font-size: .6667em;
  line-height: 1.3em;
  text-transform: uppercase;
  letter-spacing: 0.8px !important;
  margin: 0 0 3px;
  color: #999;
  display: block;
}

.phones {
  margin-top: 20px;
}

.doc-tpl a {
  color: #009ee1;
}

.contacts.type_3 {
  margin: 0 0 68px;
  border-top: 1px solid #f3f3f3;
}

.contacts {
  color: #333;
}

.contacts.type_3 .contacts-wrapper {
  padding: 89px 0 0;
}

.contacts.type_3 .contacts-wrapper h2 {
  margin-top: -2px;
  line-height: 1.5em;
  margin-bottom: 0;
  margin: 31px 0 23px;
  margin-top: 0;
  font-weight: 400;
  margin-top: 17px;
}

.top_block {
  width: 100%;
}

.contacts.type_3 .top_block .item:nth-child(2n+1) {
  width: 60%;
}

.contacts.type_3 .top_block .item {
  margin: 19px 0;
  float: none;
  display: inline-block;
  vertical-align: top;
  width: 50%;
  margin-right: -3px;
}

.contacts.type_3 .top_block .item:nth-child(2n) {
  width: 40%;
}

.contacts.type_3 .top_block .item .title {
  margin-bottom: 5px;
}

.contacts.type_3 .top_block .item .title {
  margin: 0 0 1px;
  color: #999;
}

.schedule {
  width: 79% !important;
}

.schedule .d-flex {
  margin-bottom: 30px;
  align-items: center;
}

.days {
  width: 180px;
}

.hotline-table {
  width: 40% !important;
}



.inline-search-block.fixed.big.show {
  top: 0px;
}

.inline-search-block.fixed.big {
  background: #fff;
  top: -200px;
  z-index: 30094;
  transition-duration: 0.5s;
}

.inline-search-block.show {
  top: 0px !important;
  background: #fff;
}

.inline-search-block.fixed {
  position: fixed;
  z-index: 997;
  background: #fff !important;
}

.show {
  display: block !important;
}

.inline-search-block {
  position: absolute;
  right: 0;
  top: -104px;
  width: 100%;
  z-index: 100;
  transition: all ease 0.3s;
}

.inline-search-block.with-close .search .search-input-div {
  padding-right: 58px;
}

.search .search-input-div {
  width: 70%;
}

.inline-search-block.fixed.big .search .search-input {
  padding: 0;
  font-size: 1.4667em;
  height: 132px;
  background: none;
  border: none;
  border-radius: 0;
}

.search .search-input {
  background: #f5f5f5;
  border: none;
  color: #444444;
  display: block;
  height: 34px;
  line-height: 18px;
  padding: 0 70px 0px 10px;
  vertical-align: top;
  width: 100%;
  border-radius: 3px;
}

.inline-search-block.fixed.big .search .search-button-div {
  top: 45px;
}

.search .search-button-div {
  position: absolute;
  top: 0px;
  right: 0;
}


.btn-search {
  background: #009ee1;
  font-size: 14px;
  display: block;
  margin-left: 18px;
  width: 225px;
  height: 45px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 70px;

  background: #01a6ff;
}

.inline-search-block.fixed.big .search .close-block {
  min-width: 16px;
}

.inline-search-block.with-close .search .close-block {
  display: block;
  position: absolute;
  right: 0;
  top: -2px;
  width: 48px;
  height: 48px;
  cursor: pointer;
}

.inline-search-block .close-block .close-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -7px 0 0 -7px;
  opacity: 0.35;
  background: none;
  cursor: pointer;
  width: 14px;
  height: 14px;
}

.inline-search-block .close-block .close-icons svg {
  display: block;
  background: none;
}

.svg.svg-close {
  width: 14px;
  height: 14px;
}

.svg.svg-close {
  cursor: pointer;
}

svg:not(:root) {
  overflow: hidden;
}


.overlay {
  display: block;
  opacity: 0;
  height: 100%;
  width: 100%;
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  z-index: -999;
  background: rgba(0, 0, 0, 0.4);
}

.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.show-overlay {
  opacity: 1;
  z-index: 3049;
}

input,
.btn,
button {
  outline: none !important;
}

.btn-search:hover {
  color: #fff;
  background: #48bfff;
}

.search-page .searchinput {
  position: relative;
  width: 100%;
  margin-bottom: 35px;
}

.search-page .searchinput input.q {
  width: 100%;
}

.search-page .searchinput input[type="text"] {
  color: #333;
  display: block;
  vertical-align: top;
  width: 100%;
  border-radius: 3px;
  padding: 0 52px 0 19px;
  height: 48px;
  font-size: 1em;
  border: 1px solid #f1f1f1;
}

.search-page .searchinput .btn-search {
  margin: 0px;
  text-align: center;
  padding: 0px;
  /* border: 1px solid #cccccc; */
  border-radius: 5px;
  height: 100%;
  transition: 0.4s;
}

.search-page .searchinput .btn-search {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: none;
  border: 0;
  color: white;
  width: 52px;
}

.search-page .searchinput .btn-search .svg {
  min-width: 16px;
  min-height: 18px;
  background-color: transparent;
  margin-top: 0;
}

.svg-search {
  width: 18px;
  height: 17px;
  background-image: url(../img/magnifying-glass2.svg);
  background-position: 100% !important;
  background-size: cover;
}

.catalog h1,
.category h1 {
  color: #333333;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 28px;
  border-bottom: 1px solid #cdcdcd;
}

.catalog-inner {
  padding-top: 25px;
}

.result-inner a {
  font-size: 23px;
  color: #009ee1;
  font-weight: bold;
  font-family: 'ProximaNovaBold';
}

.result-inner {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #cdcdcd;
}

.excerpt {
  font-size: 15px;
  color: #343434;
  font-family: 'ProximaNova';
  line-height: 1.2;
  overflow: hidden;
}

.news-tpl .excerpt {
  height: auto;
  margin-bottom: 15px;
}

.result-inner .detail {
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.date-social {
  padding-bottom: 20px;
  align-items: center;
}

.date-social .date {
  margin-right: 30px;
}

.meta-bottom {
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.separate {
  display: block;
  margin: 0 20px;
  height: 60px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.most {
  width: 50%;	
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.most a {
  display: flex;
}

.most a span {
  margin-right: 5px;
}

.news-cat {
  padding-bottom: 30px;
  margin-bottom: 41px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.news-cat .img {
  animation-name: header;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  border-radius: 5px;
}

.news-tpl .news {
  margin-top: 40px;
  align-items: baseline;
  flex-direction: column;
}

.uslugi .btn-detail {
  background: #009ee1;
  font-size: 16px;
  display: block;
  font-family: 'ProximaNova';
  margin-left: 0;
  width: auto;
  height: 45px;
  border-radius: 3px;
  display: inline-block;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 10px 30px;
  margin-right: 20px;
}

.card {
  margin-bottom: 40px;
  border: 1px solid #CCC;
  border-radius: 0;
  box-shadow: 0px 2px 3px 0px #999;
}

.card h5 {
  font-size: 20px;
  color: #009ee1;
  font-family: 'ProximaNovaBold';
  margin: 0;
}

.card-header .btn-link {
  width: 100%;
  height: 100%;
  padding: .75rem 1.25rem;
  text-decoration: none !important;
}

.card-header {
  padding: 0;
}

.docs-inner img {
  width: 40px;
  height: 40px;
  margin-left: 15px;
  margin-right: 15px;
}

.docs-inner {
  margin: 21px 0px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 20px;
}

.sitename h6 {
  color: #009ee1;
}

.header .mask {
  background-color: rgba(0, 0, 0, 0.4);
}

.header .container {
  position: relative;
}

.swiper-container {
  border-radius: 5px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: white;
}

.swiper-button-prev {
  left: 25px !important;
}

.swiper-button-next {
  right: 25px !important;
}

.name-qeust {
  font-size: 20px;
  color: #009ee1;
  font-family: 'ProximaNovaBold';
  margin-bottom: 15px;
}

.text {
  padding-left: 20px;
}

.quest-answ {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(131, 131, 131, 0.34901960784313724);
  margin-bottom: 30px;
}

.quest-answ2 {
  display: none;
}

.quest-usl {
  background: #009ee1;
  font-size: 16px;
  display: block;
  font-family: 'ProximaNova';
  margin-left: 0;
  width: auto;
  height: 45px;
  border-radius: 3px;
  display: inline-block;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 10px 30px;
  border: none;
  margin-bottom: 30px;
  margin-top: 20px;
}

.hide-xs {
  display: block !important;
}

.visible-xs {
  display: none !important;
}

.wp-block-table table,
.wp-block-table td,
.wp-block-table tr {
  border: 1px solid;
  padding: 10px;
}

form .wpcf7-submit {
  background: #009ee1;
  font-size: 14px;
  display: block;
  font-family: 'ProximaNova';
  margin-left: 0;
  width: 126px;
  height: 35px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #fff;
}

.social-list {
  display: flex;
}

.social-item {
  margin-right: 30px;
}

.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.kadnum-form {
  margin-bottom: 30px;
}

.kadnum-form__input {
  display: inline-block;
  margin-right: 10px;
}

.kadnum-form__button {
  display: inline-block; 
}

.kadnum-form__button--loading {
  background-image: url("../../../uploads/images/button-loading.gif"); 
  background-position: center; 
  background-size: 32px 32px;
  background-repeat: no-repeat;
}

.kadnum-form__button--loading span {
  opacity: 0;
}

.kadnum-form__table {
  margin-top: 10px;
}
.kadnum-form__th {
  padding-right: 20px;
}


/**/

.online-request-form {
  
}

.online-request-form select,
.online-request-form input,
.online-request-form textarea,
.online-request-form button,
.online-request-form label {
  display: block;
  width: 100%;
}
.online-request-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.online-request-form button {
  transition: all ease-in-out .2s;
}
.online-request-form button:hover {
  opacity: .7;
}

.online-request-form button.loading {
  background-color: black;
  opacity: .2;
}

.okved_table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid rgb(140 140 140);
  font-family: sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.okved_table th, td {
  width: 25%;
  text-align: center;
  border: 1px solid rgb(160 160 160);
  padding: 8px 10px;
}

/* #title_navigation{
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#title_navigation h2{
  font-size: 14px;
}

#list_links{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
} */

.div_choice_year{
  display: flex;
  align-items: center;
  margin: 15px 0 15px 0;
}
.div_choice_year button{
  padding: 0 9px 0 9px;
  font-size: 21px;
  margin-left: 25px;
}