@charset "UTF-8";

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

/*Миксины*/

* {
  -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: "Akrobat", Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #fff;
  background: #131813;
  font-size: 24px;
  line-height: 120%;
  width: 100%;
  overflow: hidden auto;
}

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

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

.row {
  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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

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

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

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

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

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

.grid--auto-rows {
  grid-auto-rows: 1fr;
}

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

.pos--relative {
  position: relative;
}

.pos--absolute {
  position: absolute;
}

/* Цвета */

.color--zero {
  color: #000;
}

.color--white {
  color: #fff;
}

.color--black {
  color: #131813;
}

.color--black2 {
  color: #262A26;
}

.color--green {
  color: #00C479;
}

.background--zero {
  background-color: #000;
}

.background--white {
  background-color: #fff;
}

.background--black {
  background-color: #131813;
}

.background--black2 {
  background-color: #262A26;
}

.background--green {
  background-color: #00C479;
}

.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: #000;
}

.svg-hover--zero:hover path[stroke],
.svg-hover--zero:hover circle[stroke],
.svg-hover--zero:hover rect[stroke] {
  stroke: #000;
}

.svg-hover--white:hover path[fill],
.svg-hover--white:hover circle[fill],
.svg-hover--white:hover rect[fill] {
  fill: #fff;
}

.svg-hover--white:hover path[stroke],
.svg-hover--white:hover circle[stroke],
.svg-hover--white:hover rect[stroke] {
  stroke: #fff;
}

.svg-hover--black:hover path[fill],
.svg-hover--black:hover circle[fill],
.svg-hover--black:hover rect[fill] {
  fill: #131813;
}

.svg-hover--black:hover path[stroke],
.svg-hover--black:hover circle[stroke],
.svg-hover--black:hover rect[stroke] {
  stroke: #131813;
}

.svg-hover--black2:hover path[fill],
.svg-hover--black2:hover circle[fill],
.svg-hover--black2:hover rect[fill] {
  fill: #262A26;
}

.svg-hover--black2:hover path[stroke],
.svg-hover--black2:hover circle[stroke],
.svg-hover--black2:hover rect[stroke] {
  stroke: #262A26;
}

.svg-hover--green:hover path[fill],
.svg-hover--green:hover circle[fill],
.svg-hover--green:hover rect[fill] {
  fill: #00C479;
}

.svg-hover--green:hover path[stroke],
.svg-hover--green:hover circle[stroke],
.svg-hover--green:hover rect[stroke] {
  stroke: #00C479;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
  padding: 28px 0 14px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 12;
  background: rgba(19, 24, 19, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.logo {
  display: block;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.logo__arrow_wrap {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 0px;
  height: 100%;
    animation: arrow 4s infinite linear;
}
@keyframes arrow {
    0% {width: 0px;}
    50% {width: 60px;left: 0px;}
    100% {left: 60px;}
}
.logo__arrow {
  position: absolute;
  top: 0;
  left: 0;
  animation: arrow_in 4s infinite linear;
}
@keyframes arrow_in {
    0% {left: 0px;}
    50% {left: 0px;}
    100% {left: -60px;}
}
.menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu__item {
  line-height: 1;
}

.menu__item a {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.menu__item a:hover {
  color: #00C479;
}

.header_button {
  padding: 8px 24px;
  border-radius: 8px;
  background: #00C479;
  cursor: pointer;
}

.burger {
  display: none;
}

.burger.open .burger__line {
  margin: 0;
}

.burger.open .burger__line:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.burger.open .burger__line:nth-child(2) {
  width: 0;
}

.burger.open .burger__line:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.burger__line {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 18px;
  height: 2px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.burger__line:first-child {
  margin-top: -6px;
}

.burger__line:last-child {
  margin-top: 6px;
}

.participation_pda_link {
  display: none;
}

.participation_pda_link .button_type_1 {
  text-transform: initial;
  background: #00C479 !important;
}

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

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

b,
strong {
  font-weight: 700;
}

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

main a img,
main a span,
header a img,
footer a span,
header a img,
footer a span {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

img {
  max-width: 100%;
}

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

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

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

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

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

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

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

.txt--100 {
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 100px;
  font-style: normal;
  line-height: 120%;
  text-transform: uppercase;
}

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

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

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

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 {
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
}

h2,
.h2 {
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 80px;
}

main ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

main ul li {
  position: relative;
  padding: 4px 10px 8px 26px;
  color: rgba(251, 251, 251, 0.8);
}

main ul li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 17px;
  left: 10px;
  background: #00C479;
  border-radius: 50%;
}

.button_type_1 {
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: 384px;
  max-width: 100%;
  font-weight: 600;
  gap: 20px;
}

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

.button_type_2 {
  display: inline-block;
  border-radius: 5px;
  background: #00C479;
  padding: 6px 10px 7px 10px;
  font-weight: 600;
}

.button_type_3 {
  border-radius: 12px;
  padding: 20px;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-weight: 700;
  cursor: pointer;
}

.button_type_4 {
  border-radius: 12px;
  padding: 20px;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #00C479;
  font-weight: 700;
  cursor: pointer;
}

.slider_arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.slider_arrow:hover {
  border-color: #fff;
}

.form__send {
  display: block;
  padding: 20px;
  gap: 20px;
  border-radius: 12px;
  background: #00C479;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

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

.first_screen {
  position: relative;
  padding: 180px 0 80px;
  min-height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  background: #00B5D5;
}

.first_screen::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  opacity: 0.8;
  background: -o-radial-gradient(50% 50%, 50% 50%, rgba(3, 80, 46, 0) 61.31%, #03502E 100%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(3, 80, 46, 0) 61.31%, #03502E 100%);
}

.global_video {
  width: 100%;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.first_screen__content {
  position: relative;
  z-index: 2;
}

.marquee {
  font-size: 64px;
  line-height: 100%;
  font-weight: 100;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.24;
  margin-top: auto;
  position: relative;
  z-index: 4;
  pointer-events: none;
}

.marquee-logo {
  margin-right: 64px;
  max-height: 48px;
}

.spoiler {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: #262A26;
  position: relative;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  padding: 20px;
}

.spoiler.open {
  border-color: #00C479;
}

.spoiler.open .spoiler__name path {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.spoiler:hover {
  border-color: #00C479;
}

.spoiler__name {
  cursor: pointer;
  position: relative;
  font-weight: 700;
}

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

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

.spoiler__hide {
  display: none;
}

.spoiler__content {
  padding-top: 20px;
}

.block-table {
  display: table;
}

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

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

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

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

.close {
  position: absolute;
  right: 0;
  top: -48px;
  color: #fff;
  cursor: pointer;
}

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

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

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

.section {
  padding: 80px 0;
  overflow: hidden;
}

.rad_lt {
  position: relative;
  overflow: hidden;
  background: #131813;
  z-index: 1;
}

.rad_lt::before {
  content: "";
  display: block;
  width: 822px;
  height: 822px;
  -webkit-transform: rotate(-69.242deg);
      -ms-transform: rotate(-69.242deg);
          transform: rotate(-69.242deg);
  position: absolute;
  left: -564px;
  top: -332px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(25, 218, 109, 0.4)), to(rgba(51, 65, 118, 0.4)));
  background: -o-linear-gradient(top, rgba(25, 218, 109, 0.4) 0%, rgba(51, 65, 118, 0.4) 100%);
  background: linear-gradient(180deg, rgba(25, 218, 109, 0.4) 0%, rgba(51, 65, 118, 0.4) 100%);
  -webkit-filter: blur(250px);
          filter: blur(250px);
  z-index: -1;
}

.tag {
  padding: 4px 24px 7px 24px;
  border-radius: 5px;
  border: 1px solid #00C479;
  transition: .4s;
  cursor: default;
}
.tag:hover {
  background: #00C479;
}

.item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 12px 46px;
  min-height: 150px;
  position: relative;
}
.item::before {
    content: '';
    display: block;
    width: 70%;
    height: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: .4s;
    border-radius: 12px;
    pointer-events: none;
}
.item:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.kogo_list {
  padding: 48px 0;
}

.kogo__b {
  padding: 12px 0;
  font-weight: 700;
}

.section_video_fon {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #009F10;
}

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

.section_video_fon__background::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 3;
  opacity: 0.4;
  background: -o-radial-gradient(50% 50%, 50% 50%, rgba(3, 80, 46, 0) 61.31%, #03502E 100%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(3, 80, 46, 0) 61.31%, #03502E 100%);
}

.section_video_fon__video {
  width: 100%;
  height: 100%;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.item_2 {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  overflow: hidden;
  position: relative;
}
.item_2::before {
    content: '';
    display: block;
    width: 70%;
    height: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: .4s;
    border-radius: 12px;
    pointer-events: none;
}
.item_2:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}
.item_2.background--black {
  border-color: #131813;
}
.item_2.background--black::before  {
  z-index: 1;
  backdrop-filter: none;
}
.item_2.fit-image {
  border: none;
}

.item_2.video {
  border: none;
  background: #042C67;
  position: relative;
}

.item_2:nth-child(6) ~ .item_2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.item_2__text {
  margin-top: auto;
}

.item_2__video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 180px;
  max-height: 90%;
}

.programm__part {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.programm__part:first-child {
  padding-right: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.programm__part:nth-child(2) {
  padding-left: 0;
  width: 658px;
}

.programm__title {
  padding: 40px 0;
}

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

.programm__text {
  margin-bottom: 40px;  
}

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

.programm__place b:nth-child(2) {
  color: #00C479;
  text-transform: uppercase;
}
.programm__place b:nth-child(2)::before {
    content: '[ ';
}
.programm__place b:nth-child(2)::after {
    content: ' ]';
}

.hover-green {
  transition: .4s;
}
.hover-green:hover {
  color: #00C479;
}

.experts {
  width: 100vw;
  margin-left: calc((100vw - 100%) / 2 * -1);
  padding-left: calc((100vw - 100%) / 2);
  padding-right: calc((100vw - 100%) / 2);
  overflow: hidden;
}

.expert {
  width: 424px;
}

.expert__image {
  padding-top: 123%;
}

.expert__company {
  display: inline-block;
  padding: 2px 10px 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.no-webp .section--result{
  background: url(../img/result.jpg) 0% 0% / 100% auto no-repeat;
}

.result {
  max-width: 537px;
}

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

.spoiler__link.open {
  background: rgba(0, 196, 121, 0.5);
  border-color: rgba(0, 196, 121, 0.5);
}

.spoiler__hide {
  display: none;
}

.spoiler__text {
  padding-top: 40px;
}

.spoiler__text li {
  margin-bottom: 10px;
  border-radius: 12px;
  transition: .4s;
}

.spoiler__text li:last-child {
  margin-bottom: 0;
}

.spoiler__text li:hover {
  margin-bottom: 10px;
  transition: .4s;
  background: rgba(0, 196, 121, 0.20);
  backdrop-filter: blur(100px);
}

.spoiler__text a {
  text-decoration: underline;
}

.no-webp .section--step{
  background: url(../img/step.jpg) center bottom/100% auto no-repeat; }

.step {
  position: relative;
}
.step .item_2::before {
  z-index: 1;
}
.step .item_2 > * {
  position: relative;
  z-index: 2;
}

.step.next .step__gr::before {
  opacity: 1;
  left: 25px;
  width: calc(100% + 23px);
}

.step:last-child .step__gr::before {
  display: none;
}

.step__gr {
  position: relative;
  line-height: 0;
}

.step__gr::before {
  content: "";
  display: block;
  width: calc(100% + 3px);
  height: 4px;
  position: absolute;
  top: 50%;
  left: 45px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #00C479;
  opacity: 0.2;
}

.step__gr svg {
  display: block;
  width: 45px;
  height: 45px;
}

.step__i {
  border: 2px solid #00C479;
  background: rgba(169, 239, 255, 0.15);
  border-radius: 12px;
}

.price {
  border-radius: 12px;
  background: #262A26;
  padding: 20px;
}

.price--green {
  -webkit-box-shadow: inset 0 0 0 1px #00C479;
          box-shadow: inset 0 0 0 1px #00C479;
}

.price__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price__row {
  margin-top: -4px;
  padding-bottom: 20px;
  margin-top: auto;
}

.price__text li {
  border-radius: 12px;
  transition: .4s;
}
.price__text li:hover {
  transition: .4s;
  background: rgba(0, 196, 121, 0.20);
  backdrop-filter: blur(100px);
}

.form__wrapper {
  width: calc(100% + 120px);
  margin-left: -60px;
  border-radius: 12px;
  padding: 60px;
}

.contact {
  -ms-grid-columns: 100px 1fr;
  grid-template-columns: 100px 1fr;
}

.contact__image {
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.showing {
  padding: 38px 48px;
  border-radius: 12px;
  border: 1px solid #999;
  background: rgba(169, 239, 255, 0.15);
}

.hr {
  height: 1px;
}

.premium {
  border-radius: 12px;
  border: 1px solid #999;
  background: rgba(169, 239, 255, 0.15);
  padding: 24px;
  position: relative;
  z-index: 1;
}

.premium::before {
	content: '';
	display: block;
	width: 70%;
	height: 70%;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	transform: translate(-50%, -50%);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	opacity: 0;
	transition: .4s;
	border-radius: 12px;
	pointer-events: none;
}

.premium:hover::before {
	width: 100%;
	height: 100%;
	opacity: 1;
}

.premium__image {
  -o-object-fit: none;
     object-fit: none;
  -o-object-position: bottom left;
     object-position: bottom left;
  height: 124px;
}

.vuzs {
  padding-top: 64px;
}

.vuz__image {
  margin-bottom: 20px;
}

.faq_list {
  width: calc((100% + 20px) / 12 * 7 - 20px);
}

.section--sticky {
  overflow: visible;
}

.sticky {
  position: sticky;
  top: 148px;
}

.anchor {
  display: block;
  -webkit-transform: translateY(-148px);
      -ms-transform: translateY(-148px);
          transform: translateY(-148px);
  visibility: hidden;
  pointer-events: none;
}

.section--geip-slider {
  overflow: visible;
  /* padding: 200px 0; */
}

.geip-slider {
  position: relative;
  min-height: calc(var(--vh, 1vh) * 100);
}

.geip-slider__mobile_title {
  display: none;
}

.geip-slider__chars {
  padding-left: 570px;
}

.geip-slider__char {
  font-size: 200px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  height: 220px;
  width: 100px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.geip-slider__char.active {
  color: #00C479;
}

.geip-slider__rails {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.geip-slider__sticky {
  margin-top: 100px;
  margin-bottom: 32px;
  position: sticky;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.geip-slider__gradient {
  position: absolute;
  left: 560px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 120px;
  height: 220px;
}

.geip-slider__gradient::before,
.geip-slider__gradient::after {
  content: "";
  display: block;
  width: 45px;
  height: 100%;
  position: absolute;
  top: 10px;
  background: url("../img/icons/l.svg") left center/contain no-repeat;
}

.geip-slider__gradient::before {
  left: -45px;
}

.geip-slider__gradient::after {
  left: auto;
  right: -45px;
  background-image: url("../img/icons/r.svg");
}

.geip-slider__gradient__item {
  width: 100%;
  height: 160px;
  position: absolute;
  top: 100%;
  left: 0px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(19, 24, 19)), to(rgba(19, 24, 19, 0)));
  background: -o-linear-gradient(bottom, rgb(19, 24, 19) 0%, rgba(19, 24, 19, 0) 100%);
  background: linear-gradient(0deg, rgb(19, 24, 19) 0%, rgba(19, 24, 19, 0) 100%);
}

.geip-slider__gradient__item::before {
  content: "";
  display: block;
  width: 100%;
  height: 50vh;
  position: absolute;
  top: 100%;
  left: 0px;
  background: #131813;
}

.geip-slider__gradient__item:nth-child(2) {
  top: auto;
  bottom: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(19, 24, 19)), to(rgba(19, 24, 19, 0)));
  background: -o-linear-gradient(top, rgb(19, 24, 19) 0%, rgba(19, 24, 19, 0) 100%);
  background: linear-gradient(180deg, rgb(19, 24, 19) 0%, rgba(19, 24, 19, 0) 100%);
}

.geip-slider__gradient__item:nth-child(2)::before {
  top: auto;
  bottom: 100%;
}

.geip-slider__text_list {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.geip-slider__text {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-54px);
      -ms-transform: translateY(-54px);
          transform: translateY(-54px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  width: 428px;
}

.geip-slider__text.active {
  opacity: 1;
  visibility: visible;
}

footer {
  padding-bottom: 24px;
  text-align: center;
  opacity: 0.4;
  font-size: 12.6px;
  line-height: 200%;
  font-weight: 600;
  font-style: normal;
  font-variant-numeric: lining-nums proportional-nums;
}

footer a {
  text-decoration: underline;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

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

.cookie {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 11;
  padding: 48px 0;
  border-radius: 8px 8px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #262A26;
}

.cookie__container {
  width: calc(100% - 80px);
  max-width: 1460px;
  margin: 0 auto;
}

.cookie__text a {
  color: #00C479;
  text-decoration: underline;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

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

.cookie__submit {
  padding: 8px 20px;
  border-radius: 5px;
  background: #00C479;
  cursor: pointer;
}

.input {
  border-radius: 5px;
  border: 1px solid #EDF2F5;
  background: #FAFBFC;
  -webkit-box-shadow: 0 1px 3px 0 #BBC8D2 inset;
          box-shadow: 0 1px 3px 0 #BBC8D2 inset;
  height: 50px;
  padding: 0 15px;
  outline: none;
  font: inherit;
  color: #131813;
}

label.error {
  font-size: 16px;
  line-height: 120%;
  color: #ff9a9a;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.jq-selectbox {
  color: #131813;
  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: 5px;
  max-width: 100%;
}

.jq-selectbox__select {
  border-radius: 5px;
  border: 1px solid #EDF2F5;
  background: #FAFBFC;
  -webkit-box-shadow: 0 1px 3px 0 #BBC8D2 inset;
          box-shadow: 0 1px 3px 0 #BBC8D2 inset;
  height: 50px;
  padding: 0 15px;
  outline: none;
  font: inherit;
  color: #131813;
  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;
  gap: 10px;
  max-width: 100%;
}

.jq-selectbox__select-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.jq-selectbox__trigger {
  border-top: 4px solid #131813;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

.jq-selectbox__dropdown {
  min-width: 100%;
  border: 1px solid #EDF2F5;
  background: #FAFBFC;
  -webkit-box-shadow: 0 1px 3px 0 #BBC8D2 inset;
          box-shadow: 0 1px 3px 0 #BBC8D2 inset;
  border-radius: 5px;
}

.jq-selectbox__dropdown li {
  color: #131813;
}

.jq-selectbox__dropdown li::before {
  background: gray;
}

.jq-selectbox__dropdown li.sel::before,
.jq-selectbox__dropdown li:hover::before {
  background: #00C479;
}

.consent {
  font-weight: 500;
}

.consent a {
  font-weight: 700;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  line-height: 140%;
}

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

.form__errors {
  display: none;
  color: #ff9a9a;
}

.form__success {
  display: none;
}

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

@media (min-width: 1150px) {
  .tags {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (max-width: 1400px) {
  .grid-columns-adaptiv--1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .grid-columns-adaptiv--2 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

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

  .kogo__b {
    padding: 8px 0;
  }

  .form__wrapper {
    width: 100%;
    padding: 40px;
    margin-left: 0;
  }

  .geip-slider__chars {
    padding-left: calc(50vw - 40px - 50px);
  }

  .geip-slider__gradient {
    left: calc(50vw - 40px - 60px);
  }
  
  .tag {
    padding: 2px 12px 4px 12px;
  }
}

@media (max-width: 1280px) {
  .menu {
    gap: 32px;
  }

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

  .main-text br {
    display: none;
  }

  .item {
    gap: 20px;
  }

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

  .premiums {
    gap: 20px;
  }

  .vuzs {
    padding-top: 0;
    gap: 20px;
  }

  .faq_list {
    width: calc((100% + 20px) / 12 * 6 - 20px);
  }

  .geip-slider__text {
    width: 360px;
  }
}

@media (max-width: 1024px) {
  .grid-columns-pda--1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .grid-columns-pda--2 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .grid--auto-rows {
    grid-auto-rows: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .header {
    padding: 16px 0;
  }

  .menu__wrap {
    display: none;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    position: absolute;
    top: 0;
    left: 0;
    background: #131813;
    padding: 160px 40px 40px;
  }

  .menu {
    gap: 40px;
    font-size: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .header_button {
    margin-left: auto;
  }

  .burger {
    display: block;
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 12;
  }

  .participation_pda_link {
    display: block;
    padding: 20px 0;
    font-size: 24px;
  }

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

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

  h2,
  .h2 {
    font-size: 50px;
    margin-bottom: 64px;
  }

  h2 img,
  .h2 img,
  h2 svg,
  .h2 svg {
    height: 50px;
    width: auto;
  }

  .item .txt--100 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .item .flex--1 {
    -webkit-box-flex: calc((100% + 20px) / 4 * 3 - 20px);
        -ms-flex: calc((100% + 20px) / 4 * 3 - 20px);
            flex: calc((100% + 20px) / 4 * 3 - 20px);
  }

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

  .kogo__b {
    padding: 10px 0;
  }

  .kogo__text {
    padding-top: 20px;
  }

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

  .item_2.fit-image {
    padding-top: 50%;
  }

  .item_2.video {
    padding-top: 50%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .item_2__video {
    height: calc(100% - 40px);
  }

  .programm__part:first-child {
    padding-left: 0;
  }

  .programm__part:nth-child(2) {
    padding: 0;
    border: none;
  }

  .programm__title {
    padding-top: 0;
  }

  .result {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: unset;
  }

  .step_list {
    grid-auto-rows: 1fr;
  }

  .step {
    padding-left: 70px;
  }

  .step.next .step__gr::before {
    width: 4px;
    left: 50%;
    top: 25px;
    height: calc(100% + 23px);
  }

  .step__gr::before {
    top: 45px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 4px;
    height: calc(100% + 3px);
  }

  .step__gr {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }

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

  .vuzs {
    gap: 40px;
  }

  .faq_list {
    width: 100%;
  }

  .anchor {
    -webkit-transform: translateY(-116px);
        -ms-transform: translateY(-116px);
            transform: translateY(-116px);
  }

  .geip-slider {
    min-height: unset;
  }

  .geip-slider__chars {
    padding-left: 230px;
  }

  .geip-slider__char {
    font-size: 120px;
    height: 126px;
    width: 60px;
  }

  .geip-slider__sticky {
    margin-top: 65px;
    margin-bottom: 10px;
  }

  .geip-slider__gradient {
    left: 220px;
    width: 80px;
    height: 126px;
  }

  .geip-slider__gradient::before,
  .geip-slider__gradient::after {
    width: 24px;
    top: 0;
  }

  .geip-slider__gradient::before {
    left: -20px;
  }

  .geip-slider__gradient::after {
    right: -20px;
  }

  .geip-slider__gradient__item {
    height: 110px;
  }

  .geip-slider__text {
    width: 100vw;
    max-width: calc(100vw - 420px);
  }

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

@media (max-width: 750px) {
  .form__fields {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }

  .form__fields .grid-column--2 {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}

@media (max-width: 660px) {
  body {
    font-size: 16px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .header {
    padding: 8px 0;
  }

  .logo img,
  .logo svg {
    height: 48px;
    width: auto;
  }

  .menu__wrap {
    padding: 80px 20px 20px;
  }

  .menu {
    gap: 20px;
    font-size: 20px;
  }

  .header_button {
    display: none;
  }

  .participation_pda_link {
    padding: 10px 0;
    font-size: 16px;
  }

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

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

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

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

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

  .txt--100 {
    font-size: 40px;
  }

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

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

  h2 img,
  .h2 img,
  h2 svg,
  .h2 svg {
    height: 24px;
    width: auto;
  }

  main ul li {
    padding: 2px 5px 4px 14px;
  }

  main ul li::before {
    top: 9px;
    left: 0px;
  }

  .button_type_1 {
    width: 100%;
    gap: 10px;
    padding: 10px;
  }

  .button_type_1 img {
    width: 14px;
  }

  .button_type_2 {
    padding: 3px 5px 4px 5px;
  }

  .button_type_3 {
    width: 100%;
    gap: 10px;
    padding: 10px;
  }

  .button_type_3 img {
    width: 14px;
  }

  .button_type_4 {
    width: 100%;
    gap: 10px;
    padding: 10px;
  }

  .button_type_4 img {
    width: 14px;
  }

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

  .form__send {
    width: 100%;
    gap: 10px;
    padding: 10px;
  }

  .form__send img {
    width: 14px;
  }

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

  .first_screen {
    padding: 100px 0 40px;
  }

  .first_screen__content {
    margin-top: auto;
  }

  .first_screen__content .button_type_1 {
    width: auto;
  }

  .spoiler {
    padding: 10px;
  }

  .spoiler__name::before {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    top: -10px;
    left: -10px;
  }

  .spoiler__name svg {
    width: 32px;
    height: 32px;
  }

  .spoiler__content {
    padding-top: 10px;
  }

  .section {
    padding: 40px 0;
  }

  .tag {
    padding: 2px 12px 4px;
  }

  .item {
    padding: 12px;
    min-height: unset;
  }

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

  .kogo_list {
    padding: 24px 0;
  }

  .kogo {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .kogo__b {
    padding: 3px 0;
  }

  .kogo__text {
    padding-top: 0px;
  }

  .item_2 {
    padding: 10px;
  }

  .programm__part {
    padding: 10px 0;
  }

  .programm__part:first-child img {
    width: 14px;
  }

  .programm__title {
    padding-bottom: 20px;
  }

  .programm__text {
    margin-bottom: 20px;  
  }

  .expert {
    width: 240px;
  }

  .spoiler__text {
    padding-top: 10px;
  }

  .step {
    padding-left: 42px;
  }

  .step:first-child .step__gr::before {
    width: 2px;
    top: 32px;
  }

  .step__gr::before {
    width: 2px;
    top: 32px;
  }

  .step__gr svg {
    width: 32px;
    height: 32px;
  }

  .price__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 10px;
  }

  .contact {
    -ms-grid-columns: 70px 1fr;
    grid-template-columns: 70px 1fr;
  }

  .showing {
    padding: 12px;
  }

  .premium {
    padding: 12px;
  }

  .premium__image {
    height: 64px;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center left;
       object-position: center left;
  }

  .section--geip-slider {
    /* padding: 40px 0 100px; */
  }

  .geip-slider__desctop_title {
    display: none;
  }

  .geip-slider__mobile_title {
    display: block;
    position: relative;
    z-index: 1;
  }

  .geip-slider__chars {
    padding-left: 20px;
  }

  .geip-slider__char {
    font-size: 60px;
    height: 64px;
    width: 30px;
  }

  .geip-slider__sticky {
    margin: 34px 0;
  }

  .geip-slider__gradient {
    left: 10px;
    width: 50px;
    height: 64px;
  }

  .geip-slider__gradient::before,
  .geip-slider__gradient::after {
    width: 12px;
  }

  .geip-slider__gradient::before {
    left: -5px;
  }

  .geip-slider__gradient::after {
    right: -5px;
  }

  .geip-slider__gradient__item {
    height: 70px;
  }

  .geip-slider__text {
    max-width: calc(100vw - 100px);
  }

  footer {
    padding-bottom: 12px;
  }

  .cookie {
    padding: 24px 0;
  }

  .cookie__container {
    width: calc(100% - 20px);
  }

  .cookie__submit {
    padding: 4px 10px;
  }
  
  .form__wrapper {
    padding: 20px;
  }

  .input,
  .jq-selectbox__select {
    height: 40px;
    padding: 0 8px;
  }

  label.error {
    font-size: 14px;
  }
  
  .vuz__image {
    margin: 10px 0;
  }

  .vuz__image img {
    width: 150px;
  }
}

.webp .section--result{ background: url(../img/result.webp) 0 0/100% auto no-repeat; }

.webp .section--step{ background: url(../img/step.webp) center bottom/100% auto no-repeat; }