:root {
  --zero: #000000;
  --white: #ffffff;
  --light: #ffffff;
  --dark: #2d2d2d;
  --background: #031f3d;
  --background_transparent: rgba(3, 31, 61, 0.80);
  --text: #fbfbfb;
  --text_2: rgba(251,251,251,.6);
  --text_3: rgba(251,251,251,.8);
  --link: #197abc;
  --accent_1: rgba(228,239,255,.05);
  --accent_2: #4eb5ff;
  --accent_3: #0099e5;
  --accent_4: rgba(78,181,255,.2);
  --accent_5: rgba(0,88,219,.2);
  --border: rgba(255,255,255,.2);
  --border_2: #4a4a4a;
  --error: #f43737;
  --paragrapg_bottom: 24px;
  --title_top: 64px;
  --title_bottom: 32px;
  --body_top_space: 176px;
  --footer_top_space: 176px;
  --section_space: 100px;
  --gap_big: 64px;
  --gap_block: 32px;
  --gap_content: 24px;
  --gap_small: 16px;
  --gap_strings: 8px;
  --block_padding: 48px;
  --block_medium_padding: 32px;
  --block_small_padding: 24px;
  --block_mikro_padding: 12px;
}

.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: "Roboto";
  font-weight: 500;
  color: var(--text);
  background: var(--background);
  font-size: 20px;
  line-height: 130%;
  width: 100%;
  overflow-x: hidden;
  padding-top: var(--body_top_space);
}

.no-scroll {
  height: 100vh;
  overflow: hidden;
}

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

.color--zero {
  color: var(--zero);
}

.color--white {
  color: var(--white);
}

.color--light {
  color: var(--light);
}

.color--dark {
  color: var(--dark);
}

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

.color--background_transparent {
  color: var(--background_transparent);
}

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

.color--text_2 {
  color: var(--text_2);
}

.color--text_3 {
  color: var(--text_3);
}

.color--link {
  color: var(--link);
}

.color--accent_1 {
  color: var(--accent_1);
}

.color--accent_2 {
  color: var(--accent_2);
}

.color--accent_3 {
  color: var(--accent_3);
}

.color--accent_4 {
  color: var(--accent_4);
}

.color--accent_5 {
  color: var(--accent_5);
}

.color--border {
  color: var(--border);
}

.color--border_2 {
  color: var(--border_2);
}

.color--error {
  color: var(--error);
}

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

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

.background--light {
  background-color: var(--light);
}

.background--dark {
  background-color: var(--dark);
}

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

.background--background_transparent {
  background-color: var(--background_transparent);
}

.background--text {
  background-color: var(--text);
}

.background--text_2 {
  background-color: var(--text_2);
}

.background--text_3 {
  background-color: var(--text_3);
}

.background--link {
  background-color: var(--link);
}

.background--accent_1 {
  background-color: var(--accent_1);
}

.background--accent_2 {
  background-color: var(--accent_2);
}

.background--accent_3 {
  background-color: var(--accent_3);
}

.background--accent_4 {
  background-color: var(--accent_4);
}

.background--accent_5 {
  background-color: var(--accent_5);
}

.background--border {
  background-color: var(--border);
}

.background--border_2 {
  background-color: var(--border_2);
}

.background--error {
  background-color: var(--error);
}

.svg-hover path,
.svg-hover circle,
.svg-hover rect {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.svg-hover--zero:hover path[fill],
.svg-hover--zero:hover circle[fill],
.svg-hover--zero:hover rect[fill] {
  fill: var(--zero);
}

.svg-hover--zero:hover path[stroke],
.svg-hover--zero:hover circle[stroke],
.svg-hover--zero:hover rect[stroke] {
  stroke: var(--zero);
}

.svg-hover--white:hover path[fill],
.svg-hover--white:hover circle[fill],
.svg-hover--white:hover rect[fill] {
  fill: var(--white);
}

.svg-hover--white:hover path[stroke],
.svg-hover--white:hover circle[stroke],
.svg-hover--white:hover rect[stroke] {
  stroke: var(--white);
}

.svg-hover--light:hover path[fill],
.svg-hover--light:hover circle[fill],
.svg-hover--light:hover rect[fill] {
  fill: var(--light);
}

.svg-hover--light:hover path[stroke],
.svg-hover--light:hover circle[stroke],
.svg-hover--light:hover rect[stroke] {
  stroke: var(--light);
}

.svg-hover--dark:hover path[fill],
.svg-hover--dark:hover circle[fill],
.svg-hover--dark:hover rect[fill] {
  fill: var(--dark);
}

.svg-hover--dark:hover path[stroke],
.svg-hover--dark:hover circle[stroke],
.svg-hover--dark:hover rect[stroke] {
  stroke: var(--dark);
}

.svg-hover--background:hover path[fill],
.svg-hover--background:hover circle[fill],
.svg-hover--background:hover rect[fill] {
  fill: var(--background);
}

.svg-hover--background:hover path[stroke],
.svg-hover--background:hover circle[stroke],
.svg-hover--background:hover rect[stroke] {
  stroke: var(--background);
}

.svg-hover--background_transparent:hover path[fill],
.svg-hover--background_transparent:hover circle[fill],
.svg-hover--background_transparent:hover rect[fill] {
  fill: var(--background_transparent);
}

.svg-hover--background_transparent:hover path[stroke],
.svg-hover--background_transparent:hover circle[stroke],
.svg-hover--background_transparent:hover rect[stroke] {
  stroke: var(--background_transparent);
}

.svg-hover--text:hover path[fill],
.svg-hover--text:hover circle[fill],
.svg-hover--text:hover rect[fill] {
  fill: var(--text);
}

.svg-hover--text:hover path[stroke],
.svg-hover--text:hover circle[stroke],
.svg-hover--text:hover rect[stroke] {
  stroke: var(--text);
}

.svg-hover--text_2:hover path[fill],
.svg-hover--text_2:hover circle[fill],
.svg-hover--text_2:hover rect[fill] {
  fill: var(--text_2);
}

.svg-hover--text_2:hover path[stroke],
.svg-hover--text_2:hover circle[stroke],
.svg-hover--text_2:hover rect[stroke] {
  stroke: var(--text_2);
}

.svg-hover--text_3:hover path[fill],
.svg-hover--text_3:hover circle[fill],
.svg-hover--text_3:hover rect[fill] {
  fill: var(--text_3);
}

.svg-hover--text_3:hover path[stroke],
.svg-hover--text_3:hover circle[stroke],
.svg-hover--text_3:hover rect[stroke] {
  stroke: var(--text_3);
}

.svg-hover--link:hover path[fill],
.svg-hover--link:hover circle[fill],
.svg-hover--link:hover rect[fill] {
  fill: var(--link);
}

.svg-hover--link:hover path[stroke],
.svg-hover--link:hover circle[stroke],
.svg-hover--link:hover rect[stroke] {
  stroke: var(--link);
}

.svg-hover--accent_1:hover path[fill],
.svg-hover--accent_1:hover circle[fill],
.svg-hover--accent_1:hover rect[fill] {
  fill: var(--accent_1);
}

.svg-hover--accent_1:hover path[stroke],
.svg-hover--accent_1:hover circle[stroke],
.svg-hover--accent_1:hover rect[stroke] {
  stroke: var(--accent_1);
}

.svg-hover--accent_2:hover path[fill],
.svg-hover--accent_2:hover circle[fill],
.svg-hover--accent_2:hover rect[fill] {
  fill: var(--accent_2);
}

.svg-hover--accent_2:hover path[stroke],
.svg-hover--accent_2:hover circle[stroke],
.svg-hover--accent_2:hover rect[stroke] {
  stroke: var(--accent_2);
}

.svg-hover--accent_3:hover path[fill],
.svg-hover--accent_3:hover circle[fill],
.svg-hover--accent_3:hover rect[fill] {
  fill: var(--accent_3);
}

.svg-hover--accent_3:hover path[stroke],
.svg-hover--accent_3:hover circle[stroke],
.svg-hover--accent_3:hover rect[stroke] {
  stroke: var(--accent_3);
}

.svg-hover--accent_4:hover path[fill],
.svg-hover--accent_4:hover circle[fill],
.svg-hover--accent_4:hover rect[fill] {
  fill: var(--accent_4);
}

.svg-hover--accent_4:hover path[stroke],
.svg-hover--accent_4:hover circle[stroke],
.svg-hover--accent_4:hover rect[stroke] {
  stroke: var(--accent_4);
}

.svg-hover--accent_5:hover path[fill],
.svg-hover--accent_5:hover circle[fill],
.svg-hover--accent_5:hover rect[fill] {
  fill: var(--accent_5);
}

.svg-hover--accent_5:hover path[stroke],
.svg-hover--accent_5:hover circle[stroke],
.svg-hover--accent_5:hover rect[stroke] {
  stroke: var(--accent_5);
}

.svg-hover--border:hover path[fill],
.svg-hover--border:hover circle[fill],
.svg-hover--border:hover rect[fill] {
  fill: var(--border);
}

.svg-hover--border:hover path[stroke],
.svg-hover--border:hover circle[stroke],
.svg-hover--border:hover rect[stroke] {
  stroke: var(--border);
}

.svg-hover--border_2:hover path[fill],
.svg-hover--border_2:hover circle[fill],
.svg-hover--border_2:hover rect[fill] {
  fill: var(--border_2);
}

.svg-hover--border_2:hover path[stroke],
.svg-hover--border_2:hover circle[stroke],
.svg-hover--border_2:hover rect[stroke] {
  stroke: var(--border_2);
}

.svg-hover--error:hover path[fill],
.svg-hover--error:hover circle[fill],
.svg-hover--error:hover rect[fill] {
  fill: var(--error);
}

.svg-hover--error:hover path[stroke],
.svg-hover--error:hover circle[stroke],
.svg-hover--error:hover rect[stroke] {
  stroke: var(--error);
}

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

.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--row {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}

.flex--column {
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -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;
}

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

.flex--1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -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;
}

.column--space {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gap--big {
  gap: var(--gap_big);
}

.gap--block {
  gap: var(--gap_block);
}

.gap--content {
  gap: var(--gap_content);
}

.gap--small {
  gap: var(--gap_small);
}

.gap--strings {
  gap: var(--gap_strings);
}

.gap--4 {
  gap: 4px;
}

.gap--8 {
  gap: 8px;
}

.gap--16 {
  gap: 16px;
}

.gap--24 {
  gap: 24px;
}

.gap--32 {
  gap: 32px;
}

.gap--48 {
  gap: 48px;
}

.gap--64 {
  gap: 64px;
}

.gap--80 {
  gap: 80px;
}

.pos--relative {
  position: relative;
}

.pos--absolute {
  position: absolute;
}

.hover-opacity {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.hover-opacity:hover {
  opacity: 0.5;
}

.opacity--1 {
  opacity: 0.1;
}

.opacity--2 {
  opacity: 0.2;
}

.opacity--3 {
  opacity: 0.3;
}

.opacity--4 {
  opacity: 0.4;
}

.opacity--5 {
  opacity: 0.5;
}

.opacity--6 {
  opacity: 0.6;
}

.opacity--7 {
  opacity: 0.7;
}

.opacity--8 {
  opacity: 0.8;
}

.opacity--9 {
  opacity: 0.9;
}

.z_up {
  position: relative;
  z-index: 1;
}

.overflow--hidden {
  overflow: hidden;
}

.sticky {
  position: sticky;
  top: var(--title_top);
}

header a,
main a,
footer a,
.popup a {
  text-decoration: none;
  color: var(--link);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

header a:hover,
main a:hover,
footer a:hover,
.popup a:hover {
  color: var(--accent_2);
}

.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  color: var(--light);
  padding: 36px 0;
  opacity: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.header a {
  color: inherit;
  text-decoration: none;
}

.header--show {
  opacity: 1;
}

.header--show .menu {
  overflow: visible;
}

.header__logo {
  width: 74px;
  margin-right: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.menu__wrap {
  gap: 18px;
  width: calc(100% - 278px);
  padding: 3px 0;
}

.menu {
  overflow: hidden;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.menu--v1 {
  z-index: 1;
}

.menu--v2 {
  width: calc(100% + 168px);
}

.menu span {
  -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
          transform: translateY(2px);
}

.menu__right,
.menu__item_right,
.sub_menu__right {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

.menu__item {
  position: relative;
}

.menu__item:hover {
  z-index: 2;
}

.menu__item:hover .menu__link {
  color: var(--accent_2);
}

.menu__item:hover .sub_menu {
  opacity: 1;
  visibility: visible;
}

.menu__link {
  opacity: 0.9;
  white-space: nowrap;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}

.menu-item-hide {
  display: none;
}

.sub_menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 10px);
  left: -16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 320px;
  max-width: 460px;
  border-radius: 8px;
  display: -ms-grid;
  display: grid;
  -ms-grid-column: 1;
  grid-column: 1fr;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--border);
  background: var(--background);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.sub_menu--right {
  left: auto;
  right: -16px;
}

.sub_menu--2-col {
  max-width: unset;
  width: 690px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.sub_menu::before {
  content: "";
  display: block;
  width: 100%;
  height: 16px;
  position: absolute;
  top: -16px;
  left: 0px;
}

.sub_menu__link {
  gap: 8px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 16px;
  background: var(--accent_1);
  border-radius: 8px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  color: inherit !important;
  cursor: pointer;
}

.sub_menu__link:hover {
  background: var(--accent_4);
}

.sub_menu__link[target=_blank]::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background: url("../img/icons/outer-2.svg") center center/contain no-repeat;
}

.sub_menu__item--parent .sub_menu__link::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/icons/arrow-right.svg") center center/contain no-repeat;
  filter: grayscale(1) brightness(20)
}

.sub_sub_menu {
  gap: 8px;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: calc(100% + 10px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 320px;
  max-width: 460px;
  border-radius: 8px;
  display: -ms-grid;
  display: grid;
  -ms-grid-column: 1;
  grid-column: 1fr;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--border);
  background: var(--background);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.sub_sub_menu::before {
    content: '';
    display: block;
    width: 26px;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 100%;
}

.sub_menu__item:hover .sub_sub_menu {
  opacity: 1;
  visibility: visible;
}

.sub_sub_menu__link {
  gap: 8px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 16px;
  background: var(--accent_1);
  border-radius: 8px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  color: inherit !important;
}

.sub_sub_menu__link:hover {
  background: var(--accent_4);
}

.sub_sub_menu__link[target=_blank]::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background: url("../img/icons/outer-2.svg") center center/contain no-repeat;
}


.header__buttons {
  gap: 32px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-left: auto;
}

.header__button {
  position: relative;
  cursor: pointer;
}

.header__button:hover path {
  opacity: 1;
}

.header__button__ico {
  width: 24px;
  height: 24px;
}

.header__button__ico svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.search_link {
  position: relative;
}

.search_link--open .sub_menu {
  opacity: 1;
  visibility: visible;
}

.search_link--open .header__button__ico path {
  opacity: 1;
  stroke: var(--accent_2);
}

.search_link .sub_menu {
  display: block;
  width: 646px;
  max-width: calc(100vw - 64px);
  min-width: unset;
  cursor: auto;
}

.search_form {
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  background: var(--accent_1);
}

.search_form__submit {
  width: 24px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.search_form__submit svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.search_form__input {
  background: none;
  border: none;
  outline: none;
  font-family: inherit;
  color: var(--light);
}

.search_form__input::-webkit-input-placeholder {
  color: var(--text_2);
}

.search_form__input::-moz-placeholder {
  color: var(--text_2);
}

.search_form__input:-ms-input-placeholder {
  color: var(--text_2);
}

.search_form__input::-ms-input-placeholder {
  color: var(--text_2);
}

.search_form__input::placeholder {
  color: var(--text_2);
}

.search_close {
  cursor: pointer;
}

.burger {
  display: none;
}

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

.burger__line {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

.burger_menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 1024px;
  height: calc(var(--vh, 1vh) * 100);
  z-index: 102;
  overflow: hidden auto;
}

.burger_menu a {
  color: inherit;
  text-decoration: none;
}

.burger_menu span {
  -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
          transform: translateY(2px);
}

.burger_menu span span {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.burger_menu__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  background: var(--accent_1);
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.burger_menu__top {
  padding: 16px 0;
}

.burger_menu__logo {
  width: 298px;
}

.burger_menu__close {
  width: 64px;
  height: 64px;
  position: relative;
  cursor: pointer;
  right: -20px;
}

.burger_menu__close svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.burger_menu__list {
  margin: 0;
  padding: 32px 0;
  list-style: none;
  gap: 8px;
}

.burger_menu__list svg {
  display: block;
}

.burger_menu__item {
  padding: 16px;
  border-radius: 8px;
  background: var(--accent_1);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.burger_menu__item:hover {
  background: var(--accent_4);
}

.burger_menu__item--open {
  background: var(--accent_4);
}

.burger_menu__item--open .burger_menu__link::after {
  opacity: 1;
}

.burger_menu__item--open .burger_menu__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.burger_menu__link {
  position: relative;
  cursor: pointer;
}

.burger_menu__link::before {
  content: "";
  display: block;
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  position: absolute;
  top: -16px;
  left: -16px;
}

.burger_menu__link::after {
  content: "";
  display: block;
  width: calc(100% + 32px);
  height: 1px;
  position: absolute;
  top: calc(100% + 16px);
  left: -16px;
  background: var(--border);
  opacity: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.burger_menu__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.burger_menu__arrow::before {
  content: "";
  display: block;
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  position: absolute;
  top: -16px;
  left: -16px;
}

span.burger_menu__link .burger_menu__arrow {
  pointer-events: none;
}

.sub_burger_menu {
  display: none;
  margin: 0;
  padding: 0;
}

.sub_burger_menu span {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.sub_burger_menu__list {
  padding-top: 32px;
  gap: 16px;
}

.sub_burger_menu__list a[target=_blank]::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background: url("../img/icons/outer-2.svg") center center/contain no-repeat;
}

.sub_sub_burger_menu {
  list-style: none;
  gap: 16px;
  padding-left: 16px;
  text-transform: initial;
}

.sub_sub_burger_menu a {
  gap: 4px;
}

h1,
.h1 {
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -1.28px;
}

h2,
.h2 {
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -1.4px;
}

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

h4,
.h4 {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

h5,
.h5 {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

h1,
.h1--space {
  margin: 24px 0 80px;
}

h2,
h3,
h4,
h5,
.title-space {
  margin: var(--title_top) 0 var(--title_bottom);
}

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

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

h1 + h1 {
  margin-top: 0;
}

h1 + h2 {
  margin-top: 0;
}

h1 + h3 {
  margin-top: 0;
}

h1 + h4 {
  margin-top: 0;
}

h1 + h5 {
  margin-top: 0;
}

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

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

h2 + h1 {
  margin-top: 0;
}

h2 + h2 {
  margin-top: 0;
}

h2 + h3 {
  margin-top: 0;
}

h2 + h4 {
  margin-top: 0;
}

h2 + h5 {
  margin-top: 0;
}

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

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

h3 + h1 {
  margin-top: 0;
}

h3 + h2 {
  margin-top: 0;
}

h3 + h3 {
  margin-top: 0;
}

h3 + h4 {
  margin-top: 0;
}

h3 + h5 {
  margin-top: 0;
}

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

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

h4 + h1 {
  margin-top: 0;
}

h4 + h2 {
  margin-top: 0;
}

h4 + h3 {
  margin-top: 0;
}

h4 + h4 {
  margin-top: 0;
}

h4 + h5 {
  margin-top: 0;
}

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

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

h5 + h1 {
  margin-top: 0;
}

h5 + h2 {
  margin-top: 0;
}

h5 + h3 {
  margin-top: 0;
}

h5 + h4 {
  margin-top: 0;
}

h5 + h5 {
  margin-top: 0;
}

header a,
main a,
footer a,
.popup a {
  text-decoration: none;
  color: var(--link);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

header a:hover,
main a:hover,
footer a:hover,
.popup a:hover {
  color: var(--accent_2);
}

.outerlink::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 2px;
  background: url("../img/icons/outer.svg") center center/contain no-repeat;
}

.document {
  gap: 8px;
  margin-bottom: var(--paragrapg_bottom);
}

.document--v2 .document__panel {
  -ms-flex-item-align: unset;
      -ms-grid-row-align: unset;
      align-self: unset;
}

.document__panel {
  gap: 32px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.document__links {
  gap: 16px;
  line-height: 1;
}

.document__links svg {
  display: block;
}

.document__links a:hover path {
  fill-opacity: 1;
}

img {
  max-width: 100%;
}

.content-style img {
  margin: var(--paragrapg_bottom) 0;
  border-radius: 8px;
  display: block;
}

.content-style img[align=left] {
  margin: 0px 32px 16px 0px;
}

.content-style img[align=right] {
  margin: 0px 0 16px 32px;
}

.content-style p + picture img {
  margin-top: 0;
}

.content-style picture:first-child img {
  margin-top: 0;
}

.content-style picture:last-child img {
  margin-bottom: 0;
}

.content-style p,
.content-style li {
  line-height: 130%;
  margin: 0px 0px var(--paragrapg_bottom) 0px;
}

.content-style p:last-child,
.content-style li:last-child {
  margin-bottom: 0;
}

.content-style b,
.content-style strong {
  font-weight: 700;
}

.content-style blockquote {
  margin: 0px 0px var(--paragrapg_bottom);
  gap: 8px;
  line-height: 120%;
}

.content-style .blockquote__ico img {
  margin: 0;
  display: block;
}

.content-style ul,
.content-style ol {
  margin: 0;
  list-style: none;
  padding: 0;
  line-height: 122%;
  margin-bottom: var(--paragrapg_bottom);
}

.content-style ul:last-child,
.content-style ol:last-child {
  margin-bottom: 0;
}

.content-style ul ul,
.content-style ul ol,
.content-style ol ul,
.content-style ol ol {
  margin-bottom: 0;
  margin-top: var(--paragrapg_bottom);
}

.content-style ul li,
.content-style ol li {
  margin-bottom: var(--paragrapg_bottom);
}

.content-style ul li:last-child,
.content-style ol li:last-child {
  margin-bottom: 0;
}

.content-style ul.color--text_2 li::before {
  background: var(--text_2);
}

.content-style ul li {
  position: relative;
  padding-left: 52px;
}

.content-style ul li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 11px;
  left: 11px;
  background: var(--text);
  border-radius: 50%;
}

.content-style ul ul > li {
  padding-left: 28px;
}

.content-style ul ul > li::before {
  width: 4px;
  height: 4px;
  top: 12px;
  left: 12px;
}

.content-style ol {
  counter-reset: index;
  padding-left: 52px;
}

.content-style ol > li {
  position: relative;
}

.content-style ol > li::before {
  counter-increment: index;
  content: counters(index, ".", decimal) ".";
  position: absolute;
  top: 0;
  left: -52px;
  width: 28px;
  background: none;
  border-radius: none;
}

.content-style ol ol {
  padding-left: 88px;
}

.content-style ol ol > li::before {
  width: 80px;
  left: -88px;
}

.content-style ol ol ol {
  padding-left: 0;
}

.content-style table {
  border-collapse: collapse;
  font-size: 16px;
  line-height: 130%;
  border: none;
  min-width: 100%;
  margin-bottom: -1px;
}

.content-style table .simplebar-vertical {
  display: none;
}

.content-style table.table--clear:not(.table--even) tr:first-child td {
  padding-top: 20px;
}

.content-style table.table--clear:not(.table--even) tr:last-child td {
  padding-bottom: 20px;
}

.content-style table.table--clear:not(.table--even) td {
  background: none;
  border: none;
  padding: 12px 16px;
}

.content-style table.table--clear:not(.table--even) td:first-child {
  padding-left: 0;
}

.content-style table.table--clear:not(.table--even) td:last-child {
  padding-right: 0;
}

.content-style table.table--clear.table--even th,
.content-style table.table--clear.table--even td {
  border: none;
  padding: 16px;
}

.content-style table.table--clear.table--even th:first-child,
.content-style table.table--clear.table--even td:first-child {
  border-radius: 8px 0 0 8px;
}

.content-style table.table--clear.table--even th:last-child,
.content-style table.table--clear.table--even td:last-child {
  border-radius: 0 8px 8px 0;
}

.content-style table.table--clear.table--even th:first-child:last-child,
.content-style table.table--clear.table--even td:first-child:last-child {
  border-radius: 8px;
}

.content-style table.table--clear.table--even tr:nth-child(odd) td {
  background: var(--accent_1);
}

.content-style table.table--even tr:nth-child(even) td {
  background: none;
}

.content-style td,
.content-style th {
  text-align: left;
  vertical-align: top;
  padding: 16px;
}

.content-style td {
  border: 1px solid var(--border);
  background: var(--accent_1);
}

.content-style td:first-child {
  border-left: none;
}

.content-style td:last-child {
  border-right: none;
}

.content-style th {
  background: var(--light);
  color: var(--dark);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
}

.txt--80 {
  font-size: 80px;
  line-height: 92%;
  font-weight: 700;
}

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

.txt--18 {
  font-size: 18px;
  line-height: 140%;
  font-weight: 400;
}

.txt--16 {
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
}

.txt--14 {
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
  --paragrapg_bottom: 16px;
}

.txt--10 {
  font-size: 10px;
  line-height: 120%;
}

.txt--10 p {
  margin-bottom: 8px;
}

.txt--left {
  text-align: left;
}

.txt--center {
  text-align: center;
}

.txt--right {
  text-align: right;
}

.txt--justify {
  text-align: justify;
}

.txt--uppercase {
  text-transform: uppercase;
}

.txt--nowrap {
  white-space: nowrap;
}

.txt-w--100 {
  font-weight: 100;
}

.txt-w--200 {
  font-weight: 200;
}

.txt-w--300 {
  font-weight: 300;
}

.txt-w--400 {
  font-weight: 400;
}

.txt-w--500 {
  font-weight: 500;
}

.txt-w--600 {
  font-weight: 600;
}

.txt-w--700 {
  font-weight: 700;
}

.txt-w--800 {
  font-weight: 800;
}

.txt-w--900 {
  font-weight: 900;
}

.scroll-table {
  margin: 0 0 var(--paragrapg_bottom);
  overflow: auto hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  line-height: 0;
}

.scroll-table:last-child {
  margin-bottom: 0;
}

.scroll-table.hide {
  overflow: hidden;
}

.scroll-table--clear {
  border-left: none;
  border-right: none;
  border-radius: 0;
}

.scroll-table--clear.scroll-table--even {
  border: none;
}

ul.ok-ul li {
  padding-left: 48px;
}

ul.ok-ul li::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/icons/ok-gray.svg") center center/contain no-repeat;
}

hr {
  display: block;
  margin: 0;
  border: none;
  border-top: 1px solid var(--border);
}

.text_block {
  margin-bottom: var(--paragrapg_bottom);
}

.text_block:last-child {
  margin-bottom: 0;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 32px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--light);
  background: var(--accent_3);
  border: 1px solid var(--accent_3);
  border-radius: 12px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  text-decoration: none;
}

.button:hover {
  background: none;
  color: var(--accent_3);
}

.button--border {
  background: none;
  color: var(--accent_3);
}

.button--border:hover {
  background: var(--accent_3);
  color: var(--light);
}

.button--disabled {
  background: var(--border);
  border-color: transparent;
  pointer-events: none;
}

.button--wide {
  width: 357px;
  max-width: 100%;
}

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

.button_small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--light);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}

.button_small:hover {
  border-color: var(--accent_3);
}

.button_small span {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transform: translateY(1px);
      -ms-transform: translateY(1px);
          transform: translateY(1px);
}

.button_small img,
.button_small svg {
  width: 24px;
  height: auto;
  margin: 0 !important;
}

.bock_link {
  padding: 32px;
  border-radius: 16px;
  background: var(--background_transparent);
  color: var(--text) !important;
  gap: 8px;
  text-decoration: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.bock_link:hover {
  background: var(--accent_1);
}

.bock_link__ico img,
.bock_link__ico svg {
  height: 24px;
  margin: 0 !important;
  display: block;
}

.bock_link__title {
  padding: 12px 0 11px;
}

.bock_link_2 {
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--accent_1);
  width: 458px;
}

.bock_link_2:hover .bock_link_2__top {
  color: var(--accent_3);
}

.bock_link_2:hover .bock_link_2__top img {
  opacity: 1;
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
}

.bock_link_2__top {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.bock_link_2__top img {
  display: block;
  margin: 0 !important;
  opacity: 0;
  -webkit-transform: translateX(-30px);
      -ms-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.slider__navigation--no-active {
  visibility: hidden;
  opacity: 0;
}

.slider__arrow {
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.slider__arrow--big {
  width: 48px;
  height: 48px;
}

.slider__arrow svg,
.slider__arrow img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.slider__arrow.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.slider__arrow.disabled path[stroke] {
  stroke: var(--text);
}

.slider__arrow.disabled path[fill] {
  fill: var(--text);
}

.slider__pagination .swiper-pagination-bullet {
  width: 36px;
  height: 36px;
  background: none;
  border: 2px solid transparent;
  opacity: 1;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  position: relative;
}

.slider__pagination .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: var(--accent_2);
  border-radius: 50%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.6;
}

.slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--accent_3);
}

.slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background: var(--accent_3);
  opacity: 1;
}

.max_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  text-decoration: none;
}

.schema {
  display: none;
}

.container {
  padding: 0 92px;
}

.big-container {
  padding: 0 12px;
}

.big-container .container {
  padding: 0 80px;
}

.to-big-container {
  width: calc(100% + 160px);
  margin-left: -80px;
  overflow: hidden;
}

.screen_width_block {
  width: 100vw;
  margin-left: -92px;
}

.top_body_block {
  margin-top: calc(var(--body_top_space) * -1);
  padding-top: var(--body_top_space);
}

.page {
  gap: 80px;
}

.page__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20.28% calc(79.72% - 64px);
  grid-template-columns: 20.28% calc(79.72% - 64px);
  gap: 64px;
}

.page__side:empty {
  display: none;
}

.page__side:empty ~ .page__content {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}

.page__content {
  width: 100%;
}

.block {
  padding: var(--block_padding);
  border-radius: 8px;
}

.block_medium {
  padding: var(--block_medium_padding);
  border-radius: 8px;
}

.block_small {
  padding: var(--block_small_padding);
  border-radius: 8px;
}

.block_mikro {
  padding: var(--block_mikro_padding);
  border-radius: 8px;
}

.border {
  border: 1px solid var(--border);
}

.border_hover {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.border_hover:hover {
  border-color: var(--accent_3);
}

.breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs a {
  position: relative;
  color: var(--link);
  text-decoration: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.breadcrumbs a:hover {
  color: var(--accent_3);
}

.breadcrumbs svg:last-child {
  display: none;
}

.fit-image {
  position: relative;
  overflow: hidden;
}

.fit-image img,
.fit-image video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 !important;
}

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

.video__wrapper {
  width: 100%;
  position: relative;
  line-height: 0;
  margin-bottom: 0px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: var(--paragrapg_bottom);
}

.video__wrapper:last-child {
  margin-bottom: 0;
}

.video__wrapper video {
  width: 100%;
}

.video__wrapper--iframe::before {
  content: "";
  display: block;
  margin-top: 56.55%;
}

.video__wrapper--iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
  margin: 0 !important;
}

.video-button {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 2;
  pointer-events: none;
}

.media-block {
  gap: 32px;
}

.media-block__text {
  width: 384px;
  max-width: 40%;
}

.spoiler {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: var(--paragrapg_bottom);
  -webkit-transition: border 0.4s;
  -o-transition: border 0.4s;
  transition: border 0.4s;
}

.spoiler:hover > .spoiler__link .spoiler__title {
  color: var(--accent_2);
}

.spoiler.open {
  border-color: var(--accent_3);
}

.spoiler.open > .spoiler__link .spoiler__title {
  color: var(--accent_3);
}

.spoiler.open > .spoiler__link .spoiler__ico {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.spoiler .spoiler:first-child {
	margin-top: var(--paragrapg_bottom);
}

.spoiler .spoiler:last-child {
	margin-bottom: 0;
}

.spoiler__link {
  gap: 24px;
  padding: 24px;
  cursor: pointer;
  position: relative;
}

.spoiler__title {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.spoiler__ico {
  position: relative;
  width: 24px;
  height: 24px;
  background: url("../img/icons/arrow-down.svg") center center/contain no-repeat;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.spoiler__hide {
  display: none;
}

.spoiler__content {
  padding: 0 24px 24px;
}

.photogallery {
  margin-bottom: var(--paragrapg_bottom);
  gap: 8px;
  overflow: hidden;
  border-radius: 4px;
}

.photogallery img {
  margin: 0;
}

.photogallery--has-text {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 384px 1fr;
  grid-template-columns: 384px 1fr;
  gap: 32px;
}

.photogallery--has-text .photogallery__arrows {
  padding: 16px 0;
}

.photogallery--has-text .swiper-slide,
.photogallery--has-text img {
  border-radius: 0 !important;
}

.photogallery--has-text .swiper-slid:last-child {
  margin-right: 0;
}

.photogallery__text_half {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.photogallery__slide_title {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.photogallery__images {
  overflow: hidden;
}

.photogallery__big {
  overflow: hidden;
  border-radius: 8px;
}

.photogallery__big .swiper-slide::before {
  content: "";
  display: block;
  margin-top: 56.55%;
}

.photogallery__big video {
  display: none;
}

.photogallery__nav .swiper-slide {
  width: 80px;
  height: 80px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.photogallery__nav .swiper-slide img {
  border-radius: 4px;
}

.photogallery__nav .swiper-slide.active {
  opacity: 0.6;
}

.video__ico {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  background: var(--background) url("../img/icons/arrow-right.svg") center center/ 20px no-repeat;
  border-radius: 12px;
}

.social-list {
  gap: 10px;
}

.social-link {
  line-height: 0;
  width: 32px;
  height: 32px;
}

.social-link svg,
.social-link img {
  display: block;
}

.background_video {
  position: relative;
}

.background_video__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
}

.background_video__stick {
  position: absolute;
  left: 0;
  top: calc(var(--vh, 1vh) * -100);
  width: 1px;
  height: calc(100% + var(--vh, 1vh) * 200);
  pointer-events: none;
}

.background_video__stick::after {
  content: "";
  display: block;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  background: var(--background);
}

.background_video__stick .background_video__video {
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  position: sticky;
  top: 0;
}

.background_video__stick + .background_video__stick {
  pointer-events: all;
}

.background_video__stick--w100 {
  width: 100%;
}

.background_video__stick--w100::after {
  width: 100%;
}

.background_video__stick--w100 .background_video__video {
  width: 100%;
}

.background_video__content {
  position: relative;
  z-index: 1;
}

.big-container .background_video__stick::after,
.big-container .background_video__stick .background_video__video,
.big-container .background_video__stick .background_video__content {
  width: calc(100vw - 24px);
}

.big-container .background_video__stick .background_video__content {
  position: sticky;
  top: 0;
}

section {
  padding-top: var(--section_space);
  padding-bottom: var(--section_space);
}

.section_list {
  padding-bottom: var(--section_space);
}

.section_list:last-child {
  padding-bottom: 0;
}

.section_list section + section {
  padding-top: 0;
}

.section_list section:last-child {
  padding-bottom: 0;
}

.marquee {
  padding: 1px 0;
  overflow: hidden;
}

.marquee-gap--32 .js-marquee-wrapper {
  gap: 32px;
}

.js-marquee-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.thin_block {
  width: 828px;
  max-width: 100%;
}

.simplebar-track {
  background: var(--background);
  overflow: visible;
}

.simplebar-track .simplebar-scrollbar::before {
  left: 0;
  right: 0;
  background: var(--accent_2);
  border-radius: 3px;
  z-index: 1;
  opacity: 1;
}

.simplebar-track.simplebar-horizontal {
  bottom: 2px;
  height: 6px !important;
}

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

.simplebar-track.simplebar-horizontal .simplebar-scrollbar::before {
  height: 6px !important;
}

.simplebar-track.simplebar-vertical {
  right: 2px;
  width: 6px !important;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar {
  right: 0px;
  width: 6px;
  height: auto;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar::before {
  width: 6px !important;
}

.video_block {
  overflow-y: clip;
  border-radius: 12px;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 24px;
  overflow: hidden auto;
}

.popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.popup__content {
  padding: 60px;
  border-radius: 12px;
  border: 1px solid var(--border);
  width: 910px;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.popup__close {
  position: absolute;
  top: 24px;
  right: 24px;
  height: 46px;
  width: 46px;
  border: 2px solid var(--accent_3);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.popup__close:hover {
  background: var(--accent_1);
}

.popup__close img {
  display: block;
  margin: 0;
}

.popup__title {
  max-width: calc(100% - 52px);
}

.side_menu {
  max-height: calc(var(--vh, 1vh) * 100 - var(--title_top) - var(--title_bottom));
  overflow: hidden auto;
  padding-bottom: 1px;
}

.side_menu a {
  color: inherit;
}

.side_menu a:hover {
  color: var(--accent_2);
}

.side_menu a.anchor_link--active {
  color: var(--text_2);
}

.side_menu .simplebar-track {
  background: var(--accent_1);
}

.text--close {
  display: none;
}

.show-text-close .text--open {
  display: none;
}

.show-text-close .text--close {
  display: block;
}

.list_item {
  padding: 32px;
  border-radius: 12px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.list_item:not([class*=background]) {
  background: var(--accent_1);
}

.list_item__image {
  width: 24px;
  margin: 0 !important;
}

.list_item__image--big {
  width: 80px;
}

.list_item__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.list_item__grid .list_item:last-child:nth-child(odd) {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}

.list_item__grid--3 {
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.list_item__grid--3 .list_item:last-child:nth-child(odd) {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
}

.list_item__grid--3 .list_item:last-child:nth-child(4n) {
  -ms-grid-column-span: 3;
  grid-column: 3 span;
}

.speakers__slider {
  overflow: hidden;
}

.speakers__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.speakers__slider .speakers__image {
  width: 180px;
  height: 180px;
}

.speakers--no-nav .speakers__navigation {
  display: none;
}

.speakers__image--big {
  width: 252px;
  height: 252px;
  background: var(--accent_1);
  border: 1px solid var(--border);
  border-radius: 50%;
  position: relative;
}

.speakers__image--big img {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 31px);
  height: calc(100% - 31px);
  border-radius: 50%;
  object-position: center top;
}

.portrait {
  width: max-content;  
}

.portrait img {
  width: 220px;
  height: auto;
}

.hover_item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.hover_item:hover {
  border-color: var(--accent_2);
  z-index: 3;
}

.hover_item:hover .hover_item__title {
  color: var(--link);
}

.hover_item:hover .hover_item__popup {
  visibility: visible;
  opacity: 1;
}

.hover_item__title {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.hover_item__popup {
  position: absolute;
  right: 0;
  top: -96px;
  width: 510px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.hover_item__text {
  --paragrapg_bottom: 8px;
}

.hover_item__image {
  width: 100%;
}

.footer {
  margin-top: var(--footer_top_space);
  padding-top: 30px;
  background: var(--accent_1);
  color: var(--light);
  border-radius: 12px 12px 0 0;
}

.footer a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.footer a:hover {
  color: var(--accent_3);
}

.footer__top {
  gap: 16px 24px;
}

.footer__col {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}

.footer__menu {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}

.footer__bottom {
  margin-top: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  gap: 8px 16px;
}

.input {
  width: 100%;
  padding: 11px 15px;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  background: var(--light);
  color: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none !important;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.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;
}

textarea.input {
  min-height: 74px;
}

label.error {
  color: var(--error);
  font-size: 14px;
  font-weight: 400;
}

.checkbox {
  position: relative;
  cursor: pointer;
}

.checkbox input {
  position: absolute;
  visibility: hidden;
}

.checkbox input:checked ~ .checkbox__ico {
  background: var(--accent_2);
}

.checkbox input:checked ~ .checkbox__ico::before {
  opacity: 1;
}

.checkbox input.error ~ .checkbox__ico {
  background: none;
  border-color: var(--error);
}

.checkbox input.error ~ .checkbox__ico::before {
  opacity: 0;
}

.checkbox:hover .checkbox__ico {
  background: var(--accent_1);
}

.checkbox label.error {
  display: none !important;
}

.checkbox__ico {
  width: 22px;
  height: 22px;
  border: 1px solid var(--accent_2);
  border-radius: 4px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.checkbox__ico::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/icons/check.svg") center center/contain no-repeat;
  opacity: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.checkbox__text.txt--14 {
  padding-top: 2px;
}

.checkbox__text a {
  color: inherit;
  text-decoration: underline;
}

.checkbox__text a:hover {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}

.filter_label {
  position: relative;
  display: block;
  width: 212px;
}

.filter_label.filled .filter_placeholder,
.filter_label:focus-within .filter_placeholder {
  font-size: 12px;
  top: 4px;
}

.filter_label label.error {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  line-height: 120%;
}

.filter_label .jq-selectbox.opened .jq-selectbox__trigger {
  -webkit-transform: translateY(-50%) rotateX(180deg);
          transform: translateY(-50%) rotateX(180deg);
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  opacity: 1;
  right: 12px;
}

.filter_label .jq-selectbox.select-changed .jq-selectbox__select {
  color: var(--light);
}

.filter_label .jq-selectbox__select {
  background: var(--accent_1);
  padding: 13px 12px 11px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text_2);
}

.filter_label .jq-selectbox__trigger {
  border: none;
  right: 0;
  width: 24px;
  height: 24px;
  background: url(../img/icons/arrow-down.svg) center center/contain no-repeat;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.6;
}

.filter_label .jq-selectbox__dropdown {
  padding: 6px 0 !important;
  background: var(--background);
  border: 1px solid var(--border);
  margin-top: 2px;
  border-radius: 8px;
  font-size: 16px;
  padding: 6px 12px;
}

.filter_label .jq-selectbox__dropdown li {
  color: var(--light);
}

.filter_label:hover .jq-selectbox__trigger {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  opacity: 1;
}

.filter_ico {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.filter_input {
  padding: 20px 12px 2px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--accent_1);
  outline: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  color: var(--light);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
}

.filter_input--date {
  padding-right: 42px;
}

.filter_input--has_ico {
  padding-right: 42px;
}

.filter_placeholder {
  position: absolute;
  top: 13px;
  left: 12px;
  color: var(--text_2);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.filter__sort_input {
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.filter__sort_input:checked ~ .filter__sort_input_show .filter_ico {
    transform: translateY(-50%) rotateX(180deg);
}

.filter__sort_input:checked ~ .filter__sort_input_show .filter__sort_1 {
  display: none;
}

.filter__sort_input:checked ~ .filter__sort_input_show .filter__sort_2 {
  display: block;
}

.filter__sort_input span {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.filter__sort_input_show {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--accent_1);
  position: relative;
  cursor: pointer;
}

.filter__sort_2 {
  display: none;
}

.filter_checkbox_select {
  width: 280px;
  max-width: 100%;
}

.filter_checkbox_select.open .filter_checkbox_select__link::after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.filter_checkbox_select__link {
  padding: 13px 12px 11px;
  background: var(--accent_1);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.filter_checkbox_select__link::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/icons/arrow-down.svg") center center/contain no-repeat;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.6;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.filter_checkbox_select__link:hover::after {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  opacity: 1;
}

.filter_checkbox_select__dropdown {
  display: none;
}

.filter_checkbox_select__list {
  padding-top: 32px;
}

.capcha {
  padding: 5px;
  position: relative;
}

.capcha img {
  margin: 0 !important;
  border-radius: 8px;
  display: block;
}

.capcha label.error {
  position: absolute;
  top: calc(100% + 8px);
  left: 242px;
  line-height: 120%;
}

.capcha__bolck {
  border-radius: 6px 8px 8px 6px;
}

.capcha__refresh {
  padding: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.capcha__refresh svg {
  display: block;
  position: relative;
}

.capcha__refresh::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: var(--accent_2);
  opacity: 0.4;
  border-radius: 8px;
}

.capcha__input {
  padding: 6px 10px 6px 15px;
}

.page_form {
  padding: 60px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--accent_1);
}

.form_cols {
  display: -ms-grid;
  display: grid;
  gap: 80px;
}

.form_cols--2 {
  -ms-grid-columns: calc(50% - 40px) calc(50% - 40px);
  grid-template-columns: calc(50% - 40px) calc(50% - 40px);
}

/* .phone_code {
    width: 98px;
    .jq-selectbox__select-text {
        &::before {
            content: '';
            display: inline-block;
            width: 16px;
            height: 13px;
            margin-right: 4px;
        }
    }
} */

.phone_code {
  -webkit-box-flex: 0 !important;
      -ms-flex: none !important;
          flex: none !important;
}

.phone_code ~ label {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 !important;
          flex: 1 !important;
}

.no-webp .phone_c::before {
  background: url("../img/icons/rus.png") center center/contain no-repeat; }

.phone_c::before {
  content: "";
  display: block;
  width: 16px;
  height: 13px;
}

.jq-selectbox {
  width: 100%;
}

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

.jq-selectbox__select {
  padding: 11px 15px;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  background: var(--light);
  color: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none !important;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

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

.jq-selectbox__trigger {
  position: absolute;
  right: 15px;
  top: 50%;
  border-top: 4px solid var(--dark);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.opened .jq-selectbox__trigger {
  -webkit-transform: rotate(-180eg);
      -ms-transform: rotate(-180eg);
          transform: rotate(-180eg);
}

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

.jq-selectbox__dropdown {
  padding: 12px 0 6px !important;
  min-width: 100%;
  background: var(--light);
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid var(--border);
  margin-top: -12px;
  border-radius: 8px;
}

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

.jq-selectbox__dropdown li {
  padding: 6px 15px !important;
  margin: 0 !important;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
  color: var(--dark);
}

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

.jq-selectbox__dropdown li.sel,
.jq-selectbox__dropdown li:hover {
  color: var(--accent_2);
}

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

.datepicker {
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  font-family: inherit;
  font-weight: 400;
  color: var(--text);
  background: var(--background);
  font-size: 16px !important;
  line-height: 140%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 410px;
  padding: 24px;
}

.datepicker--nav {
  padding: 0;
  border: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

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

.datepicker--nav-title {
  color: var(--text);
  font-weight: 600;
}

.datepicker--nav-title i {
  color: inherit;
}

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

.datepicker--nav-action path {
  fill: var(--text);
  stroke: none;
  stroke-width: 1px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.datepicker--nav-action:hover path {
  fill: var(--accent_2);
}

.datepicker--pointer {
  display: none;
}

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

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

.datepicker--day-name {
  font-size: 100%;
  color: var(--text);
  font-weight: 600;
  text-transform: capitalize;
  padding: 4px 0;
}

.datepicker--cell {
  border-radius: 0px !important;
  height: 45px;
  font-weight: 600;
}

.datepicker--cell-day.-other-month-,
.datepicker--cell-year.-other-decade- {
  color: var(--text_2);
}

.datepicker--cell-day.-other-month- .event-dot,
.datepicker--cell-year.-other-decade- .event-dot {
  background: var(--text_2);
}

.event-back {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--zero);
  z-index: -1;
  pointer-events: none;
}

.event-dot {
  position: absolute;
  bottom: 14%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  width: 6px;
  height: 6px;
  background: var(--text);
}

.datepicker--cell.-current- {
  color: var(--accent_2);
}

.datepicker--cell.-current-.-focus- {
  color: var(--accent_2);
}

.datepicker--cell.-current-.-in-range- {
  color: var(--accent_2);
}

.datepicker--cell.-focus- {
  background: transparent;
  border: 1px solid var(--accent_2);
}

.datepicker--cell.-selected-.-focus- {
  background: var(--accent_2);
}

.datepicker--cell.-selected-.-focus-.-current- {
  coloR: var(--light);
}

.datepicker--cell.-in-range- {
  background: var(--accent_3);
  color: var(--light);
}

.datepicker--cell.-range-to- {
  border: 1px solid var(--accent_3);
  background-color: var(--accent_3);
}

.datepicker--cell.-selected-,
.datepicker--cell.-selected-.-current- {
  background: var(--accent_2);
}

.datepicker--cell.-selected- .event-back,
.datepicker--cell.-selected-.-current- .event-back {
  background: var(--accent_2);
}

.datepicker--cell.-selected- .event-dot,
.datepicker--cell.-selected-.-current- .event-dot {
  background: var(--light);
}

.datepicker--cell.-in-range-.-focus- {
  background-color: var(--zero);
}

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

.file {
  position: relative;
  width: 100%;
}

.file__info {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.file__info::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url("../img/icons/driver-refresh.svg") center center/contain no-repeat;
}

.file__item-close {
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.file__item-close svg {
  margin: -50% 0;
}

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

.file__item-close:hover {
  color: var(--accent_2);
}

.file__item-close:hover path[stroke] {
  stroke: var(--light);
}

.form__success {
  display: none;
}

.form__error {
  color: var(--error);
  display: none;
  margin-top: 20px;
}

.auto--top {
  margin-top: auto;
}

.order--1 {
  order: 1;
}

@media (min-width: 681px) {
  .show-mobile {
    display: none;
  }

  .speakers--no-pda-nav .speakers__navigation {
    display: none;
  }

  .button--thin {
    letter-spacing: -0.5px;
    padding-inline: 18px;
  }
}

@media (min-width: 1121px){
  .title_button {
      margin-bottom: 8px;
  }
}

@media (min-width: 1025px) {
  .show-pda {
    display: none;
  }

  .speakers--no-desctop-nav .speakers__navigation {
    display: none;
  }

  .side_filter .filter_label {
    width: 100%;
  }
}

@media (max-width: 1650px) {
  .page_form {
    padding: 32px;
  }
  .sub_sub_menu {
    left: auto;
    right: calc(100% + 10px);
  }

  .sub_sub_menu::before {
      right: auto;
      right: 100%;
  }
}

@media (max-width: 1600px) {
  .page__inner {
    gap: 32px;
    -ms-grid-columns: 20.28% calc(79.72% - 32px);
    grid-template-columns: 20.28% calc(79.72% - 32px);
  }

  .big-container .background_video__stick::after,
  .big-container .background_video__stick .background_video__video,
  .big-container .background_video__stick .background_video__content {
    width: calc(100vw - 16px);
  }

  .list_item__grid--3 .list_item {
    -ms-grid-column-span: 3;
    grid-column: 3 span;
  }

  .list_item__grid--3 .list_item:last-child:nth-child(odd) {
    -ms-grid-column-span: 3;
    grid-column: 3 span;
  }

  .form_cols--2 .phone_wrap {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

@media (max-width: 1400px) {
  .column--small-screen {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    -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;
  }

  .button--wide {
    width: auto;
  }

  .container {
    padding: 0 44px;
  }

  .big-container {
    padding: 0 8px;
  }

  .big-container .container {
    padding: 0 36px;
  }

  .to-big-container {
    width: calc(100% + 72px);
    margin-left: -36px;
  }

  .screen_width_block {
    margin-left: -44px;
  }

  .photogallery--has-text {
    -ms-grid-columns: 264px 1fr;
    grid-template-columns: 264px 1fr;
  }

  .list_item__grid .list_item {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }

  .list_item__grid--3 .list_item {
    -ms-grid-column-span: 3;
    grid-column: 3 span;
  }

  .list_item__grid--3 .list_item:last-child:nth-child(odd) {
    -ms-grid-column-span: 3;
    grid-column: 3 span;
  }
}

@media (max-width: 1024px) {
  :root {
    --section_space: 64px;
    --gap_big: 64px;
    --gap_block: 32px;
    --gap_content: 24px;
    --block_padding: 32px;
  }

  :root {
    --gap_big: 48px;
    --gap_block: 24px;
  }

  body {
    font-size: 18px;
  }

  .column--pda {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    -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;
  }

  .row--pda {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .gap-pda--4 {
    gap: 4px;
  }

  .gap-pda--8 {
    gap: 8px;
  }

  .gap-pda--16 {
    gap: 16px;
  }

  .gap-pda--24 {
    gap: 24px;
  }

  .gap-pda--32 {
    gap: 32px;
  }

  .gap-pda--48 {
    gap: 48px;
  }

  .gap-pda--64 {
    gap: 64px;
  }

  .gap-pda--80 {
    gap: 80px;
  }

  .hide-pda {
    display: none;
  }

  .search_link .sub_menu {
    max-width: calc(100vw - 80px);
    right: -64px;
    width: 100vw;
  }

  .burger {
    display: block;
  }

  h1,
  .h1 {
    font-size: 42px;
    letter-spacing: -0.84px;
  }

  h2,
  .h2 {
    font-size: 36px;
    letter-spacing: -0.9px;
  }

  h3,
  .h3 {
    font-size: 28px;
  }

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

  h1 br,
  .h1 br {
    display: none;
  }

  h2 br,
  .h2 br {
    display: none;
  }

  h3 br,
  .h3 br {
    display: none;
  }

  h4 br,
  .h4 br {
    display: none;
  }

  h5 br,
  .h5 br {
    display: none;
  }

  .txt--80 {
    font-size: 36px;
  }

  .txt--20 {
    font-size: 18px;
  }

  .txt--16 {
    font-size: 14px;
  }

  .bock_link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
  }

  .bock_link_2 {
    width: 314px;
  }

  .bock_link_2__top {
    color: var(--accent_3);
  }

  .bock_link_2__top img {
    opacity: 1;
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
  }

  .slider__arrow--big {
    width: 32px;
    height: 32px;
  }

  .page {
    gap: 64px;
  }

  .page__inner {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }

  .page__side:empty ~ .page__content {
    -ms-grid-column: 1;
    grid-column: 1;
  }

  .thin_block {
    width: 560px;
  }

  .popup__content {
    padding: 48px;
  }

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

  .side_menu__buttons .button {
    width: 100%;
  }

  .hover_item {
    padding: 24px 0;
  }

  .hover_item:first-child {
    padding-top: 0;
  }

  .hover_item:last-child {
    padding-bottom: 0;
    border: none;
  }

  .hover_item__title {
    display: none;
  }

  .hover_item__popup {
    position: relative;
    visibility: visible;
    opacity: 1;
    top: 0;
    width: 100%;
    border: none;
    padding: 0 !important;
    background: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }

  .hover_item__image {
    width: auto;
  }

  .input {
    font-size: 18px;
  }

  .checkbox__ico {
    width: 18px;
    height: 18px;
  }

  .page_form__wrapper {
    gap: 48px;
  }

  .form_cols {
    gap: 24px;
  }

  .form_cols--2 {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}

@media (max-width: 900px) {
  :root {
    --body_top_space: 148px;
  }

  .side_filter .button {
    width: 100%;
  }
}

@media (max-width: 680px) {
  :root {
    --body_top_space: 132px;
    --section_space: 48px;
    --gap_big: 32px;
    --gap_block: 16px;
    --gap_content: 16px;
    --block_padding: 24px;
    --block_medium_padding: 24px;
    --block_small_padding: 16px;
    --block_mikro_padding: 8px;
  }

  body {
    font-size: 16px;
  }

  .column--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    -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;
  }

  .row--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .gap-mobile--4 {
    gap: 4px;
  }

  .gap-mobile--8 {
    gap: 8px;
  }

  .gap-mobile--16 {
    gap: 16px;
  }

  .gap-mobile--24 {
    gap: 24px;
  }

  .gap-mobile--32 {
    gap: 32px;
  }

  .gap-mobile--48 {
    gap: 48px;
  }

  .gap-mobile--64 {
    gap: 64px;
  }

  .gap-mobile--80 {
    gap: 80px;
  }

  .hide-mobile {
    display: none;
  }

  .header {
    padding: 16px;
  }

  .header .container {
    padding: 0;
  }

  .header__logo {
    width: 238px;
    max-width: calc(100% - 120px);
    margin-right: 0;
  }

  .header__buttons {
    gap: 24px;
    margin-left: auto;
  }

  .search_link .sub_menu {
    max-width: calc(100vw - 32px);
    right: -48px;
  }

  .search_form {
    gap: 8px;
  }

  .search_form__input {
    font-size: 14px !important;
  }

  .burger_menu .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .burger_menu__logo {
    -webkit-filter: grayscale(1) brightness(10);
            filter: grayscale(1) brightness(10);
    width: 238px;
    max-width: calc(100% - 24px);
  }

  .burger_menu__close {
    width: 56px;
    height: 56px;
    right: -16px;
    top: -16px;
  }

  .burger_menu__list {
    font-size: 14px !important;
  }

  .burger_menu__item {
    padding: 16px 12px;
  }

  .burger_menu__link::before {
    width: calc(100% + 24px);
    left: -12px;
  }

  .burger_menu__link::after {
    width: calc(100% + 24px);
    left: -12px;
  }

  .sub_sub_burger_menu {
    font-size: 12px;
  }

  h1,
  .h1 {
    font-size: 36px;
    letter-spacing: -0.72px;
  }

  h4,
  .h4 {
    font-size: 20px;
  }

  h1,
  .h1--space {
    margin-bottom: 48px;
  }

  .content-style ol ol {
    padding-left: 72px;
  }

  .content-style ol ol > li::before {
    width: 64px;
    left: -72px;
  }

  .txt--20 {
    font-size: 16px;
  }

  .txt--14 {
    font-size: 12px;
  }

  .bock_link {
    padding: 24px;
  }

  .bock_link_2 {
    width: 100%;
    padding: 24px;
  }

  .slider__arrow--big {
    width: 24px;
    height: 24px;
  }

  .container {
    padding: 0 24px;
  }

  .big-container {
    padding: 0;
  }

  .big-container .container {
    padding: 0 16px;
  }

  .to-big-container {
    width: calc(100% + 32px);
    margin-left: -16px;
  }

  .screen_width_block {
    margin-left: -24px;
  }

  .page {
    gap: 48px;
  }

  .video-button {
    left: 16px;
    bottom: 16px;
  }

  .media-block__text {
    width: 100%;
    max-width: unset;
  }

  .spoiler__link {
    gap: 16px;
    padding: 16px;
  }

  .spoiler__title {
    color: var(--light);
  }

  .spoiler__content {
    padding: 0 16px 16px;
  }

  .photogallery--has-text {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 16px;
  }

  .photogallery--has-text .photogallery__arrows {
    padding: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .photogallery__text_half {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .photogallery__slide_title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    display: -moz-box;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    box-orient: vertical;
  }

  .big-container .background_video__stick::after,
  .big-container .background_video__stick .background_video__video,
  .big-container .background_video__stick .background_video__content {
    width: 100vw;
  }

  .marquee {
    padding: 0 24px;
  }

  .thin_block {
    width: 100%;
  }

  .popup {
    padding: 48px 24px;
  }

  .popup {
    padding: 24px;
  }

  .popup__content {
    padding: 24px;
  }

  .popup__close {
    width: 32px;
    height: 32px;
  }

  .popup__title {
    max-width: calc(100% - 40px);
  }

  .list_item {
    padding: 16px;
  }

  .footer__col {
    gap: 16px;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }

  .footer__col--1 {
    gap: 24px;
  }

  .footer__bottom {
    margin-top: 24px;
    padding: 16px 0;
  }

  .form label {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }

  .input {
    font-size: 16px;
  }

  label.error {
    font-size: 12px;
  }

  .filter .button {
    width: 100%;
  }

  .filter_label {
    width: 100%;
  }

  .filter_label .jq-selectbox__select {
    font-size: 14px;
  }

  .filter_label .jq-selectbox__dropdown {
    font-size: 14px;
  }

  .filter_input {
    font-size: 14px;
  }

  .filter_placeholder {
    font-size: 14px;
  }

  .filter_checkbox_select__list {
    padding-top: 16px;
  }

  .capcha label.error {
    left: 10px;
  }

  .page_form__wrapper {
    gap: 32px;
  }

  .datepicker {
    max-width: calc(100vw - 48px);
  }

  .file__item-close {
    margin-left: auto;
  }

  .file__item-name {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }

  .speakers__image--big {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 460px) {
  .capcha img {
    margin: 0 auto !important;
  }

  .capcha__bolck {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    gap: 8px;
  }

  .capcha__refresh {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .capcha__refresh svg {
    margin: 0 auto;
  }

  .capcha__input {
    padding: 11px 5px 6px;
  }
}

@media (max-width: 380px) {
  .phone_code {
    display: none;
  }
}

@media (max-width: 350px) {
  .capcha__refresh {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

@media (max-width: 1400px) and (min-width: 1025px) {
  .side_menu__buttons .button {
    padding-left: 10px;
    padding-right: 10px;
  }
}

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

.webp .phone_c::before { background: url(../img/icons/rus.webp) center center/contain no-repeat; }