@charset "UTF-8";

/*Миксины*/

:root {
  --zero: #000;
  --white: #fff;
  --black: #29292B;
  --gray1: #F0F0F0;
  --gray2: #FAFAFA;
  --gray3: #7C7979;
  --gray4: #BDBDBD;
  --gray5: #F0F0F0;
  --gray6: #DFDFDF;
  --brend: #0084A0;
  --brend2: #32575F;
  --red: #F42829;
  --border: rgba(240, 240, 240, 0.20);
}

.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: "Manrope";
  font-weight: 500;
  color: var(--black);
  background: var(--gray6);
  font-size: 18px;
  line-height: 150%;
  overflow: hidden auto;
}

.page {
  padding-top: 164px;
  min-height: calc(var(--vh, 1vh) * 100);
  position: relative;
}

.page::before {
  content: "";
  display: block;
  width: 100%;
  height: 164px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  background: var(--gray6);
  pointer-events: none;
}

.page main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-bottom: 80px;
}

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

/* Цвета */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.svg-hover {
  cursor: pointer;
}

.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],
.svg-hover--zero:hover line[fill] {
  fill: var(--zero);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Флексы */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flex--column {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.self--top {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.self--bottom {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.grid {
  display: -ms-grid;
  display: grid;
}

.grid--column {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto;
  grid-template-columns: auto;
}

.pos--relative {
  position: relative;
}

.margin--line-auto {
  margin: 0 auto;
}

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

.container {
  max-width: 1632px;
  width: calc(100vw - 100px);
  margin: 0 auto;
}

.col--1 {
  width: calc(((1632px + 64px) / 12 * 1) - 64px + 0px);
}

.col--2 {
  width: calc(((1632px + 64px) / 12 * 2) - 64px + 0px);
}

.col--3 {
  width: calc(((1632px + 64px) / 12 * 3) - 64px + 0px);
}

.col--4 {
  width: calc(((1632px + 64px) / 12 * 4) - 64px + 0px);
}

.col--5 {
  width: calc(((1632px + 64px) / 12 * 5) - 64px + 0px);
}

.col--6 {
  width: calc(((1632px + 64px) / 12 * 6) - 64px + 0px);
}

.col--7 {
  width: calc(((1632px + 64px) / 12 * 7) - 64px + 0px);
}

.col--8 {
  width: calc(((1632px + 64px) / 12 * 8) - 64px + 0px);
}

.col--9 {
  width: calc(((1632px + 64px) / 12 * 9) - 64px + 0px);
}

.col--10 {
  width: calc(((1632px + 64px) / 12 * 10) - 64px + 0px);
}

.col--11 {
  width: calc(((1632px + 64px) / 12 * 11) - 64px + 0px);
}

.col--12 {
  width: calc(((1632px + 64px) / 12 * 12) - 64px + 0px);
}

.pre-full-screen {
  width: calc(100vw - 40px);
  margin-left: calc((100vw - 100%) / 2 * -1 + 20px);
}

.full-screen {
  width: 100vw;
  margin-left: calc((100vw - 100%) / 2 * -1);
}

.full-screen.full-screen--left-padding {
  padding-left: calc((100vw - 100%) / 2);
}

.full-screen.full-screen--right-padding {
  padding-right: calc((100vw - 100%) / 2);
}

.page-block__text.col--7 .full-screen {
  margin-left: calc((100vw - 1632px) / 2 * -1);
}

.ico-link {
  gap: 8px;
}

.w100 {
  width: 100%;
}

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

.page-block__aside {
  gap: 12px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.brend-block {
  padding: 64px;
  border-radius: 18px;
  background-image: url(../img/icons/big-logo.svg);
  background-position: 100% 50%;
  background-repeat: no-repeat;
}

.brend-block--content {
  gap: 64px;
}

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

.brend-block__buttons {
  gap: 8px;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}

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

.header a:hover {
  color: var(--brend);
}

.header.show .header__top,
.header.show .header__logo {
  opacity: 1;
}

.header.show .header__bottom::before {
  width: 100%;
}

.header__top {
  padding: 20px 0;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
  opacity: 0;
  background: var(--gray4);
}

.header__bottom {
  padding: 24px 0;
  position: relative;
  background: var(--gray6);
}

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

/* Сайты упдк */

.sites__link {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  margin-right: auto;
}

.sites__link:hover img {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.sites__link img {
  margin-right: 8px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.sites__list {
  display: none;
  position: absolute;
  top: 67px;
  left: 0;
  margin-left: calc((100vw - 1632px) / 2);
  z-index: 1;
  padding: 24px 30px;
  background: var(--gray4);
  border-top: 1px solid var(--gray6);
}

.sites__list a {
  display: block;
  margin-bottom: 18px;
}

.sites__list a:last-child {
  margin-bottom: 0;
}

/* Поиск */

.search-block {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  padding-top: 80px;
  background: rgba(41, 41, 42, 0.8);
}

.search-block__background {
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  mix-blend-mode: lighten;
  line-height: 0;
  pointer-events: none;
}

.search-block__container {
  width: 1440px;
  max-width: calc(100% - 30px);
  position: relative;
}

.search-block__title {
  margin-bottom: 64px;
}

.search-block__form {
  width: 100%;
  gap: 16px;
  padding: 17px 24px;
  border-radius: 8px;
}

.search-block__input {
  outline: none !important;
  background: none;
  border-radius: 0;
  border: none;
  padding: 0;
  font-size: 18px;
  line-height: 150%;
  font-family: "Manrope";
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.search-block__input::-webkit-input-placeholder {
  opacity: 1;
  color: var(--black);
}

.search-block__input::-moz-placeholder {
  opacity: 1;
  color: var(--black);
}

.search-block__input:-ms-input-placeholder {
  opacity: 1;
  color: var(--black);
}

.search-block__input::-ms-input-placeholder {
  opacity: 1;
  color: var(--black);
}

.search-block__input::placeholder {
  opacity: 1;
  color: var(--black);
}

.search-block__close {
  cursor: pointer;
}

.search-block__result {
  display: none;
  position: absolute;
  top: calc(100% + 24px);
  padding: 24px;
  border-radius: 8px;
  width: 100%;
}

.search-block__list {
  max-height: calc(var(--vh, 1vh) * 100 - 340px);
  overflow: auto;
}

.search-block__item {
  gap: 32px;
  padding: 16px;
  border-radius: 8px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  text-decoration: none;
  color: var(--black);
}

.search-block__item:hover {
  background: var(--white);
}

.search-block__item__contetn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 16px;
}

.search-block__more {
  padding: 24px 0;
}

/* Лого */

a.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 228px;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0.2s;
  -o-transition: opacity 0.2s 0.2s;
  transition: opacity 0.2s 0.2s;
}

a.header__logo img {
  width: 100%;
}

.header__links {
  gap: 48px;
  font-size: 16px;
  line-height: 0;
}

/* Интро страницы */

.page-intro {
  padding: 64px 0;
  position: relative;
}

.page-intro:not([style="--image: url('');"]) {
  color: var(--white);
  background-color: var(--black);
}

.page-intro:not([style="--image: url('');"])::before {
  content: "";
  display: block;
  width: calc(50% + (100vw - 100%) / 2);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: -webkit-gradient(linear, right top, left top, color-stop(56.04%, rgba(41, 41, 43, 0)), to(#29292B)), var(--image) left center/cover no-repeat;
  background: -o-linear-gradient(right, rgba(41, 41, 43, 0) 56.04%, #29292B 100%), var(--image) left center/cover no-repeat;
  background: linear-gradient(270deg, rgba(41, 41, 43, 0) 56.04%, #29292B 100%), var(--image) left center/cover no-repeat;
  mix-blend-mode: lighten;
}

.page-intro:not([style="--image: url('');"]) + .container .page-block__text {
  padding-top: 64px;
}

.page-intro:not([style="--image: url('');"]) + .container .page-block__aside {
  margin-top: -128px;
}

.page-intro__content {
  gap: 39px;
  z-index: 2;
  position: relative;
}

.breadcrumbs {
  gap: 24px;
}

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

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

.page-intro__text:empty {
  display: none;
}

.h1-block {
  gap: 64px;
}

.h1-block a {
  text-decoration: none;
}

.page-404 {
  padding-bottom: 0 !important;
  border-bottom: 1px solid rgba(124, 121, 121, 0.5);
}

.page-404 .page-intro {
  min-height: calc(var(--vh, 1vh) * 100 - 164px);
}

.page-404 .page-intro:not([style="--image: url('');"])::before {
  background: -webkit-gradient(linear, right top, left top, color-stop(56.04%, rgba(41, 41, 43, 0)), to(#29292B)), var(--image) center center/cover no-repeat;
  background: -o-linear-gradient(right, rgba(41, 41, 43, 0) 56.04%, #29292B 100%), var(--image) center center/cover no-repeat;
  background: linear-gradient(270deg, rgba(41, 41, 43, 0) 56.04%, #29292B 100%), var(--image) center center/cover no-repeat;
}

.page-404__buttons {
  margin-top: 48px;
  gap: 24px;
}

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

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

b,
strong {
  font-weight: 600;
}

a {
  text-decoration: underline;
  color: var(--brend);
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  -webkit-transition: -webkit-text-decoration 0.2s;
  transition: -webkit-text-decoration 0.2s;
  -o-transition: text-decoration 0.2s;
  transition: text-decoration 0.2s;
  transition: text-decoration 0.2s, -webkit-text-decoration 0.2s;
  text-underline-offset: 1px;
  text-decoration-thickness: 1px;
}

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

a.no-decoration {
  text-decoration: none;
}

img {
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

h1,
.h1 {
  font-family: "Prata";
}

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

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

h2,
.h2 {
  font-family: "Prata";
}

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

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

h3,
.h3 {
  font-family: "Prata";
}

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

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

h4,
.h4 {
  font-family: "Prata";
}

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

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

h5,
.h5 {
  font-family: "Prata";
}

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

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

h1,
.h1 {
  margin: 0;
  font-size: 58px;
  font-weight: 400;
  line-height: 140%;
}

h2,
.h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 140%;
}

h2 {
  margin: 64px 0 48px;
}

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

h3 {
  margin: 48px 0 24px;
}

h4,
.h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
}

h4 {
  margin: 48px 0 24px;
}

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

h4,
h5 {
  margin: 48px 0 24px;
}

/*Файлы*/

a.file-in-text {
  white-space: nowrap;
  border: none;
  padding-left: 34px;
  position: relative;
}

a.file-in-text--block {
  display: block;
  padding-left: 56px;
}

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

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

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

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

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

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

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

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

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

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

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

.file-in-text:hover .file-name {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}

.file-name {
  white-space: normal;
}

.blockquote,
.blockquote2,
blockquote {
  font-size: 20px;
  padding-left: 48px;
  position: relative;
  margin: 0 0 24px 0;
}

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

.blockquote2::before {
  content: "";
  background: var(--brend);
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
}

main ul,
main ol {
  margin: 0;
  list-style: none;
  padding: 0;
  line-height: 122%;
  margin-bottom: 24px;
}

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

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

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

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

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

main ul li::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  position: absolute;
  top: 13px;
  left: 8px;
  background: var(--black);
}

main ul ul > li::before {
  width: 9px;
  height: 9px;
  top: 8px;
  left: 13px;
  border-radius: 50%;
}

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

main ul.color--white li::before {
  background: var(--white);
}

main ul.no-space li {
  margin-bottom: 0;
}

main ol {
  counter-reset: point;
}

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

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

main ol > li::before {
  content: counters(point, ".") ". ";
  counter-increment: point;
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  width: auto;
  min-width: 32px;
  margin-right: 24px;
  background: none;
}

main ol ul > li::before {
  width: 9px;
  height: 9px;
  top: 8px;
  left: 13px;
  border-radius: 50%;
}

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

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

main img:not([class]) {
  margin-bottom: 24px;
  border-radius: 8px;
}

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

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

main table {
  border-collapse: collapse;
  margin-bottom: 1px;
  border: none;
  position: relative;
}

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

main td,
main th {
  text-align: left;
  vertical-align: top;
  padding: 24px;
  border-color: var(--gray4);
}

main th {
  font-weight: 500;
}

main td {
  line-height: 140%;
  font-size: 16px;
}

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

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

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

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

main thead + tbody tr:first-child td,
main thead + tbody tr:first-child th {
  border-radius: 0 !important;
}

main thead tr:last-child td,
main thead tr:last-child th {
  border-radius: 0 !important;
}

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

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

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

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

main .table--clear {
  border-collapse: collapse;
}

main .table--clear th,
main .table--clear td {
  border: none;
}

main .table--clear::before,
main .table--clear::after {
  border-color: transparent !important;
}

main .table--odd th {
  background: var(--brend);
  color: var(--white);
}

main .table--odd tr:nth-child(2n-1) td {
  background: var(--gray5);
}

ul.custom-ul li {
  padding-left: 56px;
}

ul.custom-ul li::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0px;
  left: 0px;
  background: url("../img/icons/check-ico.svg") center center/cover no-repeat;
}

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

.scroll-table table {
  position: relative;
}

.scroll-table table::before,
.scroll-table table::after {
  content: "";
  display: block;
  width: 8px;
  height: calc(100% - 1px);
  position: absolute;
  top: 0px;
  left: 0px;
  border: 1px solid var(--gray4);
  z-index: 1;
  pointer-events: none;
}

.scroll-table table::before {
  border-right-color: transparent;
  border-radius: 8px 0 0 8px;
  -webkit-box-shadow: -1px 0px 0 0px var(--gray6), -2px 0px 0 0px var(--gray6), -3px 0px 0 0px var(--gray6), -4px 0px 0 0px var(--gray6), -5px 0px 0 0px var(--gray6), -6px 0px 0 0px var(--gray6), -7px 0px 0 0px var(--gray6), -1px 1px 0 0px var(--gray6), -2px 1px 0 0px var(--gray6), -3px 1px 0 0px var(--gray6), -4px 1px 0 0px var(--gray6), -5px 1px 0 0px var(--gray6), -6px 1px 0 0px var(--gray6), -7px 1px 0 0px var(--gray6);
          box-shadow: -1px 0px 0 0px var(--gray6), -2px 0px 0 0px var(--gray6), -3px 0px 0 0px var(--gray6), -4px 0px 0 0px var(--gray6), -5px 0px 0 0px var(--gray6), -6px 0px 0 0px var(--gray6), -7px 0px 0 0px var(--gray6), -1px 1px 0 0px var(--gray6), -2px 1px 0 0px var(--gray6), -3px 1px 0 0px var(--gray6), -4px 1px 0 0px var(--gray6), -5px 1px 0 0px var(--gray6), -6px 1px 0 0px var(--gray6), -7px 1px 0 0px var(--gray6);
}

.scroll-table table::after {
  border-left-color: transparent;
  left: auto;
  right: 0px;
  border-radius: 0 8px 8px 0;
  -webkit-box-shadow: 1px 0px 0 0px var(--gray6), 2px 0px 0 0px var(--gray6), 3px 0px 0 0px var(--gray6), 4px 0px 0 0px var(--gray6), 5px 0px 0 0px var(--gray6), 6px 0px 0 0px var(--gray6), 7px 0px 0 0px var(--gray6), 1px 1px 0 0px var(--gray6), 2px 1px 0 0px var(--gray6), 3px 1px 0 0px var(--gray6), 4px 1px 0 0px var(--gray6), 5px 1px 0 0px var(--gray6), 6px 1px 0 0px var(--gray6), 7px 1px 0 0px var(--gray6);
          box-shadow: 1px 0px 0 0px var(--gray6), 2px 0px 0 0px var(--gray6), 3px 0px 0 0px var(--gray6), 4px 0px 0 0px var(--gray6), 5px 0px 0 0px var(--gray6), 6px 0px 0 0px var(--gray6), 7px 0px 0 0px var(--gray6), 1px 1px 0 0px var(--gray6), 2px 1px 0 0px var(--gray6), 3px 1px 0 0px var(--gray6), 4px 1px 0 0px var(--gray6), 5px 1px 0 0px var(--gray6), 6px 1px 0 0px var(--gray6), 7px 1px 0 0px var(--gray6);
}

.scroll-table.need-border .simplebar-mask::before,
.scroll-table.need-border .simplebar-mask::after {
  content: "";
  display: block;
  width: 8px;
  height: calc(100% - 2px);
  position: absolute;
  top: 0px;
  left: 0px;
  border: 1px solid var(--gray4);
  z-index: 1;
  pointer-events: none;
}

.scroll-table.need-border .simplebar-mask::before {
  border-right-color: transparent;
  border-radius: 8px 0 0 8px;
  -webkit-box-shadow: -1px 0px 0 0px var(--gray6), -2px 0px 0 0px var(--gray6), -3px 0px 0 0px var(--gray6), -4px 0px 0 0px var(--gray6), -5px 0px 0 0px var(--gray6), -6px 0px 0 0px var(--gray6), -7px 0px 0 0px var(--gray6), -1px 1px 0 0px var(--gray6), -2px 1px 0 0px var(--gray6), -3px 1px 0 0px var(--gray6), -4px 1px 0 0px var(--gray6), -5px 1px 0 0px var(--gray6), -6px 1px 0 0px var(--gray6), -7px 1px 0 0px var(--gray6);
          box-shadow: -1px 0px 0 0px var(--gray6), -2px 0px 0 0px var(--gray6), -3px 0px 0 0px var(--gray6), -4px 0px 0 0px var(--gray6), -5px 0px 0 0px var(--gray6), -6px 0px 0 0px var(--gray6), -7px 0px 0 0px var(--gray6), -1px 1px 0 0px var(--gray6), -2px 1px 0 0px var(--gray6), -3px 1px 0 0px var(--gray6), -4px 1px 0 0px var(--gray6), -5px 1px 0 0px var(--gray6), -6px 1px 0 0px var(--gray6), -7px 1px 0 0px var(--gray6);
}

.scroll-table.need-border .simplebar-mask::after {
  border-left-color: transparent;
  left: auto;
  right: 0px;
  border-radius: 0 8px 8px 0;
  -webkit-box-shadow: 1px 0px 0 0px var(--gray6), 2px 0px 0 0px var(--gray6), 3px 0px 0 0px var(--gray6), 4px 0px 0 0px var(--gray6), 5px 0px 0 0px var(--gray6), 6px 0px 0 0px var(--gray6), 7px 0px 0 0px var(--gray6), 1px 1px 0 0px var(--gray6), 2px 1px 0 0px var(--gray6), 3px 1px 0 0px var(--gray6), 4px 1px 0 0px var(--gray6), 5px 1px 0 0px var(--gray6), 6px 1px 0 0px var(--gray6), 7px 1px 0 0px var(--gray6);
          box-shadow: 1px 0px 0 0px var(--gray6), 2px 0px 0 0px var(--gray6), 3px 0px 0 0px var(--gray6), 4px 0px 0 0px var(--gray6), 5px 0px 0 0px var(--gray6), 6px 0px 0 0px var(--gray6), 7px 0px 0 0px var(--gray6), 1px 1px 0 0px var(--gray6), 2px 1px 0 0px var(--gray6), 3px 1px 0 0px var(--gray6), 4px 1px 0 0px var(--gray6), 5px 1px 0 0px var(--gray6), 6px 1px 0 0px var(--gray6), 7px 1px 0 0px var(--gray6);
}

.scroll-table.scroll-table--clear .simplebar-mask::before,
.scroll-table.scroll-table--clear .simplebar-mask::after {
  border-color: transparent !important;
}

.scroll-table .simplebar-track {
  top: 110px;
  bottom: auto;
  background: var(--gray4);
}

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

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

.scroll-table .simplebar-track.simplebar-horizontal .simplebar-scrollbar::before {
  left: 0;
  right: 0;
  height: 6px !important;
  border-radius: 3px;
  z-index: 1;
  opacity: 1;
  background: var(--brend);
}

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

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

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

.button {
  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;
  gap: 8px;
  padding: 16px 32px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  text-align: center;
  border-radius: 16px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
  background: var(--brend);
  color: var(--white);
}

.button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(240, 240, 240, 0.2);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.button:hover::before {
  top: 0%;
}

.button span {
  position: relative;
  z-index: 1;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

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

.button--small {
  padding: 7px 15px;
  font-size: 12px;
  letter-spacing: 0.6px;
  border-radius: 12px;
}

.button--middle {
  padding: 8px 36px;
  font-size: 18px;
  letter-spacing: 0.9px;
  border-radius: 16px;
}

.button--border {
  background: none;
  -webkit-box-shadow: inset 0 0 0 1px var(--brend);
          box-shadow: inset 0 0 0 1px var(--brend);
  color: var(--brend);
}

.button--border::before {
  background: var(--brend);
}

.button--border:hover {
  background: transparent;
  color: var(--white);
}

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

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

.button--border.color--white:hover {
  background: transparent;
  color: var(--brend);
}

.button.background--black {
  background: var(--black);
}

.circle-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}

.circle-button:hover {
  background: var(--red);
}

.circle-button--border {
  background: none;
  -webkit-box-shadow: inset 0 0 0 2px var(--red);
          box-shadow: inset 0 0 0 2px var(--red);
}

.circle-button--border:hover {
  background: var(--red);
}

.circle-button svg,
.circle-button img {
  max-width: 100%;
  max-height: 100%;
}

.svg__ico {
  width: 22px;
  height: 22px;
  line-height: 0;
}

.square-button {
  display: inline-block;
  width: 64px;
  height: 64px;
  border: 1px solid var(--gray3);
  background: #303030;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
}

.square-button:hover {
  background: var(--gray2);
  border-color: var(--gray2);
}

.social {
  gap: 8px;
}

/* Пагинация */

.pagination {
  margin-top: 48px;
  gap: 28px;
  width: 100%;
}

.pagination-arrow {
  width: 48px;
  height: 48px;
  background: var(--brend);
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-radius: 8px;
}

.pagination-arrow:hover {
  background: var(--brend2);
}

.pagination__curent {
  width: 66px;
  height: 48px;
  background: var(--gray5);
  color: var(--gray3);
  pointer-events: none;
  border-radius: 8px;
}

.ico-link {
  text-decoration: none;
  gap: 8px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.ico-link:hover {
  color: var(--brend2);
}

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

.video__wrapper video {
  width: 100%;
}

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

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

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

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

.spoiler {
  border-top: 1px solid var(--gray4);
  position: relative;
}

.spoiler::before {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background: var(--brend);
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.spoiler.open::before {
  width: 100%;
}

.spoiler.open .spoiler-name::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.spoiler-name {
  cursor: pointer;
  padding: 32px 86px 48px 0px;
  position: relative;
}

.spoiler-name p {
  margin: 0;
}

.spoiler-name::after {
  content: "";
  display: block;
  position: absolute;
  top: 24px;
  right: 0px;
  width: 54px;
  height: 54px;
  background: url(../img/icons/spoiler.svg) center center/contain no-repeat;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  pointer-events: none;
}

.spoiler-content {
  display: none;
  padding-bottom: 48px;
}

.event-application {
  border: 1px solid rgba(240, 240, 240, 0.2);
  background: rgba(240, 240, 240, 0.8);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.aside-item {
  position: relative;
  z-index: 3;
  padding: 64px;
  border-radius: 8px;
}

.aside-item:nth-child(2) {
  z-index: 2;
}

.aside-item:nth-child(3) {
  z-index: 3;
}

.aside-item--stick {
  position: sticky;
  top: 176px;
}

.inform-block {
  gap: 24px;
}

.inform-block a {
  text-decoration: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.inform-block a:hover {
  color: var(--brend2);
}

main section {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 64px;
}

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

.big-cards {
  display: -ms-grid;
  display: grid;
  gap: 64px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  margin-bottom: 64px;
}

.big-cards:last-child {
  margin-bottom: 0;
}

.big-cards .card--big {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.full-cards {
  gap: 64px;
  margin-top: 48px;
}

.full-cards .card {
  width: 100%;
}

.card {
  position: relative;
  padding: 32px;
  border-radius: 12px;
  gap: 24px;
  text-decoration: none;
}

.card:hover .card__title {
  color: var(--brend);
}

.card:hover .card__image .fit-image {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.card--big {
  gap: 40px;
}

.card--big .card__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  min-height: 510px;
}

.card--big .card__title {
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

.card__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 36px;
}

.card--has-price {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 24px auto 24px auto 24px auto;
      grid-template-areas: "A A" "B C" "D D" "E F";
  -ms-grid-columns: auto 24px 36%;
  grid-template-columns: auto 36%;
  gap: 24px;
}

.card--has-price .card__image {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: A;
}

.card--has-price .card__title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: B;
}

.card--has-price .card__price {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: C;
  text-align: right;
}

.card--has-price .card__info {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: D;
}

.card--has-price .card__description {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
  grid-area: E;
}

.card--has-price .card__buttons {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
  grid-area: F;
  position: relative;
  z-index: 2;
  gap: 8px;
}

.card__image {
  width: 100%;
  height: 290px;
  border-radius: 4px;
  overflow: hidden;
}

.card__image .fit-image {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.card__info {
  gap: 8px;
}

.card__tags {
  gap: 8px;
}

.card__tag {
  padding: 3px 12px;
  border-radius: 4px;
  letter-spacing: 0.8px;
}

.card__title {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
}

.image-section {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  color: var(--white);
}

.image-section__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image-section__image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  background: rgba(41, 41, 42, 0.6);
}

.image-section__content {
  position: relative;
  z-index: 2;
}

.virt {
  gap: 64px;
}

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

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

.virt__title {
  margin: 0;
}

.virt__buttons {
  gap: 8px;
  padding-top: 24px;
}

.plit-params {
  width: 100%;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  gap: 4px;
}

.plit-param {
  min-height: 250px;
  border-radius: 18px;
  padding: 8px 32px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.plit-param--324 {
  -webkit-box-flex: 324px;
      -ms-flex: 324px;
          flex: 324px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.plit-param--334 {
  -webkit-box-flex: 334px;
      -ms-flex: 334px;
          flex: 334px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.center-text-block {
  margin: 0 auto 64px;
  max-width: 900px;
}

.max-link {
  position: absolute;
  left: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.mozaik-gap {
  gap: 24px;
}

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

.halfs-block {
  gap: 64px;
}

.halfs-block__half {
  width: calc(50% - 32px);
}

.slider-arrow {
  position: relative;
  cursor: pointer;
}

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

.media-tags {
  margin-bottom: 64px;
  height: 42px;
}

.media-tags__list {
  overflow: auto;
  gap: 16px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 60px;
}

.media-tag {
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.media-tag--active::before {
  top: 0%;
}

footer {
  padding: 64px 0 32px;
}

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

footer a:hover {
  -webkit-text-decoration-color: inherit;
          text-decoration-color: inherit;
}

.footer__top {
  margin-bottom: 48px;
}

.footer__buttons {
  gap: 8px;
  margin: 64px 0;
}

.footer__links {
  gap: 18px;
}

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

.footer__contacts {
  gap: 16px;
}

.footer__address {
  margin-bottom: 32px;
}

.footer-map {
  height: 205px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.footer-map::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  background: var(--zero);
  opacity: 0.2;
  pointer-events: none;
}

.to-top {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  gap: 16px;
  cursor: pointer;
}

.to-top:hover {
  color: var(--white);
}

.form__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}

.form__row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
}

.form__label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.form__label.w100 {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}

.form__input,
.form__textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--gray2);
  border-radius: 8px;
  padding: 18px 13px 5px;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--black);
  outline: none !important;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
}

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

.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

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

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

.form__input::placeholder,
.form__textarea::placeholder {
  color: inherit;
  opacity: 1;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--brend);
}

.form__input.error,
.form__textarea.error {
  border-color: var(--red);
  color: var(--red);
}

.form__input:-moz-read-only, .form__textarea:-moz-read-only {
  border-color: var(--gray4) !important;
  color: var(--gray4);
}

.form__input:read-only,
.form__textarea:read-only {
  border-color: var(--gray4) !important;
  color: var(--gray4);
}

.form__input:-moz-read-only ~ .form__placeholder, .form__textarea:-moz-read-only ~ .form__placeholder {
  color: var(--gray4);
}

.form__input:read-only ~ .form__placeholder,
.form__textarea:read-only ~ .form__placeholder {
  color: var(--gray4);
}

.form__textarea {
  min-height: 200px;
}

.form__placeholder {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 11;
  color: var(--black);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  pointer-events: none;
  width: calc(100% - 48px);
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.filled-forever .form__placeholder,
.filled .form__placeholder,
label:focus-within .form__placeholder,
.changed ~ .form__placeholder {
  top: 5px;
  font-size: 12px;
  color: var(--gray3);
}

label.error {
  display: none !important;
}

.jq-selectbox {
  width: 100%;
}

.jq-selectbox.opened {
  z-index: 12 !important;
}

.jq-selectbox.opened ~ .form__placeholder {
  z-index: 13;
}

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

.jq-selectbox__select {
  z-index: 1;
  border: 1px solid var(--border);
  background: var(--gray2);
  border-radius: 8px;
  padding: 18px 13px 5px;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--black);
  outline: none !important;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
  min-height: 47px;
}

select.error ~ .jq-selectbox__select {
  border-color: var(--red);
}

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

.jq-selectbox__trigger {
  width: 14px;
  height: 14px;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.jq-selectbox__trigger::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: url("../img/icons/select.svg") center center/contain no-repeat;
}

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

.jq-selectbox__dropdown {
  padding: 0;
  border: 1px solid var(--border);
  background: var(--gray2);
  color: var(--black);
  border-radius: 8px;
  min-width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-top: 8px;
}

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

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

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

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

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

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

.form__input--date {
  background: var(--gray2) calc(100% - 16px) center/auto 14px no-repeat;
  background-image: url(../img/icons/datepicker.svg);
  padding-right: 48px;
}

/* Календарь */

.datepicker {
  border: none !important;
  border-radius: 4px !important;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1) !important;
  font-family: "Manrope";
  font-weight: 400;
  color: var(--black);
  background: var(--gray2);
  font-size: 16px !important;
  line-height: 140%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 356px;
  padding: 0 20px 11px;
}

.datepicker--nav {
  padding: 0 20px;
  border: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 56px;
  position: relative;
  width: calc(100% + 40px);
  margin-left: -20px;
  border-bottom: 1px solid var(--gray4);
  margin-bottom: 10px;
}

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

.datepicker--nav-title {
  color: var(--black);
  font-family: "Manrope";
  font-weight: 500;
  margin: 0 auto;
  font-size: 20px;
  line-height: 130%;
}

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

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

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

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

.datepicker--pointer {
  display: none;
}

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

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

.datepicker--day-name {
  font-size: 100%;
  color: var(--gray3);
  font-weight: 600;
  padding: 11px 0;
  font-size: 18px;
  font-weight: 500;
}

/* Ячейки календаря */

.datepicker--cell {
  border-radius: 0px !important;
  height: 45px;
  font-weight: 500;
  color: var(--black);
  border-radius: 8px !important;
}

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

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

.datepicker--cell.-current- {
  color: var(--black);
  border: 1px solid var(--brend);
}

.datepicker--cell.-current-.-focus- {
  border: 1px solid var(--brend);
  color: var(--white);
}

.datepicker--cell.-current-.-in-range- {
  border: 1px solid var(--brend);
}

.datepicker--cell.-focus- {
  background: var(--brend);
  border: 1px solid var(--brend);
  color: var(--white);
}

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

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

.datepicker--cell.-in-range- {
  background: var(--brend);
  color: var(--white);
}

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

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

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

.datepicker--cell-event {
  color: var(--brend);
}

.datepicker--cell.-other-month-.datepicker--cell-event {
  color: var(--brend);
}

.datepicker--cell.-other-month-.datepicker--cell-event.-focus- {
  color: var(--white);
}

.datepicker--cell.-other-month-.datepicker--cell-event.datepicker--cell.-selected- {
  background: var(--brend);
  color: var(--white);
}

.datepicker--cell.-disabled- {
  background: none !important;
  border: none !important;
}

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

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

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

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

.file__item {
  margin-top: 24px;
}

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

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

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

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

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

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

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

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

.form__success {
  display: none;
}

.form__errors {
  display: none;
}

.checkbox-label,
.radio-label {
  gap: 8px;
  position: relative;
}

.checkbox-label input,
.radio-label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}

.checkbox-label input:checked ~ .checkbox-label__ico,
.radio-label input:checked ~ .checkbox-label__ico {
  -webkit-box-shadow: inset 0 0 0 1px var(--brend);
          box-shadow: inset 0 0 0 1px var(--brend);
  background: var(--brend);
}

.checkbox-label input:checked ~ .checkbox-label__ico--on-blue,
.radio-label input:checked ~ .checkbox-label__ico--on-blue {
  -webkit-box-shadow: inset 0 0 0 1px transparent;
          box-shadow: inset 0 0 0 1px transparent;
  background: var(--white);
}

.checkbox-label input:checked ~ .radio-label__ico,
.radio-label input:checked ~ .radio-label__ico {
  -webkit-box-shadow: inset 0 0 0 4px var(--brend);
          box-shadow: inset 0 0 0 4px var(--brend);
}

.checkbox-label input.error ~ .checkbox-label__ico,
.checkbox-label input.error ~ .radio-label__ico,
.radio-label input.error ~ .checkbox-label__ico,
.radio-label input.error ~ .radio-label__ico {
  -webkit-box-shadow: inset 0 0 0 1px var(--red);
          box-shadow: inset 0 0 0 1px var(--red);
}

.checkbox-label__ico,
.radio-label__ico {
  width: 18px;
  height: 18px;
  background: var(--white);
  -webkit-box-shadow: inset 0 0 0 1px var(--gray4);
          box-shadow: inset 0 0 0 1px var(--gray4);
  border-radius: 4px;
  position: relative;
  top: 4px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.checkbox-label__ico:hover,
.radio-label__ico:hover {
  -webkit-box-shadow: inset 0 0 0 1px var(--brend);
          box-shadow: inset 0 0 0 1px var(--brend);
}

.checkbox-label__ico::before,
.radio-label__ico::before {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -65%) rotate(45deg);
      -ms-transform: translate(-50%, -65%) rotate(45deg);
          transform: translate(-50%, -65%) rotate(45deg);
  border-bottom: 1px solid var(--white);
  border-right: 1px solid var(--white);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.checkbox-label__ico--on-blue,
.radio-label__ico--on-blue {
  background: var(--brend);
  -webkit-box-shadow: inset 0 0 0 1px var(--white);
          box-shadow: inset 0 0 0 1px var(--white);
}

.checkbox-label__ico--on-blue::before,
.radio-label__ico--on-blue::before {
  border-color: var(--brend);
}

.radio-label__ico {
  border-radius: 50%;
}

.radio-label__ico::before {
  display: none;
}

.checkbox-label__text,
.radio-label__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.form__checks {
  gap: 48px;
}

.form__checks .checkbox-label,
.form__checks .radio-label {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.mt-64 {
  margin-top: 64px;
}

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

@media (max-width: 1732px) {
  .col--1 {
    width: calc((((100vw - (50px * 2)) + 64px) / 12 * 1) - 64px + 0px);
  }

  .col--2 {
    width: calc((((100vw - (50px * 2)) + 64px) / 12 * 2) - 64px + 0px);
  }

  .col--3 {
    width: calc((((100vw - (50px * 2)) + 64px) / 12 * 3) - 64px + 0px);
  }

  .col--4 {
    width: calc((((100vw - (50px * 2)) + 64px) / 12 * 4) - 64px + 0px);
  }

  .col--5 {
    width: calc((((100vw - (50px * 2)) + 64px) / 12 * 5) - 64px + 0px);
  }

  .col--6 {
    width: calc((((100vw - (50px * 2)) + 64px) / 12 * 6) - 64px + 0px);
  }

  .col--7 {
    width: calc((((100vw - (50px * 2)) + 64px) / 12 * 7) - 64px + 0px);
  }

  .col--8 {
    width: calc((((100vw - (50px * 2)) + 64px) / 12 * 8) - 64px + 0px);
  }

  .col--9 {
    width: calc((((100vw - (50px * 2)) + 64px) / 12 * 9) - 64px + 0px);
  }

  .col--10 {
    width: calc((((100vw - (50px * 2)) + 64px) / 12 * 10) - 64px + 0px);
  }

  .col--11 {
    width: calc((((100vw - (50px * 2)) + 64px) / 12 * 11) - 64px + 0px);
  }

  .col--12 {
    width: calc((((100vw - (50px * 2)) + 64px) / 12 * 12) - 64px + 0px);
  }

  .page-block__text.col--7 .full-screen {
    margin-left: -50px;
  }

  .sites__list {
    margin-left: 50px;
  }
}

@media (max-width: 1500px) {
  .page-block__aside {
    width: calc((100vw - 100px + 64px) / 12 * 5 - 64px);
  }

  .aside-item {
    padding: 48px;
  }
}

@media (max-width: 1400px) {
  .plit-param--324 {
    -webkit-box-flex: 208px;
        -ms-flex: 208px;
            flex: 208px;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}

@media (max-width: 1280px) {
  .big-cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .big-cards .card--big {
    grid-column: unset;
  }
}

@media (max-width: 1023px) {
  .page main {
    padding-bottom: 64px;
  }

  .col--1 {
    width: 100%;
  }

  .col--2 {
    width: 100%;
  }

  .col--3 {
    width: 100%;
  }

  .col--4 {
    width: 100%;
  }

  .col--5 {
    width: 100%;
  }

  .col--6 {
    width: 100%;
  }

  .col--7 {
    width: 100%;
  }

  .col--8 {
    width: 100%;
  }

  .col--9 {
    width: 100%;
  }

  .col--10 {
    width: 100%;
  }

  .col--11 {
    width: 100%;
  }

  .col--12 {
    width: 100%;
  }

  .pda-width--full {
    width: 100%;
  }

  .page-block {
    gap: 48px;
  }

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

  .brend-block--content {
    background-position: 50% calc(100% + 120px);
  }

  .brend-block__text {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }

  .brend-block__buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }

  .search-block {
    padding-top: 48px;
  }

  .search-block__list {
    max-height: calc(var(--vh, 1vh) * 100 - 308px);
  }

  .page-intro {
    padding-top: 24px;
  }

  .page-intro:not([style="--image: url('');"]) {
    padding-bottom: 90px;
  }

  .page-intro:not([style="--image: url('');"])::before {
    width: 100%;
    opacity: 0.4;
    background: var(--image) center center/cover no-repeat;
  }

  .page-intro:not([style="--image: url('');"]) + .container .page-block__text {
    padding-top: 0;
  }

  .page-intro:not([style="--image: url('');"]) + .container .page-block__aside {
    margin-top: -48px;
  }

  .page-intro__content {
    gap: 24px;
  }

  .page-404 .page-intro {
    min-height: calc(var(--vh, 1vh) * 100 - 60px);
  }

  .page-404 .page-intro:not([style="--image: url('');"])::before {
    width: 340px;
    right: 0;
    mix-blend-mode: lighten;
    opacity: 1;
  }

  .page-404__buttons {
    margin-top: 32px;
  }

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

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

  .txt--28 {
    font-size: 22px;
  }

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

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

  h2 {
    margin: 48px 0 32px;
  }

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

  h3 {
    margin-top: 32px;
  }

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

  h4 {
    margin-top: 32px;
  }

  h4,
  h5 {
    margin-top: 32px;
  }

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

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

  .pagination {
    margin-top: 32px;
  }

  .spoiler-name::after {
    width: 50px;
    height: 50px;
  }

  .aside-item--stick {
    top: 0;
    position: relative;
  }

  main section {
    padding: 64px 0;
  }

  .big-cards {
    gap: 32px;
  }

  .full-cards {
    gap: 32px;
  }

  .card--big .card__image {
    min-height: unset;
    height: 290px;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }

  .card__text {
    gap: 24px;
  }

  .card__image {
    height: 218px;
  }

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

  .virt__buttons {
    padding-top: 0;
  }

  .plit-param {
    min-height: 200px;
  }

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

  .halfs-block {
    gap: 48px;
  }

  .halfs-block__half {
    width: 100%;
  }

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

  .footer__top {
    gap: 32px 0;
    margin-bottom: 32px;
  }

  .footer__col {
    width: calc(50% - 16px);
  }

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

@media (max-width: 640px) {
  body {
    font-size: 16px;
    line-height: 120%;
  }

  .page {
    padding-top: 60px;
  }

  .page::before {
    height: 60px;
  }

  .page main {
    padding-bottom: 24px;
  }

  .container {
    width: calc(100vw - 30px);
  }

  .pre-full-screen {
    width: calc(100vw - 10px);
    margin-left: -10px;
  }

  .page-block__text.col--7 .full-screen {
    margin-left: -15px;
  }

  .mobile-100 {
    width: 100%;
  }

  .page-block {
    gap: 24px;
  }

  .brend-block {
    padding: 24px 12px;
    background-position: calc(100% + 50px) -15px;
    background-size: 206px;
  }

  .brend-block--content {
    background-position: 50% calc(100% + 120px);
    background-size: unset;
  }

  .header__top {
    display: none;
  }

  .header__bottom {
    padding: 12px 0;
  }

  .search-block {
    padding-top: 24px;
  }

  .search-block__input {
    font-size: 16px;
  }

  .search-block__result {
    padding: 12px;
  }

  .search-block__list {
    max-height: calc(var(--vh, 1vh) * 100 - 272px);
  }

  .search-block__item {
    padding: 8px;
  }

  .search-block__item .svg__ico {
    display: none;
  }

  .search-block__item__contetn {
    gap: 8px;
  }

  a.header__logo {
    width: 171px;
  }

  .page-intro {
    padding-bottom: 32px;
  }

  .page-intro:not([style="--image: url('');"]) {
    padding-bottom: 116px;
  }

  .page-intro:not([style="--image: url('');"]) + .container .page-block__aside {
    margin-top: -80px;
  }

  .h1-block {
    gap: 48px;
  }

  .page-404 .page-intro:not([style="--image: url('');"])::before {
    width: 100%;
    opacity: 0.4;
    background: var(--image) center center/cover no-repeat;
  }

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

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

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

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

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

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

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

  h2 {
    margin-top: 32px;
  }

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

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

  .blockquote,
  .blockquote2,
  blockquote {
    padding-left: 0;
    padding-top: 48px;
  }

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

  main img[align=left] {
    margin-bottom: 24px;
  }

  main img[align=right] {
    margin-bottom: 24px;
  }

  .button {
    padding: 12px 24px;
  }

  .button--middle {
    font-size: 12px;
    letter-spacing: 0.6px;
    padding: 4px 12px;
  }

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

  .spoiler-name {
    padding: 22px 60px 34px 0px;
  }

  .spoiler-name::after {
    width: 44px;
    height: 44px;
    top: 12px;
  }

  .spoiler-content {
    padding-bottom: 34px;
  }

  .aside-item {
    padding: 12px;
  }

  .inform-block {
    gap: 18px;
  }

  main section {
    padding: 48px 0;
  }

  .section-title {
    margin-bottom: 24px;
  }

  .big-cards {
    margin-bottom: 24px;
  }

  .full-cards {
    gap: 24px;
    margin-top: 24px;
  }

  .card {
    gap: 16px;
    padding: 12px;
  }

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

  .card--big .card__image {
    height: 130px;
  }

  .card__text {
    gap: 16px;
  }

  .card--has-price {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
        grid-template-areas: "A" "B" "D" "E" "C" "F";
  }

  .card__image {
    height: 130px;
  }

  .virt {
    gap: 32px;
  }

  .virt__half--text {
    gap: 12px;
  }

  .plit-params {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
  }

  .plit-param {
    min-height: 120px;
    -webkit-box-flex: 100% !important;
        -ms-flex: 100% !important;
            flex: 100% !important;
  }

  .center-text-block {
    margin-bottom: 32px;
  }

  .halfs-block {
    gap: 32px;
  }

  .media-tags {
    margin-bottom: 32px;
    height: 25px;
  }

  .media-tags__list {
    height: 40px;
  }

  footer {
    padding: 24px 0;
    font-size: 14px;
  }

  .footer__top {
    gap: 24px;
    margin-bottom: 24px;
  }

  .footer__col {
    width: 100%;
  }

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

  .footer__buttons {
    margin: 24px 0;
  }

  .footer__menu {
    gap: 24px;
  }

  .footer__contacts {
    gap: 12px;
  }

  .footer__address {
    margin-bottom: 24px;
  }

  .footer-map {
    height: 154px;
  }

  .checkbox-label__ico,
  .radio-label__ico {
    width: 14px;
    height: 14px;
    top: 2px;
  }

  .form__checks {
    gap: 16px;
  }

  .form__checks .checkbox-label,
  .form__checks .radio-label {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }

  .mt-64 {
    margin-top: 32px;
  }

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

  .card--has-price .card__image {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  .card--has-price .card__title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }

  .card--has-price .card__price {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }

  .card--has-price .card__info {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  .card--has-price .card__description {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }

  .card--has-price .card__buttons {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
  }
}

.cookie {
  border-radius: 18px;  
}
.cookie__buttons .btn {
  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;
  gap: 8px;
  padding: 8px 36px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  text-align: center;
  border-radius: 16px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
  background: var(--brend);
  color: var(--white);
}
.cookie__buttons .btn.cookie__show-close {
  background-color: transparent;
  color: var(--brend) !important;
  border: 1px solid var(--brend);
}
.cookie__buttons .btn.cookie__show-close:hover {
  background-color: var(--brend);
  color: var(--white) !important;
}
.cookie__buttons .btn.cookie__confurm {
  border: 1px solid var(--brend) !important;
}
.cookie__buttons .btn.cookie__confurm:hover {
  background-color: transparent;
  color: var(--brend);
}

@media (max-width: 640px) {
  .cookie__buttons .btn {
    padding: 4px 12px;
  }
}
.grecaptcha-badge {
  width: 1px !important;
  height: 1px !important;
}