@charset "UTF-8";
@font-face {
  font-family: Formular;
  src: url(../fonts/formular-black.woff2) format("woff2");
  font-weight: 900;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
}

@font-face {
  font-family: Formular;
  src: url(../fonts/formular-bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
}

@font-face {
  font-family: Formular;
  src: url(../fonts/formular-medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
}

@font-face {
  font-family: Formular;
  src: url(../fonts/formular-regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
}

/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul,
ol {
  padding: 0;
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Элементы a, убираем стили по умолчанию с псевдоклассами*/
a {
  text-decoration: none;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Кнопки убираем стиль по умолчанию*/
button {
  border: none;
  background-color: transparent;
}

body {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

:root {
  --font-family: "Formular", sans-serif;
  --second-family: "PT Serif", sans-serif;
  --third-family: "Montserrat", sans-serif;
}

.mb-16-12 {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .mb-16-12 {
    margin-bottom: 12px;
  }
}

.mb-32-24 {
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .mb-32-24 {
    margin-bottom: 24px;
  }
}

.mb-24 {
  margin-bottom: 24px;
}

.title--xxl {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 110%;
  color: #111;
}

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

.title--xl {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 110%;
  color: #111;
}

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

.title--l {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;
  color: #1e488f;
}

@media (max-width: 768px) {
  .title--l {
    font-size: 24px;
  }
}

.title--m {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  color: #111;
}

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

.text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #111;
}

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

.text--article {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #111;
}

.text--article a {
  color: inherit;
}

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

.text__700 {
  font-weight: 700;
}

.text__color-01 {
  color: #1e488f;
}

.text__color-02 {
  color: #b90b0b;
}

.header {
  background-color: #ffffff;
  position: fixed;
  width: 100%;
  z-index: 99999;
}

.header__container {
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 0;
}

.header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 111%;
  color: #111;
  gap: 0 8px;
}

@media (max-width: 768px) {
  .header__links {
    display: none;
  }
}

.header__links a {
  color: inherit;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
}

.header__nav img {
  width: 20px;
  height: 20px;
}
.header__nav .icon__search {
  margin-left: 15px;
  margin-right: 30px;
}
@media (max-width: 575px) {
  .header__nav a:first-child {
    display: none;
  }
}

.header__nav a:last-child {
  display: none;
}
.icon__search-mobile{
  display: none;
}
@media (max-width: 768px) {
  .header__nav a {
    display: none;
  }
  
  .icon__search-mobile{
    display: block;
  }
  .header__nav a:last-child {
    display: block;
  }
}

.main {
  padding-top: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #182847;
}

@media (max-width: 768px) {
  .main {
    background-color: #ffffff;
  }
  .main__container{
    border-top: 20px #182847 solid;
  }
}

.main__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
  gap: 0 24px;
}

.article {
  max-width: 72%;
  padding: 58px 40px 48px 40px;
  background-color: #ffffff;
  margin-top: 16px;
}

@media (max-width: 1700px) {
  .article {
    max-width: 55%;
  }
}

@media (max-width: 1200px) {
  .article {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .article {
    padding: 0 0 48px 0;
  }
}

.article__link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  color: #1e488f;
  margin-bottom: 20px;
  gap: 0 5px;
}

.article__link-list a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: inherit;
}

.article__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px 12px;
}

@media (max-width: 475px) {
  .article__social {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.note {
  border: 1px solid #1e488f;
}

.note--01 {
  padding: 32px;
}

@media (max-width: 768px) {
  .note--01 {
    padding: 24px 20px;
  }
}

.note--01 .note__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #111;
  margin-bottom: 16px;
}

.note--01 .note__list {
  list-style-type: disc;
  list-style-position: inside;
}

.note--01 .note__list-item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #1e488f;
}

.note--01 .note__list-item:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .note--01 .note__list-item {
    font-size: 16px;
  }
}

.img-item img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}
.comment__body img{
  border-radius: 8px;
}
@media (max-width: 768px) {
  .img-item--desktop {
    display: none;
  }
}

.img-item--mob {
  display: none;
}

@media (max-width: 768px) {
  .img-item--mob {
    display: block;
  }
}

.img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 15px 15px;
}

.img-list .img-item img {
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media (max-width: 768px) {
  .img-list--01 {
    -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;
  }
}

.note--02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 18px 18px;
  padding: 32px 24px;
}

@media (max-width: 575px) {
  .note--02 {
    -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;
    padding: 20px;
  }
}

.note--02 .note__left-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .note--02 .note__left-item {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0 20px;
  }
}

.note--02 .note__left-item-doc {
  width: 100%;
  max-width: 152px;
}

.note--02 .note__left-item-quote {
  margin-top: auto;
}

@media (max-width: 575px) {
  .note--02 .note__left-item-quote {
    margin-top: 0;
    max-width: 89px;
  }
}

@media (max-width: 575px) {
  .note--02 .note__right-item {
    width: 100%;
  }
}

.note--02 .note__right-item-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #111;
  margin-bottom: 16px;
}

@media (max-width: 575px) {
  .note--02 .note__right-item-text {
    font-size: 16px;
  }
}

.note--02 .note__right-item-text *:not(:last-child) {
  margin-bottom: 10px;
}

.note--02 .note__right-item-text ul {
  list-style-type: disc;
  list-style-position: inside;
}

.note--02 .note__right-item-author p {
  text-align: right;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #111;
}

.note--02 .note__right-item-author p:first-child {
  font-weight: 700;
  margin-bottom: 5px;
}

@media (max-width: 575px) {
  .note--02 .note__right-item-author p:first-child {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .note--02 .note__right-item-author p:not(:first-child) {
    font-size: 13px;
  }
}

.article__list {
  list-style-type: disc;
  list-style-position: inside;
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 150%;
  color: #111;
}

.article__list li:not(:last-child) {
  margin-bottom: 10px;
}

.img-item--censo img:first-child {
  cursor: pointer;
}

.img-item--censo img:last-child {
  display: none;
}

.note--03 {
  padding: 24px 20px;
}

@media (max-width: 768px) {
  .note--03 {
    padding: 20px;
  }
}

.note--03 .note__img-item {
  margin-bottom: 20px;
}

.note--03 .note__descr p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #111;
}

@media (max-width: 768px) {
  .note--03 .note__descr p {
    font-size: 16px;
  }
}

.note--03 .note__descr p:not(:last-child) {
  margin-bottom: 10px;
}

.note--04 {
  padding: 20px 24px;
  border: none;
  background-color: #dde7f8;
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 150%;
  color: #111;
}

.comment {
  padding-bottom: 24px;
  border-bottom: 1px solid #d9d9d9;
}

.comment:not(:last-child) {
  margin-bottom: 24px;
}

.comment__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 16px;
}

@media (max-width: 768px) {
  .comment__header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px;
  }
}

.comment__name-author {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: #111;
}

.comment__body {
  margin-top: -40px;
  margin-left: 96px;
}

@media (max-width: 768px) {
  .comment__body {
    margin-top: 0;
    margin-left: 0;
  }
}

.comment__body-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #111;
}

.comment__body-text:not(:last-child) {
  margin-bottom: 10px;
}

.comment__footer {
  padding-top: 10px;
  margin-left: 96px;
}

@media (max-width: 768px) {
  .comment__footer {
    margin-left: 0;
  }
}

.comment__footer-link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #1e488f;
}

.comment-btn {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  max-width: 250px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
  background: #1e488f;
  padding: 16px;
  margin-top: 18px;
}

.sidebar {
  max-width: 24%;
  padding-top: 16px;
}

@media (max-width: 1200px) {
  .sidebar {
    display: none;
  }
}

.sidebar__news {
  margin-bottom: 32px;
}

.news-list__title {
  padding: 10px 16px;
  background-color: #1e488f;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 9px;
  line-height: 125%;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #fff;
}

.news-list__item {
  padding: 16px;
  background-color: #ffffff;
  border-bottom: 1px solid #182847;
}

.news-list__item-logs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 10px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 9px;
  line-height: 140%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1e488f;
  margin-bottom: 5px;
}

.news-list__item-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.04em;
  color: #111;
}

.sidebar__link {
  margin-top: 10px;
  display: block;
  text-align: center;
  width: 100%;
  padding: 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 112%;
  text-align: center;
  color: #fff;
  background: #1e488f;
}

.sidebar__prod {
  position: sticky;
  top: 102px;
}

.sidebar__prod-img-item {
  padding: 70px 15px;
  background-color: #fff;
  margin-bottom: 20px;
}

.sidebar__prod-img-item img {
  margin: 0 auto;
}

.sidebar__prod-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  margin-bottom: 8px;
}

.sidebar__prod-subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  margin-bottom: 12px;
}

.sidebar__prod-timer {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.sidebar__prod-link {
  display: block;
  text-align: center;
  width: 100%;
  padding: 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 112%;
  text-align: center;
  color: #fff;
  background: #1e488f;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #182847;
}

.footer__container {
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 20px;
  padding: 64px 0 32px 0;
}

@media (max-width: 992px) {
  .footer__content {
    -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;
    gap: 20px 0;
  }
  .footer__copyright {
    text-align: center;
  }
  .footer__logo {
    display: none;
  }
  .footer__link-list {
    display: none;
  }
}

.footer__icons {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 24px;
}

.footer__link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;

  gap: 8px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #fff;
}

@media (max-width: 768px) {
  .footer__link-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px 0;
  }
}

.footer__link-list a {
  color: inherit;
}

.form {
  background: #fdfdfd;
  border: 1px solid #1e488f;
  padding: 20px;
}

.form__title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 17px;
  line-height: 150%;
  color: #1e488f;
}

.form__block {
  display: flex;
  margin: 20px 0 0 0;
  justify-content: center;
  gap: 30px;
  align-items: center;
}
@media (max-width:1700px) {
  .form__block{
    flex-direction: column;
  }

}
.fields__input {
  max-width: 212px;
  width: 100%;
  border: 1px #949494 solid;
  display: block;
  padding: 5px 0 5px 10px;
  font-size: 16px;
  height: 34px;
}

.fields__input:not(:last-child) {
  margin: 0 0 10px 0;
}

.fields__btn {
  max-width: 212px;
  width: 100%;
  background: #1e488f;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  padding: 7px 0;
  margin: 15px 0 0 0;
}

.form__inputs {
  flex: 0 1 212px;
}

@media (max-width: 768px) {
  .form__block {
    flex-direction: column;
  }

  .form__img {
    margin: 0 auto 15px auto;
  }

  .fields__input:not(:last-child) {
    max-width: 272px;
    margin: 0 auto 10px auto;
  }

  .form__inputs {
    text-align: center;
  }
}

.img-item--bg {
  position: relative;
}

.img-item--bg .item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
}
.footer__copyright {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #fff;
}
@media (max-width: 992px) {
  .footer__link-list {
    display: none;
  }
  .footer__icons {
    margin-top: 0;
  }
}
.ramka__original {
  background-color: #f6eecd;
  padding: 16px;
}
.comment__ava-author {
  border-radius: 50%;
}
.loading {
  display: flex;
  align-items: center;
}

.loading img {
  display: inline;
  width: 60px !important;
  margin: 0 16px 0 0;
}

.comment-write {
  transition: all 0.3s ease;
  max-height: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 24px;
}

.comments__kma > div {
  transition: all 0.3s ease;
}

.comment-add {
  margin: 15px 0;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
}

.comment-hide {
  transform: translateX(calc(-100% - 100px));
  height: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.comment-write {
  transition: all 0.3s ease;
  max-height: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.comments__kma {
  overflow: hidden;
}

.loading {
  font-style: italic;
}

.loading:after {
  content: ".";
  animation: loading 1s ease alternate infinite;
}

@keyframes loading {
  60% {
    text-shadow: 0.35em 0 0 currentColor;
  }

  100% {
    text-shadow: 0.35em 0 0 currentColor, 0.75em 0 0 currentColor;
  }
}

.img__blur{
  filter: blur(20px);
  cursor: pointer;
}
