@charset "UTF-8";

/* stylelint-disable */

/* stylelint-disable */

/* stylelint-disable scss/operator-no-unspaced */

/* stylelint-disable scss/dollar-variable-colon-newline-after */

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

html {
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  font-size: 62.5%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

a {
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

button {
  border: none;
  text-align: left;
  background-color: transparent;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

input {
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.focus-visible {
  outline: auto 1px;
}

.ios .lock {
  position: relative;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:root {
  --font-family: "inter", sans-serif;
  --font-weight: 400;
  --content-width: 120.8rem;
  --container-offset: 1.5rem;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --transition: 0.3s;
  --clr-default-100: #fff;
  --clr-default-400: #181818;
  --clr-default-900: #000;
}

body {
  font-size: 1.6rem;
  color: #050c16;
  background: #fafafc;
}

body.lock {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  overscroll-behavior: none;
}

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

.wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

main {
  flex-grow: 1;
}

.container {
  margin-inline: auto;
  padding-inline: var(--container-offset);
  width: 100%;
  max-width: var(--container-width);
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.default__caption {
  margin-inline: auto;
  border-radius: 1rem;
  padding: 0.5rem 1.5rem;
  width: max-content;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(1.2rem, 1.1302832244rem + 0.2178649237vw, 1.4rem);
  line-height: 150%;
  text-align: center;
  text-transform: uppercase;
  color: #433be9;
  background: rgba(67, 59, 233, 0.05);
}

.default__title {
  margin-top: 1.5rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(3.5rem, 2.802832244rem + 2.1786492375vw, 5.5rem);
  line-height: 120%;
  text-align: center;
  color: #050c16;
}

.default__title span {
  color: #433be9;
}

.default__text {
  margin-top: 1.5rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5302832244rem + 0.2178649237vw, 1.8rem);
  line-height: 150%;
  text-align: center;
  color: #050c16;
}

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

.menu__item:not(:last-child) {
  margin-right: 2rem;
}

.menu__item a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 130%;
  color: #fff;
}

.burger {
  display: none;
}

.header {
  padding-top: clamp(1rem, 0.651416122rem + 1.0893246187vw, 2rem);
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 2rem;
  padding: 2.5rem;
  background: #050c16;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.header-call_mob {
  display: none;
}

.header-call__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.header-call__wrap a {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 130%;
  text-align: center;
  color: #fff;
}

.header-call__wrap span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 130%;
  text-align: center;
  color: #fff;
}

.footer {
  padding-top: 4rem;
  padding-bottom: clamp(1rem, 0.651416122rem + 1.0893246187vw, 2rem);
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
  border-radius: 1.6rem;
  padding: clamp(1.9rem, 1.6908496732rem + 0.6535947712vw, 2.5rem) clamp(1.9rem, 1.3422657952rem + 1.74291939vw, 3.5rem);
  background: #050c16;
  gap: clamp(2rem, 2.674291939rem + -0.5446623094vw, 2.5rem);
}

.footer__item {
  display: flex;
  gap: 2.5rem;
}

.footer__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  min-width: clamp(3.5rem, 2.454248366rem + 3.2679738562vw, 6.5rem);
  min-height: clamp(3.5rem, 2.454248366rem + 3.2679738562vw, 6.5rem);
  max-width: clamp(3.5rem, 2.454248366rem + 3.2679738562vw, 6.5rem);
  max-height: clamp(3.5rem, 2.454248366rem + 3.2679738562vw, 6.5rem);
  background: #433be9;
}

.footer__ico img {
  width: clamp(1.9rem, 1.4119825708rem + 1.5250544662vw, 3.3rem);
}

.footer__block {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.1302832244rem + 0.2178649237vw, 1.4rem);
  color: #fff;
}

.footer__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5302832244rem + 0.2178649237vw, 1.8rem);
  color: #fff;
}

.footer__tel {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2rem, 1.825708061rem + 0.5446623094vw, 2.5rem);
  color: #fff;
}

.footer__socials {
  display: flex;
  gap: 0.7rem;
}

.faq {
  padding-top: clamp(8rem, 7.302832244rem + 2.1786492375vw, 10rem);
}

.faq__wrapper {
  display: flex;
  margin-top: 4rem;
  gap: 3rem;
}

.faq-info {
  padding: 4rem 3rem 3rem;
  max-width: 41rem;
  box-shadow: 0 1.2rem 3rem 0 #e8e7f9;
  background: #f5f4fb;
}

.faq-info__img {
  display: flex;
  justify-content: center;
}

.faq-info__title {
  margin-top: 3rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2rem, 1.825708061rem + 0.5446623094vw, 2.5rem);
  color: #050c16;
}

.faq-info__text {
  margin-top: 1rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.3302832244rem + 0.2178649237vw, 1.6rem);
  line-height: 150%;
  color: #050c16;
}

.faq-info__list {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  gap: 1rem;
}

.faq-info__list li {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.3302832244rem + 0.2178649237vw, 1.6rem);
  line-height: 150%;
  color: #050c16;
  gap: 1rem;
}

.faq-info__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  border-radius: 1.5rem;
  padding-block: 2rem;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.2605664488rem + 0.4357298475vw, 1.8rem);
  line-height: 150%;
  color: #fff;
  background: #433be9;
  gap: 1.5rem;
}

.faq-info__free {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.1302832244rem + 0.2178649237vw, 1.4rem);
  line-height: 150%;
  color: #050c16;
  gap: 1rem;
}

.faq__list {
  margin-right: 4.5rem;
  border-radius: 2.5rem;
  width: 100%;
  box-shadow: 0 1.2rem 3rem 0 #e8e7f9;
  background: #fff;
}

.faq__item {
  padding: 3rem;
  transition: padding-bottom var(--transition);
}

.faq__item-title {
  position: relative;
  padding-right: 3.5rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.4605664488rem + 0.4357298475vw, 2rem);
  line-height: 135%;
  color: #050c16;
  transition: color var(--transition);
  cursor: pointer;
}

.faq__item-title::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1.4rem;
  height: 0.8rem;
  background-image: url("../img/faq-arrow.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(-50%) rotate(0);
  transition: transform var(--transition);
}

.faq__item-body {
  overflow: hidden;
  max-height: 0;
  box-sizing: content-box;
  line-height: 160%;
  transition: max-height var(--transition), margin-top var(--transition);
}

.faq__item-body p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.3302832244rem + 0.2178649237vw, 1.6rem);
  line-height: 150%;
  color: #050c16;
}

.faq__item:not(:last-child) {
  border-bottom-style: solid;
  border-bottom-width: 0.1rem;
  border-bottom-color: rgba(5, 12, 22, 0.1);
}

.faq__item--active {
  padding-bottom: 2.5rem;
  transition: padding-bottom var(--transition);
}

.faq__item--active .faq__item-title {
  color: #433be9;
}

.faq__item--active .faq__item-title::before {
  transform: translateY(-50%) rotate(180deg);
  transition: transform var(--transition);
}

.faq-side {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 4rem;
  padding: 2.5rem;
  gap: 2.5rem;
}

.faq-side__block {
  display: flex;
  gap: 2rem;
}

.faq-side__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  min-width: clamp(3.5rem, 2.279956427rem + 3.8126361656vw, 7rem);
  min-height: clamp(3.5rem, 2.279956427rem + 3.8126361656vw, 7rem);
  max-width: clamp(3.5rem, 2.279956427rem + 3.8126361656vw, 7rem);
  max-height: clamp(3.5rem, 2.279956427rem + 3.8126361656vw, 7rem);
  background: #d1cbf7;
}

.faq-side__ico img {
  width: clamp(2.1rem, 1.6816993464rem + 1.3071895425vw, 3.3rem);
}

.faq-side__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5302832244rem + 0.2178649237vw, 1.8rem);
  color: #050c16;
}

.faq-side__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.1302832244rem + 0.2178649237vw, 1.4rem);
  color: #050c16;
}

.faq-side-wrap {
  display: flex;
  gap: 1.5rem;
}

.faq-side-wrap__item {
  display: flex;
  gap: 1rem;
}

.faq-side-wrap__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.3302832244rem + 0.2178649237vw, 1.6rem);
  color: #050c16;
}

.faq-side-wrap__text {
  margin-top: 0.7rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.1302832244rem + 0.2178649237vw, 1.4rem);
  color: #050c16;
}

.hero {
  padding-top: 5rem;
}

.hero .hero-deal__percent.green,
.hero .hero-deal__result.green {
  color: #28a745;
  /* зелёный */
}

.hero .hero-deal__percent.yellow,
.hero .hero-deal__result.yellow {
  color: #ffc107;
  /* жёлтый */
}

.hero .hero-deal__percent.red,
.hero .hero-deal__result.red {
  color: #dc3545;
  /* красный */
}

.hero .hero-deal__percent,
.hero .hero-deal__result {
  transition: color 0.3s ease;
  /* плавная смена цвета */
}

.hero__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}

.hero-info__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(3.3rem, 2.1845315904rem + 3.48583878vw, 6.5rem);
  line-height: 120%;
  color: #050c16;
}

.hero-info__title div {
  position: relative;
  width: max-content;
}

.hero-info__title div img {
  position: absolute;
  left: 105%;
  top: 50%;
  width: clamp(9.195rem, 7.2411873638rem + 6.105664488vw, 14.8rem);
  transform: translateY(-50%);
}

.hero-info__title span {
  color: #433be9;
}

.hero-info__text {
  margin-top: 1.5rem;
  max-width: 41rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5302832244rem + 0.2178649237vw, 1.8rem);
  line-height: 150%;
  color: #050c16;
}

.hero-info__analys {
  display: flex;
  align-items: center;
  margin-top: 3rem;
  gap: 1.5rem;
}

.hero-info__analys img {
  min-width: 5rem;
  min-height: 5rem;
  max-width: 5rem;
  max-height: 5rem;
}

.hero-info__analys span {
  max-width: 31.5rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.3302832244rem + 0.2178649237vw, 1.6rem);
  line-height: 150%;
  color: #050c16;
}

.hero-deal {
  border-radius: 2.5rem;
  padding: clamp(2rem, 1.477124183rem + 1.6339869281vw, 3.5rem);
  width: 100%;
  max-width: clamp(28rem, 19.9825708061rem + 25.0544662309vw, 51rem);
  box-shadow: 0 12px 30px 0 #e8e7f9;
  background-color: #fff;
}

.hero-deal__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2rem, 1.825708061rem + 0.5446623094vw, 2.5rem);
  line-height: 150%;
  color: #050c16;
}

.hero-deal__wrap {
  display: flex;
  flex-direction: column;
  margin-top: clamp(1.5rem, 1.151416122rem + 1.0893246187vw, 2.5rem);
  gap: 1rem;
}

.hero-deal__item {
  position: relative;
  display: flex;
  align-items: center;
  border: 0.1rem solid rgba(5, 12, 22, 0.1);
  border-radius: 1.5rem;
  padding: 1.5rem 2.5rem 1.5rem 1.5rem;
  cursor: pointer;
  gap: clamp(0.8rem, 0.5559912854rem + 0.7625272331vw, 1.5rem);
}

.hero-deal__item::after {
  content: "";
  display: flex;
  margin-left: auto;
  width: 1.4rem;
  height: 0.7rem;
  background-image: url("/img/hero-ico-arrow.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-deal__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
}

.hero-deal__block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-deal__question {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.1rem, 0.9954248366rem + 0.3267973856vw, 1.4rem);
  line-height: 150%;
  color: #050c16;
}

.hero-deal__answer {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.2rem, 0.9908496732rem + 0.6535947712vw, 1.8rem);
  line-height: 150%;
  color: #050c16;
}

.hero-deal__prospect {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0.1rem solid rgba(5, 12, 22, 0.1);
  border-radius: 1.5rem;
  padding: 1.5rem clamp(2rem, 1.825708061rem + 0.5446623094vw, 2.5rem);
  background: #f8f9fe;
}

.hero-deal__main {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-deal__mark {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.3302832244rem + 0.2178649237vw, 1.6rem);
  line-height: 150%;
  color: #050c16;
}

.hero-deal__result {
  border-radius: 1.5rem;
  padding: 0.5rem 1.5rem;
  width: max-content;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(1.2rem, 1.1302832244rem + 0.2178649237vw, 1.4rem);
  line-height: 150%;
  color: #26c777;
  background: rgba(38, 199, 119, 0.1);
}

.hero-deal__percent {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.5rem, 1.628540305rem + 2.7233115468vw, 5rem);
  line-height: 150%;
  color: #26c777;
}

.hero-deal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  border-radius: 1.5rem;
  padding-block: 2rem;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.2605664488rem + 0.4357298475vw, 1.8rem);
  line-height: 150%;
  color: #fff;
  background: #433be9;
  gap: 1.5rem;
}

.hero-deal__free {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.1302832244rem + 0.2178649237vw, 1.4rem);
  line-height: 150%;
  color: #050c16;
  gap: 1rem;
}

.hero .select-current {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.2605664488rem + 0.4357298475vw, 1.8rem);
  line-height: 150%;
  color: #050c16;
}

.hero .select-list {
  position: absolute;
  left: 0;
  top: calc(100% + 1rem);
  z-index: 10;
  display: none;
  list-style: none;
  margin: 0;
  border: 1px solid rgba(5, 12, 22, 0.1);
  border-radius: 1.5rem;
  padding: 1rem;
  width: 100%;
  background: #fff;
}

.hero .select-item {
  border-radius: 1.6rem;
  padding: 0.8rem 1.2rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.2605664488rem + 0.4357298475vw, 1.8rem);
  line-height: 150%;
  color: #050c16;
  cursor: pointer;
}

.hero .select-item:hover {
  background: #f0f0f0;
}

.hero .hero-deal__item.open .select-list {
  display: block;
}

.num {
  padding-top: 5rem;
}

.num__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 2.5rem;
  padding: clamp(2rem, 1.477124183rem + 1.6339869281vw, 3.5rem) clamp(2rem, 1.128540305rem + 2.7233115468vw, 4.5rem);
  box-shadow: 0 1.2rem 3rem 0 #e8e7f9;
  background-color: #fff;
}

.num__item {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 2rem;
  max-width: 30rem;
  gap: 2.5rem;
  gap: 2.5rem;
}

.num__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  border-radius: 1rem;
  width: 25rem;
  height: 0.3rem;
  background-color: rgba(67, 59, 233, 0.05);
}

.num__item_purple::after {
  background-color: #433be9;
}

.num__item_green::after {
  background-color: #26c777;
}

.num__item_blue::after {
  background-color: #297ed1;
}

.num__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.6rem;
  width: clamp(8rem, 7.651416122rem + 1.0893246187vw, 9rem);
  height: clamp(8rem, 7.651416122rem + 1.0893246187vw, 9rem);
  background: rgba(67, 59, 233, 0.05);
}

.num__info {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.5rem, 2.325708061rem + 0.5446623094vw, 3rem);
  line-height: 150%;
  color: #050c16;
}

.num__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.3302832244rem + 0.2178649237vw, 1.6rem);
  line-height: 150%;
  color: #050c16;
}

.info {
  padding-top: clamp(8rem, 7.302832244rem + 2.1786492375vw, 10rem);
}

.info__block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(3rem, 2.651416122rem + 1.0893246187vw, 4rem);
  gap: 3rem;
}

.info-wrap {
  border-radius: 2rem;
  padding: clamp(2rem, 1.651416122rem + 1.0893246187vw, 3rem);
}

.info-wrap_green {
  border: 0.1rem solid rgba(38, 199, 119, 0.2);
  background: rgba(38, 199, 119, 0.03);
}

.info-wrap_green .info-wrap__item {
  border-top-color: rgba(38, 199, 119, 0.2);
}

.info-wrap_green .info-wrap__ico {
  background-color: rgba(38, 199, 119, 0.05);
}

.info-wrap_green .info-wrap__warning {
  border: 0.1rem solid rgba(38, 199, 119, 0.2);
  background: rgba(38, 199, 119, 0.05);
}

.info-wrap_green .info-wrap__warning span {
  font-weight: 700;
  color: #26c777;
}

.info-wrap_red {
  border: 0.1rem solid rgba(220, 38, 38, 0.2);
  background: rgba(220, 38, 38, 0.03);
}

.info-wrap_red .info-wrap__item {
  border-top-color: rgba(220, 38, 38, 0.2);
}

.info-wrap_red .info-wrap__ico {
  background-color: rgba(220, 38, 38, 0.05);
}

.info-wrap_red .info-wrap__warning {
  border: 0.1rem solid rgba(220, 38, 38, 0.2);
  background: rgba(220, 38, 38, 0.05);
}

.info-wrap_red .info-wrap__warning span {
  font-weight: 700;
  color: #dc2626;
}

.info-wrap__caption {
  margin-bottom: 2rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.5rem, 2.325708061rem + 0.5446623094vw, 3rem);
  line-height: 120%;
  color: #050c16;
}

.info-wrap__item {
  display: flex;
  align-items: center;
  border-top-style: solid;
  border-top-width: 0.1rem;
  padding-block: 2rem;
  gap: 1.5rem;
}

.info-wrap__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  width: 4.5rem;
  height: 4.5rem;
}

.info-wrap__block {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.info-wrap__info {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.2605664488rem + 0.4357298475vw, 1.8rem);
  color: #050c16;
}

.info-wrap__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.3302832244rem + 0.2178649237vw, 1.6rem);
  color: #050c16;
}

.info-wrap__warning {
  display: flex;
  align-items: flex-start;
  margin-top: 2rem;
  border-radius: 1rem;
  padding: 1.5rem;
  gap: 1.6rem;
}

.info-wrap__warning img {
  width: clamp(2.5rem, 1.977124183rem + 1.6339869281vw, 4rem);
}

.info-wrap__warning div {
  max-width: 38rem;
  font-size: clamp(1.4rem, 1.3302832244rem + 0.2178649237vw, 1.6rem);
}

.info-cta {
  display: flex;
  align-items: center;
  margin-top: 3rem;
  border-radius: 1.6rem;
  padding: 2.5rem;
  background: rgba(67, 59, 233, 0.03);
  gap: 2rem;
}

.info-cta__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  width: 5.5rem;
  height: 5.5rem;
  background: rgba(67, 59, 233, 0.05);
}

.info-cta__wrap {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.info-cta__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5302832244rem + 0.2178649237vw, 1.8rem);
  color: #050c16;
}

.info-cta__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.3302832244rem + 0.2178649237vw, 1.6rem);
  color: #050c16;
}

.info-cta__btn {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 33rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.2605664488rem + 0.4357298475vw, 1.8rem);
  line-height: 150%;
  color: #fff;
  background: #433be9;
  gap: 1.5rem;
}

.work {
  padding-top: clamp(8rem, 7.302832244rem + 2.1786492375vw, 10rem);
}

.work .swiper {
  overflow: visible;
  margin-block: 4rem;
}

.work .swiper-wrapper {
  align-items: center;
}

.work .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
}

.work-slide {
  display: flex;
  flex-direction: column;
  border-radius: 2rem;
  padding: 2.5rem;
  max-width: clamp(25rem, 22.385620915rem + 8.1699346405vw, 32.5rem);
  box-shadow: 0 1rem 2.5rem 0 rgba(232, 231, 249, 0.5);
  background: #fff;
  gap: 3rem;
}

.work-slide__block {
  display: flex;
  justify-content: space-between;
}

.work-slide__num {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  width: 4.3rem;
  height: 3.4rem;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(1.4rem, 1.3302832244rem + 0.2178649237vw, 1.6rem);
  line-height: 150%;
  text-transform: uppercase;
  color: #433be9;
  background: rgba(67, 59, 233, 0.05);
}

.work-slide__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.work-slide__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.8rem, 1.7302832244rem + 0.2178649237vw, 2rem);
  color: #050c16;
}

.work-slide__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.3302832244rem + 0.2178649237vw, 1.6rem);
  line-height: 150%;
  color: #050c16;
}

.work-slide__time {
  display: flex;
  align-items: center;
  border-radius: 0.7rem;
  padding: 0.65rem 1.2rem;
  max-width: max-content;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(1.2rem, 1.1302832244rem + 0.2178649237vw, 1.4rem);
  line-height: 150%;
  color: #433be9;
  background: rgba(67, 59, 233, 0.05);
  gap: 0.7rem;
}

.work-slide__time::before {
  content: "";
  display: flex;
  width: 1.8rem;
  height: 1.8rem;
  background-image: url("../img/clock.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.work__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  width: 4.5rem;
  height: 4.5rem;
  box-shadow: 0 1rem 2.5rem 0 rgba(232, 231, 249, 0.5);
  background-color: #fff;
}

.work-info {
  display: flex;
  border-radius: 1.6rem;
  padding: 2.5rem;
  background: rgba(67, 59, 233, 0.03);
  gap: 1.5rem;
}

.work-info__block {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.work-info__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  min-width: clamp(4rem, 3.477124183rem + 1.6339869281vw, 5.5rem);
  min-height: clamp(4rem, 3.477124183rem + 1.6339869281vw, 5.5rem);
  background: #433be9;
}

.work-info__ico img {
  width: clamp(2.4rem, 2.0862745098rem + 0.9803921569vw, 3.3rem);
}

.work-info__main {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.work-info__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.2605664488rem + 0.4357298475vw, 1.8rem);
  color: #050c16;
}

.work-info__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.1302832244rem + 0.2178649237vw, 1.4rem);
  color: #050c16;
}

.work-info__item {
  display: flex;
  align-items: flex-start;
  width: max-content;
  gap: 1rem;
}

.work .info-cta {
  box-shadow: 0 1rem 2.5rem 0 rgba(232, 231, 249, 0.5);
  background: #fff;
}

.cases {
  padding-top: 10rem;
}

.cases .swiper-slide {
  width: max-content;
}

.cases .swiper {
  overflow: visible;
  margin-block: 4rem;
}

.cases .swiper__block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
  gap: 3.5rem;
}

.cases .swiper-pagination-bullet {
  width: clamp(1rem, 0.7211328976rem + 0.871459695vw, 1.8rem);
  height: clamp(1rem, 0.7211328976rem + 0.871459695vw, 1.8rem);
  fill: rgba(5, 12, 22, 0.1);
}

.cases .swiper-pagination-bullet-active {
  background-color: #433be9;
}

.cases .swiper-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  width: 4.5rem;
  height: 4.5rem;
  box-shadow: 0 1rem 2.5rem 0 rgba(232, 231, 249, 0.5);
  background-color: #fff;
  cursor: pointer;
}

.cases .swiper-pagination {
  position: static;
  width: max-content;
}

.cases-slide {
  display: flex;
  flex-direction: column;
  border: 0.1rem solid #433be9;
  border-radius: 2.5rem;
  padding: clamp(1.8rem, 1.5559912854rem + 0.7625272331vw, 2.5rem);
  min-height: 100%;
  max-width: clamp(30rem, 20.5882352941rem + 29.4117647059vw, 57rem);
}

.cases-slide__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cases-slide__num {
  border-radius: 0.7rem;
  padding: 0.5rem 1.2rem;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(1.4rem, 1.3302832244rem + 0.2178649237vw, 1.6rem);
  line-height: 150%;
  text-transform: uppercase;
  color: #433be9;
  background: rgba(67, 59, 233, 0.05);
}

.cases-slide__theme {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(1.2rem, 1.0605664488rem + 0.4357298475vw, 1.6rem);
  line-height: 150%;
  color: #433be9;
  gap: 0.6rem;
}

.cases-slide__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem;
  margin-bottom: auto;
  gap: 3rem;
}

.cases-slide__block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cases-slide__caption {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.3302832244rem + 0.2178649237vw, 1.6rem);
  color: #050c16;
  gap: 1rem;
}

.cases-slide__text {
  margin-top: 1rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.1302832244rem + 0.2178649237vw, 1.4rem);
  line-height: 150%;
  color: #050c16;
}

.cases-slide__list {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  gap: 0.3rem;
}

.cases-slide__list li {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 150%;
  color: #050c16;
  gap: 0.65rem;
}

.cases-slide__list li::before {
  content: "";
  display: flex;
  border-radius: 100%;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #433be9;
}

.cases-slide__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  border-radius: 1.5rem;
  padding: 2rem clamp(1rem, 0.128540305rem + 2.7233115468vw, 3.5rem);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.2rem, 0.9908496732rem + 0.6535947712vw, 1.8rem);
  line-height: 150%;
  color: #fff;
  background: #433be9;
  gap: 1.5rem;
}

.cases-slide__deal {
  margin-top: 1rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.1302832244rem + 0.2178649237vw, 1.4rem);
  line-height: 150%;
  text-align: center;
  color: #050c16;
  opacity: 0.5;
}

.important {
  padding-top: 10rem;
}

.important__block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.important__item {
  border-radius: 2rem;
  padding: 3.2rem 2.2rem;
  box-shadow: 0 1rem 2.5rem 0 rgba(232, 231, 249, 0.5);
  background: #fff;
}

.important__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  width: clamp(5.5rem, 4.977124183rem + 1.6339869281vw, 7rem);
  height: clamp(5.5rem, 4.977124183rem + 1.6339869281vw, 7rem);
  background: rgba(67, 59, 233, 0.05);
}

.important__price {
  margin-top: 2.5rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.5rem, 1.977124183rem + 1.6339869281vw, 4rem);
  color: #433be9;
}

.important__caption {
  margin-top: 0.5rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.3302832244rem + 0.2178649237vw, 1.6rem);
  color: #050c16;
}

.important__info {
  margin-top: 2.5rem;
  border-radius: 10rem;
  padding: 0.5rem 1.2rem;
  width: max-content;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 150%;
  color: #433be9;
  background: rgba(67, 59, 233, 0.05);
}

.important__text {
  margin-top: 2.5rem;
  border-top-style: solid;
  border-top-width: 0.2rem;
  border-top-color: rgba(5, 12, 22, 0.1);
  padding-top: 2.5rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2605664488rem + 0.4357298475vw, 1.8rem);
  line-height: 150%;
  color: #050c16;
}

.important-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4rem;
  border-radius: 1.6rem;
  padding: 2.5rem;
  box-shadow: 0 1rem 2.5rem 0 rgba(232, 231, 249, 0.5);
  background: linear-gradient(90deg, #6a3ee8 0%, #375de2 100%);
  gap: 2rem;
}

.important-cta__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  width: 5.5rem;
  height: 5.5rem;
  background: rgba(255, 255, 255, 0.1);
}

.important-cta__wrap {
  display: flex;
  flex-direction: column;
  margin-right: auto;
  gap: 0.7rem;
}

.important-cta__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5302832244rem + 0.2178649237vw, 1.8rem);
  color: #fff;
}

.important-cta__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.0605664488rem + 0.4357298475vw, 1.6rem);
  color: #fff;
}

.important-cta__btn {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 33rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.2605664488rem + 0.4357298475vw, 1.8rem);
  line-height: 150%;
  color: #050c16;
  background: #fff;
  gap: 1.5rem;
}

.practice {
  padding-top: clamp(8rem, 7.302832244rem + 2.1786492375vw, 10rem);
}

.practice__block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
  gap: 2rem;
}

.practice__item {
  border-radius: 2rem;
  padding: clamp(2rem, 1.825708061rem + 0.5446623094vw, 2.5rem);
  box-shadow: 0 10px 25px 0 rgba(232, 231, 249, 0.5);
  background: #fff;
}

.practice__main {
  display: flex;
  justify-content: space-between;
}

.practice__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  width: clamp(5.5rem, 4.977124183rem + 1.6339869281vw, 7rem);
  height: clamp(5.5rem, 4.977124183rem + 1.6339869281vw, 7rem);
  background: rgba(67, 59, 233, 0.05);
}

.practice__num {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  width: 4.5rem;
  height: 3.4rem;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(1.4rem, 1.3302832244rem + 0.2178649237vw, 1.6rem);
  line-height: 150%;
  text-transform: uppercase;
  color: #433be9;
  background: rgba(67, 59, 233, 0.05);
}

.practice__caption {
  margin-top: 2.5rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.4605664488rem + 0.4357298475vw, 2rem);
  color: #050c16;
}

.practice__text {
  margin-top: 1rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  color: #050c16;
}

.practice-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4rem;
  border-radius: 1.6rem;
  padding: 2.5rem;
  background: rgba(67, 59, 233, 0.03);
  gap: 2rem;
}

.practice-cta__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  width: clamp(3.5rem, 2.802832244rem + 2.1786492375vw, 5.5rem);
  height: clamp(3.5rem, 2.802832244rem + 2.1786492375vw, 5.5rem);
  background: #d1cbf7;
}

.practice-cta__ico img {
  width: clamp(2.5rem, 1.977124183rem + 1.6339869281vw, 4rem);
}

.practice-cta__wrap {
  display: flex;
  flex-direction: column;
  margin-right: auto;
  gap: 0.7rem;
}

.practice-cta__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.8rem;
  color: #050c16;
}

.practice-cta__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1.6rem;
  color: #050c16;
}

.practice-cta__btn {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 33rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 150%;
  color: #fff;
  background: #433be9;
  gap: 1.5rem;
}

.person {
  position: relative;
  padding-top: clamp(8rem, 7.302832244rem + 2.1786492375vw, 10rem);
}

.person__wrapper {
  position: relative;
  z-index: 2;
  margin-left: auto;
  max-width: 75rem;
}

.person__caption {
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  width: max-content;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(1.2rem, 1.1302832244rem + 0.2178649237vw, 1.4rem);
  line-height: 150%;
  text-transform: uppercase;
  color: #433be9;
  background: rgba(67, 59, 233, 0.05);
}

.person__title {
  margin-top: 1.5rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(3.5rem, 2.802832244rem + 2.1786492375vw, 5.5rem);
  line-height: 120%;
  color: #050c16;
}

.person__title span {
  color: #433be9;
}

.person__text {
  margin-top: 1.5rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.5302832244rem + 0.2178649237vw, 1.8rem);
  line-height: 150%;
  color: #050c16;
}

.person__block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 4rem;
  gap: 2rem;
}

.person__item {
  display: flex;
  align-items: flex-start;
  border-radius: 2rem;
  padding: 2.5rem;
  min-height: 15.6rem;
  box-shadow: 0 1rem 2.5rem 0 rgba(232, 231, 249, 0.5);
  background: #fff;
  gap: 2.5rem;
}

.person__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  min-width: clamp(5.5rem, 4.977124183rem + 1.6339869281vw, 7rem);
  min-height: clamp(5.5rem, 4.977124183rem + 1.6339869281vw, 7rem);
  background: rgba(67, 59, 233, 0.05);
}

.person__legend {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.4605664488rem + 0.4357298475vw, 2rem);
  color: #050c16;
}

.person__text {
  margin-top: 1rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.3302832244rem + 0.2178649237vw, 1.6rem);
  line-height: 150%;
  color: #050c16;
}

.person picture {
  display: flex;
}

.person__img {
  position: absolute;
  right: 50%;
  top: 10rem;
  transform: translateX(-2rem);
}

.person-dream {
  display: flex;
  margin-top: 2rem;
  border-radius: 2rem;
  padding: clamp(1.8rem, 1.5559912854rem + 0.7625272331vw, 2.5rem);
  box-shadow: 0 1rem 2.5rem 0 #e8e7f9;
  background: #f5f4fb;
  gap: 2.5rem;
}

.person-dream__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  min-width: clamp(5.5rem, 4.977124183rem + 1.6339869281vw, 7rem);
  min-height: clamp(5.5rem, 4.977124183rem + 1.6339869281vw, 7rem);
  max-width: clamp(5.5rem, 4.977124183rem + 1.6339869281vw, 7rem);
  max-height: clamp(5.5rem, 4.977124183rem + 1.6339869281vw, 7rem);
  background-color: #d1cbf7;
}

.person-dream__text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.4605664488rem + 0.4357298475vw, 2rem);
  color: #050c16;
}

.person .info-cta {
  position: relative;
  z-index: 2;
  margin-top: 4rem;
  background: #f5f4fb;
}

.person .info-cta__ico {
  background-color: #d1cbf7;
}

.know {
  padding-top: 10rem;
}

.know__wrapper {
  display: flex;
  margin-top: 4rem;
  gap: 4rem;
}

.know-form {
  border-radius: 2.5rem;
  padding: clamp(1.7rem, 1.0725490196rem + 1.9607843137vw, 3.5rem);
  width: 100%;
  max-width: 72.5rem;
  box-shadow: 0 1.2rem 3rem 0 #e8e7f9;
  background: #fff;
}

.know-form__title {
  margin-bottom: clamp(2.5rem, 1.977124183rem + 1.6339869281vw, 4rem);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.7rem, 1.4211328976rem + 0.871459695vw, 2.5rem);
  color: #050c16;
}

.know-form__item {
  display: flex;
  align-items: center;
  align-items: center;
}

.know-form__item:not(:first-child) {
  margin-top: 2rem;
}

.know-form__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  min-width: clamp(3.5rem, 2.628540305rem + 2.7233115468vw, 6rem);
  min-height: clamp(3.5rem, 2.628540305rem + 2.7233115468vw, 6rem);
  max-width: clamp(3.5rem, 2.628540305rem + 2.7233115468vw, 6rem);
  max-height: clamp(3.5rem, 2.628540305rem + 2.7233115468vw, 6rem);
  background: rgba(67, 59, 233, 0.05);
}

.know-form__ico img {
  width: clamp(1.6rem, 1.1119825708rem + 1.5250544662vw, 3rem);
}

.know-form__around {
  display: flex;
  margin-right: auto;
}

.know-form__answ {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.know-form__caption {
  margin-left: 2rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5302832244rem + 0.2178649237vw, 1.8rem);
  color: #050c16;
}

.know-form__input {
  border: 0.1rem solid rgba(5, 12, 22, 0.2);
  border-radius: 1rem;
  padding: 1.5rem 2.5rem;
}

.know-form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
  border-radius: 1.5rem;
  padding: 1.5rem clamp(1rem, 0.128540305rem + 2.7233115468vw, 3.5rem);
  width: 100%;
  height: 7rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.2605664488rem + 0.4357298475vw, 1.8rem);
  line-height: 150%;
  color: #fff;
  background: #433be9;
  gap: 1.5rem;
}

.know-form__confidence {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  font-size: clamp(1.2rem, 1.1302832244rem + 0.2178649237vw, 1.4rem);
  gap: 1rem;
}

.know-info {
  padding: clamp(2rem, 1.477124183rem + 1.6339869281vw, 3.5rem);
  box-shadow: 0 1.2rem 3rem 0 #e8e7f9;
  background: #f5f4fb;
}

.know-info__title {
  margin-bottom: 3.5rem;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.8rem, 1.5559912854rem + 0.7625272331vw, 2.5rem);
  color: #050c16;
}

.know-info__item {
  display: flex;
  gap: 2rem;
}

.know-info__item:not(:first-child) {
  margin-top: 2.5rem;
}

.know-info__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  min-width: clamp(3.5rem, 2.802832244rem + 2.1786492375vw, 5.5rem);
  min-height: clamp(3.5rem, 2.802832244rem + 2.1786492375vw, 5.5rem);
  max-width: clamp(3.5rem, 2.802832244rem + 2.1786492375vw, 5.5rem);
  max-height: clamp(3.5rem, 2.802832244rem + 2.1786492375vw, 5.5rem);
  background: #d1cbf7;
}

.know-info__ico img {
  width: clamp(2rem, 1.5468409586rem + 1.4161220044vw, 3.3rem);
}

.know-info__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5302832244rem + 0.2178649237vw, 1.8rem);
  color: #050c16;
}

.know-info__text {
  margin-top: 0.7rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.3302832244rem + 0.2178649237vw, 1.6rem);
  line-height: 150%;
  color: #050c16;
}

.know .know-form__input {
  margin-right: 8px;
  border: 0.1rem solid #ccc;
  padding: 1.5rem 2.5rem;
  color: rgba(5, 12, 22, 0.5);
  background: #fff;
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
}

.know input {
  outline: none;
  color: rgba(5, 12, 22, 0.5);
}

.know .know-form__input.active {
  border-color: #433be9;
  color: #fff;
  background: #433be9;
}

.how {
  padding-top: 4rem;
}

.how__wrapper {
  display: flex;
  border-radius: 1.6rem;
  padding: 2.5rem;
  background: rgba(67, 59, 233, 0.03);
  background-image: url("../img/how-img.png");
  background-position: right bottom;
  background-size: auto;
  background-repeat: no-repeat;
  gap: 2rem;
}

.how__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  min-width: clamp(3.5rem, 2.802832244rem + 2.1786492375vw, 5.5rem);
  min-height: clamp(3.5rem, 2.802832244rem + 2.1786492375vw, 5.5rem);
  max-width: clamp(3.5rem, 2.802832244rem + 2.1786492375vw, 5.5rem);
  max-height: clamp(3.5rem, 2.802832244rem + 2.1786492375vw, 5.5rem);
  background: #d1cbf7;
}

.how__ico img {
  width: clamp(2rem, 1.5468409586rem + 1.4161220044vw, 3.3rem);
}

.how__caption {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.5302832244rem + 0.2178649237vw, 1.8rem);
  color: #050c16;
}

.how__text {
  margin-top: 0.7rem;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.1302832244rem + 0.2178649237vw, 1.4rem);
  color: #050c16;
}

@media (max-width: 75em) {
  .work-info {
    flex-direction: column;
    gap: 2.5rem;
  }

  .important__block {
    grid-template-columns: repeat(2, 1fr);
  }

  .know__wrapper {
    flex-direction: column;
  }

  .know-form {
    max-width: 100%;
  }
}

@media (max-width: 75em) and (max-width: 37.5em) {
  .important__block {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 62em) {
  .num__wrapper {
    flex-direction: column;
    gap: 3.7rem;
  }
}

@media (max-width: 62em) and (max-width: 37.5em) {
  .num__wrapper {
    align-items: flex-start;
  }
}

@media (max-width: 73.125em) {
  .menu__list {
    flex-direction: column;
    margin: auto;
    padding-block: 4rem;
  }

  .menu__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 3rem;
  }

  .menu {
    position: fixed;
    left: -100%;
    top: 13rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 2rem;
    width: 100%;
    max-width: calc(100% - 3rem);
    background-color: var(--clr-default-900);
    transition: left var(--transition);
  }

  .menu--active {
    left: 1.5rem;
    transition: left var(--transition);
  }

  .burger {
    position: relative;
    z-index: 15;
    display: block;
    margin: 1.2rem 0.6rem;
    width: 2.8rem;
    height: 1.6rem;
    background-color: transparent;
  }

  .burger::after,
  .burger::before,
  .burger span {
    content: "";
    position: absolute;
    left: 0;
    border-radius: 0.1rem;
    width: 100%;
    height: 0.2rem;
    background-color: #fff;
  }

  .burger::before {
    top: 0;
    transition: transform var(--transition), top var(--transition);
  }

  .burger::after {
    bottom: 0;
    transition: transform var(--transition), bottom var(--transition);
  }

  .burger span {
    top: 50%;
    transform: translateY(-50%);
    transition: transform var(--transition);
  }

  .burger--active::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: transform var(--transition), top var(--transition);
  }

  .burger--active::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    transition: transform var(--transition), bottom var(--transition);
  }

  .burger--active span {
    transform: scale(0);
    transition: transform var(--transition);
  }

  .header-call {
    margin-right: 1rem;
    margin-left: auto;
  }
}

@media (max-width: 68.75em) {
  .info-cta {
    flex-wrap: wrap;
  }

  .info-cta__btn {
    flex-grow: 1;
    margin-left: 0;
  }

  .person__wrapper {
    max-width: 100%;
  }

  .person__img {
    position: static;
    display: flex;
    justify-content: center;
    transform: translateX(0);
  }

  .person .info-cta {
    margin-top: 0rem;
  }
}

@media (max-width: 59.375em) {
  .practice__block {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 59.375em) and (max-width: 40.625em) {
  .practice__block {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 58.125em) {
  .footer__wrapper {
    flex-direction: column;
  }

  .how__wrapper {
    height: 25rem;
  }
}

@media (max-width: 56.25em) {
  .hero__wrapper {
    flex-direction: column;
  }

  .hero-deal {
    max-width: 100%;
  }
}

@media (max-width: 53.125em) {
  .faq__wrapper {
    flex-direction: column-reverse;
  }

  .faq-info {
    max-width: 100%;
  }

  .cases-slide__info {
    grid-template-columns: repeat(1, 1fr);
  }

  .cases-slide__img img {
    width: 100%;
  }
}

@media (max-width: 51.875em) {
  .info__block {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 40.625em) {
  .person__block {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 38.75em) {
  .know-form__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

@media (max-width: 37.5em) {
  .default__caption {
    margin-inline: 0;
  }

  .default__title {
    text-align: left;
  }

  .default__text {
    text-align: left;
  }

  .header-call_pc {
    display: none;
  }

  .header-call_mob {
    display: flex;
    margin: inherit;
    margin-bottom: 4rem;
  }

  .footer__item {
    flex-direction: column;
  }

  .faq-side-wrap {
    flex-direction: column;
  }
}

@media (max-width: 23.75em) {
  .how__wrapper {
    background-position: -20% bottom;
  }
}
/*# sourceMappingURL=style.css.map */