@font-face {
  font-family: Ubuntu; 
  src: url(../fonts/Ubuntu-Light.ttf); 
  font-weight: 100;
}
@font-face {
  font-family: Ubuntu; 
  font-weight: 300;
  src: url(../fonts/Ubuntu-Regular.ttf); 
}
@font-face {
  font-family: Ubuntu; 
  font-weight: 400;
  src: url(../fonts/Ubuntu-Medium.ttf); 
}
@font-face {
  font-family: Ubuntu; 
  font-weight: 500;
  src: url(../fonts/Ubuntu-Bold.ttf); 
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Ubuntu;
  font-weight: 100; 
  font-size: 16px;
    color: #5f5f5f;
}
.container {margin: 0px 60px 105px;}
a {text-decoration: none; color: #0083b7;}

.btn {
  background-color: #0083b7;
  color: white;
  cursor: pointer;
  padding: 15px;
}

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

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

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

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

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

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

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

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

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

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

.justify-content-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-content-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.align-items-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.align-items-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-items-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.align-items-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.align-content-start {
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.align-content-end {
  -ms-flex-line-pack: end;
  align-content: flex-end;
}

.align-content-center {
  -ms-flex-line-pack: center;
  align-content: center;
}

.align-content-between {
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.align-content-around {
  -ms-flex-line-pack: distribute;
  align-content: space-around;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.align-self-auto {
  -ms-flex-item-align: auto;
  align-self: auto;
}

.align-self-start {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.align-self-end {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.align-self-center {
  -ms-flex-item-align: center;
  align-self: center;
}

.align-self-baseline {
  -ms-flex-item-align: baseline;
  align-self: baseline;
}

.align-self-stretch {
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

h1 { font-size: 48px; margin-bottom: 20px; }
h2 { font-size: 36px; line-height: 3em; }
h3 { font-size: 30px; }
h4 { font-size: 20px; }
h5 { font-size: 20px; }

/* CONTENT */
.padding-left-105 { padding-left: 105px;}
.padding-right-105 { padding-right: 105px;}
.padding-left-5 { padding-left: 5%;}
.margin-top-20 {margin-top: 20px;}

/* MAIN NAV */
.main-nav {
    width: 100%;
    margin-bottom: 20px;
    height: 70px;
    z-index: 2;
    top: 0;
}

.main-nav .logo img {
  width: 55px;
  height: auto;
}
.main-nav .menu { margin-right: 30px;}
.main-nav .menu ul li {
    display: inline;
    margin-right: 20px;
    text-align: center;
}
.main-nav .menu ul li a {
    font-weight: 300;
    color: #5f5f5f;
    display: inline-block;
    padding: .75rem 0;
    margin: 0;
    text-decoration: none;
    position: relative;
  display: inline-block;
}

/* HOVER-ЭФФЕКТ МЕНЮ */
.main-nav .menu ul li a::after {
    position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #0083b7;
  content: '';
  opacity: 0;
  -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
  transition: height 0.3s, opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  transform: translateY(-10px);
}
.main-nav .menu ul li a:hover::after,
.main-nav .menu ul li a:focus::after {
  height: 3px;
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

/* BUTTONS */
.btn-language,
.btn-search,
.btn-view,
.lang-menu a{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  margin-right: 7px;
}
.btn-language {font-weight: 400;}
.btn-search img, 
.btn-view img {
    width: 20px;
}
.btn-align-self-center img{
    width: 15px;
}
.btn-align-self-center{
    align-self: center;
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    width: 160px;
    height: 40px;
}
.btn-more{text-align: right;}

/* MOBILE NAVIGATION*/
/*.mobile-navigation{
    display: none;
    width: 100%;
    height: 80px;
    position: fixed;
    background-color: white;
    z-index: 2;
    margin-top: -90px; 
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
.mobile-navigation .logo-mobile img{
   width: 50px;
   margin: 10px; 
}*/

/*----------------------------*/

/* HEADER */
header.container {
    padding-left: 5%;
    padding-right: 20%; 
    height: 60vh;
    background:url('../img/header_bg.jpg');
    margin-bottom: 50px;
    position: relative;
}
header.container h1,
header.container p {  color: #fff; }



/* DIRECTIN CAROUSEL */

.owl-dots {
  position: absolute;
  top: -70px;
  right: 205px;
}
.owl-carousel button.owl-dot {
  background: none;
}
.owl-dots .owl-dot {
  margin-right: 10px;
}
.owl-dots .owl-dot:focus {
  outline: none; 
}
.owl-dots .owl-dot span {
  display: block;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #e4e4e4;
}
.owl-dots .owl-dot.active span {
  background: #0083b7;
}
.owl-nav {
  display: flex;
  position: absolute;
  top: -80px;
  right: 105px;
}
.owl-nav button[role="presentation"] {
  display: block;
  height: 40px;
  width: 40px;
  background: #0083b7;
}
.owl-nav button[role="presentation"].owl-prev {
  margin-right: 10px;
}
.owl-nav button[role="presentation"] img {
  width: 15px;
  margin-top: 3px;
}



/*---------------------------------------*/



/* NEWS  */
.news{
    background-color:#e4e4e4; 
    padding: 0 5% 50px;
}
.news-item{
    max-width: 470px;
    min-width: 300px;
    position: relative;
    margin-bottom: 20px;
}
.news-item-header{
    height: 290px;
    color: white;
    font-size: 1.4em;
    padding: 180px 25px 50px;
    font-weight: 400;
    background-position: center;
    background-size:cover;
}
.news-text{
    padding: 25px;
    background-color: white;
    height: 260px;
    
}
.news-footer{
    position: absolute;
    bottom: 25px;
}
.news-text p{
    line-height: 1.5em;
    margin-bottom: 40px;
}
date{font-weight: bolder;}


/* FOOTER */
footer{padding: 0 90px;}
footer hr {
  height: 3px;
  background:#e4e4e4;
  width: 100%;
  border: none;
  margin: 60px 0; 
}
footer hr:nth-child(2){display: none;}

.adm-links li a,
p.copy {
  color: #b1b1b1;
}
footer ul li {
  list-style-type: none;
  margin-bottom: 12px;
}
footer a {
  color: #5f5f5f;
}
footer .sotial-links img {
  display: block;
  height: 40px;
  margin-right: 15px;
  margin-bottom: 20px;
}
footer .sotial-links p:first-child {
  margin-bottom: 12px;
}
p.copy {
  margin-top: 35px;
  margin-bottom: 20px;
}
/*---Breadcrumbs---*/
.breadcrumbs {
  padding: 25px 110px;
  font-size: 14px;
}
.breadcrumb-item{
  color: #888888;
}
.breadcrumb-item.active{
  color: #0083b7;
}
.breadcrumb-item:first-child::before{
  content:none;
}
.breadcrumb-item::before{
  content: "/";
  padding-right: 5px;
  padding-left: 5px;
  color: #888888 !important;
}
/*---Breadcrumbs end---*/

/*---Content---*/
.content-wrap>div:not(.content-block) {
    display: none;
}
  .content-wrap{
     background-color: #ffffff;
    padding: 0px 110px;
    margin-bottom: 105px;
  }
  .section-title{
    font-size: 3em;
    color: #282828;
    font-weight: 500;
    margin-bottom: 45px;
    position: relative;
  }
  .section-title::before{
    content:" ";
    display: block;
    position: absolute;
    height: 100%;
    top:0;
    left:-110px;
    width: 90px;
    background-color: #0083b7;
  }
    /*---Aside nav---*/
    .aside-nav-wrap{
      margin-right: 30px;
      max-width: 20%;
      width: 20%;
      display: block;
    }
    ul.aside-nav {
        list-style: none;
        padding: 40px 0;
        background-color: #fff;
    }
    li.aside-nav-item {
      position:relative;
    }
    li.aside-nav-item a{
      color: #282828;
      display: block;
      padding: 12px 12px 12px 35px;
      transition: 0.3s;
    }
    li.aside-nav-item a:hover{
      background-color: rgba(212,212,212,0.22);
      /*color: #0083b7;*/
    }
    li.aside-nav-item.active{
      background-color: #0083b7;
    }
    li.aside-nav-item.active a{
      color: #fff;
    }
    li.aside-nav-item.active a:hover{
      color: #fff;
    }
    li.aside-nav-item.active::before{
      content: " ";
      position: absolute;
      display: block;
      width: 5px;
      height: 100%;
      top: 0;
      left: -5px;
      background-color: #0083b7;
    }
    li.aside-nav-item.active::after{
      content: " ";
      position: absolute;
      display: block;
      width: 30px;
      height: 100%;
      top: 0;
      right:  -30px;
      background-color: #0083b7;
    }
    /*---Aside nav end---*/
  .content{
    width: 80%;
    background-color: #fff;
    padding: 0px;
  }
  .page-title{
    font-size: 2.6em;
    color: #0082b7;
    margin-bottom: 45px;
    font-weight: bolder;
  }
  .content-text{
    padding: 0 10px;
    color:#282828;
    line-height: 1.2em;
  }
  .content-text > * {
    line-height: 1.5em;
  }
  .content-text h2, 
  .content-text h3,
  .content-text h4 {
    margin-bottom: 10px;
  }
  .content-text h5, 
  .content-text h6 {
    margin-bottom: 10px;
  }
  .content-text p{
    margin-bottom: 15px;
  }
  .content-text ul{
    margin-bottom: 15px;
    margin-left: 25px;
  }
  .content-text ul li {
    margin-bottom: 10px;
  }
  .content-text ul ul {
    margin-top: 10px;
  }
  .content-text h5{
    margin-bottom: 15px;
    font-weight: 400;
  }
.content-text img {
    width: 100%;
    height: auto;
    display: block;
}
.content-text .stucture-item {
  margin-bottom: 30px;
}
.content-text .stucture-item h5 {
  margin-bottom: 15px;
}
.content-text .stucture-item .fio {
  position: relative;
  padding-left: 30px;
}
.content-text .stucture-item .fio::before{
    content: "";
    width: 25px;
    display: block;
    position: absolute;
    height: 100%;
    left:0;
    background-color: #0083b7;
}
.content-text .stucture-item .addit-inf {
  margin-left: 30px;
}
.content-text .stucture-item .addit-inf p {
  margin-bottom: 10px;
}
a.toggle-link {
    display: inline-block;
    margin-bottom: 10px;
	position: relative;
}
a.toggle-link::before {
    content: " ";
    position: absolute;
    right: -25px;
    width: 0;
    height: 0;
    top: 3.5px;
    border-left: 14px solid #0083b7;
    border-bottom: 7px solid transparent;
    border-top: 7px solid transparent;
	transition: .3s ease-in-out;
}
a.toggle-link.is-opened::before {
    transform: rotate(90deg);
}
  a.download-doc {
    margin-bottom: 25px;
    padding: 10.5px 0 10.5px 50px;
    position: relative;
    color: #282828;
  }
  a.download-doc:hover{
    color:#0083b7;
  }
  a.download-doc::after{
    content: url(../img/icons/down-arrow.png);
    position: absolute;
    display: block;
    background-color: #ffffff;
    padding: 4px;
    left: 0;
    height: 32px;
  }
.electronic-appeal {
    /*max-width: 70%;
    background-color: #e8e8e8;*/
    padding: 4rem;
  border: 2px solid #0083b7;
}
.form-group {
    position: relative;
  margin-bottom: 35px;
}
/*.form-group label:not(.form-answer){
  position:absolute;
  top:10px;
  left: 5px;
  transition: all 300ms;
}*/
.form-group label[for="message"] {
    top: 0px;
}

.electronic-appeal input[type="email"], .electronic-appeal input[type="text"] {
    width: 100%;
    display: block;
    /*border: none;*/
    background-color: inherit;
    border: 1px solid #0083b7;
    padding: 7px 10px;
    font-size: 16px;
    font-weight: 100;
}
.electronic-appeal textarea {
    border: none;
    background-color: inherit;
    display: block;
    max-width: 100%;
    min-width: 100%;
    min-height: 22px;
    padding: 7px 10px;
    border: 1px solid #0083b7;
    font-family: inherit;
	font-size: 16px;
    font-weight: 100;
}
input.btn.btn-submit {
    border: none;
    padding: 15px;
    font-family: inherit;
    font-size: 16px;
}
input.btn.btn-submit:hover {
    box-shadow: 0px 0px 0px 1px #0083b7;
  color:#0083b7;
  background-color: #fff;
}
input[type="file"]{
    position: absolute;
    z-index: -99;
    opacity: 0;
}
input.btn.btn-submit[disabled] {
    background-color: #cecece;
}
input.btn.btn-submit[disabled]:hover{
    background-color: #cecece;
  box-shadow: none;
  color: #fff;
}
label[for="attachment"],label[for="ur-attachment"] {
    box-shadow: 0px 0px 0px 2px #0083b7;
    padding: 10px;
    display: inline-block;
    margin-left: 5px;
    background-color: #fff;
    position: relative !important;
    top: 0 !important;
    left: 0!important;
}
label[for="attachment"]:hover,label[for="ur-attachment"]:hover{
  cursor: pointer;
  box-shadow: none;
  background-color: #0083b7;
  color: #fff;
}
small#fileName{
  display: inline-block;
  margin-left: 10px;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
small.fileHelp {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    text-align: justify;
    padding: 5px;
}
form#individual input[type="radio"],
form#entity input[type="radio"] {
    display: none;
}
form#individual input[type="radio"]:checked + label::before,
form#entity input[type="radio"]:checked + label::before {
    border: 0.2em solid #d0cfcf;
    background: #0083b6;
}
form#individual input[type="radio"] + label::before,
form#entity input[type="radio"] + label::before {
    display: block;
    min-height: 0.6rem;
    min-width: 0.6rem;
    margin-right: 0.625rem;
    content: "";
    border: 0.2em solid #d0cfcf;
    background: #fff;
    border-radius: 50%;
}
form#individual input[type="radio"] + label,
form#entity input[type="radio"] + label {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.25s linear;
    line-height: initial;
}
.electronic-appeal .answer-type {
  margin-bottom:30px;
}
.electronic-appeal .answer-type p {
  margin-right:50px;
  margin-bottom:0px;
}
.electronic-appeal .answer-type div {
  display:flex;
}
.electronic-appeal .answer-type div label {
  margin-right:30px;
}
/*.contact-block {
    width: 475px;
    padding: 50px;
    font-size: 14px;
    background-color: #fff;
    box-shadow: 2px 3px 9px 0px #e8e8e8;
    z-index: 1;
    position: relative;
}*/
p.special span {
    display: block;
    font-size: 24px;
    color: #0083b7;
    margin-top: 5px;
    font-weight: 300;
}
.contact-block p {
    margin-bottom: 25px;
}
a.btn.contact-btn.d-flex.align-center {
    width: 175px;
}
.btn.contact-btn img {
    width: 15px;
    height: 15px;
    margin-left: 20px;
    margin-top: 6px;
}
.map-wrapper {
    position: relative;
    margin-top: 50px;
    height: 40vh;
}
.map {
    position: absolute;
    width: 100%;
    height: 100%;
	top:0;
	left: 0;
}
.ymaps-2-1-69-controls__toolbar {
	display: none;
}
/*---Content end---*/

.mobile-topic-menu,
.mobile-topic-menu_title {
  display: none;
}

.icon {
  transition: 0.3s;
  width: 40px;
  height: 40px; 
  margin-right: 15px;
  margin-bottom: 15px;
}
.icon.facebook {
  background: url('../img/icons/facebook.svg') no-repeat;
}
.icon.linkedin {
  background: url('../img/icons/linkedin.svg') no-repeat;
}
.icon.vk {
  background: url('../img/icons/vk.svg') no-repeat;
}
.icon.facebook:hover {
  background-image: url('../img/icons/facebook-hover.svg');
}
.icon.linkedin:hover {
  background-image: url('../img/icons/linkedin-hover.svg');
}
.icon.vk:hover {
  background-image: url('../img/icons/vk-hover.svg');
}


.mobile-display-flex {
  display: flex !important;
}
.mobile-display {
  display: block !important;
}
.position-rel {
    position: relative;
}
.lang-menu,
.search-menu {
  display: none;
  position: absolute;
  background: white;
  color: #232323;
  z-index: 1;
}
.lang-menu {
  left: 57px;
}
.lang-menu.sec.mobile-display {
    left: 114px;
}
.search-menu {
  width: 350px;
  padding: 10px;
  right: 0;
}
.lang-menu a:not(.active-lang) {
  cursor: pointer;
}
.lang-menu .active-lang {
  color: #ccc;
}
.lang-menu a:hover:not(.active-lang) {
  background: #0083b7;
  color: white;
}
.search-menu form {
  position: relative;
}
.search-menu input[name=q] {
  height: 30px;
  padding: 7px;
  width: 303px;
  font-size: 14px;
}
.search-menu .btn-go{
  width: 30px;
  height: 30px;
  background: #0083b7;
}
.search-menu .btn-go {
  position: absolute;
  top: 0;
  right: -30px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-menu .btn-go img {
    height: 18px;
}
.lang-menu a {
  margin-right: 0;
}

footer .container {
  margin-bottom: 40px;
}
footer a:hover {
  color: #0083b7;
}
a.btn.btn-form {
  background-color: white;
  border: 2px solid #0083b7;
  border-bottom: none;
  color: #0083b7;
  padding: 15px;
  display: inline-block;
  transition: 0.3s;
}
a.btn.btn-form.active {
  background-color: #0083b7;
  color: white;
}
a.btn.btn-form:hover:not(.active) {
  background-color: #6db2ce;
  border: 2px solid #6db2ce;
  color: white;
  border-bottom: none;
}
#entity-form {
  display:none;
}


button.mobile-menu-open {
  display:none;
}

/* ----  ---- */

.head-wrap {
    margin-bottom: 50px;
}

.head-photo {
    width: 25%;
}

.head-info {
	width: 75%;
    padding: 0 0 0 40px;
}

.head-info.full {
    width: 100%;
    padding: 0;
}

h4.head-name {
    text-transform: uppercase;
}

h4.head-name, p.head-position{
	font-weight: 600;
}

.head-info hr {
    height: 3px;
    border: 0;
    background-color: #0083b7;
    margin: 30px 0;
}

/* ----  ---- */


/* Calendar */





/*HEADER NEW*/
header {
    max-width: 1500px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 20px;
    overflow: hidden;
}
.main-nav .logo img {
    width: 80px;
    height: auto;
}
.main-nav {
    width: 100%;
    margin-bottom: 25px;
    height: 70px;
    z-index: 2;
    top: 0;
}
.container.d-flex.justify-content-between.align-items-center {
    float: left;
}
div#name-organization {
    float: left;
}
div#name-organization h1 {
    font-size: 35px;
    padding: 15px 0px;
    color: #0082b7;
margin-bottom:0px;
}
header div#mobile-menu.d-flex.align-center {
    float: right;
    padding: 25px 0px;
    margin-bottom: 0px;
margin: 0px 60px;
}
.citata {
    clear: both;
    text-align: right;
    float: right;
    font-family: -webkit-body;
margin: 0px 70px;
}
.d-flex.position-rel>div:not(.search-menu) {
    width: 50px;
    height: 50px;
}
.search-menu.mobile-display-flex {
    top: 60px;
    right: 0px;
}
a#btn-dis {
    width: 50px;
    height: 50px;
}
header .container {
       margin: 10px 60px 8px;
}

/*   */
.footer_image
{
float:left;
padding-right: 5px;
}

.second_li li
{
	margin-bottom:39px;
}
.last_item{
	margin-bottom:0px;
}
.chasi_image
{
	margin-top:5px;
}
.third_li_margins
{
	margin-top: 28px;
	margin-left:21px;
}

/*   */
#profsouz .first_level{

    font-weight: bold;
    padding: 0px;
    margin: 0px;
}
#profsouz .second_level{

    font-weight: bold;
    text-indent: 10px;
    padding: 0px;
    margin: 0px;
}
#profsouz .third_level{
    text-indent: 20px;
    padding: 0px;
    margin: 0px;
    margin: 0px;
}
#profsouz .hidden_div
{
    display: none;
}
#profsouz .down_page:hover{
    cursor: pointer;
    color: #0083B7;
}
#profsouz .without_margin p
{
margin:0px;
}
#profsouz .item_adm
{
	border-bottom: 1px solid grey;
	padding: 5px;
	margin-left:32px;
}
#profsouz .padding_div
{
	margin-left:20px;
}
#symbol_profsouz
{
	float:left;
	max-width:300px;
}


/*Other css*/
tr.head-table-perechen {
    background: #0083b7;
    color: #fff;
}
tr.head-table-perechen td {
    padding-top: 11px;
}
#perechen-admin td {
    padding: 10px;
}
div#perechen-admin {
    overflow-x: scroll;
}



/* ------ MEDIA QUARIES ------- */
@media all and (max-width: 1725px){
  .news-item{max-width: 420px;}
}

@media all and (max-width: 1570px){
  .news-item{max-width: 380px;}
}

@media all and (max-width: 1420px){
  .news-item{max-width: 330px;}
}

@media all and (max-width: 1400px) {
  .content-wrap {
    padding: 60px 50px;
  }
  .section-title::before {
    left: -50px;
    width: 30px;
  }
  .footer-c.container {
    padding-left: 50px;
    padding-right: 50px;
  }
  header h1 { 
    font-size: 28px; 
    margin-bottom: 20px;
    margin-top: 0 !important; 
  }
  header.container {
    padding: 50px;
    height: 50vh !important;
  }  
}
@media all and (max-width: 1360px){
div#name-organization h1 {
    font-size: 30px;
    padding: 15px 0px;
    color: #0082b7;
    margin-bottom: 0px;
}

header .container {
    margin: 10px 30px 8px 60px;
}

.main-nav .logo img {
    width: 60px;
    height: auto;
}
}
@media all and (max-width: 1325px){
  .electronic-appeal .answer-type {
    display: block !important;
  }
  .electronic-appeal .answer-type p {
    margin-bottom: 10px;
  }
}
@media all and (max-width: 1252px){
  .news-item{max-width: 320px;}
  .news-item-header p{font-size: 20px;}
  .news-text p{font-size: 15px;}
  .owl-dots {
    position: relative;
    top: 20px;
    text-align: center;
    left: auto;
    right: auto;
  }
  .owl-nav button[role="presentation"]{
    display: none;
  }
  li.aside-nav-item {
    padding: 12px 12px 12px 20px;
    position: relative;
  }
}

@media all and (max-width: 1200px) {
  .aside-nav-wrap {
    max-width: 30%;
  }
}

@media all and (max-width: 1024px) {
  .news-item {max-width: 100%;}
  .news-text {height: 200px;}
  .content {
    padding: 40px 30px;
  }
  .footer-c.container .footer-div {
    flex-wrap: wrap;
  }
  footer .footer-div div.footer_column {
    margin-bottom: 30px;
  }
}

@media all and (max-width: 980px){
  .container {
    margin: 0px 15px 105px;
  }
  .content-wrap {
    padding: 60px 25px;
  }
  .section-title::before {
    left: -25px;
    width: 15px;
  }
}

@media all and (max-width: 864px){
  .container {margin:0 0 105px 0;}
  header.container { height: 80vh; }
  header h1{ margin-top: 10%;}
  header p {font-size: 15px;}
  h2{font-size: 26px;}
  footer{padding: 0 60px;}
  footer .container{margin-bottom: 20px;}
  footer hr:nth-child(2){display: block;}
  .adm-links li a, p.copy { color: #5f5f5f; }
  footer hr {margin: 30px 0; }
  .news{padding: 50px 5%;}
  date{font-size: 14px;}
  .news-text {height: auto;}
ul.left-menu {
    display: none;
}

.breadcrumbs {
    display: none;
}


.citata {
    display: none;
}


div#name-organization {
    display: none;
}
  .electronic-appeal {
    padding: 3rem;
    border: 2px solid #0083b7;
  }

  /* MOBILE NAV */
  .container {
    margin: 0 15px;
  }
  .aside-nav-wrap {
    display: none;
    position: absolute;
    margin-right: 0px;
    width: 80%;
    top: 20%;
  }
  .content-wrap {
    padding: 0px 15px;
  }
  .content {
    width: 100%;
    padding: 40px 40px;
  }
  .mobile-topic-menu {
    display: inline-block;
    margin-left: 25px;
    background: #0083b7;
    font-size: 16px;
    padding: 10px;
    color: white;
    font-weight: 300;
    width: 133px;
    cursor: pointer;
  }
  ul.aside-nav {
    padding: 15px 0;
  }
  .section-title::before {
    left: -55px;
    width: 35px;
  }
  .section-title {
    font-size: 2em;
  }
  .page-title {
    font-size: 1.6em;
    margin-bottom: 35px;
  }
  .mobile-topic-menu_title {
    display: block;
  }
  #mobile-menu {
    display: block;
    position: absolute;
    background: white;
    top: 15px;
    right: 3px;
    z-index: 10;
    width: auto;
    padding: 0px !important;
  }
  #mobile-menu ul li {
    display: block;
    text-decoration: none;
    margin: 15px 0;
    text-align: left;
  }
  .main-nav .icon-bar {
    background: #0082b7;
    margin: 9px auto !important;
    display: block;
    width: 35px;
    height: 4px;
    border-radius: 1px;
  }
  button.mobile-menu-open {
	display:block;
    border: none;
    background: #ffffff;
    cursor: pointer;
	float: right;
    margin: 15px 13px;
    height: 50px;
    width: 50px;
  }
  .main-nav {
    z-index: 1;
    height: 85px;
    position: relative;
    background: white;
    margin-bottom: 0;
  }
  .main-nav .menu {
    margin-bottom: 30px;
  }
  .main-nav .menu ul li a {
    padding: .35rem 0;
  }
  #bck-grd {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
  }
  .search-menu {
    left: -10px;
  }

	.head-photo {
		width: 100%;
		margin-bottom: 15px;
	}

	.head-info {
    	width: 100%;
    	padding: 0;
	}
.main-nav .icon-bar {
    margin: 6px auto;
}

.main-nav .logo img {
    width: 60px;
    height: auto;
}

header {
    margin-top: 0px;
    margin-bottom: 0px;
    background: #fff;
    z-index: 3;
    padding-top: 10px;
    position: relative;
}

header .container {
    margin: 0px 13px 8px;
}
#mobile-menu-top {
    display: none;
    position: absolute;
    background: white;
    top: 130px;
    left: 0;
    z-index: 10;
    width: 100%;
    padding: 0px;
    padding-top: 0px;
}
#horizontal-multilevel-menu li {
    display: block;
    border-bottom: 2px solid #052736;
    padding: 0px;
    font-size: 20px;
}

#horizontal-multilevel-menu li a.root-item, #horizontal-multilevel-menu li a.root-item-selected {
    color: #fff;
    font-weight: bold;
    padding: 25px 12px;
}

#horizontal-multilevel-menu li ul {
    display: none;
    position: unset;
    width: 100%;
    padding: 0px;
    background: #ffffff;
    float: none;
    min-height: unset;
box-shadow: none;
}

#horizontal-multilevel-menu li ul li {
    padding: 10px 6px;
    /* text-align: center !important; */
}

#horizontal-multilevel-menu li ul li a {
    text-align: left;
    color: #0f719d !important;
    padding: 10px 5px;
}
////////////////////////////////////////////////////////////////////////////
#horizontal-multilevel-menu li:hover ul, #horizontal-multilevel-menu li.jshover ul, #horizontal-multilevel-menu li li:hover ul, #horizontal-multilevel-menu li li.jshover ul, #horizontal-multilevel-menu li li li:hover ul, #horizontal-multilevel-menu li li li.jshover ul, #horizontal-multilevel-menu li li li li:hover ul, #horizontal-multilevel-menu li li li li.jshover ul, #horizontal-multilevel-menu li li li li li:hover ul, #horizontal-multilevel-menu li li li li li.jshover ul {
    display: none;
    }
#horizontal-multilevel-menu li {
    display: block;
    border-bottom: 2px solid #052736;
    padding: 0px;
    font-size: 20px;
    }
#horizontal-multilevel-menu li a.root-item, #horizontal-multilevel-menu li a.root-item-selected {
    color: #fff;
    font-weight: bold;
    padding: 25px 12px;
    text-align: left;
    }
  #mobile-menu ul li {
    display: block;
    text-align: left;
    text-decoration: none;
    margin: 5px 0;
  }
li.item:not(.not-sub)>a:after, li.item-selected:not(.not-sub)>a:after {
    content: "";
    position: absolute;
    width: 74px;
    height: 74px;
    top: 0px;
    background: #318fb5;
    right: 0;
    background-image: url(/upload/iblock/white_arrow.png);
    background-repeat: no-repeat;
    background-size: 25%;
    background-position: center;
}
li.item:not(.not-sub)>a:after, li.item-selected:not(.not-sub)>a:after {
    content: "";
    position: absolute;
    width: 74px;
    height: 74px;
    top: 0px;
    background: #318fb5;
    right: 0;
    background-image: url(/upload/iblock/white_arrow.png);
    background-repeat: no-repeat;
    background-size: 25%;
    background-position: center;
}
#horizontal-multilevel-menu li.opened {
    background: #fff !important;
    /* color: #318fb5 !important; */
}
#horizontal-multilevel-menu li.opened a.root-item, #horizontal-multilevel-menu li.opened a.root-item-selected {
    color: #0082b7;
}
li.item.opened>a:after, li.item-selected.opened>a:after {
    content: "";
    position: absolute;
    width: 74px;
    height: 74px;
    top: 0px;
    background: #dfdfdf;
    right: 0;
    background-image: url(/upload/iblock/grey_arrow.png);
    background-repeat: no-repeat;
    background-size: 25%;
    background-position: center;
}
#horizontal-multilevel-menu li.item:hover, #horizontal-multilevel-menu li.item.jshover, ltilevel-menu li.item-selected:hover, #horizontal-multilevel-menu li.item-selected.jshover {
    background: none;
}
#horizontal-multilevel-menu li:hover ul, #horizontal-multilevel-menu li.jshover ul, #horizontal-multilevel-menu li li:hover ul, #horizontal-multilevel-menu li li.jshover ul, #horizontal-multilevel-menu li li li:hover ul, #horizontal-multilevel-menu li li li.jshover ul, #horizontal-multilevel-menu li li li li:hover ul, #horizontal-multilevel-menu li li li li.jshover ul, #horizontal-multilevel-menu li li li li li:hover ul, #horizontal-multilevel-menu li li li li li.jshover ul {
    display: none;
}
}



@media all and (max-width: 700px){
  header.container {height: 70vh !important;}
  .electronic-appeal .answer-type div {
    display: block;
  }
  .electronic-appeal .answer-type div label {
    margin-bottom: 7px;
  }
}
@media all and (max-width: 588px) {
  a.btn.btn-form {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    border-bottom: 2px solid #0083b7;
  }
}
@media all and (max-width: 575px) {
  .content-wrap {
    padding: 0px 15px;
  }
  .section-title {
    margin-bottom: 30px;
  }
  .section-title::before {
    display: none;
  }
  .footer-c.container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .electronic-appeal {
    padding: 1.7rem;
  }
}

@media all and (max-width: 560px){
	.content-text .contacts-list { display: block!important; }
  header p {display: none;}
  header.container {height: 40vh !important;}
  header h1 { font-size: 22px; }
  footer{padding: 0 30px;}
  h2{font-size: 22px;}
}

@media all and (max-width: 442px) {
  .content.cont-text {
    margin: 0px;
  }
  .content {
    padding: 25px;
  }
  .mobile-topic-menu {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-topic-menu .mobile-img-arrow-down {
    width: 25px;
    margin-top: 3px;
  }
}

@media all and (max-width: 425px) {

	.head-info {
    	width: 100%;
    	padding: 0;
	}
	h4.head-name, p.head-position{
		font-size: 18px;
	}
}

@media all and (max-width: 396px) {
  .page-title {
    font-size: 1.3em;
    margin-bottom: 25px;
    padding-left: 10px;
  }
  .content {
    padding: 30px 10px;
  }
  .section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .mobile-topic-menu {
    font-size: 12px;
  }
  .news-item {
	min-width: 100%;
  }
}

div#result,
div#ur-result {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    text-align: right;
    padding: 25px 100px;
    color: white;
    font-weight: 300;
}
div#result.success, div#ur-result.success { background: #aade6e; }
div#result.warning, div#ur-result.warning { background: #ff8282; }
#close-btn {
   position:absolute;
    top: 3px;
    right: -50px;
   width: 30px;
   height: 30px;
   position: relative;
   cursor:pointer;
}

#close-btn:before, #close-btn:after {
  content: "";
  position: absolute;
  z-index: -1;
  background: white;
}

#close-btn:before {
  left: 50%;
  width: 2px;
  height: 100%;
  transform: rotate(45deg);
}

#close-btn:after {
  left: 50%;
  height: 100%;
  width: 2px;
  transform: rotate(-45deg);
}

.content-text hr {
	margin-top: 15px;
	margin-bottom: 30px;
}
.content-text p.cont-position {
    font-size: 14px;
	width: 40%;
}
.content-text p.cont-name {
    font-weight: 400;
	width: 30%;
}
.content-text .contacts-list p:last-child {
	width:30%;
}
.content-text .contacts-list p:not(:last-child) {
	margin-right: 20px;
}
/* Calendar */
.event-list {
    width: calc(33% - 20px);
	position: relative;
	margin :0 10px 25px 10px;
}
.event-list header {
	padding: 10px;
	background-color: #0083b7;
	color: #ffffff;
}
.event-list.no-events header {
	background-color: #004560;
}
.event-list header h4 {
	margin: 0;
}
.events {
	padding: 10px;
	background-color: rgba(206, 206, 206, 0.40);
}
.events.no-events {
	background-color: #cecece;
}
.events .info {
	margin:0;
	text-align: center;
	padding: 10px;
}
a.event-button::before {
	content: " ";
}
a.event-button:lang(ru)::before {
	content:"";
}
a.event-button.is-active:lang(ru)::before {
	content:"";
}
a.event-button {
    padding: 10px;
    display: inline-block;
    color: #fff;
    background-color: #0083b7;
}
a.event-button:hover{
    background-color: #006b96;
}
.events .currents-events {
    display: none;
    width: 100%;
    left: 0;
    padding: 0;
    margin: 0;
    margin-top: 25px;
    list-style: none;
}
.events .currents-events li{
	margin-bottom: 15px;
	border-bottom: 2px solid #0083b7;
	padding: 10px;
}
.events .currents-events li:last-child{
	margin-bottom: 0;
}
@media all and (max-width: 1441px){
	.event-list {
		width: calc(50% - 20px);
	}
}
@media all and (max-width: 1025px){
	.event-list {
		width: calc(100% - 20px);
	}
}

//  

#interactive-map .svg{
    position: absolute; 
    top: 0; 
    left: 0; 
    height: 100%; 
    width: 100%;
}
svg.svg {
    position: absolute;
    left: 0;
    top: 0;
}
#interactive-map{
    position: relative; 
    text-align: center; 
    width: 55%;
float: left;
}

#interactive-map img{
    width: 100%
}
path{
    opacity: 0;
    fill: #0083b7;
}
path:hover{
    transition: opacity 1s ease;
    opacity: 0.5;
}
.region-stat{
    display: none;
    width: 45%;
    float: left;
}

/* */

.table5 td:first-child {
padding-right: 50px;
}

.table5 {border-collapse: collapse;}


.table5 th {
font-size: 13px;
font-weight: normal;
background: #0082b7;
border-top: 4px solid #00628a;
border-bottom: 1px solid #fff;
color: #fff;
padding: 8px;
}


.table5 td {
background: #ebf9ff;
border: 0px;
border-bottom: 1px solid #fff;
color: #005273;
border-top: 1px solid transparent;
padding: 8px;
}






.struct-switch {
  width: 200px;
  height: 40px;
  margin-bottom: 15px;
  padding: 4px;
  background: #ffffff;
  outline: 3px solid #0082b7;
  outline-offset:-3px;
}

.struct-switch-input {
  display: none;
}

.struct-switch-label {
  float: left;
  width: 50%;
  height: 100%;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  font-weight: 200;
}
.struct-switch-input:checked + .struct-switch-label {
  font-weight: 500;
  background: #0082b7;
  color: white;
 
}

/* DIRECTIN CAROUSEL */
.direction-carousel {
  position: relative;
  margin-bottom: 105px;
}
.direction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 360px;
  height: 400px;
  font-weight: 300;
  padding: 0px;
  margin: 30px auto;
  transition:.3s;
min-width: 260px;
flex-direction: column;
position: relative;
-webkit-box-shadow: 3px 3px 17px -9px rgba(0,0,0,0.5);
    -moz-box-shadow: 3px 3px 17px -9px rgba(0,0,0,0.5);
    box-shadow: 3px 3px 17px -9px rgba(0,0,0,0.5);
}

a.direction:hover {
-webkit-box-shadow: 12px 10px 17px -4px rgba(0,0,0,0.5);
    -moz-box-shadow: 12px 10px 17px -4px rgba(0,0,0,0.5);
    box-shadow: 12px 10px 17px -4px rgba(0,0,0,0.5);
}
.direction p {
margin: auto;
text-align: center;
}
.outer_name_dir{
position: absolute;
    bottom: 0px;
    padding: 0px 15px 15px 15px;
    height: 170px;
    color: black;
    font-weight: bold;

    font-size: 18px;
    margin: auto;
    width: 100%;
    display: flex;
}
.direction_img {

  border-radius: 10px;
      width: 360px;
    height: 200px;
	background-position: center;
	background-size: 100% auto;
}

.direction_data {
	color: grey;
	padding: 5px;
	font-size: 10pt;
	height: 30px;
}

.directions {
	position: relative;
    display: flex;
flex-wrap: wrap;
}

/* Subtitle o nas */
.subtitle_o_nas {
	margin: auto;
	border-radius: 20px;
	padding: 20px;
	background: url(/bitrix/templates/2/img/prog_background.png) no-repeat;
	width: 100%;
	text-align: center;
	font-weight: bold;
	font-size: 30px;
	color: white;
	word-wrap: break-word;
}

