.container {
  position: relative;
  padding: 0 32px;
  width: 100%;
  max-width: 1504px;
  margin: 0 auto;
}

.header {
  width: 100%;
  padding: 45px 0;
  -webkit-box-shadow: 0px 2px 6px 0px #0000001a;
  box-shadow: 0px 2px 6px 0px #0000001a;
  -webkit-backdrop-filter: blur(17.600000381469727px);
  backdrop-filter: blur(17.600000381469727px);
  background-color: var(--bg-primary);
}

.header.active {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.header__nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}

.header__nav_item {
  width: 100%;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  text-align: center;
  color: var(--black);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.header__nav_item.active {
  color: var(--purple);
}

.header__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 53px;
}

.header__items.policy {
  margin-bottom: 0;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 25px;
}

.header__logo_link {
  text-decoration: none;
}

.header__logo_icon {
  width: 219px;
  height: 40px;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header__logo_name {
  max-width: 200px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
}

.header__mobile_btn {
  position: relative;
  z-index: 400;
  width: 26px;
  min-width: 26px;
  height: 22px;
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.header__mobile_btn::before {
  content: '';
  width: 26px;
  height: 22px;
  background-image: url(./../img/mobile-btn.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.header__mobile_btn.active::before {
  background-image: url(./../img/mobile-btn-close.svg);
}

.header__supp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.header__link {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  line-height: 1.2;
  text-decoration: underline;
  -webkit-text-decoration-style: solid;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  color: var(--purple);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.header__langs {
  padding: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1px;
  background-color: var(--white);
  -webkit-box-shadow: 0px 2px 6px 0px #0000001a;
  box-shadow: 0px 2px 6px 0px #0000001a;
  -webkit-backdrop-filter: blur(17.600000381469727px);
  backdrop-filter: blur(17.600000381469727px);
  border-radius: var(--br-10);
}

.header__lang {
  width: 45px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: var(--br-10);
  background-color: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--black);
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.header__lang.active {
  color: var(--white);
  background-color: var(--purple);
}

.mobile__menu {
  width: 100%;
  height: 0;
  overflow-y: hidden;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.mobile__menu.active {
  max-height: 500px;
  height: auto;
}

.mobile__menu_items {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 30px;
  margin-bottom: 30px;
}

.mobile__menu_item {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
  text-decoration: none;
}

.mobile__menu_item:nth-child(1) {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.mobile__menu_item:nth-child(2) {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.mobile__menu_item:nth-child(3) {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.mobile__menu_item:nth-child(4) {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.mobile__menu_item:nth-child(5) {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.mobile__menu_item:nth-child(6) {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}

.header__mobile_langs {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1px;
  background-color: var(--white);
  -webkit-box-shadow: 0px 2px 6px 0px #0000001a;
  box-shadow: 0px 2px 6px 0px #0000001a;
  -webkit-backdrop-filter: blur(17.600000381469727px);
  backdrop-filter: blur(17.600000381469727px);
  border-radius: var(--br-10);
  margin-bottom: 30px;
}

.header__mobile_link {
  display: block;
  padding-bottom: 15px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  line-height: 1.2;
  text-decoration: underline;
  -webkit-text-decoration-style: solid;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  color: var(--purple);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.success__wrapper,
.error__wrapper {
  position: fixed;
  z-index: 9999;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 320px;
  padding: 49px 22px 27px 22px;
  background-color: #fdfdfd;
  -webkit-box-shadow: 0px 2px 6px 0px #0000001a;
  box-shadow: 0px 2px 6px 0px #0000001a;
  -webkit-backdrop-filter: blur(17.600000381469727px);
  backdrop-filter: blur(17.600000381469727px);
  border-radius: var(--br-16);
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.success__wrapper.active,
.error__wrapper.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.success__close,
.error__close {
  position: absolute;
  top: 11px;
  right: 12px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.success__close img,
.error__close img {
  width: 10px;
  height: 10px;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.success__title,
.error__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--black);
  text-align: center;
  cursor: default;
  margin-bottom: 10px;
}

.success__subtitle,
.error__subtitle {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  text-align: center;
  color: var(--black);
  cursor: default;
  margin-bottom: 20px;
}

.success__btn,
.error__btn {
  width: max-content;
  padding: 7px 11px;
  background-color: var(--purple);
  border-radius: var(--br-10);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--white);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.main {
  width: 100%;
  overflow: hidden;
  padding: 120px 0;
}

.main.active {
  margin-top: 73.8px;
}

.banner {
  width: 100%;
  margin-bottom: 120px;
}

.banner__wrapper {
  position: relative;
  z-index: 100;
  width: 100%;
}

.banner__inner {
  width: 100%;
  padding: 50px;
  position: relative;
  z-index: 200;
  background-color: #ffffffb2;
  -webkit-box-shadow: 0px 2px 6px 0px #0000001a;
  box-shadow: 0px 2px 6px 0px #0000001a;
  -webkit-backdrop-filter: blur(17.600000381469727px);
  backdrop-filter: blur(17.600000381469727px);
  border-radius: var(--br-29);
}

.banner__wrapper::before {
  content: '';
  position: absolute;
  bottom: -57px;
  left: -201px;
  z-index: -1;
  width: 456px;
  height: 393px;
  background-image: url(./../img/image-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.banner__inner::after {
  content: '';
  position: absolute;
  bottom: -81px;
  right: 263px;
  z-index: 200;
  width: 424px;
  height: 684px;
  background-image: url(./../img/phone.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.banner__titles {
  position: relative;
  z-index: 300;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 180px;
}

.banner__title {
  max-width: 811px;
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-48);
  color: var(--black);
  line-height: 1.4;
  cursor: default;
}

.banner__subtitle {
  max-width: 210px;
  padding-top: 14px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  text-align: right;
  color: var(--black);
}

.banner__logo {
  margin-bottom: 44px;
}

.banner__logo_icon {
  width: 359px;
  height: 66px;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.banner__info {
  position: relative;
  z-index: 300;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.banner__info_title {
  max-width: 490px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-22);
  color: var(--black);
  cursor: default;
}

.banner__btn {
  margin-bottom: 14px;
  position: relative;
  width: 220px;
  height: 52px;
  background-color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: var(--br-16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: end;
  padding-right: 73px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.banner__btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  z-index: 300;
  width: 32px;
  height: 26px;
  background-image: url(./../img/btn-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.banner__btn.mobile {
  display: none;
}

.banner__btn_name {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--white);
  line-height: 1;
}

.decisions {
  width: 100%;
  max-width: 1504px;
  padding: 0 32px;
  margin: 0 auto;
  margin-bottom: 120px;
}

.decisions__wrapper {
  position: relative;
  z-index: 100;
  width: 100%;
}

.decisions__wrapper::before {
  content: '';
  position: absolute;
  bottom: -155px;
  right: -264px;
  z-index: -1;
  width: 614px;
  height: 426px;
  background-image: url(./../img/image-3.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.decisions__title {
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-32);
  line-height: 1.4;
  color: var(--black);
  cursor: default;
  margin-bottom: 25px;
}

.decisions__subtitle {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-22);
  color: var(--black);
  cursor: default;
  margin-bottom: 30px;
}

.decisions__items {
  padding: 10px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}

.decisions__item {
  position: relative;
  z-index: 200;
  width: 100%;
  height: 338px;
  padding: 18px 20px 0 20px;
  background-color: #ffffffb2;
  -webkit-box-shadow: 0px 2px 6px 0px #0000001a;
  box-shadow: 0px 2px 6px 0px #0000001a;
  -webkit-backdrop-filter: blur(17.600000381469727px);
  backdrop-filter: blur(17.600000381469727px);
  border-radius: var(--br-16);
  overflow: hidden;
}

.decisions__item::after {
  content: '';
  position: absolute;
  z-index: 300;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.decisions__item.one::after {
  background-image: url(./../img/coins-1.png);
  width: 184px;
  height: 263px;
}

.decisions__item.two::after {
  background-image: url(./../img/house-1.png);
  width: 200px;
  height: 263px;
}

.decisions__item.three::after {
  background-image: url(./../img/cart-1.png);
  width: 220px;
  height: 263px;
}

.decisions__item.four::after {
  background-image: url(./../img/suitcase-1.png);
  width: 200px;
  height: 263px;
}

.decisions__item.five::after {
  background-image: url(./../img/arrow-2.png);
  width: 200px;
  height: 263px;
}

/* ВРЕМЕННО СКРЫТЬ*/
/* .decisions__item.six::after {
    background-image: url(./../img/Group-2.svg);
    width: 32px;
    height: 26px;
    top: 18px;
    right: 10px;
} */

.decisions__item.six {
  background-color: #4601fab2;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.decisions__item_title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
}

.decisions__item.six .decisions__item_title {
  color: var(--white);
  max-width: 100px;
}

.decisions__slider_wrapper {
  padding: 0 32px;
  width: 100%;
  display: none;
}

.decisions__slider_nav {
  position: relative;
  z-index: 400;
  width: 100%;
  height: 10px;
  background-color: var(--light-gray);
  border-radius: var(--br-16);
  overflow: hidden;
}

.decisions__slider_current {
  position: absolute;
  z-index: 400;
  top: 0;
  left: 0;
  width: 235px;
  height: 10px;
  background-color: var(--purple);
  border-radius: var(--br-16);
}

.adv {
  width: 100%;
  margin-bottom: 120px;
}

.adv__wrapper {
  width: 100%;
}

.adv__title {
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-32);
  line-height: 1.4;
  color: var(--black);
  cursor: default;
  margin-bottom: 40px;
}

.adv__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 24px;
}

.adv__item {
  width: 100%;
}

.adv__item_title {
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-50);
  color: var(--purple);
  cursor: default;
  margin-bottom: 20px;
}

.adv__item_title span {
  font-size: var(--fs-32);
}

.adv__item_subtitle {
  max-width: 140px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
}

.power {
  width: 100%;
  margin-bottom: 120px;
}

.power__wrapper {
  width: 100%;
}

.power__title {
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-32);
  line-height: 1.4;
  color: var(--black);
  cursor: default;
  margin-bottom: 40px;
}

.power__items {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 24px;
  width: 100%;
}

.power__item {
  padding: 20px;
  background-color: #ffffffb2;
  border-radius: var(--br-16);
  -webkit-box-shadow: 0px 2px 6px 0px #0000001a;
  box-shadow: 0px 2px 6px 0px #0000001a;
  -webkit-backdrop-filter: blur(17.600000381469727px);
  backdrop-filter: blur(17.600000381469727px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.power__item_title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-22);
  color: var(--purple);
  cursor: default;
  margin-bottom: 44px;
}

.power__item_info {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
}

.info {
  width: 100%;
  margin-bottom: 120px;
}

.info__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 25px;
}

.info__dev_items {
  width: 100%;
}

.info__dev_desktop {
  width: 707px;
  object-fit: contain;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.info__dev_laptop {
  display: none;
  width: 386px;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.info__dev_medium {
  display: none;
  width: 707px;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.info__dev_mobile {
  width: 100%;
  max-width: 335px;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: none;
}

.info__items {
  width: 100%;
}

.info__desc_wrapper {
  width: 100%;
  position: relative;
  z-index: 200;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.info__desc_wrapper::before {
  content: '';
  position: absolute;
  z-index: 400;
  top: 0;
  right: 45px;
  width: 198px;
  height: 216px;
  background-image: url(./../img/QR_ill.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.info__desc_item {
  position: relative;
  z-index: 300;
  border-radius: var(--br-16);
}

.info__desc_item.active {
  padding: 25px 0 25px 20px;
  background-color: var(--purple);
}

.info__desc_title {
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-32);
  line-height: 1.4;
  color: var(--white);
  cursor: default;
}

.info__desc_subtitle {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-22);
  color: var(--white);
  cursor: default;
}

.info__add_items {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  row-gap: 55px;
  column-gap: 24px;
}

.info__add_icon {
  min-height: 41px;
  margin-bottom: 14px;
}

.info__add_icon img {
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.info__add_icon.one img {
  width: 37px;
  height: 40px;
}

.info__add_icon.two img {
  width: 40px;
  height: 40px;
}

.info__add_icon.three img {
  width: 40px;
  height: 40px;
}

.info__add_icon.four img {
  width: 56px;
  height: 40px;
}

.info__add_icon.five img {
  width: 40px;
  height: 41px;
}

.info__add_icon.six img {
  width: 44px;
  height: 40px;
}

.info__add_title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
  margin-bottom: 30px;
}

.info__add_subtitle {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
}

.info__qr_wrapper {
  position: relative;
  z-index: 200;
  width: 100%;
  padding: 25px 36px 32px 36px;
  background-color: #ffffffb2;
  border-radius: var(--br-16);
  -webkit-box-shadow: 0px 2px 6px 0px #0000001a;
  box-shadow: 0px 2px 6px 0px #0000001a;
  -webkit-backdrop-filter: blur(17.600000381469727px);
  backdrop-filter: blur(17.600000381469727px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 50px;
}

.info__qr_label {
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-32);
  line-height: 1.4;
  color: var(--purple);
  cursor: default;
}

.info__qr_items {
  max-width: 426px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 30px;
}

.info__qr_item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.info__qr_border {
  width: 1px;
  background-color: var(--purple);
}

.info__qr_title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
  margin-bottom: 30px;
}

.info__qr_subtitle {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
}

.steps {
  width: 100%;
  margin-bottom: 120px;
}

.steps__wrapper {
  width: 100%;
}

.steps__title {
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-32);
  line-height: 1.4;
  color: var(--black);
  cursor: default;
  margin-bottom: 40px;
}

.setps__dev_items {
  width: 100%;
}

.steps__dev_medium {
  width: 704px;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: none;
}

.steps__dev_mobile {
  width: 100%;
  max-width: 335px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  object-fit: contain;
  display: none;
}

.steps__dev_desktop {
  width: 1440px;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  object-fit: contain;
}

.steps__dev_laptop {
  display: none;
  width: 1200px;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.steps__items {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
}

.steps__item {
  padding: 20px 28px;
  position: relative;
  z-index: 200;
  border-radius: var(--br-16);
}

.steps__item.active {
  background-color: var(--purple);
}

.steps__item_title {
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-32);
  line-height: 1.4;
  color: var(--white);
  cursor: default;
  margin-bottom: 11px;
}

.steps__item_info {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  color: var(--white);
  cursor: default;
}

.connect {
  width: 100%;
  margin-bottom: 120px;
}

.connect__wrapper {
  position: relative;
  z-index: 100;
  width: 100%;
}

.connect__wrapper::before {
  content: '';
  position: absolute;
  bottom: 54px;
  left: -90px;
  z-index: -1;
  width: 334px;
  height: 287px;
  background-image: url(./../img/image-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.connect__inner {
  padding: 36px 45px 33px 40px;
  width: 100%;
  background-color: #ffffffb2;
  -webkit-box-shadow: 0px 2px 6px 0px #0000001a;
  box-shadow: 0px 2px 6px 0px #0000001a;
  -webkit-backdrop-filter: blur(17.600000381469727px);
  backdrop-filter: blur(17.600000381469727px);
  border-radius: var(--br-16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.connect__title_wrapper {
  width: 100%;
}

.connect__title {
  max-width: 400px;
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-32);
  line-height: 1.4;
  color: var(--black);
  cursor: default;
}

.connect__items {
  width: 100%;
}

.connect__form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.connect__input {
  width: 100%;
  height: 80px;
  padding: 0 34px;
  border: 1px solid var(--bg-primary);
  background-color: var(--bg-primary);
  border-radius: var(--br-16);
  outline: none;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  line-height: 1.2;
  color: var(--black);
}

.connect__input::placeholder {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  line-height: 1.2;
  color: var(--gray);
}

.connect__input:focus {
  border: 1px solid var(--purple);
}

.connect__input::-webkit-outer-spin-button,
.connect__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.connect__input.error {
  border: 1px solid #ff0005;
}

.connect__checkbox {
  width: 100%;
  margin-bottom: 20px;
}

.connect__checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 12px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.connect__checkbox label p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  line-height: 1.2;
  color: var(--gray);
}

.connect__checkbox label p a {
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 2px;
}

.connect__checkbox_real {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.connect__checkbox_custom {
  position: relative;
  display: inline-block;
  width: 22px;
  min-width: 22px;
  height: 22px;
  background-color: transparent;
  border: 1px solid var(--purple);
  border-radius: var(--br-6);
}

.connect__checkbox_custom.error {
  border: 1px solid #ff0005;
}

.connect__checkbox_custom::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 11px;
  background-image: url(./../img/checkbox-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.connect__checkbox_real:checked + .connect__checkbox_custom::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.connect__checkbox_real:checked + .connect__checkbox_custom {
  background-color: var(--purple);
}

.connect__btn {
  width: 220px;
  height: 52px;
  background-color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: var(--br-16);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--white);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.document {
  width: 100%;
  margin-bottom: 120px;
}

.document__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.document__title_wrapper {
  width: 100%;
}

.document__title {
  max-width: 520px;
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-32);
  line-height: 1.4;
  color: var(--black);
  cursor: default;
}

.document__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.document__item {
  width: 100%;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 20px;
  border-bottom: 1px solid var(--purple);
}

.document__item_step {
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-50);
  color: var(--purple);
  line-height: 1;
  cursor: default;
}

.document__item_info {
  padding-bottom: 4px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
}

.platform {
  width: 100%;
  margin-bottom: 120px;
}

.platform__wrapper {
  padding: 36px 27px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  background-color: #ffffffb2;
  border-radius: var(--br-16);
  -webkit-box-shadow: 0px 2px 6px 0px #0000001a;
  box-shadow: 0px 2px 6px 0px #0000001a;
  -webkit-backdrop-filter: blur(17.600000381469727px);
  backdrop-filter: blur(17.600000381469727px);
}

.platform__title_wrapper {
  width: 100%;
  padding-left: 13px;
}

.platform__title {
  max-width: 500px;
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-32);
  line-height: 1.4;
  color: var(--black);
  cursor: default;
}

.platform__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 11px;
}

.platform__item {
  position: relative;
  z-index: 200;
  padding: 0 30px;
  width: 100%;
  height: 136px;
  background-color: var(--purple);
  -webkit-box-shadow: 0px 2px 6px 0px #0000001a;
  box-shadow: 0px 2px 6px 0px #0000001a;
  -webkit-backdrop-filter: blur(17.600000381469727px);
  backdrop-filter: blur(17.600000381469727px);
  border-radius: var(--br-16);
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.platform__item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}

.platform__item.one::before {
  background-image: url(./../img/voltapp.svg);
  width: 181px;
  height: 37px;
}

.platform__item.two::before {
  background-image: url(./../img/voltenergy.svg);
  width: 257px;
  height: 37px;
}

.platform__item_info {
  max-width: 320px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  color: var(--white);
  cursor: default;
}

.faq {
  width: 100%;
  margin-bottom: 120px;
}

.faq__wrapper {
  width: 100%;
  position: relative;
  z-index: 200;
}

.faq__wrapper::before {
  content: '';
  width: 268px;
  height: 292px;
  position: absolute;
  top: -87px;
  right: 10px;
  background-image: url(./../img/transparent_square.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.faq__title_wrapper {
  width: 556px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 92px 1fr;
  margin-bottom: 40px;
}

.faq__dev_items {
  width: 100%;
  margin-bottom: 40px;
}

.faq__dev_desktop {
  width: 556px;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  object-fit: contain;
}

.faq__dev_mobile {
  width: 100%;
  max-width: 335px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  object-fit: contain;
  display: none;
}

.faq__title_item.active {
  background-color: var(--purple);
  border-radius: var(--br-16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.faq__title_item.one {
  height: 92px;
}

.faq__title_item.two {
  height: 90px;
}

.faq__title {
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-55);
  line-height: 1.4;
  color: var(--white);
  cursor: default;
}

.faq__subtitle {
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-32);
  line-height: 1.4;
  color: var(--white);
  cursor: default;
}

.faq__items {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  row-gap: 20px;
  column-gap: 24px;
  align-items: start;
}

.faq__item {
  padding: 20px 60px 20px 27px;
  width: 100%;
  background-color: #ffffffb2;
  -webkit-box-shadow: 0px 2px 6px 0px #0000001a;
  box-shadow: 0px 2px 6px 0px #0000001a;
  -webkit-backdrop-filter: blur(17.600000381469727px);
  backdrop-filter: blur(17.600000381469727px);
  border-radius: var(--br-16);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.faq__item_title {
  width: 100%;
  position: relative;
  z-index: 200;
}

.faq__item_title::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 41px;
  height: 41px;
  background-image: url(./../img/faq-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.faq__item_name {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--black);
}

.faq__item_answer {
  width: 100%;
  padding-top: 25px;
  display: none;
}

.faq__item_answer_info {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  color: var(--black);
}

.faq__item.active .faq__item_answer {
  display: block;
}

.faq__item.active .faq__item_title::after {
  background-image: url(./../img/faq-arrow-active.png);
}

.answer {
  width: 100%;
}

.answer__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.answer__title_wrapper {
  width: 100%;
}

.answer__title {
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-32);
  line-height: 1.4;
  color: var(--black);
  cursor: default;
  margin-bottom: 38px;
}

.answer__subtitle {
  max-width: 500px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-22);
  color: var(--black);
  cursor: default;
}

.answer__subtitle.tariff {
  max-width: 600px;
}

.answer__items {
  width: 100%;
}

.answer__form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 23px;
  margin-bottom: 23px;
}

.answer__input {
  width: 100%;
  height: 80px;
  padding: 0 34px;
  background-color: #ffffffb2;
  -webkit-box-shadow: 0px 2px 6px 0px #0000001a;
  box-shadow: 0px 2px 6px 0px #0000001a;
  -webkit-backdrop-filter: blur(17.600000381469727px);
  backdrop-filter: blur(17.600000381469727px);
  border-radius: var(--br-16);
  outline: none;
  border: 1px solid #ffffffb2;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  line-height: 1.2;
  color: var(--black);
}

.answer__input::placeholder {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  line-height: 1.2;
  color: var(--gray);
}

.answer__input:focus {
  border: 1px solid var(--purple);
}

.answer__input::-webkit-outer-spin-button,
.answer__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.answer__input.error {
  border: 1px solid #ff0005;
}

.answer__checkbox {
  width: 100%;
  margin-bottom: 23px;
}

.answer__checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 12px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.answer__checkbox label p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  line-height: 1.2;
  color: var(--gray);
}

.answer__checkbox label p a {
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 2px;
}

.answer__checkbox_real {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.answer__checkbox_custom {
  position: relative;
  display: inline-block;
  width: 22px;
  min-width: 22px;
  height: 22px;
  background-color: transparent;
  border: 1px solid var(--purple);
  border-radius: var(--br-6);
}

.answer__checkbox_custom.error {
  border: 1px solid #ff0005;
}

.answer__checkbox_custom::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 11px;
  background-image: url(./../img/checkbox-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.answer__checkbox_real:checked + .answer__checkbox_custom::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.answer__checkbox_real:checked + .answer__checkbox_custom {
  background-color: var(--purple);
}

.answer__btn {
  width: 220px;
  height: 52px;
  background-color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: var(--br-16);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--white);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.footer {
  padding: 40px 0;
  width: 100%;
  background-color: var(--light-gray);
}

.footer__wrapper {
  width: 100%;
  margin-bottom: 40px;
}

.footer__mobile_logo {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

.footer__mobile_logo img {
  width: 158px;
  height: 29px;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.footer__lang_mobile {
  display: none;
}

.footer__lang_title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
  margin-bottom: 24px;
}

.footer__lang_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}

.footer__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

.footer__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer__logo_link {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

.footer__logo {
  width: 180px;
  min-width: 180px;
  height: 33px;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.footer__logo_name {
  max-width: 200px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
}

.footer__langs {
  margin-top: auto;
}

.footer__langs_title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
  margin-bottom: 23px;
}

.footer__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
}

.footer__lang_item {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.footer__item_title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--black);
  text-align: left;
  cursor: default;
  margin-bottom: 23px;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 23px;
}

.footer__list_link {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.footer__info {
  width: 100%;
  margin-bottom: 40px;
}

.footer__info_desc {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
}

.footer__supp {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__supp_name {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
}

.footer__supp_link {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  text-decoration: underline;
  -webkit-text-decoration-style: solid;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  color: var(--black);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.footer__mobile_subtitle {
  display: none;
  max-width: 200px;
  position: absolute;
  z-index: 400;
  top: 53px;
  left: 0;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
}

.policy__main {
  width: 100%;
  overflow-x: hidden;
  padding: 120px 0;
}

.policy__wrapper {
  width: 100%;
  position: relative;
  z-index: 200;
}

.policy__wrapper::before {
  content: '';
  width: 583px;
  height: 582px;
  background-image: url(./../img/policy.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 200;
  top: -157px;
  right: 3px;
}

.policy__title {
  max-width: 700px;
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-48);
  line-height: 1.4;
  color: var(--black);
  cursor: default;
  margin-bottom: 40px;
}

.policy__date {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-22);
  color: var(--black);
  cursor: default;
  margin-bottom: 40px;
}

.policy__info {
  position: relative;
  z-index: 300;
  padding: 32px;
  width: 100%;
  background-color: #ffffffb2;
  -webkit-box-shadow: 0px 2px 6px 0px #0000001a;
  box-shadow: 0px 2px 6px 0px #0000001a;
  -webkit-backdrop-filter: blur(17.600000381469727px);
  backdrop-filter: blur(17.600000381469727px);
  border-radius: var(--br-16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.policy__info_item {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
}

.policy__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.policy__items:last-child {
  margin-bottom: 0;
}

.policy__item_title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-22);
  color: var(--black);
  cursor: default;
}

.policy__item_info {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
}

.policy__item_list li p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
}

.policy__item_list li {
  position: relative;
  z-index: 200;
  padding-left: 20px;
}

.policy__item_list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--black);
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.footer__item.policy {
  display: none;
}

.footer__item.policy:first-child {
  display: block;
}

.footer__logo_name.policy {
  margin-bottom: 40px;
}

.footer__mobile_logo.policy {
  display: none;
}

.footer__lang_mobile.policy {
  display: none;
}

.footer.policy::after {
  content: '';
  width: 0;
  height: 0;
}

.footer__items.policy {
  margin-left: 0;
}

.footer__wrapper.policy {
  padding-top: 0;
  margin-bottom: 40px;
}

.footer__info.policy {
  margin-bottom: 40px;
}

.tariff__main {
  width: 100%;
  overflow-x: hidden;
  padding: 120px 0;
}

.tariff__main.active {
  margin-top: 73.8px;
}

.tariff__info {
  width: 100%;
  margin-bottom: 120px;
}

.tariff__info_wrapper {
  width: 100%;
  position: relative;
  z-index: 200;
}

.tariff__info_wrapper::before {
  content: '';
  width: 434px;
  height: 374px;
  background-image: url(./../img/image-4.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -59px;
  right: 274px;
}

.tariff__info_wrapper::after {
  content: '';
  width: 404px;
  height: 338px;
  background-image: url(./../img/image-5.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 134px;
  right: -113px;
}

.tariff__info_title {
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-48);
  line-height: 1.4;
  color: var(--black);
  cursor: default;
  margin-bottom: 100px;
}

.tariff__info_subtitle {
  max-width: 500px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-22);
  color: var(--black);
  cursor: default;
}

.tariff__calc {
  width: 100%;
  margin-bottom: 120px;
}

.tariff__calc_wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 20px;
}

.tariff__calc_items,
.tariff__calc_info {
  padding: 36px 40px;
  width: 100%;
  background-color: #ffffffb2;
  -webkit-box-shadow: 0px 2px 6px 0px #0000001a;
  box-shadow: 0px 2px 6px 0px #0000001a;
  -webkit-backdrop-filter: blur(17.600000381469727px);
  backdrop-filter: blur(17.600000381469727px);
  border-radius: var(--br-29);
}

.tariff__calc_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.tariff__calc_item_title {
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-32);
  line-height: 1.4;
  color: var(--black);
  cursor: default;
  margin-bottom: 35px;
}

.tariff__calc_item_categories {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  row-gap: 10px;
  -webkit-column-gap: 6px;
  -moz-column-gap: 6px;
  column-gap: 6px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.tariff__calc_item_category {
  padding: 16px;
  background-color: var(--white);
  border: 2px solid var(--purple);
  border-radius: var(--br-16);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  line-height: 1;
  white-space: nowrap;
  color: var(--black);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.tariff__calc_item_category.active {
  background-color: var(--purple);
  color: var(--white);
}

.tariff__calc_form_title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-22);
  color: var(--black);
  cursor: default;
  margin-bottom: 15px;
}

.tariff__calc_form_input {
  padding: 0 25px;
  width: 100%;
  height: 80px;
  background-color: #ffffffb2;
  -webkit-box-shadow: 0px 2px 6px 0px #0000001a;
  box-shadow: 0px 2px 6px 0px #0000001a;
  -webkit-backdrop-filter: blur(17.600000381469727px);
  backdrop-filter: blur(17.600000381469727px);
  border: 1px solid #ffffffb2;
  outline: none;
  border-radius: var(--br-16);
  color: var(--black);
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  margin-bottom: 15px;
}

.tariff__calc_form_input::placeholder {
  color: var(--gray);
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
}

.tariff__calc_form_input:focus {
  border: 1px solid var(--purple);
}

.tariff__calc_form_input::-webkit-outer-spin-button,
.tariff__calc_form_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.tariff__calc_info {
  position: relative;
  z-index: 200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.tariff__calc_info::before {
  content: '';
  width: 230px;
  height: 263px;
  background-image: url(./../img/coins-2-2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -88px;
  right: 40px;
}

.tariff__calc_info::after {
  content: '';
  width: 191px;
  height: 219px;
  background-image: url(./../img/coins-2-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 155px;
  right: -21px;
}

.tariff__calc_info_title {
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-32);
  line-height: 1.4;
  color: var(--black);
  cursor: default;
  margin-bottom: 40px;
}

.tariff__calc_info_desc {
  position: relative;
  z-index: 300;
  width: 100%;
  max-width: 400px;
  height: 242px;
  padding: 21px 32px;
  background-color: var(--purple);
  border-radius: var(--br-16);
  margin-bottom: 40px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.tariff__calc_info_desc.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tariff__calc_info_desc_title {
  font-family: var(--font-secondary);
  font-weight: var(--fw-title);
  font-size: var(--fs-32);
  line-height: 1.4;
  color: var(--white);
  cursor: default;
}

.tariff__calc_info_desc_subtitle {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  color: var(--white);
  cursor: default;
}

.tariff__calc_info_items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 180px;
  margin-bottom: 50px;
  margin-top: auto;
}

.tariff__calc_info_item_icon {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  margin-bottom: 13px;
}

.tariff__calc_info_item_icon.one img {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tariff__calc_info_item_icon.two img {
  width: 45px;
  min-width: 45px;
  height: 39px;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tariff__calc_info_item_title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
}

.tariff__calc_info_btn {
  width: max-content;
  padding: 16px 38px;
  background-color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: var(--br-16);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--white);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.2s ease-in;
}

.tariff__calc_info_btn.one {
  margin-top: auto;
}

.tariff__calc_info_btn.disabled {
  color: var(--gray);
  background-color: var(--light-gray);
  border: 2px solid var(--light-gray);
  cursor: not-allowed;
}

.tariff__calc_form_wrapper {
  width: 100%;
  padding-bottom: 8px;
  margin-bottom: 9px;
}

.tariff__calc_form_range {
  width: 100%;
  height: 1px;
  background-color: var(--purple);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  margin: 0;
  padding: 0;
}

.tariff__calc_form_range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--purple);
  cursor: pointer;
}

.tariff__calc_form_range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--purple);
  cursor: pointer;
  box-sizing: border-box;
}

.tariff__calc_form_range::-webkit-slider-track {
  width: 100%;
  height: 1px;
  background-color: var(--purple);
  border: none;
}

.tariff__calc_form_range::-moz-range-track {
  width: 100%;
  height: 1px;
  background-color: var(--purple);
  border: none;
}

.tariff__calc_max {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 35px;
}

.tariff__calc_max_item {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-16);
  color: var(--black);
  cursor: default;
}

.tg__icon {
  width: 48px;
  height: 48px;
  background-color: var(--purple);
  border-radius: 50%;
  box-shadow: 0px 2px 6px 0px #0000001a;
  backdrop-filter: blur(17.600000381469727px);
  position: fixed;
  z-index: 800;
  bottom: 88px;
  right: calc(50% - (1504px / 2) - 41px);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

.tg__icon img {
  position: relative;
  top: 11px;
  left: 7px;
  display: block;
  width: 28px;
  height: 26px;
}

.scroll__icon {
  width: 48px;
  height: 48px;
  background-color: var(--white);
  border-radius: 50%;
  position: fixed;
  z-index: 800;
  bottom: 20px;
  right: calc(50% - (1504px / 2) - 41px);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.scroll__icon img {
  display: block;
  width: 48px;
  height: 48px;
}
