:root {
  --color-black: #020414;
  --color-gray: #525252;
  --color-gray-light: #A3A3A3;
  --color-green: #3AEE78;
  --color-main: #6841D2;
  --color-hover: #502BB5;
  --color-white: #FFFFFF;
  --color-light: #EEF3FD;
  --color-border: #D8E2FA;
  --color-white-24: rgba(255, 255, 255, .24);
  --color-white-08: rgba(255, 255, 255, .08); }

a {
  color: var(--color-main); }

@media (max-width: 1279.98px) {
  .hidden-tablet {
    display: none !important; } }

.visible-tablet {
  display: none !important; }
  @media (max-width: 1279.98px) {
    .visible-tablet {
      display: block !important; } }

.visible-tablet-grid {
  display: none !important; }
  @media (max-width: 1279.98px) {
    .visible-tablet-grid {
      display: grid !important; } }

.visible-tablet-flex {
  display: none !important; }
  @media (max-width: 1279.98px) {
    .visible-tablet-flex {
      display: flex !important; } }

@media (max-width: 1023.98px) {
  .hidden-tablet2 {
    display: none !important; } }

.visible-tablet2 {
  display: none !important; }
  @media (max-width: 1023.98px) {
    .visible-tablet2 {
      display: block !important; } }

.visible-tablet2-grid {
  display: none !important; }
  @media (max-width: 1023.98px) {
    .visible-tablet2-grid {
      display: grid !important; } }

.visible-tablet2-flex {
  display: none !important; }
  @media (max-width: 1023.98px) {
    .visible-tablet2-flex {
      display: flex !important; } }

@media (max-width: 1023.98px) {
  .hidden-mobile {
    display: none !important; } }

.visible-mobile {
  display: none !important; }
  @media (max-width: 1023.98px) {
    .visible-mobile {
      display: block !important; } }

.visible-mobile-grid {
  display: none !important; }
  @media (max-width: 1023.98px) {
    .visible-mobile-grid {
      display: grid !important; } }

.visible-mobile-flex {
  display: none !important; }
  @media (max-width: 1023.98px) {
    .visible-mobile-flex {
      display: flex !important; } }

body {
  background: var(--color-light);
  overflow-x: hidden; }

.h1 {
  font-size: 56px;
  line-height: 120%;
  font-weight: 700; }
  @media (max-width: 639.98px) {
    .h1 {
      font-size: 36px; } }
  .h1 span {
    color: var(--color-main); }

.h2 {
  font-size: 40px;
  font-weight: bold;
  line-height: 120%;
  color: var(--color-black); }
  @media (max-width: 639.98px) {
    .h2 {
      font-size: 28px; } }
  .h2 span {
    color: var(--color-main); }

.h3 {
  font-size: 32px;
  font-weight: bold;
  line-height: 130%;
  color: var(--color-black); }
  @media (max-width: 639.98px) {
    .h3 {
      font-size: 24px; } }
  .h3 span {
    color: var(--color-main); }

.h4 {
  font-size: 24px;
  font-weight: bold;
  line-height: 130%;
  color: var(--color-black); }
  @media (max-width: 639.98px) {
    .h4 {
      font-size: 20px; } }
  .h4 span {
    color: var(--color-main); }

.h5 {
  font-size: 18px;
  font-weight: bold;
  line-height: 160%;
  color: var(--color-black);
  position: relative; }
  .h5.dot-check {
    padding-left: 32px; }
    .h5.dot-check:before {
      position: absolute;
      left: 0;
      top: 6px;
      content: '';
      background: url("../images/list.svg") left top no-repeat;
      width: 16px;
      height: 16px; }
    .h5.dot-check--20:before {
      width: 20px;
      height: 20px;
      background-size: contain; }

.h6 {
  font-size: 16px;
  font-weight: bold;
  line-height: 160%;
  color: var(--color-black); }

.tag {
  background: var(--color-main);
  border-radius: 20px;
  padding: 9px 16px;
  font-size: 14px;
  line-height: 160%;
  color: var(--color-white); }
  .tag.tag--small {
    max-height: 26px;
    font-size: 12px;
    line-height: 100%;
    padding: 6px 8px; }
  .tag.tag--white {
    color: var(--color-main);
    background: var(--color-white); }
  .tag.tag--white24 {
    color: var(--color-white);
    background: var(--color-white-24); }

.text14 {
  font-size: 14px;
  line-height: 160%; }

.text16 {
  font-size: 16px;
  line-height: 160%;
  font-weight: 500; }

.text18 {
  font-size: 18px;
  line-height: 160%; }

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

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

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

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

.button {
  border: 1px solid var(--color-main);
  background: var(--color-main);
  border-radius: 16px;
  padding: 15px 32px;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-white);
  text-align: center;
  font-weight: 700;
  transition: all .3s ease-out;
  cursor: pointer; }
  .button:hover {
    border-color: var(--color-hover);
    background: var(--color-hover);
    color: var(--color-white); }
  .button--sm {
    border-radius: 8px;
    font-size: 14px;
    line-height: 100%;
    padding: 12px 16px; }
  .button--transparent {
    background: transparent; }
  .button--white {
    border-color: var(--color-white);
    background: var(--color-white);
    color: var(--color-main); }
  .button--white-border {
    border-color: var(--color-white);
    background: transparent;
    color: var(--color-white); }
  .button--gray {
    border-color: var(--color-border);
    background: var(--color-border);
    color: var(--color-main); }

.container {
  max-width: 1280px;
  padding-left: 40px;
  padding-right: 40px;
  min-width: 320px; }
  @media (max-width: 1279.98px) {
    .container {
      max-width: 1024px;
      padding-left: 24px;
      padding-right: 24px; } }
  @media (max-width: 1023.98px) {
    .container {
      max-width: 640px; } }
  @media (max-width: 639.98px) {
    .container {
      padding-left: 16px;
      padding-right: 16px; } }

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

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

.bg-head-v2 {
  background: url(/home/images/home-v2/light.svg) center top 120px no-repeat var(--color-black); }

ul.dot-check {
  font-size: 16px;
  line-height: 160%;
  font-weight: 500;
  list-style: none;
  display: flex;
  flex-flow: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  color: var(--color-gray); }
  ul.dot-check li {
    position: relative;
    padding-left: 32px; }
    ul.dot-check li:before {
      position: absolute;
      left: 0;
      top: 4px;
      content: '';
      background: url("../images/list.svg") left top no-repeat;
      width: 16px;
      height: 16px; }

ol.dot-check {
  font-size: 16px;
  line-height: 160%;
  font-weight: 500;
  list-style: none;
  display: flex;
  flex-flow: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  color: var(--color-gray);
  margin: 0;
  padding: 0;
  counter-reset: item; }
  ol.dot-check li {
    counter-increment: item;
    position: relative;
    padding-left: 32px; }
    ol.dot-check li:before {
      position: absolute;
      left: 0;
      top: 0;
      content: counter(item);
      background: rgba(255, 255, 255, 0.24);
      border-radius: 100%;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 14px; }

.section__header {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px; }
  .section__header .hint {
    font-size: 18px;
    line-height: 160%;
    color: var(--color-gray);
    margin-top: -8px; }

.header {
  background-image: none; }
  .header .menu li a {
    color: #A3A3A3;
    transition: all .3s ease-out; }
    .header .menu li a:hover {
      color: #FFFFFF; }
  @media (max-width: 1279.98px) {
    .header ul.menu {
      position: absolute;
      left: 0;
      right: 0;
      top: 80px;
      background: var(--color-black);
      align-items: center;
      padding: 0 0 24px;
      border-bottom: 1px solid var(--color-main); }
      .header ul.menu li {
        display: block;
        margin: 8px 0;
        padding: 0 16px;
        text-align: center; } }

.main {
  background: var(--color-black);
  min-height: 0;
  padding: 24px 0 80px; }
  .main:after {
    content: none;
    display: none; }
  .main__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px; }
    @media (max-width: 639.98px) {
      .main__header {
        margin-bottom: 40px; } }
    .main__header .logo {
      display: flex;
      gap: 48px;
      align-items: center;
      justify-content: flex-start; }
      @media (max-width: 1279.98px) {
        .main__header .logo {
          gap: 32px; }
          .main__header .logo .header-logo img {
            width: 99px; } }
      .main__header .logo__desc {
        font-size: 16px;
        line-height: 160%;
        font-weight: 500;
        color: var(--color-gray-light);
        position: relative;
        text-align: left; }
        @media (max-width: 1279.98px) {
          .main__header .logo__desc {
            font-size: 14px;
            line-height: 160%; } }
        .main__header .logo__desc:before {
          content: '';
          display: block;
          position: absolute;
          width: 1px;
          top: 5px;
          bottom: 5px;
          left: -24px;
          background: rgba(255, 255, 255, 0.24); }
          @media (max-width: 1279.98px) {
            .main__header .logo__desc:before {
              top: 2px;
              bottom: 2px;
              left: -16px; } }
  .main__block {
    margin-bottom: 80px;
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: 1280px;
    justify-content: space-between; }
    @media (max-width: 1279.98px) {
      .main__block {
        flex-flow: column; } }
    @media (max-width: 639.98px) {
      .main__block {
        margin-bottom: 40px; } }
    .main__block__text {
      text-align: left;
      flex-grow: 1;
      padding: 0;
      display: flex;
      flex-flow: column;
      gap: 40px;
      max-width: 588px;
      color: var(--color-white); }
      @media (max-width: 1279.98px) {
        .main__block__text {
          width: 100%;
          max-width: unset; } }
      @media (max-width: 639.98px) {
        .main__block__text {
          gap: 24px; } }
      .main__block__text__header {
        display: flex;
        flex-flow: column;
        gap: 8px; }
        .main__block__text__header .tag-wrapper {
          display: flex;
          gap: 8px; }
          .main__block__text__header .tag-wrapper .tag {
            padding: 0 16px;
            font-size: 16px;
            line-height: 32px;
            font-weight: 700; }
        .main__block__text__header .subtitle {
          font-size: 18px;
          line-height: 160%;
          color: #FFF; }
      .main__block__text .h2, .main__block__text .h4 {
        color: var(--color-white); }
      .main__block__text ul {
        font-size: 16px;
        line-height: 160%;
        font-weight: 500;
        list-style: none;
        display: flex;
        flex-flow: column;
        gap: 16px;
        align-items: flex-start;
        justify-content: flex-start;
        color: var(--color-gray-light); }
        .main__block__text ul li {
          position: relative;
          padding-left: 32px; }
          .main__block__text ul li:before {
            position: absolute;
            left: 0;
            top: 4px;
            content: '';
            background: url("../images/list.svg") left top no-repeat;
            width: 16px;
            height: 16px; }
      @media (max-width: 1279.98px) {
        .main__block__text a {
          display: none; } }
    @media (max-width: 1279.98px) {
      .main__block__pics {
        display: none; } }
    .main__block__pics .photo {
      position: relative;
      padding-right: 140px;
      z-index: 2; }
      .main__block__pics .photo .black {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
        border-radius: 16px;
        background: var(--color-black); }
        .main__block__pics .photo .black img {
          opacity: 0; }
      .main__block__pics .photo .back {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2 !important;
        margin: 0;
        border-radius: 16px;
        background: var(--color-main);
        filter: blur(80px);
        opacity: 0.64 !important; }
        .main__block__pics .photo .back img {
          opacity: 0; }
      .main__block__pics .photo__desc {
        margin-bottom: 80px;
        transform: translate(0px, 30px) rotate(-15deg);
        transform-origin: bottom center;
        transition: .5s;
        position: relative; }
        .main__block__pics .photo__desc.back {
          z-index: -1 !important; }
        .main__block__pics .photo__desc.black {
          opacity: 0.64; }
      .main__block__pics .photo__korn {
        position: absolute;
        z-index: 1;
        right: 0;
        top: 0;
        transform-origin: bottom center;
        transition: .5s; }
        .main__block__pics .photo__korn.back {
          position: absolute;
          top: 0;
          left: unset;
          right: 0; }
        .main__block__pics .photo__korn.black {
          position: absolute;
          top: 0;
          left: unset;
          right: 0;
          opacity: 0;
          z-index: 2; }
      .main__block__pics .photo:hover .photo__desc {
        transform: translate(140px, 0px) rotate(0deg);
        z-index: 10; }
        .main__block__pics .photo:hover .photo__desc.back {
          z-index: -1; }
        .main__block__pics .photo:hover .photo__desc.black {
          opacity: 0; }
      .main__block__pics .photo:hover .photo__korn {
        transform: translate(-140px, 20px) rotate(-15deg);
        z-index: 5; }
        .main__block__pics .photo:hover .photo__korn.back {
          z-index: -1; }
        .main__block__pics .photo:hover .photo__korn.black {
          opacity: 0.64; }
      .main__block__pics .photo:hover + .photo-desc .h4, .main__block__pics .photo:hover + .photo-desc .text16 {
        color: var(--color-white); }
      .main__block__pics .photo:hover + .photo-desc img {
        display: none; }
      .main__block__pics .photo:hover + .photo-desc img.hover {
        display: block; }
    .main__block__pics .photo-desc {
      position: relative;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      text-align: left;
      width: 330px;
      float: right;
      margin-top: -45px;
      z-index: 5; }
      .main__block__pics .photo-desc img {
        margin-top: 5px; }
      .main__block__pics .photo-desc img.hover {
        display: none; }
      .main__block__pics .photo-desc .h4, .main__block__pics .photo-desc .text16 {
        color: var(--color-gray-light); }
    .main__block__korn {
      display: none; }
      @media (max-width: 1279.98px) {
        .main__block__korn {
          display: flex;
          border: 1px solid var(--color-white-24);
          border-radius: 16px;
          padding: 24px;
          gap: 16px;
          flex-flow: column;
          align-items: center; }
          .main__block__korn .photo {
            max-width: 100%; }
            .main__block__korn .photo__korn {
              display: block;
              width: 280px;
              max-width: calc(100vw - 80px);
              height: 280px;
              max-height: calc(100vw - 80px);
              border-radius: 100%;
              object-fit: cover;
              object-position: center top; }
          .main__block__korn .photo-desc {
            display: flex;
            align-items: center;
            flex-flow: column;
            gap: 24px;
            text-align: center;
            width: 100%; }
            .main__block__korn .photo-desc div {
              width: 100%; }
            .main__block__korn .photo-desc a {
              display: block; } }
  .main .form {
    margin-bottom: 80px;
    border-radius: 24px;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px; }
    .main .form__top {
      display: flex;
      padding: 16px;
      align-items: center;
      justify-content: space-between;
      border-radius: 16px;
      background: var(--color-main); }
      @media (max-width: 639.98px) {
        .main .form__top {
          flex-direction: column;
          align-items: flex-start;
          gap: 16px; } }
      .main .form__top__sale {
        display: flex;
        gap: 8px;
        align-items: center;
        color: var(--color-white);
        font-size: 14px;
        line-height: 160%;
        font-weight: 700; }
        @media (max-width: 639.98px) {
          .main .form__top__sale {
            justify-content: flex-start; } }
        .main .form__top__sale span {
          padding: 0px 12px;
          border-radius: 16px;
          background: var(--color-white);
          color: var(--color-main);
          font-size: 12px;
          line-height: 32px;
          font-weight: 700; }
      .main .form__top__countdown {
        padding: 0 12px;
        border-radius: 16px;
        background: var(--color-white-24);
        white-space: nowrap;
        color: var(--color-white);
        font-size: 14px;
        line-height: 32px;
        font-weight: 700;
        text-align: center; }
        @media (max-width: 639.98px) {
          .main .form__top__countdown {
            width: 100%; } }
        .main .form__top__countdown br {
          display: none; }
    .main .form .pre-form {
      display: flex;
      flex-direction: column;
      gap: 24px; }
      .main .form .pre-form__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 40px;
        grid-row-gap: 27px; }
        @media (max-width: 1023.98px) {
          .main .form .pre-form__content {
            grid-template-columns: 1fr; } }
        .main .form .pre-form__content__item {
          display: flex;
          gap: 16px;
          font-size: 14px;
          line-height: 160%;
          font-weight: 500;
          text-align: left; }
      .main .form .pre-form .button {
        display: block;
        padding-left: 0;
        padding-right: 0;
        width: 100%; }
    .main .form .agree {
      font-size: 12px;
      line-height: 160%;
      font-weight: 500;
      text-align: center; }
      .main .form .agree a {
        text-decoration: underline;
        color: var(--color-black); }
    .main .form.second {
      height: 543px;
      gap: 16px; }
      .main .form.second form {
        display: flex; }
      .main .form.second .pre-form {
        display: none; }
  .main__details {
    height: 240px;
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: 1280px;
    justify-content: space-between; }
    @media (max-width: 1279.98px) {
      .main__details {
        flex-direction: column;
        height: auto; } }
    .main__details__left {
      flex-grow: 1;
      padding: 24px;
      border-radius: 24px;
      background: var(--color-white-08);
      display: flex;
      text-align: left;
      max-width: 588px; }
      @media (max-width: 1279.98px) {
        .main__details__left {
          max-width: unset; } }
      @media (max-width: 639.98px) {
        .main__details__left {
          flex-direction: column;
          padding: 24px 16px; } }
      .main__details__left .col {
        position: relative;
        flex-grow: 1; }
        .main__details__left .col:first-child {
          max-width: 202px;
          padding-right: 40px; }
          @media (max-width: 1279.98px) {
            .main__details__left .col:first-child {
              width: 50%;
              min-width: 50%;
              padding-right: 24px; }
              .main__details__left .col:first-child:first-child {
                max-width: unset; } }
          @media (max-width: 1023.98px) {
            .main__details__left .col:first-child {
              width: auto;
              min-width: unset; }
              .main__details__left .col:first-child:first-child {
                max-width: 202px; } }
          @media (max-width: 639.98px) {
            .main__details__left .col:first-child:first-child {
              max-width: unset; } }
        .main__details__left .col:first-child:after {
          content: '';
          display: block;
          width: 1px;
          height: 100%;
          position: absolute;
          top: 0;
          right: 0;
          background: var(--color-white-24); }
        @media (max-width: 639.98px) {
          .main__details__left .col {
            width: 100%; }
            .main__details__left .col:first-child {
              padding-right: 0;
              padding-bottom: 24px;
              margin-bottom: 24px;
              border-bottom: 1px solid var(--color-white-24); }
            .main__details__left .col:first-child:after {
              display: none; } }
        .main__details__left .col > img {
          margin-bottom: 16px; }
        .main__details__left .col p {
          font-size: 16px;
          line-height: 160%;
          font-weight: 500;
          color: var(--color-white);
          margin: 0; }
      .main__details__left .col.row-wrapper {
        display: flex;
        flex-direction: column;
        gap: 48px;
        padding-left: 24px; }
        @media (max-width: 639.98px) {
          .main__details__left .col.row-wrapper {
            padding-left: 0; } }
        .main__details__left .col.row-wrapper .col-row {
          position: relative;
          display: flex;
          gap: 24px;
          align-items: center; }
          .main__details__left .col.row-wrapper .col-row.with-hover {
            position: relative; }
            .main__details__left .col.row-wrapper .col-row.with-hover .hover-visible {
              display: block;
              position: absolute;
              top: -8px;
              left: 0;
              width: 100%;
              padding: 16px;
              border-radius: 16px;
              border: 1px solid var(--color-white-24);
              background-color: #161826;
              color: var(--color-white);
              font-size: 16px;
              line-height: 160%;
              font-weight: 500;
              font-weight: 700;
              transform: translate(0, -100%);
              opacity: 0;
              z-index: -1;
              transition: all ease-out 0.3s; }
            .main__details__left .col.row-wrapper .col-row.with-hover:hover .hover-visible {
              opacity: 1;
              z-index: 1; }
            .main__details__left .col.row-wrapper .col-row.with-hover img {
              max-width: 64px;
              height: auto; }
          @media (max-width: 1279.98px) {
            .main__details__left .col.row-wrapper .col-row {
              align-items: center; } }
          .main__details__left .col.row-wrapper .col-row:first-child:after {
            content: '';
            display: block;
            width: 100%;
            height: 1px;
            position: absolute;
            bottom: -24px;
            left: 0;
            background: var(--color-white-24); }
    .main__details__slider {
      position: relative;
      width: 282px;
      row-gap: 24px;
      overflow: hidden; }
      @media (max-width: 1279.98px) {
        .main__details__slider {
          overflow: hidden;
          margin-left: calc(488px - 50vw);
          margin-right: calc(488px - 50vw);
          width: auto;
          height: 164px; } }
      @media (max-width: 1023.98px) {
        .main__details__slider {
          margin-left: calc(296px - 50vw);
          margin-right: calc(296px - 50vw); } }
      @media (max-width: 639.98px) {
        .main__details__slider {
          margin-left: -16px;
          margin-right: -16px; } }
      .main__details__slider .track {
        position: absolute;
        white-space: nowrap;
        will-change: transform;
        animation: carrier 7s linear infinite; }
        @media (max-width: 1279.98px) {
          .main__details__slider .track {
            animation: carrier_tablet 18s linear infinite; } }
        @media (max-width: 1023.98px) {
          .main__details__slider .track {
            animation: carrier_tablet2 18s linear infinite; } }
        .main__details__slider .track .content {
          display: flex;
          flex-direction: column; }
          @media (max-width: 1279.98px) {
            .main__details__slider .track .content {
              flex-direction: row; } }
          .main__details__slider .track .content .item {
            height: 64px;
            margin: 0 0 24px;
            background: var(--color-white-08);
            border-radius: 24px;
            padding: 0 24px;
            display: flex;
            gap: 24px;
            align-items: center;
            font-size: 16px;
            line-height: 160%;
            font-weight: 500;
            color: var(--color-white);
            font-weight: 700; }
            @media (max-width: 1279.98px) {
              .main__details__slider .track .content .item {
                height: 164px;
                width: 200px;
                margin: 0 24px 0 0;
                padding: 24px;
                flex-direction: column;
                justify-content: space-between;
                align-items: flex-start; } }
            @media (max-width: 639.98px) {
              .main__details__slider .track .content .item {
                height: 148px;
                width: 180px;
                padding: 16px; } }
            .main__details__slider .track .content .item > div {
              white-space: normal;
              text-align: left; }
@keyframes carrier {
  from {
    transform: translateY(0); }
  to {
    transform: translateY(-528px); } }
@keyframes carrier_tablet {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-1344px); } }
@keyframes carrier_tablet2 {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-1224px); } }
      .main__details__slider:before, .main__details__slider:after {
        content: '';
        display: block;
        width: 100%;
        height: 24px;
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, black 100%);
        z-index: 2; }
        @media (max-width: 1279.98px) {
          .main__details__slider:before, .main__details__slider:after {
            display: none; } }
      .main__details__slider:after {
        top: unset;
        bottom: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%); }
    .main__details__sale {
      width: 282px;
      height: 100%;
      border-radius: 24px;
      background: var(--color-main) url("../images/ega2/sale.png") top -15px center/230px auto no-repeat;
      padding-top: 157px;
      text-align: center;
      color: var(--color-white); }
      @media (max-width: 1279.98px) {
        .main__details__sale {
          width: 100%;
          height: auto;
          padding-top: 154px;
          padding-bottom: 24px; } }
      .main__details__sale__countdown {
        width: 100%;
        white-space: nowrap;
        color: var(--color-white);
        font-size: 24px;
        line-height: 130%;
        font-weight: 700;
        text-align: center; }
        .main__details__sale__countdown br {
          display: none; }
  .main__nums {
    display: flex;
    height: 124px;
    flex-flow: column;
    justify-content: space-between;
    position: relative; }
    .main__nums:nth-child(1):after {
      content: '';
      display: block;
      position: absolute;
      right: -40px;
      top: 0;
      width: 1px;
      height: 100%;
      background: var(--color-white);
      opacity: .16; }
      @media (max-width: 1279.98px) {
        .main__nums:nth-child(1):after {
          right: -16px; } }
    .main__nums:nth-child(1):before {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      bottom: -40px;
      height: 1px;
      width: 100%;
      background: var(--color-white);
      opacity: .16; }
      @media (max-width: 1279.98px) {
        .main__nums:nth-child(1):before {
          bottom: -16px; } }
    .main__nums:nth-child(4):after {
      content: '';
      display: block;
      position: absolute;
      left: -40px;
      top: 0;
      width: 1px;
      height: 100%;
      background: var(--color-white);
      opacity: .16; }
      @media (max-width: 1279.98px) {
        .main__nums:nth-child(4):after {
          left: -16px; } }
    .main__nums:nth-child(4):before {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: -40px;
      height: 1px;
      width: 100%;
      background: var(--color-white);
      opacity: .16; }
      @media (max-width: 1279.98px) {
        .main__nums:nth-child(4):before {
          top: -16px; } }
    .main__nums .num {
      color: var(--color-white); }
    .main__nums .desc {
      font-size: 18px;
      line-height: 160%;
      color: var(--color-gray-light); }

.nums {
  padding-bottom: 80px;
  background: var(--color-black);
  color: var(--color-white); }
  .nums .h2 {
    margin-bottom: 40px;
    color: var(--color-white); }
  .nums__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px; }
    @media (max-width: 1279.98px) {
      .nums__wrapper {
        grid-template-columns: 1fr 1fr; } }
    @media (max-width: 639.98px) {
      .nums__wrapper {
        grid-template-columns: 1fr; } }
    .nums__wrapper .nums-item {
      display: flex;
      flex-direction: column;
      gap: 24px;
      align-items: flex-start;
      justify-content: flex-start;
      position: relative;
      padding: 24px;
      background: var(--color-white-08);
      border-radius: 24px; }
      @media (max-width: 639.98px) {
        .nums__wrapper .nums-item {
          flex-direction: row;
          gap: 16px; } }
      .nums__wrapper .nums-item__num {
        position: relative; }
        .nums__wrapper .nums-item__num img {
          z-index: 2; }
        .nums__wrapper .nums-item__num .back {
          content: '';
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          bottom: 0;
          right: 0;
          background: var(--color-main);
          filter: blur(20px);
          opacity: 0.64;
          z-index: 1; }
      .nums__wrapper .nums-item__text {
        font-size: 18px;
        line-height: 160%;
        color: var(--color-white);
        text-align: left; }
        .nums__wrapper .nums-item__text strong {
          color: var(--color-white); }
  .nums__wrapper-horizontal {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 24px; }
    @media (max-width: 639.98px) {
      .nums__wrapper-horizontal {
        grid-template-columns: 1fr; } }
    .nums__wrapper-horizontal .nums-item {
      flex-direction: row; }
      @media (max-width: 1279.98px) {
        .nums__wrapper-horizontal .nums-item {
          flex-direction: column; } }
      @media (max-width: 639.98px) {
        .nums__wrapper-horizontal .nums-item {
          flex-direction: row;
          gap: 16px; } }

.for-whom {
  padding-bottom: 80px;
  background: var(--color-black);
  color: var(--color-white); }
  .for-whom .h2 {
    margin-bottom: 40px;
    color: var(--color-white); }
  .for-whom__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px; }
    @media (max-width: 1023.98px) {
      .for-whom__wrapper {
        grid-template-columns: 1fr; } }
  .for-whom__item {
    display: flex;
    gap: 24px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px;
    border: 1px solid var(--color-white-08);
    border-radius: 24px; }
    @media (max-width: 1023.98px) {
      .for-whom__item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto minmax(0, 1fr);
        grid-template-row: 1fr 1fr;
        grid-row-gap: 24px;
        grid-column-gap: 40px; } }
    @media (max-width: 639.98px) {
      .for-whom__item {
        display: flex;
        gap: 24px;
        flex-direction: column;
        padding: 24px 16px; } }
    .for-whom__item__title {
      height: 62px;
      font-size: 24px;
      font-weight: 700;
      line-height: 130%;
      text-align: left; }
      @media (max-width: 1023.98px) {
        .for-whom__item__title {
          grid-row: 1 / 2;
          grid-column: 2 / 2; } }
    @media (max-width: 1023.98px) {
      .for-whom__item__image {
        grid-row: 1 / 3;
        grid-column: 1 / 2; } }
    .for-whom__item__image img {
      border-radius: 16px;
      width: 100%; }
    .for-whom__item__text {
      font-size: 16px;
      line-height: 160%;
      font-weight: 500;
      color: var(--color-gray-light);
      text-align: left;
      font-weight: 500; }
      @media (max-width: 1023.98px) {
        .for-whom__item__text {
          grid-row: 2 / 3;
          grid-column: 2 / 2; } }

.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 56px;
  overflow-x: hidden;
  background: var(--color-main); }
  .marquee .track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 4s linear infinite;
    color: var(--color-white);
    font-size: 16px;
    line-height: 56px;
    font-weight: 700; }
    .marquee .track .content {
      display: flex; }
      .marquee .track .content span {
        margin: 0 4px; }

.marquee2 .track {
  animation: marquee2 4s linear infinite; }

@keyframes marquee {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-145.17px); } }
@keyframes marquee2 {
  from {
    transform: translateX(-145.17px); }
  to {
    transform: translateX(0); } }
.gift {
  padding: 80px 0; }
  .gift__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center; }
    @media (max-width: 1279.98px) {
      .gift__block {
        grid-template-columns: 1fr;
        position: relative;
        padding-bottom: 122px; } }
    .gift__block__text {
      display: flex;
      gap: 40px;
      flex-direction: column; }
      .gift__block__text .flex-block {
        display: flex;
        gap: 16px;
        align-items: center;
        font-size: 16px;
        line-height: 160%;
        font-weight: 500;
        font-weight: 500; }
        @media (max-width: 1279.98px) {
          .gift__block__text .flex-block {
            justify-content: center; } }
        @media (max-width: 639.98px) {
          .gift__block__text .flex-block img {
            height: 56px;
            width: auto; } }
      @media (max-width: 1279.98px) {
        .gift__block__text .flex-block-form {
          position: absolute;
          left: 0;
          bottom: 0;
          width: 100%;
          flex-direction: column-reverse; }
          .gift__block__text .flex-block-form .button {
            width: 100%; }
          .gift__block__text .flex-block-form br {
            display: none; } }
      .gift__block__text .h3 {
        margin-bottom: 16px;
        font-size: 56px;
        line-height: 120%; }
        @media (max-width: 1279.98px) {
          .gift__block__text .h3 {
            text-align: center; } }
        @media (max-width: 639.98px) {
          .gift__block__text .h3 {
            font-size: 36px; } }
      .gift__block__text .subtitle {
        font-size: 18px;
        line-height: 160%;
        font-weight: 500; }
        @media (max-width: 1279.98px) {
          .gift__block__text .subtitle {
            text-align: center; } }
      .gift__block__text ul {
        gap: 8px; }
    .gift__block__pic {
      display: flex;
      justify-content: center;
      align-items: center; }
      .gift__block__pic .image-wrapper {
        position: relative; }
        .gift__block__pic .image-wrapper img {
          max-width: 100%;
          position: relative;
          z-index: 2; }
        .gift__block__pic .image-wrapper .back {
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          background: var(--color-main);
          filter: blur(80px);
          opacity: 0.64;
          z-index: 1; }

.how {
  padding: 80px 0; }
  .how__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center; }
    @media (max-width: 1279.98px) {
      .how__block {
        display: flex;
        flex-direction: column;
        gap: 40px; } }
    .how__block__title {
      grid-column: 1 / 2;
      grid-row: 1 / 2;
      margin-bottom: 16px;
      font-size: 56px;
      line-height: 120%;
      align-self: flex-end; }
      @media (max-width: 1279.98px) {
        .how__block__title {
          width: 100%; } }
    .how__block ul {
      grid-column: 1 / 2;
      grid-row: 2 / 3;
      align-self: start;
      gap: 8px;
      padding-right: 120px; }
      @media (max-width: 1279.98px) {
        .how__block ul {
          padding-right: 0; } }
    .how__block__pic {
      grid-column: 2 / 3;
      grid-row: 1 / 3;
      display: flex;
      justify-content: center;
      align-items: center; }
      .how__block__pic img {
        max-width: 100%; }
        @media (max-width: 1279.98px) {
          .how__block__pic img {
            width: 588px; } }

.space {
  width: 100%;
  height: 40px;
  background: var(--color-white); }

.form-wrapper {
  position: relative;
  padding: 80px 0 40px;
  background: #FFF; }
  .form-wrapper .container {
    display: flex; }
  .form-wrapper .form {
    margin-left: 24px;
    margin-bottom: 80px;
    position: sticky;
    top: 40px;
    width: 282px;
    min-width: 282px;
    height: 507px;
    border-radius: 24px;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px; }
    .form-wrapper .form form {
      display: none; }
    @media (max-width: 1279.98px) {
      .form-wrapper .form {
        display: none; } }
    .form-wrapper .form__top {
      display: flex;
      padding: 16px;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      align-self: stretch;
      border-radius: 16px;
      background: var(--color-main); }
      .form-wrapper .form__top__sale {
        display: flex;
        gap: 8px;
        align-items: center;
        color: var(--color-white);
        font-size: 14px;
        line-height: 160%;
        font-weight: 700; }
        .form-wrapper .form__top__sale span {
          padding: 0px 12px;
          border-radius: 16px;
          background: var(--color-white);
          color: var(--color-main);
          font-size: 12px;
          line-height: 32px;
          font-weight: 700; }
      .form-wrapper .form__top__countdown {
        width: 100%;
        border-radius: 16px;
        background: var(--color-white-24);
        white-space: nowrap;
        color: var(--color-white);
        font-size: 14px;
        line-height: 32px;
        font-weight: 700;
        text-align: center; }
        .form-wrapper .form__top__countdown br {
          display: none; }
    .form-wrapper .form .pre-form {
      display: flex;
      flex-direction: column;
      gap: 24px; }
      .form-wrapper .form .pre-form__content {
        display: flex;
        flex-direction: column;
        gap: 15px; }
        .form-wrapper .form .pre-form__content__item {
          display: flex;
          gap: 16px;
          font-size: 14px;
          line-height: 160%;
          font-weight: 500; }
      .form-wrapper .form .pre-form .button {
        padding-left: 0;
        padding-right: 0;
        width: 100%; }
    .form-wrapper .form .agree {
      font-size: 12px;
      line-height: 160%;
      font-weight: 500;
      text-align: center; }
      .form-wrapper .form .agree a {
        text-decoration: underline;
        color: var(--color-black); }
    .form-wrapper .form.second {
      height: 543px;
      gap: 16px; }
      .form-wrapper .form.second form {
        display: flex; }
      .form-wrapper .form.second .pre-form {
        display: none; }

.form-wrapper1 .left-wrapper {
  padding-bottom: 80px; }

.program {
  padding: 0 0 80px 0; }
  .program__header {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start; }
    @media (max-width: 1023.98px) {
      .program__header {
        grid-template-columns: 1fr;
        gap: 24px; } }
    .program__header__right {
      display: flex;
      flex-direction: column;
      gap: 16px; }
      .program__header__right__bottom {
        display: flex;
        align-items: center;
        gap: 16px;
        font-weight: 500;
        font-size: 24px;
        line-height: 160%; }
        .program__header__right__bottom .tag {
          border-radius: 16px;
          padding: 0 12px;
          line-height: 32px;
          font-weight: 700; }
    .program__header .h6 {
      font-size: 24px;
      line-height: 160%;
      font-weight: 500; }
      .program__header .h6 span {
        color: var(--color-main); }
  .program__list {
    position: relative; }
    .program__list__hidden {
      display: none; }
    .program__list__white_grad {
      display: none;
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 190px;
      background: linear-gradient(0deg, white 0%, white 10%, rgba(255, 255, 255, 0) 100%); }
    .program__list__item {
      padding: 40px 0;
      border-top: 1px solid var(--color-light); }
      .program__list__item__title {
        position: relative;
        margin: 0 0 16px;
        font-size: 24px;
        line-height: 130%;
        font-weight: 700; }
        .program__list__item__title:after {
          content: '';
          position: absolute;
          display: block;
          right: 0;
          top: 0;
          height: 32px;
          width: 32px;
          border-radius: 16px;
          background: var(--color-light) url("../images/ega2/arrow_down.svg") center no-repeat; }
      .program__list__item.dropdown .program__list__item__title {
        cursor: pointer; }
        .program__list__item.dropdown .program__list__item__title:after {
          content: '';
          position: absolute;
          display: block;
          right: 0;
          top: 0;
          height: 32px;
          width: 32px;
          border-radius: 16px;
          background: var(--color-light) url("../images/ega2/arrow_down.svg") center no-repeat; }
      .program__list__item.dropdown .program__list__item__hidden {
        display: none;
        padding-top: 40px; }
      .program__list__item.dropdown.open .program__list__item__title:after {
        transform: rotate(180deg); }
      .program__list__item__tags {
        display: flex;
        gap: 8px; }
        .program__list__item__tags__tag {
          display: flex;
          height: 24px;
          padding: 0 8px;
          border-radius: 20px;
          background: var(--color-light);
          align-items: center;
          gap: 8px;
          font-size: 14px;
          line-height: 160%;
          font-weight: 500;
          color: var(--color-main); }
      .program__list__item__hidden__title {
        position: relative;
        margin: 24px 0 40px;
        padding-left: 28px;
        font-size: 18px;
        line-height: 160%;
        font-weight: 700; }
        .program__list__item__hidden__title:after {
          content: '';
          position: absolute;
          display: block;
          left: 0;
          top: 0;
          height: 100%;
          width: 4px;
          border-radius: 2px;
          background: var(--color-main); }
      .program__list__item__hidden__info-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr; }
        @media (max-width: 1023.98px) {
          .program__list__item__hidden__info-wrapper {
            grid-template-columns: 1fr; }
            .program__list__item__hidden__info-wrapper .program__list__item__hidden__list + .program__list__item__hidden__list {
              padding-top: 40px; } }
      .program__list__item__hidden__list > div {
        display: flex;
        gap: 16px;
        align-items: flex-start;
        color: var(--color-gray); }
        .program__list__item__hidden__list > div img {
          margin-top: 6px; }
  .program .button {
    display: flex;
    justify-content: center;
    gap: 16px;
    cursor: pointer; }
    .program .button .program-closed {
      display: none; }
  .program.closed .program__list__white_grad {
    display: block; }
  .program.closed .button img {
    transform: rotate(180deg); }
  .program.closed .button .program-open {
    display: none; }
  .program.closed .button .program-closed {
    display: inline; }

.result {
  margin: 0 0 80px 0;
  border-radius: 16px;
  background: var(--color-light); }
  @media (max-width: 639.98px) {
    .result {
      margin-bottom: 0; } }
  .result__header {
    padding: 0 16px;
    border-bottom: 1px solid var(--color-border);
    line-height: 40px;
    font-size: 14px;
    font-weight: 700; }
  .result__content {
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 80px;
    grid-column-gap: 40px; }
    @media (max-width: 1023.98px) {
      .result__content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 24px; } }
    @media (max-width: 639.98px) {
      .result__content {
        padding: 24px 16px; } }
    .result__content__title {
      font-size: 24px;
      line-height: 160%;
      font-weight: 500;
      grid-row: 1 / 2;
      grid-column: 1 / 2; }
    .result__content__price {
      display: flex;
      gap: 16px;
      font-size: 16px;
      line-height: 160%;
      font-weight: 500;
      font-weight: 700;
      grid-row: 2 / 3;
      grid-column: 1 / 2; }
    .result__content__image {
      text-align: center;
      grid-row: 1 / 3;
      grid-column: 2 / 3;
      align-self: end; }
      .result__content__image img {
        max-width: 100%; }

.certificate {
  padding: 80px 0;
  position: relative;
  z-index: 0; }
  .certificate .back-black {
    position: absolute;
    width: calc(100vw - 12px);
    height: 100%;
    background: var(--color-black);
    left: calc(600px - 50vw);
    top: 0;
    display: block;
    z-index: -1; }
    @media (max-width: 1279.98px) {
      .certificate .back-black {
        width: 100vw;
        left: calc(488px - 50vw); } }
    @media (max-width: 1023.98px) {
      .certificate .back-black {
        left: calc(296px - 50vw); } }
    @media (max-width: 639.98px) {
      .certificate .back-black {
        left: -16px; } }
  .certificate .h2 {
    margin-bottom: 24px; }
  .certificate .h6 {
    margin-bottom: 80px;
    font-size: 24px;
    line-height: 160%;
    font-weight: 500; }
  .certificate .images {
    position: relative;
    display: flex;
    gap: 24px;
    z-index: 1; }
    @media (max-width: 639.98px) {
      .certificate .images {
        flex-direction: column; } }
    .certificate .images .image-wrapper {
      position: relative; }
      .certificate .images .image-wrapper:first-child {
        max-width: 226px; }
      .certificate .images .image-wrapper:last-child {
        max-width: 486px; }
      .certificate .images .image-wrapper img {
        max-width: 100%; }
    .certificate .images .back {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--color-main);
      filter: blur(80px);
      opacity: 0.64;
      z-index: -1; }

.why {
  padding: 80px 0 40px; }
  .why .h2 {
    margin-bottom: 8px; }
    .why .h2 span {
      color: var(--color-main); }
  .why .h6 {
    font-size: 18px;
    line-height: 160%;
    font-weight: 500; }

.book {
  overflow: visible;
  padding-bottom: 40px;
  margin-top: -110px; }
  .book__block {
    background: var(--color-main);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 160px; }
    @media (max-width: 1279.98px) {
      .book__block {
        flex-flow: column;
        gap: 8px;
        padding: 40px 16px; } }
  .book__pic {
    margin-top: -35px;
    height: 285px; }
    @media (max-width: 1279.98px) {
      .book__pic {
        margin-top: 0;
        height: auto; } }
  .book__text {
    max-width: 480px;
    color: var(--color-white);
    display: flex;
    gap: 16px;
    flex-flow: column; }
    .book__text__tags {
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 16px;
      text-align: left; }
    .book__text .h4 {
      color: var(--color-white); }

#course-parent {
  position: relative; }

.course {
  padding-top: 0;
  display: flex;
  flex-direction: column; }
  .course .cards-line-author {
    order: 1; }
  .course .cards-line-home {
    order: 2; }
  .course .cards-line-chat {
    order: 3; }
  .course .cards-line-club {
    order: 4; }
  .course .cards-line-chat2 {
    order: 8; }
  .course .cards-line-format {
    order: 9; }
  .course .cards-line-lesson {
    order: 5; }
  .course .cards-line-job {
    order: 6; }
  .course .cards-line-job2 {
    order: 10; }
  .course .cards-line-lic {
    order: 7; }
  @media (max-width: 1279.98px) {
    .course .cards-line-author {
      order: 1; }
    .course .cards-line-home {
      order: 2; }
    .course .cards-line-chat {
      order: 8; }
    .course .cards-line-club {
      order: 9; }
    .course .cards-line-chat2 {
      order: 3; }
    .course .cards-line-format {
      order: 4; }
    .course .cards-line-lesson {
      order: 5; }
    .course .cards-line-job {
      order: 10; }
    .course .cards-line-job2 {
      order: 6; }
    .course .cards-line-lic {
      order: 7; } }
  .course .h1 {
    text-align: center;
    margin-bottom: 40px; }
  .course .cards-line {
    margin: 24px 0; }
    .course .cards-line:last-child {
      margin-bottom: 0; }
  .course .cards-line1 {
    display: grid;
    gap: 24px;
    grid-template-columns: 2fr 1fr; }
    @media (max-width: 639.98px) {
      .course .cards-line1 {
        grid-template-columns: 1fr; } }
  .course .cards-line2 {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr; }
    @media (max-width: 1023.98px) {
      .course .cards-line2 {
        grid-template-columns: 1fr; } }
  .course .cards-line3 {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 2fr; }
    @media (max-width: 639.98px) {
      .course .cards-line3 {
        grid-template-columns: 1fr; } }
  .course .course-card {
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: var(--color-light); }
    .course .course-card--white {
      background: var(--color-white); }
    .course .course-card--main {
      background: var(--color-main); }
    .course .course-card--projects {
      background: url("../images/ega2/card_projects.png") left bottom/auto 100% no-repeat var(--color-main);
      background-size: contain;
      min-height: 405px; }
      @media (max-width: 639.98px) {
        .course .course-card--projects {
          padding-bottom: 240px;
          width: auto; } }
      .course .course-card--projects .course-card__header {
        border-color: var(--color-white-24); }
    .course .course-card--format {
      background-image: url(../images/ega2/card_format.png), url(../images/ega2/card_format_light.svg);
      background-position: left top 20px;
      background-size: auto, auto;
      background-repeat: no-repeat;
      background-color: var(--color-black);
      min-height: 405px; }
      .course .course-card--format .course-card__header {
        border-color: var(--color-white-24); }
    .course .course-card--lesson {
      background: var(--color-white) url("../images/ega2/card_lesson.png") left bottom/375px auto no-repeat; }
      @media (max-width: 1023.98px) {
        .course .course-card--lesson {
          background-position: left -90px bottom; } }
      @media (max-width: 639.98px) {
        .course .course-card--lesson {
          grid-template-columns: 1fr;
          gap: 24px;
          background: var(--color-white) url("../images/ega2/card_lesson_mob.png") left top 160px/auto no-repeat; } }
    .course .course-card__header {
      font-size: 14px;
      line-height: 160%;
      font-weight: bold;
      padding: 9px 16px;
      border-bottom: 1px solid var(--color-white-24); }
  .course .course-card-author {
    padding: 32px;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr; }
    @media (max-width: 1279.98px) {
      .course .course-card-author {
        gap: 24px; } }
    @media (max-width: 1023.98px) {
      .course .course-card-author {
        padding: 24px; } }
    @media (max-width: 639.98px) {
      .course .course-card-author {
        grid-template-columns: 1fr;
        padding: 24px 16px; } }
    .course .course-card-author__name {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      flex-flow: column;
      gap: 24px; }
      .course .course-card-author__name img {
        width: 128px; }
  .course .course-card-homework {
    padding: 32px;
    gap: 24px;
    display: grid;
    grid-template-columns: 1fr; }
    @media (max-width: 1023.98px) {
      .course .course-card-homework {
        padding: 24px; } }
    @media (max-width: 639.98px) {
      .course .course-card-homework {
        padding: 24px 16px; } }
    .course .course-card-homework .h3, .course .course-card-homework .h6 {
      color: var(--color-main); }
    @media (max-width: 1279.98px) {
      .course .course-card-homework .wrapper-club {
        text-align: center; }
        .course .course-card-homework .wrapper-club img {
          margin: 0 auto; } }
    .course .course-card-homework img {
      width: 316px;
      max-width: 100%;
      display: block;
      margin: 0 auto; }
    .course .course-card-homework .image-club {
      width: 211px;
      margin: 0; }
  .course .course-card-knowledge {
    background-image: url(../images/ega2/card_knowledge.png), url(../images/ega2/card_knowledge_light.svg);
    background-position: left top;
    background-size: 100% auto, auto;
    background-repeat: no-repeat;
    background-color: var(--color-black); }
    @media (max-width: 1023.98px) {
      .course .course-card-knowledge {
        min-height: 388px; } }
  .course .body-knowledge {
    padding: 32px;
    gap: 24px;
    display: grid;
    grid-template-columns: 1fr;
    width: 330px; }
    @media (max-width: 1023.98px) {
      .course .body-knowledge {
        padding: 24px; } }
    @media (max-width: 639.98px) {
      .course .body-knowledge {
        padding: 24px 16px; } }
  .course .body-support {
    padding: 32px;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr; }
    @media (max-width: 1279.98px) {
      .course .body-support {
        grid-template-columns: 1fr; } }
    @media (max-width: 1023.98px) {
      .course .body-support {
        padding: 24px; } }
    @media (max-width: 639.98px) {
      .course .body-support {
        padding: 24px 16px; } }
    .course .body-support__text {
      gap: 24px;
      display: flex;
      flex-flow: column;
      align-items: flex-start;
      justify-content: flex-start; }
    .course .body-support__pic {
      display: flex;
      flex-flow: column;
      align-items: flex-end;
      justify-content: flex-end; }
      .course .body-support__pic img {
        max-width: 100%; }
  .course .course-card-projects {
    padding: 32px;
    gap: 16px;
    display: flex;
    flex-flow: column; }
    @media (max-width: 1023.98px) {
      .course .course-card-projects {
        padding: 24px; } }
    @media (max-width: 639.98px) {
      .course .course-card-projects {
        padding: 24px 16px; } }
  .course .course-card--job {
    display: flex;
    flex-flow: column;
    position: relative;
    min-height: 310px; }
    @media (max-width: 1279.98px) {
      .course .course-card--job .course-card__body {
        max-width: 501px; } }
    .course .course-card--job .image-wrapper {
      margin: -24px 0 32px;
      text-align: center; }
      @media (max-width: 1279.98px) {
        .course .course-card--job .image-wrapper {
          position: absolute;
          right: 32px;
          bottom: 32px;
          width: 371px;
          margin: 0; } }
      @media (max-width: 1023.98px) {
        .course .course-card--job .image-wrapper {
          position: static;
          margin: 0 auto 24px; } }
      @media (max-width: 639.98px) {
        .course .course-card--job .image-wrapper {
          width: unset; } }
      .course .course-card--job .image-wrapper img {
        max-width: 100%; }
  .course .body-lesson {
    padding: 32px;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
    min-height: 402px; }
    @media (max-width: 1279.98px) {
      .course .body-lesson {
        gap: 24px; } }
    @media (max-width: 1023.98px) {
      .course .body-lesson {
        padding: 24px; } }
    @media (max-width: 639.98px) {
      .course .body-lesson {
        padding: 24px 16px;
        grid-template-columns: 1fr;
        gap: 24px; } }
    .course .body-lesson__text {
      gap: 24px;
      display: flex;
      flex-flow: column;
      align-items: flex-start;
      justify-content: flex-start; }
    .course .body-lesson__main {
      gap: 8px;
      display: flex;
      flex-flow: column;
      align-items: flex-start;
      justify-content: flex-start; }
      @media (max-width: 639.98px) {
        .course .body-lesson__main {
          padding-bottom: 330px; } }
  .course .course-card-license {
    padding: 32px 32px 0;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr; }
    @media (max-width: 1023.98px) {
      .course .course-card-license {
        position: relative;
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 24px 0; } }
    @media (max-width: 639.98px) {
      .course .course-card-license {
        padding: 24px 16px 0; } }
    .course .course-card-license__text {
      gap: 24px;
      display: flex;
      flex-flow: column;
      align-items: flex-start;
      justify-content: flex-start; }
      @media (max-width: 1023.98px) {
        .course .course-card-license__text {
          padding-right: 92px; } }
      @media (max-width: 1023.98px) {
        .course .course-card-license__text {
          padding-top: 96px;
          padding-right: 0; } }
    .course .course-card-license__main {
      gap: 25px;
      display: flex;
      flex-flow: column;
      align-items: flex-start;
      justify-content: flex-start; }
      @media (max-width: 1023.98px) {
        .course .course-card-license__main {
          align-items: stretch; } }
      .course .course-card-license__main .moscow {
        width: 100%;
        text-align: right; }
        @media (max-width: 1023.98px) {
          .course .course-card-license__main .moscow {
            position: absolute;
            top: 24px;
            right: 24px; } }
        @media (max-width: 639.98px) {
          .course .course-card-license__main .moscow {
            right: unset;
            left: 16px;
            text-align: left; } }
      @media (max-width: 1023.98px) {
        .course .course-card-license__main .cert-pic {
          text-align: right; } }
      .course .course-card-license__main .cert-pic img {
        max-width: 100%; }

.practice {
  padding: 80px 0;
  background: url("../images/edu/korn-light.png") center 0px no-repeat; }
  .practice__block {
    column-gap: 102px;
    row-gap: 0;
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    grid-template-rows: 1fr min-content; }
    @media (max-width: 1279.98px) {
      .practice__block {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: minmax(0, 1fr) auto auto;
        grid-row-gap: 80px;
        grid-column-gap: 24px; } }
    @media (max-width: 1023.98px) {
      .practice__block {
        display: flex;
        flex-direction: column;
        gap: 40px; } }
  .practice__text {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    grid-row: 1 / 2;
    grid-column: 1 / 2; }
  .practice__quote {
    padding: 24px;
    border: 1px solid var(--color-white-24);
    border-radius: 16px;
    display: flex;
    flex-flow: column;
    gap: 16px;
    grid-row: 2 / 3;
    grid-column: 1 / 2; }
  .practice__pic {
    grid-row: 1 / 3;
    grid-column: 2 / 3; }
    .practice__pic img {
      max-width: 432px; }
    @media (max-width: 1279.98px) {
      .practice__pic img {
        max-width: 100%; } }
    .practice__pic .money {
      margin-top: -200px;
      position: relative;
      width: 432px;
      height: auto;
      max-width: 100%; }
      .practice__pic .money .money20 {
        position: absolute;
        top: 58px;
        left: 0;
        z-index: 2; }
      .practice__pic .money .money30 {
        position: absolute;
        bottom: 0;
        right: 0; }
    .practice__pic__info {
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px; }
      .practice__pic__info div {
        padding-bottom: 16px; }
        .practice__pic__info div:first-child {
          border-right: 1px solid var(--color-white-24);
          padding-right: 24px; }
    .practice__pic__channel {
      margin: 0 auto;
      display: flex;
      gap: 16px;
      align-items: center;
      justify-content: flex-start;
      padding-top: 16px;
      border-top: 1px solid var(--color-white-24); }
      .practice__pic__channel a {
        display: flex; }
        .practice__pic__channel a svg:hover rect {
          fill: var(--color-hover); }
  .practice__logo {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 80px;
    grid-row: 1 / 3;
    grid-column: 3 / 4; }
    @media (max-width: 1279.98px) {
      .practice__logo {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 24px;
        grid-row-gap: 40px; }
        .practice__logo > div {
          width: 100%; } }
    @media (max-width: 1023.98px) {
      .practice__logo {
        grid-template-columns: 1fr; } }
    .practice__logo__list {
      position: relative;
      max-width: 100%;
      width: 282px;
      height: 56px;
      overflow-x: hidden;
      margin: 16px 0 0; }
      @media (max-width: 1279.98px) {
        .practice__logo__list {
          width: 476px;
          max-width: 100%;
          margin-bottom: 0; } }
      @media (max-width: 639.98px) {
        .practice__logo__list {
          width: unset;
          max-width: calc(100vw - 16px); } }
      .practice__logo__list:after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        display: block;
        width: 56px;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, black 100%); }
      .practice__logo__list.list-brand {
        display: flex;
        gap: 8px; }
        .practice__logo__list.list-brand:after {
          display: none; }
      .practice__logo__list .track {
        position: absolute;
        will-change: transform; }
        .practice__logo__list .track .content {
          display: flex;
          align-items: center; }
          .practice__logo__list .track .content .item {
            display: block;
            height: 56px;
            border: none;
            border-radius: 16px;
            background: var(--color-white-08);
            margin: 0 8px 0 0; }
      .practice__logo__list.list-strategy .track {
        animation: strategy 22s linear infinite; }
      .practice__logo__list.list-school .track {
        animation: school 10s linear infinite; }
      .practice__logo__list.list-saas .track {
        animation: saas 7s linear infinite; }

@keyframes strategy {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-2239px); } }
@keyframes school {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-940px); } }
@keyframes saas {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-616px); } }
.video {
  position: relative;
  overflow: hidden; }
  .video .container {
    padding: 40px 0; }
  .video__back {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
    .video__back:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(180deg, rgba(2, 3, 20, 0.88) 0%, rgba(2, 3, 20, 0.72) 24%, rgba(2, 3, 20, 0.32) 50%, rgba(2, 3, 20, 0.72) 76%, rgba(2, 3, 20, 0.88) 100%); }
    .video__back .video {
      height: 100%;
      width: 177.77777778vh;
      /* 100 * 16 / 9 */
      min-width: 100%;
      min-height: 56.25vw;
      /* 100 * 9 / 16 */ }
  .video__block {
    height: 470px;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: space-between; }
    .video__block .ega-logo {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 24px; }
    .video__block .video-desc {
      display: flex;
      flex-flow: column;
      gap: 24px;
      align-items: flex-start;
      justify-content: flex-start;
      max-width: 496px; }

.numbers {
  display: block;
  padding-bottom: 80px; }
  @media (max-width: 1023.98px) {
    .numbers {
      padding-bottom: 0; } }
  .numbers__table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--color-white-24); }
    @media (max-width: 1279.98px) {
      .numbers__table {
        margin-left: -24px;
        margin-right: 0; } }
    @media (max-width: 639.98px) {
      .numbers__table {
        grid-template-columns: 1fr;
        border-bottom: 0;
        margin-right: 0; } }
    .numbers__table .number {
      position: relative;
      display: flex;
      flex-flow: column;
      justify-content: space-between;
      padding: 24px 40px;
      border-left: 1px solid var(--color-white-24);
      gap: 16px; }
      @media (max-width: 1279.98px) {
        .numbers__table .number {
          padding: 24px; } }
      .numbers__table .number .back {
        content: '';
        position: absolute;
        display: block;
        width: 80px;
        height: 80px;
        background: var(--color-main);
        filter: blur(80px); }
        @media (max-width: 639.98px) {
          .numbers__table .number .back {
            filter: blur(60px); } }
      .numbers__table .number:first-child {
        border-left: 0; }
        .numbers__table .number:first-child .back {
          left: 0;
          bottom: 0; }
      .numbers__table .number:nth-child(2) .back {
        right: 50%;
        transform: translate(50%, 0);
        bottom: 0; }
      .numbers__table .number:nth-child(3) .back {
        right: 0;
        bottom: 0; }
      @media (max-width: 639.98px) {
        .numbers__table .number {
          border-left: 0; } }
  .numbers__year {
    margin: 40px 0 80px;
    display: flex;
    gap: 24px;
    flex-flow: column;
    align-items: flex-start; }
  .numbers__about {
    border-top: 1px solid var(--color-white-24);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    margin-bottom: 40px; }
    @media (max-width: 1023.98px) {
      .numbers__about {
        grid-template-columns: 1fr;
        border-bottom: 0; } }
    @media (max-width: 639.98px) {
      .numbers__about {
        grid-template-columns: 1fr;
        border-bottom: 0; } }
    .numbers__about .element {
      padding-top: 80px; }
      .numbers__about .element:first-child {
        padding-right: 40px;
        border-right: 1px solid var(--color-white-24); }
        @media (max-width: 1023.98px) {
          .numbers__about .element:first-child {
            padding-right: 0;
            border-right: 0; } }
      .numbers__about .element:last-child {
        padding-left: 40px; }
        @media (max-width: 639.98px) {
          .numbers__about .element:last-child {
            padding-left: 0px; } }
  .numbers__license {
    display: grid;
    gap: 80px;
    grid-template-columns: 1fr 1fr; }
    @media (max-width: 1023.98px) {
      .numbers__license {
        grid-template-columns: 1fr; } }
    .numbers__license .license-text {
      display: flex;
      flex-flow: column;
      gap: 40px; }
      @media (max-width: 1023.98px) {
        .numbers__license .license-text {
          position: relative;
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 40px; } }
      .numbers__license .license-text:after {
        content: '';
        display: block;
        position: absolute;
        bottom: -40px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--color-gray); }
      @media (max-width: 1023.98px) {
        .numbers__license .license-text {
          grid-template-columns: 1fr;
          gap: 16px; } }
      .numbers__license .license-text__num {
        margin-bottom: 8px; }
        .numbers__license .license-text__num .h2 span {
          color: var(--color-white); }
    .numbers__license .license-pic {
      position: relative; }
      .numbers__license .license-pic img {
        position: absolute;
        left: -110px;
        top: -120px;
        max-width: 100%; }
        @media (max-width: 1279.98px) {
          .numbers__license .license-pic img {
            position: static;
            margin-top: -150px; } }

.cert {
  padding: 80px 0 0;
  margin-bottom: 80px; }
  @media (max-width: 639.98px) {
    .cert {
      display: none; } }
  .cert__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center; }
    @media (max-width: 1279.98px) {
      .cert__block {
        grid-template-columns: 1fr; } }
    .cert__block__text .h3 {
      margin-bottom: 40px; }
    .cert__block__text .h6 {
      margin-bottom: 16px; }
    .cert__block__text ul {
      gap: 8px; }
    .cert__block__pic img {
      max-width: 100%; }

.capability {
  padding: 80px 0 0; }
  .capability__header {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px; }
  .capability__list {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 40px 0; }
  .capability__block {
    background: var(--color-light);
    border-radius: 24px;
    display: flex;
    width: 100%;
    max-width: 1280px;
    align-items: center; }
    @media (max-width: 1279.98px) {
      .capability__block {
        flex-flow: column;
        padding: 40px 16px;
        gap: 24px; } }
    .capability__block:nth-child(even) {
      flex-direction: row-reverse; }
      @media (max-width: 1279.98px) {
        .capability__block:nth-child(even) {
          flex-flow: column; } }
    .capability__block__text {
      width: 50%;
      padding: 40px 40px 40px 126px; }
      @media (max-width: 1279.98px) {
        .capability__block__text {
          width: 100%;
          padding: 0; } }
      .capability__block__text ul {
        list-style: none;
        display: flex;
        flex-flow: column;
        gap: 16px;
        align-items: flex-start;
        justify-content: flex-start;
        font-size: 16px;
        line-height: 160%;
        color: var(--color-gray);
        margin: 24px 0 40px; }
        .capability__block__text ul li {
          position: relative;
          padding-left: 32px; }
          .capability__block__text ul li:before {
            position: absolute;
            left: 0;
            top: 4px;
            content: '';
            background: url("../images/list.svg") left top no-repeat;
            width: 16px;
            height: 16px; }
      .capability__block__text .buttons {
        display: block; }
        .capability__block__text .buttons .button {
          display: inline-flex; }
        @media (max-width: 1279.98px) {
          .capability__block__text .buttons .button {
            display: block; } }
      .capability__block__text .extra-info {
        display: flex;
        flex-flow: column;
        gap: 16px;
        margin: 40px 0; }
        .capability__block__text .extra-info__soc {
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          justify-content: flex-start;
          gap: 16px; }
          .capability__block__text .extra-info__soc .h6 {
            line-height: 24px;
            color: var(--color-main); }
    .capability__block__video {
      width: 50%;
      padding: 40px; }
      @media (max-width: 1279.98px) {
        .capability__block__video {
          width: 100%;
          padding: 0; } }
      .capability__block__video video {
        width: 100%;
        height: auto; }
    .capability__block__cases {
      width: 50%;
      padding: 40px;
      display: flex;
      gap: 24px;
      flex-flow: column;
      justify-content: flex-start;
      align-items: flex-start; }
      @media (max-width: 1279.98px) {
        .capability__block__cases {
          width: 100%;
          padding: 0; } }
    .capability__block__cases-list {
      width: 100%; }
      @media (max-width: 1279.98px) {
        .capability__block__cases-list {
          width: calc(100% + 22px);
          margin: 0 -7.5px; } }
    .capability__block__cases-buttons {
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 16px; }
      .capability__block__cases-buttons button {
        display: block;
        background: transparent;
        width: 40px;
        height: 40px;
        border-radius: 40px;
        border: 1px solid var(--color-main);
        background: url("../images/arrow-case.svg") center center no-repeat;
        background-size: 24px 24px; }
        .capability__block__cases-buttons button.next {
          transform: rotate(180deg); }
  .capability__case {
    border: 1px solid var(--color-border);
    background: var(--color-white);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 70px;
    flex-flow: column; }
    @media (max-width: 1279.98px) {
      .capability__case {
        margin: 0 7.5px; } }
    .capability__case__main {
      display: flex;
      gap: 24px;
      flex-flow: column;
      align-items: flex-start;
      justify-content: flex-start; }
    .capability__case__header {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      justify-content: space-between; }
      .capability__case__header .h4 div {
        margin-top: 8px; }
    .capability__case__ad {
      display: flex;
      gap: 8px;
      flex-flow: column;
      align-items: flex-start;
      justify-content: flex-start; }
      .capability__case__ad .ad {
        display: flex;
        gap: 16px;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap; }
    .capability__case__info {
      display: grid;
      gap: 32px;
      grid-template-columns: 1fr 1fr 1fr; }
      @media (max-width: 1279.98px) {
        .capability__case__info {
          grid-template-columns: 1fr 1fr; } }
      .capability__case__info .capability__case__item:nth-child(3n + 1):before {
        display: none; }
        @media (max-width: 1279.98px) {
          .capability__case__info .capability__case__item:nth-child(3n + 1):before {
            display: block; } }
      .capability__case__info .capability__case__item:nth-child(1):after, .capability__case__info .capability__case__item:nth-child(2):after, .capability__case__info .capability__case__item:nth-child(3):after {
        display: none; }
        @media (max-width: 1279.98px) {
          .capability__case__info .capability__case__item:nth-child(1):after, .capability__case__info .capability__case__item:nth-child(2):after, .capability__case__info .capability__case__item:nth-child(3):after {
            display: block; } }
      @media (max-width: 1279.98px) {
        .capability__case__info .capability__case__item:nth-child(2n + 1):before {
          display: none; }
        .capability__case__info .capability__case__item:nth-child(1):after, .capability__case__info .capability__case__item:nth-child(2):after {
          display: none; } }
      .capability__case__info--2 {
        grid-template-columns: 1fr 1fr; }
        .capability__case__info--2 .capability__case__item:nth-child(3n + 1):before {
          display: block; }
        .capability__case__info--2 .capability__case__item:nth-child(1):after, .capability__case__info--2 .capability__case__item:nth-child(2):after, .capability__case__info--2 .capability__case__item:nth-child(3):after {
          display: block; }
        .capability__case__info--2 .capability__case__item:nth-child(2n + 1):before {
          display: none; }
        .capability__case__info--2 .capability__case__item:nth-child(1):after, .capability__case__info--2 .capability__case__item:nth-child(2):after {
          display: none; }
        @media (max-width: 1279.98px) {
          .capability__case__info--2 {
            grid-template-columns: 1fr; }
            .capability__case__info--2 .capability__case__item:before {
              display: none !important; }
            .capability__case__info--2 .capability__case__item:after, .capability__case__info--2 .capability__case__item:nth-child(2):after, .capability__case__info--2 .capability__case__item:nth-child(3):after {
              display: block; } }
    .capability__case__item {
      position: relative;
      display: flex;
      gap: 8px;
      flex-flow: column;
      justify-content: space-between;
      align-items: flex-start; }
      .capability__case__item:before {
        content: "";
        display: block;
        width: 1px;
        position: absolute;
        left: -16px;
        top: 0;
        bottom: 0;
        background: var(--color-border); }
      .capability__case__item:after {
        content: "";
        display: block;
        height: 1px;
        position: absolute;
        top: -16px;
        left: 0;
        right: 0;
        background: var(--color-border); }
      @media (max-width: 1279.98px) {
        .capability__case__item {
          grid-template-columns: 1fr 1fr; } }
      .capability__case__item .num {
        font-size: 24px;
        line-height: 160%;
        color: var(--color-black);
        white-space: nowrap; }
        .capability__case__item .num.wrap {
          white-space: normal; }
        @media (max-width: 1279.98px) {
          .capability__case__item .num {
            font-size: 16px;
            line-height: 160%;
            font-weight: 500; } }
      .capability__case__item .desc {
        font-size: 14px;
        line-height: 160%;
        color: var(--color-gray); }

.support {
  padding: 40px 0; }
  .support__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    padding: 40px 0; }
    @media (max-width: 1279.98px) {
      .support__list {
        grid-template-columns: 1fr; } }
  .support__item {
    border-radius: 16px;
    border: 1px solid var(--color-border);
    padding: 32px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    gap: 40px; }
    @media (max-width: 1279.98px) {
      .support__item {
        padding: 24px 16px;
        gap: 32px; } }
    .support__item .icons {
      font-size: 14px;
      line-height: 160%;
      color: var(--color-white);
      display: flex;
      gap: 16px;
      margin: 8px 0; }
      .support__item .icons i {
        padding-left: 24px;
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 16px 16px;
        font-style: normal; }
        .support__item .icons i.ico-clock {
          background-image: url("../images/ico-clock.svg"); }
        .support__item .icons i.ico-online {
          background-image: url("../images/ico-online.svg"); }
    .support__item .text {
      font-size: 16px;
      line-height: 160%;
      color: var(--color-gray);
      margin-top: 8px; }
    .support__item .image {
      margin: 0 -32px; }
      @media (max-width: 1279.98px) {
        .support__item .image {
          margin: 0 -16px; } }
    .support__item .buttons {
      display: flex;
      justify-content: center;
      align-items: center; }
    .support__item:nth-child(1) {
      background: var(--color-white); }
    .support__item:nth-child(2) {
      background: var(--color-light); }
    .support__item:nth-child(3) {
      border-color: var(--color-main);
      background: var(--color-main); }
      .support__item:nth-child(3) .h4, .support__item:nth-child(3) .text {
        color: var(--color-white); }

.company {
  padding: 0 0 40px; }
  @media (max-width: 1023.98px) {
    .company {
      padding-bottom: 80px; } }
  .company .h2 {
    margin-bottom: 40px; }
    .company .h2 span {
      color: var(--color-main); }
  .company__list {
    position: relative;
    max-width: 100%;
    height: 56px;
    overflow-x: hidden; }
    .company__list:before, .company__list:after {
      content: '';
      display: block;
      width: 50px;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
      z-index: 2; }
    .company__list:after {
      left: unset;
      right: 0;
      background: linear-gradient(-90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%); }
    .company__list .track {
      position: absolute;
      will-change: transform;
      animation: company 24s linear infinite; }
      .company__list .track .content {
        display: flex;
        align-items: center; }
        .company__list .track .content .item {
          margin-right: 40px; }

@keyframes company {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-2797px); } }
.resume {
  position: relative;
  background: var(--color-light);
  padding: 80px 0;
  z-index: 0; }
  @media (max-width: 1279.98px) {
    .resume {
      padding: 80px 0; } }
  .resume .h2 {
    margin-bottom: 40px; }
  .resume .card {
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: var(--color-white); }
    .resume .card__header {
      font-size: 14px;
      line-height: 160%;
      font-weight: bold;
      padding: 9px 16px;
      border-bottom: 1px solid var(--color-border); }
    .resume .card__body {
      padding: 40px; }
      @media (max-width: 1279.98px) {
        .resume .card__body {
          padding-bottom: 24px; } }
      @media (max-width: 639.98px) {
        .resume .card__body {
          padding: 24px 16px; } }
      .resume .card__body__top {
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid var(--color-border);
        display: flex;
        align-items: center;
        justify-content: space-between; }
        @media (max-width: 639.98px) {
          .resume .card__body__top {
            margin-bottom: 24px;
            padding-bottom: 24px;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px; } }
        .resume .card__body__top__left {
          display: flex;
          align-items: center;
          gap: 24px; }
          @media (max-width: 639.98px) {
            .resume .card__body__top__left {
              flex-direction: column;
              align-items: flex-start;
              gap: 16px; } }
          .resume .card__body__top__left__position {
            font-size: 24px;
            font-weight: 700;
            line-height: 130%; }
        .resume .card__body__top__right__salary {
          font-size: 24px;
          font-weight: 700;
          line-height: 130%; }
      .resume .card__body__content {
        display: grid;
        grid-template-columns: auto auto;
        gap: 40px; }
        @media (max-width: 1023.98px) {
          .resume .card__body__content {
            grid-template-columns: 1fr;
            gap: 24px; }
            .resume .card__body__content > div:nth-child(2n) {
              margin-bottom: 16px; } }
        .resume .card__body__content__left {
          font-size: 18px;
          line-height: 160%;
          font-weight: 700; }
        .resume .card__body__content ul.dot-check {
          gap: 8px; }
        .resume .card__body__content .tags {
          display: flex;
          flex-wrap: wrap;
          gap: 8px; }
          .resume .card__body__content .tags .tag {
            background: var(--color-light);
            color: var(--color-main);
            padding-top: 5px;
            padding-bottom: 5px;
            font-weight: 700; }
        .resume .card__body__content .tools {
          display: flex;
          flex-wrap: wrap;
          column-gap: 32px;
          row-gap: 16px; }
  .resume .back-light {
    position: absolute;
    width: calc(100vw - 10px);
    height: 100%;
    background: var(--color-light);
    left: calc(600px - 50vw);
    top: 0;
    display: block;
    z-index: -1; }
    @media (max-width: 1279.98px) {
      .resume .back-light {
        width: 100vw;
        left: calc(488px - 50vw); } }
    @media (max-width: 1023.98px) {
      .resume .back-light {
        left: calc(296px - 50vw); } }
    @media (max-width: 639.98px) {
      .resume .back-light {
        left: -16px; } }

.reviews {
  padding: 80px 0; }
  .reviews__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: flex-end; }
    @media (max-width: 639.98px) {
      .reviews__header {
        flex-flow: column;
        gap: 16px;
        align-items: flex-start;
        justify-content: flex-start; } }
  .reviews:after {
    content: none;
    display: none; }
  .reviews__list {
    position: relative;
    display: flex;
    gap: 24px;
    margin: 12px 0;
    width: 100%;
    overflow: hidden;
    flex-flow: wrap;
    justify-content: center; }
    @media (max-width: 639.98px) {
      .reviews__list {
        display: block; } }
    .reviews__list:before, .reviews__list:after {
      content: '';
      display: block;
      width: 50px;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
      z-index: 2; }
      @media (max-width: 1279.98px) {
        .reviews__list:before, .reviews__list:after {
          display: none; } }
    .reviews__list:after {
      left: unset;
      right: 0;
      background: linear-gradient(-90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%); }
    .reviews__list .track {
      will-change: transform;
      color: var(--color-white);
      font-size: 16px;
      font-weight: 700; }
      .reviews__list .track .content {
        display: flex; }
    .reviews__list.reviews__list-1 .track {
      animation: review 24s linear infinite; }
      .reviews__list.reviews__list-1 .track:hover {
        animation-play-state: paused; }
    @media (max-width: 1279.98px) {
      .reviews__list.reviews__list-2 {
        display: none; } }
    .reviews__list.reviews__list-2 .track {
      animation: review2 24s linear infinite; }
      .reviews__list.reviews__list-2 .track:hover {
        animation-play-state: paused; }
@keyframes review {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-2736px); } }
@keyframes review2 {
  from {
    transform: translateX(-2736px); }
  to {
    transform: translateX(0); } }
    .reviews__list .review {
      border: 1px solid var(--color-border);
      border-radius: 16px;
      background: var(--color-white);
      padding: 32px;
      display: flex;
      flex-flow: column;
      gap: 24px;
      flex: 0 0 432px;
      margin: 0 12px; }
      .reviews__list .review__author {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 16px; }
      .reviews__list .review__pic img {
        width: 48px;
        height: 48px;
        border-radius: 100%;
        object-fit: cover;
        display: block; }
      .reviews__list .review__name {
        font-size: 14px;
        line-height: 160%;
        color: var(--color-gray); }
        .reviews__list .review__name strong {
          display: block;
          font-size: 16px;
          font-weight: bold;
          line-height: 160%;
          color: var(--color-black); }
      .reviews__list .review__text {
        font-size: 16px;
        line-height: 160%;
        font-weight: 500;
        color: var(--color-black); }
  .reviews .review__grades {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between; }
    .reviews .review__grades * {
      user-select: none; }
    .reviews .review__grades__wrapper {
      width: calc(100% - 24px - 24px - 32px - 32px);
      overflow: hidden; }
      @media (max-width: 639.98px) {
        .reviews .review__grades__wrapper {
          width: 100%; } }
    .reviews .review__grades__item {
      width: 260px; }
      .reviews .review__grades__item img {
        width: 100%; }
    .reviews .review__grades-next, .reviews .review__grades-prev {
      user-select: none;
      cursor: pointer; }
      @media (max-width: 639.98px) {
        .reviews .review__grades-next, .reviews .review__grades-prev {
          display: none; } }

.quick-form {
  padding-top: 80px; }
  .quick-form__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    min-height: 700px; }
    @media (max-width: 1023.98px) {
      .quick-form__block {
        grid-template-columns: 1fr; } }
  .quick-form__block-left {
    background-color: var(--color-light);
    background-image: url("../images/ega2/quick_block.png"), linear-gradient(180deg, #6841D2 1.07%, rgba(104, 65, 210, 0.16) 97.65%);
    background-position: center bottom, center;
    background-size: 100% auto, 100%;
    background-repeat: no-repeat;
    border-radius: 24px;
    padding: 40px; }
    @media (max-width: 1279.98px) {
      .quick-form__block-left {
        background-size: auto 447px, 100%; } }
    @media (max-width: 1023.98px) {
      .quick-form__block-left {
        min-height: 748px; } }
    @media (max-width: 639.98px) {
      .quick-form__block-left {
        min-height: 576px;
        padding: 40px 16px;
        background-size: 100% auto, 100%; } }
    .quick-form__block-left__header {
      margin-bottom: 40px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between; }
      @media (max-width: 1279.98px) {
        .quick-form__block-left__header {
          margin-bottom: 8px; } }
      .quick-form__block-left__header .tag--white {
        color: var(--color-white);
        background: var(--color-white-24);
        font-size: 16px;
        line-height: 30px;
        font-weight: 700; }
    .quick-form__block-left .h1 {
      margin-bottom: 24px; }
    .quick-form__block-left .place {
      gap: 8px;
      align-items: center; }
      .quick-form__block-left .place.place-desktop {
        display: flex; }
        @media (max-width: 1279.98px) {
          .quick-form__block-left .place.place-desktop {
            display: none; } }
        @media (max-width: 1023.98px) {
          .quick-form__block-left .place.place-desktop {
            display: flex; } }
        @media (max-width: 639.98px) {
          .quick-form__block-left .place.place-desktop {
            display: none; } }
      .quick-form__block-left .place.place-tablet {
        display: none; }
        @media (max-width: 1279.98px) {
          .quick-form__block-left .place.place-tablet {
            display: flex; } }
        @media (max-width: 1023.98px) {
          .quick-form__block-left .place.place-tablet {
            display: none; } }
        @media (max-width: 639.98px) {
          .quick-form__block-left .place.place-tablet {
            display: flex; } }
      .quick-form__block-left .place__number {
        width: 80px;
        background: url("../images/ega2/number_back.png") center/contain no-repeat;
        font-weight: 700;
        font-size: 40px;
        line-height: 80px;
        color: var(--color-white);
        text-align: center; }
      .quick-form__block-left .place__info {
        line-height: 130%;
        font-weight: 700;
        font-size: 18px;
        color: var(--color-white); }
  .quick-form__block-right {
    background: var(--color-main);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-flow: column;
    gap: 24px; }
    @media (max-width: 1279.98px) {
      .quick-form__block-right {
        padding: 40px 16px;
        gap: 24px; } }

.quick-form__start {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  font-weight: 700; }
.quick-form__timeleft {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--color-white);
  background: var(--color-white-24);
  padding: 0 16px;
  border-radius: 24px;
  font-size: 16px;
  line-height: 48px;
  font-weight: 700; }
  .quick-form__timeleft__countdown {
    white-space: nowrap;
    text-align: center; }
    .quick-form__timeleft__countdown br {
      display: none; }
.quick-form__status {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 16px; }
  @media (max-width: 639.98px) {
    .quick-form__status {
      grid-template-columns: 1fr;
      margin-bottom: 0; } }
  .quick-form__status .month {
    border-right: 1px solid var(--color-white-24);
    padding-right: 40px; }
  .quick-form__status .whole {
    padding-left: 40px; }
  .quick-form__status .price-old {
    font-weight: 700;
    text-decoration: line-through; }
  .quick-form__status .price {
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 130%; }
  .quick-form__status .info {
    font-weight: 500; }
.quick-form__data {
  display: flex;
  flex-flow: column;
  gap: 24px; }
  .quick-form__data input[type=text] {
    font-size: 16px;
    line-height: 160%;
    font-weight: 500;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-white);
    padding: 15px 16px;
    border-radius: 16px;
    display: block;
    width: 100%;
    outline: none; }
    .quick-form__data input[type=text]::placeholder {
      color: var(--color-white-24); }
  .quick-form__data .button {
    width: 100%;
    cursor: pointer; }
  .quick-form__data .fieldset {
    display: grid;
    gap: 16px;
    grid-template-areas: "a a" "b b" "c c"; }
    @media (max-width: 1279.98px) {
      .quick-form__data .fieldset {
        gap: 8px;
        grid-template-areas: "a" "b" "c" "d"; } }
    .quick-form__data .fieldset .field:nth-child(1) {
      grid-area: a; }
    .quick-form__data .fieldset .field:nth-child(2) {
      grid-area: b; }
    .quick-form__data .fieldset .field:nth-child(3) {
      grid-area: c; }
    .quick-form__data .fieldset .field:nth-child(4) {
      grid-area: d; }
  .quick-form__data .checkboxes {
    font-size: 14px;
    line-height: 160%;
    color: var(--color-white);
    display: flex;
    gap: 16px;
    flex-flow: column; }
    .quick-form__data .checkboxes label {
      display: block;
      position: relative;
      padding-left: 40px;
      cursor: pointer;
      user-select: none;
      font-weight: 500; }
      .quick-form__data .checkboxes label span:before {
        content: '';
        display: block;
        width: 24px;
        height: 24px;
        box-sizing: border-box;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 16px 16px;
        background-color: var(--color-white);
        border: 1px solid var(--color-main);
        border-radius: 4px;
        position: absolute;
        left: 0;
        top: -1px; }
      .quick-form__data .checkboxes label input:checked ~ span:before {
        background-image: url("../images/ega2/check_main.svg"); }
      .quick-form__data .checkboxes label a {
        text-decoration: underline;
        color: var(--color-white); }
  @media (max-width: 1279.98px) {
    .quick-form__data .buttons .button {
      width: 100%; } }

.choice {
  padding-top: 80px;
  color: var(--color-white);
  text-align: center; }
  .choice .h1 {
    margin-bottom: 16px;
    text-align: center;
    color: var(--color-white); }
  .choice .container > .tag {
    margin-bottom: 40px;
    display: inline-block;
    border-radius: 24px;
    padding: 0 16px;
    font-size: 16px;
    line-height: 48px; }
  .choice__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    min-height: 700px; }
    @media (max-width: 1279.98px) {
      .choice__block {
        grid-template-columns: 1fr; } }
    .choice__block__item {
      display: flex;
      flex-direction: column;
      gap: 40px;
      border-radius: 24px;
      padding: 40px; }
      .choice__block__item__title {
        font-size: 32px;
        line-height: 130%;
        font-weight: 700; }
        @media (max-width: 1279.98px) {
          .choice__block__item__title {
            font-size: 24px; } }
      .choice__block__item .tag {
        display: inline-block;
        margin-bottom: 8px;
        height: 32px;
        padding: 0px 12px;
        border: 1px solid var(--color-white);
        font-size: 16px;
        line-height: 32px;
        font-weight: 700; }
      .choice__block__item__image {
        max-width: 100%; }
        .choice__block__item__image img {
          width: 424px;
          max-width: 100%; }
      .choice__block__item__text {
        font-size: 16px;
        line-height: 160%;
        font-weight: 500;
        font-weight: 700; }
  .choice__block-left {
    background: transparent;
    border: 1px solid var(--color-white-24); }
    .choice__block-left .tag {
      background: transparent !important;
      color: var(--color-white); }
  .choice__block-right {
    border: 1px solid #3F3F4C;
    background: linear-gradient(180deg, #6841D2 0%, rgba(104, 65, 210, 0) 100%); }
    @media (max-width: 1279.98px) {
      .choice__block-right {
        padding: 40px 16px;
        gap: 24px; } }
    .choice__block-right .tag {
      background: var(--color-white);
      color: var(--color-main); }

.pay {
  display: none !important;
  padding-top: 80px;
  color: var(--color-white);
  text-align: center; }
  .pay .container {
    padding: 40px;
    border-radius: 24px;
    background: var(--color-white-08); }
  .pay .h2 {
    margin-bottom: 16px;
    color: var(--color-white); }
  .pay .subtitle {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 160%;
    font-weight: 500;
    font-weight: 500;
    color: var(--color-gray-light); }
  .pay__block {
    display: grid;
    grid-template-columns: 722px auto;
    gap: 40px; }
    @media (max-width: 1279.98px) {
      .pay__block {
        grid-template-columns: 1fr; } }
    .pay__block__item {
      display: flex;
      flex-direction: column;
      gap: 24px; }
      .pay__block__item__title {
        font-size: 16px;
        line-height: 160%;
        font-weight: 500;
        font-weight: 700;
        text-align: left; }
      .pay__block__item .type {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px; }
        @media (max-width: 1023.98px) {
          .pay__block__item .type {
            grid-template-columns: 1fr; } }
        .pay__block__item .type__payitem {
          min-height: 171px;
          padding: 24px;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          align-items: stretch;
          border-radius: 16px;
          border: 1px solid var(--color-white-24);
          transition: all ease-out 0.3s;
          cursor: pointer; }
          .pay__block__item .type__payitem:hover {
            background: var(--color-white-08);
            border-color: var(--color-white); }
          .pay__block__item .type__payitem.active {
            background: var(--color-main);
            border-color: var(--color-main); }
            .pay__block__item .type__payitem.active .tag {
              background: var(--color-white);
              color: var(--color-main); }
          .pay__block__item .type__payitem__top {
            display: flex;
            flex-direction: column;
            gap: 8px; }
            .pay__block__item .type__payitem__top__sale {
              display: flex;
              align-items: flex-start;
              justify-content: space-between; }
              .pay__block__item .type__payitem__top__sale .tag {
                border-radius: 16px;
                padding: 5px 8px; }
            .pay__block__item .type__payitem__top__info {
              font-size: 16px;
              line-height: 160%;
              font-weight: 500;
              font-weight: 500;
              color: var(--color-gray-light);
              text-align: left; }
          .pay__block__item .type__payitem__logos {
            display: flex;
            gap: 16px;
            align-items: center; }
          .pay__block__item .type__payitem.active {
            border-color: var(--color-main);
            background-color: var(--color-main); }
            .pay__block__item .type__payitem.active .tag {
              background-color: var(--color-white);
              color: var(--color-main);
              font-weight: 700; }
      .pay__block__item__image {
        max-width: 100%; }
        .pay__block__item__image img {
          width: 424px;
          max-width: 100%; }
      .pay__block__item__text {
        font-size: 16px;
        line-height: 160%;
        font-weight: 500;
        font-weight: 700; }
    .pay__block__right {
      font-weight: 500;
      text-align: left; }
      .pay__block__right .old {
        text-decoration: line-through;
        font-size: 24px;
        line-height: 160%;
        font-weight: 700; }
      .pay__block__right .new {
        margin-bottom: 8px;
        font-weight: 700; }
      .pay__block__right__button .button {
        margin-bottom: 16px;
        font-weight: 700; }
      .pay__block__right__button .agree a {
        color: var(--color-gray);
        text-decoration: underline; }

.confirm {
  display: none;
  padding-top: 80px;
  color: var(--color-white);
  text-align: center; }
  .confirm .container {
    padding: 40px;
    border-radius: 24px;
    background: var(--color-white-08);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 64px; }
    @media (max-width: 1279.98px) {
      .confirm .container {
        flex-direction: column;
        gap: 40px;
        align-items: stretch; } }
    .confirm .container:before, .confirm .container:after {
      display: none; }
    .confirm .container__left {
      text-align: left; }
    .confirm .container__right .button {
      white-space: nowrap; }
  .confirm .h2 {
    margin-bottom: 16px;
    color: var(--color-white); }
  .confirm .subtitle {
    font-weight: 500; }
  .confirm__block {
    display: grid;
    grid-template-columns: 722px auto;
    gap: 40px; }
    @media (max-width: 1279.98px) {
      .confirm__block {
        grid-template-columns: 1fr; } }
    .confirm__block__item {
      display: flex;
      flex-direction: column;
      gap: 24px; }
      .confirm__block__item__title {
        font-size: 16px;
        line-height: 160%;
        font-weight: 500;
        font-weight: 700;
        text-align: left; }
      .confirm__block__item .type {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px; }
        .confirm__block__item .type__payitem {
          min-height: 171px;
          padding: 24px;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          align-items: stretch;
          border-radius: 16px;
          border: 1px solid var(--color-white-24);
          transition: all ease-out 0.3s; }
          .confirm__block__item .type__payitem:hover {
            background: var(--color-white-08);
            border-color: var(--color-white); }
          .confirm__block__item .type__payitem.active {
            background: var(--color-main);
            border-color: var(--color-main); }
            .confirm__block__item .type__payitem.active .tag {
              background: var(--color-white);
              color: var(--color-main); }
          .confirm__block__item .type__payitem__top {
            display: flex;
            flex-direction: column;
            gap: 8px; }
            .confirm__block__item .type__payitem__top__sale {
              display: flex;
              align-items: flex-start;
              justify-content: space-between; }
              .confirm__block__item .type__payitem__top__sale .tag {
                border-radius: 16px;
                padding: 5px 8px; }
            .confirm__block__item .type__payitem__top__info {
              font-size: 16px;
              line-height: 160%;
              font-weight: 500;
              font-weight: 500;
              color: var(--color-gray-light);
              text-align: left; }
          .confirm__block__item .type__payitem__logos {
            display: flex;
            gap: 16px;
            align-items: center; }
          .confirm__block__item .type__payitem.active {
            border-color: var(--color-main);
            background-color: var(--color-main); }
            .confirm__block__item .type__payitem.active .tag {
              background-color: var(--color-white);
              color: var(--color-main);
              font-weight: 700; }
      .confirm__block__item__image {
        max-width: 100%; }
        .confirm__block__item__image img {
          width: 424px;
          max-width: 100%; }
      .confirm__block__item__text {
        font-size: 16px;
        line-height: 160%;
        font-weight: 500;
        font-weight: 700; }
    .confirm__block__right {
      font-weight: 500;
      text-align: left; }
      .confirm__block__right .old {
        text-decoration: line-through;
        font-size: 24px;
        line-height: 160%;
        font-weight: 700; }
      .confirm__block__right .new {
        margin-bottom: 8px;
        font-weight: 700; }
      .confirm__block__right__button .button {
        margin-bottom: 16px;
        font-weight: 700; }
      .confirm__block__right__button .agree a {
        color: var(--color-gray);
        text-decoration: underline; }

.laststep {
  display: none !important;
  padding-top: 80px;
  color: var(--color-white); }
  .laststep .container {
    max-width: 792px;
    padding: 40px;
    border-radius: 24px;
    background: var(--color-white-08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; }
    @media (max-width: 1279.98px) {
      .laststep .container {
        grid-template-columns: 1fr;
        max-width: 976px;
        gap: 40px; } }
    @media (max-width: 1023.98px) {
      .laststep .container {
        max-width: 592px; } }
    @media (max-width: 639.98px) {
      .laststep .container {
        margin-left: 16px;
        margin-right: 16px;
        width: calc(100% - 32px); } }
    .laststep .container:before, .laststep .container:after {
      display: none; }
    .laststep .container__left {
      text-align: left;
      position: relative; }
      .laststep .container__left:after {
        position: absolute;
        content: '';
        right: -40px;
        top: 0;
        height: 100%;
        width: 1px;
        background: var(--color-white-24); }
        @media (max-width: 1279.98px) {
          .laststep .container__left:after {
            display: none; } }
      .laststep .container__left .line {
        margin-bottom: 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 18px;
        line-height: 160%;
        color: var(--color-white); }
        .laststep .container__left .line img {
          max-width: 260px; }
          @media (max-width: 1279.98px) {
            .laststep .container__left .line img {
              max-width: 840px; } }
          @media (max-width: 1023.98px) {
            .laststep .container__left .line img {
              max-width: 456px; } }
          @media (max-width: 639.98px) {
            .laststep .container__left .line img {
              max-width: calc(100% - 56px); } }
      .laststep .container__left .button-wrapper {
        display: flex;
        padding: 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        border-radius: 16px;
        background: var(--color-main);
        color: var(--color-white);
        font-size: 16px;
        line-height: 160%;
        text-align: center; }
        .laststep .container__left .button-wrapper .button {
          background: var(--color-white);
          color: var(--color-main);
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 16px; }
    .laststep .container__right {
      display: flex;
      flex-direction: column;
      gap: 24px; }
      .laststep .container__righttitle {
        font-size: 16px;
        line-height: 160%;
        font-weight: 700; }
      .laststep .container__right ul {
        font-size: 16px;
        line-height: 160%;
        font-weight: 500;
        list-style: none;
        display: flex;
        flex-flow: column;
        gap: 8px;
        align-items: flex-start;
        justify-content: flex-start;
        color: var(--color-gray-light); }
        .laststep .container__right ul li {
          position: relative;
          padding-left: 32px; }
          .laststep .container__right ul li:before {
            position: absolute;
            left: 0;
            top: 4px;
            content: "";
            background: url(../images/list.svg) left top no-repeat;
            width: 16px;
            height: 16px; }
  .laststep .h2 {
    margin-bottom: 16px;
    color: var(--color-white); }
  .laststep .subtitle {
    font-weight: 500; }
  .laststep__block {
    display: grid;
    grid-template-columns: 722px auto;
    gap: 40px; }
    @media (max-width: 1279.98px) {
      .laststep__block {
        grid-template-columns: 1fr; } }
    .laststep__block__item {
      display: flex;
      flex-direction: column;
      gap: 24px; }
      .laststep__block__item__title {
        font-size: 16px;
        line-height: 160%;
        font-weight: 500;
        font-weight: 700;
        text-align: left; }
      .laststep__block__item .type {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px; }
        .laststep__block__item .type__payitem {
          min-height: 171px;
          padding: 24px;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          align-items: stretch;
          border-radius: 16px;
          border: 1px solid var(--color-white-24);
          transition: all ease-out 0.3s; }
          .laststep__block__item .type__payitem:hover {
            background: var(--color-white-08);
            border-color: var(--color-white); }
          .laststep__block__item .type__payitem.active {
            background: var(--color-main);
            border-color: var(--color-main); }
            .laststep__block__item .type__payitem.active .tag {
              background: var(--color-white);
              color: var(--color-main); }
          .laststep__block__item .type__payitem__top {
            display: flex;
            flex-direction: column;
            gap: 8px; }
            .laststep__block__item .type__payitem__top__sale {
              display: flex;
              align-items: flex-start;
              justify-content: space-between; }
              .laststep__block__item .type__payitem__top__sale .tag {
                border-radius: 16px;
                padding: 5px 8px; }
            .laststep__block__item .type__payitem__top__info {
              font-size: 16px;
              line-height: 160%;
              font-weight: 500;
              font-weight: 500;
              color: var(--color-gray-light);
              text-align: left; }
          .laststep__block__item .type__payitem__logos {
            display: flex;
            gap: 16px;
            align-items: center; }
          .laststep__block__item .type__payitem.active {
            border-color: var(--color-main);
            background-color: var(--color-main); }
            .laststep__block__item .type__payitem.active .tag {
              background-color: var(--color-white);
              color: var(--color-main);
              font-weight: 700; }
      .laststep__block__item__image {
        max-width: 100%; }
        .laststep__block__item__image img {
          width: 424px;
          max-width: 100%; }
      .laststep__block__item__text {
        font-size: 16px;
        line-height: 160%;
        font-weight: 500;
        font-weight: 700; }
    .laststep__block__right {
      font-weight: 500;
      text-align: left; }
      .laststep__block__right .old {
        text-decoration: line-through;
        font-size: 24px;
        line-height: 160%;
        font-weight: 700; }
      .laststep__block__right .new {
        margin-bottom: 8px;
        font-weight: 700; }
      .laststep__block__right__button .button {
        margin-bottom: 16px;
        font-weight: 700; }
      .laststep__block__right__button .agree a {
        color: var(--color-gray);
        text-decoration: underline; }

.tarif {
  padding: 80px 0 0; }
  @media (max-width: 639.98px) {
    .tarif {
      display: none; } }
  .tarif .h2 {
    color: var(--color-white); }
  .tarif__block {
    background: var(--color-white-08);
    border-radius: 24px;
    padding: 80px; }
  .tarif .section__header {
    padding-left: 33%;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start; }
  .tarif__table {
    margin: 40px 0 0; }
    @media (max-width: 1279.98px) {
      .tarif__table {
        display: none; } }
    .tarif__table th {
      font-size: 16px;
      line-height: 160%;
      font-weight: 500;
      font-weight: normal;
      color: var(--color-gray-light);
      padding: 40px;
      border-top: 1px solid var(--color-white-24);
      border-left: 1px solid var(--color-white-24);
      width: 33%; }
      .tarif__table th:first-child {
        text-align: left;
        vertical-align: top;
        padding-left: 0;
        border-left: 0; }
    .tarif__table td {
      font-size: 16px;
      line-height: 160%;
      font-weight: 500;
      color: var(--color-gray-light);
      padding: 16px 40px;
      border-top: 1px solid var(--color-white-24);
      border-left: 1px solid var(--color-white-24);
      width: 33%; }
      .tarif__table td:nth-child(1) {
        padding-left: 0;
        border-left: 0; }
    .tarif__table .button {
      display: inline-block; }
  .tarif__list {
    display: none;
    gap: 24px;
    flex-flow: column;
    padding: 40px 0; }
    @media (max-width: 1279.98px) {
      .tarif__list {
        display: flex; } }
  .tarif__item {
    padding: 24px 16px;
    display: flex;
    flex-flow: column;
    gap: 24px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 24px; }
    .tarif__item .button {
      display: block;
      width: 100%; }
  .tarif__spacer {
    display: block;
    height: 1px;
    background: var(--color-border); }
  .tarif__desc ul {
    font-size: 16px;
    line-height: 160%;
    font-weight: 500;
    list-style: none;
    display: flex;
    flex-flow: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
    color: var(--color-black); }
    .tarif__desc ul li {
      position: relative;
      padding-left: 32px; }
      .tarif__desc ul li:before {
        position: absolute;
        left: 0;
        top: 4px;
        content: '';
        background: url("../images/list.svg") left top no-repeat;
        width: 16px;
        height: 16px; }
  .tarif__info {
    display: flex;
    flex-flow: column;
    gap: 40px; }
    @media (max-width: 1279.98px) {
      .tarif__info {
        gap: 16px; } }
    .tarif__info .abon {
      white-space: nowrap; }
      .tarif__info .abon__price {
        font-size: 18px;
        line-height: 160%;
        color: var(--color-black); }
        @media (max-width: 1279.98px) {
          .tarif__info .abon__price {
            font-size: 16px;
            line-height: 160%;
            font-weight: 500; } }
      .tarif__info .abon__desc {
        font-size: 14px;
        line-height: 160%;
        color: var(--color-gray); }
    .tarif__info .implement {
      white-space: nowrap;
      display: flex;
      align-items: baseline;
      gap: 16px; }
      .tarif__info .implement__old {
        text-decoration: line-through; }

.first-step {
  background: none; }
  .first-step .container {
    padding: 80px 0 80px; }
    @media (max-width: 1279.98px) {
      .first-step .container {
        padding: 80px 15px; } }
  @media (max-width: 1279.98px) {
    .first-step .btns {
      display: flex;
      flex-flow: column;
      gap: 8px; }
      .first-step .btns .btn {
        margin: 0; } }

.templates {
  padding: 80px 0 0; }
  .templates .section__header {
    align-items: flex-start;
    text-align: left; }
    @media (max-width: 1279.98px) {
      .templates .section__header {
        align-items: center;
        text-align: center; } }
  .templates__list {
    margin: 40px 0;
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr 1fr; }
    @media (max-width: 1279.98px) {
      .templates__list {
        overflow: hidden;
        grid-template-columns: 1fr; } }
  .templates .template {
    background: var(--color-light);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    flex-flow: column; }
    @media (max-width: 1279.98px) {
      .templates .template {
        padding: 24px 16px; } }
    .templates .template__tag {
      display: inline-flex;
      color: var(--color-main);
      background: var(--color-white);
      margin-bottom: 16px; }
    .templates .template__desc {
      font-size: 16px;
      line-height: 160%;
      font-weight: 500;
      color: var(--color-gray);
      margin-top: 8px; }
    .templates .template__button {
      margin-top: 64px; }

.advantage {
  padding: 40px 0; }

.faqs {
  padding: 80px 0 0; }
  @media (max-width: 639.98px) {
    .faqs {
      display: none; } }
  .faqs__inner {
    max-width: 792px;
    margin: 0 auto; }
    @media (max-width: 1279.98px) {
      .faqs__inner {
        max-width: unset; } }
    .faqs__inner .h2 {
      margin-bottom: 24px; }
    .faqs__inner__tags {
      margin-bottom: 40px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px; }
      .faqs__inner__tags__tag {
        padding: 0 16px;
        border-radius: 8px;
        background: var(--color-white-08);
        color: var(--color-gray-light);
        cursor: pointer;
        font-size: 14px;
        font-weight: 700;
        line-height: 40px;
        transition: all ease-out 0.3s; }
        .faqs__inner__tags__tag.active, .faqs__inner__tags__tag:hover {
          background: var(--color-main);
          color: var(--color-white); }
    .faqs__inner__button {
      margin-top: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 24px;
      border-radius: 16px;
      background: var(--color-main); }
      @media (max-width: 1279.98px) {
        .faqs__inner__button {
          flex-direction: column;
          align-items: stretch;
          gap: 24px;
          text-align: center; }
          .faqs__inner__button br {
            display: none; } }
      .faqs__inner__button__text {
        font-size: 18px;
        line-height: 160%;
        font-weight: 700; }
      .faqs__inner__button .button {
        padding: 0 24px;
        border-radius: 16px;
        background: var(--color-white);
        line-height: 56px;
        color: var(--color-main);
        cursor: pointer;
        font-weight: 700; }
        .faqs__inner__button .button:hover {
          background: var(--color-hover);
          border-color: var(--color-hover);
          color: var(--color-white); }
  .faqs__list {
    margin-top: 40px;
    display: flex;
    flex-flow: column;
    border-top: 1px solid var(--color-white-24); }
  .faqs__item {
    display: none;
    padding: 24px 64px 24px 0;
    user-select: none;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid var(--color-white-24); }
    .faqs__item:after {
      content: '';
      display: block;
      width: 32px;
      height: 32px;
      border-radius: 16px;
      position: absolute;
      right: 0;
      top: 24px;
      background-color: var(--color-white-08);
      background-image: url("../images/ega2/arrow_down_gray.svg");
      background-position: center;
      background-repeat: no-repeat; }
    .faqs__item:hover:after {
      background-color: var(--color-main);
      background-image: url("../images/ega2/arrow_down_white.svg"); }
    .faqs__item__name {
      color: var(--color-white); }
    .faqs__item__desc {
      font-size: 16px;
      line-height: 160%;
      font-weight: 500;
      color: var(--color-gray-light);
      display: none;
      padding-top: 16px; }
      .faqs__item__desc p {
        margin: 16px 0; }
        .faqs__item__desc p:first-child {
          margin-top: 0; }
        .faqs__item__desc p:last-child {
          margin-bottom: 0; }
    .faqs__item.open:after {
      transform: rotate(180deg); }

.footer {
  padding: 0 0 20px; }
  @media (max-width: 1279.98px) {
    .footer {
      padding-bottom: 160px; } }
  .footer .container {
    display: block; }
  .footer__main {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 80px;
    padding: 80px 0; }
    @media (max-width: 1279.98px) {
      .footer__main {
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 40px;
        grid-column-gap: 24px;
        padding-bottom: 40px; } }
  .footer__logo {
    display: flex;
    flex-flow: column;
    gap: 40px; }
    @media (max-width: 1279.98px) {
      .footer__logo {
        grid-row: 1 / 2;
        grid-column: 1 / 3; } }
    .footer__logo a {
      color: var(--color-gray-light); }
  .footer__license {
    display: flex;
    gap: 24px; }
    @media (max-width: 1279.98px) {
      .footer__license {
        flex-direction: column-reverse; } }
    .footer__license__text {
      display: flex;
      flex-flow: column;
      gap: 8px; }
  .footer__address {
    display: flex;
    flex-flow: column;
    gap: 24px; }
  .footer__links {
    border-top: 1px solid var(--color-white-24);
    padding-top: 24px;
    width: 100%; }
    .footer__links .links {
      display: flex;
      gap: 16px; }
      @media (max-width: 639.98px) {
        .footer__links .links {
          flex-flow: column; } }
      .footer__links .links a {
        color: var(--color-gray-light); }
    .footer__links .copyright {
      margin-top: 16px;
      color: var(--color-gray); }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  outline: 0;
  background: rgba(2, 3, 20, 0.8);
  padding: 40px; }
  @media (max-width: 639.98px) {
    .modal {
      padding: 16px; } }
  .modal.opened {
    display: flex; }
  .modal__form {
    position: relative;
    border: 1px solid var(--color-border);
    background: var(--color-light);
    border-radius: 24px;
    padding: 40px;
    width: auto;
    max-width: 600px;
    max-height: calc(100vh - 80px);
    overflow: auto;
    margin: 0 auto; }
    @media (max-width: 639.98px) {
      .modal__form {
        padding: 0; } }
    .modal__form::-webkit-scrollbar {
      width: 8px;
      background: var(--color-gray-light); }
    .modal__form::-webkit-scrollbar-track {
      background: var(--color-gray-light);
      width: 8px; }
    .modal__form::-webkit-scrollbar-thumb {
      background: var(--color-gray);
      border-radius: 3px; }
    .modal__form::-webkit-scrollbar-thumb:hover {
      background: var(--color-gray);
      width: 8px;
      cursor: none; }
    .modal__form__close {
      position: absolute;
      top: 40px;
      right: 40px;
      background: transparent url("../images/ega2/close.svg") center no-repeat;
      border: 1px solid var(--color-main);
      display: flex;
      width: 40px;
      height: 40px;
      border-radius: 40px;
      flex-flow: column;
      align-items: center;
      text-align: center;
      justify-content: center;
      cursor: pointer; }
      .modal__form__close svg {
        fill: var(--color-white); }
    .modal__form__text {
      margin-bottom: 40px;
      display: flex;
      flex-flow: column;
      gap: 24px; }
      @media (max-width: 1279.98px) {
        .modal__form__text {
          padding: 24px 16px; } }
      @media (max-width: 639.98px) {
        .modal__form__text {
          margin-bottom: 0; } }
      .modal__form__text .h3 {
        display: flex;
        justify-content: space-between;
        align-items: flex-start; }
        .modal__form__text .h3 span {
          color: var(--color-black); }
      .modal__form__text .h6 {
        margin-bottom: 8px; }
      .modal__form__text ul {
        font-size: 16px;
        line-height: 160%;
        font-weight: 500;
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        color: var(--color-gray); }
        @media (max-width: 1279.98px) {
          .modal__form__text ul {
            grid-template-columns: 1fr;
            gap: 8px; } }
        .modal__form__text ul li {
          position: relative;
          padding-left: 32px; }
          .modal__form__text ul li:before {
            position: absolute;
            left: 0;
            top: 4px;
            content: '';
            background: url("../images/list.svg") left top no-repeat;
            width: 16px;
            height: 16px; }
    .modal__form__data {
      display: flex;
      flex-flow: column;
      gap: 8px; }
      @media (max-width: 1279.98px) {
        .modal__form__data {
          padding: 24px 16px; } }
      .modal__form__data input[type=text], .modal__form__data input[type=password] {
        font-size: 16px;
        line-height: 160%;
        font-weight: 500;
        border: 1px solid var(--color-border);
        background: var(--color-white);
        color: var(--color-black);
        padding: 15px 16px;
        border-radius: 16px;
        display: block;
        width: 100%; }
        .modal__form__data input[type=text]::placeholder, .modal__form__data input[type=password]::placeholder {
          color: var(--color-gray); }
      .modal__form__data textarea {
        font-size: 16px;
        line-height: 160%;
        font-weight: 500;
        border: 1px solid var(--color-border);
        background: var(--color-white);
        color: var(--color-black);
        padding: 15px 16px;
        border-radius: 16px;
        display: block;
        width: 100%; }
        .modal__form__data textarea::placeholder {
          color: var(--color-gray); }
      .modal__form__data .fieldset {
        display: grid;
        gap: 16px;
        grid-template-areas: "a a" "b b" "c c"; }
        @media (max-width: 1279.98px) {
          .modal__form__data .fieldset {
            gap: 8px;
            grid-template-areas: "a" "b" "c" "d"; } }
        .modal__form__data .fieldset .field:nth-child(1) {
          grid-area: a; }
        .modal__form__data .fieldset .field:nth-child(2) {
          grid-area: b; }
        .modal__form__data .fieldset .field:nth-child(3) {
          grid-area: c; }
        .modal__form__data .fieldset .field:nth-child(4) {
          grid-area: d; }
      .modal__form__data .checkboxes {
        font-size: 14px;
        line-height: 160%;
        color: var(--color-gray);
        display: flex;
        gap: 16px;
        flex-flow: column; }
        .modal__form__data .checkboxes label {
          display: block;
          position: relative;
          padding-left: 40px;
          cursor: pointer;
          user-select: none;
          font-weight: 500; }
          .modal__form__data .checkboxes label span:before {
            content: '';
            display: block;
            width: 24px;
            height: 24px;
            box-sizing: border-box;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: 16px 16px;
            background-color: var(--color-white);
            border: 1px solid var(--color-main);
            border-radius: 4px;
            position: absolute;
            left: 0;
            top: -1px; }
          .modal__form__data .checkboxes label input:checked ~ span:before {
            background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.3332 4L5.99984 11.3333L2.6665 8" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
            background-color: var(--color-main); }
      .modal__form__data .buttons .button {
        margin-top: 8px;
        padding-left: 0;
        padding-right: 0;
        width: 100%; }

.modal-ask-form__form__text {
  margin-bottom: 24px; }
.modal-ask-form__form .checkboxes {
  margin-top: 16px; }

.modal-consult-form .modal__form__text {
  margin-bottom: 24px;
  gap: 10px;
  font-weight: 500; }
.modal-consult-form .modal__form__data .buttons .button {
  margin-bottom: 8px; }
.modal-consult-form .modal__form .color-gray a {
  color: var(--color-gray);
  text-decoration: underline; }

.modal-freelesson-form .modal__form {
  max-width: 792px;
  background: var(--color-main);
  border-color: var(--color-main);
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--color-white); }
  .modal-freelesson-form .modal__form__close {
    border-color: var(--color-white);
    background-image: url("../images/edu/close_white.svg"); }
  .modal-freelesson-form .modal__form__text .h3 {
    color: var(--color-white);
    max-width: 500px; }
  .modal-freelesson-form .modal__form__info {
    color: var(--color-white);
    font-size: 24px;
    line-height: 130%;
    font-weight: 500; }
  .modal-freelesson-form .modal__form .button {
    display: block;
    width: 100%;
    border: 1px solid var(--color-white);
    background: var(--color-white);
    color: var(--color-main);
    font-weight: 700;
    transition: all 0.3s ease-out; }
    .modal-freelesson-form .modal__form .button:hover {
      border-color: var(--color-hover);
      background-color: var(--color-hover);
      color: var(--color-white); }

.modal-thanks .modal__form {
  display: flex;
  flex-direction: column;
  gap: 24px; }
  .modal-thanks .modal__form__text {
    margin-bottom: 0;
    gap: 8px;
    font-size: 16px;
    line-height: 160%;
    font-weight: 500;
    font-weight: 500; }
  .modal-thanks .modal__form__flex {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 16px;
    line-height: 160%;
    font-weight: 500;
    font-weight: 700; }
  .modal-thanks .modal__form .buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px; }

.content.is-modal-open {
  filter: blur(5px); }

.loader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(2, 3, 20, 0.8);
  display: flex;
  align-items: center;
  justify-content: center; }

.loader {
  display: none; }

.bottomtab {
  display: none; }
  @media (max-width: 1279.98px) {
    .bottomtab {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      transform: translateY(100%);
      width: 100%;
      padding: 16px 24px 24px;
      flex-direction: column;
      align-items: stretch;
      gap: 16px;
      border-radius: 16px 16px 0 0;
      background: var(--color-light);
      color: var(--color-main);
      font-size: 16px;
      line-height: 160%;
      text-align: center;
      transition: all ease-out 0.3s;
      z-index: 5; }
      .bottomtab .button {
        background: var(--color-main);
        border: 1px solid var(--color-main);
        color: var(--color-white); } }
  .bottomtab__top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; }
    .bottomtab__top .tag {
      padding: 0 8px;
      font-size: 14px;
      line-height: 24px;
      font-weight: 700; }
    .bottomtab__top__countdown {
      color: var(--color-black);
      font-weight: 700; }
      .bottomtab__top__countdown br {
        display: none; }

.authortab {
  display: none; }
  @media (max-width: 1279.98px) {
    .authortab {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      transform: translateY(100%);
      width: 100%;
      padding: 40px 24px 184px;
      flex-direction: column;
      align-items: stretch;
      gap: 24px;
      border-radius: 16px 16px 0 0;
      background: var(--color-white);
      color: var(--color-gray);
      font-size: 16px;
      line-height: 160%;
      font-weight: 500;
      text-align: left;
      transition: all ease-out 0.3s;
      z-index: 4; }
      .authortab__close {
        position: absolute;
        top: 40px;
        right: 40px;
        background: transparent url("../images/ega2/close.svg") center no-repeat;
        border: 1px solid var(--color-main);
        display: flex;
        width: 40px;
        height: 40px;
        border-radius: 40px;
        flex-flow: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        cursor: pointer; }
      .authortab__title {
        font-size: 20px;
        line-height: 130%;
        font-weight: 700;
        color: var(--color-black); }
      .authortab .button {
        background: var(--color-white);
        border: 1px solid var(--color-main);
        color: var(--color-main); } }
  .authortab__top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; }
    .authortab__top .tag {
      padding: 0 8px;
      font-size: 14px;
      line-height: 24px;
      font-weight: 700; }
    .authortab__top__countdown {
      color: var(--color-black);
      font-weight: 700; }
      .authortab__top__countdown br {
        display: none; }

.flex-v-40 {
  display: flex;
  flex-flow: column;
  gap: 40px; }

.flex-v-80 {
  display: flex;
  flex-flow: column;
  gap: 80px; }

.flex-v-32 {
  display: flex;
  flex-flow: column;
  gap: 32px; }

.flex-v-24 {
  display: flex;
  flex-flow: column;
  gap: 24px; }

.flex-v-16 {
  display: flex;
  flex-flow: column;
  gap: 16px; }

.flex-v-8 {
  display: flex;
  flex-flow: column;
  gap: 8px; }

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

.guarantee {
  padding: 80px 0;
  background: url(/home/images/home-v2/shadow.svg) center bottom -50px no-repeat; }
  .guarantee__header {
    width: 50%; }
    @media (max-width: 639.98px) {
      .guarantee__header {
        width: 100%; } }
  .guarantee__table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas: "a b c d" "e f g g";
    gap: 24px; }
    @media (max-width: 639.98px) {
      .guarantee__table {
        grid-template-columns: 1fr;
        grid-template-areas: "a" "b" "c" "d" "e" "f" "g"; } }
  .guarantee__cell {
    padding: 24px;
    background-color: var(--color-white);
    border-radius: 24px; }
    @media (max-width: 639.98px) {
      .guarantee__cell {
        padding: 16px; } }
    .guarantee__cell:nth-child(1) {
      grid-area: b; }
    .guarantee__cell:nth-child(2) {
      grid-area: c; }
    .guarantee__cell:nth-child(3) {
      grid-area: d; }
    .guarantee__cell:nth-child(4) {
      grid-area: e; }
    .guarantee__cell:nth-child(5) {
      grid-area: f; }
    .guarantee__cell:nth-child(6) {
      grid-area: g; }
    .guarantee__cell--last .h5 {
      width: 50%; }
  .guarantee__percent {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr; }

.best {
  padding: 80px 0; }
  .best__header {
    width: 100%; }
    .best__header .h2 {
      opacity: 0;
      position: absolute;
      width: 50%; }
    .best__header__image img {
      display: block;
      width: 100%;
      height: auto; }
    @media (max-width: 639.98px) {
      .best__header {
        width: 100%; } }
  .best__2col {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 2fr; }
    @media (max-width: 639.98px) {
      .best__2col {
        grid-template-columns: 1fr; } }
  .best__support, .best__coach, .best__form, .best__partner {
    border-radius: 24px;
    padding: 40px; }
    @media (max-width: 639.98px) {
      .best__support, .best__coach, .best__form, .best__partner {
        padding: 24px 16px; } }
  .best__support {
    background-color: var(--color-main); }
  .best__coach {
    background-color: var(--color-light);
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr; }
    .best__coach img {
      margin-top: -40px;
      margin-bottom: -40px; }
    @media (max-width: 639.98px) {
      .best__coach {
        gap: 24px;
        grid-template-columns: 1fr; } }
  .best__form {
    background: linear-gradient(to bottom, var(--color-main), #9E85E2);
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr; }
    @media (max-width: 639.98px) {
      .best__form {
        grid-template-columns: 1fr; } }
  .best__partner {
    background: url("/home/images/home-v2/partner.png") right 40px top no-repeat, linear-gradient(180deg, rgba(104, 65, 210, 0.24) 0%, rgba(158, 133, 226, 0.24) 100%);
    background-size: contain; }
    @media (max-width: 639.98px) {
      .best__partner {
        background: linear-gradient(180deg, rgba(104, 65, 210, 0.24) 0%, rgba(158, 133, 226, 0.24) 100%); } }
    .best__partner .content {
      width: 50%; }
      @media (max-width: 639.98px) {
        .best__partner .content {
          width: 100%; } }

.career {
  padding: 80px 0;
  position: relative; }
  .career label {
    display: block;
    margin: 0; }
  .career input[type=checkbox] {
    position: fixed;
    left: -9999px;
    top: 50%; }
    .career input[type=checkbox]:checked ~ .show-all {
      display: none; }
    .career input[type=checkbox]:checked ~ .hide-all {
      display: block; }
    .career input[type=checkbox]:checked ~ .career__info {
      display: grid; }
  .career .hide-all {
    display: none; }
  .career__points {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px; }
    @media (max-width: 639.98px) {
      .career__points {
        grid-template-columns: 1fr; } }
  .career__point {
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 24px; }
  .career__info {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 40px;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.08); }
    @media (max-width: 639.98px) {
      .career__info {
        gap: 24px;
        grid-template-columns: 1fr;
        padding: 24px 16px; } }
    .career__info__item .num {
      font-size: 16px;
      line-height: 160%;
      font-weight: 500;
      display: flex;
      width: 24px;
      height: 24px;
      align-items: center;
      justify-content: center;
      text-align: center;
      border-radius: 24px;
      background-color: var(--color-white-24);
      color: var(--color-white);
      font-weight: 700; }
      .career__info__item .num.star {
        background-color: var(--color-green); }
    .career__info__item ul {
      display: flex;
      gap: 4px;
      flex-flow: column;
      align-items: flex-start;
      justify-content: flex-start; }
      .career__info__item ul li {
        padding-left: 12px;
        position: relative; }
        .career__info__item ul li:before {
          content: '';
          display: block;
          position: absolute;
          left: 0;
          top: 10px;
          width: 4px;
          height: 4px;
          border-radius: 4px;
          background: var(--color-gray-light); }
  .career__header {
    background: url("/home/images/home-v2/career-guarantee.png") right center no-repeat;
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px; }
    @media (max-width: 639.98px) {
      .career__header {
        background-position: center bottom;
        background-size: contain;
        grid-template-columns: 1fr;
        padding-bottom: 90vw; } }
    .career__header__text {
      max-width: 384px; }
  .career__form {
    background: linear-gradient(to bottom, #6841D2, #9E85E2);
    padding: 40px;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
    border-radius: 24px; }
    @media (max-width: 639.98px) {
      .career__form {
        grid-template-columns: 1fr;
        padding: 24px 16px;
        gap: 24px; } }

.profession {
  padding-bottom: 80px; }
  .profession input[type=checkbox] {
    position: fixed;
    left: -9999px;
    top: 50%; }
    .profession input[type=checkbox]:checked + .profession__list:after {
      height: 0px; }
    .profession input[type=checkbox]:checked + .profession__list .profession__item.only-all {
      display: flex; }
    .profession input[type=checkbox]:checked ~ .hide-all {
      display: block; }
    .profession input[type=checkbox]:checked ~ .show-all {
      display: none; }
  .profession__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative; }
    @media (max-width: 639.98px) {
      .profession__list {
        grid-template-columns: 1fr;
        gap: 16px; } }
    .profession__list:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      right: 0;
      height: 150px;
      z-index: 1;
      background: linear-gradient(to bottom, #02041400, #020414FF);
      pointer-events: none;
      transition: .3s linear; }
  .profession__item {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--color-white-08);
    border-radius: 24px;
    cursor: pointer;
    padding: 24px; }
    @media (max-width: 639.98px) {
      .profession__item {
        border-radius: 16px;
        padding: 24px 16px; } }
    .profession__item.only-all {
      display: none; }
    .profession__item:hover {
      border-color: var(--color-main); }
      .profession__item:hover .profession__item__name:after {
        background-image: url("/home/images/home-v2/prof-btn-hover.svg"); }
    .profession__item__name {
      position: relative;
      padding-right: 40px; }
      .profession__item__name:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 24px;
        height: 24px;
        background: url("/home/images/home-v2/prof-btn.svg") right top no-repeat;
        background-size: 24px 24px; }
    .profession__item .desc {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 16px;
      flex-wrap: wrap; }
      .profession__item .desc__item {
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: flex-start;
        color: #a3a3a3;
        white-space: nowrap; }
        @media (max-width: 639.98px) {
          .profession__item .desc__item {
            font-size: 14px; } }
        .profession__item .desc__item:before {
          content: '';
          width: 16px;
          height: 16px;
          background-size: 16px 16px;
          background-position: center center; }
        .profession__item .desc__item:nth-child(1):before {
          background-image: url("/home/images/home-v2/check.svg"); }
        .profession__item .desc__item:nth-child(2):before {
          background-image: url("/home/images/home-v2/flash.svg"); }
        .profession__item .desc__item:nth-child(3):before {
          background-image: url("/home/images/home-v2/calendar.svg"); }
  .profession .hide-all {
    display: none; }

.director {
  margin: 80px 0;
  overflow: hidden; }
  .director .swiper {
    width: 100%;
    padding: 0 24px; }
    @media (max-width: 639.98px) {
      .director .swiper {
        padding: 0 16px; } }
  .director__list {
    overflow: hidden; }
  .director__item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px;
    max-width: 384px;
    cursor: pointer;
    height: auto !important;
    border: 1px solid transparent; }
    @media (max-width: 639.98px) {
      .director__item {
        padding: 24px 16px; } }
    .director__item:hover {
      border-color: var(--color-main); }
    .director__item .image img {
      display: block;
      border-radius: 8px;
      width: 100%; }
    .director__item .desc {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 16px;
      font-size: 14px;
      flex-wrap: wrap; }
      .director__item .desc__item {
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: flex-start;
        color: #a3a3a3; }
        .director__item .desc__item:before {
          content: '';
          width: 16px;
          height: 16px;
          background-size: 16px 16px;
          background-position: center center; }
        .director__item .desc__item:nth-child(1):before {
          background-image: url("/home/images/home-v2/check.svg"); }
        .director__item .desc__item:nth-child(2):before {
          background-image: url("/home/images/home-v2/flash.svg"); }
        .director__item .desc__item:nth-child(3):before {
          background-image: url("/home/images/home-v2/calendar.svg"); }

.first {
  padding: 84px 0 0; }
  .first__block {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    display: grid;
    gap: 24px;
    grid-template-columns: 2fr 1fr; }
    @media (max-width: 639.98px) {
      .first__block {
        grid-template-columns: 1fr;
        padding: 24px 16px; } }
  .first__gerb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px; }

.header_v2 {
  background: var(--color-black);
  min-height: 0;
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center; }
  .header_v2:after {
    content: none;
    display: none; }
  .header_v2__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
    min-width: 320px;
    width: 100%; }
    @media (max-width: 639.98px) {
      .header_v2__container {
        padding-left: 16px;
        padding-right: 16px; } }
    .header_v2__container .logo {
      display: flex;
      gap: 32px;
      align-items: center;
      justify-content: flex-start; }
      .header_v2__container .logo img {
        width: 100px;
        height: auto; }
      @media (max-width: 1279.98px) {
        .header_v2__container .logo {
          gap: 32px; }
          .header_v2__container .logo .header__logo img {
            width: 99px; } }
      .header_v2__container .logo__desc {
        font-size: 14px;
        line-height: 160%;
        color: var(--color-gray-light);
        position: relative;
        text-align: left; }
        @media (max-width: 1279.98px) {
          .header_v2__container .logo__desc {
            font-size: 14px;
            line-height: 160%; } }
        @media (max-width: 639.98px) {
          .header_v2__container .logo__desc {
            display: none; } }
        .header_v2__container .logo__desc:before {
          content: '';
          display: block;
          position: absolute;
          width: 1px;
          top: 5px;
          bottom: 5px;
          left: -16px;
          background: rgba(255, 255, 255, 0.24); }
          @media (max-width: 1279.98px) {
            .header_v2__container .logo__desc:before {
              top: 2px;
              bottom: 2px;
              left: -16px; } }
  .header_v2 .menu {
    display: flex;
    gap: 24px;
    color: var(--color-gray-light); }
    @media (max-width: 639.98px) {
      .header_v2 .menu {
        display: none; } }
    .header_v2 .menu__item {
      white-space: nowrap;
      color: currentColor;
      cursor: pointer; }
      .header_v2 .menu__item:hover {
        color: var(--color-main); }
  .header_v2 .buttons {
    display: flex;
    gap: 16px; }
    @media (max-width: 639.98px) {
      .header_v2 .buttons .button--transparent {
        display: none; } }

/*# sourceMappingURL=home-v2.css.map */
