

:root {
  --content-width: 1820px;
  --content-fluid-width: 1700px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --container-fluid-width: calc(var(--content-fluid-width) + (var(--container-offset) * 2));
  --font-family: "Inter", sans-serif;
  --outline: #e3ebf2;
  --main-color: #28272C;
  --black: #333;
  --background: #f3f7fd;
  --success: #27c340;
  --error: #e02828;
  --yellow: #ffc529;
  --disabled: #c5cfdc;
  --tetriary: #abc4e4;
  --primary: #2f80ed;
  --gray: #8b8b8b;
  --secondary: #2169c9;
  --secondary-color-black: #2b3e73;
  --secondary-text-color-black: #a9aaad;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

input[type=range] {
  -webkit-appearance: none;
  /* Скрывает слайдер, чтобы можно было создать свой */
  width: 100%;
  /* Указание параметра ширины требуется для Firefox. */
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

input[type=range]:focus {
  outline: none;
  /* Убирает голубую границу у элемента. Хотя, возможно, и стоит создавать некоторое оформления для состояния фокуса в целях обеспечения доступности. */
}

input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  /* Скрывает слайдер, чтобы можно было добавить собственные стили. */
  border-color: transparent;
  color: transparent;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

button, input, select, textarea {
  font: inherit;
  outline: 0;
  border: none;
  background-color: transparent;
  padding: 0;
  color: inherit;
}

ul[class] {
  list-style: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  list-style: none;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s linear, color 0.2s linear;
}
a svg {
  transition: fill 0.2s linear, stroke 0.2s linear;
}
a:hover {
  opacity: 1;
  text-decoration: none;
}

button {
  transition: opacity 0.2s linear;
  cursor: pointer;
}
button svg {
  transition: fill 0.2s linear, stroke 0.2s linear;
}
button:hover {
  opacity: 1;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
  border: none;
  background-color: transparent;
}

.btn-check:focus + .btn, .btn:focus {
  box-shadow: none;
}

a {
  text-decoration: none;
}

.form-control:focus {
  box-shadow: none;
}

.modal-footer button:active:focus {
  box-shadow: none;
}

.btn-close:focus {
  box-shadow: none;
}

* {
  box-sizing: border-box;
}

*::after {
  box-sizing: border-box;
}

*::before {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: var(--main-color);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
}

html {
  scroll-behavior: smooth;
}

body.hidden {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

table {
  border-spacing: 0;
  width: 100%;
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  section {
    padding-bottom: 35px;
    padding-top: 35px;
  }
}

.sect.pb-0 {
  padding-bottom: 0;
}
.sect.pt-0 {
  padding-top: 0;
}

.formInput {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #838383;
  background-color: #ffffff;
  width: 100%;
  padding-left: 25px;
  font-size: 16px;
}
@media (max-width: 1199px) {
  .formInput {
    padding-left: 20px;
  }
}
.formInput::placeholder {
  color: #b0b0b0;
  font-size: 16px;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.sectHead {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .sectHead {
    margin-bottom: 24px;
  }
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.main {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

.container {
  padding: 0 var(--container-offset);
}
@media (max-width: 575px) {
  .container {
    padding: 0 12px;
  }
}

.container {
  padding: 0 15px;
}

@media (min-width: 575.98px) {
  .container {
    max-width: 540px;
    margin: auto;
    padding: 0;
  }
}
@media (min-width: 767.98px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 991.98px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1199.98px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1340px) {
  .container {
    max-width: 1300px;
  }
}
.container-fluid {
  max-width: 100%;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font-family);
  color: #28272C;
  font-weight: 500;
}

h1,
.h1 {
  font-size: 90px;
  line-height: 110%;
  letter-spacing: -6.82px;
  font-weight: 400;
  color: #595667;
}
@media (max-width: 1550px) {
  h1,
.h1 {
    font-size: 50px;
    letter-spacing: normal;
  }
}
h1 span,
.h1 span {
  color: #765DFF;
}
@media (max-width: 991px) {
  h1,
.h1 {
    font-size: 34px;
  }
}

h2,
.h2 {
  font-size: 60px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -2px;
  color: #595667;
}
@media (max-width: 1550px) {
  h2,
.h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2,
.h2 {
    font-size: 30px;
  }
}

h3,
.h3 {
  font-size: 24px;
}
@media (max-width: 991px) {
  h3,
.h3 {
    font-size: 20px;
  }
}

.underline {
  text-decoration: underline;
}

@-webkit-keyframes shows {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes shows {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.content > p {
  margin-bottom: 15px;
}
.content > p a {
  display: inline;
  border-bottom: 1px solid #000;
}
.content > ul {
  margin-top: 15px;
  margin-bottom: 15px;
  list-style-type: disc;
  padding-left: 20px;
}
.content > a {
  display: inline;
  border-bottom: 1px solid #000;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  transition: background-color 0.2s linear, color 0.2s linear;
  column-gap: 10px;
  height: 55px;
  padding-left: 24px;
  padding-right: 24px;
  cursor: pointer;
  border-radius: 8px;
}
.button--lg {
  height: 65px;
}
@media (max-width: 991px) {
  .button--lg {
    height: 50px;
  }
}
.button--white {
  background-color: #fff;
}
.button--white:hover {
  background-color: rgb(118, 93, 255);
  color: #fff;
}
.button--purple {
  background-color: #765DFF;
  color: #fff;
}
.button--purple:hover {
  background-color: #595667;
}
.button--gray {
  background-color: #595667;
  color: #fff;
}
.button--gray:hover {
  background-color: #765DFF;
}
.button svg {
  width: 16px;
  height: 16px;
  stroke: #000;
}

.introVideoClose {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #C4BBFF;
  border-radius: 50%;
}

.headerBtn {
  font-size: 13px;
  border-radius: 5px;
  height: 32px;
  padding-left: 13px;
  padding-right: 13px;
}
@media (max-width: 991px) {
  .headerBtn--lg {
    display: none;
  }
}
.headerBtn--sm {
  display: none;
}
@media (max-width: 991px) {
  .headerBtn--sm {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
}

.introBtn {
  font-size: 18px;
  height: 60px;
}

.introVideoClose {
  cursor: pointer;
}

.tarifBtn {
  font-size: 18px;
  font-weight: 500;
  height: 60px;
  position: relative;
  z-index: 1;
}

.tryBtn {
  font-weight: 500;
  font-size: 18px;
  height: 60px;
}

.headerNavCloseBtn img {
  width: 30px;
}

/* Hamburger Menu */
.hamburger {
  align-self: center;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 20px;
  min-width: 15px;
  margin-right: 0;
  cursor: pointer;
  position: relative;
  display: none;
}
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
}

.hamburger div {
  align-self: flex-start;
  height: 2px;
  width: 100%;
  background: #222;
  border-radius: 10px;
}

.hamburger .meat {
  width: 100%;
}

.top-bun.active,
.meat.active,
.bottom-bun.active {
  opacity: 0;
}

.tabs__nav {
  display: flex;
  column-gap: 16px;
  padding: 4px;
  background-color: var(--background);
  width: fit-content;
  border-radius: 15px;
}
.tabs__nav-btn {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  border-radius: 14px;
  padding-left: 16px;
  padding-right: 16px;
}
.tabs__nav-btn--active {
  background-color: var(--primary);
  color: #fff;
}
.tabs__panel {
  display: none;
}
.tabs__panel--active {
  display: block;
}

.header {
  background-color: #C2B8FF;
}
@media (max-width: 991px) {
  .headerNav {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fff;
    z-index: 2;
    padding-top: 55px;
    overflow-y: scroll;
    padding-bottom: 50px;
    padding-top: 20px;
  }
}
@media (max-width: 575px) {
  .headerNav {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.headerNav.active {
  display: block;
  -webkit-animation: shows 0.5s;
  animation: shows 0.5s;
}
.headerNavHead {
  display: none;
}
@media (max-width: 991px) {
  .headerNavHead {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .headerNavHead {
    max-width: 540px;
  }
}
.headerNav ul {
  display: flex;
  column-gap: 30px;
}
@media (max-width: 991px) {
  .headerNav ul {
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .headerNav ul {
    max-width: 540px;
  }
}
.headerNav ul li:nth-child(3) {
  margin-right: 35px;
  position: relative;
}
@media (max-width: 991px) {
  .headerNav ul li:nth-child(3) {
    margin-right: 0;
  }
}
.headerNav ul li:nth-child(3)::before {
  content: "";
  position: absolute;
  right: -37px;
  bottom: 0;
  width: 10px;
  height: 10px;
  background: url("../img/icons/star.svg") no-repeat center center/contain;
}
@media (max-width: 991px) {
  .headerNav ul li:nth-child(3)::before {
    display: none;
  }
}
.headerNav ul li a:hover {
  color: #6A53FE;
}
.headerW {
  display: flex;
  justify-content: space-between;
}
.headerLogo:hover {
  opacity: 0.8;
}
.headerLogo img {
  width: 52px;
}
.headerT {
  padding-top: 8px;
  padding-bottom: 8px;
}
.headerTDescr {
  text-align: center;
}
@media (max-width: 767px) {
  .headerTDescr {
    font-size: 11px;
    line-height: 16px;
  }
}
.headerTDescr a {
  color: #6A53FE;
}
.headerTDescr a:hover {
  color: var(--main-color);
}
.headerB {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #fff;
  border-radius: 40px 40px 0px 0px;
}
@media (max-width: 575px) {
  .headerB {
    border-radius: 25px 25px 0 0;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.headerR {
  display: flex;
  align-items: center;
  column-gap: 35px;
}

@media (max-width: 575px) {
  .intro {
    padding-top: 0;
  }
}
.introW {
  display: flex;
}
@media (max-width: 991px) {
  .introW {
    flex-direction: column;
  }
}
.intro .h1 {
  max-width: 735px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .intro .h1 {
    margin-bottom: 20px;
  }
}
.introDescr {
  font-size: 23px;
  font-weight: 200;
  line-height: 32px;
  letter-spacing: -0.256px;
  max-width: 464px;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .introDescr {
    font-size: 17px;
    line-height: 25px;
    max-width: 300px;
    margin-bottom: 20px;
  }
}
.introR {
  position: relative;
  padding-top: 100px;
}
@media (max-width: 1199px) {
  .introR {
    padding-top: 0;
    padding-bottom: 150px;
  }
}
@media (max-width: 991px) {
  .introR {
    padding-bottom: 0;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .introR {
    min-height: 240px;
  }
}
.introImg img {
  min-width: 680px;
  right: 60px;
  position: relative;
}
@media (max-width: 1199px) {
  .introImg img {
    min-width: unset;
    right: 0;
  }
}
@media (max-width: 991px) {
  .introImg img {
    width: 400px;
  }
}
@media (max-width: 575px) {
  .introImg img {
    width: calc(100% - 180px);
    margin-left: auto;
  }
}

.intro-problem-wrapper {
  background-image: url("../img/intro/intro-problem.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 670px;
}

.introVideoW {
  position: absolute;
  width: 155px;
  height: 235px;
  right: 0;
  bottom: 0;
}
@media (max-width: 575px) {
  .introVideoW {
    right: unset;
    left: 0;
  }
}
.introVideoW video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
  filter: grayscale(1);
}
.introVideoW .introVideoClose {
  position: absolute;
  right: -10px;
  top: -10px;
}

.help .sectHead {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .help .sectHead {
    margin-bottom: 30px;
  }
}
.helpGrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.helpCol {
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 36px 40px 0;
  min-height: 420px;
}
@media (max-width: 1199px) {
  .helpCol {
    padding: 25px 30px 0;
  }
}
@media (max-width: 575px) {
  .helpCol {
    min-height: unset;
  }
}
.helpCol .text-white {
  color: #fff;
}
.helpCol h3 {
  margin-bottom: 13px;
  position: relative;
  z-index: 1;
}
.helpCol p {
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.helpCol-4 {
  grid-column: 4 span;
}
@media (max-width: 991px) {
  .helpCol-4 {
    grid-column: 6 span;
  }
}
@media (max-width: 575px) {
  .helpCol-4 {
    grid-column: 12 span;
  }
}
.helpCol-8 {
  grid-column: 8 span;
}
@media (max-width: 991px) {
  .helpCol-8 {
    grid-column: 6 span;
  }
}
@media (max-width: 575px) {
  .helpCol-8 {
    grid-column: 12 span;
  }
}

.crmItem {
  background: linear-gradient(228deg, #A89AFF 0%, #7257FF 99%);
}
.crmItem img {
  margin-top: auto;
}

.scenarii {
  background: linear-gradient(0deg, #F7F6F6 0%, #F7F6F6 100%), radial-gradient(70.71% 70.71% at 50% 50%, #C499E6 0%, rgba(255, 255, 255, 0.4) 100%);
  position: relative;
}
.scenarii img {
  width: 538px;
  margin-left: auto;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .scenarii img {
    width: 400px;
  }
}
@media (max-width: 575px) {
  .scenarii img {
    position: unset;
  }
}
.scenarii h3 {
  max-width: 260px;
  font-weight: 700;
  line-height: 28.8px;
  /* 120% */
  color: #595667;
}
.scenarii p {
  max-width: 290px;
  font-weight: 500;
  color: #595667;
}

.analitic {
  background-color: #F7F6F6;
  position: relative;
}
.analitic h3 {
  color: #595667;
  font-weight: 700;
}
.analitic p {
  font-weight: 500;
  color: #595667;
}
.analitic img {
  position: absolute;
  bottom: 46px;
  right: 46px;
  width: 188px;
}
@media (max-width: 1199px) {
  .analitic img {
    width: 150px;
  }
}
@media (max-width: 575px) {
  .analitic img {
    position: unset;
    margin-top: 15px;
    margin-left: auto;
  }
}

.zvonki {
  background: linear-gradient(0deg, #595667 0%, #595667 100%), linear-gradient(227deg, #261D5D 0%, #0D0B11 100%);
}
.zvonki img {
  width: 220px;
  margin-top: auto;
  margin-bottom: 40px;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .zvonki img {
    width: 170px;
  }
}
@media (max-width: 575px) {
  .zvonki img {
    margin-top: 15px;
    margin-left: unset;
  }
}

.vozrazh {
  background: linear-gradient(0deg, #C2B8FF 0%, #C2B8FF 100%), linear-gradient(230deg, #77479F 0%, #5637B2 98.6%);
}
.vozrazh img {
  width: 198px;
  margin-top: auto;
  margin-left: auto;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .vozrazh img {
    width: 170px;
  }
}
@media (max-width: 575px) {
  .vozrazh img {
    margin-top: 15px;
  }
}

.help-how-wrapper {
  background-image: url("../img/help/bg.png");
  background-repeat: no-repeat;
  background-position: top 500px center;
  background-size: contain;
}

.problem {
  padding-top: 40px;
}
.problemGrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 40px;
}
@media (max-width: 1199px) {
  .problemGrid {
    column-gap: 20px;
  }
}
@media (max-width: 991px) {
  .problemGrid {
    column-gap: 0;
    row-gap: 20px;
  }
}
.problemCol {
  grid-column: 6 span;
}
@media (max-width: 991px) {
  .problemCol {
    grid-column: 12 span;
  }
}
.problemCol h3 {
  max-width: 415px;
  font-size: 40px;
  font-weight: 500;
  line-height: 101%;
  letter-spacing: -1.62px;
  margin-bottom: 70px;
}
@media (max-width: 1400px) {
  .problemCol h3 {
    font-size: 30px;
    max-width: 315px;
  }
}
@media (max-width: 1199px) {
  .problemCol h3 {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .problemCol h3 {
    margin-bottom: 20px;
  }
}
@media (max-width: 410px) {
  .problemCol h3 {
    font-size: 24px;
  }
}
.problemCol ul {
  font-size: 20px;
  line-height: 140%;
  font-weight: 300;
}
@media (max-width: 767px) {
  .problemCol ul {
    font-size: 16px;
  }
}
.problemCol ul li {
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  .problemCol ul li {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .problemCol ul li {
    margin-bottom: 10px;
  }
}
.problemCol .problemColInner {
  padding: 40px;
}
@media (max-width: 767px) {
  .problemCol .problemColInner {
    padding: 35px 25px;
  }
}
.problemCol:nth-child(1) {
  border-radius: 30px;
  border: 2px solid #F5F3FB;
  background: rgba(194, 184, 255, 0.01);
  backdrop-filter: blur(15px);
}
.problemCol:nth-child(1) h3 {
  font-weight: 400;
  max-width: 477px;
  line-height: 110%;
}
.problemCol:nth-child(1) ul li {
  display: flex;
  align-items: center;
  column-gap: 18px;
  position: relative;
}
.problemCol:nth-child(1) ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(40, 39, 44, 0.2);
  background-color: rgba(40, 39, 44, 0.14);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .problemCol:nth-child(1) ul li::before {
    width: 7px;
    height: 7px;
  }
}
.problemCol:nth-child(2) {
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  background: rgba(118, 93, 255, 0.2);
  backdrop-filter: blur(15px);
  padding: 10px;
}
.problemCol:nth-child(2) h3 {
  color: #C2B8FF;
}
.problemCol:nth-child(2) h3 span {
  color: #fff;
}
.problemCol:nth-child(2) ul li {
  display: flex;
  align-items: center;
  column-gap: 18px;
  color: #fff;
}
@media (max-width: 767px) {
  .problemCol:nth-child(2) ul li {
    column-gap: 10px;
  }
}
.problemCol:nth-child(2) ul li::before {
  display: block;
  content: "";
  width: 44px;
  height: 44px;
  background: url("../img/problem/star.svg") no-repeat center center/contain;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .problemCol:nth-child(2) ul li::before {
    width: 30px;
    height: 30px;
  }
}
.problemCol:nth-child(2) .problemColInner {
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  background: #765DFF;
  backdrop-filter: blur(10px);
}

.how {
  padding-top: 60px;
  position: relative;
}
.how::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 0;
  right: 0;
  margin: auto;
  width: 1800px;
  height: 700px;
  background: url("../img/how/how-purple-bg.svg") no-repeat top center/cover;
}
.how .h2 {
  max-width: 395px;
}
.howW {
  display: flex;
  column-gap: 40px;
}
@media (max-width: 767px) {
  .howW {
    flex-direction: column;
    row-gap: 40px;
  }
}
.howContent {
  max-width: 737px;
  margin-left: auto;
}
.howItem {
  display: flex;
  align-items: center;
  column-gap: 50px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .howItem {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .howItem {
    column-gap: 20px;
  }
}
.howItem:not(:last-child) .howItemIcon::before {
  content: "";
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  height: 120px;
  width: 4px;
  background-color: #F5F3FB;
  position: absolute;
}
.howItem:first-child .howItemIcon::before {
  background-color: #C2B8FF;
}
@media (max-width: 575px) {
  .howItem:nth-child(2) .howItemIcon::before {
    height: 200px;
  }
}
@media (max-width: 575px) {
  .howItem:nth-child(3) .howItemIcon::before {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .howItem:nth-child(4) .howItemIcon::before {
    height: 80px;
  }
}
.howItem h3 {
  color: #595667;
  margin-bottom: 9px;
  font-weight: 600;
}
.howItem p {
  font-size: 18px;
  line-height: 140%;
  color: #595667;
  letter-spacing: -1px;
}
@media (max-width: 575px) {
  .howItem p {
    font-size: 16px;
  }
}
.howItemIcon {
  flex-shrink: 0;
  height: fit-content;
  border-radius: 20px;
  background: #FFF;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px -4px 4px 0px #F1EEFA inset, 0px 4px 20px 0px rgba(194, 184, 255, 0.18);
  position: relative;
}
@media (max-width: 575px) {
  .howItemIcon {
    width: 50px;
    height: 50px;
  }
}
.howItemIconW {
  padding-bottom: 80px;
}

.tarif {
  position: relative;
  z-index: 1;
}
.tarif .h2 {
  background: linear-gradient(180deg, #FFF 37.8%, #999 83.33%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tarif .sectHead {
  margin-bottom: 55px;
}
@media (max-width: 991px) {
  .tarif .sectHead {
    margin-bottom: 30px;
  }
}
.tarifW {
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  background: rgba(194, 184, 255, 0.06);
  backdrop-filter: blur(15px);
  padding: 10px;
}
.tarifInner {
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 60px 45px;
  position: relative;
}
@media (max-width: 767px) {
  .tarifInner {
    padding: 35px 20px;
  }
}
.tarifText {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -1.62px;
  max-width: 524px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .tarifText {
    font-size: 30px;
    max-width: 390px;
  }
}
@media (max-width: 575px) {
  .tarifText {
    font-size: 23px;
  }
}
.tarifText span {
  color: #C2B8FF;
  display: inline-block;
  margin-right: 5px;
}
.tarifLogo {
  position: absolute;
  right: 82px;
  bottom: 0;
}
@media (max-width: 767px) {
  .tarifLogo {
    width: 200px;
    left: 0;
    right: 0;
    margin: auto;
  }
}

.profit-wrapper {
  border-radius: 40px 40px 0px 0px;
  background: #0C0A10;
  position: relative;
}
@media (max-width: 575px) {
  .profit-wrapper {
    border-radius: 25px 25px 0px 0px;
  }
}
.profit-wrapper .tarif-purple-bg {
  position: absolute;
  bottom: 700px;
  width: 1800px;
  height: 400px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 898px;
  background: rgba(129, 108, 255, 0.8);
  filter: blur(150px);
}
.profit-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url("../img/profit/profit-rect-bg.svg") no-repeat center center/cover;
}

.profit {
  position: relative;
  z-index: 1;
}
.profit .h2 {
  background: linear-gradient(180deg, #FFF 19.7%, #0C0A10 133.33%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .profit .h2 {
    margin-bottom: 30px;
  }
}
.profitRow {
  display: flex;
  column-gap: 65px;
  margin-bottom: 39px;
}
@media (max-width: 767px) {
  .profitRow {
    flex-direction: column;
    row-gap: 30px;
    margin-bottom: 30px;
  }
}
.profitItem {
  min-width: 275px;
}
.profitItemName {
  color: #FFF;
  font-size: 23.6px;
  font-weight: 200;
  line-height: 32px;
  letter-spacing: -0.256px;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .profitItemName {
    font-size: 18px;
    line-height: 25px;
  }
}
.profitItemCount {
  color: #C2B8FF;
  font-size: 70px;
  font-weight: 400;
  line-height: 104.5px;
  letter-spacing: -3px;
}
@media (max-width: 1400px) {
  .profitItemCount {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  .profitItemCount {
    line-height: 100%;
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .profitItemCount {
    font-size: 34px;
  }
}

.try {
  padding-top: 60px;
  position: relative;
  z-index: 1;
}
.try .h2 {
  color: #FFF;
  font-size: 104px;
  font-weight: 400;
  line-height: 104.5px;
  letter-spacing: -2.82px;
  margin-bottom: 40px;
}
@media (max-width: 1550px) {
  .try .h2 {
    font-size: 70px;
    line-height: 100%;
  }
}
@media (max-width: 991px) {
  .try .h2 {
    font-size: 40px;
  }
}
.tryText {
  color: #FFF;
  font-size: 23.6px;
  font-weight: 200;
  line-height: 32px;
  letter-spacing: -0.256px;
  margin-bottom: 52px;
}
.tryText span {
  font-weight: 500;
  color: #C2B8FF;
}

.footer {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}
.footerW {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footerW {
    flex-direction: column;
    row-gap: 30px;
  }
}
.footerL {
  display: flex;
  column-gap: 45px;
}
@media (max-width: 575px) {
  .footerL {
    flex-direction: column;
    row-gap: 30px;
    align-items: center;
  }
}
.footerContent {
  display: flex;
  column-gap: 100px;
}
@media (max-width: 1199px) {
  .footerContent {
    column-gap: 50px;
  }
}
@media (max-width: 991px) {
  .footerContent {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .footerContent {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footerIdea {
  color: #fff;
  max-width: 203px;
  margin-bottom: 25px;
}
@media (max-width: 575px) {
  .footerIdea {
    margin-left: auto;
    margin-right: auto;
  }
}
.footerAddress {
  color: rgba(255, 255, 255, 0.6);
}
.footerT {
  padding-bottom: 70px;
}
.footerNav ul li {
  margin-bottom: 11px;
}
.footerNav ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.footerNav ul li a:hover {
  color: #fff;
}
.footerPhoneW {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media (max-width: 575px) {
  .footerPhoneW {
    align-items: center;
    margin-top: 30px;
  }
}
.footerPhoneW a {
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.footerPhoneW a:hover {
  color: #fff;
}
.footer .socials ul {
  display: flex;
  column-gap: 20px;
}
@media (max-width: 575px) {
  .footer .socials ul {
    justify-content: center;
  }
}
.footer .socials ul li a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.08) inset, 0px 0px 0px 1px rgba(255, 255, 255, 0.08) inset;
}
.footer .socials ul li a:hover {
  opacity: 0.8;
}
.footerB {
  background-color: #C2B8FF;
  padding-top: 13px;
  padding-bottom: 13px;
}
.footerB .copyright {
  text-align: center;
}
.footerB .copyright a {
  color: #6A53FE;
}
.footerB .copyright a:hover {
  color: #0C0A10;
}
.footerLogo:hover {
  opacity: 0.8;
}

.footerColLeft {
  max-width: 272px;
}
@media (max-width: 575px) {
  .footerColLeft {
    max-width: 100%;
    margin-bottom: 30px;
  }
}