@charset "UTF-8";

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

/*Миксины*/

:root {
  --zero: #000;
  --white: #fff;
  --text: #273253;
  --text2: #4B6781;
  --textHover: #4b5674;
  --element: #CE2D55;
  --elementHover: #d05275;
  --element2: #229ED9;
  --element2Hover: #47acde;
  --element3: #075E54;
  --element3Hover: #317974;
  --background: #F4F9FF;
  --backgroundLight: #F4F9FF;
  --border: #D9E5F3;
  --hover: rgba(217, 229, 243, 0.20);
  --medium: #98B1CE;
}

* {
  -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: "Golos Text";
  font-weight: 400;
  color: var(--text);
  background: var(--backgroundLight);
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.32px;
  width: 100%;
  overflow: hidden auto;
  padding-top: 104px;
}

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

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

/* Флекс */

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

.pos--relative {
  position: relative;
}

.pos--absolute {
  position: absolute;
}

/* Цвета */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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--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--text2:hover path[fill],
.svg-hover--text2:hover circle[fill],
.svg-hover--text2:hover rect[fill] {
  fill: var(--text2);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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--backgroundLight:hover path[fill],
.svg-hover--backgroundLight:hover circle[fill],
.svg-hover--backgroundLight:hover rect[fill] {
  fill: var(--backgroundLight);
}

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

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

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

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

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

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

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

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 24px 0;
  background: rgba(244, 249, 255, 0.2);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.header .button {
  height: 56px;
}

.logo {
  position: relative;
  display: block;
  line-height: 0;
}

.logo img {
  height: 52px;
}

.logo img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.logo:hover img:last-child {
  opacity: 1;
}

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

.menu {
  gap: 8px;
}

.menu .button {
  -webkit-box-shadow: 0 8px 16px -8px rgba(160, 189, 221, 0.15);
          box-shadow: 0 8px 16px -8px rgba(160, 189, 221, 0.15);
}

.top-zayav-button {
  margin-left: 48px;
}

.header__background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 468px;
  border-radius: 0px 0px 64px 64px;
  overflow: hidden;
}

.header__animation-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[10];
  grid-template-columns: repeat(10, 1fr);
  -ms-grid-rows: (1fr)[6];
  grid-template-rows: repeat(6, 1fr);
  gap: 32px;
  position: absolute;
  top: 32px;
  left: 16px;
  width: 1904px;
  height: 404px;
  min-width: 100vw;
}

.header__animation-list::before {
  content: "";
  display: block;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  position: absolute;
  left: -85px;
  bottom: -85%;
  z-index: 1;
  background: var(--backgroundLight);
  -webkit-filter: blur(800px);
          filter: blur(800px);
}

.header__background .header__animation-list::before {
  bottom: -125%;
}

.background--background .header__animation-list::before {
  background: var(--background);
}

.background--white .header__animation-list::before {
  background: var(--white);
}

.header__animate-wrapper {
  opacity: 0.2;
}

.header__animate-wrapper:nth-child(10) ~ .header__animate-wrapper {
  opacity: 0.4;
}

.header__animate-wrapper:nth-child(20) ~ .header__animate-wrapper {
  opacity: 0.5;
}

.header__animate-wrapper:nth-child(30) ~ .header__animate-wrapper {
  opacity: 0.6;
}

.header__animate-wrapper:nth-child(40) ~ .header__animate-wrapper {
  opacity: 0.4;
}

.header__animate-wrapper:nth-child(50) ~ .header__animate-wrapper {
  opacity: 0.2;
}

.header__animate-wrapper:nth-child(10n-9) .header__animate {
  opacity: 0.5;
}

.header__animate-wrapper:nth-child(10n-7) .header__animate {
  opacity: 0.7;
}

.header__animate-wrapper:nth-child(10n-5) .header__animate {
  opacity: 0.8;
}

.header__animate-wrapper:nth-child(10n-3) .header__animate {
  opacity: 1;
}

.header__animate {
  width: 24px;
  height: 24px;
  position: relative;
}

.header__animate::before,
.header__animate::after {
  content: "";
  display: block;
  width: 50%;
  height: 50%;
  position: absolute;
  background: var(--border);
}

.header__animate::after {
  -webkit-transform: translate(100%, 100%);
      -ms-transform: translate(100%, 100%);
          transform: translate(100%, 100%);
}

.header__animate::before {
  -webkit-animation: square1 6s infinite linear;
          animation: square1 6s infinite linear;
}

.header__animate::after {
  -webkit-animation: square2 6s infinite linear;
          animation: square2 6s infinite linear;
}

.header__animate-wrapper:nth-child(1) .header__animate::before,
.header__animate-wrapper:nth-child(1) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 1 * -1);
          animation-delay: calc(0.2s * 1 * -1);
}

.header__animate-wrapper:nth-child(2) .header__animate::before,
.header__animate-wrapper:nth-child(2) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 2 * -1);
          animation-delay: calc(0.2s * 2 * -1);
}

.header__animate-wrapper:nth-child(3) .header__animate::before,
.header__animate-wrapper:nth-child(3) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 3 * -1);
          animation-delay: calc(0.2s * 3 * -1);
}

.header__animate-wrapper:nth-child(4) .header__animate::before,
.header__animate-wrapper:nth-child(4) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 4 * -1);
          animation-delay: calc(0.2s * 4 * -1);
}

.header__animate-wrapper:nth-child(5) .header__animate::before,
.header__animate-wrapper:nth-child(5) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 5 * -1);
          animation-delay: calc(0.2s * 5 * -1);
}

.header__animate-wrapper:nth-child(6) .header__animate::before,
.header__animate-wrapper:nth-child(6) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 6 * -1);
          animation-delay: calc(0.2s * 6 * -1);
}

.header__animate-wrapper:nth-child(7) .header__animate::before,
.header__animate-wrapper:nth-child(7) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 7 * -1);
          animation-delay: calc(0.2s * 7 * -1);
}

.header__animate-wrapper:nth-child(8) .header__animate::before,
.header__animate-wrapper:nth-child(8) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 8 * -1);
          animation-delay: calc(0.2s * 8 * -1);
}

.header__animate-wrapper:nth-child(9) .header__animate::before,
.header__animate-wrapper:nth-child(9) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 9 * -1);
          animation-delay: calc(0.2s * 9 * -1);
}

.header__animate-wrapper:nth-child(10) .header__animate::before,
.header__animate-wrapper:nth-child(10) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 10 * -1);
          animation-delay: calc(0.2s * 10 * -1);
}

.header__animate-wrapper:nth-child(11) .header__animate::before,
.header__animate-wrapper:nth-child(11) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 11 * -1);
          animation-delay: calc(0.2s * 11 * -1);
}

.header__animate-wrapper:nth-child(12) .header__animate::before,
.header__animate-wrapper:nth-child(12) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 12 * -1);
          animation-delay: calc(0.2s * 12 * -1);
}

.header__animate-wrapper:nth-child(13) .header__animate::before,
.header__animate-wrapper:nth-child(13) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 13 * -1);
          animation-delay: calc(0.2s * 13 * -1);
}

.header__animate-wrapper:nth-child(14) .header__animate::before,
.header__animate-wrapper:nth-child(14) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 14 * -1);
          animation-delay: calc(0.2s * 14 * -1);
}

.header__animate-wrapper:nth-child(15) .header__animate::before,
.header__animate-wrapper:nth-child(15) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 15 * -1);
          animation-delay: calc(0.2s * 15 * -1);
}

.header__animate-wrapper:nth-child(16) .header__animate::before,
.header__animate-wrapper:nth-child(16) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 16 * -1);
          animation-delay: calc(0.2s * 16 * -1);
}

.header__animate-wrapper:nth-child(17) .header__animate::before,
.header__animate-wrapper:nth-child(17) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 17 * -1);
          animation-delay: calc(0.2s * 17 * -1);
}

.header__animate-wrapper:nth-child(18) .header__animate::before,
.header__animate-wrapper:nth-child(18) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 18 * -1);
          animation-delay: calc(0.2s * 18 * -1);
}

.header__animate-wrapper:nth-child(19) .header__animate::before,
.header__animate-wrapper:nth-child(19) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 19 * -1);
          animation-delay: calc(0.2s * 19 * -1);
}

.header__animate-wrapper:nth-child(20) .header__animate::before,
.header__animate-wrapper:nth-child(20) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 20 * -1);
          animation-delay: calc(0.2s * 20 * -1);
}

.header__animate-wrapper:nth-child(21) .header__animate::before,
.header__animate-wrapper:nth-child(21) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 21 * -1);
          animation-delay: calc(0.2s * 21 * -1);
}

.header__animate-wrapper:nth-child(22) .header__animate::before,
.header__animate-wrapper:nth-child(22) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 22 * -1);
          animation-delay: calc(0.2s * 22 * -1);
}

.header__animate-wrapper:nth-child(23) .header__animate::before,
.header__animate-wrapper:nth-child(23) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 23 * -1);
          animation-delay: calc(0.2s * 23 * -1);
}

.header__animate-wrapper:nth-child(24) .header__animate::before,
.header__animate-wrapper:nth-child(24) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 24 * -1);
          animation-delay: calc(0.2s * 24 * -1);
}

.header__animate-wrapper:nth-child(25) .header__animate::before,
.header__animate-wrapper:nth-child(25) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 25 * -1);
          animation-delay: calc(0.2s * 25 * -1);
}

.header__animate-wrapper:nth-child(26) .header__animate::before,
.header__animate-wrapper:nth-child(26) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 26 * -1);
          animation-delay: calc(0.2s * 26 * -1);
}

.header__animate-wrapper:nth-child(27) .header__animate::before,
.header__animate-wrapper:nth-child(27) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 27 * -1);
          animation-delay: calc(0.2s * 27 * -1);
}

.header__animate-wrapper:nth-child(28) .header__animate::before,
.header__animate-wrapper:nth-child(28) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 28 * -1);
          animation-delay: calc(0.2s * 28 * -1);
}

.header__animate-wrapper:nth-child(29) .header__animate::before,
.header__animate-wrapper:nth-child(29) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 29 * -1);
          animation-delay: calc(0.2s * 29 * -1);
}

.header__animate-wrapper:nth-child(30) .header__animate::before,
.header__animate-wrapper:nth-child(30) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 30 * -1);
          animation-delay: calc(0.2s * 30 * -1);
}

.header__animate-wrapper:nth-child(31) .header__animate::before,
.header__animate-wrapper:nth-child(31) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 31 * -1);
          animation-delay: calc(0.2s * 31 * -1);
}

.header__animate-wrapper:nth-child(32) .header__animate::before,
.header__animate-wrapper:nth-child(32) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 32 * -1);
          animation-delay: calc(0.2s * 32 * -1);
}

.header__animate-wrapper:nth-child(33) .header__animate::before,
.header__animate-wrapper:nth-child(33) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 33 * -1);
          animation-delay: calc(0.2s * 33 * -1);
}

.header__animate-wrapper:nth-child(34) .header__animate::before,
.header__animate-wrapper:nth-child(34) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 34 * -1);
          animation-delay: calc(0.2s * 34 * -1);
}

.header__animate-wrapper:nth-child(35) .header__animate::before,
.header__animate-wrapper:nth-child(35) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 35 * -1);
          animation-delay: calc(0.2s * 35 * -1);
}

.header__animate-wrapper:nth-child(36) .header__animate::before,
.header__animate-wrapper:nth-child(36) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 36 * -1);
          animation-delay: calc(0.2s * 36 * -1);
}

.header__animate-wrapper:nth-child(37) .header__animate::before,
.header__animate-wrapper:nth-child(37) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 37 * -1);
          animation-delay: calc(0.2s * 37 * -1);
}

.header__animate-wrapper:nth-child(38) .header__animate::before,
.header__animate-wrapper:nth-child(38) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 38 * -1);
          animation-delay: calc(0.2s * 38 * -1);
}

.header__animate-wrapper:nth-child(39) .header__animate::before,
.header__animate-wrapper:nth-child(39) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 39 * -1);
          animation-delay: calc(0.2s * 39 * -1);
}

.header__animate-wrapper:nth-child(40) .header__animate::before,
.header__animate-wrapper:nth-child(40) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 40 * -1);
          animation-delay: calc(0.2s * 40 * -1);
}

.header__animate-wrapper:nth-child(41) .header__animate::before,
.header__animate-wrapper:nth-child(41) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 41 * -1);
          animation-delay: calc(0.2s * 41 * -1);
}

.header__animate-wrapper:nth-child(42) .header__animate::before,
.header__animate-wrapper:nth-child(42) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 42 * -1);
          animation-delay: calc(0.2s * 42 * -1);
}

.header__animate-wrapper:nth-child(43) .header__animate::before,
.header__animate-wrapper:nth-child(43) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 43 * -1);
          animation-delay: calc(0.2s * 43 * -1);
}

.header__animate-wrapper:nth-child(44) .header__animate::before,
.header__animate-wrapper:nth-child(44) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 44 * -1);
          animation-delay: calc(0.2s * 44 * -1);
}

.header__animate-wrapper:nth-child(45) .header__animate::before,
.header__animate-wrapper:nth-child(45) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 45 * -1);
          animation-delay: calc(0.2s * 45 * -1);
}

.header__animate-wrapper:nth-child(46) .header__animate::before,
.header__animate-wrapper:nth-child(46) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 46 * -1);
          animation-delay: calc(0.2s * 46 * -1);
}

.header__animate-wrapper:nth-child(47) .header__animate::before,
.header__animate-wrapper:nth-child(47) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 47 * -1);
          animation-delay: calc(0.2s * 47 * -1);
}

.header__animate-wrapper:nth-child(48) .header__animate::before,
.header__animate-wrapper:nth-child(48) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 48 * -1);
          animation-delay: calc(0.2s * 48 * -1);
}

.header__animate-wrapper:nth-child(49) .header__animate::before,
.header__animate-wrapper:nth-child(49) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 49 * -1);
          animation-delay: calc(0.2s * 49 * -1);
}

.header__animate-wrapper:nth-child(50) .header__animate::before,
.header__animate-wrapper:nth-child(50) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 50 * -1);
          animation-delay: calc(0.2s * 50 * -1);
}

.header__animate-wrapper:nth-child(51) .header__animate::before,
.header__animate-wrapper:nth-child(51) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 51 * -1);
          animation-delay: calc(0.2s * 51 * -1);
}

.header__animate-wrapper:nth-child(52) .header__animate::before,
.header__animate-wrapper:nth-child(52) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 52 * -1);
          animation-delay: calc(0.2s * 52 * -1);
}

.header__animate-wrapper:nth-child(53) .header__animate::before,
.header__animate-wrapper:nth-child(53) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 53 * -1);
          animation-delay: calc(0.2s * 53 * -1);
}

.header__animate-wrapper:nth-child(54) .header__animate::before,
.header__animate-wrapper:nth-child(54) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 54 * -1);
          animation-delay: calc(0.2s * 54 * -1);
}

.header__animate-wrapper:nth-child(55) .header__animate::before,
.header__animate-wrapper:nth-child(55) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 55 * -1);
          animation-delay: calc(0.2s * 55 * -1);
}

.header__animate-wrapper:nth-child(56) .header__animate::before,
.header__animate-wrapper:nth-child(56) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 56 * -1);
          animation-delay: calc(0.2s * 56 * -1);
}

.header__animate-wrapper:nth-child(57) .header__animate::before,
.header__animate-wrapper:nth-child(57) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 57 * -1);
          animation-delay: calc(0.2s * 57 * -1);
}

.header__animate-wrapper:nth-child(58) .header__animate::before,
.header__animate-wrapper:nth-child(58) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 58 * -1);
          animation-delay: calc(0.2s * 58 * -1);
}

.header__animate-wrapper:nth-child(59) .header__animate::before,
.header__animate-wrapper:nth-child(59) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 59 * -1);
          animation-delay: calc(0.2s * 59 * -1);
}

.header__animate-wrapper:nth-child(60) .header__animate::before,
.header__animate-wrapper:nth-child(60) .header__animate::after {
  -webkit-animation-delay: calc(0.2s * 60 * -1);
          animation-delay: calc(0.2s * 60 * -1);
}

@-webkit-keyframes square1 {
  0% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }

  25% {
    -webkit-transform: translate(0%, 100%);
            transform: translate(0%, 100%);
  }

  50% {
    -webkit-transform: translate(100%, 100%);
            transform: translate(100%, 100%);
  }

  75% {
    -webkit-transform: translate(100%, 0%);
            transform: translate(100%, 0%);
  }

  100% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
}

@keyframes square1 {
  0% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }

  25% {
    -webkit-transform: translate(0%, 100%);
            transform: translate(0%, 100%);
  }

  50% {
    -webkit-transform: translate(100%, 100%);
            transform: translate(100%, 100%);
  }

  75% {
    -webkit-transform: translate(100%, 0%);
            transform: translate(100%, 0%);
  }

  100% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
}

@-webkit-keyframes square2 {
  0% {
    -webkit-transform: translate(100%, 100%);
            transform: translate(100%, 100%);
  }

  25% {
    -webkit-transform: translate(100%, 0%);
            transform: translate(100%, 0%);
  }

  50% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }

  75% {
    -webkit-transform: translate(0%, 100%);
            transform: translate(0%, 100%);
  }

  100% {
    -webkit-transform: translate(100%, 100%);
            transform: translate(100%, 100%);
  }
}

@keyframes square2 {
  0% {
    -webkit-transform: translate(100%, 100%);
            transform: translate(100%, 100%);
  }

  25% {
    -webkit-transform: translate(100%, 0%);
            transform: translate(100%, 0%);
  }

  50% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }

  75% {
    -webkit-transform: translate(0%, 100%);
            transform: translate(0%, 100%);
  }

  100% {
    -webkit-transform: translate(100%, 100%);
            transform: translate(100%, 100%);
  }
}

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

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

b,
strong {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--element);
}

.border-link {
  border-bottom: 1px solid var(--element);
  transition: .4s;
}
.border-link:hover {
  border-bottom-color: transparent;
}

img {
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

h1,
.h1 {
  position: relative;
  padding: 24px;
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.96px;
  margin-bottom: 12px;
  width: calc(100% + 24px);
}

h1::before,
h1::after,
.h1::before,
.h1::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 46px;
  background: url("../img/icons/for-title.svg") 0 0/contain no-repeat;
  position: absolute;
}

h1::before,
.h1::before {
  -webkit-transform: translate(-24px, -14px);
      -ms-transform: translate(-24px, -14px);
          transform: translate(-24px, -14px);
}

h1::after,
.h1::after {
  -webkit-transform: rotate(180deg) translate(-4px, -20px);
      -ms-transform: rotate(180deg) translate(-4px, -20px);
          transform: rotate(180deg) translate(-4px, -20px);
}

h2,
.h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.8px;
}

h2::after,
.h2::after {
  -webkit-transform: rotate(180deg) translate(-4px, -12px);
      -ms-transform: rotate(180deg) translate(-4px, -12px);
          transform: rotate(180deg) translate(-4px, -12px);
}

h3,
.h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.64px;
}

h4,
.h4 {
  color: var(--text2);
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.56px;
  margin: 0 0 16px;
}

h5,
.h5 {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.48px;
}

h6,
.h6 {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.4px;
}

.button {
  display: inline-block;
  padding: 19px 24px;
  border: none;
  background: var(--element);
  color: var(--white);
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  text-align: center;
  border-radius: 16px;
  gap: 8px;
}

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

.button svg,
.button img {
  width: 20px;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 !important;
}

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

.button.flex span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
}

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

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

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

.button.background--text:hover {
  background: var(--textHover);
}

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

.button.background--element2:hover {
  background: var(--element2Hover);
}

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

.button.background--element3:hover {
  background: var(--element3Hover);
}

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

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

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

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

.button--small {
  padding: 16px;
  border-radius: 80px;
  font-weight: 400;
}

.button--big {
  width: 100%;
  font-size: 20px;
  letter-spacing: -0.4px;
  padding: 24px 32px;
  border-radius: 24px;
  font-size: 20px;
}

.button--big svg,
.button--big img {
  width: 32px;
}

.button--none {
  pointer-events: none;
}

.button svg.button_svg--big {
  width: 32px;
  height: auto;
}

.container {
  margin: 0 auto;
  width: calc(100% - 64px);
  max-width: 1280px;
}

.section {
  padding: 64px 0;
  overflow: hidden;
  border-radius: 64px;
}

.first-screen {
  padding-top: 30px;
}

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

.first-screen__content {
  padding-right: 24px;
}

.bron {
  margin: 36px 0 16px;
}

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

.first-screen__right {
  padding: 24px;
  width: 50%;
  position: relative;
  z-index: 1;
}

.first-screen__image {
  text-align: center;
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.first-screen__image::before,
.first-screen__image::after {
  content: "";
  display: block;
  width: 80%;
  height: 87%;
  position: absolute;
  bottom: 0px;
  z-index: -1;
  border-radius: 16px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.first-screen__image::before {
  left: 15%;
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
  background: #98B1CE;
  z-index: 0;
}

.first-screen__image::after {
  right: 15%;
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
  background: #6C88A8;
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.first-screen__image.show::before {
  -webkit-transform: rotate(-12.5deg);
      -ms-transform: rotate(-12.5deg);
          transform: rotate(-12.5deg);
}

.first-screen__image.show::after {
  -webkit-transform: rotate(12.5deg);
      -ms-transform: rotate(12.5deg);
          transform: rotate(12.5deg);
}

.first-screen__image img {
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  height: 222px;
  width: 100%;
}

.first-screen__ogran {
  width: 404px;
  gap: 8px;
  position: absolute;
  bottom: 54px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  -webkit-box-shadow: 0 8px 32px -8px rgba(160, 189, 221, 0.25);
          box-shadow: 0 8px 32px -8px rgba(160, 189, 221, 0.25);
  z-index: 3;
}

.first-screen__ogran img {
  display: block;
}

.first-screen__bottom {
  margin-top: 48px;
  gap: 24px;
}

.technology {
  border-radius: 100px;
  border: 1px solid var(--border);
  padding: 8px;
}

.technology img {
  display: block;
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}

.technology span {
  display: block;
  font-weight: 500;
  line-height: 120%;
  padding: 8px 16px;
}

.section-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
  gap: 48px;
}

.why {
  gap: 36px;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}

.why__item {
  width: calc(50% - 18px);
  padding: 24px;
  gap: 32px;
  border-radius: 16px;
  background: var(--background);
}

.why__item .h2 {
  width: 50px;
}

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

.experts {
  gap: 48px;
}

.expert {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -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;
  gap: 24px;
  min-width: 140px;
}

.expert__image {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.expert__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.expert__info {
  -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;
  gap: 16px;
}

.expert__position {
  color: #6C88A8;
  font-weight: 500;
}

.expert__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
}

.list-3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.list-4 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding: 0 56px;
}

.item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 36px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #FDFEFF;
  -webkit-box-shadow: 0 8px 16px -8px rgba(160, 189, 221, 0.15);
          box-shadow: 0 8px 16px -8px rgba(160, 189, 221, 0.15);
}

.item__image {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.item__text {
  color: #6C88A8;
  font-weight: 500;
}

.steps {
  gap: 12px;
  padding: 0 32px;
}

.technology__step {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  background: var(--border);
  line-height: 0;
}

.item--dark {
  border-radius: 36px;
  background: var(--background);
  padding: 48px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.last-screen {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 500px 1fr;
  grid-template-columns: 500px 1fr;
  gap: 64px;
}

.last-screen__first {
  padding: 42px 0;
}

.last-screen__first .h2 {
  margin-bottom: 16px;
}

.last-screen__first .h4,
.last-screen__first p {
  margin-bottom: 24px;
}

.last-screen__last {
  position: relative;
}

.last-screen__content {
  position: absolute;
  width: 100%;
  height: calc(100% + 64px);
}

.last-screen__image {
  margin: 0 auto;
  width: 100%;
  padding-top: 24px;
  position: relative;
  z-index: 1;
}

.last-screen__image::before,
.last-screen__image::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 24px;
  left: 50%;
  border-radius: 16px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.last-screen__image::before {
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translateX(-50%) rotate(0deg);
      -ms-transform: translateX(-50%) rotate(0deg);
          transform: translateX(-50%) rotate(0deg);
  background: #98B1CE;
  z-index: 1;
}

.last-screen__image::after {
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translateX(-50%) rotate(0deg);
      -ms-transform: translateX(-50%) rotate(0deg);
          transform: translateX(-50%) rotate(0deg);
  background: #6C88A8;
  z-index: 0;
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.last-screen__image.show::before {
  -webkit-transform: translateX(-50%) rotate(-10deg);
      -ms-transform: translateX(-50%) rotate(-10deg);
          transform: translateX(-50%) rotate(-10deg);
}

.last-screen__image.show::after {
  -webkit-transform: translateX(-50%) rotate(10deg);
      -ms-transform: translateX(-50%) rotate(10deg);
          transform: translateX(-50%) rotate(10deg);
}

.last-screen__image img {
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 16px;
  height: 330px;
  width: 100%;
  object-fit: cover;
}

.last-screen__text {
  /* position: absolute;
  left: 50%;
  bottom: 24px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%); */
  margin-top: 20px;
  grid-column: span 2;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  -webkit-box-shadow: 0 8px 32px -8px rgba(160, 189, 221, 0.25);
          box-shadow: 0 8px 32px -8px rgba(160, 189, 221, 0.25);
  z-index: 3;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  width: 100%;
  height: 100%;
}

.popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: var(--text);
  opacity: 0.5;
  pointer-events: none;
}

.popup__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden auto;
  padding: 40px 20px;
}

.popup__content {
  position: relative;
  z-index: 2;
  width: 468px;
  max-width: calc(100vw - 40px);
  padding: 40px;
  border-radius: 32px;
}

.popup__content .js-tabs {
  width: 100%;
  margin-bottom: 24px;
}

.popup__content .js-tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup__close {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 2;
  cursor: pointer;
  width: 56px;
  height: 56px;
  border-radius: 16px;
}

.animate--fade {
  opacity: 0;
  -webkit-transform: translateY(40px);
      -ms-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}

.animate--fade.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}

.footer {
  padding: 80px 0 32px;
}

.footer__top {
  margin-bottom: 72px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 270px 1fr;
  grid-template-columns: 270px 1fr;
  gap: 5px 40px;
}

.footer__logo {
  display: block;
  line-height: 0;
}

.footer__menu {
  gap: 16px 32px;
}

.footer__menu a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: var(--text2);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.footer__menu a:hover {
  color: var(--element);
}

.social {
  gap: 16px;
  -ms-grid-column: 2;
  grid-column: 2;
}

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

.footer__bottom {
  gap: 8px 32px;
}

.footer__bottom a {
  color: inherit;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.footer__bottom a:hover {
  color: var(--element);
}

.forma {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.forma p {
  color: #7F86A8;
  margin-bottom: 0;
}

.forma a {
  color: #7F86A8;
  border-bottom: 1px solid transparent;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.forma a.bordbot {
  border-color: #7F86A8;
}

.forma a:hover {
  border-color: #EA232F;
  color: #EA232F;
}

.forma label {
  width: 100%;
  position: relative;
  margin: 0px 0px 16px 0px;
}

.forma label.w75 {
  width: calc(75% - 8px);
}

.forma label.w66 {
  width: calc(66.666% - 8px);
}

.forma label.w50 {
  width: calc(50% - 8px);
}

.forma label.w33 {
  width: calc(33.333% - 8px);
}

.forma label.w25 {
  width: calc(25% - 8px);
}

.label-zag {
  top: 14px;
  left: 20px;
  position: absolute;
  font-weight: 400;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  z-index: 2;
  pointer-events: none;
  font-size: 14px;
  line-height: 140%;
  color: var(--text2);
}

.jq-selectbox ~ .label-zag {
  z-index: 10;
}

label input:focus ~ .label-zag,
label textarea:focus ~ .label-zag,
label .changed ~ .label-zag,
label.zapolnen .label-zag {
  top: 0px;
}

input,
textarea {
  outline: none !important;
}

.forma input,
.forma textarea,
.jq-selectbox,
.fililike {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  font-style: normal;
  color: var(--text);
  border-radius: 16px;
  background: none;
  width: 100%;
  padding: 18px 20px 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  outline: none;
}

.jq-selectbox.opened {
  border-radius: 16px 16px 0 0;
}

.jq-selectbox.opened::before {
  content: "";
  display: block;
  width: calc(100% - 32px);
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 16px;
  z-index: 1;
  background: var(--border);
}

.forma textarea {
  height: 128px;
}

.forma input.error,
.forma select.error,
.forma textarea.error,
.forma .jq-selectbox label.error ~ .jq-selectbox__select {
  border-color: #ECA5B6;
  color: var(--element);
  margin-bottom: 28px;
}

.forma label.error {
  position: absolute;
  left: 0px;
  top: calc(100% - 16px);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--element);
  margin: 0;
  display: block;
}

.forma .jq-selectbox label.error {
  position: absolute;
  left: 0px;
  top: 60px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--element);
  margin-bottom: 0;
  display: block;
}

.g-recaptcha ~ label.error {
  position: relative;
  margin-top: 10px;
}

.datep {
  background: url(../img/datep.svg) calc(100% - 8px) 8px no-repeat !important;
  cursor: pointer;
}

.forma input[type=submit] {
  display: inline-block;
  padding: 19px 24px;
  border: none;
  background: var(--element);
  color: var(--white);
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  text-align: center;
  border-radius: 16px;
  margin-bottom: 16px;
}

.forma input[type=submit]:last-child {
  margin-bottom: 0;
}

.forma input[type=submit]:hover {
  background: var(--elementHover);
}

/*Формстайлер*/

.jq-selectbox {
  cursor: pointer;
  z-index: 10;
  padding: 0px !important;
}

.jq-selectbox__select {
  position: relative;
  top: 0px;
  width: 100%;
  height: auto;
  left: 0px;
  padding: 14px 48px 14px 20px;
  background: var(--white);
  border: none !important;
  border-radius: 16px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.jq-selectbox.opened .jq-selectbox__select {
  border-radius: 16px 16px 0 0;
}

.jq-selectbox__select-text {
  font: inherit;
  color: var(--text2);
}

.jq-selectbox__trigger {
  width: 46px;
  height: 100%;
  background: url(../img/icons/select.svg) center center no-repeat;
  position: absolute;
  top: 0px;
  right: 0px;
  border: none;
}

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

.jq-selectbox__trigger-arrow {
  display: none;
}

.jq-selectbox__dropdown {
  top: 100% !important;
  background: var(--white);
  padding: 0px 0px;
  left: 0px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid var(--border) !important;
  border-top: none !important;
  border-radius: 0 0 16px 16px;
  z-index: 10;
  inset: 100% auto auto 0px !important;
  max-width: 100%;
  min-width: 100%;
  overflow: auto;
}

.jq-selectbox__dropdown ul {
  margin: 0;
  padding: 0;
}

.jq-selectbox__dropdown ul li {
  margin: 0px 0px 0px 0px;
  max-width: 100%;
  white-space: break-spaces;
  padding: 8px 20px;
  font: inherit;
}

.jq-selectbox__dropdown ul li.sel,
.jq-selectbox__dropdown ul li:hover {
  background: var(--border);
  color: var(--text);
}

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

.jq-selectbox__dropdown ul li.disabled {
  pointer-events: none;
  color: var(--text2);
}

.jq-selectbox select,
.jq-select-multiple select {
  position: absolute;
  width: 1px;
  height: 1px;
}

.jqselect.changed .jq-selectbox__select-text {
  color: var(--text);
}

.check-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -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: 8px;
  cursor: pointer;
}

.check-label input {
  position: absolute;
  visibility: hidden;
}

.check-label span {
  margin-top: 2px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.checkbox-ico {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white) url(../img/icons/checkbox.svg) center center/16px no-repeat;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

input:checked ~ .checkbox-ico {
  border-color: var(--element);
  background-color: var(--element);
}

.fililike {
  background: url(../img/upload.svg) calc(100% - 8px) 8px no-repeat !important;
}

.jq-file {
  background: #fff;
  border-bottom: 1px solid rgba(45, 45, 48, 0.32);
  height: 56px;
  width: 100%;
  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: justify-content;
  -ms-flex-pack: justify-content;
  justify-content: justify-content;
  padding: 0px 24px;
}

.jq-file__name {
  font-weight: 400;
}

.jq-file__browse {
  display: none;
}

.delfile {
  color: #EA232F;
  font-family: "Jost";
  font-weight: 600;
  position: relative;
  margin-left: auto;
  cursor: pointer;
}

.delfile::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 2px;
  left: 0px;
  background: #EA232F;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.delfile:hover::before {
  width: 0%;
  left: 50%;
}

.zapolnen .jq-file .jq-file__name {
  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;
  height: 100%;
}

.fililike ~ .jq-file {
  background: transparent;
  border-bottom: 1px solid rgba(45, 45, 48, 0.32);
  height: 56px;
  width: 100%;
  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: justify-content;
  -ms-flex-pack: justify-content;
  justify-content: justify-content;
  padding: 28px 24px;
  height: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0px;
}

.fililike ~ .jq-file .jq-file__name {
  width: calc(100% - 100px);
  background: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.rew-wrap .fililike ~ .jq-file {
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.rew-wrap .fililike ~ .jq-file .jq-file__name {
  color: #fff;
}

.jq-file.one-file {
  border-radius: 2px;
  cursor: pointer;
  background: #fff url(../img/upload.svg) calc(100% - 8px) 8px no-repeat !important;
}

.jq-file.one-file.changed {
  background-image: url(../img/upload-del.svg) !important;
}

.filedel {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 80px;
  pointer-events: none;
}

.jq-file.one-file.changed .filedel {
  pointer-events: all;
}

.jq-file.one-file .jq-file__name {
  font-weight: 400;
  font-size: inherit !important;
  line-height: 32px;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-left: 0;
  background: none;
}

.forma .input-clear {
  position: absolute;
  bottom: -24px;
  right: 20px;
  font-size: 14px;
  line-height: 14px;
  width: 200px;
  text-align: right;
  z-index: 1;
  cursor: pointer;
}

.jq-file__browse {
  margin-left: auto;
}

.jq-file input {
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 1px;
  width: 1px;
}

.added-list {
  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: justify-content;
  -ms-flex-pack: justify-content;
  justify-content: justify-content;
  width: 100%;
}

.added-comp {
  width: 100%;
  cursor: pointer;
  margin: 0px 0px 32px 0px;
}

.devared {
  width: 100%;
}

.prapo {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}

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

.ui-datepicker {
  z-index: 11 !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid gray;
  background: #fff;
  font-weight: normal;
  text-align: center;
  color: #273253;
  border-radius: 2px;
}

.ui-datepicker-current-day {
  border: none;
  background: #EA232F;
  color: #fff;
}

.ui-datepicker-current-day .ui-state-active {
  border: none;
  background: #EA232F;
  color: #fff;
}

/*Гугл капча*/

.captcha {
  margin: 0px 0px 22px 0px;
  position: relative;
  width: 100%;
}

.recap-error {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 301px;
  height: 75px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 1;
}

.error ~ .recap-error {
  -webkit-box-shadow: 0px 0px 0px 1px #ECA5B6;
  box-shadow: 0px 0px 0px 1px #ECA5B6;
}

.forma .half {
  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;
}

#eventform {
  margin-top: 64px;
}

.forma#eventform .form-right textarea {
  height: 176px;
  resize: initial;
}

.drop-filter {
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.drop-filter .checkbox-select {
  width: 296px;
}

.checkbox-select {
  position: relative;
}

.checkbox-select__value {
  padding: 18px 40px 18px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  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;
  -webkit-transition: all 0s 0.4s, background 0.4s;
  -o-transition: all 0s 0.4s, background 0.4s;
  transition: all 0s 0.4s, background 0.4s;
}

.checkbox-select__value::before {
  content: "";
  display: block;
  width: calc(100% - 36px);
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 18px;
  background: var(--border);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}

.checkbox-select__value::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/icons/select.svg") center center/contain no-repeat;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.checkbox-select__value.open {
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  border-radius: 16px 16px 0 0;
  border-bottom-color: transparent;
}

.checkbox-select__value.open::before {
  opacity: 1;
}

.checkbox-select__value.open::after {
  -webkit-transform: translateY(-50%) rotateX(180deg);
          transform: translateY(-50%) rotateX(180deg);
}

.checkbox-select__value:not(.open):hover {
  background: var(--background);
}

.checkbox-select__drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 4;
  width: 100%;
  padding: 18px;
  border-radius: 0 0 16px 16px;
  border: 1px solid var(--border);
  border-top: none;
}

.checkbox-select__list label {
  margin: 0 !important;
}

.checkbox-select__footer {
  margin-top: 16px;
}

.soglas-text.txt--center {
  width: 100%;
}

.form_send {
  display: none;
}

.form_send__block {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  min-height: 356px;
}

.form_send__ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
}

.form-left,
.form-right {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.forma .form-left {
  width: calc(100% - 448px);
}

.forma .form-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.form_send__ico {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

@media (min-width: 965px) {
  .why__item:not(.show) {
    -webkit-transform: translateX(-32px);
        -ms-transform: translateX(-32px);
            transform: translateX(-32px);
  }

  .why__item:not(.show):nth-child(even) {
    -webkit-transform: translateX(32px);
        -ms-transform: translateX(32px);
            transform: translateX(32px);
  }

  .expert.show:nth-child(2n) {
    -webkit-transition-delay: 0.2s;
         -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }

  .expert.show:nth-child(3n) {
    -webkit-transition-delay: 0.4s;
         -o-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }

  .expert.show:nth-child(4n) {
    -webkit-transition-delay: 0.6s;
         -o-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }

  .expert.show:nth-child(5n) {
    -webkit-transition-delay: 0.8s;
         -o-transition-delay: 0.8s;
            transition-delay: 0.8s;
  }

  .item:not(.show):first-child {
    -webkit-transform: translateX(-32px);
        -ms-transform: translateX(-32px);
            transform: translateX(-32px);
  }

  .item:not(.show):last-child {
    -webkit-transform: translateX(32px);
        -ms-transform: translateX(32px);
            transform: translateX(32px);
  }
}

@media (min-width: 1281px) {
  .footer__menu,
  .social {
    padding-left: 400px;
  }
}

@media (max-width: 1500px) {
  .steps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }

  .steps img {
    -webkit-transform: rotate(90deg) !important;
        -ms-transform: rotate(90deg) !important;
            transform: rotate(90deg) !important;
  }
}

@media (max-width: 1280px) {
  .container {
    max-width: 900px;
  }

  .first-screen__bottom {
    margin-top: 62px;
  }

  .list-4 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    width: calc(100% - 160px);
    margin: 0 auto;
  }

  .forma .form-left {
    width: 100%;
  }
}

@media (max-width: 964px) {
  .top-zayav-button {
    margin-left: 24px;
  }

  .header__background .header__animation-list::before {
    bottom: -200%;
  }

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

  h1::after,
  .h1::after {
    -webkit-transform: rotate(180deg) translate(-4px, -10px);
        -ms-transform: rotate(180deg) translate(-4px, -10px);
            transform: rotate(180deg) translate(-4px, -10px);
  }

  h2::after,
  .h2::after {
    -webkit-transform: rotate(180deg) translate(-4px, -4px);
        -ms-transform: rotate(180deg) translate(-4px, -4px);
            transform: rotate(180deg) translate(-4px, -4px);
  }

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

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

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

  h5,
  .h5 {
    font-size: 20px;
    letter-spacing: -0.4px;
  }

  h6,
  .h6 {
    font-size: 18px;
    letter-spacing: -0.36px;
  }


  .first-screen__ogran {
    width: 374px;
  }

  .technology span {
    font-size: 14px;
    letter-spacing: -0.14px;
  }

  .section-column {
    gap: 32px;
  }

  .why {
    gap: 32px;
  }

  .why__item {
    gap: 12px;
    width: 100%;
  }

  .why__item .h2 {
    width: 45px;
  }

  .experts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }

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

  .expert__info {
    width: 246px;
  }

  .list-3 {
    gap: 24px;
  }

  .steps {
    padding: 0;
  }

  .last-screen {
    gap: 20px 64px;
    -ms-grid-columns: 300px 1fr;
    grid-template-columns: 300px 1fr;
  }

  .last-screen__first {
    padding-top: 0;
  }

  .last-screen__content {
    position: relative;
    height: auto;
  }

  .last-screen__image {
    width: 182px;
    padding-top: 0;
  }

  .last-screen__image img {
    height: 300px;
  }

  .last-screen__image::before,
  .last-screen__image::after {
    top: -20px;
    height: calc(100% + 40px);
  }

  .last-screen__text {
    margin-top: 0;
  }

  .popup__inner {
    padding: 32px 0 0 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .popup__content {
    border-radius: 32px 32px 0px 0px;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(137, 152, 201, 0.1);
            box-shadow: 0px 16px 32px 0px rgba(137, 152, 201, 0.1);
    padding: 68px 32px 32px;
    width: 100%;
    max-width: unset;
  }

  .popup__content::before {
    content: "";
    display: block;
    width: 32px;
    height: 4px;
    position: absolute;
    top: 32px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    border-radius: 2px;
    background: var(--medium);
  }

  .popup__close {
    display: none;
  }

  .footer__top {
    gap: 88px 32px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .footer__logo img {
    height: 70px;
  }

  .footer__menu a {
    -webkit-box-flex: calc(50% - 16px);
        -ms-flex: calc(50% - 16px);
            flex: calc(50% - 16px);
  }

  .social {
    gap: 16px 32px;
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }

  .drop-filter {
    margin-bottom: 24px;
  }

  .drop-filter .checkbox-select {
    width: calc(50% - 16px);
  }

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

@media (max-width: 740px) {
  .menu {
    display: none;
  }
}

@media (max-width: 680px) {
  body {
    padding-top: 80px;
  }

  .header {
    padding: 12px 0;
  }

  .header__background .header__animation-list::before {
    bottom: -150%;
    left: -200px;
  }

  h1,
  .h1 {
    padding: 12px;
    font-size: 32px;
    font-style: normal;
    letter-spacing: -0.56px;
    margin-bottom: 24px;
    width: 100%;
  }

  h1::before,
  h1::after,
  .h1::before,
  .h1::after {
    width: 20px;
    height: 30px;
    background-image: url("../img/icons/for-title-mobile.svg");
  }

  h1::before,
  .h1::before {
    -webkit-transform: translate(-12px, -12px);
        -ms-transform: translate(-12px, -12px);
            transform: translate(-12px, -12px);
  }

  h1::after,
  .h1::after {
    -webkit-transform: rotate(180deg) translate(8px, -10px);
        -ms-transform: rotate(180deg) translate(8px, -10px);
            transform: rotate(180deg) translate(8px, -10px);
  }

  h2,
  .h2 {
    font-size: 26px;
    letter-spacing: -0.52px;
  }

  h3,
  .h3 {
    font-size: 24px;
    letter-spacing: -0.48px;
  }

  h5,
  .h5 {
    font-size: 18px;
    letter-spacing: -0.36px;
  }

  h6,
  .h6 {
    font-size: 16px;
    letter-spacing: -0.32px;
  }

  .container {
    width: calc(100% - 48px);
  }

  .section {
    padding: 48px 0;
  }

  .bron .button {
    width: 100%;
  }

  .first-screen__date {
    text-align: center;
  }

  .first-screen__right {
    width: 100%;
    padding: 36px 24px;
    margin-top: 24px;
  }

  .first-screen__image {
    width: 300px;
    max-width: 100%;
  }

  .first-screen__image img {
    height: auto;
  }

  .first-screen__image::before,
  .first-screen__image::after {
    height: 99%;
    width: 100%;
    border-radius: 12px;
  }

  .first-screen__image::before {
    left: 5%;
  }

  .first-screen__image::after {
    right: 5%;
  }

  .first-screen__image.show::before {
    -webkit-transform: rotate(-11.5deg);
        -ms-transform: rotate(-11.5deg);
            transform: rotate(-11.5deg);
  }

  .first-screen__image.show::after {
    -webkit-transform: rotate(11.5deg);
        -ms-transform: rotate(11.5deg);
            transform: rotate(11.5deg);
  }

  .first-screen__ogran {
    width: 308px;
    bottom: 48px;
  }

  .first-screen__ogran img {
    width: 24px;
  }

  .first-screen__bottom {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .why {
    gap: 12px;
  }

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

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

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

  .list-4 {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 36px;
    width: calc(100% - 80px);
  }

  .item--dark {
    padding: 20px;
  }

  .last-screen {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .last-screen__image {
    width: 213px;
  }

  .last-screen__image::before,
  .last-screen__image::after {
    border-radius: 12px;
  }

  .last-screen__image img {
    border-radius: 12px;
  }

  .last-screen__text {
    grid-column: 1;
  }

  .popup__inner {
    padding-top: 24px;
  }

  .popup__content {
    padding: 52px 24px 24px;
  }

  .popup__content::before {
    top: 24px;
  }

  .footer {
    padding: 64px 0 24px;
  }

  .footer__top {
    gap: 48px;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    margin-bottom: 64px;
  }

  .footer__logo {
    -ms-grid-row: 3;
    grid-row: 3;
  }

  .footer__logo img {
    height: auto;
    max-height: 96px;
  }

  .social {
    -ms-grid-column: 1;
    grid-column: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .social .button {
    width: 100%;
  }

  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .drop-filter .checkbox-select {
    width: 100%;
  }
}

@media (max-width: 675px) {
  .forma label {
    width: 100% !important;
    margin: 0px 0px 16px 0px;
  }
}