@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&family=Roboto:wght@400;700&display=swap');

* {
  padding: 0;
  margin: 0;
  border: 0;
  font-family: 'Arial', sans-serif!Important;
  font-size: 14px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {

  width: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  font-weight: 400;
  font-size: 14px;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  /*list-style: none;*/
}

img {
  vertical-align: top;
}

a:hover {
    text-decoration: none!Important;
}

body.lock {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.wrapper {

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

/*
.btn {
  display: inline-block;
  padding: 0px 0px;
}
*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #16302a;
  z-index: 2;
}

.header__body {
  position: relative;
  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;
  height: 100px;
}

.header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  height: auto;
  position: relative;
  z-index: 4;
  margin-right: auto;
  margin-left: 160px;
}

.header2 {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: #004B95;
  transition: transform 0.1s cubic-bezier(0.8, 0.2, 0.2, 0.8);
}

.header2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 2;
    background-image: url(/assets/img/new_line.png);
  background-position: center bottom;
}
.hidden-header {
    transform: translateY(-100%);
}
.header2__body {
  position: relative;
  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;
  height: 100px;
}

.header2__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  height: auto;
  position: relative;
  z-index: 4;
  margin-right: auto;
  margin-left: 0;
}

.header__burger {
  display: block;
  position: relative;
  width: 30px;
  height: 18px;
  z-index: 3;
}

.header__burger span {
  background-color: #FFF;
  position: absolute;
  width: 100%;
  height: 2px;
  top: 8px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__burger::before,
.header__burger::after {
  content: "";
  background-color: #FFF;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__burger::before {
  top: 0;
}

.header__burger::after {
  bottom: 0;
}

.header__burger.active::before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
}

.header__burger.active::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: 8px;
}

.header__burger.active span {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.header__menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  height: 100%;
  background-color: #16302a;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  overflow: auto;
}

.header__menu.active {
  left: 0;
}

.menu {
  padding: 0px 50px;
  text-align: left;
}

.menu__list {
  display: block;
  position: relative;
  margin: 0px 0px 80px 0px;
  z-index: 2;
}

.menu__item {
  margin: 0px 0px 20px 0px;
}

.menu__item:last-child {
  margin: 0;
}

.menu__link {
  color: #c8a977;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.menu__link:hover {
  color: #fff;
}

.menu__img {
  padding: 120px 0px 0px 0px;
  margin: 0px 0px 20px 0px;
  text-align: center;
}

.menu__img img {
  max-width: 70px;
  height: auto;
}

.menu__info {
  font-size: 16px;
  line-height: 1.1;
}

.social-menu {
  position: relative;
  z-index: 5;
}

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

.social-menu__column {
  margin: 0px 55px 0px 0px;
}

.social-menu__column:last-child {
  margin: 0;
}

.social-menu__link img {
  width: 20px;
  height: 20px;
}

.social-nav {
  margin: 0px 0px 60px 0px;
}

.social-nav .social-menu__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.social-nav .social-menu__column {
  margin: 0;
}

.footer {

  padding: 30px 0;
  background-color: #004B95;
  margin-top: 50px;
}

.footer__container {

}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
padding-left:0;
}

.footer__info {
  max-width: 250px;
}

.footer__column {
  max-width: 350px;
}

.footer__logo {
  display: block;
  margin: 0px 0px 60px 0px;
}

.footer__logo img {
  width: 200px;
  height: auto;
}

.footer__copyright {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.footer__copyright p {
  margin: 0px 0px 20px 0px;
}

.footer__copyright p:last-child {
  margin: 0;
}

.footer__copyright p a {
  color: #fff;
}

.footer__item {
  margin: 0px 0px 7px 0px;
}

.footer__link {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: unset;

  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer-social {
  margin: 0px 0px 30px 0px;
}

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

.social-footer__column {
  margin: 0px 55px 0px 0px;
}

.social-footer__column:last-child {
  margin: 0;
}

.social-footer__link img {
  width: 20px;
  height: 20px;
}

/* Slider */

.slider {
  padding: 100px 0px 0px 0px;
  height: 650px;
  position: relative;
}

.slider .swiper-pagination {
  position: absolute !important;
  bottom: 0px;
}

.slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #a28078;
  opacity: 1;
}

.slider .swiper-pagination-bullet-active {
  background-color: #162f29;
  opacity: 1;
}

.slider__wrapper {
  position: relative;
}

.slider__item {
  position: relative;
}

.slider__item img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Search */

.search {
  background-color: #162f29;
  padding: 80px 0;
  position: relative;
}

.search__container {
  max-width: 1060px;
}

.search__container::after {
  position: absolute;
  content: "";
  width: 100%;
  max-width: 1060px;
  height: 3px;
  background-color: #bfa175;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.search__title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0px 0px 30px 0px;
}

.search__form {
  position: relative;
}

.search__input {
  position: relative;
  color: #16302a;
  font-size: 24px;
  font-weight: 400;
  width: 100%;
  height: 45px;
  border: 1px solid #897c5d;
  border-radius: 1px;
  background-color: #bfa175;
  padding: 0px 0px 0px 35px;
}

.search__input::-webkit-input-placeholder {
  color: #16302a;
}

.search__input::-moz-placeholder {
  color: #16302a;
}

.search__input:-ms-input-placeholder {
  color: #16302a;
}

.search__input::-ms-input-placeholder {
  color: #16302a;
}

.search__input::placeholder {
  color: #16302a;
}

.search__input:focus {
  -webkit-box-shadow: 0px 0px 5px #897c5d;
          box-shadow: 0px 0px 5px #897c5d;
}

.search__btn {
  position: absolute;
  top: 0;
  right: 0;
  color: #c8a977;
  font-size: 24px;
  font-weight: 400;
  line-height: 45px;
  text-transform: lowercase;
  background-color: #854e2f;
  border: 1px solid #61442d;
  height: 45px;
  padding: 0 25px;
}

/* Tabs */

.tabs {
  background-color: #162f29;
  padding: 80px 0 100px 0;
}

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

.tabs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
  height: 55px;
  background-color: #bfa175;
  color: #16302a;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #132e28;
}

.tabs__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(22, 48, 42)), to(rgb(72, 109, 120)));
  background: -o-linear-gradient(top, rgb(22, 48, 42) 0%, rgb(72, 109, 120) 100%);
  background: linear-gradient(180deg, rgb(22, 48, 42) 0%, rgb(72, 109, 120) 100%);
  padding: 30px;
  min-height: 200px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -10px;
}

.tabs__block {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
  padding: 0 10px;
}

.tabs__link {
  display: block;
  color: #c8a977;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0px 0px 10px 0px;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.tabs__link:hover {
  color: #fff;
}

.tabs__active {
  color: #c8a977;
  background-color: #162f29;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 1200px) {
  .slider {
    height: 550px;
  }
}

@media (max-width: 991.98px) {
  .header__logo {
    margin-left: 270px;
  }

  .social-menu__column {
    margin: 0px 25px 0px 0px;
  }

  .footer {
    padding: 30px 0;
  }

  .footer__link {
    font-size: 16px;
  }

  .slider {
    height: 450px;
  }

  .search {
    padding: 60px 0;
  }

  .search__title {
    font-size: 38px;
    margin: 0px 0px 20px 0px;
  }

  .tabs {
    padding: 60px 0 60px 0;
  }

  .tabs__head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .tabs__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
    font-size: 20px;
    height: 50px;
  }

  .tabs__item:nth-child(1) {
    border-right: 1px solid #132e28;
  }

  .tabs__item:nth-child(3) {
    border-right: 1px solid #132e28;
  }

  .tabs__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .tabs__block {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }

  .tabs__link {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .header__body {
    height: 80px;
  }

  .header__logo {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
  }

  .header__menu {
    width: 100%;
  }

  .menu__list {
    text-align: center;
    margin: 0px 0px 40px 0px;
  }

  .menu__link {
    font-size: 16px;
  }

  .menu__img {
    padding: 100px 0px 0px 0px;
  }

  .menu__img img {
    max-width: 80px;
  }

  .menu__info {
    text-align: center;
  }

  .social-menu {
    display: none;
  }

  .social-nav .social-menu__column {
    margin: 0px 30px 0px 0px;
  }

  .social-nav .social-menu__column:last-child {
    margin: 0;
  }

  .social-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0px 0px 40px 0px;
  }

  .footer {
    padding: 15px 0;
  }

  .footer__row {
    -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;
  }

  .footer__info {
    margin: 0px 0px 20px 0px;
    text-align: center;
  }

  .footer__column {
    text-align: center;
  }

  .footer__logo {
    margin: 0px 0px 20px 0px;
  }

  .footer__copyright p {
    margin: 0px 0px 10px 0px;
  }

  .footer__copyright {
    font-size: 12px;
  }

  .footer__item {
    margin: 0px 0px 10px 0px;
  }

  .footer__link {
    font-size: 14px;
    text-transform: unset;
  }

  .slider {
    padding: 80px 0px 0px 0px;
    height: 350px;
  }

  .slider .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }

  .search {
    padding: 40px 0;
  }

  .search__title {
    font-size: 28px;
  }

  .search__input {
    font-size: 20px;
    padding: 0px 0px 0px 25px;
    height: 35px;
  }

  .search__btn {
    font-size: 20px;
    height: 35px;
    line-height: 35px;
  }

  .tabs {
    padding: 30px 0 30px 0;
  }

  .tabs__item {
    font-size: 18px;
    height: 45px;
  }

  .tabs__items {
    min-height: 150px;
  }

  .tabs__link {
    font-size: 14px;
    margin: 0px 0px 5px 0px;
  }
}

@media (max-width: 479.98px) {
  .slider {
    height: 250px;
  }

  .search {
    padding: 30px 0;
  }

  .search__title {
    font-size: 20px;
    text-align: center;
  }

  .tabs__block {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}





.main_menu_wrap{
    width: 100%;

	transition: transform 0.1s cubic-bezier(0.8, 0.2, 0.2, 0.8);
	z-index: 100;
	position: sticky;
list-style: none;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);

  vertical-align: top;
  text-align: center;
  top: 99px;
}




@media (min-width: 992px){
	#main_menu_wrap{
		width: 100%;
		height: 100vh;
		position: absolute;
	}
}



.prozrachnaya_navigatsiya {
  margin: 0;

  font-size: 0;
  line-height: 0;

    width: 100%;

}
.prozrachnaya_navigatsiya ul {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		margin-bottom: 0;
		width: 100%;
}

.main_menu_wrap {
	height: 0;

	position: sticky;
	-webkit-transition: height 0.3s ease-in-out;
    -moz-transition: height 0.3s ease-in-out;
    -o-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
}

.main_menu_wrap.active {
	display: flex;
	height: 100vh;
}

@media (min-width: 992px){
	.prozrachnaya_navigatsiya ul {
		flex-direction: row;
		justify-content: space-between;
		margin-bottom: 0;
	}
	.main_menu_wrap {transition: transform 0.1s cubic-bezier(0.8, 0.2, 0.2, 0.8);
		display: flex;
		height: fit-content;
	}
}
.scroll-menu {
    transform: translateY(-100px);
}
#side_menu{
	transition: transform 0.1s cubic-bezier(0.8, 0.2, 0.2, 0.8);
}
.prozrachnaya_navigatsiya li a{
    width: max-content;
}
/*@media (min-width: 992px){
	.scroll-menu {
		transform: translateY(-100px);
	}
}*/

.prozrachnaya_navigatsiya li {
  display: inline-block;
  color: black;
  font-size: 14px;
  line-height: 1.1;

}

.prozrachnaya_navigatsiya li a {
  color: inherit;
  display: block;
  text-decoration: none;
  font-weight: 700;
  padding: 18px 12px;
  font-family: 'Roboto', sans-serif!Important;
}

.prozrachnaya_navigatsiya li:hover {
  background-color: #004B95;
  color:#fff;
}
.prozrachnaya_navigatsiya li {
	 display: flex;
	 justify-content: center;
}
@media (min-width: 994px) {
	.prozrachnaya_navigatsiya li {
	  width: fit-content;

	}


}

@media (max-width: 768px) {
	.prozrachnaya_navigatsiya li {
	  font-size: 16px;
	}
}

.mobile_right_menu__button{
	 background: #004b95;
	 padding: 15px 0;
    color: #FFF;
    font-weight: bold;

}
.mobile_right_menu__button svg{
	transition: transform 0.5s cubic-bezier(0.8, 0.2, 0.2, 0.8);
}
.mobile_right_menu__button.active svg{
    transform: rotateX(180deg);
}
.mobile_right_menu{
	height: 0;
		-webkit-transition: height 0.3s ease-in-out;
    -moz-transition: height 0.3s ease-in-out;
    -o-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
}
.mobile_right_menu.active{

}
.masha {
  color:black;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  padding: 30px 0px 30px 0px;
  padding-left:5%;
}

/* плитки департаментов на главной администрации*/
.column_adm {

  padding: 10px 10px;

}

/* Поплавок четыре колонки бок о бок */
.column {
  flex: 0 1 33.333%;
  padding: 10px 10px;
}
.column2 {
  float: left;
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 10px;
}

.column3 {
  display: flex;
  flex: 0 1 25%;
  padding-bottom: 20px;
  height: 100%;
}
.column a:hover, .column2 a:hover, .column3 a:hover{
	text-decoration: none!Important;
}
.column3 a {
  display: flex;
}
/*

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
  width:80%;
}


.row:after {
  content: "";
  display: table;
  clear: both;
}*/

/* Удалите лишние левые и правые поля, из-за заполнения */
.row3 {
  margin: 0 -5px;
  width:80%;
  display: flex;
  flex-wrap: wrap;
padding-bottom:50px;
}

/* Очистить поплавки после столбцов */
.row3:after {
  content: "";
  display: table;
  clear: both;

}


/* Удалите лишние левые и правые поля, из-за заполнения */
.row2 {margin: 0 -5px;
width:80%;
}

/* Очистить поплавки после столбцов */
.row2:after {
  content: "";
  display: table;
  clear: both;
}


/* Отзывчивые столбцы */
@media (max-width: 991.98px) {
  .column {
    flex: 0 1 50%;
  }
  .column3 {
    flex: 0 1 50%;
    margin: 0px 0px 20px 0px;
  }
}
@media (max-width: 767.98px) {
  .column {
    flex: 1 1 100%;
  }
  .column3 {
    flex: 1 1 100%;
  }
}
@media screen and (max-width: 600px) {
  .column2 {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .column3 {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

/*плитки департаментов на главной администрации*/
.adm_card_struct {
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
  padding: 16px;
  text-align: center;
  background-color: #fff;
  color: black;
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
}
.adm_card_struct:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: center;
  background-color: #004B95;
  color:white !important;
}

.column_adm:nth-child(1) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m11.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column_adm:nth-child(1):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m11.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column_adm:nth-child(2) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m2.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column_adm:nth-child(2):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m2.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column_adm:nth-child(3) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m3.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column_adm:nth-child(3):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m3.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column_adm:nth-child(4) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m1.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column_adm:nth-child(4):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m1.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}


.column_adm:nth-child(5) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m4.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column_adm:nth-child(5):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m4.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column_adm:nth-child(6) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m12.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column_adm:nth-child(6):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m12.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column_adm:nth-child(7) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m5.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column_adm:nth-child(7):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m5.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column_adm:nth-child(8) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m6.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column_adm:nth-child(8):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m6.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column_adm:nth-child(9) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m13.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column_adm:nth-child(9):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m13.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column_adm:nth-child(10) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m9.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column_adm:nth-child(10):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m9.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column_adm:nth-child(11) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m10.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column_adm:nth-child(11):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m10.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column_adm:nth-child(12) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m15.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column_adm:nth-child(12):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m15.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column_adm:nth-child(13) .adm_card div {
  height: 90px;
  background: url(/assets/img/m18.svg) right 100% no-repeat;
  background-size: 120px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column_adm:nth-child(13):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/_m18.svg) right 100% no-repeat;
  background-size: 120px 90px;
  flex: 1 1 auto;
}

.column_adm:nth-child(14) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m8.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column_adm:nth-child(14):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m8.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column_adm:nth-child(15) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m7.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column_adm:nth-child(15):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m7.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column_adm:nth-child(16) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m14.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column_adm:nth-child(16):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m14.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}


/* Стиль контейнера карточек */
.adm_card {
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
  padding: 16px;
  text-align: center;
  background-color: #fff;
  color: black;
  transition: all .3s linear;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
}

.adm_card:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: center;
  background-color: #004B95;
  color:white !important;
}

.adm_card h3 {
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  letter-spacing: 1.3px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}

.card2 {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: center;
  background-color: #fff;
  color:black;
  height: 100px;
  transition: all .3s linear;
}

.card2:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: center;
  background-color: #004B95;
  color:white;
}

.card2 h3 {
   font-size: 14px;
   font-weight: 700;
   font-family: 'Roboto', sans-serif;
}

.card3 {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: center;
  background-color: #fff;
  color:black;
  display: flex;
  border-top: 3px solid #BD903B;
  transition: all .3s linear;
}

.card3:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: center;
  background-color: #004B95;
  color:white;

}

.card3 h3 {
   line-height: 1.5;
   font-weight: 400;
   flex: 1 1 auto;
   font-family: 'Roboto', sans-serif;
   font-size: 14px;
}




.column:nth-child(1) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m11.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column:nth-child(1):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m11.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column:nth-child(2) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m2.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column:nth-child(2):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m2.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column:nth-child(3) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m3.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column:nth-child(3):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m3.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column:nth-child(4) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m1.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column:nth-child(4):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m1.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}


.column:nth-child(5) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m4.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column:nth-child(5):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m4.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column:nth-child(6) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m12.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column:nth-child(6):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m12.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column:nth-child(7) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m5.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column:nth-child(7):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m5.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column:nth-child(8) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m6.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column:nth-child(8):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m6.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column:nth-child(9) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m13.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column:nth-child(9):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m13.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column:nth-child(10) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m9.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column:nth-child(10):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m9.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column:nth-child(11) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m10.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column:nth-child(11):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m10.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column:nth-child(12) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m16.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column:nth-child(12):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m16.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column:nth-child(16) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m15.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column:nth-child(16):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m15.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column:nth-child(13) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m8.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column:nth-child(13):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m8.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column:nth-child(14) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m7.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column:nth-child(14):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m7.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}

.column:nth-child(15) .adm_card div {
  height: 90px;
  background: url(/assets/img/_m14.svg) right 100% no-repeat;
  background-size: 70px 90px;
  transition: all .3s linear;
  flex: 1 1 auto;
}
.column:nth-child(15):hover .adm_card div {
  height: 90px;
  background: url(/assets/img/m14.svg) right 100% no-repeat;
  background-size: 70px 90px;
  flex: 1 1 auto;
}


#js-show-iframe-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0px 0px 0px 0px;
  min-width: 293px;
  max-width: 100%;
  background: linear-gradient(138.4deg, #38bafe 26.49%, #2d73bc 79.45%);
  color: #fff;
  cursor: pointer
}
#js-show-iframe-wrapper .pos-banner-fluid * {
    box-sizing: border-box
}

#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2 {
    display: block;
    width: 180px;
    min-height: 36px;
    font-size: 16px;
    line-height: 20px;
    cursor: pointer;
    background: #0d4cd3;
    color: #fff;
    border: none;
    border-radius: 10px;
    outline: 0
}

#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:hover {
    background: #1d5deb
}

#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:focus {
    background: #2a63ad
}

#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:active {
    background: #2a63ad
}

/*<!--анимация -->*/

@-webkit-keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0
    }

    1% {
        display: block;
        opacity: 0
    }

    100% {
        display: block;
        opacity: 1
    }
}
/*тоже анимация*/
@keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0
    }

    1% {
        display: block;
        opacity: 0
    }

    100% {
        display: block;
        opacity: 1
    }
}

/*используемые шрифты*/

@font-face {
    font-family: LatoWebLight;
    src: url(https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Light.woff2) format("woff2"), url(https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Light.woff) format("woff"), url(https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Light.ttf) format("truetype");
    font-style: normal;
    font-weight: 400
}

@font-face {
    font-family: LatoWeb;
    src: url(https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Regular.woff2) format("woff2"), url(https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Regular.woff) format("woff"), url(https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Regular.ttf) format("truetype");
    font-style: normal;
    font-weight: 400
}

@font-face {
    font-family: LatoWebBold;
    src: url(https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Bold.woff2) format("woff2"), url(https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Bold.woff) format("woff"), url(https://pos.gosuslugi.ru/bin/fonts/Lato/fonts/Lato-Bold.ttf) format("truetype");
    font-style: normal;
    font-weight: 400
}

@font-face {
    font-family: RobotoWebLight;
    src: url(https://pos.gosuslugi.ru/bin/fonts/Roboto/Roboto-Light.woff2) format("woff2"), url(https://pos.gosuslugi.ru/bin/fonts/Roboto/Roboto-Light.woff) format("woff"), url(https://pos.gosuslugi.ru/bin/fonts/Roboto/Roboto-Light.ttf) format("truetype");
    font-style: normal;
    font-weight: 400
}

@font-face {
    font-family: RobotoWebRegular;
    src: url(https://pos.gosuslugi.ru/bin/fonts/Roboto/Roboto-Regular.woff2) format("woff2"), url(https://pos.gosuslugi.ru/bin/fonts/Roboto/Roboto-Regular.woff) format("woff"), url(https://pos.gosuslugi.ru/bin/fonts/Roboto/Roboto-Regular.ttf) format("truetype");
    font-style: normal;
    font-weight: 400
}

@font-face {
    font-family: RobotoWebBold;
    src: url(https://pos.gosuslugi.ru/bin/fonts/Roboto/Roboto-Bold.woff2) format("woff2"), url(https://pos.gosuslugi.ru/bin/fonts/Roboto/Roboto-Bold.woff) format("woff"), url(https://pos.gosuslugi.ru/bin/fonts/Roboto/Roboto-Bold.ttf) format("truetype");
    font-style: normal;
    font-weight: 400
}

@font-face {
    font-family: ScadaWebRegular;
    src: url(https://pos.gosuslugi.ru/bin/fonts/Scada/Scada-Regular.woff2) format("woff2"), url(https://pos.gosuslugi.ru/bin/fonts/Scada/Scada-Regular.woff) format("woff"), url(https://pos.gosuslugi.ru/bin/fonts/Scada/Scada-Regular.ttf) format("truetype");
    font-style: normal;
    font-weight: 400
}

@font-face {
    font-family: ScadaWebBold;
    src: url(https://pos.gosuslugi.ru/bin/fonts/Scada/Scada-Bold.woff2) format("woff2"), url(https://pos.gosuslugi.ru/bin/fonts/Scada/Scada-Bold.woff) format("woff"), url(https://pos.gosuslugi.ru/bin/fonts/Scada/Scada-Bold.ttf) format("truetype");
    font-style: normal;
    font-weight: 400
}

@font-face {
    font-family: Geometria;
    src: url(https://pos.gosuslugi.ru/bin/fonts/Geometria/Geometria.eot);
    src: url(https://pos.gosuslugi.ru/bin/fonts/Geometria/Geometria.eot?#iefix) format("embedded-opentype"), url(https://pos.gosuslugi.ru/bin/fonts/Geometria/Geometria.woff) format("woff"), url(https://pos.gosuslugi.ru/bin/fonts/Geometria/Geometria.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Geometria-ExtraBold;
    src: url(https://pos.gosuslugi.ru/bin/fonts/Geometria/Geometria-ExtraBold.eot);
    src: url(https://pos.gosuslugi.ru/bin/fonts/Geometria/Geometria-ExtraBold.eot?#iefix) format("embedded-opentype"), url(https://pos.gosuslugi.ru/bin/fonts/Geometria/Geometria-ExtraBold.woff) format("woff"), url(https://pos.gosuslugi.ru/bin/fonts/Geometria/Geometria-ExtraBold.ttf) format("truetype");
    font-weight: 800;
    font-style: normal
}
  #js-show-iframe-wrapper .bf-2 {
    position: relative;
    display: grid;
    grid-template-columns: var(--pos-banner-fluid-2__grid-template-columns);
    grid-template-rows: var(--pos-banner-fluid-2__grid-template-rows);
    width: 100%;
    max-width: 1060px;
    font-family: LatoWeb, sans-serif;
    box-sizing: border-box
}

#js-show-iframe-wrapper .bf-2__decor {
    grid-column: var(--pos-banner-fluid-2__decor-grid-column);
    grid-row: var(--pos-banner-fluid-2__decor-grid-row);
    padding: var(--pos-banner-fluid-2__decor-padding);
    background: var(--pos-banner-fluid-2__bg-url) var(--pos-banner-fluid-2__bg-position) no-repeat;
    background-size: var(--pos-banner-fluid-2__bg-size)
}

#js-show-iframe-wrapper .bf-2__logo-wrap {
    position: absolute;
    top: var(--pos-banner-fluid-2__logo-wrap-top);
    bottom: var(--pos-banner-fluid-2__logo-wrap-bottom);
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: var(--pos-banner-fluid-2__logo-wrap-padding);
    background: #2d73bc;
    border-radius: var(--pos-banner-fluid-2__logo-wrap-border-radius)
}

#js-show-iframe-wrapper .bf-2__logo {
    width: 128px
}

#js-show-iframe-wrapper .bf-2__slogan {
    font-family: LatoWebBold, sans-serif;
    font-size: var(--pos-banner-fluid-2__slogan-font-size);
    line-height: var(--pos-banner-fluid-2__slogan-line-height);
    color: #fff
}

#js-show-iframe-wrapper .bf-2__content {
    padding: var(--pos-banner-fluid-2__content-padding)
}

#js-show-iframe-wrapper .bf-2__description {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px
}

#js-show-iframe-wrapper .bf-2__text {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 20px;
    font-family: LatoWebBold, sans-serif;
    color: #fff
}

#js-show-iframe-wrapper .bf-2__text_small {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 18px;
    font-family: LatoWeb, sans-serif
}

#js-show-iframe-wrapper .bf-2__btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center
}
#js-show-iframe-wrapper{
	z-index: 0;
}



@media (min-width: 1400px){
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		max-width: 1350px;
	}
}



.departament .button {
    width: 100%;
    color: #004B95;
    border-top: 1px solid #BE913B;
    display: block;
    padding: 10px 0 10px 0;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease 0s;
}
.departament:nth-child(1) .button {
	border-top: 0px ;
}

.shadow {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(25, 78, 114, 0.63);
    -moz-box-shadow: 0px 0px 10px 0px rgba(25, 78, 114, 0.63);
    box-shadow: 0px 0px 10px 0px rgba(25, 78, 114, 0.63);
}
.row-department .block ol, ul {
     /*padding-left: 0; */
}

#side_menu{
	top: 75px;
	position: sticky;
	height: fit-content;

}

.bx-breadcrumb .bx-breadcrumb-item span {
    font-family: Arial,"Helvetica Neue",Helvetica,sans-serif!Important;
    font-size: 10px!Important;
    white-space: normal;
}
.bx-breadcrumb {
    margin: 0!Important;
}
body {

    background: #FFF!Important;
}

.prozrachnaya_navigatsiya li .main_menu_sub{
	display: none;
	width: 100%;
	position: absolute;
    padding: 35px;
    left: 0;
    background-color: #004b95;
    color: #fff;

}

.prozrachnaya_navigatsiya li .main_menu_sub a{
	padding: 8px 0px;
	font-weight: 100;
	width: fit-content;
	    text-align: start;
}
.main_menu_wrap {

		overflow-x: auto ;
	}
@media (min-width: 1399px){
.prozrachnaya_navigatsiya li:hover .main_menu_sub{
	display: flex;
	position: absolute;
	    top: 50px;
}
	.main_menu_wrap {

		overflow-x: unset;
	}
}
h2{
	margin: .5em 0 2em 0 !Important;
}












.form-control-text {
    color: #1C1C1C;
}
.form-control-text h2 {
    margin-top: 0;
}
.form-control-btn {
    text-align: center;
}
.form-act-btn {
    display: inline-block;
    margin: 0 0 0 -5px;
}
.form-control-btn a.btn,
.form-control-btn button.btn,
.form-act-btn button.btn {
    width: 270px;
    padding: 0;
    display: block;
    margin: 50px auto 30px auto;
}
.form-control-btn a.btn:hover {
    text-decoration: none;
}
.form-control-btn a {
    max-width: 497px;
    display: block;
    margin: 0 auto;
    text-decoration: none;
}
.form-control-btn a:hover {
    text-decoration: underline;
}
.form-control-btn {

}
.white-box_authors .form-label {
    text-align: left;
    line-height: 20px;
    padding-bottom: 4px;
}
.white-box_authors b,
.white-box_authors .form-label b {
    margin-top: 22px;
    display: block;
    margin-bottom: 14px;
}
.white-box_authors .form-choise {
    height: 40px;
    border: 1px solid #157FC4;
    display: inline-block;
    border-radius: 2px;
}
.white-box_authors .form-choise a {
    width: 135px;
    display: inline-block;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    background: #DCECF6;
    color: #157FC4;
}
.white-box_authors .form-choise a.active {
    background: white;
    color: #1C1C1C;
}
.white-box_authors .form-choise a:hover {
    background: #157FC4;
    color: white;
}
.white-box_authors .form-choise a:first-child {
    border-right: 1px solid #157FC4;
}
.white-box_authors .del {
    display: none;
    width: auto;
}
.white-box_authors .small-text,
.white-box_authors .small-text p {
    font-size: 14px;
    line-height: normal;
    color: #828282;
}
.white-box_authors .small-text .morelink {
    margin-top: 5px;
    display: inline-block;
    margin-bottom: 10px;
}
.white-box_authors .form-headline_mb0 {
    margin-bottom: 0;
}
.white-box_authors p {
    margin-top: 0;
    line-height: 22px;
    font-size: 16px;
    color: #1C1C1C;

}
.white-box_authors b {
    font-weight: 600;
    line-height: normal;
    font-size: 18px;
    color: #1C1C1C;
}
.white-box_authors .complete {
    display: none;
}
#where {
    display: none;
}
.white-box_authors .form-del-author {
    font-weight: 600;
    line-height: 40px;
    font-size: 14px;
    color: #157FC4;
}
.white-box_authors .form-add-author {
    margin: 15px 0;
}
.white-box_authors .form-textarea {
    margin: 20px 0 30px 0;
}
.btn-empty-blue {
    background: #FFFFFF;
    border: 1px solid #157FC4;
    color: #157FC4;
}
.alert-success-form {
    background: #157FC4;
    text-align: center;
    border-radius: 0;
    border: none;
    text-align: center;
    padding: 80px 20px 60px 20px;
}
.alert-success-form .col-10 {
    margin: 0 auto;
}
.alert-success-form p {
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    font-size: 20px;
    text-align: center;
    color: #FFFFFF;
}
.alert-success-form p b {
    line-height: 39px;
    font-size: 28px;
    color: white;
    font-weight: normal;
    margin-bottom: 38px;
}
.alert-success-form button {
    font-size: 16px;
    color: #157FC4;
    margin-top: 50px;
}
.alert-success-form-title {
    margin-bottom: 38px;
}
.alert-success-form button:hover {
    background: #106196;
}
.added-author {
    display: none;
}
.added-author.show-author {
    display: block;
}
.white-box_authors .filename {
    background: #fff;
    border: 0;
    margin: 20px 0 0px 0;
    padding-left: 35px;
}
.white-box_authors .show-upload {
    display: inline-block;
}
.white-box_authors .delete-upload {
    width: 20px;
    height: 24px;
    background: url(/bitrix/templates/gos_modern_blue_s1/images/all-icons-black.png) no-repeat 1px -100px;
    padding: 0;
    margin: 0px 0 -8px 15px;
    transform: scale(0.65);
    filter: opacity(0.50);
    cursor: pointer;
}
.white-box_authors .delete-upload:hover {
    filter: none;
}
.white-box_authors .form-file-upload {
    position: relative;
    overflow: hidden;
    width: 205px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #157FC4;
    border-radius: 30px;
    color: #157FC4;
    text-align: center;
}
.white-box_authors .form-file-upload:hover {
    background: #DCECF6;
}
.white-box_authors .form-file-upload input[type="file"] {
    display: none;
}
.filename {
    display: none;
    color: #157FC4;
    position: relative;
}
.filename:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 24px;
    display: inline-block;
    top: 0;
    left: 0;
    margin-right: 16px;
    background: url('/bitrix/templates/gos_modern_blue_s1/images/file-upload.png') 0 0 no-repeat;
}
.form-file-upload {
    margin: 30px 0 30px 0;
}
.white-box_authors .form-file-upload label {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.white-box_authors .form-file-upload span {
    line-height: 36px;
}
.white-box_authors .patronymic div:not(.form-label) {
    display: inline-block;
}
.white-box_authors .patronymic-label {
    margin-left: 40px;
}
.white-box_authors .form-calendar,
.white-box_authors .form-search {
    position: relative;
}
.white-box_authors .form-calendar input.input-block:hover ~ .icon-calendar,
.white-box_authors .form-search input.input-block:hover ~ .icon-search-black {
    filter: invert(1);
}
.white-box_authors .form-calendar input.input:focus:hover ~ .icon-calendar,
.white-box_authors .form-search input.input:focus:hover ~ .icon-search-black {
    filter: invert(0);
}
.icon-search-black {
    background-image: url(/bitrix/templates/gos_modern_blue_s1/images/all-icons-black.png);
    background-position: 0 -40px;
    background-color: none;
    border: none;
    outline: none;
}
.icon-calendar {
    background-image: url(/bitrix/templates/gos_modern_blue_s1/images/calendar.png);
    background-size: unset;
}
.icon-close-red {
    background-image: url(/bitrix/templates/gos_modern_blue_s1/images/close-red.png);
    width: 22px;
    height: 22px;
    margin-right: 11px;
    background-size: unset;
}
.white-box_authors .icon-search-black,
.white-box_authors .icon-calendar {
    top: 10px;
    position: absolute;
    right: 10px;
}
.white-box_authors .form-table,
.white-box_authors .form-empty-appeals {
    margin-top: 22px;
}
.white-box_authors .form-table .form-row,
.white-box_authors .form-table .form-caption {
    display: flex;
    margin: 0px 0 -1px 0;
    justify-content: space-between;
}
.white-box_authors .form-table .form-caption b,
.white-box_authors .form-table .form-row span {
    border: 1px solid #EDEDED;
    box-sizing: border-box;
    font-size: 14px;
    display: block;
    width: 100%;
    height: 100%;
    padding: 11px 14px;
}
.white-box_authors .form-table .form-caption {
    background: #F7F7F7;
}
.white-box_authors .form-table .form-caption b {
    margin: 0;
    line-height: 22px;
    font-size: 14px;
    color: #828282;
}
.white-box_authors .form-table .form-caption b:nth-child(1),
.white-box_authors .form-table .form-caption b:nth-child(3),
.white-box_authors .form-table .form-row span:nth-child(1),
.white-box_authors .form-table .form-row span:nth-child(3) {
    width: 404px;
}
.white-box_authors .jq-selectbox li.selected:hover,
.white-box_authors .jq-selectbox li:hover {
    color: #157fc4;
    background: white;
}
.white-box_authors .jq-selectbox__dropdown {
    padding-right: 0;
}
.input-block_statistic {
    max-width: 97px;
    margin-bottom: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif!Important;
}
h1{
	margin-bottom: 0.67em!Important;
}


/*!
 * Datepicker for Bootstrap v1.8.0 (https://github.com/uxsolutions/bootstrap-datepicker)
 *
 * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)
 */
.datepicker {
    padding: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    direction: ltr
}

.datepicker-inline {
    width: 220px
}

.datepicker-rtl {
    direction: rtl
}

.datepicker-rtl.dropdown-menu {
    left: auto
}

.datepicker-rtl table tr td span {
    float: right
}

.datepicker-dropdown {
    top: 0;
    left: 0
}

.datepicker-dropdown:before {
    content: '';
    display: inline-block;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #999;
    border-top: 0;
    border-bottom-color: rgba(0,0,0,0.2);
    position: absolute
}

.datepicker-dropdown:after {
    content: '';
    display: inline-block;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-top: 0;
    position: absolute
}

.datepicker-dropdown.datepicker-orient-left:before {
    left: 6px
}

.datepicker-dropdown.datepicker-orient-left:after {
    left: 7px
}

.datepicker-dropdown.datepicker-orient-right:before {
    right: 6px
}

.datepicker-dropdown.datepicker-orient-right:after {
    right: 7px
}

.datepicker-dropdown.datepicker-orient-bottom:before {
    top: -7px
}

.datepicker-dropdown.datepicker-orient-bottom:after {
    top: -6px
}

.datepicker-dropdown.datepicker-orient-top:before {
    bottom: -7px;
    border-bottom: 0;
    border-top: 7px solid #999
}

.datepicker-dropdown.datepicker-orient-top:after {
    bottom: -6px;
    border-bottom: 0;
    border-top: 6px solid #fff
}

.datepicker table {
    margin: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.datepicker td, .datepicker th {
    text-align: center;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: none
}

.table-striped .datepicker table tr td, .table-striped .datepicker table tr th {
    background-color: transparent
}

.datepicker table tr td.day:hover, .datepicker table tr td.day.focused {
    background: #eee;
    cursor: pointer
}

.datepicker table tr td.old, .datepicker table tr td.new {
    color: #999
}

.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover {
    background: none;
    color: #cecece;
    cursor: default
}

.datepicker table tr td.highlighted {
    background: #d9edf7;
    border-radius: 0
}

.datepicker table tr td.today, .datepicker table tr td.today:hover, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover {
    background-color: #fde19a;
    background-image: -moz-linear-gradient(to bottom, #fdd49a, #fdf59a);
    background-image: -ms-linear-gradient(to bottom, #fdd49a, #fdf59a);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdd49a), to(#fdf59a));
    background-image: -webkit-linear-gradient(to bottom, #fdd49a, #fdf59a);
    background-image: -o-linear-gradient(to bottom, #fdd49a, #fdf59a);
    background-image: linear-gradient(to bottom, #fdd49a, #fdf59a);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
    border-color: #fdf59a #fdf59a #fbed50;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #000
}

.datepicker table tr td.today:hover, .datepicker table tr td.today:hover:hover, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today.disabled:hover:hover, .datepicker table tr td.today:active, .datepicker table tr td.today:hover:active, .datepicker table tr td.today.disabled:active, .datepicker table tr td.today.disabled:hover:active, .datepicker table tr td.today.active, .datepicker table tr td.today:hover.active, .datepicker table tr td.today.disabled.active, .datepicker table tr td.today.disabled:hover.active, .datepicker table tr td.today.disabled, .datepicker table tr td.today:hover.disabled, .datepicker table tr td.today.disabled.disabled, .datepicker table tr td.today.disabled:hover.disabled, .datepicker table tr td.today[disabled], .datepicker table tr td.today:hover[disabled], .datepicker table tr td.today.disabled[disabled], .datepicker table tr td.today.disabled:hover[disabled] {
    background-color: #fdf59a
}

.datepicker table tr td.today:active, .datepicker table tr td.today:hover:active, .datepicker table tr td.today.disabled:active, .datepicker table tr td.today.disabled:hover:active, .datepicker table tr td.today.active, .datepicker table tr td.today:hover.active, .datepicker table tr td.today.disabled.active, .datepicker table tr td.today.disabled:hover.active {
    background-color: #fbf069 \9
}

.datepicker table tr td.today:hover:hover {
    color: #000
}

.datepicker table tr td.today.active:hover {
    color: #fff
}

.datepicker table tr td.range, .datepicker table tr td.range:hover, .datepicker table tr td.range.disabled, .datepicker table tr td.range.disabled:hover {
    background: #eee;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

.datepicker table tr td.range.today, .datepicker table tr td.range.today:hover, .datepicker table tr td.range.today.disabled, .datepicker table tr td.range.today.disabled:hover {
    background-color: #f3d17a;
    background-image: -moz-linear-gradient(to bottom, #f3c17a, #f3e97a);
    background-image: -ms-linear-gradient(to bottom, #f3c17a, #f3e97a);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3c17a), to(#f3e97a));
    background-image: -webkit-linear-gradient(to bottom, #f3c17a, #f3e97a);
    background-image: -o-linear-gradient(to bottom, #f3c17a, #f3e97a);
    background-image: linear-gradient(to bottom, #f3c17a, #f3e97a);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);
    border-color: #f3e97a #f3e97a #edde34;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

.datepicker table tr td.range.today:hover, .datepicker table tr td.range.today:hover:hover, .datepicker table tr td.range.today.disabled:hover, .datepicker table tr td.range.today.disabled:hover:hover, .datepicker table tr td.range.today:active, .datepicker table tr td.range.today:hover:active, .datepicker table tr td.range.today.disabled:active, .datepicker table tr td.range.today.disabled:hover:active, .datepicker table tr td.range.today.active, .datepicker table tr td.range.today:hover.active, .datepicker table tr td.range.today.disabled.active, .datepicker table tr td.range.today.disabled:hover.active, .datepicker table tr td.range.today.disabled, .datepicker table tr td.range.today:hover.disabled, .datepicker table tr td.range.today.disabled.disabled, .datepicker table tr td.range.today.disabled:hover.disabled, .datepicker table tr td.range.today[disabled], .datepicker table tr td.range.today:hover[disabled], .datepicker table tr td.range.today.disabled[disabled], .datepicker table tr td.range.today.disabled:hover[disabled] {
    background-color: #f3e97a
}

.datepicker table tr td.range.today:active, .datepicker table tr td.range.today:hover:active, .datepicker table tr td.range.today.disabled:active, .datepicker table tr td.range.today.disabled:hover:active, .datepicker table tr td.range.today.active, .datepicker table tr td.range.today:hover.active, .datepicker table tr td.range.today.disabled.active, .datepicker table tr td.range.today.disabled:hover.active {
    background-color: #efe24b \9
}

.datepicker table tr td.selected, .datepicker table tr td.selected:hover, .datepicker table tr td.selected.disabled, .datepicker table tr td.selected.disabled:hover {
    background-color: #9e9e9e;
    background-image: -moz-linear-gradient(to bottom, #b3b3b3, #808080);
    background-image: -ms-linear-gradient(to bottom, #b3b3b3, #808080);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b3b3b3), to(#808080));
    background-image: -webkit-linear-gradient(to bottom, #b3b3b3, #808080);
    background-image: -o-linear-gradient(to bottom, #b3b3b3, #808080);
    background-image: linear-gradient(to bottom, #b3b3b3, #808080);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);
    border-color: #808080 #808080 #595959;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
}

.datepicker table tr td.selected:hover, .datepicker table tr td.selected:hover:hover, .datepicker table tr td.selected.disabled:hover, .datepicker table tr td.selected.disabled:hover:hover, .datepicker table tr td.selected:active, .datepicker table tr td.selected:hover:active, .datepicker table tr td.selected.disabled:active, .datepicker table tr td.selected.disabled:hover:active, .datepicker table tr td.selected.active, .datepicker table tr td.selected:hover.active, .datepicker table tr td.selected.disabled.active, .datepicker table tr td.selected.disabled:hover.active, .datepicker table tr td.selected.disabled, .datepicker table tr td.selected:hover.disabled, .datepicker table tr td.selected.disabled.disabled, .datepicker table tr td.selected.disabled:hover.disabled, .datepicker table tr td.selected[disabled], .datepicker table tr td.selected:hover[disabled], .datepicker table tr td.selected.disabled[disabled], .datepicker table tr td.selected.disabled:hover[disabled] {
    background-color: #808080
}

.datepicker table tr td.selected:active, .datepicker table tr td.selected:hover:active, .datepicker table tr td.selected.disabled:active, .datepicker table tr td.selected.disabled:hover:active, .datepicker table tr td.selected.active, .datepicker table tr td.selected:hover.active, .datepicker table tr td.selected.disabled.active, .datepicker table tr td.selected.disabled:hover.active {
    background-color: #666 \9
}

.datepicker table tr td.active, .datepicker table tr td.active:hover, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover {
    background-color: #006dcc;
    background-image: -moz-linear-gradient(to bottom, #08c, #0044cc);
    background-image: -ms-linear-gradient(to bottom, #08c, #0044cc);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0044cc));
    background-image: -webkit-linear-gradient(to bottom, #08c, #0044cc);
    background-image: -o-linear-gradient(to bottom, #08c, #0044cc);
    background-image: linear-gradient(to bottom, #08c, #0044cc);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);
    border-color: #04c #0044cc #002a80;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
}

.datepicker table tr td.active:hover, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active:active, .datepicker table tr td.active:hover:active, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.active, .datepicker table tr td.active:hover.active, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active:hover.disabled, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:hover.disabled, .datepicker table tr td.active[disabled], .datepicker table tr td.active:hover[disabled], .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active.disabled:hover[disabled] {
    background-color: #04c
}

.datepicker table tr td.active:active, .datepicker table tr td.active:hover:active, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.active, .datepicker table tr td.active:hover.active, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled:hover.active {
    background-color: #039 \9
}

.datepicker table tr td span {
    display: block;
    width: 23%;
    height: 54px;
    line-height: 54px;
    float: left;
    margin: 1%;
    cursor: pointer;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

.datepicker table tr td span:hover, .datepicker table tr td span.focused {
    background: #eee
}

.datepicker table tr td span.disabled, .datepicker table tr td span.disabled:hover {
    background: none;
    color: #999;
    cursor: default
}

.datepicker table tr td span.active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover {
    background-color: #006dcc;
    background-image: -moz-linear-gradient(to bottom, #08c, #0044cc);
    background-image: -ms-linear-gradient(to bottom, #08c, #0044cc);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0044cc));
    background-image: -webkit-linear-gradient(to bottom, #08c, #0044cc);
    background-image: -o-linear-gradient(to bottom, #08c, #0044cc);
    background-image: linear-gradient(to bottom, #08c, #0044cc);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);
    border-color: #04c #0044cc #002a80;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
}

.datepicker table tr td span.active:hover, .datepicker table tr td span.active:hover:hover, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active.disabled:hover:hover, .datepicker table tr td span.active:active, .datepicker table tr td span.active:hover:active, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active.active, .datepicker table tr td span.active:hover.active, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled:hover.active, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active:hover.disabled, .datepicker table tr td span.active.disabled.disabled, .datepicker table tr td span.active.disabled:hover.disabled, .datepicker table tr td span.active[disabled], .datepicker table tr td span.active:hover[disabled], .datepicker table tr td span.active.disabled[disabled], .datepicker table tr td span.active.disabled:hover[disabled] {
    background-color: #04c
}

.datepicker table tr td span.active:active, .datepicker table tr td span.active:hover:active, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active.active, .datepicker table tr td span.active:hover.active, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled:hover.active {
    background-color: #039 \9
}

.datepicker table tr td span.old, .datepicker table tr td span.new {
    color: #999
}

.datepicker .datepicker-switch {
    width: 145px
}

.datepicker .datepicker-switch, .datepicker .prev, .datepicker .next, .datepicker tfoot tr th {
    cursor: pointer
}

.datepicker .datepicker-switch:hover, .datepicker .prev:hover, .datepicker .next:hover, .datepicker tfoot tr th:hover {
    background: #eee
}

.datepicker .prev.disabled, .datepicker .next.disabled {
    visibility: hidden
}

.datepicker .cw {
    font-size: 10px;
    width: 12px;
    padding: 0 2px 0 5px;
    vertical-align: middle
}

.input-append.date .add-on, .input-prepend.date .add-on {
    cursor: pointer
}

.input-append.date .add-on i, .input-prepend.date .add-on i {
    margin-top: 3px
}

.input-daterange input {
    text-align: center
}

.input-daterange input:first-child {
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px
}

.input-daterange input:last-child {
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0
}

.input-daterange .add-on {
    display: inline-block;
    width: auto;
    min-width: 16px;
    height: 18px;
    padding: 4px 5px;
    font-weight: normal;
    line-height: 18px;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
    vertical-align: middle;
    background-color: #eee;
    border: 1px solid #ccc;
    margin-left: -5px;
    margin-right: -5px
}

.datepicker .day {
    color: #135279;
}

.news-arrow a {
    color: #222;
	font-weight: 500;
	    text-decoration: none;
}

.news-arrow:after {
    background-image: url(/assets/img/GDMmHehQBWxynpaP4Q4BIsF84hw.svg);
}

.news-arrow:after {
    bottom: -7px;
}

.news-arrow:after {
    content: "";
    display: inline-block;
    position: relative;
    left: 3px;
    width: 16px;
    height: 10px;
    background-position: -4px -8px;
    transform: translateX(0) rotate( -90deg );
    transition: transform .1s ease-out;
}
.news-arrow a:hover {
	color: #222;
	text-decoration: none;
}
.news-arrow:hover:after {
    transform: translateX(5px) rotate(-90deg);
}


.news {
   padding: 60px 0 60px 0;
   text-align: center;
}

.news img {
   max-width: 100%;
}

.news__title {
   margin: 0px 0px 35px 0px;
}

.tabs-news__head {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   max-width: 1060px;
   margin: 0 auto 30px auto;
   max-width: 1060px;
}

.tabs-news__item {
   color: #16302a;
   font-size: 18px;
   font-weight: 600;
   line-height: 1.1;
   margin: 0px 30px 0px 0px;
   padding: 5px 0;
   opacity: 0.3;
   cursor: pointer;
   -webkit-transition: all 0.3s linear;
   -o-transition: all 0.3s linear;
   transition: all 0.3s linear;
}

.tabs-news__item:hover {
   opacity: 1;
}

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

.tabs-news__block {
   -webkit-box-flex: 0;
   -ms-flex: 0 1 33.333%;
   flex: 0 1 33.333%;
   margin: 0px 0px 10px 0px;
}

.tabs-news__card {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
   position: relative;
   width: 100%;
   height: 500px;
   box-shadow: 0px -200px 50px -70px #777b7c inset;
   -webkit-transition: all 0.3s ease;
   -o-transition: all 0.3s ease;
   transition: all 0.3s ease;
   overflow: hidden;
}

.tabs-news__img img {
   -webkit-transition: all 0.3s ease;
   -o-transition: all 0.3s ease;
   transition: all 0.3s ease;
}

.tabs-news__card:hover .tabs-news__img img {
   position: relative;
   z-index: -5;
   -webkit-transform: scale(1.03);
   -ms-transform: scale(1.03);
   transform: scale(1.03);
   box-shadow: none;
}

.tabs-news__elem {
   position: absolute;
   bottom: 0;
   padding: 10px 30px;
}

.tabs-news__img {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   -webkit-transition: all 0.3s ease;
   -o-transition: all 0.3s ease;
   transition: all 0.3s ease;
}

.tabs-news__img img {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   z-index: -5;
   -o-object-fit: cover;
   object-fit: cover;
}

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

.tabs-news__date {
   color: #fff;
   font-size: 12px;
   font-weight: 600;
   padding: 0px 20px 0px 0px;
   text-transform: uppercase;
   letter-spacing: 2px;
}

.tabs-news__dept {
   color: #c8a977;
   font-size: 12px;
   font-weight: 600;
   padding: 0px 0px 0px 5px;
}

.tabs-news__title {
   display: block;
   color: #fff;
   font-size: 20px;
   font-weight: 400;
   line-height: 1.2;
   text-align: left;
   padding: 5px 0px 0px 0px;
}
@media (max-width: 991.98px){
	.tabs-news__items {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

@media (max-width: 1200px) {
   .cnt-item {
      max-width: 960px;
   }

   .slider {
      height: 550px;
   }

   .tabs-news__head {
      max-width: 960px;
   }

   .tabs-news__items {
      /* margin: 0 -5px; */
   }

}

@media (max-width: 991.98px) {
   .title-item {
      font-size: 38px;
   }

   .head-item::before {
      top: -15px;
   }

   .head-item::after {
      bottom: -15px;
   }

   .cnt-item {
      max-width: 800px;
   }

   .header__logo {
      margin-left: 270px;
   }

   .social-menu__column {
      margin: 0px 25px 0px 0px;
   }

   .footer {
      padding: 20px 0;
   }

   .footer__link {
      font-size: 14px;
   }

   .slider {
      height: 450px;
   }

   .search {
      padding: 20px 0;
   }

   .search__title {
      font-size: 20px;
      margin: 0px 0px 20px 0px;
   }

   .tabs {
      padding: 60px 0 60px 0;
   }

   .tabs__head {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
   }

   .tabs__item {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
      flex: 0 1 50%;
      font-size: 20px;
      height: 50px;
   }

   .tabs__item:nth-child(1) {
      border-right: 1px solid #132e28;
   }

   .tabs__item:nth-child(3) {
      border-right: 1px solid #132e28;
   }

   .tabs__card {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
   }

   .tabs__block {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
      flex: 0 1 50%;
   }

   .tabs__link {
      font-size: 16px;
   }

   .tabs__hide {
      display: block;
      text-transform: uppercase;
   }

   .news {
      padding: 80px 0 40px 0;
   }

   .tabs-news__head {
      max-width: 800px;
   }

   .tabs-news__items {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
   }

   .tabs-news__block {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
      flex: 0 1 50%;
   }

   .tabs-news__card {
      height: 450px;
   }

   .tabs-news__title {
      font-size: 18px;
   }

   .resources {
      padding: 50px 0px 60px 0px;
   }

   .resources__title {
      margin: 0px 0px 70px 0px;
   }

   .resources__row {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
   }

   .resources__column {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
      flex: 0 1 33.333%;
      margin: 0px 0px 30px 0px;
   }

   .resources__img {
      margin: 0px auto 30px auto;
   }

   .banner {
      padding: 0px 0px 30px 0px;
   }

   .banner__row {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      padding: 30px 10px 30px 10px;
   }

   .banner__column {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
      flex: 0 1 50%;
      margin: 10px -10px;
   }
}

@media (max-width: 860px) {
   .cnt-item {
      max-width: 700px;
   }

   .tabs-news__head {
      max-width: 700px;
   }
}

@media (max-width: 767.98px) {
   .title-item {
      font-size: 28px;
   }

   .cnt-item {
      max-width: 600px;
   }

   .nav-item div {
      padding: 0px 10px 0px 10px;
   }

   .header__body {
      height: 80px;
   }

   .header__logo {
      margin: 0;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
      flex: 0 0 150px;
   }

   .header__menu {
      width: 100%;
   }

   .menu__list {
      text-align: center;
      margin: 0px 0px 40px 0px;
   }

   .menu__link {
      font-size: 16px;
   }

   .menu__img {
      padding: 100px 0px 0px 0px;
   }

   .menu__img img {
      max-width: 80px;
   }

   .menu__info {
      text-align: center;
   }

   .social-menu {
      display: none;
   }

   .social-nav .social-menu__column {
      margin: 0px 30px 0px 0px;
   }

   .social-nav .social-menu__column:last-child {
      margin: 0;
   }

   .social-nav {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin: 0px 0px 40px 0px;
   }
   .search {
      background-size: 220px, auto !important;
   }
   .tabs {
      background-size: 220px, auto !important;
   }


   .footer {
      padding: 10px 0;
      background-size: 220px, auto !important;
   }

   .footer__row {
      -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;
   }

   .footer__info {
      margin: 0px 0px 10px 0px;
      text-align: center;
   }

   .footer__column {
      text-align: center;
   }

   .footer__logo {
      margin: 0px 0px 20px 0px;
   }

   .footer__copyright p {
      margin: 0px 0px 10px 0px;
   }

   .footer__copyright {
      font-size: 12px;
   }

   .footer__nav {
      display: none;
   }

   .footer__title {
      font-size: 15px;
      font-weight: 400;
      text-align: center;
      margin: 0px 0px 10px 0px;
      position: relative;
      cursor: pointer;
      display: inline-block;
   }

   .footer__title::before,
   .footer__title::after {
      content: "";
      background-color: #c8a977;
      width: 10px;
      height: 2px;
      position: absolute;
      top: 7px;
      -webkit-transition: all 0.3s linear;
      -o-transition: all 0.3s linear;
      transition: all 0.3s linear;
   }

   .footer__title::before {
      content: "";
      left: -20px;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
   }

   .footer__title::after {
      content: "";
      left: -14px;
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
   }

   .footer__title.spoiler-active::before {
      content: "";
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
   }

   .footer__title.spoiler-active::after {
      content: "";
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
   }

   .footer__item {
      margin: 0px 0px 5px 0px;
   }

   .footer__link {
      font-size: 12px;
   }

   .slider {
      padding: 80px 0px 0px 0px;
      height: 350px;
   }

   .slider .swiper-pagination-bullet {
      width: 7px;
      height: 7px;
   }

   .search {
      padding: 40px 0;
   }

   .search__title {
      font-size: 28px;
   }

   .search__input {
      font-size: 18px;
      padding: 0px 0px 0px 20px;
      height: 35px;
   }

   .search__btn {
      font-size: 20px;
      height: 35px;
      line-height: 32px;
   }

   .tabs {
      padding: 30px 0 30px 0;
   }

   .tabs__item {
      font-size: 18px;
      height: 45px;
   }

   .tabs__card {
      min-height: 150px;
   }

   .tabs__link {
      font-size: 14px;
      margin: 0px 0px 5px 0px;
   }

   .news {
      padding: 60px 0 20px 0;
   }

   .tabs-news__head {
      max-width: 600px;
   }

   .tabs-news__block {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
      flex: 1 1 100%;
   }

   .tabs-news__title {
      font-size: 18px;
   }

   .resources {
      padding: 50px 0px 40px 0px;
   }

   .resources__title {
      margin: 0px 0px 50px 0px;
   }

   .resources__column {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
      flex: 0 1 50%;
      margin: 0px 0px 20px 0px;
   }

   .resources__img {
      margin: 0px auto 20px auto;
   }

   .banner__row {
      padding: 10px 0px 10px 0px;
   }

   .banner__column {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
      flex: 1 1 100%;
      margin: 10px 0px;
   }
}

@media (max-width: 650px) {
   .cnt-item {
      max-width: 500px;
   }

   .tabs-news__head {
      max-width: 500px;
   }
}

@media (max-width: 550px) {
   .cnt-item {
      max-width: 400px;
   }

   .tabs-news__head {
      max-width: 400px;
   }
}

@media (max-width: 479.98px) {
   .title-item {
      font-size: 20px;
   }

   .cnt-item {
      max-width: 350px;
   }

   .slider {
      height: 250px;
   }

   .search {
      padding: 30px 0;
   }

   .search__title {
      font-size: 20px;
      text-align: center;
   }

   .tabs__block {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
      flex: 1 1 100%;
   }

   .news {
      padding: 40px 0 10px 0;
   }

   .tabs-news__head {
      max-width: 350px;
      text-align: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
   }

   .tabs-news__item {
      text-align: center;
      padding: 5px 10px;
      margin: 0;
   }

   .tabs-news__card {
      height: 400px;
   }

   .resources {
      padding: 20px 0px 20px 0px;
   }

   .resources__title {
      margin: 0px 0px 30px 0px;
   }
}

@media (max-width: 400px) {
   .cnt-item {
      max-width: 300px;
   }

   .tabs-news__head {
      max-width: 300px;
   }
}


.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {

    color: #000;
}


.homepage_menu{
	background: #004B95;
	text-align: center;
	color: #FFF!Important;


}
.homepage_menu_content{
	color: #FFF!Important;
}
.homepage_menu .button{
	color: inherit;
    display: block;
    text-decoration: none;
    font-weight: 700;
	font-size: 20px;
    padding: 18px 12px;
    font-family: 'Roboto', sans-serif!Important;
	cursor:pointer;
	height: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
}
.homepage_menu .homepage_menu_border{
	border-bottom: solid 3px #d1972b;
}
.homepage_menu .button:hover{
	background: #004B95;
}
.homepage_tabs__item.active {
		background: #004B95;;
  		 color: #fff;
}
.homepage_tabs__item {
 		 background: #4a76b3;
  		 color: #fff;
}
	.homepage_menu_content {
		display: none;
}
.homepage_menu_content.active {
		display: block;
		background: #004B95;
}

/* .homepage_tabs__active:nth-child(1) .button{
  background: #4a76b3;
} */



.homepage_menu .homepage_menu_content a{
	color: #FFF!Important;
}
.homepage_menu .button:hover .homepage_menu_content{
	display: flex;
}

/*
.homepage_menu .homepage_menu_content_1{
	display: none;
}
.homepage_menu .homepage_menu_content_2{
	display: none;
}
.homepage_menu .button1:hover .homepage_menu_content_1{
	display: flex;
}

.homepage_menu .button2:hover .homepage_menu_content_2{
	display: flex;
}*/

.slider-main img {
	height: 100%;
}
.slider-main div{

	padding: 25px;
	height: 250px;
}


.slick-next:before, .slick-prev:before {
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    opacity: .75;
	color: #4d6783!Important;
}
.slider__item {
  padding: 0px 15px;
}
.slider__item img {
  max-width: 100%;
}

.form-iis {
  display: flex;
  flex-wrap: wrap;

}

.form-iis input[type="email"] {
      flex: 3 1 30ch;
    }


.form-iis input, .form-iis select {
	flex: 1 1 0ch;
    margin: .5rem;
	  border: none;
	  background: hsl(0 0% 93%);
	  border-radius: .25rem;
	  padding: .75rem 1rem;
}

.form-iis input[type="submit"] {
    background: #0777af;
    color: white;
    box-shadow: 0 .75rem .5rem -.5rem #0777af;
  }
  .select2-container {
  padding: 0.4rem 1rem;
    width: 100%!Important;
  }
.adm_content a {
    text-decoration: underline;
}
.footer ul li {
     list-style: none;
}
#side_menu a, .bx-breadcrumb-item a , .tabs-news__card a, .homepage_menu_content a, .news-arrow a, .sidebar-nav a, .b_calendar  a, .adm_card a{
    text-decoration: none!Important;
}
.homepage_menu .homepage_menu_content a{
	text-align: start;
}

.block:hover {
    cursor: pointer;
    box-shadow: 0 4px 24px 0 rgb(0 0 0 / 12%);
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    transition: transform 0.3s, box-shadow 0.3s;
    transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.block {
    border-radius: 4px;
    background-color: #fff;
    margin: 10px 0;
    box-shadow: 0 4px 5px 0 rgb(0 0 0 / 12%);
    transition: transform 0.3s, box-shadow 0.3s;
    transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.block section .title {
    height: 80px;
    overflow: hidden;
    margin: 0;
}

.block h3 {
    line-height: 1.3;
    font-size: 20px;
    color: #000;
}

.block a {
    text-decoration: none;
}

.block section {
    padding: 20px 30px;
}

.block .dat {
    padding-top: 10px ;
    color: #000;
}
.block:hover {
    cursor: pointer;
    box-shadow: 0 4px 24px 0 rgb(0 0 0 / 12%);
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    transition: transform 0.3s, box-shadow 0.3s;
    transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s;
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
.dep {
   display: flex;
   justify-content: space-between;
   margin: 10px 0px 0px 0px;
}

.dep>div {
   flex: 0 1 25%;
   padding: 0px 10px 0px 10px;
}

.dep__img {}



.dep__photo {
   max-width: 160px;
   max-width: 160px;
}

.dep__photo img {
   width: 160px;
   height: 160px;
   border-radius: 50%;
}

.dep__info {}

.dep__fio {
   font-size: 18px;
   font-weight: 600;
}

.dep__post {
   color: #004B95;
}

.dep__phone {}

.dep__phone h6 a {
   color: #004B95
}

.dep__address {
   color: #004B95;
}

@media (max-width:767.98px) {
   .dep {
      flex-direction: column;
      align-items: center;
      text-align: center;
   }

   .dep__post {
      text-align: center;
   }
}
.table-responsive.disabled{
	background-color: rgba(0, 0, 0, 0.075);;

}
#side_menu a:hover {
	transition: transform 0.1s cubic-bezier(0.8, 0.2, 0.2, 0.8);
}
#side_menu a:hover {
    color: #FFF !important;
	background-color: #004B95 !important;

}
.border-button{
color: #536a79;
    border: solid 1px #536a79;
    border-radius: 10px;
    width: 100%;
    display: block;
    padding: 0.5em;
    text-align: center;
}

@media (min-width: 992px){
.w-lg-30 {
    width: 30%!Important;
}
}
.departaments .button {
    width: 100%;
    color: #004B95;
    border-top: 1px solid #BE913B!Important;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgb(190, 145, 59);
    display: block;
    padding: 10px 0 10px 0;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease 0s;
	text-decoration: none!important;
}
.departaments.button:hover {
	transition: transform 0.1s cubic-bezier(0.8, 0.2, 0.2, 0.8);
}
.departaments .button:hover {
    color: #FFF !important;
	background-color: #004B95 !important;

}
/*
.header__burger {
   display: block;
   position: relative;
   width: 30px;
   height: 18px;
   z-index: 3;
   top: -10px;
   cursor: pointer;
}

.header__burger span {
   background-color: #FFF;
   position: absolute;
   width: 100%;
   height: 2px;
   top: 8px;
   border-radius: 10px;
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
}

.header__burger::before,
.header__burger::after {
   content: "";
   background-color: #FFF;
   position: absolute;
   width: 100%;
   height: 2px;
   left: 0;
   border-radius: 10px;
   -webkit-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
}

.header__burger::before {
   top: 0;
}

.header__burger::after {
   bottom: 0;
}

.header__burger.active::before {
   -webkit-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
   transform: rotate(-45deg);
   top: 8px;
}

.header__burger.active::after {
   -webkit-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
   transform: rotate(45deg);
   bottom: 8px;
}

.header__burger.active span {
   -webkit-transform: scale(0);
   -ms-transform: scale(0);
   transform: scale(0);
}*/

.main_menu_wrap {
	    z-index: 1000;
}
.header2 {

z-index: 500;
}


/* стиль для картинок в два ряда с отступами между ними в разделах: брошенных авто, имеющие признаки брошенных и эвакуированные авто */
.brosh-avto {
  max-width: 100%;
  height: auto;
  padding: 10px;
}


/*  Департамент экономики Предпринимательство и промышленность Муниципальная программа «Развитие малого и среднего предпринимательства, инвестиционной деятельности в городе Тобольске» Инфраструктура поддержки субъектов МСП */


.partnersimages {
  text-align: center;
  margin-bottom: 15px;
  margin-top: 10px;
}

.partnersitem {
  border: 1px solid #979797;
  padding: 10px;
  margin-bottom: 25px;
  min-height: 200px;
  max-width: 185px;
  margin: 10 10px;
  text-align: center;
}
.partnersitem img{
 /*width: 100%;*/
}

@media (min-width: 768px) .partners {
  padding: 0px;
}

.partnerstitle a{
  font-size: 10px;
  color: #000000;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
}

.partnerstitle a:link {
  font-size: 10px !important;
  color: #000000;
  text-decoration: none;
}

.partnerstitleh a {
  font-size: 10px;
  line-height: 1;
  color: #000000!important;
  font-weight: bold;
  padding: 15px 0px 20px 0px;
}


