/* Шрифты */
@font-face {
  font-family: 'Museo Sans 100';
  src: url("/fonts/MuseoSansCyrl.otf") format("opentype");
}
@font-face {
  font-family: 'Museo Sans 300';
  src: url("/fonts/MuseoSansCyrl_0.otf") format("opentype");
}
@font-face {
  font-family: 'Museo Sans 500';
  src: url("/fonts/MuseoSansCyrl_1.otf") format("opentype");
}
@font-face {
  font-family: 'Museo Sans 700';
  src: url("/fonts/MuseoSansCyrl_2.otf") format("opentype");
}
@font-face {
  font-family: 'Museo Sans 900';
  src: url("/fonts/MuseoSansCyrl_3.otf") format("opentype");
}

.Museo_Sans_100 {
  font-family: "Museo Sans 100",Geneva,Arial,Verdana,sans-serif;
}
.Museo_Sans_300 {
  font-family: "Museo Sans 300",Geneva,Arial,Verdana,sans-serif;
}
.Museo_Sans_500 {
  font-family: "Museo Sans 500",Geneva,Arial,Verdana,sans-serif;
}
.Museo_Sans_700 {
  font-family: "Museo Sans 700",Geneva,Arial,Verdana,sans-serif;
}
/* Конец шрифты */

/* Кнопка авторизации через ВК */
.authVK_btn {
  padding: 10px 15px;
  width: 100%;
  background: #4a76a8;
  border: none;
  color: white;
  font-size: 12pt;
}
.authVK_btn:hover {
  opacity: 0.8;
  cursor: pointer;
}
.authVK_btn .fa {
  font-size: 16pt;
  margin-right: 5px;
}
/* Конец кнопки авторизации */

/* Зарезервировано */
p {
  padding: 5px 0;
  text-indent: 25px;
  margin: 0;
}
.clear_float {
  float: none;
  clear: left;
}

  /* Оформление цитат */
.blockquote-8 {
    position: relative;
    padding: 16px 32px;
    margin: 16px 46px;    
    font-size: 16px;
    text-align: center;
}
.blockquote-8:before,
.blockquote-8:after {
    position: absolute;
    color: rgba(241,98,70,0.5);
    font-size: 100px;
    font-family: Times, sans-serif;    
    line-height: 100px;    
}
.blockquote-8:before {
    content: '“';
    left: -30px;
    top: -10px;
}
.blockquote-8:after {
    content: '”';
    right: -30px;
    bottom: -10px;
}
.blockquote-8 cite {
    color: #8B4513;
    font-size: 15px;
    padding-top: 10px;
    display: block;
}

  /* Выравнивание текста */
.left {
  text-align: left !important;
}
.right {
  text-align: right !important;
}
.center {
  text-align: center !important;
}
.justify {
  text-align: justify !important;
}

  /* Оформление колонок */
.column_box_between {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.column_box_around {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.column_3 > div {
  width: 33%;
}
.column_2 > div {
  width: 47.5%;
}
.column_1_k_2 > div:first-child {
  width: 30%;
  flex-shrink: 1;
  position: relative;
}
.column_1_k_2 > div:last-child {
  width: 65%;
}

  /* Блок с изображениями */
.image_box {
  position: relative;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.image_box > div {
  margin: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.image_box > div img {
  max-width: 100%;
  max-height: 100%;
}
.small_image > div, .small_image img {
  position: relative;
  max-width: 120px;
  max-height: 170px;
}
.medium_image > div, .medium_image img {
  position: relative;
  max-width: 150px;
  max-height: 210px;
}
.normal_image > div, .normal_image img {
  position: relative;
  max-width: 200px;
  max-height: 280px;
}
.large_image > div, .large_image img {
  position: relative;
  max-width: 300px;
  max-height: 420px;
}
.img_container {
  position: relative;
  background: rgba(0,0,0,0.1);
}
.img_container .description {
  transition: opacity 0.3s ease-out;
  opacity: 1;
  background: linear-gradient(0deg, #8B4513, transparent);
  font-size: 10pt;
  color: white;
  padding: 5px;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: justify;
}
.img_container:hover .description {
  content: "";
  transition: opacity 0.3s ease-out;
  opacity: 0;
  cursor: pointer;
}
.img_container .description .year {
  font-size: 11pt;
  text-align: center;
  margin-top: 5px;
}
.img_container form {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: red;
  text-align: center;
}
.img_container form input {
  border: none;
  background: none;
  color: white;
}
.img_container form input:hover {
  text-decoration: underline;
  cursor: pointer;
}
.add {
  text-align: center;
  margin-bottom: 20px;
}
.add a {
  color: black;
  font-size: 28pt;
  padding: 0.2em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-decoration: none;
}
.add_line a {
  color: black;
  font-size: 28pt;
  padding: 0.2em 1em;
  display: block;
  text-decoration: none;
  height: auto;
}
.add:hover a {
  cursor: pointer;
  background: #8B4513;
  color: white;
}
.image_box_header {
  padding: 5px;
  background: #8B4513;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.image_box_header, .image_box_header a {
  color: white;
  text-decoration: none;
}
.image_box_header a:hover {
  text-decoration: underline;
}
.img_container_lite {
  margin-bottom: calc(5px + 1.2em)!important;
}
.img_container_lite:hover {
  cursor: pointer;
}
.img_container_lite .year {
  position: absolute;
  bottom: -1.2em;
  left: 0;
  width: 100%;
  text-align: center;
}
  /* Оступы */
.margin_bottom_5 {
  margin-bottom: 5px !important;
}
.margin_bottom_10 {
  margin-bottom: 10px !important;
}
.margin_bottom_20 {
  margin-bottom: 20px !important;
}
.margin_bottom_40 {
  margin-bottom: 40px !important;
}

  /* Заголовки */
.page_header {
  font-family: "Museo Sans 500",Geneva,Arial,Verdana,sans-serif;
  font-size: 18pt;
  text-align: center;
  margin: 15px 0;
 color: #8B4513;
}
.page_header_1 {
  font-family: "Museo Sans 500",Geneva,Arial,Verdana,sans-serif;
  font-size: 18pt;
  text-align: center;
  margin: 15px 0;
  color: #8B4513;
}
.page_subheader {
  font-family: "Museo Sans 500",Geneva,Arial,Verdana,sans-serif;
  font-size: 15pt;
  text-align: center;
  margin: 10px 0;
}
.column_header {
  font-family: "Museo Sans 500",Geneva,Arial,Verdana,sans-serif;
  font-size: 15pt;
  text-align: center;
  padding-bottom: 2px;
  margin-bottom: 10px;
  color: #8B4513;
  position: relative;
  display: flex;
  justify-content: center;
}
.column_header > span {
  background: #ddd;
  padding: 0px 20px;
  margin: 0 50px;
  text-align: center;
  display: block;
}
.column_header:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  right: 0;
  height: 2px;
  background: #8B4513;
  z-index: -1;
}
.page_header .fa {
  font-size: 14pt;
}
.page_header input {
  font-size: 16pt;
  background: none;
  border: none;
  max-width: 80%;
  text-align: center;
  border: 1px solid transparent;
}
.page_header input:hover {
  border: 1px solid black;
}
.page_header input:focus {
  border: 1px solid orange;
}

.top_orange_line {
  border-top: 2px solid #8B4513;
  padding-top: 10px;
}
/* Конец зарезервированного */


body {
  margin: 0;
  font-family: "Museo Sans 300",Geneva,Arial,Verdana,sans-serif;
  background: #ddd;
  width: 100%;
  position: relative;
}
.max_width {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

/* Шапка сайта */
header, footer {
  height: 80px;
  background: #8B4513;
  color: white;
}
header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header #logo {
  display: flex;
  align-items: center;
  align-self: center;
  height: 80px;
  padding-left: 5px;
}
header #logo > div:last-child {
  margin-left: 10px;
}
header #logo > div:first-child > img {
  height: 70px;
  width: 70px;
  border-radius: 35px;
}
header #logo > div:last-child > div:first-child {
  font-size: 16pt;
}
header #logo > div:last-child > div:last-child {
  font-size: 12pt;
  font-family: "Museo Sans 100",Geneva,Arial,Verdana,sans-serif;
  margin-top: 2px;
}
/* Конец шапки */

/* Меню сайта */
#menu {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  padding-top: 2px;
  list-style: none;
}
#menu a {
  display: block;
  padding: 5px 5px 7px 5px;
  margin: 0px 5px;
  color: white;
  text-decoration: none;
  font-family: "Museo Sans 500",Geneva,Arial,Verdana,sans-serif;
  opacity: 0.8;
  position: relative;
  transition: opacity 0.3s ease;
}
#menu a:hover {
  transition: opacity 0.3s ease;
  opacity: 1;
}
#menu a::before { 
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  height: 2px;
  width: 0%;
  background: white;
  opacity: 0;
}
#menu a:hover::before { 
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 1;
}
#menu > li {
  position: relative;
}
#menu > li div {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: -100;
  opacity: 0;
}
#menu > li div::before { 
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  height: 2px;
  width: 0%;
  background: white;
  opacity: 1;
}
#menu > li ul {
  list-style: none;
  padding: 0;
  background: #8B4513;
  width: 175%;
  min-width: 150px;
  padding: 5px 0;
  box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.5);
}
#menu > li ul li:first-child {
  margin-top: 5px;
}
#menu > li ul li:last-child {
  margin-bottom: 5px;
}
#menu > li:hover div {
  display: block;
  opacity: 1;
  transition: all 0.3s ease;
  z-index: 100;
}
#menu > li:hover div::before { 
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 1;
}
#menu > li ul a {
  font-family: "Museo Sans 300",Geneva,Arial,Verdana,sans-serif;
}
#menu_btn {
  background: none;
  border: none;
  color: white;
  font-size: 22pt;
  padding: 10px;
  margin-right: 10px;
}
#menu_btn:hover {
  background: rgba(255,255,255,0.1);
  cursor: pointer;
}
#menu_btn_box {
  display: none;
}

nav {
  display: none;
  background: #8B4513;
  color: white;
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid white;
}
nav > ul {
  margin-top: 0;
  padding-top: 0;
}
nav > ul > li ul {
  list-style: none;
  padding: 0;
  background: #8B4513;
  width: auto!important;
  padding: 5px 0;
  box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.5);
}
/* Конец меню */

/* Подвал сайта */
footer {
  text-align: center; 
  height: auto;
  padding: 5px;
}
/* Конец подвала */

/* Содержимое страницы */
#content {
  padding: 10px;
}

.list_link div {
  position: relative;
  margin-bottom: 5px;
}
.list_link a {
  transition: padding 0.3s ease;
  color: black;
  display: inline-block;
  padding: 5px 5px 7px 5px;
  font-family: "Museo Sans 500",Geneva,Arial,Verdana,sans-serif;
  text-decoration: none;
}
.list_link a:hover {
  transition: padding 0.3s ease;
  color: #8B4513;
  padding-left: 10px;
}
.list_link i, form.delete_btn button i.fa-trash {
  padding: 0 5px;
  font-size: 14pt;
}
.list_link div > * {
  display: inline;
}
form.delete_btn button:hover i.fa-trash {
  color: red;
  cursor: pointer;
}
form.delete_btn {
  display: inline-block;
  margin: 0;
}
form.delete_btn button {
  padding: 0;
  background: transparent;
  border: none;
}

form.add_form > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.add_form_vertical > div {
  flex-direction: column;
  text-align: left;
}
.add_form_vertical > div > label {
  width: 100%;
}
.add_form_vertical > div label + input  {
  margin-left: 0!important;
}
form.add_form > div input {
  flex-flow: 1;
  padding: 5px;
  width: 100%;
  margin-bottom: 5px;
}
form.add_form > div label + input {
  margin-left: 5px;
}
form.add_form > div label {
  padding: 5px;
}
form.add_form input[type="submit"], #feedback_form input[type="submit"] {
  background: #8B4513;
  color: white;
  border: none;
  font-family: "Museo Sans 500",Geneva,Arial,Verdana,sans-serif;
  padding: 5px 15px;
  width: auto;
  font-size: 12pt;
  margin: 0 auto;
}
form.add_form input[type="submit"]:hover, #feedback_form input[type="submit"]:hover {
  opacity: 0.8;
  cursor: pointer;
}
/* Конец содержимого страницы */

/* Страница биографии */
#my_photo {
  float: right;
  max-width: 100%;
  padding-right: 10px;
  padding-bottom: 10px;
}
#my_info > div {
  padding: 5px;
  font-size: 15pt;
  display: flex;
  align-items: center;
}
#my_info > div > b {
  margin-right: 5px;
}
#my_info > div > div {
  flex-grow: 1;
  position: relative;
}
#my_info > div input {
  padding: 5px; 
  width: 100%;
}
/* Конец страницы биографии */


/* Модальное окно */
#modal_window {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  padding: 5px;
  background: rgba(0,0,0,0.7);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 999999;
}
#modal_window > div {
  width: 90%;
  height: 90%;
  position: relative;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#modal_window .fa {
  position: absolute;
  right: -0.5em;
  top: -0.5em;
  font-size: 20pt;
  display: block;
  background: white;
  border-radius: 50px;
  color: black;
  width: 1.3em;
  height: 1.3em;
  display: flex;
  justify-content: center;
  align-items: center;
}
#modal_window .fa:hover {
  cursor: pointer;
  color: red;
}
/* Конец модального окна */

#img_prew {
  max-width: 200px;
  max-height: 300px;
}

/* Форма добавления отзыва */
#feedback_form, .feedback_box {
  max-width: 600px;
  margin: 0 auto;
}
#feedback_form > div:nth-child(2), .feedback_box > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feedback_box img {
  width: 32px;
  height: 32px;
  border-radius: 32px;
  margin-right: 10px;
}
.feedback_box {
  margin-bottom: 20px;
}
.feedback_box > div:first-child {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #8B4513;
}
.feedback_box > div:first-child > div:first-child {
  display: flex;
  align-items: center;
}
#feedback_form > div:nth-child(2) > div {
  text-align: right;
}
#feedback_form > div:nth-child(2) img {
  width: 64px;
  height: 64px;
  border-radius: 300px;
  margin-right: 10px;
}
#feedback_form > div:nth-child(2) a, .feedback_box > div:first-child a {
  font-family: "Museo Sans 700",Geneva,Arial,Verdana,sans-serif;
  color: black;
  text-decoration: none;
  font-size: 16pt;
}
.feedback_box > div:first-child a {
  font-size: 12pt;
}
.feedback_box button[type="submit"] {
  border: none;
  background: none;
  color: black;
}
.feedback_box button[type="submit"]:hover {
  cursor: pointer;
  color: red;
}
#feedback_form > div:nth-child(2) a:hover, .feedback_box > div:first-child a:hover {
  cursor: pointer;
  text-decoration: underline;
  display: block;
}
#feedback_form > div:nth-child(2) label {
  font-family: "Museo Sans 100",Geneva,Arial,Verdana,sans-serif;
  font-size: 11pt;
  display: block;
}
#feedback_form textarea {
  width: 100%;
  margin-top: 10px;
  padding: 5px;
  min-height: 100px;
}
.feedback_box .reply_box {
  margin-left: 60px;
  margin-top: 10px;
}
.reply_form {
  display: flex;
}
.reply_form > div:first-child {
  flex-grow: 1;
}
.reply_form textarea {
  min-height: 30px!important;
  width: calc(100% - 10px)!important;
}
.reply_box > div:nth-child(2) {
  margin-top: -10px;
  position: relative;
}

/* Адаптация */
@media screen and (max-width: 1100px) {
  #menu {
    display: none;
  }
  nav {
    display: block;
  }
  #menu_btn_box {
    display: block;
  }
  .image_box_header + .image_box > .img_container:nth-child(5) {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .column_3 > div {
    width: 47.5%;
  }
  
  #my_info > div {
    padding: 5px;
    font-size: 12pt;
    display: flex;
    align-items: center;
  }
  .column_1_k_2 > div:first-child {
    width: 40%;
    flex-shrink: 1;
    position: relative;
  }
  .column_1_k_2 > div:last-child {
    width: 55%;
  }
}
@media screen and (max-width: 880px) {
  .image_box_header + .image_box > .img_container:nth-child(4) {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .column_box_between {
    display: block;
  }
  .column_box_around {
    display: block;
  }
  .column_3 > div {
    width: 100%;
  }
  .column_2 > div {
    width: 100%;
  }
  
  .column_1_k_2 {
    flex-direction: block;
  }
  .column_1_k_2 > div:first-child {
    width: 100%;
    position: relative;
    text-align: center;
  }
  .column_1_k_2 > div:last-child {
    width: 100%;
  }
  #my_photo {
    float: none;
    max-width: 90%;
    max-height: 500px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 670px) {
  .normal_image > div, .normal_image img {
    position: relative;
    max-width: 150px;
    max-height: 210px;
  }
}
@media screen and (max-width: 530px) {
  .image_box_header + .image_box > .img_container:nth-child(3) {
    display: none;
  }

.news img{
    width: 60%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    
}
}


/* Конец адаптации */
/* Новости*/

 /*Новости*/
.news h3{
  margin: 0;
  font-family: "Museo Sans 100",Geneva,Arial,Verdana,sans-serif;
  padding-bottom: 5px;
  color: #005b7f;
     text-align: center;
    
}

.title_news{
display: inline-block;
padding-left: 5px;
position: relative;
max-width: auto;
max-height: 210px;
   
}
 /*Кнопка читать на сайте*/

.hrefs_page{
  display: inline-block;
  color: #005b7f;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
 
}
/* >>>> hrefs <<<<< */

.news .info {
    border-top: 1px solid #000000;
    margin-top: 5px;
    padding-top: 5px;
    opacity: 0.8;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
/*Страница биография таблица*/
.tr_s {
    background: #8B4513;
    color: white;
}
.content_block {
    position: relative;
    background: rgba(255,255,255,.7);
    padding: 1.5%;
}
/*Страница биография результаты научно исследовательской деятельности*/
.self{
	width: 62%;
	padding: 0;
}

.photo{
	width: 18%;
}

.self div:last-child{
	margin-left: 30px;
	padding-top: 0;
}
#dostizh_obych_ul{
	list-style-type: decimal;
}

#dostizh_obych_ul li p{
	font-size: 120%;
	
}
.pdf {
    text-decoration: none;
    border-radius: 2px;
    color: gray;
    font-size: 130%;
    display: block;
    padding: 7px;
       transition: padding 0.3s, background 0.3s;
}
#dostizh_obych_ul {
    list-style-type: decimal;
}
#ucheb_met a:hover{
	color: #CD853F;
}