@import 'bootstrap.min.css';
@import 'font-awesome.min.css';


/* --- globals --- */
img { max-width:100%; }

a { transition: all 150ms ease; }
a:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; /* IE 8 */
  filter: alpha(opacity=50); /* IE7 */
  opacity: 0.6;
  text-decoration: none;
}

body {
  background-color: #f5f5f5;
}


/* ===== bootstrap hack & addons ===== */
.vertical-align { display: flex; align-items: center; }
.row .thumbnail { padding: 0; border: 0; box-shadow: 0; border-radius: 0; }
.row-eq-height { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; flex-wrap: wrap; }
.row-eq-height > [class*='col-'] { display: flex; flex-direction: column; }
.flex, .flex > div[class*='col-'] {
    display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex;
    display: flex; flex: 1 0 auto;
}


/* --- шрифты --- */
@font-face {
    font-family: 'avenir';
    src: url('/media/static/fonts/avenir.eot');
    src: url('/media/static/fonts/avenir.eot?#iefix') format('embedded-opentype'),
         url('/media/static/fonts/avenir.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.font-avenir { font-family: avenir, Arial, sans-serif; }

@font-face {
    font-family: 'avenir-light';
    src: url('/media/static/fonts/avenirl.eot');
    src: url('/media/static/fonts/avenirl.eot?#iefix') format('embedded-opentype'),
         url('/media/static/fonts/avenirl.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.font-avenir-light { font-family: avenir-light, Arial, sans-serif; }

@font-face {
    font-family: 'avenir-medium';
    src: url('/media/static/fonts/avenirm.eot');
    src: url('/media/static/fonts/avenirm.eot?#iefix') format('embedded-opentype'),
         url('/media/static/fonts/avenirm.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.font-avenir-medium { font-family: avenir-medium, Arial, sans-serif; }

@font-face {
    font-family: 'avenir-bold';
    src: url('/media/static/fonts/avenirb.eot');
    src: url('/media/static/fonts/avenirb.eot?#iefix') format('embedded-opentype'),
         url('/media/static/fonts/avenirb.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.font-avenir-bold { font-family: avenir-bold, Arial, sans-serif; }

@font-face {
    font-family: 'corbel';
    src: url('/media/static/fonts/corbel.eot');
    src: url('/media/static/fonts/corbel.eot?#iefix') format('embedded-opentype'),
         url('/media/static/fonts/corbel.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.font-corbel { font-family: corbel, Arial, sans-serif; }

@font-face {
    font-family: 'corbel-bold';
    src: url('/media/static/fonts/corbelb.eot');
    src: url('/media/static/fonts/corbelb.eot?#iefix') format('embedded-opentype'),
         url('/media/static/fonts/corbelb.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.font-corbel-bold { font-family: corbel-bold, Arial, sans-serif; }
.font-trebuchet { font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;}

body {
  font-family: avenir-medium, Arial, sans-serif; font-size: 12px;
}


/* --- компоненты --- */

.date {
  position: absolute; bottom: 10px; left: -4px; padding: 3px 12px; text-align: left;
  background-color: #83BDE6; color: #fefefe; box-shadow: 2px 2px 0 0 #686868;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; word-spacing: 10px;
}

/* --- пагинатор --- */
.pdr-pagination { display: inline-block; background-color: #fefefe; margin: 20px 0; }
.pdr-pagination span:last-child { border-right: none; }
.pdr-pagination span {
  display: inline-block; height: 46px; min-width: 46px; line-height: 46px;
  padding: 0 10px; margin: 0;
  font-size: 34px; text-align: center;
}
.pdr-pagination-button { background-color: #6196c9; color: #fefefe; }
.pdr-pagination-page { border-right: 1px solid #c6c6c6; }
.pdr-pagination span.current { background-color: #c6c6c6; }
.pdr-pagination i { width: 46px; height: 46px; color: #fefefe; }
.pdr-pagination a { color: #0E4165; }

/* --- карусель --- */
.carousel-control.left, .carousel-control.right {
  opacity: 1; color: #5C9ECD; background-image: none;
  width: 40px !important;
}
.carousel-control.left { text-align: left; padding-left: 5px; }
.carousel-control.right { text-align: right; padding-right: 20px; }
.carousel-control .fa-chevron-left, .carousel-control .fa-chevron-right {
  display: inline-block; position: absolute; top: 50%; z-index: 5; margin-top: -10px;
}
.carousel-control.left:hover {
  opacity: 1;
  background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
  background-image: -o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
  background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));
  background-image: linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right:hover {
  opacity: 1;
  background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
  background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
  background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));
  background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}


/* --- цвета и текст --- */
.color-blue, .color-blue-light, .color-white, .color-brown { font-family: corbel, Arial, sans-serif; }
.color-blue {color: #0E4165;}
.color-blue-light { color: #5C9ECD; text-decoration: none; }
.color-blue-light a:hover { color: #5C9ECD !important; text-decoration: none; }
.color-white { color: #fefefe; text-decoration: none; }
.color-white a:hover { color: #fefefe; text-decoration: none; }
.color-brown { color: #727271; text-decoration: none; }
.color-brown a:hover { color: #727271; text-decoration: none; }

.main-text {
  font-family: avenir-medium, Arial, sans-serif; font-size: 12px;
}



/*--- header ---*/
.header-logo {
  background: #f2f7fc url("/media/static/img/header-background.png") no-repeat left top !important;
}
.header-nav { height: 193px; }
.logo-link { cursor: pointer; }
.header-links { background-color: transparent; padding-top: 44px; }
.header-links a {
  display: inline-block; width: 40px; height: 40px; line-height: 40px; margin-right: 20px;
  text-align: center; vertical-align: middle;
  border-radius: 100%;
  color: #ffffff; background-color: #3f3943;
}
.header-links i { line-height: inherit; }
.site-search { margin-top: 15px; }
.site-search input {
  width: 100%; height: 36px; border: 1px solid #abc2cf; border-radius: 4px;
  font-size: large; padding-left: 18px; padding-right: 36px; color: #7b7b7b;
}
.site-search i {
  position: relative; left: -30px; top: 3px; width: 0;
  color: #3f3943; cursor: pointer;
}
.no-padding {padding: 0 !important;}
.news-grid { min-height: 1810px;}


/* --- меню --- */
.pdr-navbar { border: none; background-color: #f2f7fc; margin-bottom: 0; }
.navbar {min-height: 0;}
.navbar-collapse.in {  overflow-y: visible;}
.navbar-header { padding-right: 15px !important;}
.navbar-header button {
  position: absolute; background-color: #3f3943;
  top: -110px; right: 0;
  border-color: #3f3943 !important; margin-top: 0;
}
.navbar-toggle span {background-color: #fefefe !important;}

.top-menu-row { text-align: center; background-color: #83BDE6; }
.top-menu-wrap { width: 100%; display: inline-block; }
.top-menu { background-color: #83BDE6; font-family: corbel-bold, Arial, sans-serif; margin-bottom: -4px; }
.top-menu a { color: #fefefe; font-size: 14px; }
.top-menu a:hover, .top-menu a.active { background-color: #83BDE6 !important; }
.nav .open>a, .nav .open>a:focus, .nav .open>a:hover { background-color: #83BDE6 !important;  }
.top-menu li { border-right: 1px solid #ebf0f7; vertical-align: middle; height: 100%; }
.top-menu li:nth-child(1) { white-space: nowrap; }
.top-menu li:nth-child(6) { border-right: none; }
.menu-level-1 {padding: 10px 0;}
.menu-level-1 > a { text-transform: uppercase; color: #ffffff !important; font-size: 14px;}
.menu-level-2 > a, .menu-level-3 > a { font-family: corbel, Arial, sans-serif; font-weight: normal !important; }
.menu-level-3 {padding-left: 15px;}
.menu-level-3 + .menu-level-2 {padding-top: 10px;}
.menu-section {padding-left: 20px; padding-top: 5px; font-weight: bold;}
.dropdown-toggle:focus { background-color: #83BDE6 !important; }


.site-section { padding-left: 0; margin-bottom: 20px; color: #fefefe; text-indent: 15px;}
.site-section h3, .site-section a, .site-section span {
  display: inline-block;
  font-family: corbel-bold, Arial, sans-serif; font-size: 28px;
  text-transform: uppercase; letter-spacing: 2px; color: #fefefe;
}
.site-section-title-blue { color: #5C9ECD; border-bottom: 4px solid #CE2C31; }
.site-section-title-white { color: #fefefe; border-bottom: 4px solid #fefefe; }


/* --- главные новости --- */
.top-news-subitem { max-width: 400px; display: inline-block;}
.top-news-title { padding: 10px; font-weight: bold; text-align: left;}
.top-news-title a { color: #727271;}
.top-news-image { display: inline-block; height: 125px; width: 185px; }
.top-news-read-more {
  display: inline-block; background-color: #CE2C31; font-size: 10px;
  height: 30px; line-height: 30px; width: 90px; text-align: center;
}
.top-news-read-more::after {
  content: ''; position: absolute; width: 0; height: 0; margin: 0 0 0 10px;
  border: 10px solid transparent; border-top-width: 15px; border-bottom-width: 15px; border-left-color: #CE2C31;
}


/* --- анонсы на главной --- */
.main-event-section { border-bottom: 4px solid #CE2C31; text-align: center; margin-bottom: 0; }
.main-event-wrap { display: inline-block; }
.main-event-item { max-width: 300px; }
.main-event-date {
  display: inline-block; padding: 6px; text-indent: 20px;
  background-color: #0E4165; color: #fefefe;
  font-size: 14px; text-align: left; width: 100%;
}
.main-event-title { text-align: right; color: #727271; font-weight: bold; }
.main-event-read-more { text-align: right; }
.main-event-read-more a {font-size: 14px !important; font-weight: bold !important; }

.main-news-read-more  a { font-family: corbel, Arial, sans-serif; font-size: 32px; color: red !important; }
.main-button { padding-left: 0; margin-bottom: 20px; margin-top: 10px;}



/* --- новости на главной --- */
.main-news-item {
  display: inline-block; width: 340px; height: 340px; margin: 20px; padding: 6px;
  vertical-align: top; background-color: #fefefe; box-shadow: 4px 4px 0 0 #aeaeae;
}
.main-news-item-title { text-align: left; background-color: transparent;  padding: 10px; color: #727271; }
.main-news-item-title a { color: #727271; }


/* --- поисковики на главной --- */
.main-faces {margin-bottom: 65px; padding: 0;}
.main-face {
  font-family: avenir-medium, Arial, sans-serif;
  margin-bottom: 20px; padding: 20px; font-size: 10px; color: #66512c; max-width: 330px;
  background-color: #f7f7f7; box-shadow: 4px 4px 0 0 #82a0bb;
  overflow: hidden;
}

.main-face-photo { width: 100px; text-align: center;}
.main-face-name {
  padding: 10px; vertical-align: middle; height: 100px;
  font-size: 13px; font-weight: bold; color: #0E4165; text-align: right;
}

.main-face-city {
  vertical-align: middle; text-align: right;
  font-size: 12px; color: #5B5B5B;
}
.main-face-city i { line-height: inherit; vertical-align: middle; }
.main-face-post { height: 50px; overflow: hidden; text-align: right; font-size: 12px; color: #5B5B5B; }


/* --- фото, видео на главной --- */
.multimedia {
  background-color: #fefefe; height: 335px; display: inline-block;
  overflow: hidden; width: 325px;
}
.multimedia-title {text-align: left; padding: 6px 16px; overflow: hidden;color: #333 !important;}
.multimedia img {display: inline-block; padding: 5px;}

/* --- книга на главной --- */
.main-book-section {font-size: 28px;color: #fefefe; letter-spacing: 2px; text-align: center;}
.main-book-wrap {
  display: inline-block; margin-right: -50px; padding: 6px; min-height: 335px; max-width: 250px;
  background-color: #fefefe;   }
.main-book-author, .main-book-title { color: #5B5B5B; }
.main-book-author { font-family: avenir, Arial, sans-serif; padding-top: 10px; }
.main-book-title { font-family: avenir-medium, Arial, sans-serif; font-weight: bold; }
.main-book-title a {color: #5B5B5B;}
.main-book-read-more a {color: #6FB7EB;font-size: 12px;}


/*--- нижний блок ---*/
.footer {
  padding: 10px 40px; font-size: 14px !important;
  background-color: #4D4D4D; color: #fefefe;
}
.footer a { color: #fefefe; }
.footer i {
  display: inline-block; width: 30px; height: 30px; line-height: 30px; margin-right: 15px;
  text-align: center; vertical-align: middle;
  border-radius: 100%; font-size: 18px;
  color: #454645; background-color: #fefefe;
}

.footer-links { margin-top: 50px;}
.footer-links > .col-md-5, .footer-links > .col-md-7 {padding: 0;}
.footer li { padding-bottom: 8px;  }
.footer-spacer { background-color: #696969; height: 40px;}

#root-link {color: #8ecaff !important;}
#map {width: 220px; height: 220px; margin: 10px auto;}

.main-contacts td { padding-bottom: 4px; font-size: 14px; }
.main-contacts td:nth-child(1) { width: 30px;}
.main-contacts td:nth-child(2) { width: 360px;}



/* --- список новостей */
.news-list-item {
  display: inline-block; width: 340px; height: 340px; margin: 20px; padding: 6px;
  vertical-align: top; background-color: #fefefe; box-shadow: 4px 4px 0 0 #aeaeae;
}
.news-list-item-title {padding: 10px; text-align: left; }
.news-list-item-title a { color: #5B5B5B; }


/* --- одна новость news-item --- */
.news-item-title {
  color: #0E4165; font-size: 16px; font-weight: bold;
  border-bottom: 2px solid #5C9ECD;
}
.news-item-cover {
  display: inline-block; position: relative;
  box-shadow: 4px 4px 0 0 #b6babe; padding: 6px; background-color: #fefefe;
  margin-right: 14px; margin-bottom: 14px; text-align: left;
}
.news-item-cover-social {
  display: inline-block; padding: 10px; margin: 10px 10px 0 10px; background-color: #f7f7f7; text-align: left;
}
.news-item-cover-social i {
  display: inline-block; height: 24px; width: 24px; line-height: 24px; border-radius: 4px;
  text-align: center; cursor: pointer;
}
.news-image {
  display: inline-block; width: 335px; height: 260px; line-height: 260px; background-color: #fefefe;
  margin-bottom: 10px; text-align: center;
}

.news-album {text-align: center;}
.news-album a:hover { opacity: 1;}


.page-arrows {
  background-color: transparent; margin: 20px 0;
  height: 40px; line-height: 40px; font-size: 18px; text-align: center;
}
.page-arrows a {color: #fefefe;}

.news-item-arrows { background-color: transparent; padding: 20px 0;
  height: 40px; line-height: 40px; font-size: 18px; width: 50%; text-align: center;}
.news-item-arrows a {color: #fefefe;}


/* --- список анонсов --- */
.events-list-item-even {
  text-align: right; padding-right: 25px;
}
.events-list-item-odd {
  text-align: left; padding-left: 25px;
}
.events-list-item {
  background-color: #fefefe; box-shadow: 4px 4px 0 0 #aeaeae; display: inline-block;
  width: 400px; height: 300px; margin-bottom: 50px; text-align: left; padding: 10px;
  color: #5B5B5B; position: relative; overflow: hidden;
}
.events-list-date { background-color: #1c3b5f; color: #fefefe; width: 200px; text-align: center; padding: 10px; }
.events-list-title { padding-top: 15px; font-size: 13px; font-weight: bold; }
.events-list-text {padding-top: 10px; font-size: 12px; overflow: hidden; max-height: 160px; }
.events-list-more { position: absolute; right: 10px; bottom: 10px; background-color: #fefefe;left:0; text-align: right; }
.events-list-calendar {
  display: inline-block; width: 350px; padding: 6px; margin-left: 16px;
  vertical-align: top; box-shadow: 4px 4px 0 0 #aeaeae; background-color: #fefefe;
}
div.zabuto_calendar .table tr td.event div.day, div.zabuto_calendar ul.legend li.event {
  background-color: #8ecaff !important; border-radius: 4px !important;
}
div.zabuto_calendar div.legend {margin: 0 !important;}
.event-tooltip {cursor: pointer;}

.event-item {
  margin: 40px 50px 60px !important; padding: 10px;
  background-color: #fefefe; box-shadow: 4px 4px 0 0 #aeaeae;
}

/* --- список поисковиков --- */
.faces-list-item { background-color: #fefefe; margin: 30px 40px; box-shadow: 4px 4px 0 0 #aeaeae; }
.faces-list-photo-wrap { width: 140px; height: 160px; line-height: 160px; float: left; text-align: center; }
.faces-list-photo { height: 100px; width: 100px; display: inline-block; }
.faces-list-photo img { border-radius: 50%;}
.faces-list-info { margin-left: 140px;  min-height: 160px; padding: 10px 0; overflow: auto; font-size: 14px; }
.faces-list-name { color: #0E4165; font-size: 16px; font-weight: bold;}
.faces-list-post { color: #5B5B5B; font-size: 12px;}
.faces-list-city { display: inline-block; height: 48px; line-height: 48px; overflow: hidden; color: #5B5B5B;}
.faces-list-city i {color: #B54331; line-height: inherit; vertical-align: middle;}


/* --- список книг --- */
.books-list-item { background-color: #fefefe; margin: 30px 100px; padding: 20px; box-shadow: 4px 4px 0 0 #aeaeae; }
.books-list-info { font-size: 14px; margin-left: 270px; min-height: 310px; padding: 10px 0; overflow: auto; }
.books-list-title { font-weight: bold; }
.books-list-author { font-family: avenir-light, Arial, sans-serif; }
.books-list-description { text-indent: 40px; padding-top: 10px; text-align: justify !important; }


/* --- поисковик --- */
.face-item {background-color: #fefefe; margin: 30px 40px; box-shadow: 4px 4px 0 0 #aeaeae;}
.face-item-photo-wrap { width: 190px; height: 190px; line-height: 190px; float: left; text-align: center; }
.face-item-photo      { height: 150px; width: 150px; display: inline-block; }
.face-item-photo img  { border-radius: 50%; }
.face-item-info       { margin-left: 190px; min-height: 190px; padding: 10px 0; overflow: auto; }
.face-item-subtitle   { margin-top: 10px; font-family: avenir-light, Arial, sans-serif;
  color: #5B5B5B; font-style: italic; font-size: 14px; }
.face-item-story { font-size: 14px; margin-left: 200px; margin-right: 100px; padding: 0 20px 20px; }


/* --- совет --- */
.container-sovet {font-size: 14px; color: #0E4165;}
.container-sovet a, .container-sovet img { box-shadow: 4px 4px 0 0 #aeaeae; border-radius: 2px; }
.container-boss {margin-top: 60px; margin-bottom: 100px; }
.sovet-section {font-size: 24px; margin-bottom: 20px;}
.boss-photo {text-align: right;}
.boss-info { color: #0E4165; font-size: 15px; }
.boss-info p {padding-top: 15px;}
.boss-info-links a {
  display: inline-block; height: 42px; width: 42px; line-height: 42px; margin-right: 20px;
  border-radius: 2px;
  background-color: #3f3943; color: #fefefe; text-align: center; vertical-align: middle;
}
.boss-info-links i { line-height: inherit; vertical-align: middle; }
.sovet-member { display: inline-block; min-width: 255px; margin-bottom: 40px;}
.sovet-member-info { text-align: left; margin-top: 15px;}
.sovet-links { display: inline-block; width: 42px; vertical-align: top; margin-left: 4px; }
.sovet-links a {
  display: inline-block; height: 42px; width: 42px; margin-bottom: 20px;
  border-radius: 2px;
  background-color: #3f3943; color: #fefefe; text-align: center; vertical-align: middle;
}
.sovet-links i { line-height: inherit; vertical-align: middle; }



/* --- проект --- */
.project-logo-download { display: inline-block; height: 48px; line-height: 48px; margin: 20px 0; overflow: hidden; }
.project-logo-download i { line-height: inherit; vertical-align:middle; color: #333333; }
.project-logo-download a { color: #333; text-decoration: none;}



/* --- список регионов --- */
.region-list { display: inline-block; text-align: left; padding-left: 40px; }
.region-list-spacer {height: 28px;}
.region-list a { color: #0E4165; text-decoration: none; font-size: 14px; }
.region-list-one {text-align: right;}
.region-list-two {margin-right: 40px;}


/* --- регион --- */
.region-item-title {
  color: #0E4165; font-weight: bold; font-size: 16px; padding: 20px;
}
.region-manager { width: 300px; height: 250px; float: left; text-align: center; }
.region-manager img {display: inline-block; vertical-align: middle; box-shadow: 4px 4px 0 0 #aeaeae;}
.region-manager-info {
  margin-left: 300px; height: 250px; text-align: left; color: #0E4165; margin-top: 10px;
  font-size: 14px;
}
.region-manager-info p {padding-top: 25px;}

#region-map {display: inline-block;}

/* --- видео --- */
#modal {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background-color: #0f0f0f; display: none;
  opacity: 0.9;
}
#player {
  position: fixed; top: 50%; left: 50%; background-color: #fefefe;
  padding: 10px; margin-left: -320px; margin-top: -180px; z-index: 100500;
  display: none;
}
.video { cursor: pointer;}
.video:hover { box-shadow: 4px 4px 0 0 #82a0bb;  transition: all 150ms ease;  color: #727271; }
.video:hover img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50); opacity: 0.6;
}

/* --- фотоальбом --- */
.album-photo {
  cursor: pointer;
  display: inline-block; margin-bottom: 10px;
  background-color: #fefefe; box-shadow: 4px 4px 0 0 #aeaeae;
}
.album-photo:hover {
  box-shadow: 4px 4px 0 0 #82a0bb;
  transition: all 150ms ease;
  color: #727271;
}
.album-photo:hover img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: 0.6;
}

@media only screen and (min-width : 320px){
  .top-menu-whitespace {white-space: normal; }

}
@media only screen and (min-width : 480px){ .top-menu-whitespace {white-space: normal; }}
@media only screen and (min-width : 768px){ .top-menu-whitespace {white-space: normal; }}
@media only screen and (min-width : 992px){ .top-menu-whitespace {white-space: normal; }}
@media only screen and (min-width : 1200px){ .top-menu-whitespace {white-space: nowrap; }}

@media only screen and (max-width : 1200px){
  .container-events-list { background: #f2f8fc none !important;}
  .container-album-list { background: #f2f8fc none !important; }
  .container-video-list { background: #f2f8fc none !important; }
  .container-sovet { background: #f2f8fc none !important; }
  .news-grid { min-height: 0; }
  .section-line {width: 100% !important; margin: 0 !important;}
}
@media only screen and (max-width : 992px) {
  .site-section {text-indent: 0; text-align: center;}
  .main-book-section {text-indent: 0 !important; text-align: center; padding-left: 10px;}
  .main-gray-spacer {display: none;}
  .footer-links {margin-top: 20px;}
  .container-top-news { background-color: #f2f7fc !important; }
  .container-news { display: none; }
  .container-faces { background-color: #a8d2f8 !important; margin-top: 0 !important; margin-bottom: 0 !important; }
  .container-projects { display: none; }
  .container-regions { display: none; }
  .container-partners { display: none; }
  .container-multimedia {
    background-color: #1c3b5f !important; margin-top: 0 !important; margin-bottom: 0 !important;
    padding-bottom: 40px; }
  .container-news-list { background: #f2f8fc none !important; }
  .container-projects-list { background: #a8d2f8 none !important; }
  .container-books-list { background: #f2f8fc none !important; }
  .container-album-item { background: #f2f8fc none !important; }

  .header-links {height: 124px; padding-top: 10px;}
  .main-button {text-align: center;}
  .site-section {width: 100%; }

  .main-event-section {text-align: left;}
  .top-news-subitem { padding: 0 10px;}
  .main-book-section {text-align: left; text-indent: 20px;}
  .face-item-story {margin-left: 10px; margin-right: 10px;}
  .boss-info p {padding-top: 0;}
  .multimedia {margin: 0 !important;}
  .books-list-item {margin: 10px !important;}
  .events-list-item-even {text-align: center; padding: 10px; margin: 0;}
  .events-list-item-odd {text-align: center; padding: 10px; margin: 0;}
  .events-list-item {margin-bottom: 0 !important;}
  .events-list-calendar {margin: 0; width: 310px !important;}
}

@media only screen and (max-width : 768px) {
  .top-menu li {border: none !important;}
  .top-menu a {text-align: left !important; }
  .top-menu-wrap { width: 240px !important; }
  .header-links {height: 124px; padding-top: 10px;}
  .menu-level-1 {padding: 0;}
  .region-list-one {text-align: center;}
  .region-list-two {text-align: center; margin-left: -45px;}
  .container-faces-list {background: #f2f8fc none !important;}
  .top-menu {margin-bottom: 3px;}
  .boss-photo {text-align: center;}
  .boss-info {text-align: center; margin-top: 15px;}
  .container-boss {margin: 10px;}
  .contacts { margin: 10px !important;}
  .contacts-press {padding-left: 60px; padding-top: 20px;}
  .main-faces {margin-bottom: 15px !important;}
  .event-item { margin: 5px 5px 60px !important; }
  .face-item {margin: 5px 5px 60px !important;}
}
@media only screen and (max-width : 480px) {
  .header-logo {
    background: #f2f7fc url("/media/static/img/header-background-small.png") no-repeat center top !important;
  }
  .news-item-arrows span {display: none;}
  .page-arrows span {display: none;}
  .main-book-wrap {margin: 0 auto;}
  .multimedia img {padding: 0 !important;}
  .pdr-pagination span {font-size: 12px; min-width: 0; height: 20px; line-height: 20px; }
  .pdr-pagination button {min-width: 0;}
  .pdr-pagination i {width: auto;}
  .pdr-pagination span {padding: 0 6px;}
  .events-list-item {width: 94% !important;}

}
/*@media only screen and (max-width : 320px){}*/
.container-top-news, .container-news, .container-faces, .container-projects, .container-regions, .container-multimedia {
  background-color: transparent;}
.container-faces { margin-top: 120px; margin-bottom: 40px; }
.container-projects { margin-top: 165px; margin-bottom: 45px; }
.container-regions { margin-top: 75px; margin-bottom: 55px; }
.container-multimedia { margin-top: 145px; margin-bottom: 15px; }
.page-content { background-color: #fefefe; padding: 30px 40px; }
.container-region-list {
  background: #f5f5f5 url('/media/static/img/region-list-background.png') no-repeat bottom center;
  padding-bottom: 550px;
}
.container-news-list {
  background: #f5f5f5 url('/media/static/img/news-list-background.png') no-repeat top center;
}
.container-news-item { position: relative; background-color: #f1f7fc; }
.container-event-item {
  position: relative; background-color: #f2f8fd; min-height: 505px;
}
.news-item-bg {
  position: absolute; left:0; bottom: 0; width: 100%; height: 100%;
  background: transparent url('/media/static/img/news-item-bg.png') no-repeat bottom center;
}
.event-item-bg {
  position: absolute; left:0; bottom: 0; width: 100%; height: 100%;
  background: transparent url('/media/static/img/event-background.png') no-repeat bottom center;
}

.container-region-item {
  background: #f5f5f5 url('/media/static/img/region-background.png') no-repeat top center;
  padding-bottom: 350px;
}
.container-projects-list {
  background: #f5f5f5 url('/media/static/img/projects-background.png') no-repeat top center;
  padding-bottom: 100px;
}
.container-events-list {
  background: #f5f5f5 url('/media/static/img/events-background.png') no-repeat top center;
  padding: 0 0 25px;
}


.container-faces-list {
  background: #f5f5f5 url('/media/static/img/faces-background.png') no-repeat top center;
  padding-bottom: 25px;
}
.container-face-item {
  position: relative;  background-color: #f2f8fd;
}
.face-bg {
  position: absolute; left:0; bottom: 0; width: 100%; height: 100%;
  background: #f2f8fd url('/media/static/img/face-bg.png') no-repeat bottom center;
}
.container-books-list {
  background: #f5f5f5 url('/media/static/img/books-background.png') no-repeat top center;
  padding-bottom: 30px;
}
.container-album-list {
  background: #f5f5f5 url('/media/static/img/albums-background.png') no-repeat top center;
  padding-bottom: 30px;
}
.container-album-item {
  background: #f2f8fd url('/media/static/img/album-background.png') no-repeat bottom center;
  min-height: 1250px;
  /*padding-bottom: 30px;*/
}
.container-video-list {
  background: #f5f5f5 url('/media/static/img/video-background.png') no-repeat top center;
  padding-bottom: 30px;
}
.container-sovet {
  background: #f5f5f5 url('/media/static/img/sovet-background.png') no-repeat top center;
  padding-bottom: 30px;
}

.container-partners {
   background-color: #fefefe;
}
.contacts { background-color: #fefefe; padding: 20px 40px; font-size: 14px; margin: 20px 100px 100px; }
.contacts i {
  display: inline-block; width: 30px; height: 30px; line-height: 30px; margin-right: 15px;
  text-align: center; vertical-align: middle;
  border-radius: 100%; font-size: 18px;
  color: #fefefe; background-color: #1c3b5e;
}
.contacts li { padding-bottom: 8px; }

