    *,
    *::after,
    *::before {
      box-sizing: border-box;
      font-family: "Montserrat", sans-serif;
    }

    html,
    body,
    div,
    span,
    applet,
    object,
    iframe,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    blockquote,
    pre,
    a,
    abbr,
    acronym,
    address,
    big,
    cite,
    code,
    del,
    dfn,
    em,
    img,
    ins,
    kbd,
    q,
    s,
    samp,
    small,
    strike,
    strong,
    sub,
    sup,
    tt,
    var,
    b,
    u,
    i,
    center,
    dl,
    dt,
    dd,
    ol,
    ul,
    li,
    fieldset,
    form,
    label,
    legend,
    table,
    caption,
    tbody,
    tfoot,
    thead,
    tr,
    th,
    td,
    article,
    aside,
    canvas,
    details,
    embed,
    figure,
    figcaption,
    footer,
    header,
    hgroup,
    menu,
    nav,
    output,
    ruby,
    section,
    summary,
    time,
    mark,
    audio,
    video {
      margin: 0;
      padding: 0;
      border: 0;
      font-size: 100%;
      font: inherit;
      vertical-align: baseline;
    }
    /* HTML5 display-role reset for older browsers */
    article,
    aside,
    details,
    figcaption,
    figure,
    footer,
    header,
    hgroup,
    menu,
    nav,
    section {
      display: block;
    }
    body {
      line-height: 1;
      height: 100%;
      font-family: "Montserrat", sans-serif;
    }

    /* general styles */

    :root {
      font-size: 16px;

      --color-blue: #3169fe;
      --color-gray: #f6f7fa;
      --color-deep-gray: #eef3f7;
      --color-white: #ffffff;
      --color-light-black: #0c1837;
      --color-black: #000000;
      --color-dark-blue: #4c4f70;
      --color-orange: #ff6b61;

      --radius: 30px;
      --border-gray: 1px solid #9ba9b4;

      --padding-top: 120px;
      --padding-top-m: 50px;
    }

    html,
    body {
      height: 100%;
    }

    body::-webkit-scrollbar {
      width: 12px;
    }

    body::-webkit-scrollbar-track {
      background: var(--color-white);
    }

    body::-webkit-scrollbar-thumb {
      background-color: var(--color-blue);
    }

    html {
      scroll-behavior: smooth;
    }

    .wrapper {
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    section {
      width: 100%;
    }

    .container {
      max-width: 1170px;
      margin: 0 auto;
    }

    .btn {
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: var(--color-white) !important;
      padding: 16px 30px;

      font-size: 1rem;
      line-height: 100%;

      border-radius: var(--radius);
    }

    .btn-icon {
      display: flex;
      align-items: center;
      gap: 10px;
      width: max-content;
      text-decoration: none;
      color: var(--color-white) !important;
      padding: 16px 30px;

      font-size: 1rem;
      line-height: 100%;

      border-radius: var(--radius);
    }

    .btn__wrapper {
      display: flex;
      gap: 30px;
    }

    .btn-orange {
      background-color: var(--color-orange);
      transition: all 0.2s ease-in-out;
    }

    .btn-orange:hover {
      background-color: #ff4437;
      transform: scale(1.03);
    }

    .section__title {
      font-size: 2.25rem;
      color: var(--color-dark-blue);
      font-weight: 700;
      line-height: 140%;
    }

    /* general styles end */

    /* header */

    .header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;

      padding: 50px 0;
      background-color: inherit;
      z-index: 3;
    }

    /* header end */

    /* welcome */

    .welcome {
      position: relative;
      overflow: hidden;
      height: 100vh;
      max-height: 900px;
      background-color: var(--color-blue);
      display: flex;
      align-items: center;
    }

    .welcome::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background-color: var(--color-white);
      transform: translateX(-105%);
      animation: welcomeWhiteWave 2.6s cubic-bezier(0.76, 0, 0.24, 1) 0.2s both;
      pointer-events: none;
    }

    .welcome__menu {
      min-height: 100%;

      display: flex;
      flex-direction: column;
      align-items: flex-end;

      flex: 30%;

      padding-right: 75px;

      background-color: var(--color-gray);
    }

    .logo {
      padding-top: 50px;
      max-width: 170px;
      display: flex;
      justify-content: flex-end;
      padding-right: 50px;
    }

    .welcome__nav {
      display: flex;
      flex-direction: column;
      align-items: flex-start;

      height: 100%;

      margin-top: 170px;
    }

    .welcome__link {
      text-align: left;

      color: var(--color-black) !important;
      font-weight: 700;
      text-decoration: none;
      font-size: 1rem;
      line-height: 140%;

      max-width: 170px;

      margin-bottom: 60px;

      transition: color 0.2s ease-in-out;
    }

    .welcome__link:hover {
      color: var(--color-blue);
    }

    .welcome__content {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      margin: 0 auto;
      padding-top: 100px;

      display: flex;
      /* align-items: center; */

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

    .welcome__header h1,
    .welcome__wrapper > p,
    .welcome__benefit__item p {
      animation: welcomeTextColor 2.6s cubic-bezier(0.76, 0, 0.24, 1) 0.2s both;
    }

    .welcome .btn-white {
      animation: welcomeWhiteButton 2.6s cubic-bezier(0.76, 0, 0.24, 1) 0.2s
        both;
    }

    @keyframes welcomeWhiteWave {
      0% {
        transform: translateX(-105%);
      }

      42%,
      58% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(105%);
      }
    }

    @keyframes welcomeTextColor {
      0%,
      18% {
        color: var(--color-white);
      }

      42%,
      58% {
        color: var(--color-dark-blue);
      }

      82%,
      100% {
        color: var(--color-white);
      }
    }

    @keyframes welcomeWhiteButton {
      0%,
      18% {
        background-color: var(--color-white);
        color: #363636;
        -webkit-text-fill-color: #363636;
      }

      42%,
      58% {
        background-color: var(--color-blue);
        color: var(--color-white);
        -webkit-text-fill-color: var(--color-white);
      }

      82%,
      100% {
        background-color: var(--color-white);
        color: #363636;
        -webkit-text-fill-color: #363636;
      }
    }

    .welcome__wrapper {
      display: flex;
      flex-direction: column;
    }

    .welcome__wrapper > p {
      color: var(--color-white);
      font-weight: 700;
      font-size: 21px;
      padding-top: 20px;
    }

    .welcome__header {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      align-items: center;
    }

    .welcome__header h1 {
      font-size: 3rem;
      font-weight: 700;
      line-height: 130%;

      max-width: 716px;
    }

    .welcome__benefits {
      width: 100%;

      display: flex;
      justify-content: space-between;

      padding: 70px 0;
    }

    .welcome__benefit__item {
      width: 100%;
      max-width: 31%;

      display: flex;
    }

    .welcome__benefit__item p {
      margin-left: 10px;

      font-size: 1.3125rem;
      line-height: 130%;
    }

    .welcome__benefit__item img {
      width: 16px;
      height: 26px;
    }

    .burger-btn {
      width: 30px;
      height: 30px;
      position: relative;
      z-index: 10002;
      overflow: hidden;

      display: none;

      cursor: pointer;
    }
    .burger-btn span {
      width: 30px;
      height: 3px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: var(--color-blue);
      transition: all 0.5s;
    }

    .menu .welcome__link {
      text-align: center;
    }

    .burger-btn span:nth-of-type(2) {
      top: calc(50% - 8px);
    }
    .burger-btn span:nth-of-type(3) {
      top: calc(50% + 8px);
    }

    .burger-btn.active span:nth-of-type(1) {
      display: none;
    }
    .burger-btn.active span:nth-of-type(2) {
      background-color: var(--color-blue);
      top: 50%;
      transform: translate(-50%, 0%) rotate(45deg);
    }
    .burger-btn.active span:nth-of-type(3) {
      background-color: var(--color-blue);
      top: 50%;
      transform: translate(-50%, 0%) rotate(-45deg);
    }

    .hidden {
      overflow: hidden;
    }

    .welcome__mobile img {
      display: none;
    }

    .menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 40px 30px;
      padding-top: 121px;
      background: var(--color-white);
      transform: translateX(100%);
      transition: transform 0.5s;

      z-index: 100;

      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-between;
    }

    .mobile-menu__nav {
      display: flex;
      flex-direction: column;
    }

    .mobile-menu__nav a {
      margin-bottom: 40px;
      font-weight: 700;
      font-size: 20px;
      line-height: 100%;
      text-align: left !important;

      color: var(--color-black) !important;
      text-decoration: none;
    }

    .mobile-menu__nav a:last-child {
      margin-bottom: 0px;
    }

    .mobile-menu__info {
      display: flex;
      flex-direction: column;
    }

    .mobile-menu__social a {
      margin-right: 25px;
    }

    .mobile-menu__phone {
      margin: 40px 0;

      font-weight: 700;
      font-size: 22px;
      line-height: 100%;
      color: #000000;
      letter-spacing: 0.01em;
    }

    .mobile-menu__contacts {
      display: flex;
      flex-direction: column;
    }

    .mobile-menu__contacts a {
      font-weight: 600;
      font-size: 18px;
      line-height: 100%;

      color: #000000 !important;

      text-decoration: none;
    }

    .mobile-menu__contacts a:last-child {
      margin-top: 20px;
    }

    .menu.active {
      transform: translateX(0);
    }

    @media (max-width: 1550px) {
      .welcome {
        max-height: auto;
      }
      .welcome__content {
        padding-top: 130px;
      }
    }

    @media (max-width: 1024px) {
      :root {
        font-size: 14px;
      }

      .welcome__header h1 {
        font-size: 1.5rem;
      }

      .welcome__wrapper > p {
        font-size: 18px;
      }

      .welcome__header {
        flex-direction: column-reverse;
        align-items: flex-start;
      }

      .welcome__menu {
        padding-right: unset;
      }

      .welcome__benefit__item p {
        font-size: 1rem;
      }
    }

    @media (max-width: 768px) {
      .logo {
        padding-right: 15px;
      }

      .welcome__content {
        padding-left: 25px;
      }

      .welcome__nav {
        margin-top: 100px;
        align-items: flex-end;
        padding-right: 35px;
      }

      .welcome__link {
        text-align: right;
      }

      .welcome__benefits {
        flex-direction: column;
        padding: 30px 0;
      }

      .welcome__benefit__item {
        margin-bottom: 20px;
        max-width: 100%;
      }
    }

    @media (max-width: 560px) {
      .welcome__menu {
        display: none;
      }

      .welcome {
        height: auto;
        max-height: none;
      }

      .welcome__content {
        padding-left: 0;
        flex: 100%;

        padding: 0 10px;
      }

      .welcome__wrapper {
        padding-top: 130px;
        padding-bottom: 75px;
        height: 100%;
        align-items: center;
        justify-content: space-around;
      }

      .welcome__header {
        flex-direction: column;
      }

      .welcome__header img {
        margin-top: 20px;
        display: block;
        margin: 0 auto;
      }

      .welcome__header h1 {
        margin-right: 0;
        text-align: center;
        font-size: 36px;
        font-weight: 700;
        line-height: 120%;
      }

      .welcome__wrapper > p {
        text-align: center;
      }

      .welcome__benefits {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        padding-top: 40px;
        padding-bottom: 20px;
      }

      .welcome__benefit__item {
        /* justify-content: center; */
        margin-top: 30px;
        width: 100%;
        max-width: 350px;
      }

      .welcome__benefit__item p {
        max-width: 324px;
        font-size: 21px;
        line-height: 130%;
        color: #ffffff;
      }

      .btn__wrapper {
        flex-direction: column;
      }
    }

    /* welcome end */

    /* statistics */
    .statistics {
      padding-top: var(--padding-top);
    }
    .statistics__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 60px;
      padding-bottom: 40px;
      border-bottom: var(--border-gray);
    }
    .statistics__item {
      display: flex;
      flex-direction: column;
      gap: 8px;
      color: var(--color-dark-blue);
    }
    .statistics__item h3 {
      font-weight: 700;
      font-size: 30px;
      line-height: 100%;
    }
    .statistics__item p {
      font-weight: 600;
      font-size: 14px;
      line-height: 140%;
    }
    .statistics__wrapper {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .statistics__author {
      width: 100%;
      display: flex;
      justify-content: space-between;
      gap: 30px;
      align-items: center;
    }

    .statistics__quote {
      flex: 1 1 auto;
      max-width: 790px;
      min-height: 170px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 30px 0;
    }

    .statistics__author-item {
      flex: 0 0 220px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .statistics__author-item img {
      width: 100px;
    }

    .statistics__author-item b {
      color: var(--color-black);
      font-size: 21px;
      font-weight: 600;
      padding-top: 10px;
    }

    .statistics__author-item p {
      color: var(--color-dark-blue);
      font-size: 16px;
      line-height: 140%;
      padding-top: 4px;
    }

    .statistics__quote img {
      width: 30px;
      flex-shrink: 0;
    }

    .statistics__quote p {
      font-size: 21px;
      font-weight: 400;
      line-height: 150%;
    }

    .statistics__quote-text {
      position: relative;
    }

    .statistics__quote-text::after {
      content: "";
      display: inline-block;
      width: 2px;
      height: 1em;
      margin-left: 4px;
      background-color: currentColor;
      vertical-align: -0.12em;
      opacity: 0;
    }

    .statistics__quote-text.typing::after,
    .statistics__quote-text.typed::after {
      opacity: 1;
      animation: statisticsQuoteCursor 0.75s steps(1) infinite;
    }

    @keyframes statisticsQuoteCursor {
      0%,
      45% {
        opacity: 1;
      }

      46%,
      100% {
        opacity: 0;
      }
    }

    @media (max-width: 1024px) {
      .statistics {
        padding-top: var(--padding-top-m);
      }

      .statistics__grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .statistics__author {
        flex-direction: column;
      }
      .statistics__quote,
      .statistics__author-item {
        width: 100%;
        max-width: 100%;
        flex-basis: auto;
      }
    }

    @media (max-width: 560px) {
      .statistics__item h3 {
        font-size: 21px;
      }
      .statistics__grid {
        gap: 30px;
      }
      .statistics__author {
        font-size: 18px;
      }
      .statistics__quote {
        padding: 0;
      }
    }

    /* statistics end */

    /* problems */

    .problems {
      padding-top: var(--padding-top);
    }

    .problems h2 {
      font-weight: 700;
      font-size: 36px;
      line-height: 46px;
      text-align: center;
      color: var(--color-dark-blue);
    }
    .problems__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .problems__item {
      background-color: var(--color-gray);
      padding: 30px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      position: relative;
      opacity: 0;
      transform: translateY(24px);
      transition:
        opacity 0.45s ease,
        transform 0.45s ease,
        background-color 0.35s ease;
    }

    .problems__item.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .problems__item.is-highlighted {
      background-color: var(--color-blue);
    }

    .problems__item h3,
    .problems__item p {
      transition: color 0.35s ease;
    }

    .problems__item.is-highlighted h3,
    .problems__item.is-highlighted p {
      color: var(--color-white);
    }
    .problems__item h3 {
      font-weight: 700;
      font-size: 21px;
      line-height: 130%;
      color: var(--color-black);
      max-width: 290px;
    }
    .problems__item p {
      font-weight: 400;
      font-size: 14px;
      line-height: 140%;
      color: var(--color-dark-blue);
    }
    .problems__dot {
      position: absolute;
      background-color: var(--color-orange);
      width: 15px;
      height: 15px;
      border-radius: 50%;
      right: 30px;
    }
    .problems__wrapper {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    @media (max-width: 1024px) {
      .problems__grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .problems h2 {
        font-size: 26px;
      }
      .problems__item h3 {
        font-size: 18px;
      }
      .problems {
        padding-top: var(--padding-top-m);
      }
    }

    @media (max-width: 560px) {
      .problems__grid {
        grid-template-columns: 1fr;
      }
    }

    /* problems end */

    /* description */

    .description {
      padding: 120px 0;
    }

    .description.gray,
    .top.gray {
      background-color: var(--color-deep-gray);
      padding: 30px 0;
    }

    .description .container {
      display: flex;
      flex-direction: column;
    }

    .description__content {
      display: flex;
      justify-content: space-between;

      margin-bottom: 70px;
    }

    .description__content.gray {
      margin-bottom: 0;
    }

    .description__content.consultation {
      flex-wrap: wrap;
    }

    .description__info {
      max-width: 668px;

      display: flex;
      flex-direction: column;
    }

    .description__info__text {
      display: flex;
      flex-direction: column;

      margin-top: 30px;
    }

    .description__info__text p {
      color: #363636;
      line-height: 162%;
    }

    @media (max-width: 1180px) {
      .description.gray {
        padding: 0;
        padding-top: 30px;
      }
      .description__content.gray {
        margin-bottom: 30px;
      }
      .author-big-card {
        margin-top: 30px;
      }
    }

    /* description end */

    /* steps */

    .steps {
      width: 100%;

      display: flex;
      justify-content: space-between;
    }

    .step__item {
      max-width: 270px;

      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .step__title {
      font-size: 1.3125rem;
      font-weight: 700;
      line-height: 123%;
      color: var(--color-dark-blue);

      margin-top: 20px;
      margin-bottom: 8px;
    }

    .step__description {
      color: #363636;
      font-size: 0.875rem;
      line-height: 140%;
    }

    @media (max-width: 1180px) {
      .container {
        padding: 0 15px;
      }

      .description__content img {
        display: none;
      }

      .description__content .consultation-img {
        display: block;
      }

      .description__info {
        max-width: unset;
        width: 90%;
      }

      .description__info .section__title {
        text-align: left;
      }

      .steps {
        flex-wrap: wrap;
      }

      .step__item {
        margin-bottom: 40px;
      }
    }

    @media (max-width: 560px) {
      .steps {
        flex-wrap: wrap;
        justify-content: center;
      }

      .step__item:nth-child(even) {
        align-items: flex-end;
      }

      .step__item:nth-child(even) p {
        text-align: end;
      }
    }

    /* steps end */

    /* complex */

    .complex {
      padding-top: 100px;
      padding-bottom: 120px;
      background-color: var(--color-gray);
    }

    .complex .container {
      width: 100%;
      display: flex;
      /* align-items: flex-end; */
      justify-content: space-between;
    }

    .complex-title {
      max-width: 238px;
    }

    .complex__wrapper {
      display: flex;
      flex-direction: column;
      margin-left: 30px;
      /* margin-left: 200px; */
    }

    .complex__item {
      box-sizing: border-box;
      margin-bottom: 20px;

      max-width: 902px;

      padding: 30px 40px;
      background-color: var(--color-white);
      border: var(--border-gray);

      display: flex;
      align-items: flex-start;

      transition: transform 0.2s ease-in-out;
    }

    .complex__item:hover {
      transform: scale(1.01);
    }

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

    .complex__info {
      margin-left: 30px;
      display: flex;
      flex-direction: column;
    }

    .complex__title {
      color: var(--black-color);
      font-weight: 700;
      font-size: 1.3125rem;
      line-height: 130%;

      margin-bottom: 15px;
    }

    .complex__text {
      color: #2f4152;
      font-size: 0.875rem;
      line-height: 140%;
    }

    @media (max-width: 1180px) {
      .complex .container {
        flex-direction: column;
        align-items: center;
      }

      .complex-title {
        max-width: unset;
        margin-right: 0;
        margin-bottom: 30px;
      }

      .complex__wrapper {
        margin-left: 0;
      }
    }

    @media (max-width: 430px) {
      .complex__item img {
        display: none;
      }

      .complex__info {
        margin-left: 0;
      }
    }

    /* complex end */

    /* why-me */
    .why-we__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
    .why-we__item {
      display: flex;
      flex-direction: column;
      gap: 18px;
      padding: 32px 40px;
      border: var(--border-gray);
    }
    .why-we__item-top {
      display: flex;
      align-items: center;
      width: 100%;
      gap: 20px;
    }
    .why-we__item-top h3 {
      color: var(--color-black);
      font-weight: 700;
      font-size: 21px;
      line-height: 130%;
    }
    .why-we__item p {
      font-weight: 400;
      font-size: 14px;
      line-height: 140%;
      color: var(--color-light-black);
    }
    .why-we__wrapper {
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    .why-we__wrapper h2 {
      font-weight: 700;
      font-size: 36px;
      line-height: 46px;
      text-align: center;
      color: var(--color-dark-blue);
    }

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

    @media (max-width: 560px) {
      .why-we__item-top {
        flex-direction: column;
      }
    }

    /* why-me end */

    /* reviews */
    .reviews {
      padding-top: var(--padding-top);
    }
    .reviews__slider {
      position: relative;
      width: 100%;
      padding: 0 72px;
    }
    .reviews__slider-item {
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 30px;
      padding: 30px;
      background-color: var(--color-white);
    }
    .reviews__slider-item-bottom {
      display: flex;
      gap: 16px;
    }
    .reviews__slider-item-bottom img {
      width: 60px;
      object-fit: cover;
      border-radius: 50%;
    }
    .reviews__slider-item-description {
    }
    .reviews__slider-item-info {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .reviews__slider-item-name {
    }
    .reviews__slider-item-top {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .reviews__slider-item-top > img {
      width: 20px;
    }
    .reviews__slider-item-top p {
      font-weight: 400;
      font-size: 16px;
      line-height: 130%;
    }
    .reviews__wrapper {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .reviews__wrapper h2 {
      font-weight: 700;
      font-size: 36px;
      line-height: 140%;
      text-align: center;
      color: var(--color-dark-blue);
    }

    .reviews__slider-button {
      position: absolute;
      top: 50%;
      z-index: 2;
      width: 44px;
      height: 44px;
      padding: 0;
      border: none;
      background-color: transparent;
      cursor: pointer;
      transform: translateY(-50%);
    }

    .reviews__slider-button--prev {
      left: 0;
    }

    .reviews__slider-button--next {
      right: 0;
    }

    .reviews__slider-button img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .reviews__slider-button.swiper-button-disabled {
      opacity: 0.35;
      cursor: default;
    }

    @media (max-width: 768px) {
      .reviews__slider {
        padding: 0;
      }

      .reviews__slider-item {
        padding: 22px;
      }

      .reviews__slider-item-top {
        flex-direction: column;
      }
    }

    /* reviews end */

    /* faq */

    .faq {
      padding-top: var(--padding-top);
    }

    .faq__title {
      font-weight: 700;
      font-size: 36px;
      line-height: 120%;
      color: var(--color-dark-blue);
    }

    .faq__list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq__item {
      border: var(--border-gray);
      background-color: var(--color-white);
    }

    .faq__question {
      width: 100%;
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 22px 26px;
      border: none;
      background-color: transparent;
      color: var(--color-dark-blue);
      font-weight: 700;
      font-size: 18px;
      line-height: 130%;
      text-align: left;
      cursor: pointer;
    }

    .faq__question-icon {
      flex: 0 0 22px;
      width: 36px;
      transition: transform 0.25s ease;
    }

    .faq__question[aria-expanded="true"] .faq__question-icon {
      transform: rotate(45deg);
    }

    .faq__answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq__answer-content {
      padding: 0 26px 24px;
      color: #2f4152;
      font-weight: 400;
      font-size: 16px;
      line-height: 150%;
    }

    @media (max-width: 768px) {
      .faq {
        padding-top: var(--padding-top-m);
      }
      .faq__wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .faq__title {
        font-size: 30px;
      }

      .faq__question {
        min-height: 64px;
        padding: 18px 20px;
        font-size: 16px;
      }

      .faq__answer-content {
        padding: 0 20px 20px;
        font-size: 15px;
      }
    }

    /* faq end */

    /* sertificates */

    .sertificates {
      padding-top: var(--padding-top);
      padding-bottom: 80px;
    }

    .sertificates__wrapper {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .sertificates__title {
      font-weight: 700;
      font-size: 36px;
      line-height: 140%;
      text-align: center;
      color: var(--color-dark-blue);
    }

    .sertificates__slider {
      position: relative;
      width: 100%;
      padding: 10px 72px;
    }

    .sertificates__slide {
      height: auto;
      border: var(--border-gray);
      background-color: var(--color-white);
      overflow: hidden;
    }

    .sertificates__slide img {
      display: block;
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .sertificates__slider-button {
      position: absolute;
      top: 50%;
      z-index: 2;
      width: 44px;
      height: 44px;
      padding: 0;
      border: none;
      background-color: transparent;
      cursor: pointer;
      transform: translateY(-50%);
    }

    .sertificates__slider-button--prev {
      left: 0;
    }

    .sertificates__slider-button--next {
      right: 0;
    }

    .sertificates__slider-button img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .sertificates__slider-button.swiper-button-disabled {
      opacity: 0.35;
      cursor: default;
    }

    @media (max-width: 768px) {
      .sertificates {
        padding-top: var(--padding-top-m);
        padding-bottom: 60px;
      }

      .sertificates__title {
        font-size: 30px;
      }

      .sertificates__slider {
        padding: 10px 50px;
      }
    }

    /* sertificates end */

    /* team */

    .team {
      padding-top: 100px;
      padding-bottom: 60px;
    }

    .team .container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .team__wrapper {
      width: 100%;

      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;

      margin-top: 72px;
    }

    .team__item {
      width: 269px;
      max-width: 269px;

      display: flex;
      flex-direction: column;
      align-items: center;

      cursor: pointer;
      transition: transform 0.2s ease-in-out;

      margin-bottom: 60px;
    }

    .team__item:hover {
      transform: scale(1.1);
    }

    .team__title {
      color: var(--color-dark-blue);
      font-weight: 700;
      line-height: 150%;

      margin-top: 16px;
    }

    @media (max-width: 1110px) {
      .team .container .section__title {
        text-align: center;
      }

      .team__wrapper {
        justify-content: center;
      }
    }

    /* team end */

    /* question */

    .questions {
      margin-top: var(--padding-top);
      padding: 45px 0;
      background-color: var(--color-blue);
      color: var(--color-white);
    }

    .questions .container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .question__title {
      text-align: center;
      font-size: 1.3125rem;
      font-weight: 700;
      line-height: 143%;
    }

    .question__subtitle {
      line-height: 162%;
      text-align: center;

      margin-top: 16px;
      margin-bottom: 28px;
    }

    .form__title {
      font-size: 1.5rem;
      margin: 0 auto;
      text-align: center;
      margin-bottom: 20px;
    }

    .check-list__form {
      display: flex;
      flex-direction: column;
    }

    .check-list__form .inp {
      border: 1px solid var(--color-black);
      width: 100%;
      margin-top: 20px;
    }

    .check-list__form input::placeholder {
      color: var(--border-gray);
    }

    .question__form {
      padding: 0 33px;
      width: 100%;

      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .inp {
      flex: 1;

      padding: 19px 20px;
      background-color: inherit;
      border: 1px solid var(--color-white);
      border-radius: 40px;

      margin-right: 8px;
      outline: none;

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

    .inp:focus {
      border: 1px solid var(--color-orange);
    }

    .inp::placeholder {
      color: #e0e4f0;
    }

    .question__form .btn {
      flex: 1;
    }

    .btn-white {
      padding-top: 18px;
      padding-bottom: 18px;
      background-color: var(--color-white);
      color: #363636 !important;
      border: 0;

      cursor: pointer;
      transition: all 0.2s ease-in-out;
    }

    .btn-white:hover {
      transform: scale(1.01);
    }

    .politic {
      margin-top: 16px;

      font-size: 0.75rem;
      color: var(--color-white);
      text-align: center;
    }

    .politic a {
      color: var(--color-white) !important;
      text-decoration: underline !important;
    }

    @media (max-width: 992px) {
      .question__form {
        flex-direction: column;
      }

      .question__form .inp {
        margin-right: 0;
        margin-bottom: 15px;
      }
    }

    /* question end */

    /* director */

    .director {
      padding-top: 55px;
      background: linear-gradient(
        108.08deg,
        #d4d5d9 22.07%,
        #dcdde0 52.81%,
        #bdbfc6 84.2%
      );
    }

    .director .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .director__info {
      display: flex;
      flex-direction: column;
    }

    .director__header {
      font-weight: 700;
      font-size: 30px;
      color: var(--color-dark-blue);
    }

    .director__title2 {
      margin-bottom: 50px;
      font-size: 30px;
      font-weight: 700;
      line-height: 100%;
      color: #4c4f70;
    }

    .director__title {
      display: flex;
      align-items: center;
    }

    .director__title {
      font-size: 2.25rem;
      line-height: 140%;
      font-weight: 700;
    }

    .director__social {
      display: flex;
      align-items: center;
      margin-left: 15px;
    }

    .director__social a {
      text-decoration: none;
      margin-left: 15px;
    }

    .director__who {
      color: #2f4152;
      font-size: 1.5rem;
      line-height: 140%;

      max-width: 425px;

      margin-top: 20px;
      margin-bottom: 25px;
    }

    .director__social-mobile {
      display: none;
    }

    .director__about {
      color: #2f4152;
      line-height: 150%;
      max-width: 560px;
    }

    @media (max-width: 768px) {
      .director__title2 {
        text-align: center;
      }

      .director .container {
        flex-direction: column;
        align-items: center;
      }

      .director__image {
        max-width: 354px;
      }

      .director__header {
        display: block;
        text-align: center;
      }

      .director__title {
        flex-direction: column;
      }

      .director__social {
        display: none;
      }

      .director__who {
        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
      }

      .director__who p {
        max-width: 354px;
        font-size: 24px;
        line-height: 140%;

        margin-bottom: 25px;
      }

      .director__social-mobile {
        display: flex;
        align-items: center;
      }

      .director__social-mobile {
        margin-left: 0;
      }

      .director__social-mobile a:first-child {
        margin-left: 0;
      }

      .director__about {
        max-width: 354px;
        text-align: center;
        margin-bottom: 40px;
      }
    }

    @media (max-width: 392px) {
      .director__image {
        display: none;
      }
    }

    /* director end */

    /* clients */

    .clients {
      padding-top: 90px;
      padding-bottom: 60px;
    }

    .clients .container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .clients__wrapper {
      margin-top: 60px;
      width: 100%;

      display: flex;
      flex-wrap: wrap;
    }

    .client__item {
      width: 25%;

      display: flex;
      justify-content: center;

      margin-bottom: 40px;

      transition: transform 0.2s ease-in-out;
    }

    .client__item:hover {
      transform: scale(1.03);
    }

    .client__item img {
      max-height: 106px;
    }

    @media (max-width: 1180px) {
      .clients__wrapper {
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
      }

      .client__item {
        width: auto;
      }

      .section__title {
        text-align: center;
      }
    }

    @media (max-width: 560px) {
      .clients__wrapper {
        justify-content: center;
      }
    }

    /* clients end */

    /* footer */

    .footer {
      background-color: var(--color-black);
      padding: 50px 0;
    }

    .footer .container {
      display: flex;
      align-items: center;

      justify-content: space-between;
    }

    .footer__adress {
      display: flex;
      flex-direction: column;
    }

    .footer__adress a {
      color: var(--color-white) !important;
      text-decoration: none !important;
      font-weight: 600;
      font-size: 1.125rem;
      line-height: 150%;
    }

    .footer__adress .tel {
      color: var(--color-white) !important;
      text-decoration: none !important;
    }

    .footer__adress a:last-child {
      margin-top: 15px;
    }

    .footer__contacts {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    .footer__contacts a {
      color: var(--color-white) !important;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.375rem;
      line-height: 100%;

      margin-bottom: 20px;
    }

    .footer__contacts a {
      margin-left: 15px;
    }

    @media (max-width: 768px) {
      .footer .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }

      .footer__adress {
        align-items: center;

        margin: 40px 0;
      }

      .footer__contacts {
        align-items: center;
      }
    }

    /* footer end */

    /* copyright */

    .copyright {
      background: #f6f7fa;
      padding: 6px 0;
    }

    .copyright__policy {
      font-weight: 400;
      font-size: 14px;
      line-height: 150%;
      color: #000 !important;
    }

    .copyright .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .copyright .container p {
      font-size: 0.875rem;
      color: var(--color-black);
      line-height: 150%;
    }

    @media (max-width: 400px) {
      .copyright .container p {
        font-size: 0.65rem;
      }

      .copyright .container p:last-child {
        text-align: end;
      }
    }

    /* copyright end */

    #phone {
      letter-spacing: 1px;
    }

    .button-warning {
      transition: all 0.2s ease-in-out;
      animation: shake 0.5s normal;
    }

    .input-warning {
      transition: all 0.2s ease-in-out;
      animation: shake 0.5s normal;

      border: 1px solid var(--color-orange);
    }

    @keyframes shake {
      0% {
        transform: translate(0);
      }
      20% {
        transform: translate(3px);
      }
      40% {
        transform: translate(-3px);
      }
      60% {
        transform: translate(3px);
      }
      80% {
        transform: translate(-3px);
      }
      100% {
        transform: translate(0);
      }
    }

    .send-success {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    /* sticky-header */

    .sticky-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;

      padding: 16px 0;

      background-color: #f6f7fa;

      animation-name: show-header;
      animation-duration: 0.5s;
    }

    .sticky-header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .sticky-header__nav {
      display: flex;
      align-items: center;
      justify-content: space-between;

      max-width: 606px;
      width: 100%;
    }

    .sticky-header__nav .welcome__link {
      margin: 0;
      max-width: unset;
    }

    @keyframes show-header {
      0% {
        opacity: 0;
        top: -70px;
      }
      100% {
        opacity: 1;
        top: 0;
      }
    }
    .welcome__logo img {
      width: 100px;
    }
    @media (max-width: 1000px) {
      .sticky-header__nav,
      .sticky-header__btn {
        display: none;
      }
      .burger-btn {
        display: block;
      }
    }
    @media (max-width: 768px) {
      .sticky-header {
        background-color: var(--color-white);
        display: block !important;
      }

      .menu {
        background-color: #f6f7fa;
      }
      .welcome__logo img {
        width: 70px;
      }
    }

    /* sticky-header end */

    .none {
      /* display: none; */
    }

    #callback-form2 .question__title {
      display: flex;
      align-items: center;
    }

    #callback-form2 .question__title img {
      margin-right: 30px;
    }

    #openGetCourseForm {
      max-width: 400px;
      max-height: 500px;
      margin: auto;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      position: fixed;
      background: #fff;
      display: none;
      padding: 0 30px;
    }

    #openGetCourseForm.open {
      display: flex;
      justify-content: center;
      flex-direction: column;
    }

    #closeGetCourseForm {
      position: absolute;
      right: 10px;
      top: 10px;
      cursor: pointer;
    }

    .lt-block-wrapper {
      padding: 0 !important;
    }

    #popUpWrapper {
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3);
      position: fixed;
      left: 0;
      top: 0;
      display: none;
    }
    #popUpWrapper.open {
      display: block;
    }

    .top {
      padding-top: 30px;
    }

    .top__logo {
      width: 100px;
    }

    .section__title.dark {
      color: var(--color-black);
    }

    .author-card {
      margin-top: 40px;
      margin-bottom: 40px;
      display: flex;
      gap: 24px;
      width: 100%;
      padding: 20px;
      background-color: var(--color-white);
      border: 1px solid var(--color-dark-blue);
    }

    .author-card img {
      max-width: 120px;
      object-fit: cover;
    }

    .author-card__description {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 10px;
    }

    .author-card__description__title {
      font-size: 21px;
      color: var(--color-orange);
      font-weight: 700;
    }

    .author-card__description__text {
      font-size: 14px;
      color: var(--color-light-black);
      font-weight: 400;
    }

    .author-big-card {
      background-color: var(--color-white);
      border: 1px solid var(--color-black);
      padding: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    .author-big-card__description__title {
      font-weight: 700;
      font-size: 21px;
      color: var(--color-orange);
    }

    .author-big-card__description__text {
      font-weight: 400;
      font-size: 14px;
    }

    .author-big-card__description {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      max-width: 350px;
    }

    @media (max-width: 1180px) {
      .author-card img {
        display: block;
      }
    }

    @media (max-width: 576px) {
      .author-card {
        flex-wrap: wrap;
      }
    }

    .description_image {
      max-width: 300px;
    }

    .points__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      column-gap: 30px;
      row-gap: 60px;
    }

    .points_item {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .points_number {
      font-weight: 200;
      font-size: 48px;
      color: #ff6b61;
    }

    .points_item {
      font-weight: 700;
      font-size: 24px;
      color: #4c4f70;
    }

    .get-manual {
      background-color: var(--color-blue);
      margin: 120px 0;
    }

    .get-manual__wrapper {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 30px;
      padding: 60px 0;
    }

    .get-manual__title {
      font-weight: 700;
      color: var(--color-white);
      font-size: 24px;
      text-align: center;
      max-width: 920px;
      line-height: 130%;
    }

    .get-manual__content {
      display: flex;
      flex-direction: column;
      gap: 30px;
      padding: 0 100px;
    }

    .get-manual__item {
      display: flex;
      gap: 20px;
    }

    .get-manual__item__text {
      font-weight: 700;
      font-size: 24px;
      color: var(--color-white);
    }

    @media (max-width: 992px) {
      .get-manual__content {
        padding: 0;
      }
    }

    .med-description {
      padding-bottom: 120px;
    }

    .med-description__wrapper {
      padding: 0 100px;
    }

    .med-description__content {
      display: flex;
      gap: 30px;
      padding-top: 60px;
      align-items: center;
    }

    .med-description__title {
      font-weight: 700;
      font-size: 36px;
      color: var(--color-dark-blue);
      text-align: center;
    }

    .med-description__description {
      font-weight: 400;
      font-size: 24px;
      max-width: 670px;
    }

    .med-description__logo {
      max-width: 200px;
    }

    @media (max-width: 992px) {
      .med-description__description {
        text-align: center;
      }
      .med-description__wrapper {
        padding: 0 20px;
      }
      .med-description__content {
        flex-wrap: wrap;
        justify-content: center;
      }
    }

    .med-description__check-rows {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding-top: 60px;
    }

    .med-description__check-rows__item {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .med-description__check-rows_text {
      font-weight: 400;
      font-size: 18px;
      color: var(--color-black);
    }

    .complex-analysis {
      padding-top: 120px;
    }

    .complex-analysis__content {
      padding: 60px 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      column-gap: 30px;
      row-gap: 60px;
    }

    .complex-analysis__item {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .complex-analysis__item img {
      width: 60px;
    }

    .complex-analysis__title {
      font-weight: 700;
      font-size: 36px;
      color: var(--color-dark-blue);
    }

    .complex-analysis__text {
      font-size: 24px;
      color: var(--color-light-black);
    }

    .complex-title__extra {
      padding-top: 18px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .complex-title__price {
      background-color: var(--color-gray);
      color: var(--color-orange);
      border-radius: 36px;
      padding: 8px 16px;
      font-weight: 700;
      font-size: 16px;
      line-height: 110%;
    }

    .complex-title__price span {
      font-size: 21px;
    }

    .complex-title__read-more {
      display: inline-block;
      color: var(--color-dark-blue) !important;
      font-weight: 600;
      line-height: 110%;
      text-decoration: none;
    }

    .complex__item img {
      width: 60px;
    }

    @media (max-width: 992px) {
      .complex-analysis__title {
        font-size: 30px;
      }
    }

    @media (max-width: 560px) {
      .complex-title__price span {
        font-size: 18px;
      }
      .complex-title__extra {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    .what-we-do {
      padding-bottom: 120px;
    }

    .what-we-do__wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 60px;
    }

    .what-we-do__container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      column-gap: 30px;
      row-gap: 30px;
    }

    .what-we-do__item {
      border: var(--border-gray);
      padding: 30px;
      text-align: center;
      font-size: 18px;
      background-color: transparent;
      color: black;
      transition:
        background-color 0.3s ease,
        color 0.3s ease;
      cursor: pointer;
    }

    .what-we-do__item:hover {
      background-color: var(--color-blue);
      color: white;
    }

    .why-you-need {
      padding-bottom: 120px;
    }

    .why-you-need__wrapper {
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    .why-you-need__container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      column-gap: 70px;
      row-gap: 70px;
      padding: 0 100px;
    }

    .why-you-need__item {
      display: flex;
      gap: 15px;
      line-height: 150%;
    }

    .why-you-need__item img {
      width: 60px;
      height: min-content;
    }

    @media (max-width: 992px) {
      .why-you-need__container {
        padding: 0;
      }
    }

    @media (max-width: 442px) {
      .why-you-need__container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }