html {
  scroll-behavior: smooth;
}

section {
  position: relative;
}

.purple {
  color: $colorPrimary;
}

.header {
  width: 100%;
  position: fixed;
  background: $colorWhite;
  border-radius: unset;
  padding: vw_pc(16) vw_pc(40) vw_pc(14) vw_pc(80);
  z-index: 99999;
  @include invisible;

  @include sp {
    @include glass;
    padding: vw_sp(12) vw_sp(24);
    @include visible;
  }

  &__inner {
    @include flexVerCenter;
    justify-content: space-between;
  }

  &__logo-wrap {
    display: flex;

    @include sp {
      display: block;
      padding-top: vw_sp(4);
    }
  }

  &__logo {
    width: vw_pc(145);
    @include sp {
      width: vw_sp(145);
      margin-bottom: vw_sp(6);
    }
  }

  &__text {
    font-size: vw_sp(12);
    font-weight: 500;
    display: none;
    letter-spacing: 0.014em;

    @include sp {
      display: block;
    }
  }

  &__list {
    display: flex;
    gap: vw_pc(40);

    margin-left: vw_pc(80);

    @include sp {
      display: none;
    }
  }

  &__item-link {
    font-size: vw_pc(14);
    font-weight: 700;
  }

  &__contact {
    display: flex;
    align-items: center;

    @include sp {
      display: none;
    }
  }

  &__tel {
    font-family: $fontSecondary;
    font-size: vw_pc(18);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: vw_pc(8);
    margin-right: vw_pc(16);

    span {
      font-family: $fontPrimary;
      font-size: vw_pc(12);
      font-weight: 400;
    }
  }

  &__btn {
    position: relative;
    width: vw_pc(144);
    height: vw_pc(43);
    background: linear-gradient(
      180deg,
      $colorGradient1 0%,
      $colorGradient2 100%
    );
    border-radius: vw_pc(36);
    @include flexCenter;
    font-size: vw_pc(16);
    color: $colorWhite;
    font-weight: 500;

    &::before {
      position: absolute;
      display: block;
      content: "";
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      border-radius: 200px;
      opacity: 0;
      z-index: 2;
      transition: opacity .15s ease-out;
    }

    &:hover::before {
      opacity: 0.2;
    }
  }

  .hamburger {
    width: vw_sp(56);
    height: vw_sp(56);
    background: #22293b;
    @include flexColCenter;
    gap: vw_sp(6);
    border-radius: vw_sp(8);
    cursor: pointer;
    display: none;

    @include sp {
      display: flex;
    }

    span {
      width: vw_sp(24);
      height: vw_sp(2);
      background: #d0d1e0;
      border-radius: 200px;
    }
  }
}

.nav {
  // display: none;
  position: fixed;
  top: -200%;
  left: 0;
  width: 100%;
  height: auto;
  background: $colorWhite;
  padding: vw_sp(24) vw_sp(24) vw_sp(40) vw_sp(24);
  z-index: 999999;
  @include invisible;
  transition: opacity 0.1s ease-in-out;

  &.active {
    top: 0;
    @include visible;
  }

  &__header {
  }
  .hamburger--close {
    width: vw_sp(40);
    height: vw_sp(40);
    background: #22293b;
    @include flexColCenter;
    gap: vw_sp(15);
    border-radius: vw_sp(8);
    cursor: pointer;
    margin: 0 0 0 auto;

    span {
      width: vw_sp(24);
      height: vw_sp(2);
      background: $colorWhite;
      border-radius: 200px;

      &:first-child {
        transform: translateX(vw_sp(3)) rotate(45deg);
        transform-origin: left;
      }
      &:last-child {
        transform: translateX(vw_sp(3)) rotate(-45deg);
        transform-origin: left;
      }
    }
  }

  &__inner {
    width: vw_sp(306);
    padding-top: vw_sp(16);
    margin-inline: auto;
  }

  &__list {
    @include flexCol;
    gap: vw_sp(40);
    padding-left: vw_sp(10);
  }

  &__item-link {
    font-weight: 500;
  }

  &__btn {
    width: vw_sp(306);
    height: vw_sp(56);
    background: linear-gradient(
      180deg,
      $colorGradient1 0%,
      $colorGradient2 100%
    );
    border-radius: vw_sp(36);
    @include flexCenter;
    font-size: vw_sp(18);
    color: $colorWhite;
    font-weight: 700;
    margin-top: vw_sp(67);
  }

  &__text {
    text-align: center;
    letter-spacing: 0.014em;
    margin-top: vw_sp(20);

    a {
      color: $colorPrimary;
      font-weight: 500;
      letter-spacing: 0.014em;
      text-decoration: underline;
      text-underline-offset: 3px;
    }
  }
}

.anchor {
  @include sp {
    position: absolute;
    top: calc(-1 * vw_sp(80));
  }
}

.kv {
  width: 100%;
  height: 100dvh;
  // height: vw_pc(720);
  // background: $colorWhite;

  @include sp {
    height: vw_sp(670);
  }

  &__inner {
    width: 100%;
    height: 100%;
    display: flex;
  }

  .kv-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
    position: relative;

    @include sp {
      padding-top: vw_sp(30);
      margin-top: vw_sp(80);
    }

    &__bkg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: calc(100% - 170px);
      background: url("../img/kv_bkg2@2x.webp") no-repeat right center / cover;

      @include sp {
        height: calc(100% - 105px);
        background: url("../img/kv_bkg_sp2@2x.webp") no-repeat center center / cover;
      }
      mix-blend-mode: darken;
    }

    &__wrap {
      height: 100%;
      padding-left: vw_pc(50);
      @include flexCol;
      justify-content: center;
      z-index: 2;

      @include sp {
        justify-content: space-between;
      }
    }

    &__head {
      margin-bottom: vw_pc(88);
    }

    &__bottom {
    }
  }

  &__title-sub {
    font-size: vw_pc(20);
    font-weight: 700;
    color: $colorPrimary;
    letter-spacing: 0.016em;

    @include sp {
      font-size: vw_sp(20);
    }
  }

  &__title {
    font-size: vw_pc(54);
    font-weight: 700;
    color: $colorPrimary;
    letter-spacing: 0.016em;

    @include sp {
      font-size: vw_sp(34);
    }

    &-1,
    &-2,
    &-3,
    &-4 {
      line-height: 1.1;
    }

    &-1 {
      font-family: $fontSecondary;
      font-size: vw_pc(79);
      line-height: 0.8;

      @include sp {
        font-size: vw_sp(52);
      }
    }
    &-2 {
      font-family: $fontSecondary;
      font-size: vw_pc(56);

      @include sp {
        font-size: vw_sp(37);
      }
    }
    &-3 {
      font-size: vw_pc(49);
      font-weight: 500;

      @include sp {
        font-size: vw_sp(31);
      }
    }
    &-4 {
      font-size: vw_pc(56);
      font-weight: 500;

      @include sp {
        font-size: vw_sp(37);
      }
    }
  }

  &__title-bkg {
    width: fit-content;
    color: $colorWhite;
    background: linear-gradient(
      135deg,
      $colorGradient1 0%,
      $colorGradient2 100%
    );
    display: flex;
    align-items: flex-end;
    padding: vw_pc(10) vw_pc(20);
    border-radius: vw_pc(5);

    @include sp {
      padding: vw_sp(5) vw_sp(10);
      border-radius: vw_sp(5);
    }
  }

  &__text {
    font-size: vw_pc(16);
    font-weight: 500;
    letter-spacing: 0.016em;
    margin-bottom: vw_pc(16);
  }

  &__logo {
    width: vw_pc(346);
  }

  .kv-companies {
    display: flex;
    gap: vw_pc(24);
    margin: auto 0 0 0;

    @include sp {
      margin: auto 0 vw_sp(10) 0;
    }

    &__list {
      @include flexVerCenter;
      gap: vw_pc(24);
      mix-blend-mode: darken;
      padding: 0 vw_pc(40) 0 vw_pc(50);

      @include sp {
        min-width: vw_sp(600);
        gap: vw_sp(24);
        animation: 35s linear infinite top-markee;
      }

      @keyframes top-markee {
        0% {
          transform: translateX(-10%);
        }
        100% {
          transform: translateX(-100%);
        }
      }
    }

    // &__item {
    //   width: vw_pc(100);

    //   @include sp {
    //     width: vw_sp(100);
    //   }
    // }
  }

  .kv-contact {
    width: respValuePC(358px);
    background: #f4f4f651;
    padding: 0 respValuePC(34px);
    // @include flexVerCenter;
    display: none;

    @include sp {
      display: none;
    }

    &__title {
      font-size: respValuePC(13px);
      color: $colorPrimary;
      font-weight: 700;
      margin-bottom: respValuePC(20px);
    }

    .form__unit {
      margin-bottom: respValuePC(16px);

      dt,
      .label {
        font-size: respValuePC(14px);
        font-weight: 700;
        margin-bottom: respValuePC(4px);
      }

      input,
      select {
        width: 100%;
        height: respValuePC(40px);
        border-radius: respValuePC(3px);
        border: 1px solid #d0d1e0;
        padding: 0 respValuePC(10px);
        font-size: respValuePC(14px);
      }

      .input__name__unit {
        display: flex;
        gap: respValuePC(6px);
      }
    }

    .label__txt {
      font-size: respValuePC(16px);
      a.link__blank {
        font-size: respValuePC(16px);
        text-decoration: underline;
        text-underline-offset: 4px;
        color: $colorPrimary;
        padding: 0 2px;
      }
    }

    .contact__must,
    .mark__required {
      color: $colorRed;
    }
    .contact__must {
      visibility: hidden;

      &.active {
        visibility: visible;
      }
    }

    .input__checkbox {
      display: flex;

      input {
        width: respValuePC(16px);
        height: respValuePC(16px);
        margin: respValuePC(6px) respValuePC(6px) 0 0;
      }
    }

    .form__btns {
      text-align: center;
      margin-top: respValuePC(20px);

      .btn.form__submit__btn input {
        width: respValuePC(144px);
        font-size: respValuePC(16px);
        font-weight: 500;
        color: $colorWhite;
        background: linear-gradient(
          135deg,
          $colorGradient1 0%,
          $colorGradient2 100%
        );
        border-radius: respValuePC(200px);
        border: none;
        padding: respValuePC(10px) respValuePC(20px);
        cursor: pointer;
      }
    }
  }
}

.download-sp {
  padding: vw_sp(21) vw_sp(40) vw_sp(20);
  @include glassDark;
  border-radius: vw_sp(16);
  display: none;

  @include sp {
    display: block;
  }

  &__inner {
    width: vw_sp(300);
    height: vw_sp(67);
    background: linear-gradient(
      180deg,
      $colorGradient1 0%,
      $colorGradient2 100%
    );
    border-radius: vw_sp(8);
    @include flexCenter;
  }

  &__btn {
    width: vw_sp(296);
    height: vw_sp(63);
    background: $colorWhite;
    border-radius: vw_sp(6);
    @include flexCenter;
    span {
      display: block;
      font-size: vw_sp(16);
      color: $colorPrimary;
      font-weight: 700;
      letter-spacing: 0.014em;
      padding-right: vw_sp(30);
      position: relative;

      &::after {
        content: "";
        position: absolute;
        width: vw_sp(12);
        height: vw_sp(17);
        background: url("../img/download-sp_arrow.svg") no-repeat center
          center/contain;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
      }
    }
  }
}

.about {
  &__inner {
    text-align: center;
    margin: respValuePC(100px) 0 respValuePC(56px) 0;

    @include sp {
      margin: vw_sp(60) 0 vw_sp(40) 0;
    }
  }

  &__text {
    font-size: respValuePC(36px);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.28;

    @include sp {
      font-size: vw_sp(24);
      line-height: calc(38 / 26);
    }

    .text-big {
      font-size: respValuePC(42px);

      @include sp {
        font-size: vw_sp(26);
      }

      &--2 {
        font-size: respValuePC(56px);
        line-height: 1.7;

        @include sp {
          font-size: vw_sp(26);
          line-height: 2;
        }
      }
    }

    .dot {
      position: relative;

      &::after {
        content: "";
        position: absolute;
        width: respValuePC(8px);
        height: respValuePC(8px);
        border-radius: 50%;
        background: $colorPrimary;
        top: 0;
        left: 50%;
        transform: translateX(-50%);

        @include sp {
          top: calc(-1 * vw_sp(5));
          width: vw_sp(6);
          height: vw_sp(6);
        }
      }
    }
  }
}

.cost {
  position: relative;
  margin-bottom: respValuePC(140px);
  @include sp {
    margin-bottom: vw_sp(80);
    padding-bottom: vw_sp(30);
    overflow-x: hidden;
  }

  &::before {
    content: "";
    position: absolute;
    width: 100%;
    height: respValuePC(348px);
    background: linear-gradient(
      to bottom,
      $colorGradient1 0%,
      $colorGradient2 100%
    );
    bottom: respValuePC(10px);
    left: 0;

    @include sp {
      height: vw_sp(390);
    }
  }

  &__inner {
    width: respValuePC(1120px);
    margin-inline: auto;
    padding: respValuePC(66px) 0;
    @include flexCenter;
    position: relative;
    z-index: 2;
    @include glass;

    @include sp {
      width: 100%;
      padding: vw_sp(42) vw_sp(20) vw_sp(134);
      border-radius: vw_sp(24);
    }
  }

  &__wrap {
    display: flex;
    align-items: center;
    margin-right: -7%;

    @include sp {
      margin-right: 0;
    }
  }

  &-col {
    font-weight: 700;

    &__title {
      display: block;
      font-size: respValuePC(18px);
      text-align: center;
      margin-bottom: respValuePC(20px);

      @include sp {
        font-size: vw_sp(16);
        margin-bottom: vw_sp(10);
      }
    }

    &__top {
      width: respValuePC(200px);
      height: respValuePC(100px);
      background: #3c48a3;
      @include flexColCenter;
      border-top-left-radius: respValuePC(8px);
      border-top-right-radius: respValuePC(8px);

      @include sp {
        width: vw_sp(196);
        height: vw_sp(71);
        border-top-left-radius: vw_sp(8);
        border-top-right-radius: vw_sp(8);
      }
    }

    &__head {
      width: respValuePC(200px);
      height: respValuePC(100px);
      background: #3c48a3;
      @include flexColCenter;
      border-top-left-radius: respValuePC(8px);
      border-top-right-radius: respValuePC(8px);

      @include sp {
        width: vw_sp(150);
        height: vw_sp(80);
        border-top-left-radius: vw_sp(8);
        border-top-right-radius: vw_sp(8);
      }
    }

    &__foot {
      width: respValuePC(200px);
      @include flexColCenter;
      background: #9364ff;
      height: respValuePC(200px);
      border-bottom-left-radius: respValuePC(8px);
      border-bottom-right-radius: respValuePC(8px);

      @include sp {
        width: vw_sp(150);
        height: vw_sp(160);
        border-bottom-left-radius: vw_sp(8);
        border-bottom-right-radius: vw_sp(8);
      }
    }

    &__text {
      color: $colorWhite;
      font-weight: 500;
      text-align: center;
    }

    &__price {
      font-size: respValuePC(18px);
      color: $colorWhite;
      font-weight: 700;
      @include flexCenter;
      gap: 2px;
      line-height: 1;

      @include sp {
        font-size: vw_sp(14);
      }
    }

    &__nr {
      @include fontSecondary(32px, 25);
      font-weight: 700;
      line-height: 1;
    }

    &--2 {
      @include flexCol;
      flex-wrap: wrap-reverse;
      align-content: flex-end;

      .cost-col {
        &__title {
          @include flexCenter;
          gap: respValuePC(4px);
          margin-right: calc(-1 * respValuePC(60px));

          @include sp {
            gap: vw_sp(4);
            margin-right: calc(-1 * vw_sp(36));
          }

          .logo {
            display: inline-block;
            width: respValuePC(103px);

            @include sp {
              width: vw_sp(82);
            }
          }
        }

        &__top {
          width: respValuePC(260px);
          height: respValuePC(90px);
          background: url("../img/after_bkg.svg") no-repeat center center /
            contain;
          align-items: center;

          @include sp {
            width: vw_sp(196);
            height: vw_sp(71);
          }

          &-wrap {
            width: respValuePC(200px);
            margin: 0 0 0 auto;

            @include sp {
              width: vw_sp(160);
            }
          }

          .cost-col__text {
            color: $colorPrimary;
            font-size: respValuePC(16px);
            letter-spacing: 0.014em;
            font-weight: 700;
            line-height: 1;

            @include sp {
              font-size: vw_sp(14);
            }

            .text-big {
              @include fontSecondary(36px, 26);
            }
          }

          .cost-col__price {
            color: $colorBlack;
            font-size: respValuePC(12px);
            letter-spacing: 0.014em;
            font-weight: 700;

            @include sp {
              font-size: vw_sp(14);
            }

            .cost-col__nr {
              @include fontSecondary(23px, 18);
              position: relative;
              padding-left: respValuePC(8px);

              @include sp {
                padding-left: vw_sp(10);
              }

              &::before {
                content: "";
                width: respValuePC(7px);
                height: respValuePC(14px);
                position: absolute;
                background: url("../img/after_arrow.svg") no-repeat center
                  center/ contain;
                left: 0;
                top: 50%;
                transform: translateY(-50%);

                @include sp {
                  width: vw_sp(7);
                  height: vw_sp(14);
                  background: url("../img/after_arrow.svg") no-repeat center
                    center/ contain;
                }
              }
            }
          }
        }

        &__head {
          height: respValuePC(70px);
          border-top-left-radius: 0;
          border-top-right-radius: 0;

          @include sp {
            height: vw_sp(56);
          }
        }
        &__foot {
          height: respValuePC(140px);

          @include sp {
            height: vw_sp(112);
          }
        }
      }
    }
  }
  .baloon {
    width: respValuePC(200px);
    height: respValuePC(87px);
    background: url("../img/after_baloon_bkg.svg") no-repeat center center /
      contain;
    @include flexCenter;
    margin-left: respValuePC(20px);

    @include sp {
      position: absolute;
      bottom: vw_sp(34);
      right: vw_sp(24);
      background: url("../img/after_baloon_bkg_sp.svg") no-repeat center center /
        contain;
      width: vw_sp(150);
      height: vw_sp(87);
      padding-top: vw_sp(14);
    }

    &__inner {
      text-align: center;
      margin-right: calc(-1 * respValuePC(20px));

      @include sp {
        margin-right: 0;
      }
    }

    &__text {
      font-size: respValuePC(16px);
      font-weight: 700;

      @include sp {
        font-size: vw_sp(14);
        line-height: 1.5;
      }
    }

    &__price {
      @include fontPrimary(18px, 10);
      color: $colorPrimary;
      font-weight: 700;

      .cost-col__nr {
        @include fontSecondary(36px, 28);
        letter-spacing: 0.02em;
        margin-right: 3px;
      }
    }
  }
}

.reasons {
  background: url("../img/reasons_bkg.webp") no-repeat top center / 100% 100%;
  padding: respValuePC(100px) 0 respValuePC(200px);

  @include sp {
    background: url("../img/reasons_bkg_sp.webp") no-repeat top center / 100%
      100%;
    padding: vw_sp(80) 0 vw_sp(40);
  }

  &__inner {
  }

  &__title {
    @include flexCenter;
    gap: respValuePC(17px);
    font-size: respValuePC(56px);
    font-weight: 500;
    color: $colorWhite;
    margin-bottom: respValuePC(40px);

    @include sp {
      gap: vw_sp(12);
      font-size: vw_sp(32);
      margin-bottom: vw_sp(40);
      align-items: center;
      line-height: 1;
    }
  }

  &__logo {
    width: respValuePC(187px);

    @include sp {
      width: vw_sp(100);
    }
  }

  &__container {
    width: respValuePC(1120px);
    height: respValuePC(504px);
    margin: auto;
    position: relative;

    @include sp {
      width: vw_sp(342);
      height: auto;
      @include flexCol;
      gap: vw_sp(20);
    }
  }

  .reason,
  .reason--1 {
    width: respValuePC(1120px);
    background: $colorWhite;
    border-radius: respValuePC(24px);
    padding: respValuePC(56px);
    position: absolute;
    left: 0;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);

    @include sp {
      width: 100%;
      padding: vw_sp(40) vw_sp(20);
      position: relative;
      border-radius: vw_sp(12);
    }
  }

  .reason {
    top: 110%;
    visibility: hidden;

    @include sp {
      top: unset;
      visibility: visible;
    }

    &--4 {
      // top: respValuePC(10px);
      z-index: 4;
    }

    &--3 {
      // top: respValuePC(10px);
      z-index: 3;
    }
    &--2 {
      // top: respValuePC(20px);
      z-index: 1;
    }
    &--1 {
      // top: respValuePC(30px);
      z-index: 1;
    }

    &__inner {
      @include flexCenter;
      gap: respValuePC(24px);

      @include sp {
        flex-direction: column;
        gap: vw_sp(28);
      }
    }

    &__desc {
      flex: 1;
    }

    &__point {
      @include fontSecondary(16px, 16);
      font-weight: 700;
      text-transform: uppercase;
      padding-left: respValuePC(27px);
      position: relative;
      margin-bottom: respValuePC(18px);

      @include sp {
        padding-left: vw_sp(27);
        margin-bottom: vw_sp(8);
      }

      &::before {
        content: "";
        width: respValuePC(23px);
        height: respValuePC(15px);
        position: absolute;
        background: url("../img/point_icon.svg") no-repeat center center/contain;
        left: 0;
        top: 50%;
        transform: translateY(-50%);

        @include sp {
          width: vw_sp(23);
          height: vw_sp(15);
        }
      }
    }

    &__title {
      font-size: respValuePC(32px);
      font-weight: 500;
      letter-spacing: 0.016em;
      line-height: calc(52 / 32);
      margin-bottom: respValuePC(40px);

      @include sp {
        font-size: vw_sp(20);
        line-height: calc(30 / 20);
        margin-bottom: vw_sp(20);
      }
    }

    &__text {
      font-size: respValuePC(16px);
      letter-spacing: 0.014em;
      line-height: calc(32 / 16);

      @include sp {
        font-size: vw_sp(16);
        line-height: calc(28 / 16);
      }
    }

    &__img {
      width: respValuePC(448px);
      height: respValuePC(344px);

      @include sp {
        width: vw_sp(302);
        height: auto;
      }
    }

    &--4 {
      @include glass;
      .reason__point {
        &::before {
          background: url("../img/point_icon_gr.svg") no-repeat center center/
            contain;
        }
      }
    }
  }
}

.contact {
  padding-bottom: respValuePC(100px);

  @include sp {
    padding-bottom: vw_sp(60);
  }

  &__inner {
  }

  &__title {
    font-size: respValuePC(21px);
    font-weight: 700;
    letter-spacing: 0.014em;
    line-height: 1;
    text-align: center;
    color: $colorPrimary;
    // margin-bottom: respValuePC(40px);
    @include flexCenter;
    gap: 3px;

    @include sp {
      font-size: vw_sp(20);
      flex-wrap: wrap;
      width: 100%;
      margin-bottom: vw_sp(10);
    }

    .text-normal {
      @include sp {
        width: 100%;
      }
    }

    .text-big {
      font-size: respValuePC(29px);

      @include sp {
        font-size: vw_sp(28);
        width: fit-content;
      }
    }

    .text-bigger {
      @include fontSecondary(41px, 44);
      font-weight: 500;
      line-height: 1;
      width: fit-content;
    }
  }

  &__subtitle {
    font-size: respValuePC(21px);
    letter-spacing: 0.014em;
    line-height: calc(54 / 21);
    text-align: center;
    color: $colorPrimary;
    margin-bottom: respValuePC(24px);

    @include sp {
      font-size: vw_sp(16);
      line-height: calc(26 / 16);
      margin-bottom: vw_sp(40);
    }
  }

  &__btn {
    position: relative;
    width: respValuePC(720px);
    height: respValuePC(210px);
    display: block;
    background: linear-gradient(
      90deg,
      $colorGradient1 0%,
      $colorGradient2 100%
    );
    border-radius: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 respValuePC(83px);
    position: relative;
    margin-inline: auto;

    @include sp {
      width: vw_sp(342);
      height: vw_sp(80);
      padding: 0 vw_sp(42);
      margin-bottom: vw_sp(28);
    }

    &::before {
      position: absolute;
      display: block;
      content: "";
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      border-radius: 200px;
      opacity: 0;
      z-index: 2;
      transition: opacity .15s ease-out;
    }

    &:hover::before {
      opacity: 0.2;
    }

    &::after {
      content: "";
      position: absolute;
      width: respValuePC(180px);
      height: respValuePC(180px);
      background: url("../img/contact_btn.svg") no-repeat center center/contain;
      right: respValuePC(20px);

      @include sp {
        width: vw_sp(70);
        height: vw_sp(70);
        right: vw_sp(6);
        background: url("../img/contact_btn_sp.svg") no-repeat center
          center/contain;
      }
    }

    &-title {
      font-size: respValuePC(32px);
      font-weight: 500;
      letter-spacing: 0.016em;
      line-height: calc(52 / 32);
      color: $colorWhite;
      margin-bottom: respValuePC(10px);

      @include sp {
        font-size: vw_sp(18);
      }
    }

    &-text {
      color: $colorWhite;
    }
  }

  &__text {
    text-align: center;
    letter-spacing: 0.014em;
    margin-top: vw_sp(20);

    a {
      color: $colorPrimary;
      font-weight: 500;
      letter-spacing: 0.014em;
      text-decoration: underline;
      text-underline-offset: 3px;
    }
  }
}

.details {
  background: $colorWhite;
  padding: respValuePC(54px) respValuePC(80px);

  @include sp {
    padding: vw_sp(60) vw_sp(24);
  }

  &__inner {
    width: respValuePC(1120px);
    margin-inline: auto;

    @include sp {
      width: vw_sp(342);
    }
  }

  &__head {
    display: flex;
    gap: respValuePC(40px);
    margin-bottom: respValuePC(16px);

    @include sp {
      flex-direction: column;
      gap: vw_sp(20);
      margin-bottom: vw_sp(40);
    }
  }

  &__left {
  }

  &__icon {
    @include fontSecondary(16px, 16);
    font-weight: 700;
    text-transform: uppercase;
    padding-left: respValuePC(27px);
    position: relative;
    margin-bottom: respValuePC(18px);

    @include sp {
      padding-left: vw_sp(27);
      margin-bottom: vw_sp(10);
    }

    &::before {
      content: "";
      width: respValuePC(23px);
      height: respValuePC(15px);
      position: absolute;
      background: url("../img/point_icon.svg") no-repeat center center/contain;
      left: 0;
      top: 50%;
      transform: translateY(-50%);

      @include sp {
        width: vw_sp(23);
        height: vw_sp(15);
      }
    }
  }

  &__title {
    font-size: respValuePC(32px);
    font-weight: 500;
    letter-spacing: 0.016em;
    line-height: calc(52 / 32);

    @include sp {
      font-size: vw_sp(20);
    }
  }

  &__right {
    width: respValuePC(520px);
    padding-top: respValuePC(45px);

    @include sp {
      width: 100%;
      padding-top: 0;
    }
  }

  &__text {
    font-size: respValuePC(16px);

    @include sp {
      font-size: vw_sp(16);
    }
  }

  &__bottom {
    @include sp {
      width: vw_sp(211);
      margin-inline: auto;
    }
  }
}

.services {
  width: respValuePC(1120px);
  padding: respValuePC(100px) 0 respValuePC(50px);
  margin-inline: auto;

  @include sp {
    width: vw_sp(342);
    padding: vw_sp(60) 0 vw_sp(30);
  }

  &__title {
    @include flexCenter;
    gap: respValuePC(17px);
    font-size: respValuePC(56px);
    font-weight: 500;
    line-height: 1;
    margin-bottom: respValuePC(40px);

    @include sp {
      gap: vw_sp(10);
      font-size: vw_sp(32);
      margin-bottom: vw_sp(40);
    }

    img {
      width: respValuePC(187px);

      @include sp {
        width: vw_sp(100);
      }
    }
  }

  &__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: respValuePC(4px);

    @include sp {
      grid-template-columns: 1fr;
      gap: vw_sp(10);
    }
  }

  .service {
    min-height: respValuePC(405px);
    background: $colorWhite;
    border-radius: respValuePC(24px);
    padding: respValuePC(56px);
    box-shadow: 14px 14px 20px #23293b20;

    @include sp {
      min-height: auto;
      padding: vw_sp(30) vw_sp(20) vw_sp(40);
    }

    &__title-wrap {
      display: flex;
      align-items: center;
      gap: respValuePC(16px);
      margin-bottom: respValuePC(12px);

      @include sp {
        gap: vw_sp(16);
        margin-bottom: vw_sp(12);
      }
    }

    &__icon {
      width: respValuePC(56px);

      @include sp {
        width: vw_sp(50);
      }
    }

    &__title {
      font-size: respValuePC(24px);
      color: $colorPrimary;
      font-weight: 500;
      letter-spacing: 0.016em;

      @include sp {
        font-size: vw_sp(20);
        line-height: 1.4;
      }
    }

    &__text {
      padding-bottom: respValuePC(20px);
      margin-bottom: respValuePC(20px);
      border-bottom: 1px solid #e8e8e8;

      @include sp {
        padding-bottom: vw_sp(20);
        margin-bottom: vw_sp(28);
        letter-spacing: 0.014em;
      }
    }

    &__list {
      @include flexCol;
      gap: respValuePC(10px);
    }

    &__item {
      font-weight: 500;
      font-size: respValuePC(16px);

      @include sp {
        font-size: vw_sp(16);
      }

      span {
        color: $colorPrimary;
      }
    }
  }

  &__btn {
    position: relative;
    width: respValuePC(600px);
    height: respValuePC(120px);
    background: linear-gradient(
      90deg,
      $colorGradient1 0%,
      $colorGradient2 100%
    );
    border-radius: 200px;
    @include flexColCenter;
    position: relative;
    margin-inline: auto;
    margin-top: respValuePC(50px);
    box-shadow: 0px 0px 20px #23293b20;

    @include sp {
      width: vw_sp(342);
      height: vw_sp(60);
      margin-top: vw_sp(60);
      margin-bottom: vw_sp(28);
    }

    &::before {
      position: absolute;
      display: block;
      content: "";
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      border-radius: 200px;
      opacity: 0;
      z-index: 2;
      transition: opacity .15s ease-out;
    }

    &:hover::before {
      opacity: 0.2;
    }

    &-title {
      font-size: respValuePC(32px);
      font-weight: 500;
      letter-spacing: 0.016em;
      line-height: calc(52 / 32);
      color: $colorWhite;

      @include sp {
        font-size: vw_sp(18);
      }
    }

    &-text {
      font-size: respValuePC(12px);
      color: $colorWhite;
      letter-spacing: 0.014em;

      span {
        font-size: respValuePC(14px);
        font-weight: 500;
      }
    }
  }
}

.cases {
  width: respValuePC(1120px);
  padding: respValuePC(50px) 0 respValuePC(150px);
  margin-inline: auto;

  &__title {
    @include flexCenter;
    gap: respValuePC(17px);
    font-size: respValuePC(56px);
    font-weight: 500;
    line-height: 1;
    margin-bottom: respValuePC(40px);

    @include sp {
      gap: vw_sp(10);
      font-size: vw_sp(32);
      margin-bottom: vw_sp(40);
    }

    img {
      width: respValuePC(187px);

      @include sp {
        width: vw_sp(100);
      }
    }
  }

  &__inner {
  }

  .case {
    display: flex;
    align-items: center;
    gap: respValuePC(40px);
    padding: respValuePC(34px) 0;

    @include sp {
      gap: 0;
      padding: vw_sp(40) 0;
    }

    &:first-child {
      @include sp {
        padding: 0 0 vw_sp(40) 0;
      }
    }

    &:not(:last-child) {
      border-bottom: 1px solid #e8e8e8;
    }

    @include sp {
      flex-direction: column;
      gap: vw_sp(20);
    }

    &__img {
      width: respValuePC(332px);
      @include sp {
        width: vw_sp(342);
      }
    }

    &__desc {
      flex: 1;
    }

    &__title {
      font-size: respValuePC(24px);
      font-weight: 500;
      letter-spacing: 0.016em;
      line-height: calc(52 / 24);
      // margin-bottom: respValuePC(24px);

      @include sp {
        font-size: vw_sp(20);
        margin-bottom: vw_sp(10);
      }
    }

    &__subtitle {
      display: inline-block;
      font-size: respValuePC(16px);
      font-weight: 700;
      letter-spacing: 0.016em;
      line-height: calc(32 / 16);
      color: $colorPrimary;
      margin-bottom: respValuePC(16px);

      @include sp {
        font-size: vw_sp(16);
        margin-bottom: vw_sp(10);
        letter-spacing: 0.014em;
      }
    }

    &__text {
      font-size: respValuePC(16px);
      font-weight: 400;
      letter-spacing: 0.014em;
      line-height: calc(32 / 16);

      @include sp {
        font-size: vw_sp(16);
      }
    }
  }
}

.carousel {
  padding: respValuePC(100px) 0 respValuePC(100px);
  overflow-x: hidden;
  .companies {
    display: flex;
    gap: vw_pc(24);
    margin: auto 0 0 0;

    @include sp {
      margin: auto 0 vw_sp(10) 0;
    }

    &__list {
      min-width: vw_pc(2340);
      @include flexVerCenter;
      mix-blend-mode: darken;
      animation: 70s linear infinite top-markee;

      @include sp {
        min-width: vw_sp(1340);
      }

      @keyframes top-markee {
        0% {
          transform: translateX(-10%);
        }
        100% {
          transform: translateX(-100%);
        }
      }
    }
  }
}

.download {
  background: url("../img/download_bkg.webp") no-repeat top center / 100% 100%;
  padding-bottom: respValuePC(100px);

  @include sp {
    background: url("../img/download_bkg_sp.webp") no-repeat top center / 100%
      100%;
    padding-bottom: vw_sp(80);
  }

  &__inner {
    width: respValuePC(1120px);
    padding: respValuePC(56px) respValuePC(56px) respValuePC(56px)
      respValuePC(72px);
    margin-inline: auto;
    @include glass;

    @include sp {
      padding: vw_sp(40) vw_sp(20);
    }
  }

  &__container {
    @include flexCenter;
    gap: respValuePC(40px);

    @include sp {
      flex-direction: column;
      align-items: flex-start;
      gap: vw_sp(32);
    }
  }

  &__desc {
  }

  &__text {
    font-size: respValuePC(32px);
    font-weight: 500;
    color: $colorPrimary;
    @include flexVerCenter;
    letter-spacing: 0.016em;
    line-height: 1;
    margin-bottom: respValuePC(5px);

    @include sp {
      font-size: vw_sp(19);
      margin-bottom: vw_sp(5);
    }

    .text-bigger {
      @include fontSecondary(69px, 41);
      font-weight: 700;
    }

    .text-big {
      @include fontSecondary(40px, 25);
      font-weight: 700;
      padding-top: respValuePC(5px);

      @include sp {
        padding-top: vw_sp(5);
      }
    }
  }

  &__logo {
    width: respValuePC(333px);
    margin-bottom: respValuePC(40px);

    @include sp {
      width: vw_sp(200);
      margin-bottom: 0;
    }
  }

  &__btn {
    position: relative;
    width: respValuePC(345px);
    height: respValuePC(80px);
    background: linear-gradient(
      90deg,
      $colorGradient1 0%,
      $colorGradient2 100%
    );
    border-radius: 200px;
    @include flexCenter;
    font-size: respValuePC(24px);
    font-weight: 500;
    letter-spacing: 0.016em;
    line-height: calc(52 / 32);
    color: $colorWhite;
    box-shadow: 0px 0px 20px #23293b20;

    @include sp {
      width: vw_sp(302);
      height: vw_sp(60);
      font-size: vw_sp(18);
    }

    &::before {
      position: absolute;
      display: block;
      content: "";
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      border-radius: 200px;
      opacity: 0;
      z-index: 2;
      transition: opacity .15s ease-out;
    }

    &:hover::before {
      opacity: 0.2;
    }
  }

  &__img {
    width: respValuePC(605px);

    @include sp {
      width: 100%;
    }
  }

  .contact__btn {
    margin-top: respValuePC(100px);
    background: $colorWhite;
    color: $colorBlack;

    @include sp {
      margin-top: vw_sp(80);
    }

    @include sp {
      width: vw_sp(342);
      height: vw_sp(80);
      padding: 0 vw_sp(29);
      margin-bottom: vw_sp(28);
    }

    &::after {
      background: url("../img/contact_btn_purple.svg") no-repeat center center/
        contain;

      @include sp {
        width: vw_sp(70);
        height: vw_sp(70);
        right: vw_sp(6);
        background: url("../img/contact_btn_purple_sp.svg") no-repeat center
          center/contain;
      }
    }

    @include sp {
      font-size: vw_sp(18);
    }

    &-title,
    &-text {
      color: $colorBlack;
    }
  }

  .contact__text {
    @include sp {
      color: $colorWhite;

      a {
        color: $colorWhite;
      }
    }
  }
}

.footer {
  padding: respValuePC(70px) respValuePC(137px) respValuePC(54px)
    respValuePC(80px);
  background: #22293b;

  @include sp {
    padding: vw_sp(80) vw_sp(24) vw_sp(20) vw_sp(24);
  }

  &__inner {
    @include flexCenter;

    @include sp {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  &__left {
  }

  &__logo {
    width: respValuePC(226px);

    @include sp {
      width: vw_sp(144);
      margin-bottom: vw_sp(40);
    }
  }

  &__center {
    border-left: 1px solid #3c4969;
    border-right: 1px solid #3c4969;
    padding: 0 respValuePC(56px) 0 respValuePC(56px);
    margin: 0 respValuePC(56px) 0 respValuePC(50px);

    @include sp {
      border: none;
      border-top: 1px solid #3c4969;
      border-bottom: 1px solid #3c4969;
      padding: vw_sp(40) 0;
      margin: 0;
    }
  }

  &__company {
    color: $colorWhite;
    font-size: respValuePC(16px);
    font-weight: 700;
    letter-spacing: 0.014em;
    line-height: calc(32 / 16);
    margin-bottom: respValuePC(40px);

    @include sp {
      font-size: vw_sp(16);
      margin-bottom: vw_sp(40);
    }
  }

  &__wrap {
    display: flex;
    gap: respValuePC(40px);

    @include sp {
      flex-direction: column;
      gap: vw_sp(40);
    }
  }

  &__address {
    color: #d0d1e0;
    line-height: 2;
    letter-spacing: 0.014em;

    @include sp {
      line-height: calc(24 / 14);
    }
  }

  &__right {
    height: 100%;
    @include flexCol;
    justify-content: center;

    @include sp {
      padding-top: vw_sp(40);
    }
  }

  &__link {
    color: $colorWhite;
    text-transform: uppercase;
    margin-bottom: respValuePC(71px);
    letter-spacing: 0.014em;

    @include sp {
      margin-bottom: vw_sp(80);
    }

    &:first-of-type {
      margin-bottom: respValuePC(40px);

      @include sp {
        margin-bottom: vw_sp(40);
      }
    }
  }

  &__copy {
    font-size: respValuePC(12px);
    color: #d0d1e0;

    @include sp {
      font-size: vw_sp(12);
    }
  }
}
