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 {
    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(30);
      margin-top: vw_sp(80);
    }

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

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

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

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

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

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

  &__title-sub {
    font-size: vw_pc(34);
    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(35);
      line-height: 1.2;
    }
  }

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

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

.cost {
  position: relative;
  margin-bottom: respValuePC(140px);

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

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

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

  &__inner {
    width: respValuePC(1120px);
    margin-inline: auto;
    padding: respValuePC(70px) 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 {
    display: flex;
    align-items: center;
    gap: respValuePC(26px);

    @include sp {
      width: 100%;
      flex-direction: column;
      gap: vw_sp(60);
    }
  }

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

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

    &--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(276px);
    height: respValuePC(74px);
    @include flexVerCenter;
    gap: respValuePC(7px);
    background: $colorBlack;
    padding: 0 respValuePC(20px);
    border-radius: 200px;
    position: relative;
    margin-top: calc(-1 * respValuePC(30px));
    margin-bottom: respValuePC(50px);

    @include sp {
      width: vw_sp(276);
      height: vw_sp(74);
      gap: vw_sp(7);
      padding: vw_sp(16) vw_sp(20);
      margin-top: calc(-1 * vw_sp(24));
      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 $colorBlack;
      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 $colorBlack;
        bottom: calc(-1 * vw_sp(15));
      }
    }
  }

  &__item-icon {
    width: respValuePC(44px);
    height: respValuePC(44px);
    @include flexCenter;
    @include fontSecondary(11px, 11);
    background: $colorWhite;
    border-radius: 200px;
    padding: respValuePC(10px);
    line-height: 1;
    text-align: center;

    @include sp {
      width: vw_sp(44);
      height: vw_sp(44);
      padding: vw_sp(10);
    }
  }

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

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

  &__list {
    @include flexCol;
    align-items: flex-start;
    gap: respValuePC(14px);

    @include sp {
      gap: vw_sp(14);
      padding: 0 vw_sp(10) vw_sp(34) vw_sp(20);
    }
  }

  &__point {
    @include flexCenter;
    gap: respValuePC(10px);

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

  &__point-icon {
    min-width: respValuePC(26px);
    min-height: respValuePC(26px);

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

  &__item-text {
    font-size: respValuePC(16px);
    letter-spacing: 0.014em;
    line-height: calc(24 / 16);
    font-weight: 500;

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

.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(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 {
  @include sp {
    display: none;
  }

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

  &__img {
    width: respValuePC(317px);
  }

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

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

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

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

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

.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;
      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: $colorPrimary;
    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;
    }
  }
}

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

  @include sp {
    background: url("../img/services_bkg_sp.webp") 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;
    }
  }

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

  .service {
    width: respValuePC(1120px);
    background: $colorWhite;
    border-radius: respValuePC(12px);
    padding: respValuePC(56px);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
    background: #f6f5ff;

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

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

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

    &__desc {
      flex: 1;
      @include flexCol;
      align-items: center;
    }

    &__point {
      @include fontSecondary(24px, 17);
      font-weight: 700;
      text-transform: uppercase;
      padding-left: respValuePC(27px);
      position: relative;
      margin-bottom: respValuePC(30px);
      text-align: center;

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

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

    &__wrap {
      width: respValuePC(917px);
      display: flex;
      background: $colorWhite;
      padding: respValuePC(38px) respValuePC(45px);
      border-radius: respValuePC(10px);
      box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);

      @include sp {
        width: 100%;
        padding: vw_sp(30) vw_sp(20);
        border-radius: vw_sp(16);
        flex-direction: column;
      }
    }

    &__list {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: respValuePC(20px);

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

      &:not(:first-child) {
        @include sp {
          margin-top: vw_sp(16);
        }
      }
    }

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

    &__item {
      @include flexVerCenter;
      height: respValuePC(49px);

      @include sp {
        height: auto;
      }
    }

    &__text {
      font-size: respValuePC(16px);
      letter-spacing: 0.016em;
      line-height: calc(24 / 16);
      font-weight: 700;
      color: #3a64e9;
      padding-left: respValuePC(28px);
      position: relative;

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

      &::before {
        content: "";
        width: respValuePC(18px);
        height: respValuePC(18px);
        background: url("../img/check_icon.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);
        }
      }
    }

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

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

.cases {
  width: respValuePC(1120px);
  padding: respValuePC(100px) 0 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(80);
      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 {
      gap: 0;
      padding: vw_sp(40) 0;
    }

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

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