@charset "UTF-8";
:root {
  --colorPrimary: #005fa0;
  --colorPrimaryRGB: 0, 95, 160;
  --colorSecondary:#D7B56D;
  --colorThird:#0A7DD0;
  --colorWarning: #FFC063;
  --colorDanger: #D23636;
  --colorSuccess: #399954;
  --bgLightBlue: #F7FAFF;
  --bgGreyDark: #252525;
  --colorText: #000;
  --font-primary: 'PT Sans Caption', Arial, Helvetica, Geneva, sans-serif;
  --font-secondary: 'Zen Kaku Gothic New', Tahoma, Helvetica, Geneva, sans-serif;
  --font-size: 14px;
  --gapBaseGrid: 20px;
  --gapVertBlock: 40px;
  --containerW: 1408px;
  --padContainer: 10px; }

@media (min-width: 768px) {
  :root {
    --padContainer: var(--gapBaseGrid); } }

@media (min-width: 1024px) {
  :root {
    --font-size: 16px;
    --gapVertBlock: 60px; } }

@media (min-width: 1400px) {
  :root {
    --font-size: 18px;
    --gapVertBlock: 90px; } }

@media (min-width: 1500px) {
  :root {
    --padContainer: 0px; } }

@font-face {
  font-family: 'PT Sans Caption';
  src: url("../fonts/PTSans-Caption.woff2") format("woff2"), url("../fonts/PTSans-Caption.woff") format("woff");
  font-display: swap;
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'PT Sans Caption';
  src: url("../fonts/PTSans-CaptionBold.woff2") format("woff2"), url("../fonts/PTSans-CaptionBold.woff") format("woff");
  font-display: swap;
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'Zen Kaku Gothic New';
  src: url("../fonts/ZenKakuGothicNew-Bold.woff2") format("woff2"), url("../fonts/ZenKakuGothicNew-Bold.woff") format("woff");
  font-display: swap;
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: 'Zen Kaku Gothic New';
  src: url("../fonts/ZenKakuGothicNew-Black.woff2") format("woff2"), url("../fonts/ZenKakuGothicNew-Black.woff") format("woff");
  font-display: swap;
  font-weight: 900;
  font-style: normal; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-kerning: auto;
  font-kerning: auto;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.3em; }

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

/* reset */
button {
  border: none;
  color: inherit;
  font-size: 100%;
  font-family: inherit;
  background: none;
  padding: 0;
  cursor: pointer; }

a img {
  border: none; }

ul, ol {
  margin: 0;
  padding: 0; }

ul {
  list-style: none; }

strong {
  font-weight: 600; }

figure {
  margin: 0;
  padding: 0; }

pre {
  font-family: var(--font-primary); }

table {
  border: none;
  border-collapse: collapse;
  border-spacing: 0; }

body, html {
  font-size: var(--font-size); }

body {
  position: relative;
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--colorText); }

body.noscroll {
  overflow: hidden;
  height: 100vh; }

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  background: #1b1a1f;
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease; }

.overlay.active {
  pointer-events: auto;
  opacity: 0.7;
  z-index: 9; }

a:not([class]) {
  color: var(--colorPrimary);
  text-decoration: none; }

@media (hover: hover) {
  a:hover {
    text-decoration: underline; } }

p {
  padding: 0;
  margin: 1.3em 0 0.8em; }
  p:first-child {
    margin-top: 0; }
  p:last-child {
    margin-bottom: 0; }
  :is(h2, h3) + p {
    margin-top: 0; }

h1, h2, h3 {
  padding: 0;
  font-weight: 800; }

h1 {
  font-family: var(--font-secondary);
  font-size: 1.7rem;
  text-transform: uppercase;
  margin: 0 0 0.7em; }

h2 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin: 1em 0 var(--gapVertBlock);
  line-height: 1.44em; }
  section h2:first-child {
    margin-top: 0; }

h3 {
  margin: 1em 0 0.5em;
  font-size: 1.15rem;
  font-weight: 600; }
  h3 i {
    font-weight: normal;
    font-style: normal; }

div > :is(h2, h3, h4):first-child {
  margin-top: 0; }

.hidden {
  display: none !important; }

[hidden] {
  display: none; }

/* видно для доступности, но не глазу */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden; }

.marginNull {
  margin: 0; }

.paddingNull {
  padding: 0; }

.notes {
  font-size: 80%;
  opacity: 0.8; }

hr {
  margin: 2.5em auto;
  height: 1px;
  width: 100%;
  border: none;
  border-top: 2px dotted var(--colorPrimary);
  background: none; }
  section + hr {
    margin: 0; }

.row-equalcol {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: var(--gapBase); }

/*! список для текста с тире */
.ul-text {
  padding: 0 0 0 0.7em;
  margin: 0.5em 0 1em 0;
  /* list-style-type: disc;
    list-style-position: outside; */ }
  .ul-text li {
    margin-bottom: 0.7em;
    padding-left: 4.3em;
    position: relative; }
    .ul-text li::before {
      display: block;
      content: "";
      position: absolute;
      top: 0.7em;
      left: 2.2em;
      width: 1.5em;
      height: 1px;
      background: currentColor; }
    .ul-text li::after {
      display: block;
      content: "";
      position: absolute;
      top: 0.35em;
      left: 0;
      width: 1.93em;
      height: 0.78em;
      background: url(../images/marker-romb.svg) no-repeat 0 0;
      background-size: contain; }
    .ul-text li:last-child {
      margin-bottom: 0; }

main ol:not(class) {
  margin: 0.5em 0 1em 2em; }
  main ol:not(class) li {
    margin-bottom: 0.5em;
    padding-left: 0.3em; }

.listNumberOutline {
  counter-reset: numberOutline;
  list-style: none;
  margin-left: 0; }
  .listNumberOutline li {
    position: relative;
    padding-left: 4rem; }
  .listNumberOutline li::before {
    display: block;
    content: "";
    position: absolute;
    content: counter(numberOutline, decimal-leading-zero);
    counter-increment: numberOutline;
    top: 0;
    left: 0;
    width: 1em;
    line-height: 1em;
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--bgLightBlue);
    text-shadow: 1px 1px black, -1px -1px black; }
    @supports (-webkit-text-stroke: 1px black) {
      .listNumberOutline li::before {
        color: transparent;
        -webkit-text-stroke: 1px black;
        text-shadow: none; } }

.text--Warning {
  color: var(--colorThird); }

.text--Danger {
  color: var(--colorDanger); }

.text--Success {
  color: var(--colorSuccess); }

/*!
 * Bootstrap Grid Only (grid and responsive utilities extracted from Bootstrap 4.1.3)
 */
@-ms-viewport {
  width: device-width; }

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar; }

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

/**
 * Bootstrap overrides
 */
.clearfix::after {
  display: block;
  clear: both;
  content: ""; }

.visible {
  visibility: visible !important; }

.invisible {
  visibility: hidden !important; }

.hidden-xs-up {
  display: none !important; }

@media (max-width: 767.98px) {
  .hidden-xs-down {
    display: none !important; } }

@media (min-width: 768px) {
  .hidden-sm-up {
    display: none !important; } }

@media (max-width: 999.98px) {
  .hidden-sm-down {
    display: none !important; } }

@media (min-width: 1000px) {
  .hidden-md-up {
    display: none !important; } }

@media (max-width: 1549.98px) {
  .hidden-md-down {
    display: none !important; } }

@media (min-width: 1550px) {
  .hidden-lg-up {
    display: none !important; } }

/* @media (max-width: 1199.98px) {
  .hidden-lg-down {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-xl-up {
    display: none !important;
  }
} */
.hidden-lg-down {
  display: none !important; }

.visible-print-block {
  display: none !important; }

@media print {
  .visible-print-block {
    display: block !important; } }

.visible-print-inline {
  display: none !important; }

@media print {
  .visible-print-inline {
    display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }

@media print {
  .visible-print-inline-block {
    display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

.container {
  width: 100%;
  padding-right: var(--padContainer);
  padding-left: var(--padContainer);
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 992px) {
  .container {
    max-width: 960px; } }

@media (min-width: 1264px) {
  .container {
    max-width: 1200px; } }

@media (min-width: 1420px) {
  .container {
    max-width: var(--containerW); }
  /* .container{
      max-width:1405px;
      padding-left: 120px;
      padding-right: 120px;
  } */
  .container--wide {
    max-width: 1420px; } }

.container-fluid {
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
  margin-right: auto;
  margin-left: auto; }

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 0px;
  margin-left: 0px; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 0px;
  padding-left: 0px; }

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%; }

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%; }

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.3333333333%;
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%; }

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.6666666667%;
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%; }

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%; }

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.6666666667%;
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%; }

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.3333333333%;
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%; }

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.6666666667%;
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%; }

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.3333333333%;
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%; }

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.6666666667%;
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%; }

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%; }

.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1; }

.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13; }

.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0; }

.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1; }

.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2; }

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3; }

.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4; }

.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5; }

.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6; }

.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7; }

.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8; }

.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9; }

.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10; }

.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11; }

.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12; }

.offset-1 {
  margin-left: 8.3333333333%; }

.offset-2 {
  margin-left: 16.6666666667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.3333333333%; }

.offset-5 {
  margin-left: 41.6666666667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.3333333333%; }

.offset-8 {
  margin-left: 66.6666666667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.3333333333%; }

.offset-11 {
  margin-left: 91.6666666667%; }

@media (min-width: 768px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.3333333333%; }
  .offset-sm-2 {
    margin-left: 16.6666666667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.3333333333%; }
  .offset-sm-5 {
    margin-left: 41.6666666667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.3333333333%; }
  .offset-sm-8 {
    margin-left: 66.6666666667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.3333333333%; }
  .offset-sm-11 {
    margin-left: 91.6666666667%; } }

@media (min-width: 1000px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.3333333333%; }
  .offset-md-2 {
    margin-left: 16.6666666667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.3333333333%; }
  .offset-md-5 {
    margin-left: 41.6666666667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.3333333333%; }
  .offset-md-8 {
    margin-left: 66.6666666667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.3333333333%; }
  .offset-md-11 {
    margin-left: 91.6666666667%; } }

@media (min-width: 1256px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.3333333333%; }
  .offset-lg-2 {
    margin-left: 16.6666666667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.3333333333%; }
  .offset-lg-5 {
    margin-left: 41.6666666667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.3333333333%; }
  .offset-lg-8 {
    margin-left: 66.6666666667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.3333333333%; }
  .offset-lg-11 {
    margin-left: 91.6666666667%; } }

@media (min-width: 1400px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.3333333333%; }
  .offset-xl-2 {
    margin-left: 16.6666666667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.3333333333%; }
  .offset-xl-5 {
    margin-left: 41.6666666667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.3333333333%; }
  .offset-xl-8 {
    margin-left: 66.6666666667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.3333333333%; }
  .offset-xl-11 {
    margin-left: 91.6666666667%; } }

.img-fluid {
  max-width: 100%;
  height: auto; }

/* end grid */
header {
  position: fixed;
  width: 100%;
  z-index: 10;
  padding: 10px 0 6px;
  background: var(--bgLightBlue);
  -webkit-transition: padding 0.3s ease;
  transition: padding 0.3s ease; }
  header.sticky {
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.11);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.11); }
  .index header {
    background: #fff; }

.headMain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }
  .headMain .logos {
    margin-right: auto; }
    .headMain .logos a {
      display: block; }
    .headMain .logos img {
      display: block;
      max-height: 100%;
      width: 100%; }
    .headMain .logos .logo {
      width: 123px; }
  .headMain .openMenu {
    position: relative;
    z-index: 103;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 12px 0 0;
    font-weight: 400;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.35, 0.265, 1.35);
    transition-timing-function: cubic-bezier(0.68, -0.35, 0.265, 1.35); }
    .headMain .openMenu .hamburger {
      padding-right: 0; }
    @media (hover: hover) {
      .headMain .openMenu:hover {
        color: var(--colorPrimary); } }
  .headMain .actionButton {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
    .headMain .actionButton .button {
      max-height: 64px;
      max-width: 11.5em;
      line-height: 0.8em; }

@media (min-width: 768px) {
  header {
    padding: var(--gapBaseGrid) 0; }
  .headMain .logos .logo {
    width: 170px; } }

.offset-navmain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 100; }

.box-navmain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100vh;
  background: #fff;
  pointer-events: all;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: translateY(-100vh);
  transform: translateY(-100vh); }
  .showMenu .box-navmain {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  .box-navmain .container {
    text-align: center; }
  .box-navmain nav + .button {
    margin-top: 0.5rem; }

.mainMenu .menu-item a {
  --font-size: 16px;
  display: inline-block;
  margin-bottom: 2.8rem;
  padding: 0em 0.5em;
  font-size: var(--font-size);
  font-weight: 600;
  color: var(--colorText);
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in; }
  .mainMenu .menu-item a:focus {
    color: var(--colorPrimary);
    outline: none;
    border-left-color: currentColor;
    border-right-color: currentColor; }

.mainMenu .current-menu-item a {
  border-left-color: currentColor;
  border-right-color: currentColor; }

/* планшетно-десктопная версия */
@media (min-width: 768px) {
  header .headMain .openMenu {
    display: none; }
  header .offset-navmain {
    position: static;
    margin-top: 27px; }
  header .box-navmain {
    height: auto;
    background: transparent;
    -webkit-transform: none;
    transform: none; }
    header .box-navmain .container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      padding-right: 0; }
    header .box-navmain nav + .button {
      margin-top: 0; }
  .mainMenu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .mainMenu .menu-item {
    margin-right: var(--gapBaseGrid); }
    .mainMenu .menu-item--mob {
      display: none; }
    .mainMenu .menu-item a {
      margin-bottom: 0; } }
    @media (min-width: 768px) and (hover: hover) {
      .mainMenu .menu-item a:hover {
        border-left-color: currentColor;
        border-right-color: currentColor; } }

@media (min-width: 768px) {
    .mainMenu .menu-item:last-child {
      margin-right: 0; }
    .mainMenu .menu-item:last-child a {
      margin-right: -0.5em; } }

@-webkit-keyframes opacity {
  0% {
    opacity: 0; }
  80% {
    opacity: 0.5; }
  100% {
    opacity: 1; } }

@keyframes opacity {
  0% {
    opacity: 0; }
  80% {
    opacity: 0.5; }
  100% {
    opacity: 1; } }

footer {
  padding: calc(var(--gapBaseGrid) * 2) 0 calc(var(--gapBaseGrid) * 4);
  background-color: var(--bgGreyDark);
  color: #fff;
  overflow: hidden;
  /* .container {
        display: flex; align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        position: relative;
    } */ }
  footer .footer__logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: calc(var(--gapBaseGrid) * 2); }
    footer .footer__logos a {
      display: block;
      margin-right: var(--gapBaseGrid); }
      footer .footer__logos a img {
        width: 100%;
        max-width: 100%; }
    footer .footer__logos .logo-main {
      width: 106px; }
  footer .footer__contacts {
    width: 100%;
    font-size: 90%; }
    footer .footer__contacts a {
      color: #fff;
      text-decoration: none; }
    @media (hover: hover) {
      footer .footer__contacts a:hover {
        text-decoration: underline; } }
  @media (min-width: 768px) {
    footer .footer__logos {
      padding-bottom: 0; } }

/* кнопки (кнопки, ссылки)  */
.button {
  display: inline-block;
  padding: 1.05em 2em 1em;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size);
  line-height: 1.5em;
  border-radius: 2em;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  /* Hover effect */
  /* focus effect */ }
  .button.btn-default {
    background-color: var(--colorPrimary);
    color: #fff; }
  .button.btn-secondary {
    background-color: var(--bgGreyDark);
    color: #fff; }
  .button.btn-light {
    border-color: currentColor;
    color: var(--colorText); }
  .button.btn-light-inverse {
    border-color: currentColor;
    color: currentColor; }
  .button.btn-simpleText {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 0.5ex;
    padding-bottom: 0.5ex;
    color: var(--colorText);
    font-size: 0.75em;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: normal;
    white-space: nowrap; }
    .button.btn-simpleText::after {
      display: block;
      content: "";
      position: absolute;
      bottom: 0.2ex;
      left: 2em;
      width: calc(100% - 4em);
      height: 1px;
      background: currentColor;
      -webkit-transition: opacity 0.3s ease-out;
      transition: opacity 0.3s ease-out; }
    .button.btn-simpleText .icok {
      margin-left: 0.5em;
      margin-right: 0.5em;
      font-size: 85%; }
  .button.btn-wide {
    padding-left: 3em;
    padding-right: 3em; }
  .button.btn-wide100 {
    width: 100%; }
  .button.btn-low {
    padding-top: 0.8em;
    padding-bottom: 0.75em; }
  .button:disabled {
    cursor: text; }
    .button:disabled.btn-default, .button:disabled.btn-default:focus, .button:disabled.btn-default:focus-visible, .button:disabled.btn-secondary, .button:disabled.btn-secondary:focus, .button:disabled.btn-secondary:focus-visible {
      background-color: #a6a6a6;
      -webkit-box-shadow: none;
      box-shadow: none; }
    :is(.button:disabled.btn-light, .button:disabled.btn-light-inverse),
    :is(.button:disabled.btn-light, .button:disabled.btn-light-inverse):focus,
    :is(.button:disabled.btn-light, .button:disabled.btn-light-inverse):focus-visible {
      border-color: #a6a6a6;
      color: #a6a6a6;
      -webkit-box-shadow: none;
      box-shadow: none; }
  @media (hover: hover) {
    .button:hover {
      outline: none;
      text-decoration: none; }
      .button:hover.btn-default {
        background-color: var(--colorSecondary);
        color: #000; }
      .button:hover.btn-secondary {
        background-color: var(--colorSecondary);
        color: #000; }
      .button:hover.btn-light {
        background: #000;
        color: #fff; }
      .button:hover.btn-light-inverse {
        background: #fff;
        color: #000;
        border-color: #fff; }
      .button:hover.btn-simpleText::after {
        opacity: 0; }
    .button:disabled:hover {
      -webkit-box-shadow: none !important;
      box-shadow: none !important; }
      .button:disabled:hover.btn-default {
        background-color: #a6a6a6; }
      :is(.button:disabled:hover.btn-light, .button:disabled:hover.btn-light-inverse) {
        border-color: #a6a6a6;
        color: #a6a6a6;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-width: 1px; } }
  .button:focus, .button:focus-visible {
    outline: none;
    text-decoration: none;
    -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.1); }
    .button:focus.btn-default, .button:focus-visible.btn-default {
      background-color: var(--colorSecondary);
      color: #000; }
    .button:focus.btn-secondary, .button:focus-visible.btn-secondary {
      background-color: var(--colorSecondary);
      color: #000; }
    .button:focus.btn-light, .button:focus-visible.btn-light {
      background: #000;
      color: #fff; }
    .button:focus.btn-light-inverse, .button:focus-visible.btn-light-inverse {
      background: #fff;
      color: #000; }
    .button:focus.btn-simpleText, .button:focus-visible.btn-simpleText {
      -webkit-box-shadow: none;
      box-shadow: none;
      font-weight: bold;
      color: var(--colorPrimary); }
    .button:focus:disabled, .button:focus-visible:disabled {
      -webkit-box-shadow: none !important;
      box-shadow: none !important; }

/* элементы forms */
form, input, textarea, select, option, button {
  font-size: 100%;
  font-family: inherit; }

select {
  width: 100%;
  max-width: 100%; }

button {
  font-weight: inherit; }

input {
  -webkit-transition: background-color 0.2s ease,
 color 0.2s ease;
  transition: background-color 0.2s ease,
 color 0.2s ease; }

input[type="submit"].btn-light {
  background: none; }

.default-input:disabled, .default-input:disabled:hover {
  cursor: text;
  border-color: #a6a6a6;
  color: #a6a6a6; }

.default-input,
textarea {
  padding: 0.5em 1em 0.45em;
  border: 1px solid currentColor;
  background-color: #fff;
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: var(--colorText);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }
  .default-input[type="date"],
  textarea[type="date"] {
    max-height: 2.39em; }
  .default-input:focus, .default-input:focus-visible,
  textarea:focus,
  textarea:focus-visible {
    border-color: var(--colorPrimary);
    opacity: 1; }
  .default-input.input-inverse,
  textarea.input-inverse {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff; }
    .default-input.input-inverse:focus, .default-input.input-inverse:focus-visible,
    textarea.input-inverse:focus,
    textarea.input-inverse:focus-visible {
      background-color: rgba(0, 0, 0, 0.1);
      border-color: #fff; }
  .default-input::-moz-placeholder,
  textarea::-moz-placeholder {
    color: var(--colorText);
    font-size: 100%;
    text-transform: none;
    opacity: 0.3; }
  .default-input:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    color: var(--colorText);
    font-size: 100%;
    text-transform: none;
    opacity: 0.3; }
  .default-input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    color: var(--colorText);
    font-size: 100%;
    text-transform: none;
    opacity: 0.3; }
  .default-input.input-inverse::-moz-placeholder,
  textarea.input-inverse::-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 100%;
    text-transform: none;
    opacity: 1; }
  .default-input.input-inverse:-ms-input-placeholder,
  textarea.input-inverse:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 100%;
    text-transform: none;
    opacity: 1; }
  .default-input.input-inverse::-webkit-input-placeholder,
  textarea.input-inverse::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 100%;
    text-transform: none;
    opacity: 1; }

.input-group {
  margin: 0.5em 0 1.5em;
  /* ошибки заполнения */
  /* правильно заполненое */ }
  .input-group .default-label {
    margin-bottom: 0.5em;
    display: block; }
  .input-group:hover .default-input {
    border-color: var(--colorPrimary); }
  .input-group .box-defaultInput--icon {
    position: relative; }
    .input-group .box-defaultInput--icon .icok {
      position: absolute;
      top: 50%;
      font-size: 1em;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
      .input-group .box-defaultInput--icon .icok[role="presentation"] {
        pointer-events: none; }
    .input-group .box-defaultInput--icon .default-input {
      width: 100%; }
    .input-group .box-defaultInput--icon--right .default-input {
      padding-right: 2.3em; }
    .input-group .box-defaultInput--icon--right .icok--right {
      right: 0.8em; }
    .input-group .box-defaultInput--icon--left .default-input {
      padding-left: 2.3em; }
    .input-group .box-defaultInput--icon--left .icok--left {
      left: 0.8em; }
  .input-group--error .default-input, .input-group--error .select select {
    border-color: var(--colorDanger); }
  .input-group--error .label_checkbox .default-label::before {
    border-color: var(--colorDanger); }
  .input-group--success .default-input, .input-group--success .select select {
    border-color: var(--colorSuccess); }

.error-text {
  margin: 0.5em 0 1.5em;
  color: var(--colorDanger);
  font-size: 90%; }

/* селект */
.select {
  display: inline-block;
  position: relative; }
  .select select {
    border: 1px solid var(--colorText);
    padding: 0.55em 40px 0.45em 1.2em;
    background-color: #fff;
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: 95% 50%;
    outline: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
  .select::before {
    display: block;
    content: "";
    position: absolute;
    top: 0.6em;
    right: 1.2em;
    width: 10px;
    height: 10px;
    background: none;
    -webkit-transform: rotate(135deg) skew(0deg);
    transform: rotate(135deg) skew(0deg);
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    pointer-events: none; }
    @media (min-width: 1024px) {
      .select::before {
        top: 0.7em; } }
  @media (hover: hover) {
    .select:hover select {
      border-color: var(--colorPrimary); } }

/* чекбоксы */
.label_checkbox {
  padding: 0 0 0 1.75em;
  margin-bottom: 0.5em;
  min-height: 1.25em;
  position: relative;
  display: block; }
  .label_checkbox input {
    /* display: none; */
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden; }
  .label_checkbox .default-label {
    position: relative;
    min-height: 1.25;
    padding-top: 2px;
    padding-left: 0;
    opacity: 1 !important; }
    .label_checkbox .default-label::before {
      display: block;
      content: "";
      position: absolute;
      top: 0.2em;
      left: -1.75em;
      z-index: 1;
      width: 1.25em;
      height: 1.25em;
      border: 1px solid var(--colorText);
      background: transparent;
      opacity: 0.5;
      -webkit-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }
    .label_checkbox .default-label::after {
      display: block;
      content: "";
      position: absolute;
      left: -1.3em;
      top: 0.95em;
      z-index: 2;
      width: 0.4em;
      height: 0.6em;
      margin-top: -4px;
      -webkit-transform: translateY(-50%) rotate(45deg);
      transform: translateY(-50%) rotate(45deg);
      border-right: 1px solid #fff !important;
      border-bottom: 1px solid #fff !important;
      opacity: 0;
      -webkit-transition: all 0.2s 0.3s ease-out;
      transition: all 0.2s 0.3s ease-out; }
  .label_checkbox:hover .default-label::before,
  .label_checkbox:focus .default-label::before,
  .label_checkbox:focus-visible .default-label::before,
  .label_checkbox input[type="checkbox"]:focus ~ .default-label::before,
  .label_checkbox input[type="checkbox"]:focus-visible ~ .default-label::before {
    opacity: 0.5;
    background: var(--colorPrimary);
    border-color: var(--colorPrimary); }
  .label_checkbox input[type="checkbox"]:checked ~ .default-label::after {
    opacity: 1; }
  .label_checkbox input[type="checkbox"]:checked ~ .default-label::before {
    opacity: 1;
    background: var(--colorPrimary);
    border-color: var(--colorPrimary); }

.label_radio {
  padding: 0 0 0 1.75em;
  margin-bottom: 0.5em;
  min-height: 1.25em;
  position: relative;
  display: block; }
  .label_radio input {
    /* display: none; */
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden; }
  .label_radio .default-label {
    position: relative;
    min-height: 1.25;
    padding-top: 4px;
    padding-left: 0;
    opacity: 1 !important; }
    .label_radio .default-label::before {
      display: block;
      content: "";
      position: absolute;
      top: 0.2em;
      left: -1.75em;
      z-index: 1;
      width: 1.25em;
      height: 1.25em;
      border: 1px solid var(--colorText);
      border-radius: 50%;
      background: transparent;
      opacity: 0.5;
      -webkit-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }
    .label_radio .default-label::after {
      display: block;
      content: "";
      position: absolute;
      left: -1.4em;
      top: 0.56em;
      z-index: 2;
      width: 0.55em;
      height: 0.55em;
      border-radius: 50%;
      background: var(--colorPrimary);
      opacity: 0;
      -webkit-transition: all 0.2s 0.1s ease-out;
      transition: all 0.2s 0.1s ease-out; }
  .label_radio:hover .default-label::before,
  .label_radio:focus .default-label::before,
  .label_radio:focus-visible .default-label::before,
  .label_radio input[type="radio"]:focus ~ .default-label::before,
  .label_radio input[type="radio"]:focus-visible ~ .default-label::before {
    opacity: 0.5;
    background: var(--colorPrimary); }
  .label_radio input[type="radio"]:checked ~ .default-label::after {
    opacity: 1; }
  .label_radio input[type="radio"]:checked ~ .default-label::before {
    opacity: 1;
    background: #fff; }

/* END FORMS */
/*! для попапов */
a.link-popup:not(button) {
  border-bottom: 1px dashed; }

.box-popup {
  display: none; }
  .box-popup h2 {
    margin-bottom: 30px;
    font-size: 1.9rem; }
  @media (max-width: 767px) {
    .box-popup {
      width: 100%; } }
  @media (min-width: 768px) {
    .box-popup {
      min-width: 360px; } }

.fancybox__content {
  padding: 2rem;
  /* & > .carousel__button.is-close {
        --fancybox-color: #000;
        top: 1em; right: 1em; 
    } */ }
  @media (max-width: 320px) {
    .fancybox__content {
      padding: var(--gapBaseGrid); } }
  .has-iframe .fancybox__content {
    padding-right: 5px; }

.carousel__button svg {
  --carousel-button-svg-filter: none; }

.popup--iframe {
  padding-right: var(--gapBaseGrid);
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  scrollbar-gutter: stable; }
  .popup--iframe::-webkit-scrollbar {
    height: .325rem;
    width: .325rem; }
  .popup--iframe::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.1); }
  .popup--iframe::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px; }
  .popup--iframe::-webkit-scrollbar-thumb:vertical {
    min-height: 1.5rem; }
  .popup--iframe::-webkit-scrollbar-thumb:horizontal {
    min-width: 1.5rem; }

/*  */
main {
  -webkit-transition: padding 0.3s ease;
  transition: padding 0.3s ease; }

section {
  padding: var(--gapVertBlock) 0; }
  main section:first-child {
    margin-top: 0; }
  main section:last-child {
    margin-bottom: var(--gapVertBlock); }
  section.block--bgLightBlue {
    margin: var(--gapVertBlock) 0; }

.blockBase {
  padding: var(--gapBaseGrid);
  margin: var(--gapVertBlock) 0; }

.block--bgLightBlue {
  background-color: var(--bgLightBlue); }

.block--bgGreyDark {
  background-color: var(--bgGreyDark); }

.block--bgPrimary {
  background-color: var(--colorPrimary);
  color: #fff; }

:is(.block--BgPrimary) :is(h3, h4, a:not([class]), .button, .moreLink) {
  color: currentColor; }

:is(.block--BgPrimary) hr {
  border-color: #fff; }

:is(.block--BgPrimary) .notes {
  color: rgba(255, 255, 255, 0.7); }

.close {
  font-size: 22px;
  color: #848aad;
  cursor: pointer;
  padding: 0;
  background: none;
  width: 1em;
  height: 1em;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out; }
  .close > div {
    display: block;
    position: relative;
    width: 100%;
    height: 0.1em;
    border-radius: 1em;
    background: none; }
    .close > div::before, .close > div::after {
      display: block;
      content: "";
      position: absolute;
      width: 120%;
      height: 0.1em;
      background: currentColor;
      border-radius: 1em;
      -webkit-transition: font-size 0s, background-color 0.2s ease-out;
      transition: font-size 0s, background-color 0.2s ease-out; }
    .close > div::before {
      margin-top: -0.7em;
      -webkit-transform: rotate(45deg) translate(0.45em, 0.55em);
      transform: rotate(45deg) translate(0.45em, 0.55em); }
    .close > div::after {
      margin-top: 0.7em;
      -webkit-transform: rotate(-45deg) translate(0.45em, -0.55em);
      transform: rotate(-45deg) translate(0.45em, -0.55em); }
  @media (hover: hover) {
    .close:hover {
      color: var(--colorPrimary); } }
  .close:focus, .close:focus-visible {
    color: var(--colorPrimary); }

a.close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.hamburger {
  font-size: 32px;
  cursor: pointer;
  padding: 0.5em 0em;
  background: none;
  --widthLine: 1em;
  --heightLine: 2px;
  --color: currentColor;
  --marginLine: 0.2em;
  --round: 5px; }
  .hamburger > div {
    width: var(--widthLine);
    height: var(--heightLine);
    border-radius: var(--round);
    background: var(--color); }
    .hamburger > div::before, .hamburger > div::after {
      display: block;
      content: "";
      position: absolute;
      width: var(--widthLine);
      height: var(--heightLine);
      background: var(--color);
      border-radius: var(--round);
      -webkit-transition: font-size 0s;
      transition: font-size 0s; }
    .hamburger > div::before {
      margin-top: calc(var(--marginLine) * -1); }
    .hamburger > div::after {
      margin-top: var(--marginLine); }
  .hamburger.burger1 {
    -webkit-transition: all 0.7s, font-size 0s;
    transition: all 0.7s, font-size 0s;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.35, 0.265, 1.35);
    transition-timing-function: cubic-bezier(0.68, -0.35, 0.265, 1.35); }
    .hamburger.burger1 > div {
      -webkit-transition: all 0.1s 0.3s, font-size 0s;
      transition: all 0.1s 0.3s, font-size 0s; }
      .hamburger.burger1 > div::before, .hamburger.burger1 > div::after {
        -webkit-transition: all 0.3s 0.2s, font-size 0s;
        transition: all 0.3s 0.2s, font-size 0s; }
    .active .hamburger.burger1 {
      -webkit-transform: rotate(180deg);
      transform: rotate(180deg); }
      .active .hamburger.burger1 > div::before {
        -webkit-transform: rotate(45deg) translate(17%, 180%);
        transform: rotate(45deg) translate(17%, 180%); }
      .active .hamburger.burger1 > div {
        background: transparent; }
      .active .hamburger.burger1 > div::after {
        -webkit-transform: rotate(-45deg) translate(17%, -180%);
        transform: rotate(-45deg) translate(17%, -180%); }
  .openMenu:focus .hamburger, .openMenu:focus-visible .hamburger {
    --color: var(--colorPrimary); }
  .openMenu:focus:not(.active) .hamburger, .openMenu:focus-visible:not(.active) .hamburger {
    --marginLine: 0.3em; }

.openMenu:focus, .openMenu:focus-visible {
  outline: none; }

.icok {
  display: inline-block;
  width: 1em;
  height: 1em;
  text-align: center; }

.icok svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block; }

.ico-plus,
.ico-minus {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--colorPrimary);
  border-radius: 50%;
  color: #fff; }
  .ico-plus::after, .ico-plus::before,
  .ico-minus::after,
  .ico-minus::before {
    display: block;
    content: "";
    position: absolute;
    background: currentColor;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  .ico-plus::after,
  .ico-minus::after {
    width: 0.67em;
    height: 1px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

.ico-plus::before {
  height: 0.67em;
  width: 1px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scaleY(1);
  transform: translate(-50%, -50%) scaleY(1); }

.ico-minus::before {
  display: none; }

.swiper {
  --swiper-navigation-size: 40px;
  --swiper-navigation-color: #000; }
  .swiper-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: var(--gapVertBlock); }
  .swiper-button-next, .swiper-button-prev {
    position: static;
    margin: 0 9px;
    width: var(--swiper-navigation-size);
    height: var(--swiper-navigation-size); }
    .swiper-button-next .icok, .swiper-button-prev .icok {
      font-size: 25px;
      color: var(--swiper-navigation-color); }
    .swiper-button-next:focus, .swiper-button-nextfocus-visible, .swiper-button-prev:focus, .swiper-button-prevfocus-visible {
      opacity: 1; }
  .swiper-button-next {
    padding-left: 2px; }
  .swiper-button-prev {
    padding-right: 2px; }
  .swiper-button-next:after, .swiper-button-prev:after {
    display: none; }
  @media (min-width: 768px) {
    .swiper-slide {
      padding: 0 calc(8.33% + 40px);
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
    .swiper-nav {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      margin-top: 0; }
    .swiper-button-next, .swiper-button-prev {
      position: absolute;
      margin: 0;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); } }

.spoiler {
  display: none; }

.color-effect {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: -webkit-filter 0.3s ease-out;
  transition: -webkit-filter 0.3s ease-out;
  transition: filter 0.3s ease-out;
  transition: filter 0.3s ease-out, -webkit-filter 0.3s ease-out; }
  @media (hover: hover) {
    .color-effect:hover {
      -webkit-filter: grayscale(0);
      filter: grayscale(0); } }
  .color-effect:focus {
    -webkit-filter: grayscale(0);
    filter: grayscale(0); }

.text-outline {
  color: white;
  text-shadow: 1px 1px black, -1px -1px black; }

@supports (-webkit-text-stroke: 1px black) {
  .text-outline {
    color: transparent;
    -webkit-text-stroke: 1px black;
    text-shadow: none; } }

.moreLink {
  text-align: center; }

/* заглавный блок страницы */
.cover {
  padding: calc(var(--gapVertBlock) * 2.5) 0 calc(var(--gapVertBlock) * 2); }
  @media (min-width: 768px) {
    .cover {
      min-height: auto; } }

/*  */
.newsList a {
  text-decoration: none;
  color: var(--colorText);
  font-weight: 700;
  -webkit-transition: color 0.3s ease-out, border 0.3s ease-out;
  transition: color 0.3s ease-out, border 0.3s ease-out; }

.newsList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin-bottom: 2.1rem;
  border-top: 1px solid #000; }
  .newsList__item:first-child {
    border-top-color: transparent; }

.newsList__date {
  font-size: 0.9em;
  margin-bottom: 2.1rem;
  margin-top: 2.1rem; }

.newsList__content {
  padding-bottom: 2.1rem;
  margin-bottom: auto; }

.newsList__title {
  font-size: 1.1em; }

.newsList__img {
  aspect-ratio: 7 / 8;
  position: relative;
  width: 100%;
  max-width: 100%; }
  .newsList__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block; }

@media (min-width: 768px) {
  .newsList {
    gap: var(--gapBaseGrid);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .newsList__item {
      -ms-flex-preferred-size: 31%;
      flex-basis: 31%;
      max-width: 32%;
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1; }
      .newsList__item:first-child {
        border-top-color: #000; }
      .newsList__item::after {
        display: block;
        content: "";
        position: absolute;
        width: 1px;
        height: 100%;
        top: 0;
        right: calc(var(--gapBaseGrid) * -0.5);
        background: #000; }
      .newsList__item:last-child::after, .newsList__item:nth-of-type(3n)::after {
        display: none; }
    .newsList__date {
      margin-top: 1em; }
    .newsList__img::after {
      display: block;
      content: "";
      position: absolute;
      z-index: 3;
      width: 3px;
      height: calc(100% + 1em);
      bottom: 0;
      right: calc(var(--gapBaseGrid) * -0.55);
      background: #fff; } }

.newsList a:focus,
.newsList a:focus-visible {
  color: var(--colorPrimary);
  border-top-color: transparent;
  outline: none; }
  .newsList a:focus .color-effect,
  .newsList a:focus-visible .color-effect {
    -webkit-filter: grayscale(0);
    filter: grayscale(0); }

@media (hover: hover) {
  .newsList a:hover {
    border-top-color: transparent; }
    .newsList a:hover .color-effect {
      -webkit-filter: grayscale(0);
      filter: grayscale(0); } }

/* INDEX */
.intro h1 {
  margin-bottom: 2.14rem; }

.intro__img {
  aspect-ratio: 5 / 3; }
  .intro__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; }

@media (min-width: 768px) {
  .welcom h2 {
    margin-bottom: 0; }
  .welcom__text {
    margin-top: -10px; } }

.newsIndex__moreLink {
  float: right;
  padding-right: 0; }
  .newsIndex__moreLink.button::after {
    width: calc(100% - 2em); }

.newsIndex .swiper-wrapper {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: auto; }

.newsIndex .swiper-slide {
  height: auto; }

.newsIndex .swiper-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px; }

.newsIndex .swiper-pagination {
  position: static;
  width: auto;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  font-size: 1.2rem; }

.newsIndex .swiper-button-next {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3; }

.newsIndex .swiper .newsList__item {
  border-top: none; }

.newsIndex .swiper .newsList__date {
  margin-top: 0; }

.newsIndex .newsList__item {
  margin-bottom: 0; }

@media (min-width: 768px) {
  .newsIndex .newsList {
    display: block; }
    .newsIndex .newsList__item:nth-of-type(4) {
      display: none; }
  .newsIndex .swiper-wrapper {
    gap: var(--gapBaseGrid); }
  .newsIndex .swiper-nav {
    display: none; } }

.institutes__alllist {
  text-align: center; }

@media (min-width: 768px) {
  .institutes__alllist {
    text-align: left; }
    .institutes__alllist .button {
      padding-left: 0; }
      .institutes__alllist .button::after {
        width: calc(100% - 2em);
        left: 0; } }

.searchInst .box-defaultInput--icon .icok--left {
  font-size: 1.64rem;
  opacity: 0.3;
  left: 0.6; }

.searchInst .box-defaultInput--icon .default-input {
  padding: 1em 2.3em 1em 3.5em; }

.searchInst .box-defaultInput--icon .close {
  color: var(--colorText);
  opacity: 0.3; }
  .searchInst .box-defaultInput--icon .close:focus, .searchInst .box-defaultInput--icon .close:focus-visible {
    outline: none;
    color: var(--colorPrimary);
    opacity: 1;
    -webkit-filter: drop-shadow(0 0 2px rgba(var(--colorPrimaryRGB), 0.3));
    filter: drop-shadow(0 0 2px rgba(var(--colorPrimaryRGB), 0.3)); }
  @media (hover: hover) {
    .searchInst .box-defaultInput--icon .close:hover {
      outline: none;
      color: var(--colorPrimary);
      opacity: 1; } }

.instituteList {
  /* height: 280px;
    overflow: hidden; */
  -webkit-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out; }
  .instituteList__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.7); }
  .instituteList__item:nth-child(n+5) {
    opacity: 0;
    height: 1px;
    pointer-events: none;
    -webkit-transition: all 1.3s ease;
    transition: all 1.3s ease; }
  .instituteList__link {
    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: 1.2em 0;
    color: var(--colorText);
    text-decoration: none;
    -webkit-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out; }
    .instituteList__link .icok {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      margin-left: 1rem;
      font-size: 20px;
      -webkit-transition: color 0.3s ease-out, -webkit-transform 0.3s ease-out;
      transition: color 0.3s ease-out, -webkit-transform 0.3s ease-out;
      transition: color 0.3s ease-out, transform 0.3s ease-out;
      transition: color 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }
    .instituteList__link:focus, .instituteList__link:focus-visible {
      text-decoration: none;
      color: var(--colorPrimary);
      font-weight: 500;
      outline: none; }
      .instituteList__link:focus .icok, .instituteList__link:focus-visible .icok {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg); }
    @media (hover: hover) {
      .instituteList__link:hover {
        text-decoration: none;
        color: var(--colorPrimary); }
        .instituteList__link:hover .icok {
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg); } }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n+5) {
    -webkit-animation: showli 0.2s linear 1 forwards;
    animation: showli 0.2s linear 1 forwards;
    height: auto;
    pointer-events: auto; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 6) {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 7) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 8) {
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 9) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 10) {
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 11) {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 12) {
    -webkit-animation-delay: 1.05s;
    animation-delay: 1.05s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 13) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 14) {
    -webkit-animation-delay: 1.35s;
    animation-delay: 1.35s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 15) {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 16) {
    -webkit-animation-delay: 1.65s;
    animation-delay: 1.65s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 17) {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 18) {
    -webkit-animation-delay: 1.95s;
    animation-delay: 1.95s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 19) {
    -webkit-animation-delay: 2.1s;
    animation-delay: 2.1s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 20) {
    -webkit-animation-delay: 2.25s;
    animation-delay: 2.25s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 21) {
    -webkit-animation-delay: 2.4s;
    animation-delay: 2.4s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 22) {
    -webkit-animation-delay: 2.55s;
    animation-delay: 2.55s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 23) {
    -webkit-animation-delay: 2.7s;
    animation-delay: 2.7s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 24) {
    -webkit-animation-delay: 2.85s;
    animation-delay: 2.85s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 25) {
    -webkit-animation-delay: 3s;
    animation-delay: 3s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 26) {
    -webkit-animation-delay: 3.15s;
    animation-delay: 3.15s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 27) {
    -webkit-animation-delay: 3.3s;
    animation-delay: 3.3s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 28) {
    -webkit-animation-delay: 3.45s;
    animation-delay: 3.45s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 29) {
    -webkit-animation-delay: 3.6s;
    animation-delay: 3.6s; }
  .instituteList.instituteList--showall .instituteList__item:nth-child(n + 30) {
    -webkit-animation-delay: 3.75s;
    animation-delay: 3.75s; }
  .instituteList.instituteList--fullHeight .instituteList__item:nth-child(n+5) {
    -webkit-animation: showli 0.2s linear 1 forwards;
    animation: showli 0.2s linear 1 forwards;
    height: auto;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    pointer-events: auto; }

@-webkit-keyframes showli {
  0% {
    opacity: 0; }
  80% {
    opacity: 0.5; }
  100% {
    opacity: 1; } }

@keyframes showli {
  0% {
    opacity: 0; }
  80% {
    opacity: 0.5; }
  100% {
    opacity: 1; } }

/* News page */
/* filter news */
.filterNews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: var(--gapVertBlock); }
  .filterNews__label {
    margin-right: 1em; }
  .filterNews select {
    border-color: transparent;
    padding-right: 33px;
    width: auto; }
    .filterNews select:focus, .filterNews select:focus-visible {
      border-color: var(--colorPrimary); }
    @media (hover: hover) {
      .filterNews select:hover {
        border-color: transparent transparent rgba(0, 0, 0, 0.5) transparent; } }
  .filterNews__month-desctop {
    display: none; }
  .filterNews__item {
    display: inline-block;
    position: relative;
    padding: 0.5ex 0;
    color: var(--colorText);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
    @media (hover: hover) {
      .filterNews__item:hover {
        border-bottom-color: #000;
        text-decoration: none; } }
    .filterNews__item:focus, .filterNews__item--active, .filterNews__item:focus-visible {
      border-bottom-color: #000;
      text-decoration: none;
      outline: none; }
  @media (min-width: 768px) {
    .filterNews select {
      padding-right: 45px; }
    .filterNews__year {
      margin-right: calc(var(--gapBaseGrid) * 2); }
    .filterNews__month {
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
      width: 50%; }
      .filterNews__month-mob {
        display: none; }
      .filterNews__month-desctop {
        display: block;
        width: 100%;
        padding: 0 var(--swiper-navigation-size) 0 0; }
      .filterNews__month .swiper-button-prev {
        display: none;
        left: 0;
        background-color: #fff; }
      .filterNews__month .swiper-button-next {
        right: 0;
        background-color: #fff; }
    .filterNews__itemWrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      padding: 0;
      text-align: center; }
    .filterNews__item {
      white-space: nowrap; } }

.newsList + .moreLink {
  margin-top: 2.7rem; }

/* news detail */
.newsDetail__img {
  margin-bottom: calc(var(--gapBaseGrid) * 1.5); }

.newsDetail__img img {
  display: block;
  width: 100%;
  max-width: 100%; }

.newsDetail__date {
  margin-bottom: calc(var(--gapBaseGrid) * 1.5);
  font-size: 0.9rem;
  font-weight: bold; }

.newsDetail__title {
  margin-bottom: calc(var(--gapBaseGrid) * 1.2); }

.newsDetail__photo img {
  display: block;
  width: 100%;
  max-width: 100%; }

.newsDetail .swiper-wrapper {
  height: auto; }

.newsDetail .swiper-nav {
  margin-top: 30px; }

.newsDetail .swiper-pagination {
  position: static;
  width: auto;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  font-size: 1.2rem; }

.newsDetail .swiper-slide {
  padding: 0; }

.newsDetail .swiper-button-next {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3; }

.newsDetail .swiper-button-next, .newsDetail .swiper-button-prev {
  position: static;
  -webkit-transform: none;
  transform: none; }

@media (min-width: 768px) {
  .newsDetail .swiper-nav {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  .newsDetail .swiper-button-next {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
  .newsDetail .swiper-button-prev {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; } }

/* About */
.aboutMission__img {
  margin-bottom: var(--gapVertBlock); }
  .aboutMission__img img {
    max-width: 100%; }

.aboutMission__head {
  margin-bottom: 1em; }

@media (min-width: 768px) {
  .aboutMission__img {
    margin-bottom: 0; } }

.aboutGoals__content .ul-text {
  padding-left: 0; }

.aboutGoals__img img {
  width: 100%;
  max-width: 100%; }

.aboutReasons__item {
  margin-bottom: 1.8rem; }

.aboutReasons__title {
  font-size: 1.15rem;
  display: inline-block;
  margin-bottom: 0.7rem; }

.aboutReasons__text {
  font-size: 0.9rem;
  display: inline-block;
  line-height: 1.2rem; }

@media (min-width: 768px) {
  .aboutReasons .listNumberOutline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: var(--gapBaseGrid); }
  .aboutReasons__item {
    width: 30%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1; } }

.aboutManagement__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: var(--gapBaseGrid); }

.aboutManagement__item {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 48%;
  flex-basis: 48%; }

.aboutManagement__img {
  aspect-ratio: 7 / 8;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background: #3E3E3E; }
  .aboutManagement__img img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block; }

.aboutManagement__name {
  font-size: 0.9rem; }

.aboutManagement__title {
  font-size: 0.8rem; }

.projectsList__title {
  margin-bottom: 2rem; }

.projectsList__content {
  margin-bottom: 2rem; }

.projectsList__img {
  aspect-ratio: 4 / 3;
  width: 100%;
  max-width: 100%; }
  .projectsList__img img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block; }

@media (max-width: 767px) {
  .projectsList.swiper .swiper-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px; }
  .projectsList.swiper .swiper-pagination {
    position: static;
    width: auto;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    font-size: 1.2rem; }
  .projectsList.swiper .swiper-button-next {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; } }

@media (min-width: 768px) {
  .projectsList__item {
    position: relative;
    width: 100%; }
  .projectsList__img {
    padding: calc(var(--gapBaseGrid) * 0.5) 0;
    aspect-ratio: 5 / 3; }
  .projectsList__content {
    padding: var(--gapVertBlock) var(--gapBaseGrid) var(--gapVertBlock) 0;
    margin-bottom: 0;
    border-bottom: 1px solid #000; }
  .projectsList .swiper-wrapper {
    display: block;
    width: auto;
    height: auto;
    -webkit-transform: none;
    transform: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .projectsList .swiper-nav {
    display: none; } }

/* контакты */
.contacts.cover a {
  color: var(--colorText);
  text-decoration: none; }
  @media (hover: hover) {
    .contacts.cover a:hover {
      text-decoration: underline; } }

.contactsMap iframe {
  width: 100%;
  max-height: 60vh;
  -webkit-filter: grayscale(1);
  filter: grayscale(1); }

.contactsMap iframe:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0); }


/** Additional styles
    by Sergey

**/

.nav-previous a, .nav-next a {
  position: relative;
  display: inline-block;
  color: var(--colorText);
  padding: 1.05em 2em 1em;
  text-align: center;
  text-decoration: none;
  font-weight: normal;
  font-size: 0.75em;
  line-height: 1.5em;
  letter-spacing: 0.07em;
  border-radius: 2em;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-previous a::after, .nav-next a::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0.2ex;
  left: 2em;
  width: calc(100% - 4em);
  height: 1px;
  background: currentColor;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.nav-previous a:hover::after {
  opacity: 0;
}
.nav-next a:hover::after {
  opacity: 0;
}