:root {
  --8-fonts: 8px;
  --10-fonts: 10px;
  --11-fonts: 11px;
  --12-fonts: 12px;
  --13-fonts: 13px;
  --14-fonts: 14px;
  --15-fonts: 15px;
  --16-fonts: 16px;
  --17-fonts: 17px;
  --18-fonts: 18px;
  --19-fonts: 19px;
  --20-fonts: 20px;
  --21-fonts: 21px;
  --22-fonts: 22px;
  --23-fonts: 23px;
  --24-fonts: 24px;
  --25-fonts: 25px;
  --26-fonts: 26px;
  --27-fonts: 27px;
  --29-fonts: 29px;
  --34-fonts: 34px;
  --35-fonts: 35px;
  --36-fonts: 36px;
  --37-fonts: 37px;
  --39-fonts: 39px;
  --41-fonts: 41px;
  --42-fonts: 42px;
  --44-fonts: 44px;
  --49-fonts: 49px;
  --54-fonts: 54px;
  --59-fonts: 59px;
  --69-fonts: 69px;
  --95-fonts: 95px;
  --142-fonts: 142px;
  --203-fonts: 203px;
  --width: 1344px;
  --white: #fff;
  --black: #000;
  --transparent: rgba(0,0,0,0);
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #4ebc42;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace ;
}

html {
  width: 100%;
  scroll-behavior: smooth;
}

.container-global {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  scroll-behavior: smooth;
  overflow: hidden;
}

body {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  padding: 75px 0 0;
  width: 100%;
  min-height: 100vh;
  font-style: normal;
  font-family: Bitso, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  color: rgb(175, 188, 198);
  background-color: rgb(12, 15, 18);
  scroll-behavior: smooth;
}
body:not(.mobile, .mobile-faq) .header__nav {
  display: flex !important;
}

.wrapper {
  margin: 0 auto;
  max-width: var(--width);
  width: 100%;
}

header, main, footer, section, article {
  width: 100%;
}

section {
  padding: 88px 0 0;
}

h1 {
  width: 100%;
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
h1 span {
  color: rgb(104, 199, 74);
}

h2 {
  width: 100%;
  color: #fff;
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  line-height: 3.5rem;
}
h2 span {
  color: rgb(104, 199, 74);
}

h3 {
  width: 100%;
  color: #fff;
  font-weight: 500;
  font-size: 1.75rem;
  text-align: center;
  line-height: 2.5rem;
}

/*
=======================================================================================================
*/
.btn {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 0 24px;
  height: 48px;
  font-weight: 700;
  border-radius: 12px;
  color: rgb(255, 255, 255);
  border: 1px solid rgb(41, 172, 0);
  background-color: rgba(41, 172, 0, 0.2);
  text-shadow: 0 0 8px rgba(12, 15, 18, 0.35);
  transition: background-color 0.48s ease, color 0.48s ease;
}
.btn img, .btn svg {
  margin: 0 0 0 10px;
}
.btn path {
  stroke: #fff;
  transition: stroke 0.48s ease;
}
.btn:not(.border):hover {
  background-color: rgb(9, 131, 0);
}
.btn.border {
  color: rgb(41, 172, 0);
  background-color: var(--transparent);
}
.btn.border path {
  stroke: rgb(41, 172, 0);
}
.btn.border:hover {
  color: #fff;
}
.btn.border:hover path {
  stroke: #fff;
}

/*
=======================================================================================================
*/
.move-cursor,
.border {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.move-cursor > *,
.border > * {
  pointer-events: none;
  position: relative;
  z-index: 3;
}
.move-cursor:before,
.border:before {
  --size: 0;
  width: var(--size);
  height: var(--size);
  position: absolute;
  content: "";
  left: var(--x);
  top: var(--y);
  border-radius: 50%;
  background: radial-gradient(rgba(41, 172, 0, 0.2) 0%, var(--transparent) 100%);
  box-shadow: 0 0 150px -15px rgba(41, 172, 0, 0.2);
  transition: width 0.48s ease, height 0.48s ease;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.move-cursor:hover:before,
.border:hover:before {
  --size: 300px;
}
.move-cursor.grey,
.border.grey {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  border: 1px solid #535d66;
  background-color: rgba(12, 15, 18, 0.4);
}
.move-cursor.grey:before,
.border.grey:before {
  background: radial-gradient(rgba(74, 87, 96, 0.5), var(--transparent) 80%);
}
.move-cursor.grey:hover:before,
.border.grey:hover:before {
  --size: 189px;
}

/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
.header {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 16px;
  width: 100%;
  border-top: 1px solid rgb(74, 87, 96);
  border-bottom: 1px solid rgb(74, 87, 96);
  background: rgb(25, 30, 35);
  z-index: 10;
}
.header .wrapper {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}
.header .logo {
  flex-shrink: 0;
  padding: 6px 8px 0 0;
}
.header .logo img path, .header .logo svg path {
  fill: #fff;
}
.header__nav {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex-grow: 1;
  padding: 0 0 0 40px;
}
.header__nav > * {
  z-index: 2;
}
.header__nav--close {
  display: none;
}
.header__nav nav, .header__nav ul {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}
.header__nav ul {
  gap: 2px;
}
.header__nav li {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}
.header__nav li a {
  padding: 24px;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
  font-size: 0.875rem;
  line-height: 1.5rem;
  border-bottom: 1px solid rgb(25, 30, 35);
  transition: all 0.3s ease 0s;
}
.header__nav li a:hover {
  background: rgb(16, 69, 0);
  border-bottom: 1px solid rgb(41, 172, 0);
}
.header__nav li a.active {
  background: rgb(16, 69, 0);
  border-bottom: 1px solid rgb(41, 172, 0);
}
.header__nav--enter {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 16px;
  /* margin: 0 0 0 auto; */
}
.header__nav--enter .grey {
  padding: 0 24px;
  height: 48px;
  font-weight: 700;
  border-radius: 12px;
}
.header__nav--enter .grey img, .header__nav--enter .grey svg {
  margin: 0 0 0 10px;
  flex-shrink: 0;
}
.header__nav--enter .grey path {
  stroke: rgb(175, 188, 198);
}

.header__nav > * {
  order: 1;
}

.header__nav > .header__nav--enter {
  order: 3;
}

/*  */

.header__lang {
  /* position: relative; */
  order: 2;
  display: flex;
  margin: 0 16px 0 auto;
  color: #fff;
  justify-content: center;
  align-content: center;
  align-items: center;
  z-index: 1;
}

.header__lang--result {
  cursor: pointer;
  position: relative;
  display: flex;
  padding: 8px;
  height: 48px;
  border-radius: 4px;
  background-color: rgba(16,69,0,0);
  justify-content: center;
  align-content: center;
  align-items: center;
  transition: .3s all;
  z-index: 3;
}

.header__lang--result:hover {
  background-color: rgba(16,69,0,1);
}

/* .header__lang--result:after {
  cursor: default;
  pointer-events: none;
  position: absolute;
  content: '';
  top: 100%;
  left: 50%;
  width: calc(100% + 32px);
  height: 100%;
  transform: translateX(-50%);
}

.header__lang--result:hover:after {
  pointer-events: all;
} */

.header__lang--result p {
  margin: 0 8px;
  font-weight: 700;
  font-size: .875rem;
  line-height: 1.5rem;
  text-transform: uppercase;
}

.header__lang--result i {
  display: flex;
  margin: 2px 0 0 8px;
  width: 12px;
  height: 12px;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  font-style: normal;
}

.header__lang--result i>* {
  transition: .3s all;
}

body:not(.mobile) .header__lang:hover .header__lang--result i>*,
.header__lang.active .header__lang--result i>* {
  transform: rotate(180deg);
}

body:not(.mobile) .header__lang:hover .header__lang--list {
  display: block !important;
}

.header__lang.active .header__lang--result {
  background-color: rgba(16,69,0,1);
}

.header__lang--list {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  max-height: 440px;
  width: 100vw;
  padding-bottom: 12px;
  background: rgb(25,30,35);
  border-top: 1px solid rgb(74,87,96);
  border-bottom: 1px solid rgb(74,87,96);
}

.header__lang--list:before {
  cursor: default;
  position: absolute;
  content: '';
  bottom: 100%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
}

.header__lang--list .wrapper {
  flex-direction: column;
  padding-left: 18%;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.header__lang--list .wrapper > p {
  margin: 24px 0 0 16px;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: rgb(175,188,198);
}

.header__lang--list .wrapper > ul {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 16px;
  width: 100%;
  max-width: 293px;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.header__lang--list li {
  cursor: pointer;
  /* display: flex; */
  /* flex-direction: column; */
  /* padding: 8px 32px; */
  /* margin: 16px 0 0; */
  width: 100%;
  /* font-weight: 400; */
  /* font-size: .875rem; */
  /* border-radius: 4px; */
  /* line-height: 1.5rem; */
  /* background-color: rgba(51,60,66,0); */
  /* justify-content: flex-start; */
  /* align-content: flex-start; */
  /* align-items: flex-start; */
  /* transition: .3s all; */
}

/* .header__lang--list li:hover */
.header__lang--list li a:hover {
  border: unset;
  background-color: rgba(51,60,66,1);
}

/* .header__lang--list li:active */
.header__lang--list li a:active {
  background-color: rgba(16,69,0,1);
}

.header__lang--list li a {
  /* padding: 0; */
  border: unset;
  /* background-color: rgba(0,0,0,0); */
  display: flex;
  flex-direction: column;
  padding: 8px 32px;
  margin: 16px 0 0;
  width: 100%;
  font-weight: 400;
  font-size: .875rem;
  border-radius: 4px;
  line-height: 1.5rem;
  background-color: rgba(51,60,66,0);
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

/* .header__lang--list li a:hover {
  padding: 0;
  border: unset;
  background-color: rgba(0,0,0,0);
} */

.header__lang--list li a>span {
  font-weight: 400;
  font-size: .75rem;
  line-height: 1rem;
  color: rgb(175,188,198);
}

.header__lang--list p>span {
  padding: 0px 4px;
  margin: 0 0 0 8px;
  width: auto;
  font-weight: 400;
  font-size: .75rem;
  line-height: 1rem;
  border-radius: 4px;
  color: rgb(25,30,35);
  background: rgb(188,212,255);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
.footer {
  position: relative;
  padding: 64px 0 0;
  margin: 88px 0 0;
  background: rgb(25, 30, 35);
  border-top: 1px solid rgb(74, 87, 96);
  z-index: 3;
}
.footer__line {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}
.footer__line.under {
  gap: 32px;
  padding: 40px 0 20px;
  margin: 32px 0 0;
  justify-content: flex-start;
}
.footer__line.under > a {
  flex-shrink: 0;
  font-weight: 400;
  line-height: 1.75;
  font-size: 0.85rem;
}
.footer__line.under > img, .footer__line.under > svg {
  width: 145px;
  height: auto;
}
.footer__line.under path, .footer__line.under rect {
  fill: #fff;
}
.footer__line.under:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--transparent), #fff, var(--transparent));
}
.footer .logo {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.footer .logo path {
  fill: #fff;
}
.footer ul {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 5px;
}
.footer ul a {
  padding: 5px 20px;
  color: #fff;
  font-weight: 400;
  transition: color 0.48s ease;
}

.br_lang .footer ul a {
  padding: 5px 15px;
}
.footer ul a:hover {
  color: rgb(41, 172, 0);
}
.footer__support {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex-shrink: 0;
  gap: 24px;
}
.footer__support a:not(.grey) path {
  stroke-width: 0.2px;
}
.footer__support .grey {
  padding: 0 24px;
  height: 48px;
  font-weight: 700;
  border-radius: 12px;
}
.footer__support .grey img, .footer__support .grey svg {
  margin: 0 0 0 10px;
}
.footer__system {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  position: relative;
  margin: 0 0 0 auto;
}
.footer__system p {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-decoration: underline;
  text-decoration-color: var(--transparent);
  transition: 0.48s ease all;
}
.footer__system:hover p {
  text-decoration-color: rgb(175, 188, 198);
}
.footer__system:before {
  pointer-events: none;
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  background-color: rgb(104, 199, 74);
  border-radius: 100%;
}

/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
.main {
  padding: 112px 0 150px;
  border-bottom: 1px solid rgb(51, 60, 66);
}
.main .wrapper {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  position: relative;
}
.main__decoration {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main__decoration--star {
  display: grid;
  place-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main__decoration--star > * {
  position: absolute;
  opacity: 0;
  transform: scale(0.95);
  animation: 4s ease infinite normal none running pulse-fade;
}
.main__decoration--star > *:nth-child(1) {
  width: 8px;
  height: 8px;
  margin-left: -720px;
  margin-top: -680px;
  animation-delay: 0.5s;
}
.main__decoration--star > *:nth-child(2) {
  width: 16px;
  height: 16px;
  margin-left: -620px;
  margin-top: -580px;
  animation-delay: 2.1s;
}
.main__decoration--star > *:nth-child(3) {
  width: 2px;
  height: 2px;
  margin-left: 820px;
  margin-top: -700px;
  animation-delay: 0.1s;
}
.main__decoration--star > *:nth-child(4) {
  width: 9px;
  height: 9px;
  margin-left: -350px;
  margin-top: -380px;
  animation-delay: 0.8s;
}
.main__decoration--star > *:nth-child(5) {
  width: 16px;
  height: 16px;
  margin-left: 1000px;
  margin-top: -500px;
  animation-delay: 2.4s;
}
.main__decoration--star > *:nth-child(6) {
  width: 16px;
  height: 16px;
  margin-left: -200px;
  margin-top: -140px;
  animation-delay: 2.2s;
}
.main__decoration--star > *:nth-child(7) {
  width: 4px;
  height: 4px;
  margin-left: 980px;
  margin-top: -462px;
  animation-delay: 0.2s;
}
.main__decoration--star > *:nth-child(8) {
  width: 13px;
  height: 13px;
  margin-top: 100px;
  animation-delay: 1.1s;
}
.main__decoration--star > *:nth-child(9) {
  width: 13px;
  height: 13px;
  margin-left: 1180px;
  margin-top: 120px;
  animation-delay: 0.8s;
}
.main__decoration--star > *:nth-child(10) {
  width: 13px;
  height: 13px;
  margin-left: 980px;
  margin-top: 220px;
  animation-delay: 1.1s;
}
.main__decoration--star > *:nth-child(11) {
  width: 4px;
  height: 4px;
  margin-left: 960px;
  margin-top: 240px;
  animation-delay: 0.4s;
}
.main__decoration--star > *:nth-child(12) {
  width: 16px;
  height: 16px;
  margin-left: -200px;
  margin-top: 440px;
  animation-delay: 2s;
}
.main__decoration--star > *:nth-child(13) {
  width: 20px;
  height: 20px;
  margin-left: -400px;
  margin-top: 640px;
  animation-delay: 3.5s;
}
.main__decoration--star > *:nth-child(14) {
  width: 20px;
  height: 20px;
  margin-top: -215px;
  animation-delay: 3s;
}
.main__decoration--star > *:nth-child(15) {
  width: 9px;
  height: 9px;
  margin-left: -300px;
  margin-top: -300px;
  animation-delay: 1.9s;
}
.main__decoration--star > *:nth-child(16) {
  width: 9px;
  height: 9px;
  margin-top: -720px;
  animation-delay: 1.9s;
}
.main__decoration--around {
  display: grid;
  place-items: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  transform: scale(1);
}
.main__decoration--around > * {
  position: absolute;
  border-radius: 100%;
  transform: scale(0.95);
  animation: 4s ease infinite normal none running pulse;
}
.main__decoration--around > *:nth-child(1) {
  width: 392px;
  height: 392px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: rgba(41, 172, 0, 0.1) 0 4px 25px;
  animation-delay: 0.1s;
}
.main__decoration--around > *:nth-child(2) {
  width: 552px;
  height: 552px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: rgba(41, 172, 0, 0.1) 0 4px 25px;
  animation-delay: 0.3s;
}
.main__decoration--around > *:nth-child(3) {
  width: 694px;
  height: 694px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: rgba(255, 255, 255, 0.05) 0 4px 25px;
  animation-delay: 0.6s;
}
.main__decoration--around > *:nth-child(4) {
  width: 938px;
  height: 938px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: rgba(255, 255, 255, 0.05) 0 4px 25px;
  animation-delay: 0.9s;
}
.main__decoration--around span {
  width: 500px;
  height: 500px;
  background: rgba(41, 172, 0, 0.2);
  animation-delay: 0.05s;
  filter: blur(200px);
  overflow: hidden;
}
.main__description {
  position: relative;
  padding: 0 0 0 4.5%;
  /* width: 45%; */
  width: 50%;
}
.main__description > p:not(.under-title) {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: 100%;
  color: #68c74a;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}
.main__description > p:not(.under-title) img, .main__description > p:not(.under-title) svg {
  margin: 0 10px 0 0;
}
.main__description h1 {
  padding: 10px 0 0;
  text-align: left;
  max-width: 520px;
}
.main__description .under-title {
  padding: 20px 0 0;
  /* width: 55%; */
  width: 70%;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
.main__description > .block-btn {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  padding: 40px 0 0;
  /* width: 70.8%; */
  width: 66.8%;
}
.main__description > .block-btn .btn {
  max-width: 100%;
  width: 100%;
}
.main__plan {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: calc(55% - 60px);
  align-self: stretch;
}
.main__plan--item {
  position: relative;
  padding: 40px 30px;
  margin: 20px 0;
  white-space: nowrap;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.main__plan--item:nth-child(1), .main__plan--item:nth-child(4) {
  position: absolute;
  padding: 20px 30px;
}
.main__plan--item:nth-child(1) {
  top: -40px;
  right: 5%;
}
.main__plan--item:nth-child(1) .main__plan--info {
  padding: 0;
  text-align: right;
}
.main__plan--item:nth-child(4) {
  bottom: -25px;
  left: 5%;
}

.br_lang .main__plan--item:nth-child(4) {
  left: -8%;
}

.main__plan--item:nth-child(4) > p {
  padding-bottom: 0;
}
.main__plan--item:nth-child(4) path {
  fill: #29ac00;
}
.main__plan--item:nth-child(5) {
  position: absolute;
  bottom: -25px;
  right: 5%;
  padding: 20px 30px;
}

.br_lang .main__plan--item:nth-child(5) {
  right: 2%;
}

.main__plan--item:nth-child(5) > p {
  padding-bottom: 0;
}
.main__plan--item:nth-child(5) path {
  fill: #29ac00;
}
.main__plan--item:nth-child(2) {
  padding-right: 70px;
}
.main__plan--item > * {
  position: relative;
}
.main__plan--item > p {
  position: relative;
  padding: 0 0 0 40px;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.main__plan--item > p img, .main__plan--item > p svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: auto;
}
.main__plan--item > p span {
  position: relative;
  padding: 0 0 0 20px;
  color: #68c74a;
}
.main__plan--item > p span:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 11px;
  left: 5px;
  width: 7px;
  height: 1px;
  background-color: rgb(175, 188, 198);
}
.main__plan--item ul {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
.main__plan--item ul li {
  position: relative;
  padding: 0 0 0 30px;
  width: 100%;
  font-weight: 500;
  font-size: 1.1rem;
}
.main__plan--item ul li span {
  color: #68c74a;
  font-weight: 500;
}
.main__plan--item ul li:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 11px;
  left: 10px;
  width: 7px;
  height: 1px;
  background-color: rgb(175, 188, 198);
}
.main__plan--item ul li:first-child, .main__plan--item ul li:nth-child(2) {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}
.main__plan--item ul li:first-child:after, .main__plan--item ul li:nth-child(2):after {
  display: none;
}
.main__plan--item ul li:first-child {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 0 0 10px 30px;
  position: unset;
  z-index: 3;
}
.main__plan--item ul li:first-child span {
  font-weight: 600;
}
.main__plan--item ul li:first-child span b {
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
.main__plan--item ul li:first-child:before {
  pointer-events: none;
  position: absolute;
  content: "";
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  top: -15px;
  left: -15px;
  width: 55px;
  height: 55px;
  background: url(img/cabinet/decoration/standart.svg) center center no-repeat;
  background-size: contain;
}
.main__plan--item:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 31, 40, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  filter: blur(5px);
}
.main__plan--item:nth-child(3) {
  margin: 10px 140px 35px auto;
}
.main__plan--item:nth-child(3) ul li:first-child:before {
  top: -20px;
  left: -20px;
  width: 74px;
  height: 55px;
  background-image: url(img/cabinet/decoration/premium.svg);
}
.main__plan--item > img,
.main__plan--item > svg {
  position: absolute;
  top: 50%;
  right: -80px;
  width: auto;
  height: 160px;
  transform: translateY(-50%);
}
.main__plan--info {
  position: unset;
  padding: 0 30px 0 0;
  width: 100%;
}
.main .app {
  padding: 60px 0 0;
}

/*
=======================================================================================================
*/
.app {
  width: 100%;
}
.app > p {
  padding: 0 0 20px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}
.app .block-btn {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: 100%;
  gap: 16px;
}
.app .block-btn .move-cursor {
  width: 187px;
  height: 56px;
  border-radius: 8px;
}
.app .block-btn .move-cursor img, .app .block-btn .move-cursor svg {
  width: 160px;
  height: auto;
}
.app .block-btn .move-cursor:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: -2px;
  right: 0;
  width: 65px;
  height: 37px;
  background: url(img/decoration/soon.svg) center center no-repeat;
  background-size: contain;
  z-index: 2;
}

/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
.market {
  position: relative;
  padding-bottom: 88px;
  background-color: rgb(12, 15, 18);
}
.market .wrapper {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.market .wrapper > *:not(.market__decoration) {
  position: relative;
}
.market__decoration {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.market__decoration img, .market__decoration svg {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 50%;
  max-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}
.market h2 {
  margin: 10px 0 40px;
}
.market h3 {
  position: relative;
  margin: 0 0 40px;
}
.market h3:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: calc(100% + 15px);
  left: 50%;
  width: 330px;
  height: 1px;
  background: linear-gradient(to right, var(--transparent), rgb(41, 172, 0), var(--transparent));
  transform: translateX(-50%);
}
.market .over-title {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-weight: 700;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: rgb(104, 199, 74);
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}
.market__deposit, .market__withdrawal {
  width: calc(50% - 10px);
}

.table {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 10px 25px 0;
  border-radius: 24px;
  color: rgb(209, 216, 223);
  border: 1px solid rgb(51, 60, 66);
  background-color: rgb(25, 30, 35);
}
.table__line {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding: 10px 0 11px;
  width: 100%;
  border-top: 1px solid rgb(74, 87, 96);
  transition: background-color 0.48s ease;
}
.table__line:not(:first-child) .table__item--title {
  display: none;
}
.table__line:first-child {
  border-top: unset;
  border-bottom: 1px solid rgb(74, 87, 96);
}
.table__line:first-child .table__item:first-child .table__item--title {
  padding: 0 0 0 35px;
}
.table__line:not(:first-child):hover {
  background-color: #333C42;
}
.table__item {
  padding: 0 5px;
}
.table__item--title {
  font-weight: 400;
}
.table__item--info {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
}
.table__item--info span {
  padding: 0 0 0 7px;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(175, 188, 198);
  text-transform: uppercase;
}
.table__item--info img, .table__item--info svg {
  margin: 0 10px 0 0;
  width: 25px;
  height: auto;
}
.table__item:first-child {
  width: 32%;
}
.table__item:nth-child(2) {
  width: 26%;
}
.table__item:first-child .table__item--info {
  color: #fff;
}
.table__item:nth-child(3) {
  width: 24%;
}
.table__item:last-child {
  width: 16%;
}
.table__item:last-child .table__item--info {
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1rem;
}

/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
.start {
  padding: 0;
}
.start h2 {
  line-height: 1;
  font-size: 64px;
}
.start h1 {
  position: relative;
}
.start .under-title {
  position: relative;
  padding: 16px 0 40px;
  width: 100%;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}
.start .app {
  display: none;
  padding: 32px 0 56px;
}
.start .app .block-btn {
  gap: 32px;
  justify-content: center;
}
.start .app .block-btn .move-cursor {
  width: 229px;
  height: 64px;
}
.start__step {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}
.start__step--item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 32px 24px;
  width: calc(33.3333333333% - 16px);
  border-radius: 16px;
  background-color: rgb(17, 20, 23);
  border: 1px solid rgba(255, 255, 255, 0.1);
  align-self: stretch;
  overflow: hidden;
}
.start__step--item > * {
  position: relative;
}
.start__step--item > span {
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.125rem;
  color: rgb(104, 199, 74);
  text-transform: uppercase;
}
.start__step--item > h4 {
  padding: 10px 0 10px 40px;
  width: 100%;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
}
.start__step--item > h4 img, .start__step--item > h4 svg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: auto;
  transform: translateY(-50%);
}
.start__step--item > h4 path {
  fill: rgb(104, 199, 74);
}
.start__step--item > p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}
.start__step--item:hover:before {
  --size: 500px;
}

/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
.affilate__item {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding: 16px;
  width: 100%;
  height: 310px;
  border-radius: 40px;
  border: 1px solid rgb(51, 60, 66);
  background-color: rgb(25, 30, 35);
  overflow: hidden;
}
.affilate__item--decoration {
  pointer-events: none;
  position: relative;
  width: 50%;
  align-self: stretch;
}
.affilate__item--around {
  position: absolute;
  display: grid;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  place-items: center;
}
.affilate__item--around img, .affilate__item--around svg {
  position: absolute;
  margin: 10px 0 0;
  z-index: 2;
}
.affilate__item--around > *:not(img, svg) {
  position: absolute;
  animation: 4s ease infinite normal none running pulse;
  transform: scale(0.5);
  border-radius: 100%;
}
.affilate__item--around > *:not(img, svg):nth-child(1) {
  width: 146px;
  height: 146px;
  border-color: rgba(42, 171, 13, 0.4549019608);
  background: rgba(0, 172, 46, 0.0705882353);
  box-shadow: inset 0 4px 25px rgba(95, 180, 69, 0.45), 0 4px 25px rgba(41, 172, 0, 0.1);
  animation-delay: 0.1s;
}
.affilate__item--around > *:not(img, svg):nth-child(2) {
  width: 188px;
  height: 188px;
  background: rgba(255, 255, 255, 0.024);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: rgba(41, 172, 0, 0.1) 0 4px 25px;
  animation-delay: 0.3s;
}
.affilate__item--around > *:not(img, svg):nth-child(3) {
  width: 230px;
  height: 230px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: rgba(41, 172, 0, 0.1) 0 4px 25px;
  animation-delay: 0.6s;
}
.affilate__item--around:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(img/background/grid.png) center center;
  background-position: center center;
  inset: 0;
  rotate: 45deg;
  transform: scale(2.5);
  opacity: 0.3;
}
.affilate__item--stroke {
  position: absolute;
  display: grid;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  place-items: center;
}
.affilate__item--stroke img, .affilate__item--stroke svg {
  margin: 25px 0 0 -25px;
  width: 80%;
  height: auto;
}
.affilate__item--coin {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.affilate__item--coin img, .affilate__item--coin svg {
  position: absolute;
  fill-opacity: 0.7;
}
.affilate__item--coin img:first-child, .affilate__item--coin svg:first-child {
  fill-opacity: 0.7;
  top: 10%;
  left: 8%;
  width: 90px;
  height: auto;
}
.affilate__item--coin img:last-child, .affilate__item--coin svg:last-child {
  fill-opacity: 0.6;
  bottom: 10%;
  right: 14%;
  width: 70px;
  height: auto;
}
.affilate__item--description {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 50%;
}
.affilate__item--description > * {
  width: 100%;
}
.affilate__item--description h2 {
  padding: 0 0 15px;
}
.affilate__item--description > p {
  font-weight: 400;
  text-align: center;
}
.affilate__item--description .block-line {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: relative;
  padding: 15px 0 0;
  margin: 19px 0 0;
}
.affilate__item--description .block-line:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--transparent), rgb(41, 172, 0), var(--transparent));
}
.affilate__item--level {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 10px;
  margin: 0 30px;
}
.affilate__item--level p {
  order: 2;
  font-size: 0.75rem;
  font-weight: 400;
}
.affilate__item--level strong {
  font-size: 2.75rem;
  line-height: 1.2;
  font-weight: 600;
  color: rgb(41, 172, 0);
}
.affilate svg#spheres #line {
  animation: 6s linear 2s infinite reverse none running stroke-flowing;
}

/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
.join__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 52px 32px;
  width: 100%;
  background-color: rgb(17, 20, 23);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}
.join__item:hover:before {
  --size: 600px;
}
.join__description {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin: 0 auto 0 0;
  width: 30%;
}
.join__description > * {
  text-align: left;
}
.join__description h3 {
  padding: 8px 0;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 3rem;
}
.join__description span {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5rem;
  letter-spacing: 0.125rem;
  color: rgb(104, 199, 74);
  text-transform: uppercase;
}
.join__description p {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.join__description .btn {
  pointer-events: all;
  margin: 40px 0 0;
  width: 100%;
}
.join picture {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: rgb(14, 18, 21);
  box-shadow: 0 0 50px 50px rgb(14, 18, 21);
}
.join picture img, .join picture svg {
  position: relative;
  top: 0;
  right: 0;
  width: auto;
  height: auto;
  max-height: 100%;
}
.join picture:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(17, 20, 23, 0.7) 20%, var(--transparent));
}

/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
.earth__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  width: 100%;
  z-index: 3;
}
.earth__header h2 {
  width: 40%;
  font-size: 4rem;
  text-align: left;
  line-height: 5rem;
}
.earth__header p {
  width: 30%;
  font-weight: 400;
  line-height: 2rem;
  font-size: 1.125rem;
}
.earth__decoration {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  min-height: 810px;
}
.earth__decoration > img, .earth__decoration > svg {
  display: none;
}
.earth__decoration--item {
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  position: absolute;
  padding: 23px 31px;
  border-radius: 6px;
  background: rgba(22, 31, 40, 0.5);
  border: 1px solid rgb(74, 87, 96);
  z-index: 3;
}
.earth__decoration--item h5 {
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.earth__decoration--item p {
  font-weight: 400;
  line-height: 2rem;
  font-size: 1.125rem;
}
.earth__decoration--item:nth-of-type(1) {
  top: 20%;
  left: 15%;
}
.earth__decoration--item:nth-of-type(2) {
  top: 5%;
  right: 15%;
}
.earth__decoration--item:nth-of-type(3) {
  bottom: 20%;
  left: 25%;
}
.earth__decoration--item:nth-of-type(4) {
  bottom: 28%;
  right: 18%;
}
.earth__decoration .canvas-wrap {
  cursor: grab;
  position: relative;
  margin: -140px 0 0;
  left: 50%;
  width: 950px;
  height: 950px;
  border-radius: 100%;
  transform: translateX(-50%);
  overflow: hidden;
}
.earth__decoration .canvas-wrap canvas {
  position: relative;
  top: 50%;
  left: 50%;
  width: auto;
  height: 1000px;
  transform: translate(-50%, -50%);
}
.earth__decoration .canvas-wrap:active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
.coin {
  position: relative;
  z-index: 3;
}
.coin > *:not(.coin__decoration) {
  position: relative;
}
.coin__decoration, .coin canvas {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.coin h2 {
  padding: 0 0 64px;
  font-size: 3rem;
  text-align: left;
}
.coin__wrap {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}
.coin__wrap--item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 24px 24px 24px 80px;
  width: calc(20% - 20px);
  color: #fff;
  line-height: 1.5rem;
  border-radius: 16px;
  background: rgba(25, 30, 35, 0.6);
  border: 1px solid rgb(51, 60, 66);
}
.coin__wrap--item p {
  font-size: 1rem;
  font-weight: 700;
}
.coin__wrap--item span {
  font-weight: 400;
  font-size: 0.875rem;
  text-transform: uppercase;
}
.coin__wrap--item img, .coin__wrap--item svg {
  position: absolute;
  top: 50%;
  left: 24px;
  width: 40px;
  height: auto;
  transform: translateY(-50%);
}
.coin__wrap--item:before {
  --size: 0;
}
.coin__wrap--item:hover:before {
  --size: 280px;
}
.coin__wrap--item.btc:before {
  background: radial-gradient(rgba(247, 147, 26, 0.4), var(--transparent) 80%);
  box-shadow: 0 0 150px -15px rgba(247, 147, 26, 0.2);
}
.coin__wrap--item.eth:before {
  background: radial-gradient(rgba(143, 152, 204, 0.4), var(--transparent) 80%);
  box-shadow: 0 0 150px -15px rgba(143, 152, 204, 0.2);
}
.coin__wrap--item.ltc:before {
  background: radial-gradient(rgba(28, 96, 255, 0.4), var(--transparent) 80%);
  box-shadow: 0 0 150px -15px rgba(28, 96, 255, 0.2);
}
.coin__wrap--item.trx:before {
  background: radial-gradient(rgba(220, 6, 43, 0.4), var(--transparent) 80%);
  box-shadow: 0 0 150px -15px rgba(220, 6, 43, 0.2);
}
.coin__wrap--item.xlm:before {
  background: radial-gradient(rgba(88, 145, 147, 0.4), var(--transparent) 80%);
  box-shadow: 0 0 150px -15px rgba(88, 145, 147, 0.2);
}
.coin__wrap--item.doge:before {
  background: radial-gradient(rgba(186, 159, 51, 0.4), var(--transparent) 80%);
  box-shadow: 0 0 150px -15px rgba(186, 159, 51, 0.2);
}
.coin__wrap--item.xrp:before {
  background: radial-gradient(rgba(76, 126, 176, 0.4), var(--transparent) 80%);
  box-shadow: 0 0 150px -15px rgba(76, 126, 176, 0.2);
}
.coin__wrap--item.bnb:before {
  background: radial-gradient(rgba(74, 86, 98, 0.4), var(--transparent) 80%);
  box-shadow: 0 0 150px -15px rgba(74, 86, 98, 0.2);
}
.coin__wrap--item.usdt:before {
  background: radial-gradient(rgba(10, 193, 142, 0.4), var(--transparent) 80%);
  box-shadow: 0 0 150px -15px rgba(10, 193, 142, 0.2);
}
.coin__wrap--item:hover.btc:before {
  background: radial-gradient(rgba(247, 147, 26, 0.4), var(--transparent) 80%);
}
.coin__wrap--item:hover.eth:before {
  background: radial-gradient(rgba(143, 152, 204, 0.4), var(--transparent) 80%);
}
.coin__wrap--item:hover.ltc:before {
  background: radial-gradient(rgba(28, 96, 255, 0.4), var(--transparent) 80%);
}
.coin__wrap--item:hover.trx:before {
  background: radial-gradient(rgba(220, 6, 43, 0.4), var(--transparent) 80%);
}
.coin__wrap--item:hover.doge:before {
  background: radial-gradient(rgba(186, 159, 51, 0.4), var(--transparent) 80%);
}
.coin__wrap--item:hover.xrp:before {
  background: radial-gradient(rgba(74, 86, 98, 0.4), var(--transparent) 80%);
}
.coin__wrap--item:hover.usdt:before {
  background: radial-gradient(rgba(10, 193, 142, 0.4), var(--transparent) 80%);
}
.coin__wrap--item:hover.xrp:before {
  background: radial-gradient(rgba(76, 126, 176, 0.4), var(--transparent) 80%);
}
.coin__wrap--item:hover.bnb:before {
  background: radial-gradient(rgba(74, 86, 98, 0.4), var(--transparent) 80%);
}
.coin__start {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding: 88px 0 0;
}
.coin__start > p {
  color: #fff;
  font-weight: 700;
  line-height: 2rem;
  font-size: 1.75rem;
}

/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
.about {
  position: relative;
  margin: 88px 0 0;
  padding: 70px 0;
}
.about .wrapper {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}
.about__description {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 50%;
  font-weight: 400;
}
.about__description h2 {
  text-align: left;
}
.about__description strong {
  padding: 20px 0;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(104, 199, 74);
}
.about__description p {
  padding: 0 0 10px;
  color: #fff;
  font-size: 1.15rem;
}
.about__description ul {
  padding: 10px 0 0;
}
.about__description ul li {
  position: relative;
  padding: 0 0 0 20px;
}
.about__description ul li:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 12px;
  left: 0;
  width: 10px;
  height: 1px;
  background-color: rgb(104, 199, 74);
}
.about__diagram {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: calc(50% - 50px);
  align-self: stretch;
}
.about__diagram img, .about__diagram svg {
  max-width: 90%;
  width: auto;
  height: auto;
}
.about:before, .about:after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--transparent), rgb(41, 172, 0), var(--transparent));
}
.about:before {
  top: 0;
}
.about:after {
  bottom: 0;
}

/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
.start-page .start {
  position: relative;
  padding: 88px 0 0;
  margin: 70px 0 0;
}
.start-page .start__decoration {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.start-page .start__decoration #banner {
  overflow: unset;
}
.start-page .start__decoration #float:nth-child(1) {
  animation: 2s ease-in-out -2s 1 normal none running slideIn, 5s ease-in-out 3.9s infinite normal none running float;
}
.start-page .start__decoration #float:nth-child(2) {
  animation: 2s ease-in-out -3.2s 1 normal none running slideIn, 5s ease-in-out 5.1s infinite normal none running float;
}
.start-page .start__decoration #float:nth-child(3) {
  animation: 2s ease-in-out -0.4s 1 normal none running slideIn, 5s ease-in-out 2.3s infinite normal none running float;
}
.start-page .start__decoration #float:nth-child(4) {
  animation: 2s ease-in-out -1s 1 normal none running slideIn, 5s ease-in-out 2.9s infinite normal none running float;
}
.start-page .start__decoration picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.start-page .start__decoration picture > img, .start-page .start__decoration picture > svg {
  position: absolute;
  top: 30%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}
.start-page .start__decoration > img, .start-page .start__decoration > svg {
  position: absolute;
  top: 30%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}
.start-page .start__step--item {
  background-color: rgba(17, 20, 23, 0.85);
}
.start-page .start .app {
  display: flex;
}

/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
body:not(.mobile-faq) .faq ul {
  display: flex !important;
}

.faq {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  position: relative;
  flex-wrap: wrap;
  margin: 80px 0 0;
  width: 100%;
  /*
  =======================================================================================================
  */
}
.faq:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--transparent), rgb(41, 172, 0), var(--transparent));
}
.faq__nav {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding: 0 16%;
  width: 100%;
}
.faq__nav--result {
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 0;
  height: 0;
  line-height: 1;
  border-radius: 40px;
  background-color: var(--transparent);
  overflow: hidden;
}
.faq__nav--result > span {
  position: relative;
  z-index: 3;
}
.faq__nav--result > p {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  top: 25px;
  right: 27px;
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
  transition: 0.3s all;
  z-index: 4;
}
.faq__nav--result > p img, .faq__nav--result > p svg {
  width: 9px;
  height: auto;
}
.faq__nav--result > p path {
  fill: rgb(51, 60, 66);
}
.faq__nav.show .faq__nav--result > p {
  transform: rotate(270deg);
}
.faq ul {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: relative;
  padding: 16px 24px;
  border-radius: 100px;
  border: 1px solid rgb(51, 60, 66);
  background-color: rgb(25, 30, 35);
}
.faq ul li {
  cursor: pointer;
  position: relative;
  padding: 16px;
  margin: 0 0 0 24px;
  height: 50px;
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
  border-radius: 25px;
  color: rgb(175, 188, 198);
  background-color: var(--transparent);
  transition: 0.48s ease all;
}
.faq ul li > span {
  position: relative;
  z-index: 3;
}
.faq ul li.active {
  pointer-events: none;
  color: #fff;
  background-color: rgb(41, 172, 0);
}
.faq ul li:first-child {
  margin: 0;
}
.faq ul li:hover {
  color: #fff;
}
.faq ul li:hover:before {
  --size: 600px;
}
.faq ul li:before {
  background: radial-gradient(rgba(255, 255, 255, 0.05) 0%, var(--transparent) 100%);
  box-shadow: 0 0 150px -15px rgba(255, 255, 255, 0.05);
}
.faq__content {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 32px 16% 0;
  width: 100%;
  z-index: 3;
}
.faq__content .tab {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  display: none;
  width: 100%;
}
.faq__content .tab.active {
  display: flex;
}
.faq__content > img {
  position: absolute;
  bottom: 48px;
  left: -1%;
}
.faq__item {
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  margin: 0 0 24px;
  width: 100%;
  border: 1px solid rgb(51, 60, 66);
  background-color: rgba(25, 30, 35, 0.6);
  border-radius: 12px;
  overflow: hidden;
}
.faq__item:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 50%;
  left: 16px;
  width: 5px;
  height: calc(100% - 26px);
  border-radius: 8px;
  background-color: rgb(104, 199, 74);
  transform: translateY(-50%);
}
.faq__item--header {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding: 16px 16px 16px 28px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 24px;
  z-index: 3;
}
.faq__item--header p {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  top: 18px;
  right: 27px;
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
  transition: 0.3s all;
}
.faq__item--header p img, .faq__item--header p svg {
  width: 9px;
  height: auto;
}
.faq__item--header p path {
  fill: rgb(51, 60, 66);
}
.faq__item--description {
  cursor: default;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  position: relative;
  display: none;
  padding: 0 16px 26px 28px;
  width: 100%;
  font-weight: 400;
  line-height: 24px;
  color: rgb(209, 216, 223);
  z-index: 4;
}
.faq__item--description > * {
  margin: 0 0 1rem;
}
.faq__item--description > * span, .faq__item--description > * a {
  color: rgb(104, 199, 74);
}
.faq__item--description > * a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--transparent);
  transition: 0.48s ease;
}
.faq__item--description > * a:hover {
  text-decoration-color: rgb(104, 199, 74);
}
.faq__item--description > *:last-child {
  margin: 0;
}
.faq__item--description ol, .faq__item--description ul {
  padding: 0 0 0 40px;
}
.faq__item--description ol {
  list-style-type: decimal;
}
.faq__item--description ol li {
  position: relative;
  text-align: -webkit-match-parent;
}
.faq__item--description ol li:marker {
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  text-transform: none;
  text-indent: 0px !important;
  text-align: start !important;
  -moz-text-align-last: start !important;
       text-align-last: start !important;
}
.faq__item.active .faq__item--header p {
  transform: rotate(270deg);
}
.faq__main {
  padding: 0;
  margin: 70px 0 0;
}
.faq__main .wrapper {
  padding: 140px 0 0;
}
.faq__main--description {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  position: absolute;
  top: 130px;
  left: 0;
  width: 100%;
}
.faq__main--description p {
  padding: 30px 0 0;
  width: 100%;
  font-weight: 400;
  font-size: 1.25rem;
  text-align: center;
}
.faq__main--decoration {
  display: flex;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  pointer-events: none;
}
.faq__main--decoration svg {
  margin: 0 auto;
  max-width: 85%;
  width: auto;
  height: auto;
  overflow: unset;
}
.faq__main--decoration svg #float-card-container {
  transform: translateY(40px);
}
.faq__main--decoration #float-card {
  transform: translateY(80px);
}
.faq__main--decoration #float-card:nth-child(1) {
  animation: 2s ease-in-out 0.4s 1 normal none running slideIn, 5s ease-in-out 2.3s infinite normal none running float;
}
.faq__main--decoration #float-card:nth-child(2) {
  animation: 2s ease-in-out 2s 1 normal none running slideIn, 5s ease-in-out 3.9s infinite normal none running float;
}
.faq__main--decoration #float-card:nth-child(3) {
  animation: 2s ease-in-out 1s 1 normal none running slideIn, 5s ease-in-out 2.9s infinite normal none running float;
}
.faq__main--decoration #float-card:nth-child(4) {
  animation: 2s ease-in-out 3.2s 1 normal none running slideIn, 5s ease-in-out 5.1s infinite normal none running float;
}
.faq__main--decoration #float-card:nth-child(5) {
  animation: 2s ease-in-out 2.4s 1 normal none running slideIn, 5s ease-in-out 4.3s infinite normal none running float;
}
.faq__main--decoration #float-section-green {
  transform-origin: center center;
  animation: 15s ease-in-out 0s infinite normal none running float;
}
.faq__main--decoration #float-section-white {
  transform-origin: center center;
  animation: 10s ease-in-out 0s infinite normal none running float;
}
.faq__check {
  position: relative;
  padding: 0;
  margin: 88px 0 0;
}
.faq__check--decoration {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.faq__check--decoration > * {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq__check--decoration > *:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(img/decoration/border-dashed-faq.svg) center center no-repeat;
  animation: 4s ease infinite normal none running pulse;
  background-size: 100% 100%;
  transform: scale(0.95);
}
.faq__check--decoration > *:nth-child(1) {
  width: 623px;
  height: 623px;
  opacity: 0.35;
}
.faq__check--decoration > *:nth-child(1):before {
  animation-delay: 0.1s;
}
.faq__check--decoration > *:nth-child(2) {
  width: 718px;
  height: 718px;
  opacity: 0.24;
}
.faq__check--decoration > *:nth-child(2):before {
  animation-delay: 0.3s;
}
.faq__check--decoration > *:nth-child(3) {
  width: 813px;
  height: 813px;
  opacity: 0.19;
}
.faq__check--decoration > *:nth-child(3):before {
  animation-delay: 0.6s;
}
.faq__check--decoration > *:nth-child(4) {
  width: 908px;
  height: 908px;
  opacity: 0.16;
}
.faq__check--decoration > *:nth-child(4):before {
  animation-delay: 0.9s;
}
.faq__check--decoration > *:nth-child(5) {
  width: 1003px;
  height: 1003px;
  opacity: 0.13;
}
.faq__check--decoration > *:nth-child(5):before {
  animation-delay: 1.2s;
}
.faq__check .over-header {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 0 0 10px;
  width: 100%;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5rem;
  letter-spacing: 0.125rem;
  color: rgb(104, 199, 74);
  text-transform: uppercase;
}
.faq__check .over-header img, .faq__check .over-header svg {
  margin: 0 10px 0 0;
}
.faq__check .over-header path {
  fill: rgb(104, 199, 74);
}
.faq__check h2 {
  padding: 0 0 24px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.5rem;
}
.faq__check .wrapper > p {
  width: 100%;
  font-weight: 400;
  line-height: 2rem;
  font-size: 1.25rem;
  text-align: center;
}
.faq__check .block-btn {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 32px 0 0;
  width: 100%;
}

/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
.news-page > *:not(.news) {
  position: relative;
  z-index: 2;
}
.news-page .coin {
  padding: 88px 0;
  background-color: rgb(12, 15, 18);
}
.news-page + .footer {
  position: relative;
  margin: 0;
}
.news h1 {
  padding: 0 0 60px;
}
.news__content {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.news__item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px 30px;
  margin: 0 0 24px;
  width: calc(33.3333333333% - 12px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  align-self: stretch;
  z-index: 2;
}
.news__item--header {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  width: 100%;
}
.news__item--header > span {
  padding: 0 0 5px;
  width: 100%;
  font-weight: 400;
  font-size: 0.75rem;
  color: rgb(41, 172, 0);
}
.news__item--header > p {
  width: 100%;
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.news__item--description {
  position: relative;
  flex-grow: 1;
  margin: 16px 0;
  width: 100%;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news__item .block-btn {
  display: flex;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
}
.news__item .block-btn .btn {
  pointer-events: all;
  height: 44px;
  font-size: 0.85rem;
  background-color: rgb(14, 16, 14);
}
.news__item .block-btn .btn:hover {
  background-color: rgb(9, 131, 0);
}
.news__item:nth-child(-n+2):nth-last-child(-n+2) {
  margin: 0 auto 24px;
}
.news__item:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-color: rgba(22, 31, 40, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  filter: blur(5px);
}
.news__decoration {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
.news__decoration img, .news__decoration svg {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 80%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}

/*
=======================================================================================================
*/
.pagination {
  position: relative;
  padding: 88px 0;
  z-index: 3 !important;
}
.pagination .wrapper {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.pagination .wrapper > a {
  padding: 0 10px;
  margin: 0 10px;
  width: auto;
}
.pagination .wrapper > a img, .pagination .wrapper > a svg {
  margin: 0 10px 0 0;
  transform: rotate(180deg);
}
.pagination .wrapper > a img path, .pagination .wrapper > a svg path {
  fill: rgb(175, 188, 198);
  transition: 0.48s ease all;
}
.pagination .wrapper > a:hover path {
  fill: #fff;
}
.pagination .wrapper > a:last-of-type img, .pagination .wrapper > a:last-of-type svg {
  order: 2;
  margin: 0 0 0 10px;
  transform: rotate(0deg);
}
.pagination a {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-weight: 400;
  border-radius: 4px;
  border: 1px solid rgb(41, 172, 0);
  background-color: rgba(22, 31, 40, 0.5);
  transition: 0.48s ease all;
}
.pagination a:hover {
  color: #fff;
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.pagination ul li {
  position: relative;
  margin: 0 10px;
  overflow: hidden;
}
.pagination ul li:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-color: rgba(22, 31, 40, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  filter: blur(5px);
}
.pagination ul li.active a {
  pointer-events: none;
  color: rgb(41, 172, 0);
}
.pagination ul li:nth-last-child(-n+3) a {
  pointer-events: none;
  border-color: var(--transparent);
  background-color: var(--transparent);
}
.pagination ul li:nth-last-child(-n+3):before {
  display: none;
}
.pagination ul li:nth-last-child(-n+2) a {
  pointer-events: all;
  border: 1px solid rgb(41, 172, 0);
  background-color: rgba(22, 31, 40, 0.5);
}
.pagination ul li:nth-last-child(-n+2):before {
  display: block;
}
.pagination + * {
  box-shadow: 0 0 50px 65px rgb(15, 15, 15);
}

/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
.article .wrapper {
  position: relative;
}
.article__header {
  margin: 0 0 30px;
  width: 100%;
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
}
.article__header + .news__content .news__item {
  margin-bottom: 0;
}
.article__content {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.article__content h1 {
  position: relative;
  order: 1;
}
.article__content .article__date {
  position: relative;
  order: 2;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  color: rgb(41, 172, 0);
}
.article__content > *:not(h1, .article__date) {
  position: relative;
  order: 2;
  margin: 24px 0 0;
  width: 100%;
  font-weight: 400;
  font-size: 1.15rem;
}
.article__content > *:not(h1, .article__date) span, .article__content > *:not(h1, .article__date) a {
  color: rgb(41, 172, 0);
}
.article__content > *:not(h1, .article__date) a {
  text-decoration: underline;
  text-decoration-color: rgb(41, 172, 0);
  transition: 0.48s ease all;
}
.article__content > *:not(h1, .article__date) a:hover {
  text-decoration-color: var(--transparent);
}
.article__content > strong,
.article__content > h2, .article__content > h3, .article__content > h4 {
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
}
.article__content ul li, .article__content ol li {
  position: relative;
  margin: 0 0 16px;
}
.article__content ul li:last-child, .article__content ol li:last-child {
  margin: 0;
}
.article__content p {
  text-indent: 30px;
}
.article__content ul li {
  padding: 0 0 0 30px;
}
.article__content ul li:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 13px;
  left: 5px;
  width: 10px;
  height: 1px;
  background-color: rgb(41, 172, 0);
}
.article__content ol {
  padding: 0 0 0 30px;
  list-style-type: decimal;
}
.article__content ol li {
  text-align: -webkit-match-parent;
}
.article__content ol li:marker {
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  text-transform: none;
  text-indent: 0 !important;
  text-align: start !important;
  -moz-text-align-last: start !important;
       text-align-last: start !important;
}
.article__content:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-color: rgba(22, 31, 40, 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  filter: blur(5px);
}
.article-page .article + .news {
  position: relative;
  padding: 88px 0;
}
.article-page .article + .news + * {
  padding: 88px 0;
  margin: 88px 0 0;
  box-shadow: 0 0 50px 65px rgb(15, 15, 15);
  background-color: rgb(12, 15, 18);
}
.article-page + .footer {
  margin: 0;
}

/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
.privacy .wrapper {
  position: relative;
}
.privacy__header {
  margin: 0 0 30px;
  width: 100%;
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
}
.privacy__header + .news__content .news__item {
  margin-bottom: 0;
}
.privacy__content {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 60px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.privacy__content h1 {
  position: relative;
  text-align: left;
  order: 1;
}
.privacy__content > *:not(h1) {
  position: relative;
  order: 2;
  margin: 24px 0 0;
  width: 100%;
  font-weight: 400;
  font-size: 1.15rem;
}
.privacy__content > *:not(h1) span, .privacy__content > *:not(h1) a {
  color: rgb(41, 172, 0);
}
.privacy__content > *:not(h1) a {
  text-decoration: underline;
  text-decoration-color: rgb(41, 172, 0);
  transition: 0.48s ease all;
}
.privacy__content > *:not(h1) a:hover {
  text-decoration-color: var(--transparent);
}
.privacy__content > strong,
.privacy__content > h2, .privacy__content > h3, .privacy__content > h4 {
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
}
.privacy__content ul li, .privacy__content ol li {
  position: relative;
  margin: 0 0 16px;
}
.privacy__content ul li:last-child, .privacy__content ol li:last-child {
  margin: 0;
}
.privacy__content p {
  text-indent: 30px;
}
.privacy__content ul li {
  padding: 0 0 0 30px;
}
.privacy__content ul li:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 13px;
  left: 5px;
  width: 10px;
  height: 1px;
  background-color: rgb(41, 172, 0);
}
.privacy__content ol {
  padding: 0 0 0 30px;
  list-style-type: decimal;
}
.privacy__content ol li {
  text-align: -webkit-match-parent;
}
.privacy__content ol li:marker {
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  text-transform: none;
  text-indent: 0 !important;
  text-align: start !important;
  -moz-text-align-last: start !important;
       text-align-last: start !important;
}
.privacy__content:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-color: rgba(22, 31, 40, 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  filter: blur(5px);
}
.privacy-page .privacy + * {
  padding: 88px 0;
  background-color: rgb(12, 15, 18);
}
.privacy-page + .footer {
  margin: 0;
}

/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
.contacts #float-badge {
  animation: 10s ease-in-out 0s infinite normal none running float;
}
.contacts #slide-reverse {
  animation: 10s ease-in-out 1s infinite normal none running slide-reverse;
}
.contacts #slide {
  animation: 10s ease-in-out 1s infinite normal none running slide;
}
.contacts #float-card {
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
  animation: 2s ease-in-out 0.4s 1 normal none running slideIn, 5s ease-in-out 2.3s infinite normal none float;
  transform: translateY(80px);
}
.contacts #float-section-green > * {
  transform-origin: center center;
  animation: 15s ease-in-out 0s infinite normal none running float;
  transform: translateY(80px);
}
.contacts #float-section-green-button {
  transform-origin: center center;
  animation: 10s ease-in-out 0.4s infinite normal none running float;
}
.contacts .wrapper {
  position: relative;
}
.contacts__decoration {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contacts__decoration img, .contacts__decoration svg {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
}
.contacts__decoration img:last-child, .contacts__decoration svg:last-child {
  left: 70%;
  top: 15%;
  max-width: 25%;
}
.contacts__decoration svg {
  overflow: unset;
}
.contacts__decoration > p {
  position: absolute;
  right: 15%;
  bottom: -1%;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  z-index: 2;
}
.contacts__decoration > p span {
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  font-weight: 400;
  font-size: 0.95rem;
}
.contacts__decoration > p span b {
  padding: 0 0 0 90px;
  font-weight: 400;
}
.contacts__decoration > p img, .contacts__decoration > p svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: unset;
  transform: translate(-50%, -50%);
}
.contacts__content {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  z-index: 2;
}
.contacts.login {
  padding: 88px 0;
}
.contacts.login .contacts__decoration > p {
  bottom: -5%;
}
.contacts.login .form h1 {
  font-size: 32px;
}
.contacts.login .form h1 span {
  display: inline-block;
  padding: 10px 0 0;
  width: 100%;
  color: #fff;
}
.contacts.login .form h1 img, .contacts.login .form h1 svg {
  margin: 0 auto;
  width: 32px;
  height: auto;
}
.contacts.login .form h1 path {
  stroke: rgb(41, 172, 0);
}
.contacts.login .form a:last-of-type {
  margin: 30px 0 10px;
}
.contacts.forgot {
  padding: 88px 0 120px;
}
.contacts.forgot .contacts__decoration > p {
  bottom: -30%;
}
.contacts.success {
  padding: 160px 0;
}
.contacts.success .contacts__decoration > p {
  bottom: -70%;
}

.form {
  position: relative;
  padding: 20px 30px;
  max-width: 480px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgb(41, 172, 0);
  background-color: rgba(41, 172, 0, 0.2);
  box-shadow: 0 0 50px 10px rgba(41, 172, 0, 0.3);
}
.form > a {
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  margin: 30px 0 0;
  width: 100%;
}
.form > a p {
  pointer-events: all;
  font-weight: 400;
  color: rgb(41, 172, 0);
  text-decoration: underline;
  transition: 0.48s ease all;
}
.form > a p:hover {
  text-decoration-color: var(--transparent);
}
.form h1 {
  padding: 0 0 10px;
}
.form h1:after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--transparent), rgb(41, 172, 0), var(--transparent));
}
.form > p {
  padding: 15px 0;
  width: 100%;
  font-weight: 400;
  font-size: 1.1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}
.form > * {
  position: relative;
}
.form label:not(.checkbox) {
  position: relative;
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding: 10px 15px;
  margin: 40px 0 0;
  width: 100%;
  font-weight: 400;
  border-radius: 8px;
  border: 1px solid #535d66;
  background-color: rgba(12, 15, 18, 0.4);
  box-shadow: 0 0 50px 10px rgba(12, 15, 18, 0.4);
}
.form label:not(.checkbox) > * {
  pointer-events: all;
}
.form label:not(.checkbox) > p {
  display: flex;
  justify-content: flex-start;
  align-content: flex-end;
  align-items: flex-end;
  position: absolute;
  bottom: calc(100% + 5px);
  left: 0;
  font-weight: 400;
  font-size: 1.05rem;
  color: rgb(41, 172, 0);
  z-index: 2;
}
.form label:not(.checkbox) > p span {
  position: absolute;
  display: none;
  left: calc(100% + 5px);
  color: #dc3545;
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
}
.form label:not(.checkbox) textarea,
.form label:not(.checkbox) input {
  width: 100%;
  font-size: 0.9rem;
}
.form label:not(.checkbox).error span {
  display: inline-block;
}
.form .bg-input {
  position: relative;
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding: 10px 15px;
  margin: 40px 0 0;
  width: 100%;
  font-weight: 400;
  border-radius: 8px;
  border: 1px solid #535d66;
  background-color: rgba(12, 15, 18, 0.4);
  box-shadow: 0 0 50px 10px rgba(12, 15, 18, 0.4);
}
.form .bg-input > * {
  pointer-events: all;
}
.form .bg-input > p {
  position: absolute;
  bottom: calc(100% + 5px);
  left: 0;
  font-weight: 400;
  font-size: 1.05rem;
  color: rgb(41, 172, 0);
  z-index: 2;
}
.form .bg-input .drop-down {
  padding: 0 40px 0 0;
  width: 100%;
}
.form .bg-input .drop-down .result:after {
  cursor: pointer;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.form .bg-input .drop-down__btn {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
}
.form .bg-input .drop-down__btn img, .form .bg-input .drop-down__btn svg {
  transform: rotate(90deg);
  transition: 0.48s ease all;
}
.form .bg-input .drop-down__list {
  position: absolute;
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  display: none;
  flex-direction: column;
  top: calc(100% + 10px);
  left: -1px;
  padding: 10px 15px;
  width: calc(100% + 2px);
  border-radius: 8px;
  border: 1px solid #535d66;
  background-color: rgba(12, 15, 18, 0.9);
  box-shadow: 0 0 50px 10px rgba(12, 15, 18, 0.4);
  z-index: 3;
}
.form .bg-input .drop-down__list li {
  cursor: pointer;
  padding: 10px 10px 10px 22px;
  width: 100%;
  border-radius: 8px;
  transition: 0.48s ease all;
}
.form .bg-input .drop-down__list li:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.form .bg-input .drop-down__list li.active {
  display: none !important;
}
.form .bg-input .drop-down.active img, .form .bg-input .drop-down.active svg {
  transform: rotate(270deg);
}
.form .bg-input .drop-down__content {
  height: 210px;
  overflow: hidden;
}
.form .bg-input .drop-down__content input.drop-down__search {
  padding: 10px 10px 10px 22px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #535d66;
  background-color: rgba(12, 15, 18, 0.9);
  box-shadow: 0 0 50px 10px rgba(12, 15, 18, 0.4);
}
.form:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-color: rgba(22, 31, 40, 0.9);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  filter: blur(5px);
}
.form .block-btn {
  margin: 35px 0 0;
  width: 100%;
}
.form .block-btn .btn {
  cursor: pointer;
  width: 100%;
}
.form .textarea__content {
  width: 100%;
  height: 94px;
}
.form .custom-scroll {
  right: 0 !important;
  background-color: rgb(41, 172, 0);
}
.form .custom-scroll--bg {
  right: 0 !important;
  background-color: #535d66;
}
.form .bg-input__show {
  cursor: pointer;
  position: relative;
}
.form .bg-input__show path {
  fill: var(--white);
  transition: 0.48s ease all;
}
.form .bg-input__show.show-password path {
  fill-opacity: 0.7;
}
.form .bg-input__show.show-password:after {
  color: rgba(255, 255, 255, 0.7);
}
.form .bg-input__show:after {
  pointer-events: none;
  position: absolute;
  content: "";
  content: "/";
  top: 42%;
  left: 55%;
  line-height: 1;
  color: var(--transparent);
  font-size: var(--20-fonts);
  transform: translate(-50%, -50%);
  transition: 0.48s ease all;
}

.checkbox {
  cursor: pointer;
  position: relative;
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin: 20px 0 0;
  z-index: 2;
}
.checkbox > input {
  pointer-events: none;
  width: 0;
  height: 0;
  font-size: 0;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
  overflow: hidden;
}
.checkbox span {
  pointer-events: all;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 0 10px 0 0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid rgb(41, 172, 0);
  opacity: 0.8;
}
.checkbox span:before {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0);
  transform: translate(-50%, -50%);
  transition: 0.48s ease all;
}
.checkbox > p {
  pointer-events: all;
  position: relative;
  font-weight: 400;
}
.checkbox > p a {
  color: rgb(41, 172, 0);
  text-decoration: underline;
  transition: 0.48s ease all;
}
.checkbox > p a:hover {
  text-decoration-color: var(--transparent);
}
.checkbox > input:checked + span:before {
  background: rgb(41, 172, 0);
}
.checkbox.error a {
  color: #dc3545;
}
.checkbox.error span {
  border-color: #dc3545;
}

/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
@media (max-width: 1365px) {
  .wrapper {
    padding: 0 20px;
  }
  .header {
    padding: 0;
  }
  .main__plan--item:nth-child(5) {
    bottom: -19%;
  }

  .br_lang .main__plan--item:nth-child(4) {
    left: 5%;
  }

  .br_lang .main__plan--item:nth-child(5) {
    right: 5%;
  }

  .header__nav {
    padding: 0 0 0 20px;
  }

  .header__nav nav li a {
    padding: 24px 20px;
  }

  .br_lang .header__nav nav li a {
    padding: 24px 10px;
  }

  .br_lang .footer__line ul {
    order: 3;
    padding: 30px 0 0;
    width: 100%;
    justify-content: space-around;
  }

  .br_lang .footer__line {
    flex-wrap: wrap;
  }
}
/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
@media (max-width: 1279px) {
  .main {
    padding: 110px 0;
  }
  .main__description {
    padding: 0;
    width: 55%;
  }
  .market {
    padding-bottom: 48px;
  }
  .market__deposit, .market__withdrawal {
    margin: 0 0 40px;
    width: 100%;
  }
  .about__decoration {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-grow: 0;
    flex-shrink: 1;
    align-self: stretch;
  }
  .about__decoration img, .about__decoration svg {
    max-width: 100%;
    height: auto;
  }
  .about__description {
    flex-shrink: 0;
    width: 55%;
  }
  .affilate__item--coin img:first-child, .affilate__item--coin img:first-child, .affilate__item--coin svg:first-child, .affilate__item--coin svg:first-child {
    top: 14%;
    left: 5%;
  }
  .affilate__item--coin img:last-child, .affilate__item--coin img:last-child, .affilate__item--coin svg:last-child, .affilate__item--coin svg:last-child {
    bottom: 14%;
    right: 12%;
  }
  .join__description {
    position: relative;
    width: 35%;
    z-index: 5;
  }
  .earth__header h2 {
    width: 55%;
  }

  .earth__decoration {
    min-height: 660px;
  }
  .earth__decoration .canvas-wrap {
    margin: -90px 0 0;
    width: 750px;
    height: 750px;
  }
  .earth__decoration .canvas-wrap canvas {
    height: 800px;
  }
  .earth__decoration--item:nth-of-type(3) {
    left: 10%;
  }
  .earth__decoration--item:nth-of-type(4) {
    right: 10%;
  }
  .coin__wrap--item {
    padding: 15px 15px 15px 60px;
  }
  .coin__wrap--item img,
  .coin__wrap--item svg {
    left: 15px;
    width: 32px;
  }
  .footer__line ul a {
    padding: 5px 15px;
  }
  .faq ul {
    width: 100%;
    justify-content: space-between;
  }
  .news {
    padding: 60px 0 0;
  }
  .news__item {
    padding: 15px 20px;
    margin: 0 0 20px;
  }
  .contacts__decoration > p {
    bottom: -10%;
  }
  .contacts__decoration > p img, .contacts__decoration > p svg {
    width: 250%;
  }
  .contacts.login .contacts__decoration > p {
    bottom: -15%;
  }
  .contacts.forgot .contacts__decoration > p {
    bottom: -30%;
  }
  .contacts.success .contacts__decoration > p {
    bottom: -70%;
  }
}

@media (max-width: 1135px) {
  .br_lang .header__nav--enter .btn,
  .br_lang .header__nav--enter .grey {
    padding: 0 10px;
    font-size: .8rem;
  }

  .br_lang .header__nav {
    padding: 0 0 0 5px;
  }
}
/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
@media (max-width: 1023px) {
  body {
    padding: 60px 0 0;
  }
  body:not(.mobile, .mobile-faq) .header__nav {
    display: none !important;
  }
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 2.1rem;
    line-height: 3rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  .header {
    padding: 10px 0;
  }
  .header__nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    padding: 10px;
    width: 100%;
    background: rgb(25, 30, 35);
    border-bottom: 1px solid rgb(74, 87, 96);
  }
  .header__nav li a {
    padding: 0 15px;
    border: unset;
    background-color: var(--transparent);
  }
  .header__nav li a:hover, .header__nav li a.active {
    border: unset;
    background-color: var(--transparent);
  }
  .header__nav li a.active {
    color: rgb(41, 172, 0);
  }
  .header__nav .btn, .header__nav .grey {
    padding: 0 11px;
    height: 42px;
    white-space: nowrap;
  }
  .header__nav--btn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    position: relative;
    /* order: 2; */
    /* margin: 0 0 0 auto; */
    order: 3;
    margin: 0;
    width: 35px;
    height: 35px;
    z-index: 11;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .header__nav--btn > span {
    margin: 3px 0;
    width: 28px;
    height: 2px;
    transform-origin: -10% 40%;
    background-color: var(--white);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .header__nav--btn > span:nth-child(2) {
    width: 20px;
  }
  .header__nav--btn > span:nth-child(3) {
    width: 10px;
  }
  .mobile .header.active .header__nav--btn > span {
    transform-origin: 30% 40%;
  }
  .mobile .header.active .header__nav--btn > span:nth-child(1) {
    transform: rotate(45deg);
  }
  .mobile .header.active .header__nav--btn > span:nth-child(2) {
    display: none;
  }
  .mobile .header.active .header__nav--btn > span:nth-child(3) {
    width: 28px;
    transform: rotate(-45deg);
  }
  .main {
    padding: 30px 0 70px;
  }
  .main__description {
    width: 100%;
  }
  .main__description > p:not(.under-title) {
    justify-content: center;
  }
  .main__description h1 {
    text-align: center;

    max-width: unset;
  }
  .main__description .under-title {
    width: 100%;
    text-align: center;
  }
  .main__description > .block-btn {
    margin: 0 auto;
    width: 300px;
  }
  .main__decoration--star {
    top: 50px;
  }
  .main__decoration--around {
    top: auto;
    width: 100%;
    height: 95%;
  }
  .main .wrapper {
    flex-wrap: wrap;
  }
  .main__plan {
    flex-direction: column;
    flex-wrap: unset;
    padding: 130px 0 115px;
    width: 100%;
    justify-content: center;
  }
  .main__plan--item:nth-child(1) {
    top: 20px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .main__plan--item:nth-child(2) {
    margin-left: -30%;
  }
  .main__plan--item:nth-child(3) {
    margin-left: 0;
    margin-right: -30%;
  }
  .main__plan--item:nth-child(4) {
    bottom: 0;
    left: 10%;
  }

  .br_lang .main {
    padding: 30px 0 100px;
  }

  .br_lang .main__plan--item:nth-child(4) {
    bottom: 35px;
    left: 10%;
  }

  .main__plan--item:nth-child(5) {
    bottom: 0;
    /*right: 10%;*/
  }

  .br_lang .main__plan--item:nth-child(5) {
    bottom: -60px;
    right: 10%;
  }
  .move-cursor:before, .border:before {
    transition: 0.48s ease all;
  }
  .app > p {
    text-align: center;
  }
  .app .block-btn {
    justify-content: center;
  }
  .about {
    margin: 56px 0 0;
  }
  .affilate__item--description {
    width: 60%;
  }
  .affilate__item--decoration {
    width: 40%;
  }
  .join__item {
    padding: 35px 25px;
  }
  .join__description {
    width: 40%;
  }
  .join__description h3 {
    font-size: 1.75rem;
    line-height: 2.5rem;
  }
  .earth__header h2 {
    width: 50%;
    font-size: 2.1rem;
    line-height: 3rem;
  }
  .earth__header p {
    width: 40%;
    line-height: 1.85rem;
  }
  .earth__decoration {
    min-height: 520px;
  }
  .earth__decoration > img, .earth__decoration > svg {
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    max-width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
  }
  .earth__decoration .canvas-wrap {
    display: none;
  }
  .earth__decoration--item:nth-of-type(1) {
    top: 15%;
    left: 5%;
  }
  .earth__decoration--item:nth-of-type(2) {
    top: 3%;
    right: 0;
  }
  .earth__decoration--item:nth-of-type(4) {
    bottom: 45%;
    right: 15%;
  }
  .coin {
    padding: 60px 0 0;
  }
  .coin h2 {
    padding: 0 0 50px;
    font-size: 2.1rem;
  }
  .coin .coin__start {
    padding: 60px 0 0;
  }
  .coin .coin__start > p {
    font-size: 1.25rem;
  }
  .coin__wrap--item {
    width: calc(33.3333333333% - 11px);
  }
  .coin__wrap--item:last-child {
    margin-left: auto;
    margin-right: auto;
  }
  .footer {
    padding: 50px 0 0;
    margin: 60px 0 0;
  }
  .footer__line {
    flex-wrap: wrap;
  }
  .footer__line ul {
    order: 3;
    padding: 30px 0 0;
    width: 100%;
    justify-content: space-around;
  }
  .footer__support a {
    width: 250px;
  }
  .faq__nav {
    padding: 0 5%;
  }
  .faq__content {
    padding: 30px 5% 0;
  }
  .faq__item:before {
    left: 13px;
    width: 3px;
  }
  .faq__check {
    margin: 60px 0 0;
  }
  .faq__check h2 {
    font-size: 2.1rem;
    line-height: 3rem;
  }
  .faq__check .wrapper > p {
    font-size: 1.15rem;
    line-height: 1.75rem;
  }
  .start h2 {
    font-size: 2.1rem;
  }
  .start-page .start {
    padding: 50px 0 0;
    margin: 40px 0 0;
  }
  .start-page .start__decoration > img,
  .start-page .start__decoration > svg {
    top: 20%;
    width: 100%;
  }
  .start-page .start .app {
    padding: 32px 0 80px;
  }
  .start-page .start__step {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .start-page .start__step--item {
    margin: 0 0 24px;
    width: calc(50% - 12px);
    padding: 15px;
  }
  .start-page .start__step--item:last-child:not(:nth-child(-n+2)) {
    margin-left: auto;
    margin-right: auto;
  }
  .start-page .start__step--item:hover:before {
    --size: 400px;
  }
  .start__step {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .start__step--item {
    margin: 0 0 24px;
    width: calc(50% - 12px);
    padding: 15px;
  }
  .start__step--item:last-child:not(:nth-child(-n+2)) {
    margin-left: auto;
    margin-right: auto;
  }
  .start__step--item:hover:before {
    --size: 400px;
  }
  .news__decoration img,
  .news__decoration svg {
    max-width: 94%;
    width: 100%;
  }
  .news__item {
    padding: 15px;
    width: calc(50% - 10px);
  }
  .news__item:last-child {
    margin-left: auto;
    margin-right: auto;
  }
  .article__content > *:not(h1, .article__date) {
    font-size: 1rem;
  }
  .article__header + .news__content {
    justify-content: space-between;
  }
  .article__header + .news__content .news__item {
    margin-bottom: 20px;
  }
  .article__header + .news__content .news__item:nth-child(-n+2):nth-last-child(-n+2) {
    margin: 0 0 20px;
  }
  .article__header + .news__content .news__item:last-child {
    margin: 0 auto 20px;
  }
  .pagination {
    padding: 40px 0 60px;
  }
  .privacy__content > *:not(h1) {
    font-size: 1rem;
  }
  .contacts {
    padding: 88px 0 60px;
  }
  .contacts__decoration img, .contacts__decoration svg {
    max-width: unset;
    width: 120%;
  }
  .contacts__decoration img:last-child, .contacts__decoration img:last-child, .contacts__decoration svg:last-child, .contacts__decoration svg:last-child {
    left: 75%;
    max-width: 40%;
  }
  .contacts__decoration > p {
    bottom: -13%;
  }
  body:after {
    pointer-events: none;
    position: absolute;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 15, 18, 0);
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
    filter: blur(0);
    transition: 0.48s ease all;
    z-index: 9;
  }
  body.open-menu:after {
    background-color: rgba(12, 15, 18, 0.4);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    filter: blur(5px);
  }

  .br_lang .footer__line ul {
    flex-wrap: wrap;
    order: unset;
    padding: 40px 0 0;
  }

  .br_lang .footer__line ul li {
    margin: 0 0 20px;
    width: calc(50% - 5px);
  }

  .br_lang .footer__support {
    margin: 35px 0 30px;
    width: 100%;
  }
}
/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
@media (max-width: 767px) {
  .wrapper {
    max-width: 480px;
  }
  .footer {
    padding: 30px 0 0;
  }
  .footer .logo {
    margin: 0 auto;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
    line-height: 1.5;
  }
  h3 {
    line-height: 1.25;
  }
  .header__nav {
    flex-direction: column;
    padding-top: 40px;
  }
  .header__nav li {
    margin: 0 0 32px;
  }
  .header__nav nav li a {
    position: relative;
    padding: 0;
    font-size: 1.5rem;
  }
  .header__nav li a.active:after {
    pointer-events: none;
    position: absolute;
    content: "";
    bottom: -16px;
    left: 50%;
    width: calc(100% + 20px);
    height: 1px;
    background: linear-gradient(to right, var(--transparent), #29ac00, var(--transparent));
    transform: translateX(-50%);
  }
  .header__nav nav,
  .header__nav ul {
    flex-direction: column;
  }
  .header__nav--enter {
    flex-direction: column;
    gap: unset;
    margin: 0;
    width: 100%;
    justify-content: center;
  }
  .header__nav--enter .btn, .header__nav--enter .grey {
    margin: 0 0 32px;
    max-width: 340px;
    width: 100%;
    height: 48px;
  }
  .main,
  .br_lang .main {
    padding: 30px 0;
  }
  .main__decoration--around {
    top: 7%;
  }
  .main .app {
    padding: 40px 0 0;
  }
  .main__plan {
    padding: 40px 0;
  }
  .main__plan--info {
    padding: 0;
  }
  .main__plan--item {
    padding: 20px;
    max-width: 340px;
    width: 100%;
  }
  .main__plan--item ul li {
    font-size: 1rem;
  }
  .main__plan--item ul li:nth-child(2) {
    padding: 0;
  }
  .main__plan--item ul li:before {
    height: 40px;
  }
  .main__plan--item > p {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 0;
    margin: 0 0 20px;
    font-size: 16px;
    text-align: center;
  }
  .main__plan--item > p img, .main__plan--item > p svg {
    flex-shrink: 0;
    position: relative;
    top: auto;
    left: auto;
    margin: 0 15px 0 0;
  }
  .main__plan--item:nth-child(1),
  .main__plan--item:nth-child(4),
  .main__plan--item:nth-child(5),
  .br_lang .main__plan--item:nth-child(4),
  .br_lang .main__plan--item:nth-child(5) {
    position: relative;
    right: auto;
    left: 0;
    top: 0;
    bottom: auto;
    max-width: unset;
    transform: unset;
  }

  .main__plan--item:nth-child(1) p, .main__plan--item:nth-child(4) p, .main__plan--item:nth-child(5) p {
    margin: 0;
  }
  .main__plan--item:nth-child(2) {
    padding: 30px 60px 30px 15px;
    margin-left: 0;
  }
  .main__plan--item:nth-child(2) > img, .main__plan--item:nth-child(2) > svg {
    right: -40px;
    height: 100px;
  }
  .main__plan--item:nth-child(3) {
    margin-right: 0;
    padding: 30px 60px 30px 15px;
  }
  .main__plan--item:nth-child(3) > img, .main__plan--item:nth-child(3) > svg {
    right: -30px;
    height: 100px;
  }
  .market {
    padding: 60px 0;
  }
  .market .market__withdrawal {
    margin: 0;
  }
  .table {
    padding: 10px 10px 0;
    border-radius: 8px;
  }
  .table__line:first-child {
    font-size: 0.8rem;
  }
  .table__line:first-child .table__item:first-child .table__item--title {
    padding: 0 0 0 0;
  }
  .table__item--info b {
    display: none;
  }
  .table__item--info img, .table__item--info svg {
    margin: 0;
    width: 20px;
  }
  .table__item:first-child {
    width: 22%;
  }
  .table__item:nth-child(2) {
    width: 25%;
  }
  .table__item:nth-child(2) .table__item--info {
    font-size: 0.8rem;
  }
  .table__item:nth-child(2) .table__item--info p {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .table__item:nth-child(3) {
    width: 30%;
  }
  .table__item:nth-child(3) .table__item--info {
    font-size: 0.8rem;
    font-weight: 400;
  }
  .table__item:last-child {
    width: 23%;
  }
  .table__item:last-child .table__item--info {
    font-size: 0.75rem;
  }
  .start .under-title {
    font-size: 18px;
  }
  .start__step--item {
    width: 100%;
  }
  .about .wrapper {
    flex-wrap: wrap;
  }
  .about__description {
    margin: 0 0 50px;
    width: 100%;
  }
  .about__description strong {
    font-size: 20px;
    line-height: 1.2;
  }
  .about__decoration {
    width: 100%;
  }
  .affilate__item {
    flex-wrap: wrap;
    height: auto;
  }
  .affilate__item--decoration {
    width: 100%;
    height: 310px;
  }
  .affilate__item--description {
    width: 100%;
  }
  .affilate__item--level {
    margin: 0 5px;
  }
  .affilate__item--coin img:first-child, .affilate__item--coin svg:first-child {
    top: 23%;
    left: 0;
  }
  .affilate__item--coin img:last-child, .affilate__item--coin svg:last-child {
    bottom: 20%;
    right: 0;
  }
  .affilate__item--stroke img, .affilate__item--stroke svg {
    width: 100%;
  }
  .join picture {
    right: auto;
    left: 100%;
    transform: translateX(-50%);
  }
  .join picture:after {
    background: linear-gradient(to right, rgba(17, 20, 23, 0.7) 50%, var(--transparent));
  }
  .join__description {
    width: 100%;
  }
  .join__description h3 {
    font-size: 1.25rem;
  }
  .join__description p {
    font-size: 1rem;
  }
  .earth__header {
    flex-wrap: wrap;
  }
  .earth__header h2 {
    width: 100%;
    font-size: 28px;
    line-height: 1.5;
  }
  .earth__header p {
    margin: 10px 0 0;
    width: 100%;
    font-size: 1rem;
  }
  .earth__decoration {
    min-height: 360px;
  }
  .earth__decoration .canvas-wrap {
    margin: 30px 0 0;
    width: 360px;
    height: 360px;
  }
  .earth__decoration .canvas-wrap canvas {
    width: 360px !important;
    height: 470px !important;
  }
  .earth__decoration .earth__decoration--item {
    padding: 10px;
  }
  .earth__decoration .earth__decoration--item p {
    font-size: 1rem;
  }
  .earth__decoration .earth__decoration--item:nth-of-type(1) {
    top: 25%;
    left: 0%;
  }
  .earth__decoration .earth__decoration--item:nth-of-type(2) {
    top: 2%;
  }
  .earth__decoration .earth__decoration--item:nth-of-type(3) {
    bottom: 0;
  }
  .earth__decoration .earth__decoration--item:nth-of-type(4) {
    bottom: 25%;
    right: 0;
  }
  .coin h2 {
    padding: 0 0 40px;
    font-size: 28px;
  }
  .coin__wrap--item {
    padding: 10px 5px 10px 45px;
    width: calc(50% - 8px);
  }
  .coin__wrap--item img, .coin__wrap--item svg {
    left: 12px;
    width: 25px;
  }
  .coin .coin__start {
    flex-wrap: wrap;
  }
  .coin .coin__start > p {
    padding: 0 0 10px;
    width: 100%;
    font-size: 1rem;
    text-align: center;
  }
  .coin .coin__start .btn {
    margin: 0 auto;
    max-width: 360px;
    width: 100%;
  }
  .footer__support {
    margin: 35px 0 30px;
    width: 100%;
  }
  .footer__support a {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 360px;
  }
  .footer__line ul {
    flex-wrap: wrap;
    order: unset;
    padding: 40px 0 0;
  }
  .footer__line ul li {
    margin: 0 0 20px;
    width: calc(50% - 5px);
  }
  .footer__line.under {
    gap: unset;
    flex-wrap: wrap;
    padding: 30px 0 20px;
    margin: 0;
  }
  .footer__line.under > a:not(.footer__system) {
    margin: 0 0 20px;
    width: 100%;
    font-size: 13px;
    text-align: center;
  }
  .footer__line.under .footer__system {
    margin: 0 auto;
    text-decoration: underline;
  }
  .footer__line.under img, .footer__line.under svg {
    order: 2;
    display: none;
    margin: 0 0 0 auto;
    width: 130px;
  }
  .faq {
    margin: 60px 0 0;
  }
  .faq__main .wrapper {
    padding: 190px 0 0;
  }
  .faq__main--description p {
    font-size: 1.05rem;
  }
  .faq__item--header {
    padding: 16px 35px 16px 28px;
  }
  .faq__item--header p {
    right: 20px;
  }
  .faq__nav--result {
    padding: 24px 35px 24px 24px;
    width: 100%;
    height: auto;
    color: #fff;
    line-height: 1;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    border: 1px solid rgb(51, 60, 66);
    background-color: rgb(25, 30, 35);
  }
  .faq__nav--result > p {
    top: 23px;
    right: 20px;
  }
  .faq ul {
    flex-direction: column;
    position: absolute;
    display: none;
    left: 5%;
    top: 100%;
    padding: 0 16px;
    width: 90%;
    border-radius: 12px;
    z-index: 5;
  }
  .faq ul li {
    padding: 16px 0;
    margin: 0;
    width: 100%;
    justify-content: flex-start;
    transition: unset;
    overflow: unset;
  }
  .faq ul li:before {
    display: none;
  }
  .faq ul li:after {
    pointer-events: none;
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--transparent) -15%, rgb(51, 60, 66), var(--transparent) 115%);
  }
  .faq ul li.active {
    display: none;
    background-color: var(--transparent);
  }
  .faq__check h2 {
    font-size: 28px;
    line-height: 1.5;
  }
  .faq__check .wrapper > p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .start-page .start__decoration picture > img,
  .start-page .start__decoration picture > svg {
    top: 15%;
  }
  .start-page .start__step--item {
    width: 100%;
  }
  .news__item {
    width: 100%;
  }
  .article-page .article + .news + * {
    margin: 0;
  }
  .form {
    padding: 20px 10px;
  }
  .form .bg-input .drop-down__content input.drop-down__search {
    width: 93%;
  }
  .form > p {
    font-size: 1rem;
  }
  .form .bg-input .drop-down__list li {
    padding: 10px 15px 10px 0;
  }
  .contacts__decoration > p {
    bottom: -11%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .contacts__decoration > p img,
  .contacts__decoration > p svg {
    width: 210%;
  }
  .contacts__decoration > p span {
    font-size: 0.8rem;
  }
  .contacts.success {
    padding: 100px 0;
  }
  .contacts.success .contacts__decoration > p {
    bottom: -40%;
  }
  .pagination .wrapper > a {
    display: none;
  }
}
/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
.shape {
  animation: move 3s ease-in-out infinite alternate;
  --size: 600px;
  position: absolute;
  width: var(--size);
  height: var(--size);
  border: 8px solid #e03616;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  opacity: 0.64;
  transform: translateY(-50%) translateX(-50%);
}

/*
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
=======================================================================================================
*/
@media (max-width: 479px) {
  .br_lang .footer__line ul li {
    width: 100%;
  }

  .main__plan--item:nth-child(1) p,
  .main__plan--item:nth-child(4) p,
  .main__plan--item:nth-child(5) p,
  .br_lang .main__plan--item:nth-child(4) p,
  .br_lang .main__plan--item:nth-child(5) p {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .br_lang .footer__support {
    flex-wrap: wrap;
  }

  .br_lang .footer__support a {
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .main__plan--item:nth-child(1) p,
  .main__plan--item:nth-child(4) p,
  .main__plan--item:nth-child(5) p,
  .br_lang .main__plan--item:nth-child(4) p,
  .br_lang .main__plan--item:nth-child(5) p {
    flex-wrap: wrap;
  }
}