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(171);
    @include sp {
      width: vw_sp(145);
      margin-bottom: vw_sp(6);
    }
  }

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

    @include sp {
      display: block;
    }
  }

  &__list {
    display: flex;
    gap: vw_pc(22);
    margin-left: vw_pc(40);

    @include sp {
      display: none;
    }
  }

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

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

    @include sp {
      display: none;
    }
  }

  &__tel {
    font-family: $fontSecondary;
    font-size: vw_pc(18);
    font-weight: 700;
    letter-spacing: 0;
    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 {
    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;
  }

  .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 {
    @include glass;
    top: 0;
    @include visible;
  }

  .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 {
  position: absolute;
  top: calc(-1 * vw_pc(80));

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

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

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

  &__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(52);
      margin-top: vw_sp(80);
    }

    &__bkg {
      position: absolute;
      top: 50%;
      right: vw_pc(80);
      transform: translateY(-50%);
      width: vw_pc(627);
      height: vw_pc(495);
      background: url("../img/kv_bkg.png") no-repeat right center / contain;
      mix-blend-mode: darken;

      @include sp {
        top: 60%;
        left: 52%;
        right: unset;
        transform: translate(-50%, -50%);
        width: vw_sp(390);
        height: vw_sp(424);
        background: url("../img/kv_bkg_sp.png") no-repeat center center /
          contain;
      }
    }

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

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

    &__head {
      margin-bottom: vw_pc(30);

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

    &__bottom {
      @include flexVerCenter;
      gap: vw_pc(28);

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

  &__title-sub {
    font-size: vw_pc(32);
    font-weight: 700;
    color: #0032c1;
    letter-spacing: 0.016em;

    @include sp {
      font-size: vw_sp(22);
      letter-spacing: 0;
    }

    &--sm {
      font-size: vw_pc(26);

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

  &__title {
    font-size: vw_pc(58);
    font-weight: 700;
    color: #0032c1;
    letter-spacing: 0.016em;

    @include sp {
      font-size: vw_sp(40);
      line-height: 1.2;
      letter-spacing: 0;
    }

    &--sm {
      font-size: vw_pc(52);

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

  &__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(18);
    line-height: calc(28 / 18);
    font-weight: 500;
    letter-spacing: 0.016em;

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

  &__logo {
    width: vw_pc(225);

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

  &__btn {
    width: vw_pc(291);
    height: vw_pc(59);
    background: linear-gradient(
      180deg,
      $colorGradient1 0%,
      $colorGradient2 100%
    );
    border-radius: vw_pc(69);
    @include flexCenter;
    font-size: vw_pc(18);
    letter-spacing: 0.016em;
    color: $colorWhite;
    font-weight: 500;
    margin-top: vw_pc(28);
    box-shadow: 0 0 30px #23293b28;

    @include sp {
      display: none;
    }
  }

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

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

    &__list {
      @include flexVerCenter;
      gap: vw_pc(24);
      animation: 70s linear infinite top-markee;
      mix-blend-mode: darken;
      @keyframes top-markee {
        0% {
          transform: translateX(-10%);
        }
        100% {
          transform: translateX(-100%);
        }
      }

      @include sp {
        gap: vw_sp(24);
      }
    }

    &__item {
      width: vw_pc(100);

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

.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(60px) 0;

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

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

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

    &-ps {
      margin-top: respValuePC(30px);

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

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

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

      &--2 {
        line-height: 1.7;

        @include sp {
          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);
        }
      }
    }
  }
}

.strenghts {
  position: relative;
  padding: respValuePC(90px) 0 respValuePC(60px);
  margin-bottom: respValuePC(140px);

  @include sp {
    padding: vw_sp(60) 0 vw_sp(40);
    margin-bottom: vw_sp(80);
  }

  &::before {
    content: "";
    position: absolute;
    width: 100%;
    height: respValuePC(774px);
    background: linear-gradient(to bottom, #152fc1 0%, #5ec5ce 100%);
    bottom: 0;
    left: 0;

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

  &__title {
    @include flexCenter;
    gap: respValuePC(17px);
    font-size: respValuePC(56px);
    font-weight: 500;
    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(242px);

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

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

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

  &__wrap {
    align-items: center;
    gap: respValuePC(26px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: respValuePC(85px) respValuePC(26px);

    @include sp {
      width: 100%;
      grid-template-columns: 1fr;
      gap: vw_sp(64);
    }
  }

  &__item {
    width: respValuePC(490px);
    height: respValuePC(290px);
    background: $colorWhite;
    border-radius: respValuePC(24px);
    @include flexCol;
    align-items: center;

    @include sp {
      width: 100%;
      height: auto;
      border-radius: vw_sp(24);
      padding: 0 vw_sp(20) vw_sp(40) vw_sp(20);
    }

    &--1 {
      .cost__list {
        width: respValuePC(200px);

        @include sp {
          width: 100%;
        }
      }
    }
    &--2 {
      .cost__list {
        width: respValuePC(254px);

        @include sp {
          width: 100%;
        }
      }

      .cost__header {
        gap: respValuePC(18px);
        margin-bottom: respValuePC(58px);

        @include sp {
          gap: vw_sp(18);
          margin-bottom: vw_sp(20);
        }
      }
    }
    &--3 {
      .cost__list {
        width: respValuePC(282px);

        @include sp {
          width: 100%;
        }
      }
      .cost__header {
        gap: respValuePC(18px);
        margin-bottom: respValuePC(37px);

        @include sp {
          gap: vw_sp(18);
          margin-bottom: vw_sp(20);
        }
      }
    }
  }

  &__header {
    width: respValuePC(440px);
    height: respValuePC(134px);
    @include flexColCenter;
    gap: respValuePC(7px);
    background: linear-gradient(to right, #152fc1 0%, #5ec5ce 100%);
    padding: respValuePC(20px) 0;
    border-radius: 200px;
    position: relative;
    margin-top: calc(-1 * respValuePC(50px));
    margin-bottom: respValuePC(40px);

    @include sp {
      width: vw_sp(276);
      height: vw_sp(88);
      gap: vw_sp(5);
      padding: vw_sp(12) vw_sp(20);
      margin-top: calc(-1 * vw_sp(38));
      margin-bottom: vw_sp(40);
    }

    &::before {
      content: "";
      position: absolute;
      width: 0;
      height: 0;
      border-left: respValuePC(12px) solid transparent;
      border-right: respValuePC(12px) solid transparent;
      border-top: respValuePC(20px) solid #3a7ec8;
      left: 50%;
      bottom: calc(-1 * respValuePC(15px));
      transform: translateX(-50%);

      @include sp {
        border-left: vw_sp(12) solid transparent;
        border-right: vw_sp(12) solid transparent;
        border-top: vw_sp(20) solid #3a7ec8;
        bottom: calc(-1 * vw_sp(15));
      }
    }
  }

  &__item-icon {
    width: respValuePC(170px);
    height: respValuePC(24px);
    @include flexCenter;
    @include fontSecondary(15px, 11);
    background: $colorWhite;
    border-radius: 200px;
    padding: respValuePC(10px) 0 respValuePC(8px) 0;
    line-height: 1;
    text-align: center;
    color: #042a97;
    text-transform: uppercase;

    @include sp {
      width: vw_sp(130);
      height: vw_sp(18);
      padding: vw_sp(2);
    }
  }

  &__item-title {
    color: $colorWhite;
    font-size: respValuePC(22px);
    font-weight: 500;
    letter-spacing: 0.016em;
    line-height: calc(20 / 14);
    text-align: center;

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

  &__item-text {
    width: respValuePC(382px);
    font-size: respValuePC(16px);
    letter-spacing: 0.014em;
    line-height: calc(32 / 16);
    font-weight: 400;
    margin-inline: auto;

    @include sp {
      width: 100%;
      font-size: vw_sp(16);
      line-height: calc(26 / 16);
    }
  }
}

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

  @include sp {
    background: url("../img/reasons_bkg_sp.png") 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(242px);

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

  &__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;
    //     }
    //   }
    // }
  }
}

.banner {
  &__inner {
    width: respValuePC(720px);
    margin-inline: auto;
    background: $colorWhite;
    border-radius: respValuePC(24px);
    padding: respValuePC(28px);
    @include flexVerCenter;
    gap: respValuePC(23px);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);

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

  &__img {
    width: respValuePC(317px);

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

  &__text {
    font-size: respValuePC(26px);
    font-weight: 500;
    letter-spacing: 0.016em;
    line-height: calc(34 / 26);

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

    span {
      font-size: respValuePC(13px);
      font-weight: 400;
      letter-spacing: 0.016em;
      // line-height: calc(44 / 13);

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

  &__btn {
    width: vw_pc(291);
    height: vw_pc(59);
    background: linear-gradient(
      180deg,
      $colorGradient1 0%,
      $colorGradient2 100%
    );
    border-radius: vw_pc(69);
    @include flexCenter;
    margin: vw_pc(50) auto vw_pc(100);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);

    @include sp {
      width: vw_sp(262);
      height: vw_sp(59);
      margin: vw_sp(50) auto vw_sp(100);
      border-radius: vw_sp(69);
      margin: 0;
    }

    span {
      font-size: vw_pc(18);
      font-weight: 500;
      letter-spacing: 0.016em;
      color: $colorWhite;
      padding-right: vw_pc(20);
      position: relative;

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

      &::before {
        content: "";
        position: absolute;
        width: vw_pc(15);
        height: vw_pc(15);
        background: url("../img/btn_link_icon.png") no-repeat center
          center/contain;
        right: 0;
        top: 50%;
        transform: translateY(-50%);

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

.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: #0032c1;
    // margin-bottom: respValuePC(40px);
    @include flexCenter;
    gap: 3px;

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

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

      &:last-of-type {
        @include sp {
          width: fit-content;
          margin-top: vw_sp(16);
        }
      }
    }

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

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

    .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: #0032c1;
    margin-bottom: respValuePC(24px);

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

  &__btn {
    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(54);
    }

    &::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;
    }
  }
}

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

  @include sp {
    width: 100%;
    padding: vw_sp(60) vw_sp(20) vw_sp(40);
  }

  &__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(20);
    }

    img {
      width: respValuePC(187px);

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

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

  &__intro {
    width: respValuePC(900px);
    @include flexCenter;
    gap: respValuePC(56px);
    padding: respValuePC(56px) respValuePC(80px);
    border-radius: respValuePC(24px);
    margin-bottom: respValuePC(80px);
    margin-inline: auto;
    background: linear-gradient(to right, #152fc1 0%, #5ec5ce 100%);
    box-shadow: 14px 14px 20px #23293b05;

    @include sp {
      width: 100%;
      flex-direction: column;
      gap: 0;
      padding: vw_sp(27) vw_sp(20);
      margin-bottom: vw_sp(40);
    }
  }

  &__left {
    color: $colorWhite;
    font-size: respValuePC(24px);
    letter-spacing: 0.014em;
    line-height: calc(32 / 24);

    @include sp {
      font-size: vw_sp(16);
      font-weight: 500;
      line-height: calc(32 / 16);
      text-align: center;
    }
  }

  &__right {
    @include fontSecondary(46px, 31);
    font-weight: 700;
    color: $colorWhite;
    letter-spacing: 0.014em;
    line-height: calc(70 / 46);

    span {
      font-size: respValuePC(28px);

      @include sp {
        font-size: vw_sp(19);
        line-height: calc(47 / 31);
      }
    }
  }

  .options {
    &__title {
      font-size: respValuePC(36px);
      font-weight: 500;
      letter-spacing: 0.02em;
      margin-bottom: respValuePC(40px);
      text-align: center;

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

    &__inner {
      width: respValuePC(900px);
      background: $colorWhite;
      padding: respValuePC(60px) respValuePC(70px);
      border-radius: respValuePC(24px);
      margin-inline: auto;
      box-shadow: 14px 14px 20px #23293b05;

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

    &__list {
      display: grid;
      grid-template-columns: respValuePC(235px) respValuePC(235px) respValuePC(
          153px
        );
      gap: respValuePC(32px) respValuePC(70px);

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

    .option {
      display: flex;
      align-items: center;
      gap: respValuePC(10px);

      @include sp {
        gap: vw_sp(10);
      }

      &__icon {
        width: respValuePC(45px);
        height: respValuePC(45px);

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

      &__desc {
        @include flexCol;
        justify-content: center;
        gap: respValuePC(7px);

        @include sp {
          gap: vw_sp(10);
        }
      }

      &__text {
        font-size: respValuePC(16px);
        font-weight: 500;
        letter-spacing: 0.014em;
        line-height: 1;

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

      &__price {
        @include fontSecondary(16px, 16);
        font-weight: 700;
        letter-spacing: 0.014em;
        color: #032797;
        line-height: 1;

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

  &__btn {
    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(40);
      margin-bottom: vw_sp(28);
    }

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

  // .cost__wrap {
  //   overflow-y: hidden;
  //   background: linear-gradient(
  //     to bottom,
  //     transparent 0%,
  //     transparent 50%,
  //     #f9fafc 100%
  //   );
  //   // padding-bottom: respValuePC(34px);
  //   border-bottom: 1px solid #e8e8e8;

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

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

  //   &:last-of-type {
  //     @include sp {
  //       padding-bottom: 0;
  //       border-bottom: none;
  //     }
  //   }

  //   .cost__btn {
  //     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;
  //     margin-left: respValuePC(372px);
  //     position: relative;
  //     z-index: 2;
  //     display: none;
  //   }
  // }

  // .case {
  //   display: flex;
  //   gap: respValuePC(40px);
  //   padding: respValuePC(34px) 0;
  //   // max-height: respValuePC(333px);
  //   max-height: auto;
  //   transition: max-height 0.2s ease-in-out;
  //   overflow: hidden;
  //   position: relative;

  //   &::after {
  //     content: "";
  //     width: respValuePC(748px);
  //     height: respValuePC(136px);
  //     position: absolute;
  //     bottom: 0;
  //     right: 0;
  //     background: linear-gradient(to bottom, transparent 0%, #f9fafc 100%);
  //     opacity: 1;
  //     visibility: visible;
  //     z-index: 2;
  //     transition: opacity 0.3s ease-in-out;
  //     display: none;
  //   }

  //   // &.is-active {
  //   //   max-height: 10000px;

  //   //   &::after {
  //   //     opacity: 0;
  //   //     visibility: hidden;
  //   //   }
  //   // }

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

  //   &:last-of-type {
  //     @include sp {
  //       padding-bottom: 0;
  //     }
  //   }

  //   &__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: 1.2;
  //     // 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: 1.2;
  //     color: $colorPrimary;
  //     margin: respValuePC(24px) 0 respValuePC(16px);

  //     @include sp {
  //       font-size: vw_sp(16);
  //       margin: vw_sp(24) 0 vw_sp(16);
  //       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);
  //       line-height: calc(26 / 16);
  //     }
  //   }
  // }
}

.services {
  background: url("../img/reasons_bkg.png") no-repeat top center / 100% 100%;
  padding: respValuePC(120px) 0 respValuePC(220px);

  @include sp {
    background: url("../img/services_bkg_sp.png") no-repeat top center / 100%
      100%;
    padding: vw_sp(85) 0 vw_sp(88);
  }

  &__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(4);
      font-size: vw_sp(32);
      margin-bottom: vw_sp(40);
      align-items: center;
      line-height: 1;
      letter-spacing: 0.02em;
      flex-direction: column;
    }
  }

  &__logo {
    width: respValuePC(242px);

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

  &__container {
    width: respValuePC(1120px);

    margin: auto;
    position: relative;

    @include sp {
      width: 100%;

      @include flexCol;
      gap: vw_sp(20);
    }
  }

  &__list {
    width: fit-content;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: respValuePC(10px);
    margin-bottom: respValuePC(50px);
    margin-inline: auto;

    @include sp {
      width: vw_sp(342);
      gap: vw_sp(10);
      background: $colorWhite;
      color: $colorBlack;
      padding: vw_sp(40) vw_sp(20);
      border-radius: vw_sp(12);
      margin-bottom: vw_sp(40);
    }
  }

  &__item {
    font-size: respValuePC(16px);
    font-weight: 700;
    color: $colorWhite;
    position: relative;
    padding-left: respValuePC(25px);

    @include sp {
      font-size: vw_sp(16);
      color: $colorBlack;
      padding-left: vw_sp(25);
    }

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

      @include sp {
        width: vw_sp(18);
        height: vw_sp(18);
        background: url("../img/check_icon_bl.svg") no-repeat center
          center/contain;
        top: 0;
        transform: translateY(30%);
      }
    }
  }

  .service {
    width: respValuePC(1120px);
    @include glass;
    background: rgba(255, 255, 255, 0.9);
    border-radius: respValuePC(24px);
    padding: respValuePC(50px) respValuePC(60px);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;

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

    &__inner {
      @include sp {
        // width: vw_sp(342);
        // overflow-x: hidden;
      }
    }

    &__img {
      @include sp {
        width: vw_sp(342);
        overflow-x: scroll;
        padding-bottom: vw_sp(30);
      }

      img {
        @include sp {
          width: vw_sp(741);
        }
      }
    }
  }
}

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

  @include sp {
    width: 100%;
    padding: vw_sp(60) vw_sp(20);
  }

  &__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: 0;
    }

    img {
      width: respValuePC(187px);

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

  &__inner {
  }

  &__btn {
    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(40);
      margin-bottom: vw_sp(28);
    }

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

  .case__wrap {
    overflow-y: hidden;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 50%,
      #f9fafc 100%
    );
    // padding-bottom: respValuePC(34px);
    border-bottom: 1px solid #e8e8e8;

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

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

    &:last-of-type {
      @include sp {
        padding-bottom: 0;
        border-bottom: none;
      }
    }

    .case__btn {
      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;
      margin-left: respValuePC(372px);
      position: relative;
      z-index: 2;
      display: none;
    }
  }

  .case {
    display: flex;
    gap: respValuePC(40px);
    padding: respValuePC(34px) 0;
    // max-height: respValuePC(333px);
    max-height: auto;
    transition: max-height 0.2s ease-in-out;
    overflow: hidden;
    position: relative;

    &::after {
      content: "";
      width: respValuePC(748px);
      height: respValuePC(136px);
      position: absolute;
      bottom: 0;
      right: 0;
      background: linear-gradient(to bottom, transparent 0%, #f9fafc 100%);
      opacity: 1;
      visibility: visible;
      z-index: 2;
      transition: opacity 0.3s ease-in-out;
      display: none;
    }

    // &.is-active {
    //   max-height: 10000px;

    //   &::after {
    //     opacity: 0;
    //     visibility: hidden;
    //   }
    // }

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

    &:last-of-type {
      @include sp {
        padding-bottom: 0;
      }
    }

    &__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: 1.2;
      // 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: 1.2;
      color: $colorPrimary;
      margin: respValuePC(24px) 0 respValuePC(16px);

      @include sp {
        font-size: vw_sp(16);
        margin: vw_sp(24) 0 vw_sp(16);
        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);
        line-height: calc(26 / 16);
      }
    }
  }
}

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

  @include sp {
    background: url("../img/download_bkg_sp.png") no-repeat bottom center / 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 {
    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);
    }
  }

  &__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);
    }
  }
}

@mixin glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  opacity: 0.3;
}

@mixin glassDark {
  background: rgba(34, 41, 59, 0.9);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  opacity: 0.3;
}
