@charset "UTF-8";

/*Переменные*/

:root {
  --zero: #000;
  --white: #FFF;
  --black: #3F4142;
  --blue: #0A4993;
  --blueLight: #1971C5;
  --blueDark: #263B72;
  --red: #D80F16;
  --gray: #EFF1F2;
  --gray2: #7B8893;
}

/*Миксины*/

.ppix {
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 10000;
  display: none;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

html,
body {
  scrollbar-gutter: stable;
}

body {
  max-width: 100%;
  margin: 0px;
  font-family: "Geologica";
  font-weight: 300;
  color: var(--black, #3F4142);
  background: var(--white, #FFF);
  font-size: 18px;
  line-height: 140%;
  width: 100%;
  overflow: hidden auto;
  padding-top: 105px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  -ms-grid-rows: 1fr auto auto;
  grid-template-rows: 1fr auto auto;
  min-height: calc(100 * var(--vh));
}

.blue-top {
  position: relative;
}
.blue-top::before {
  content: '';
  display: block;
  width: 100%;
  height: 80vh;
  position: absolute;
  top: 0px;
  left: 0px;
  background: var(--blue, #0A4993);
}

.no-scroll {
  overflow: hidden;
}

.no-scroll > .simplebar-track {
  display: none;
}

main {
  overflow: hidden auto;
}

/* Флексы */

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

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

.flex--top-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex--top-center {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex--top-right {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex--top-space {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex--top-space-a {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex--center-left {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

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

.flex--center-right {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

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

.flex--center-space-a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex--bottom-left {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex--bottom-right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex--bottom-center {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex--bottom-space {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex--bottom-space-a {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

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

.pos--relative {
  position: relative;
}

p {
  margin: 0px 0px 22px 0px;
}

p:last-child {
  margin-bottom: 0;
}

b,
strong {
  font-weight: 500;
}

sup {
  display: inline-block;
  margin-top: -6px;
}

img {
  max-width: 100%;
}

.txt--16 {
  font-size: 16px;
  line-height: 130%;
}

.txt--20 {
  font-size: 20px;
  line-height: 150%;
}

.txt--22 {
  font-size: 22px;
  line-height: 150%;
}

.color--zero {
  color: var(--zero, #000);
}

.color--white {
  color: var(--white, #FFF);
}

.color--black {
  color: var(--black, #3F4142);
}

.color--blue {
  color: var(--blue, #0A4993);
}

.color--blue-light {
  color: var(--blueLight, #1971C5);
}

.color--blue-dark {
  color: var(--blueDark, #263B72);
}

.color--red {
  color: var(--red, #D80F16);
}

.color--gray {
  color: var(--gray, #EFF1F2);
}

.color--gray2 {
  color: var(--gray2, #7B8893);
}

.color--gray3 {
  color: var(--gray3, #A6A6A6);
}

.background--zero {
  background-color: var(--zero, #000);
}

.background--white {
  background-color: var(--white, #FFF);
}

.background--black {
  background-color: var(--black, #3F4142);
}

.background--blue {
  background-color: var(--blue, #0A4993);
}

.background--blue-light {
  background-color: var(--blueLight, #1971C5);
}

.background--blue-dark {
  background-color: var(--blueDark, #263B72);
}

.background--red {
  background-color: var(--red, #D80F16);
}

.background--gray {
  background-color: var(--gray, #EFF1F2);
}

.background--gray2 {
  background-color: var(--gray2, #7B8893);
}

.background--gray3 {
  background-color: var(--gray3, #A6A6A6);
}

h1,
.h1 {
  font-family: "Geologica";
  font-weight: 600;
}

h1:first-child,
.h1:first-child {
  margin-top: 0;
}

h1:last-child,
.h1:last-child {
  margin-bottom: 0;
}

h2,
.h2 {
  font-family: "Geologica";
  font-weight: 600;
}

h2:first-child,
.h2:first-child {
  margin-top: 0;
}

h2:last-child,
.h2:last-child {
  margin-bottom: 0;
}

h3,
.h3 {
  font-family: "Geologica";
  font-weight: 600;
}

h3:first-child,
.h3:first-child {
  margin-top: 0;
}

h3:last-child,
.h3:last-child {
  margin-bottom: 0;
}

h4,
.h4 {
  font-family: "Geologica";
  font-weight: 600;
}

h4:first-child,
.h4:first-child {
  margin-top: 0;
}

h4:last-child,
.h4:last-child {
  margin-bottom: 0;
}

h5,
.h5 {
  font-family: "Geologica";
  font-weight: 600;
}

h5:first-child,
.h5:first-child {
  margin-top: 0;
}

h5:last-child,
.h5:last-child {
  margin-bottom: 0;
}

h1 {
  margin: 0 0 80px;
}

h2,
h3,
h4 {
  margin: 48px 0 32px;
}

h5 {
  margin: 32px 0 22px;
}

picture + h1,
picture + h2,
picture + h3,
picture + h4,
picture + h5,
img + h1,
img + h2,
img + h3,
img + h4,
img + h5 {
  margin-top: 0;
}

.h0 {
  font-family: "Geologica";
  font-size: 82px;
  line-height: 120%;
  font-weight: 600;
  letter-spacing: -0.82px;
}

h1,
.h1 {
  font-size: 68px;
  line-height: 100%;
  letter-spacing: -0.68px;
}

h2,
.h2 {
  font-size: 48px;
  line-height: 120%;
}

h3,
.h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 120%;
}

h4,
.h4 {
  font-size: 28px;
  line-height: 130%;
}

h5,
.h5 {
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

a {
  text-decoration: none;
  color: var(--blueLight, #1971C5);
  -webkit-transition: color 0.4s;
  -o-transition: color 0.4s;
  transition: color 0.4s;
}

a:hover {
  color: var(--blue, #0A4993);
}

a.file-in-text {
  white-space: nowrap;
  border: none;
  padding-left: 30px;
  position: relative;
  color: var(--blueLight, #1971C5);
  font-weight: 300;
  line-height: 112%;
}

a.file-in-text::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 0;
  left: 4px;
  background: url("../img/file-types/file.svg") center center/cover no-repeat;
}

a.file-in-text--block {
  display: block;
}

a.file-in-text--block::before {
  left: 0px;
}

.file-in-text.pdf::before {
  background-image: url(../img/file-types/pdf.svg);
}

.file-in-text.doc::before {
  background-image: url(../img/file-types/doc.svg);
}

.file-in-text.xls::before {
  background-image: url(../img/file-types/xls.svg);
}

.file-in-text.jpg::before {
  background-image: url(../img/file-types/jpg.svg);
}

.file-in-text.png::before {
  background-image: url(../img/file-types/png.svg);
}

.file-in-text.z7::before {
  background-image: url(../img/file-types/7z.svg);
}

.file-in-text.aac::before {
  background-image: url(../img/file-types/aac.svg);
}

.file-in-text.avi::before {
  background-image: url(../img/file-types/avi.svg);
}

.file-in-text.bmp::before {
  background-image: url(../img/file-types/bmp.svg);
}

.file-in-text.csv::before {
  background-image: url(../img/file-types/csv.svg);
}

.file-in-text.docx::before {
  background-image: url(../img/file-types/docx.svg);
}

.file-in-text.gif::before {
  background-image: url(../img/file-types/gif.svg);
}

.file-in-text.gzip::before {
  background-image: url(../img/file-types/gzip.svg);
}

.file-in-text.htm::before {
  background-image: url(../img/file-types/htm.svg);
}

.file-in-text.html::before {
  background-image: url(../img/file-types/html.svg);
}

.file-in-text.jpeg::before {
  background-image: url(../img/file-types/jpeg.svg);
}

.file-in-text.jpg::before {
  background-image: url(../img/file-types/jpg.svg);
}

.file-in-text.json::before {
  background-image: url(../img/file-types/json.svg);
}

.file-in-text.mkv::before {
  background-image: url(../img/file-types/mkv.svg);
}

.file-in-text.mp3::before {
  background-image: url(../img/file-types/mp3.svg);
}

.file-in-text.mp4::before {
  background-image: url(../img/file-types/mp4.svg);
}

.file-in-text.mpeg::before {
  background-image: url(../img/file-types/mpeg.svg);
}

.file-in-text.odp::before {
  background-image: url(../img/file-types/odp.svg);
}

.file-in-text.ods::before {
  background-image: url(../img/file-types/ods.svg);
}

.file-in-text.odt::before {
  background-image: url(../img/file-types/odt.svg);
}

.file-in-text.ogg::before {
  background-image: url(../img/file-types/ogg.svg);
}

.file-in-text.ppt::before {
  background-image: url(../img/file-types/ppt.svg);
}

.file-in-text.pptx::before {
  background-image: url(../img/file-types/pptx.svg);
}

.file-in-text.rar::before {
  background-image: url(../img/file-types/rar.svg);
}

.file-in-text.rtf::before {
  background-image: url(../img/file-types/rtf.svg);
}

.file-in-text.svg::before {
  background-image: url(../img/file-types/svg.svg);
}

.file-in-text.tar::before {
  background-image: url(../img/file-types/tar.svg);
}

.file-in-text.tgz::before {
  background-image: url(../img/file-types/tgz.svg);
}

.file-in-text.tiff::before {
  background-image: url(../img/file-types/tiff.svg);
}

.file-in-text.txt::before {
  background-image: url(../img/file-types/txt.svg);
}

.file-in-text.vob::before {
  background-image: url(../img/file-types/vob.svg);
}

.file-in-text.wav::before {
  background-image: url(../img/file-types/wav.svg);
}

.file-in-text.webm::before {
  background-image: url(../img/file-types/webm.svg);
}

.file-in-text.wma::before {
  background-image: url(../img/file-types/wma.svg);
}

.file-in-text.wmv::before {
  background-image: url(../img/file-types/wmv.svg);
}

.file-in-text.xlsx::before {
  background-image: url(../img/file-types/xlsx.svg);
}

.file-in-text.xml::before {
  background-image: url(../img/file-types/xml.svg);
}

.file-in-text.zip::before {
  background-image: url(../img/file-types/zip.svg);
}

.file-name {
  white-space: normal;
  font-weight: 400;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.file-in-text:hover .file-name:hover {
  color: var(--blue, #0A4993);
}

.document {
  display: block;
  padding: 40px 96px 40px 0;
  border-top: 1px solid var(--gray2, #7B8893);
  position: relative;
}

.document svg {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: auto;
}

.document circle {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.document:hover circle {
  fill: var(--blue, #0A4993);
}

.back-link {
  gap: 24px;
  margin-bottom: 48px;
}

.blockquote,
.blockquote2,
.blockquote-ico,
blockquote {
  padding-left: 64px;
  position: relative;
  margin: 36px 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 130%;
}

.blockquote::before,
.blockquote2::before,
.blockquote-ico::before,
blockquote::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 40px;
  height: 40px;
  background: url(../img/icons/quotes.svg) center center/contain no-repeat;
}

.blockquote-ico {
  padding-left: 208px;
}

.blockquote-ico::before {
  left: 144px;
}

.blockquote-ico__ico {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.blockquote2::before {
  content: "";
  background: var(--blueLight, #1971C5);
  top: 0;
  left: 0;
  width: 3px;
  height: calc(100% + 2px);
}

blockquote .txt--22,
.blockquote .txt--22,
.blockquote2 .txt--22 {
  font-weight: 400;
}

main ul,
main ol {
  margin: 0;
  list-style: none;
  padding: 0;
  line-height: 130%;
  margin-bottom: 22px;
  display: table;
}

main ul ul,
main ul ol,
main ol ul,
main ol ol {
  margin-bottom: 0;
  margin-top: 22px;
}

main ul li,
main ol li {
  margin-bottom: 22px;
}

main ul li:last-child,
main ol li:last-child {
  margin-bottom: 0;
}

main ul li {
  position: relative;
  padding-left: 32px;
}

main ul li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  /* top: 8px; */
  top: 10px;
  left: 8px;
  background: var(--blueLight, #1971C5);
  border-radius: 50%;
}

main ul ul > li::before {
  width: 12px;
  height: 1px;
  top: 13px;
  left: 6px;
  -webkit-box-shadow: inset 0 0 0 1px var(--gray2, #7B8893);
          box-shadow: inset 0 0 0 1px var(--gray2, #7B8893);
  border-radius: 0;
}

main ul ul ul > li::before {
  background: none;
  /* top: 8px; */
  top: 10px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

main ul ul ul ul > li::before {
  background: var(--gray2, #7B8893);
  border-radius: 0;
}

main ul ul ul ul ul > li::before {
  background: none;
}

main ol {
  counter-reset: point1;
}

main ol > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 0;
}

main ol > li > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

main ol > li::before {
  content: counter(point1) ".";
  counter-increment: point1 1;
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  width: auto;
  min-width: 22px;
  margin-right: 8px;
  background: none;
}

main ol ol {
  counter-reset: point2;
}

main ol ol > li::before {
  content: counter(point1) "." counter(point2);
  counter-increment: point2 1;
}

main ol ol ol {
  counter-reset: point3;
}

main ol ol ol > li::before {
  content: counter(point1) "." counter(point2) "." counter(point3);
  counter-increment: point3 1;
}

main ol ol ol ol {
  counter-reset: point4;
}

main ol ol ol ol > li::before {
  content: counter(point1) "." counter(point2) "." counter(point3) "." counter(point4);
  counter-increment: point4 1;
}

main ol ol ol ol ol {
  counter-reset: point5;
}

main ol ol ol ol ol > li::before {
  content: counter(point1) "." counter(point2) "." counter(point3) "." counter(point4) "." counter(point5);
  counter-increment: point5 1;
}

main img {
  border-radius: 8px;
}

main img[align=left] {
  margin: 0px 48px 48px 0px;
}

main img[align=right] {
  margin: 0px 0 48px 48px;
}

main img:not([class]):not([align]) {
  margin: 52px 0;
}

main p + picture img:not([class]):not([align]),
main p + img:not([class]):not([align]) {
  margin-top: 16px;
}

main h1 + picture img:not([class]):not([align]),
main h1 + img:not([class]):not([align]) {
  margin-top: 0;
}

main .back-link + picture img:not([class]):not([align]),
main .back-link + img:not([class]):not([align]) {
  margin-top: 0;
}

main table {
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 1px;
  border: none !important;
}

main table p {
  margin-bottom: 24px;
}

main table p:last-child {
  margin-bottom: 0;
}

main table .simplebar-vertical {
  display: none;
}

main td,
main th {
  text-align: left;
  vertical-align: top;
  border: none;
  border-right: 1px solid var(--gray2, #7B8893);
  border-bottom: 1px solid var(--gray2, #7B8893);
}

main td:first-child,
main th:first-child {
  border-left: 1px solid var(--gray2, #7B8893);
}

main td.left-top,
main th.left-top {
  border-radius: 8px 0 0 0;
  border: 1px solid var(--gray2, #7B8893);
}

main td.right-top,
main th.right-top {
  border-radius: 8px 0 0 0;
}

main td.left-bottom,
main th.left-bottom {
  border-radius: 0 0 0 8px;
}

main td.right-bottom,
main th.right-bottom {
  border-radius: 0 0 8px 0;
}

main td.no-radius,
main th.no-radius {
  border-radius: 0;
}

main tr:first-child th,
main tr:first-child td {
  border-top: 1px solid var(--gray2, #7B8893);
}

main tr:first-child th:first-child,
main tr:first-child td:first-child {
  border-radius: 8px 0 0 0;
  border: 1px solid var(--gray2, #7B8893);
}

main tr:first-child th:last-child,
main tr:first-child td:last-child {
  border-radius: 0 8px 0 0;
}

main tr:last-child th:first-child,
main tr:last-child td:first-child {
  border-radius: 0 0 0 8px;
}

main tr:last-child th:last-child,
main tr:last-child td:last-child {
  border-radius: 0 0 8px 0;
}

main th {
  padding: 30px 22px;
  font-weight: 700;
  position: relative;
  background: var(--blueDark, #263B72);
  color: var(--white, #FFF);
}

main td {
  padding: 22px;
}

.table--clear {
  min-width: 100%;
}

.table--clear th,
.table--clear td {
  border: none !important;
  border-radius: 0 !important;
}

.table--clear th::before {
  display: none;
}

.table--clear:not(.table--odd) th,
.table--clear:not(.table--odd) td {
  padding-top: 14px;
  padding-bottom: 14px;
}

.table--clear:not(.table--odd) th:first-child,
.table--clear:not(.table--odd) td:first-child {
  padding-left: 0;
}

.table--clear:not(.table--odd) th:last-child,
.table--clear:not(.table--odd) td:last-child {
  padding-right: 0;
}

.table--clear:not(.table--odd) tr:first-child th,
.table--clear:not(.table--odd) tr:first-child td {
  padding-top: 24px;
  border-top: 1px solid var(--gray2, #7B8893) !important;
}

.table--clear:not(.table--odd) tr:last-child td {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray2, #7B8893) !important;
}

.scroll-table {
  margin: 0 0 22px;
}

.scroll-table.need-border {
  overflow: hidden;
  border-radius: 8px;
}

.scroll-table.need-border::before,
.scroll-table.need-border::after {
  content: "";
  display: block;
  width: 32px;
  height: calc(100% - 1px);
  position: absolute;
  top: 0px;
  right: 0px;
  border-right: 1px solid var(--gray2, #7B8893);
  border-radius: 0 8px 8px 0;
}

.scroll-table.need-border::before {
  left: 0;
  right: auto;
  border-right: none;
  border-left: 1px solid var(--gray2, #7B8893);
  border-radius: 8px 0 0 8px;
}

.scroll-table .simplebar-track {
  top: 110px;
  bottom: auto;
  background: transparent;
  border-bottom: 1px solid var(--gray2, #7B8893);
}

.scroll-table .simplebar-track.simplebar-horizontal {
  height: 4px !important;
  overflow: visible;
}

.scroll-table .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  top: 0px;
  height: 4px;
  width: auto;
}

.scroll-table .simplebar-track.simplebar-horizontal .simplebar-scrollbar::before {
  left: 0;
  right: 0;
  height: 4px !important;
  background: #76D4EB;
  border-radius: 3px;
  z-index: 1;
  opacity: 1;
}

.fit-image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.fit-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0 !important;
}

.fit-image--contain img {
  -o-object-fit: contain;
     object-fit: contain;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: var(--blue, #0A4993);
  color: var(--white, #FFF);
  padding: 20px 60px;
  gap: 48px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

header a {
  color: inherit;
}

header.open-menu {
  background: var(--white, #FFF);
  color: var(--blue, #0A4993);
}

header.open-menu path[stroke] {
  stroke: var(--blue, #0A4993);
}

header.open-menu path[fill] {
  fill: var(--blue, #0A4993);
}

header.open-menu .rezident-button {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: var(--blueLight, #1971C5);
}

header.open-menu .rezident-button:hover {
  color: var(--white, #FFF);
  background: var(--blue, #0A4993);
}

.rezident-button--mobile {
  display: none !important;
}

.logo {
  margin-right: auto;
}

.logo svg {
  height: 65px;
  width: auto;
}

.logo path {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

/* Кнопка в шапке */

/* Меню */

.burger {
  display: none;
  position: relative;
  width: 32px;
  height: 100%;
  cursor: pointer;
}

.burger::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.burger.open svg {
  display: none;
}

.burger.open .open-ico {
  display: block;
}

.open-ico {
  display: none;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 48px;
}

.menu__item {
  position: relative;
}

.menu__item.selected::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -5px;
  left: 0px;
  background: var(--white, #FFF);
}

.menu__item > a {
  white-space: nowrap;
  position: relative;
}

.menu__item > a:hover {
  color: var(--white, #FFF);
}

.menu__item:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}

.menu__item--parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.menu__item--parent i {
  display: block;
  width: 11px;
  height: 6px;
  margin-left: 8px;
  background: url("../img/icons/arrow.svg") center center/contain no-repeat;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  position: relative;
}

.sub-menu {
  background: var(--white, #FFF);
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu .sub-menu {
  display: block;
  padding: 24px;
  position: absolute;
  min-width: 194px;
  border: 1px solid var(--gray2, #7B8893);
  border-radius: 4px;
  top: calc(100% + 28px);
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.menu .sub-menu::before {
  content: "";
  display: block;
  width: 100%;
  height: 28px;
  position: absolute;
  bottom: 100%;
}

.sub-right .sub-menu {
  left: auto;
  right: 0;
}

.sub-menu__item {
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0px;
  color: var(--gray2, #7B8893);
}

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

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

.sub-menu__item a {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  display: block;
}

.sub-menu__item:hover a,
.sub-menu__item.selected a {
  color: var(--blueLight, #1971C5);
}

.burger-menu {
  display: none;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 38px 60px 80px;
  background: var(--white, #FFF);
  border-top: 1px solid var(--gray, #EFF1F2);
  color: var(--blue, #0A4993);
  z-index: 2;
}

.burger-menu .menu {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
}

.burger-menu .menu__item {
  display: block !important;
}

.burger-menu .menu__item a:hover {
  color: var(--blueLight, #1971C5);
}

.burger-menu .sub-menu {
  position: relative;
  margin-top: 24px;
  opacity: 1;
  visibility: visible;
  padding: 0;
  background: none;
  border: none;
}

.burger-menu .sub-menu::before {
  display: none;
}

.burger-menu .sub-menu__item {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--gray2, #7B8893);
  line-height: 130%;
}

.burger-menu .sub-menu__item:last-child {
  margin-bottom: 0;
}

.parent-list {
  width: calc(100% - 610px);
}

.child-list {
  width: 600px;
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
}

.child-list .menu__item {
  margin-bottom: 48px;
}

.header-overlay {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: calc(var(--vh) * 100 - 105px);
  background: var(--zero, #000);
  opacity: 0.1;
  z-index: 1;
}

/* Поиск */

.header__search {
  width: 24px;
  height: 100%;
  cursor: pointer;
  position: relative;
}

.header__search path {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.header__search svg {
  width: 100%;
  height: auto;
}

.header__search::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.fixed-search {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 530px;
  background: var(--white, #FFF);
  padding-top: 80px;
  text-align: center;
}

.search-close {
  position: absolute;
  top: 32px;
  right: 60px;
  z-index: 1;
  cursor: pointer;
}

.search-close path {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.search-close:hover path {
  stroke: var(--blueLight, #1971C5);
}

.search-form {
  margin: 110px auto 0 auto;
  border-bottom: 1px solid var(--gray2, #7B8893);
  position: relative;
  width: 742px;
}

.search-form input {
  padding: 20px 40px 15px 0;
  border: none !important;
  outline: none;
  width: 100%;
  font-size: inherit;
  font-weight: 400;
  line-height: 130%;
  font-family: "Geologica";
  color: var(--gray2, #7B8893);
}

.search-form input::-webkit-input-placeholder {
  color: var(--gray2, #7B8893);
  opacity: 1;
}

.search-form input::-moz-placeholder {
  color: var(--gray2, #7B8893);
  opacity: 1;
}

.search-form input:-ms-input-placeholder {
  color: var(--gray2, #7B8893);
  opacity: 1;
}

.search-form input::-ms-input-placeholder {
  color: var(--gray2, #7B8893);
  opacity: 1;
}

.search-form input::placeholder {
  color: var(--gray2, #7B8893);
  opacity: 1;
}

.reset-search {
  position: absolute;
  top: 20px;
  right: 0;
  cursor: pointer;
}

.reset-search path {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.reset-search:hover path {
  fill: var(--blueLight, #1971C5);
}

.search-results {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -32px;
  z-index: 2;
  width: calc(100% + 64px);
  padding: 32px;
  border-radius: 4px;
  background: var(--white, #FFF);
  -webkit-box-shadow: 0px 4px 20px 0px rgba(63, 65, 66, 0.05), 0px 4px 36px 0px rgba(86, 86, 86, 0.1);
          box-shadow: 0px 4px 20px 0px rgba(63, 65, 66, 0.05), 0px 4px 36px 0px rgba(86, 86, 86, 0.1);
  text-align: left;
}

.search-results__scroll {
  max-height: 306px;
  overflow: auto;
  padding-right: 12px;
}

.search-results__item {
  display: block;
  color: var(--gray2, #7B8893) !important;
  margin-bottom: 24px;
}

.search-results__item:hover .search-results__title span {
  color: var(--blueLight, #1971C5);
}

.search-results__item:last-child {
  margin-bottom: 0;
}

.search-results__title {
  margin-bottom: 8px;
  font-weight: 600;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.search-results__title span {
  color: var(--blue, #0A4993);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.search-results__breadcrumbs {
  width: 100%;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  color: #BCC3C8;
}

.search-results__breadcrumbs span {
  white-space: nowrap;
}

.search-results__breadcrumbs span.separator {
  margin: 0 4px;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 16px 24px;
  border: none;
  background: var(--blueLight, #1971C5);
  color: var(--white, #FFF);
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  text-align: center;
  font-size: 18px;
  line-height: 140%;
  font-weight: 600;
  border-radius: 8px;
}

.button:hover {
  background: var(--blue, #0A4993);
  color: var(--white, #FFF);
}

.button:disabled {
  background: var(--gray, #EFF1F2);
  pointer-events: none;
}

.button--dark {
  background: var(--blue, #0A4993);
}

.button--dark:hover {
  background: var(--blueLight, #1971C5);
}

.button--border-white {
  background: none;
  -webkit-box-shadow: inset 0 0 0 1px var(--white, #FFF);
          box-shadow: inset 0 0 0 1px var(--white, #FFF);
}

.button--border-white:hover {
  -webkit-box-shadow: inset 0 0 0 1px transparent;
          box-shadow: inset 0 0 0 1px transparent;
  color: var(--blueDark, #263B72);
  background: var(--white, #FFF);
}

.button--border-hover {
  -webkit-box-shadow: inset 0 0 0 1px transparent;
          box-shadow: inset 0 0 0 1px transparent;
}

.button--border-hover-white:hover {
  background: none;
  -webkit-box-shadow: inset 0 0 0 1px var(--white, #FFF);
          box-shadow: inset 0 0 0 1px var(--white, #FFF);
  color: var(--white, #FFF);
}

.button--big {
  padding: 32px 80px;
}

.buttons-block {
  gap: 16px;
}

/* Навигация слайреа */

.slider-nav {
  gap: 16px;
  line-height: 0;
}

.slider-nav svg {
  pointer-events: none;
}

.slider-nav__arrow {
  cursor: pointer;
  padding: 4px;
}

.slider-nav__arrow rect,
.slider-nav__arrow path {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.slider-nav__arrow:hover rect {
  fill: var(--blueLight, #1971C5);
  stroke: var(--blueLight, #1971C5);
}

.slider-nav__arrow:hover path {
  stroke: var(--white, #FFF);
}

.slider-nav__arrow.disabled {
  pointer-events: none;
}

.swiper-pagination-fraction {
  display: none !important;  
}

.section {
  padding: 160px 0;
}

.section--pt-0 {
  padding-top: 0 !important;
}

.big-container {
  padding-left: 60px;
  padding-right: 60px;
}

.video__wrapper {
  width: 100%;
  position: relative;
  line-height: 0;
  margin-bottom: 0px;
}

.video__wrapper video {
  width: 100%;
}

.video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white, #FFF);
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
}

.video__overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
}

.video__overlay::before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  background: var(--zero, #000);
  border-radius: 50%;
}

.video__overlay::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-left: 4px;
  z-index: 2;
  border-left: 24px solid var(--white, #FFF);
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
}

.spoiler {
  border-top: 1px solid var(--gray2, #7B8893);
  border-bottom: 1px solid var(--gray2, #7B8893);
  position: relative;
}

.spoiler::before {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background: var(--gray2, #7B8893);
  position: absolute;
  top: -1px;
  left: 0px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.spoiler.open .spoiler-name {
  color: var(--blueLight, #1971C5);
}

.spoiler.open .spoiler-name::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  background-color: var(--blue, #0A4993);
}

.spoiler:hover .spoiler-name {
  color: var(--blueLight, #1971C5);
}

.spoiler:hover .spoiler-name::after {
  background-color: var(--blue, #0A4993);
}

.spoiler + .spoiler {
  border-top: none;
}

.spoiler-name {
  cursor: pointer;
  padding: 48px 100px 48px 0px;
  position: relative;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.spoiler-name p {
  margin: 0;
}

.spoiler-name::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blueLight, #1971C5) url(../img/icons/spoiler.svg) center center no-repeat;
  pointer-events: none;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.spoiler-content {
  display: none;
  margin: 0 0px 32px 0px;
}

.block-table {
  display: table;
}

.block-table__row {
  display: table-row;
}

.block-table__cell {
  display: table-cell;
}

.block-table__col {
  display: table-column;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  background: var(--zero, #000);
  opacity: 0.5;
}

.close {
  position: absolute;
  right: 0;
  top: -48px;
  color: var(--white, #FFF);
  cursor: pointer;
}

.close svg {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-top: 48px;
  z-index: 21;
  background: var(--white, #FFF);
  padding: 0px;
  width: 1212px;
  max-width: calc(100% - 64px);
}

.popup__content {
  width: 100%;
  max-height: calc(100vh - 270px);
}

/* Картинка + текст */

.image-text {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 0 auto 0 auto;
      grid-template-areas: "A B" "A C" "A D";
  -ms-grid-columns: 36% 80px auto;
  grid-template-columns: 36% auto;
  grid-gap: 0 80px;
}

.image-text__image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  -ms-grid-column: 1;
  grid-area: A;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.image-text__title {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: B;
  margin-bottom: 48px;
  max-width: 903px;
}

.image-text__title:last-child {
  margin-bottom: 0;
}

.image-text__text {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: C;
}

.image-text__buttons {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
  grid-area: D;
  gap: 16px;
  margin-top: 80px;
}

/* Заголовок блока */

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

.block__title .slider-nav {
  margin-top: 3px;
}

/* Слайдер карторчек */

.card-slider {
  overflow: hidden;
}

.card-slider__slider {
  width: 100vw;
  padding: 80px 60px;
  margin-left: calc((100vw - 100%) / 2 * -1);
}

.card-slider__slider .swiper-wrapper {
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}

.card-slider__slider .swiper-slide {
  height: unset;
  width: 568px;
}

@media (max-width: 1279px) {
  .card-slider__slider .swiper-slide {
    width: calc(50% - 24px);
  }
}

@media (max-width: 1023px) and (min-width: 681px) {
  .card-slider__slider .item-card {
    padding: 24px;
  }
}

@media (max-width: 680px) {
  .card-slider__slider .swiper-slide {
    width: 100%;
  }
}

.card-slider__slider .item-card {
  height: 100%;
}

/* Список карточек */

.item-list {
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  gap: 48px;
}

p + .item-list {
  margin-top: 48px;
}

.item-list .item-card {
  width: calc(50% - 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.item-list .item-card__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.item-list .item-card__title {
  height: unset !important;
}

.item-list .item-card__text {
  height: unset;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: auto;
}

/* Предыдущая и следующая новости */

.news-nav-list {
  padding-top: 80px;
}

.news-nav {
  width: calc(50% - 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.news-nav .item-card {
  width: 100%;
  height: 100%;
  margin-top: 48px;
}

/* Карточка */

.item-card {
  display: block;
  padding: 40px;
  border-radius: 8px;
  position: relative;
  color: var(--black, #3F4142);
}

.item-card::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  pointer-events: none;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.25) inset, 0px 4px 36px 0px rgba(86, 86, 86, 0.1);
          box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.25) inset, 0px 4px 36px 0px rgba(86, 86, 86, 0.1);
  border-radius: 8px;
}

.item-card:hover {
  color: var(--black, #3F4142);
}

.item-card:hover .item-card__title {
  color: var(--blueLight, #1971C5);
}

.item-card:hover path {
  stroke: var(--blueLight, #1971C5);
}

.item-card__image {
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  margin-bottom: 24px;
}

.item-card__content {
  position: relative;
  padding-right: 60px;
}

.item-card__date {
  margin-bottom: 24px;
}

.item-card__title {
  margin-bottom: 28px;
  height: 110px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  font-family: "Geologica";
  font-weight: 500;
  line-height: 130%;
  font-size: 28px;
}

.item-card__title:last-child {
  margin-bottom: 0;
}

.item-card__text {
  height: 100px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
}

.item-card__arrow {
  position: absolute;
  bottom: 4px;
  right: 4px;
}

/*.item-card__arrow svg {
  width: 100%;
  height: auto;
}*/

.item-card__arrow path {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

/* Фильтр новостей */
.news-filter {
  max-width: 648px;
}

/* Ссылка с логотипом */

.logo-item {
  width: calc(50% - 24px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  padding: 40px;
  border-radius: 8px;
  background: var(--white, #FFF);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.25) inset, 0px 4px 36px 0px rgba(86, 86, 86, 0.1);
          box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.25) inset, 0px 4px 36px 0px rgba(86, 86, 86, 0.1);
}

.logo-item:hover .logo-item__bottom path {
  stroke: var(--blue, #0A4993);
}

.logo-item__logo {
  width: 100%;
  height: 185px;
  position: relative;
}

.logo-item__logo img {
  margin: 0 !important;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.logo-item__bottom {
  width: 100%;
  gap: 18px;
}

.logo-item__bottom path {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

/* Скролл */

.wide-scroll .simplebar-track.simplebar-vertical {
  width: 8px;
  background: var(--gray, #EFF1F2);
  border-radius: 8px;
}

.wide-scroll .simplebar-track.simplebar-vertical .simplebar-scrollbar::before {
  top: 0;
  left: 0;
  opacity: 1;
  width: 100%;
  border-radius: 8px;
  background: var(--blueLight, #1971C5);
}

/* Контент страницы */

.page {
  margin: 55px auto 160px;
  width: calc(100% - 120px);
  max-width: 1600px;
}

.inner {
  width: 100%;
  max-width: 1192px;
}

@media (min-width: 2000px){
  .page {
    max-width: unset;
  }
  .inner {
    max-width: 60vw;
  }
  .item-list .item-card {
    width: calc((100% + 48px) / 3 - 48px);
  }
}

/* Хлебные крошки */

.breadcrumbs {
  margin-bottom: 34px;
  width: 100%;
  height: 18px;
  overflow: hidden;
  font-size: 14px;
  line-height: 130%;
}

.breadcrumbs .breadcrumbs__last {
  opacity: 0.5;
}

.breadcrumbs__scroll {
  width: 100%;
  height: 40px;
  overflow: auto hidden;
  white-space: nowrap;
}

/* Контакты */

.contacts {
  gap: 24px;
  margin-bottom: 48px;
}

.contact {
  width: calc((100% + 24px) / 4 - 24px);
}

.contact--big {
  width: calc(50% - 12px);
}

.contact__item {
  margin-top: 12px;
  gap: 10px;
}

.contact__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 600;
}

/* Карта */

.map {
  width: 100%;
  height: 600px;
  border-radius: 8px;
  overflow: hidden;
}

footer {
  padding: 40px;
  background: var(--gray, #EFF1F2);
  gap: 12px;
}

.copyright {
  opacity: 0.5;
}

.to-top {
  margin-left: auto;
  gap: 24px;
  color: var(--blueLight, #1971C5);
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.to-top rect {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.to-top:hover {
  color: var(--blue, #0A4993);
}

.to-top:hover rect {
  fill: var(--blue, #0A4993);
}

.to-top__ico {
  width: 36px;
  height: 36px;
}

.to-top__ico path {
  stroke-width: 4px;
}

.footer__info {
  gap: 8px;
  width: calc(100% - 476px);
}

.footer__contact {
  color: var(--gray2, #7B8893);
  font-weight: 600;
  gap: 18px;
}

.form {
  -webkit-box-align: initial;
      -ms-flex-align: initial;
          align-items: initial;
  position: relative;
  z-index: 1;
}

.form label {
  position: relative;
  display: block;
  margin-bottom: 48px;
}

.form label.w100 {
  width: 100%;
}

.form label.w66 {
  width: calc(66.66% - 16px);
}

.form label.w50 {
  width: calc(50% - 16px);
}

.form label.w33 {
  width: calc(33.33% - 16px);
}

.form label.w25 {
  width: calc(25% - 16px);
}

.input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--gray2, #7B8893);
  background: none;
  padding: 20px 0 15px;
  font-family: "Geologica";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--black, #3F4142);
  outline: none !important;
  border-radius: 0;
  -webkit-appearance: none;
}

.input::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

.input::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

.input:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

.input::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

.input::placeholder {
  color: inherit;
  opacity: 1;
}

.input.error {
  border-color: var(--red, #D80F16);
}

.input:disabled {
  color: var(--gray, #EFF1F2);
  border-color: var(--gray, #EFF1F2);
}

.input:disabled ~ .placeholder {
  color: var(--gray, #EFF1F2);
}

.input.input--date,
.input.input--text,
.input[type=password] {
  padding-right: 40px;
  background: right center/auto 32px no-repeat;
}

.input.input--date {
  background-image: url(../img/icons/datepicker.svg);
}

.password-ico {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  width: 32px;
  height: 32px;
  background: url(../img/icons/pass-show.svg) center center/auto 32px no-repeat;
  cursor: pointer;
}

.input[type=password] ~ .password-ico {
  background-image: url(../img/icons/pass-hide.svg);
}

textarea.input {
  border: none;
  border-bottom: 1px solid var(--gray2, #7B8893);
}

textarea.input::-webkit-input-placeholder {
  color: var(--zero, #000);
}

textarea.input::-moz-placeholder {
  color: var(--zero, #000);
}

textarea.input:-ms-input-placeholder {
  color: var(--zero, #000);
}

textarea.input::-ms-input-placeholder {
  color: var(--zero, #000);
}

textarea.input::placeholder {
  color: var(--zero, #000);
}

.textarea {
  border: 1px solid var(--zero, #000);
}

.form__row {
  margin-bottom: 24px;
}

.placeholder {
  position: absolute;
  top: 20px;
  left: 0px;
  z-index: 3;
  color: var(--gray2, #7B8893);
  font-size: 18px;
  line-height: 130%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  pointer-events: none;
}

.filled .placeholder,
label:focus-within .placeholder,
.changed ~ .placeholder {
  top: 0px !important;
  font-size: 12px;
  color: var(--black, #3F4142);
}

label.error {
  position: absolute;
  top: calc(100% + 8px);
  font-size: 14px;
  color: var(--red, #D80F16);
}

.jq-selectbox {
  width: 100%;
}

.jq-selectbox select {
  pointer-events: none;
}

.jq-selectbox.changed .jq-selectbox__select-text {
  color: var(--black, #3F4142);
}

.jq-selectbox__select {
  z-index: 1;
  padding: 20px 0 15px;
  border-bottom: 1px solid var(--gray2, #7B8893);
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--gray2, #7B8893);
  font-family: "Geologica";
  outline: none !important;
}

.jq-selectbox__select-text {
  width: calc(100% - 32px);
}

.jq-selectbox__trigger {
  width: 8px;
  height: 8px;
  position: absolute;
  right: 8px;
  top: 50%;
  border-right: 1px solid var(--zero, #000);
  border-bottom: 1px solid var(--zero, #000);
  z-index: 1;
  margin-top: 2px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.opened .jq-selectbox__trigger {
  margin-top: 8px;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
      -ms-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}

.scroll-wrap {
  max-height: 200px;
}

.jq-selectbox__dropdown {
  padding: 0;
  min-width: 100%;
  background: var(--white, #FFF);
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid var(--gray2, #7B8893);
  border-radius: 8px;
  margin-top: 16px;
}

.jq-selectbox__dropdown ul {
  position: relative;
  list-style: none;
  margin: 0 !important;
}

.jq-selectbox__dropdown li {
  padding: 5px 10px !important;
  margin: 0 !important;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}

.jq-selectbox__dropdown li::before {
  display: none !important;
}

.jq-selectbox__dropdown li:last-child {
  margin: 0 !important;
}

.jq-selectbox__dropdown li.sel,
.jq-selectbox__dropdown li:hover {
  color: var(--blueLight, #1971C5);
}

.jq-selectbox__dropdown li.disabled {
  display: none;
}

label:hover .page input[type=checkbox] ~ i,
label:hover .page input[type=radio] ~ i {
  border-color: var(--black, #3F4142);
}

.page input[type=checkbox],
.page input[type=radio] {
  display: none;
}

.page input[type=checkbox] ~ i,
.page input[type=radio] ~ i {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid var(--gray2, #7B8893);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background: var(--white, #FFF);
  float: left;
  position: relative;
  margin-top: 1px;
}

.page input[type=checkbox] ~ i::before,
.page input[type=radio] ~ i::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: var(--black, #3F4142);
  opacity: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-radius: 4px;
}

.page input[type=checkbox]:checked ~ i::before,
.page input[type=radio]:checked ~ i::before {
  opacity: 1;
}

.page input[type=checkbox] ~ span,
.page input[type=radio] ~ span {
  display: inline-block;
  padding-left: 8px;
  max-width: calc(100% - 26px);
}

.page input[type=checkbox]:disabled ~ i,
.page input[type=checkbox]:disabled ~ span,
.page input[type=radio]:disabled ~ i,
.page input[type=radio]:disabled ~ span {
  opacity: 0.5;
}

.page input[type=radio] ~ i {
  border-radius: 50%;
}

.page input[type=radio] ~ i::before {
  border-radius: 50%;
}

.datepicker {
  border: none !important;
  border-radius: 8px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  font-family: inherit;
  font-weight: 400;
  color: var(--zero, #000);
  font-size: 16px !important;
  line-height: 140%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 528px;
  padding: 0px 40px 30px;
}

.datepicker--nav {
  padding: 0;
  border: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 130px;
}

.datepicker--nav-action,
.datepicker--nav-title {
  background: none !important;
}

.datepicker--nav-title {
  color: var(--black, #3F4142);
  font-weight: 600;
  font-size: 30px;
  line-height: 120%;
  font-family: "Geologica";
}

.datepicker--nav-action svg {
  width: 36px;
  height: auto;
}

.datepicker--nav-action path {
  fill: var(--blueLight, #1971C5);
  stroke: none;
  stroke-width: 1px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.datepicker--nav-action:hover path {
  fill: var(--blue, #0A4993);
}

.datepicker--pointer {
  display: none;
}

.datepicker--content {
  padding: 0 !important;
}

.datepicker--days-names {
  margin: 0;
}

.datepicker--day-name {
  color: var(--black, #3F4142);
  font-weight: 600;
  text-transform: capitalize;
  padding: 0 0 24px;
  position: relative;
  font-family: "Geologica";
  font-size: 24px;
}

.datepicker--day-name::before {
  content: "";
  display: block;
  width: calc(100% - 2px);
  height: 2px;
  position: absolute;
  bottom: 0px;
  left: 1px;
  background: var(--gray, #EFF1F2);
}

.datepicker--day-name.-weekend- {
  color: var(--red, #D80F16) !important;
}

.datepicker--cells-months {
  height: auto !important;
}

.datepicker--cell {
  border-radius: 0px !important;
  border: none !important;
  height: 64px;
  font-weight: 600;
  color: var(--gray2, #7B8893) !important;
  background: none !important;
  pointer-events: none !important;
  font-family: "Geologica";
  font-size: 24px;
}

.datepicker--cell.-weekend- {
  color: var(--red, #D80F16) !important;
}

.datepicker--cell-day {
  pointer-events: none !important;
}

.datepicker--cell.-event-cell- {
  color: var(--white, #FFF) !important;
  pointer-events: all !important;
}

.datepicker--cell.-event-cell-::before {
  content: "";
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  position: absolute;
  top: 2px;
  left: 4px;
  z-index: -1;
  background: var(--blueLight, #1971C5);
  border-radius: 4px;
  pointer-events: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.datepicker--cell.-selected-.-event-cell-::before {
  background: var(--blue, #0A4993);
}

.datepicker--cell-year.-disabled-,
.datepicker--cell-month.-disabled- {
  color: var(--gray2, #7B8893) !important;
}

/* Датапикер инпута */

.in-form {
  -webkit-box-shadow: 1px 1px 10px -5px var(--blueDark, #263B72) !important;
          box-shadow: 1px 1px 10px -5px var(--blueDark, #263B72) !important;
  width: 400px;
  padding: 0px 20px 20px;
}

.in-form .datepicker--nav {
  min-height: 84px;
}

.in-form .datepicker--nav-title {
  font-size: 24px;
}

.in-form .datepicker--nav-action {
  width: 24px;
}

.in-form .datepicker--day-name {
  font-size: 18px;
  padding-bottom: 12px;
}

.in-form .datepicker--cell {
  font-size: 18px;
  pointer-events: all !important;
  color: var(--black, #3F4142) !important;
  height: 51px;
}

.in-form .datepicker--cell.-weekend- {
  color: var(--red, #D80F16) !important;
}

.in-form .datepicker--cell.-selected- {
  color: var(--white, #FFF) !important;
}

.in-form .datepicker--cell.-selected-::before {
  content: "";
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: -1;
  background: var(--blueLight, #1971C5);
  border-radius: 4px;
  pointer-events: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.in-form .datepicker--cell.-disabled- {
  opacity: 0.5;
}

.file__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}

.file {
  position: relative;
  width: 100%;
  margin-bottom: 48px;
}

.file__info {
  position: relative;
  width: 100%;
  padding: 40px 40px;
  border-radius: 4px;
  border: 1px dashed var(--black, #3F4142);
  text-align: center;
  cursor: pointer;
}

.file__info svg {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.file__info-download {
  margin-bottom: 4px;
}

.file__item {
  margin-top: 24px;
}

.file__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  color: var(--zero, #000);
  padding-top: 5px;
}

.file__item-inner:hover .file__item-name {
  color: var(--zero, #000);
}

.file__item-name {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  margin-right: 8px;
}

.file__item-close {
  margin-left: auto;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.file__item-close path {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.file__item-close:hover {
  color: var(--zero, #000);
}

.file__item-close:hover path {
  fill: var(--zero, #000);
}

.file__item-close svg {
  margin-left: 8px;
}

.captcha-label {
  min-width: 282px;
}

.ajax-form-content {
  margin-top: 120px;
}

@media (min-width: 901px) {
  .burger-menu .menu__item--important {
    display: none;
  }
}

@media (max-width: 1800px) {
  .h0 {
    font-size: 68px;
    line-height: 100%;
    letter-spacing: -0.68px;
  }

  h1,
  .h1 {
    font-size: 48px;
    line-height: 120%;
    letter-spacing: unset;
  }

  .h1--small {
    font-size: 48px;
    line-height: 120%;
    letter-spacing: unset;
  }

  h2,
  .h2 {
    font-size: 30px;
  }

  .h2--small {
    font-size: 30px;
  }

  h3,
  .h3 {
    font-size: 28px;
    line-height: 130%;
  }

  .h3--small {
    font-size: 28px;
    line-height: 130%;
  }

  .h4--small {
    font-size: 24px;
    line-height: 120%;
  }

  h5,
  .h5 {
    font-size: 22px;
    font-weight: 600;
  }

  .h5--small {
    font-size: 22px;
    font-weight: 600;
  }

  .blockquote,
  .blockquote2,
  .blockquote-ico,
  blockquote {
    font-size: 24px;
    line-height: 120%;
  }

  /* .menu__item:nth-last-child(1) {
    display: none;
  } */

  .menu__item--important {
    display: block;
  }

  .fixed-search {
    height: 440px;
  }

  .search-form {
    margin-top: 36px;
  }

  .section {
    padding: 120px 0;
  }

  .item-list .item-card__date {
    font-size: 14px;
  }

  .item-list .item-card__title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .page {
    margin-bottom: 120px;
  }

  .map {
    height: 405px;
  }

  .copyright {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }

  .copyright br {
    display: none;
  }

  .footer__info {
    width: calc(100% - 140px);
  }

  .image-text__image {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }

  .image-text__title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }

  .image-text__text {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }

  .image-text__buttons {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  
  .ajax-form-content {
    margin-top: 80px;
  }
}

@media (max-width: 1550px) {
  .menu__wrap {
    display: none;
  }
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 1349px) {
  .image-text {
    -ms-grid-rows: auto 0 auto 0 auto;
        grid-template-areas: "B B" "A C" "D D";
    grid-gap: 0 48px;
  }
}

@media (max-width: 1279px) {
  .menu__item:nth-last-child(5) {
    display: none;
  }
}

@media (max-width: 959px) {
  .menu__item {
    display: none;
  }
}

@media (max-width: 1023px) {
  .txt--16 {
    font-size: 14px;
  }

  .txt--22 {
    font-size: 18px;
    line-height: 130%;
  }

  h1 {
    margin-bottom: 64px;
  }

  .h1--pda {
    font-size: 48px;
    line-height: 120%;
    letter-spacing: unset;
  }

  .h2--pda {
    font-size: 30px;
  }

  .h3--pda {
    font-size: 28px;
    line-height: 130%;
  }

  h4,
  .h4 {
    font-size: 24px;
    line-height: 120%;
  }

  .h4--pda {
    font-size: 24px;
    line-height: 120%;
  }

  .h5--pda {
    font-size: 22px;
    font-weight: 600;
  }

  .document {
    padding: 32px 72px 32px 0;
  }

  .document svg {
    width: 40px;
  }

  .blockquote,
  .blockquote2,
  .blockquote-ico,
  blockquote {
    font-size: 22px;
  }

  .blockquote2 {
    padding-left: 24px;
  }

  header {
    padding: 20px 40px;
  }

  .burger-menu {
    padding: 38px 40px 48px;
  }

  .parent-list {
    width: calc(50% - 12px);
  }

  .child-list {
    -webkit-columns: unset;
       -moz-columns: unset;
            columns: unset;
    width: calc(50% - 12px);
  }

  .fixed-search {
    height: 375px;
  }

  .search-close {
    right: 40px;
  }

  .search-form {
    margin-top: 24px;
    width: 636px;
  }

  .big-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .image-text {
    -ms-grid-rows: auto 0 auto 0 auto 0 auto;
        grid-template-areas: "A A" "B B" "C C" "D D";
    grid-gap: 0;
    -ms-grid-columns: 50% 0 50%;
    grid-template-columns: 50% 50%;
  }

  .image-text__image {
    margin-bottom: 80px;
    padding-bottom: 53%;
  }

  .card-slider__slider {
    padding: 60px 40px;
  }

  .item-list .item-card {
    padding: 24px;
  }

  .item-list .item-card__image {
    margin-bottom: 12px;
  }

  .item-list .item-card__date {
    margin-bottom: 12px;
  }

  .item-list .item-card__title {
    font-size: 16px;
    color: var(--blueLight, #1971C5);
  }

  .item-card__text {
    height: 74px;
  }

  .logo-item {
    width: 100%;
  }

  .logo-item__logo {
    height: 132px;
  }

  .page {
    width: calc(100% - 80px);
  }

  .contact {
    width: calc(50% - 12px);
  }

  .to-top {
    gap: 12px;
  }

  .image-text__image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }

  .image-text__title {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }

  .image-text__text {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }

  .image-text__buttons {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}

@media (max-width: 900px) {
  .menu__wrap {
    display: none;
  }
}

@media (max-width: 680px) {
  body {
    padding-top: 70px;
    font-size: 16px;
  }

  .txt--20 {
    font-size: 16px;
    line-height: 130%;
  }

  h1 {
    margin-bottom: 48px;
  }

  .h0 {
    font-size: 30px;
    line-height: 120%;
    letter-spacing: unset;
  }

  h1,
  .h1 {
    font-size: 28px;
    line-height: 130%;
  }

  .h1--small {
    font-size: 28px;
    line-height: 130%;
  }

  .h1--pda {
    font-size: 28px;
    line-height: 130%;
  }

  .h1--mobile {
    font-size: 28px;
    line-height: 130%;
  }

  h2,
  .h2 {
    font-size: 24px;
  }

  .h2--small {
    font-size: 24px;
  }

  .h2--pda {
    font-size: 24px;
  }

  .h2--mobile {
    font-size: 24px;
  }

  h3,
  .h3 {
    font-size: 24px;
    line-height: 130%;
  }

  .h3--small {
    font-size: 24px;
    line-height: 130%;
  }

  .h3--pda {
    font-size: 24px;
    line-height: 130%;
  }

  .h3--mobile {
    font-size: 24px;
    line-height: 130%;
  }

  h4,
  .h4 {
    font-size: 22px;
    line-height: 130%;
  }

  .h4--small {
    font-size: 22px;
    line-height: 130%;
  }

  .h4--pda {
    font-size: 22px;
    line-height: 130%;
  }

  .h4--mobile {
    font-size: 22px;
    line-height: 130%;
  }

  h5,
  .h5 {
    font-size: 18px;
    line-height: 130%;
  }

  .h5--small {
    font-size: 18px;
    font-weight: 600;
    line-height: 130%;
  }

  .h5--pda {
    font-size: 18px;
    font-weight: 600;
    line-height: 130%;
  }

  .h5--mobile {
    font-size: 18px;
    font-weight: 600;
    line-height: 130%;
  }

  .document {
    padding: 22px 52px 22px 0;
  }

  .blockquote,
  .blockquote2,
  .blockquote-ico,
  blockquote {
    padding-left: 0;
  }

  .blockquote::before,
  .blockquote2::before,
  .blockquote-ico::before,
  blockquote::before {
    position: relative;
    margin-bottom: 24px;
  }

  .blockquote-ico {
    padding-bottom: 144px;
  }

  .blockquote-ico::before {
    left: 0;
  }

  .blockquote-ico__ico {
    top: auto;
    bottom: 0;
  }

  .blockquote2 {
    padding-left: 24px;
  }

  .blockquote2::before {
    position: absolute;
  }

  main ul li {
    padding-left: 24px;
  }

  main ul li::before {
    width: 6px;
    height: 6px;
  }

  main ul ul > li::before {
    top: 10px;
  }

  main ul ul ul > li::before {
    width: 6px;
    height: 6px;
  }

  header {
    padding: 10px 15px;
    gap: 36px;
  }

  .logo svg {
    height: 50px;
  }

  .rezident-button {
    display: none;
  }

  .rezident-button--mobile {
    display: block !important;
  }

  .burger-menu {
    padding: 24px 48px;
    height: calc(var(--vh) * 100 - 70px);
  }

  .burger-menu .menu {
    display: block;
  }

  .burger-menu .menu__item > a {
    text-decoration: underline;
    text-underline-offset: 8px;
  }

  .burger-menu__scroll {
    height: calc(100% - 80px);
    overflow: auto;
    padding-right: 14px;
    margin-bottom: 40px;
  }

  .parent-list {
    width: 100%;
  }

  .child-list {
    width: 100%;
    margin-top: 24px;
  }

  .child-list .menu__item {
    margin-bottom: 24px;
  }

  .fixed-search {
    padding: 5px 15px;
    height: auto;
  }

  .search-close {
    top: 20px;
    right: 15px;
  }

  .search-title {
    display: none;
  }

  .search-form {
    margin-top: 0;
    width: calc(100% - 94px);
  }

  .search-form input {
    color: var(--black, #3F4142);
  }

  .reset-search {
    display: none;
  }

  .search-results {
    padding: 16px;
  }

  .search-results__scroll {
    max-height: 362px;
  }

  .search-results__item {
    margin-bottom: 12px;
  }

  .search-results__title {
    margin-bottom: 2px;
  }

  .button {
    font-size: 14px;
  }

  .button--big {
    padding: 24px 48px;
    width: 100%;
    justify-content: center;
  }

  .slider-nav {
    gap: 10px;
  }

  .slider-nav svg {
    width: 40px;
    height: 40px;
  }

  .section {
    padding: 48px 0;
  }

  .big-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .image-text__image {
    margin-bottom: 24px;
  }

  .image-text__title {
    margin-bottom: 24px;
  }

  .image-text__buttons {
    margin-top: 36px;
  }

  .card-slider__slider {
    padding: 24px 15px;
  }

  .card-slider__slider .swiper-slide {
    width: 270px;
    min-width: unset;
  }

  .item-list .item-card {
    width: 100%;
  }

  .news-nav {
    width: 100%;
  }

  .item-card {
    padding: 24px 18px;
  }

  .item-card__content {
    padding-right: 0;
  }

  .item-card__date {
    margin-bottom: 12px;
  }

  .item-card__title {
    height: 94px;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    margin-bottom: 24px;
    color: var(--blueLight, #1971C5);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
  }

  .item-card__arrow {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    margin-top: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .item-card__arrow svg {
    width: 14px;
  }

  .item-card__arrow path {
    stroke: var(--blueLight, #1971C5);
    stroke-width: 2px;
  }

  .logo-item {
    padding: 24px;
  }

  .logo-item__logo {
    height: 88px;
  }

  .logo-item__bottom path {
    stroke-width: 1px;
  }

  .logo-item__bottom svg {
    width: 16px;
    height: 13px;
  }

  .page {
    margin: 20px auto 60px;
    width: calc(100% - 30px);
  }

  .contact {
    width: 100%;
  }

  .contact--big {
    width: 100%;
  }

  .map {
    height: 170px;
  }

  footer {
    padding: 16px 15px;
  }

  .to-top span {
    display: none;
  }

  .footer__info {
    width: calc(100% - 56px);
  }

  .form label {
    width: 100% !important;
    margin-bottom: 32px;
  }

  .datepicker {
    padding: 0 15px 15px;
    width: 290px;
  }

  .datepicker--nav {
    min-height: 65px;
  }

  .datepicker--nav-title {
    font-size: 16px;
  }

  .datepicker--nav-action svg {
    width: 18px;
  }

  .datepicker--day-name {
    font-size: 12px;
    padding-bottom: 12px;
  }

  .datepicker--day-name::before {
    height: 1px;
  }

  .datepicker--cell {
    height: 36px;
  }

  .datepicker--cell {
    font-size: 12px;
  }

  .datepicker--cell.-event-cell-::before {
    top: 4px;
  }

  .in-form .datepicker--nav-title {
    font-size: 20px;
  }

  .in-form .datepicker--cell {
    height: 37px;
  }

  .in-form .datepicker--cell.-selected-::before {
    top: 4px;
  }

  .file {
    margin-bottom: 32px;
  }

  main img[align=left] {
    margin-right: 100%;
  }
  main img[align=right] {
    margin-left: 100%;
  }
  
  .ajax-form-content {
    margin-top: 40px;
  }
}

@media (width: 1920px) {
  .ppix1 {
    display: block;
    top: 0px;
  }
}