@font-face {
  font-family: 'Inter Regular';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Medium';
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter SemiBold';
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Inter Regular';
  font-size: 18px;
  line-height: 26px;
  color: #CAC8EC;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: auto;
}

body.overflow-hidden {
  overflow: hidden;
}

h1 {
  font-family: 'Inter SemiBold';
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  margin-top: 0;
}

h2 {
  font-family: 'Inter Medium';
  font-size: 48px;
  line-height: 56px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
}

h3 {
  font-family: 'Inter Regular';
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  margin-top: 0;
}

h4 {
  font-family: 'Inter Medium';
  font-size: 20px;
  font-weight: 500;
  margin-top: 0;
}

.main {
  background-image: url(../img/main.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.container {
  padding: 0 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.section {
  margin-bottom: 80px;
}


/* burger */

#menu {
  color: inherit;
  background-color: #1A1738;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 144px 0 0 0;
  transition: transform 0.6s ease-in-out;
  transform: translateY(-200%);
}

#menu.is-active {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.burger-block {
  width: 40px;
  height: 40px;
  border: 1px solid #31F1FE;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.burger {
  cursor: pointer;
  display: block;
}

.burger-line {
  width: 20px;
  height: 2px;
  background-color: #31F1FE;
  display: block;
  margin: 5px auto;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.is-active .burger-line:nth-child(1) {
  -webkit-transform: translateY(5px) rotate(45deg);
  -ms-transform: translateY(5px) rotate(45deg);
  -o-transform: translateY(5px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

.burger.is-active .burger-line:nth-child(3) {
  -webkit-transform: translateY(-5px) rotate(-45deg);
  -ms-transform: translateY(-5px) rotate(-45deg);
  -o-transform: translateY(-5px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

.menu__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.menu__item {
  margin-bottom: 25px;
}

.menu__link {
  text-decoration: none;
  color: #CAC8EC;
}

.menu__link:hover {
  text-decoration: underline;
  color: #31F1FE;
}

.menu__btn_block {
  margin: 0 auto;
  display: flex;
}

.menu__btn {
  margin: 0 auto;
  background-color: transparent;
  color: #31F1FE;
  border: 1px solid #31F1FE;
  font-size: 18px;
  cursor: pointer;
  padding: 12px 48px;
  border-radius: 12px;
  transition: all .2s ease-in-out;
}

.menu__btn:hover {
  color: #1D1B43;
  background-color: #31F1FE;
}



/* header  */

.header {
  width: 100%;
  height: 87px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__inner {
  display: flex;
  align-items: center;
}

.header__list {
  display: flex;
  align-items: center;
}

.header__list {
  margin-right: 80px;
}

.header__link {
  font-family: 'Inter Medium';
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #CAC8EC;
  border-bottom: 1px solid transparent;
  transition: all .2s ease-in-out;
}

.header__link:hover {
  cursor: pointer;
  border-bottom: 1px solid #31F1FE;
  color: #31F1FE;
}

.header__list_item:not(:last-child) {
  margin-right: 36px;
}

.header__btn {
  background-color: transparent;
  color: #31F1FE;
  border: 1px solid #31F1FE;
  font-size: 18px;
  cursor: pointer;
  padding: 12px 48px;
  border-radius: 12px;
  transition: all .2s ease-in-out;
}

.header__btn:hover {
  color: #1D1B43;
  background-color: #31F1FE;
}


/* start */

.start {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-top: 80px;
  height: 100vh;
}

.start__line {
  transform: translateX(-140px);
  margin-bottom: 23px;
}

.start__inner {
  width: 50%;
  height: 830px;
  position: relative;
}

.start__text {
  max-width: 500px;
}

.start__btn_block {
  margin-top: 80px;
}

.start__btn {
  background-color: #31F1FE;
  color: #1D1B43;
  border: 1px solid #31F1FE;
  font-size: 17px;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all .2s ease-in-out;
}

.start__btn:hover {
  background-color: #1D1B43;
  color: #31F1FE;
}

.start__coin,
.start__bg,
.start__bot {
  position: absolute;
  top: 0;
}

.start__coin {
  z-index: 2;
}

.start__bg,
.start__bot {
  width: 110%;
}

.start__bot {
  top: 5%;
  z-index: 1;
}

.start__bg {
  z-index: 0;
}


/* about  */

.about {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about__inner {
  width: 50%;
}

.about__inner h2 {
  margin-bottom: 28px;
}

.about__text_item:nth-child(1) {
  margin-bottom: 28px;
}

.about__line {
  margin-bottom: 28px;
}


.about__statistics {
  width: 475px;
  float: right;
  margin-bottom: 40px;
}

.about__statistics_number {
  font-family: 'Inter Medium';
  font-size: 90px;
  line-height: 100px;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
}

.number_red-bg {
  background: linear-gradient(90deg, #A330FF 0%, #BC3DCB 39%, #E3507A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.number_blue-bg {
  background: linear-gradient(90deg, #31F1FE 0%, #309AFF 29%, #5364AE 65%, #70366B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.number_green-bg {
  background: linear-gradient(90deg, #63C178 0%, #36BBFF 83%, #C1F793 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about__statistics_text {
  font-family: 'Inter SemiBold';
  font-size: 18px;
  line-height: 26px;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* profit  */

.profit h3,
.profit h4,
.traders h3,
.tariff h3,
.faq h3 {
  text-align: center;
}

.profit__titul,
.traider__titul,
.tariff__titul,
.faq__titul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  gap: 29px;
}

.profit h4 {
  margin: 0;
}

.profit__content {
  margin: 0 auto;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profit__content_block {
  width: 28%;
  padding: 38px 10px;
  border: 1px solid rgba(49, 241, 254, .2);
  border-radius: 10px;
  border-bottom: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  box-shadow:
    5px 0 10px -5px rgba(0, 0, 0, 0.4),
    -5px 0 10px -5px rgba(0, 0, 0, 0.4),
    0 40px 40px -5px rgba(0, 0, 0, 0.4);
}

.profit__img-block {
  margin-bottom: 24px;
}


/* traders */

.traders__content {
  margin: 0 auto;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.traders__content_block {
  width: 24%;
  padding: 20px;
  border: 1px solid rgba(49, 241, 254, .2);
  border-radius: 10px;
  border-bottom: none;
  background: transparent;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  box-shadow:
    5px 0 10px -5px rgba(0, 0, 0, 0.4),
    -5px 0 10px -5px rgba(0, 0, 0, 0.4),
    0 40px 40px -5px rgba(0, 0, 0, 0.4);
}

.traders__avatar {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  margin-right: 10px;
  background-color: transparent;
}

.traders__avatar_img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.traders__btn {
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: transparent;
  color: #31F1FE;
  border: 1px solid #31F1FE;
  font-size: 17px;
  cursor: pointer;
  border-radius: 12px;
  transition: all .2s ease-in-out;
}

.traders__btn:hover {
  color: #1D1B43;
  background-color: #31F1FE;
}

.traders__inner {
  width: 100%;
}

.traders__inner:nth-child(1) {
  display: flex;
}

.traders__inner:nth-child(2) {
  margin: 20px 0;
}

.traders__info_titul {
  font-family: 'Inter SemiBold';
  font-size: 20px;
  line-height: 26px;
}

.traders__info_profit {
  font-family: 'Inter Medium';
  font-size: 16px;
  line-height: 20px;
  display: flex;
}

.traders__info_profit-number {
  font-family: 'Inter Medium';
  font-size: 20px;
  font-weight: 500;
  color: #50E3C2;
}

.traders__statistic {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.traders__statistic_text {
  font-family: 'Inter Medium';
  font-size: 14px;
  line-height: 20px;
  color: #6968A6;
}

.traders__statistic_number,
.traders__statistic_number-green,
.traders__statistic_number-red {
  font-family: 'Inter Medium';
  font-size: 15px;
}

.traders__statistic_number-green {
  color: #50E3C2;
}

.traders__statistic_number-red {
  color: #E3507A;
}


/* tariff */

.tariff {
  position: relative;
}

.tariff__coin-left {
  position: absolute;
  left: -5%;
}

.tariff__coin-right {
  position: absolute;
  right: 10%;
}

.tariff__content {
  margin: 0 auto;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.tariff__block {
  width: 25%;
  padding: 32px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  box-shadow:
    5px 0 10px -5px rgba(0, 0, 0, 0.4),
    -5px 0 10px -5px rgba(0, 0, 0, 0.4),
    0 40px 40px -5px rgba(0, 0, 0, 0.4);
}

.tariff__btn-block {
  width: 100%;
}

.tariff__titul {
  font-family: 'Inter SemiBold';
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 20px;
}

.tariff__inner {
  margin-bottom: 20px;
}

.tariff__price {
  font-family: 'Inter SemiBold';
  font-size: 48px;
  line-height: 56px;
}

.tariff__block-blue,
.tariff__block-green,
.tariff__block-pink {
  position: relative;
  background: transparent;
  isolation: isolate;
}

.tariff__block-blue::after,
.tariff__block-green::after,
.tariff__block-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(190deg,
      rgba(41, 39, 85, 0.35) 0%,
      rgba(41, 39, 84, 0.78) 50%,
      rgba(27, 24, 66, 0.35) 100%);
}

.tariff__block-blue::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  border-radius: inherit;
  background: linear-gradient(190deg,
      rgba(49, 241, 254, .1) 0%,
      rgba(48, 154, 255, .1) 30%,
      rgba(83, 100, 174, .1) 60%,
      #70366B 100%);
}

.tariff__block-green::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  border-radius: inherit;
  background: linear-gradient(190deg, rgba(99, 193, 120, .3) 0%, rgba(54, 187, 255, 0.466) 80%, rgba(193, 247, 147, .5) 100%);
}

.tariff__block-pink::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  border-radius: inherit;
  background: linear-gradient(190deg, rgba(163, 48, 255, 0.0001) 0%, rgba(188, 61, 203, .3) 39%, rgba(227, 80, 122, .3) 100%);
}

.tariff__price-blue {
  background: linear-gradient(190deg, rgba(49, 241, 254, 1) 0%, rgba(48, 154, 255, 1) 30%, rgba(83, 100, 174, 1) 60%, rgba(112, 54, 107, 0.0001) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tariff__price-green {
  background: linear-gradient(190deg, #63C178 0%, #36BBFF 80%, #C1F793 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tariff__price-pink {
  background: linear-gradient(190deg, #A330FF 0%, #BC3DCB 39%, #E3507A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tariff__commission {
  font-family: 'Inter Medium';
  font-size: 14px;
}

.tariff__btn {
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: transparent;
  font-size: 17px;
  cursor: pointer;
  border-radius: 12px;
  transition: all .2s ease-in-out;
}

.tariff__btn-blue {
  color: #309AFF;
  border: 1px solid #309AFF;
}

.tariff__btn-blue:hover {
  color: #1D1B43;
  background-color: #309AFF;
}

.tariff__btn-green {
  color: #31F1FE;
  border: 1px solid #31F1FE;
}

.tariff__btn-green:hover {
  color: #1D1B43;
  background-color: #31F1FE;
}

.tariff__btn-pink {
  color: #E3507A;
  border: 1px solid #E3507A;
}

.tariff__btn-pink:hover {
  color: #1D1B43;
  background-color: #E3507A;
}


.tariff__coin-left,
.tariff__coin-right,
.start__coin {
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.tariff__coin-left {
  animation-name: floatLeft;
}

.tariff__coin-right,
.start__coin {
  animation-name: floatRight;
  animation-delay: 2s;
}

@keyframes floatLeft {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  15% {
    transform: translate(-10px, -12px) rotate(-8deg);
  }

  40% {
    transform: translate(-5px, -8px) rotate(-2deg);
  }

  60% {
    transform: translate(0, -10px) rotate(2deg);
  }

  75% {
    transform: translate(5px, -16px) rotate(6deg);
  }
}

@keyframes floatRight {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(5px, -15px) rotate(6deg);
  }

  50% {
    transform: translate(0, -15px) rotate(0deg);
  }

  75% {
    transform: translate(-2px, -20px) rotate(-4deg);
  }
}

.tariff__coin-left img,
.tariff__coin-right img {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  will-change: transform;
}


/* social  */

.social {
  padding: 80px 40px;
  overflow: hidden;
}

.social__content {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  background-color: #1A1738;
  border-radius: 48px;
  width: 100%;
  padding: 70px;
}

.social__line {
  transform: translateX(-35px) translateY(-35px);
}

.social__content h2 {
  margin-bottom: 0;
}

.social__logo {
  width: 200px;
  margin: 30px 0;
}

.social__logo_img {
  width: 100%;
}

.social__robot {
  position: absolute;
  top: -80px;
  right: -80px;
}

.social__robot_img {
  width: 100%;
}

.social__robot_mob {
  display: none;
}

/* faq */

.faq__content {
  padding: 60px 0;
  width: 80%;
  margin: 0 auto;
}

.faq__item {
  margin-bottom: 24px;
}

.faq__item_titul {
  transition: 0s;
  cursor: pointer;
  background-color: #1A1738;
  padding: 23px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq__item_titul.active {
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.faq__item_titul.active .faq__close .faq__close-img {
  transform: rotate(60deg);
}

.faq__close-img {
  transition: transform .2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.faq__item_titul.active .faq__close-img {
  animation: rotateWithOvershoot 0.9s forwards;
}

@keyframes rotateWithOvershoot {
  0% {
    transform: rotate(0deg);
  }

  60% {
    transform: rotate(70deg);
  }

  80% {
    transform: rotate(25deg);
  }

  100% {
    transform: rotate(45deg);
  }
}

.faq__item_titul:not(.active) .faq__close-img {
  animation: hitRotateBack 0.9s forwards;
}

@keyframes hitRotateBack {
  0% {
    transform: rotate(45deg);
  }

  50% {
    transform: rotate(-30deg);
  }

  70% {
    transform: rotate(20deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.faq__item_titul h3 {
  margin-bottom: 0;
}

.faq__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #CAC8EC;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__item_content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.1s ease;
  background-color: #1A1738;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
}

.faq__item_text {
  padding: 23px;
}


/* footer */

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 80px;
}

.footer__link {
  font-family: 'Inter Regular';
  color: #31F1FE;
  font-size: 16px;
  text-decoration: underline;
}


@media (max-width: 1440px) {

  .start__bg,
  .start__bot {
    width: 100%;
  }

  .start__inner {
    height: 600px;
  }

  .traders__info_profit {
    display: block;
  }

  .social__robot {
    top: 0;
    max-width: 750px;
  }
}

@media (max-width: 1200px) {
  .social__robot {
    max-width: 600px;
  }

  .about__statistics {
    width: 400px;
  }

  .tariff__content {
    gap: 30px;
  }

  .tariff__block {
    width: 27%;
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 36px;
    line-height: 42px;
  }

  h2 {
    font-size: 36px;
    line-height: 42px;
  }

  h3 {
    font-size: 20px;
    line-height: 30px;
  }

  h4 {
    font-size: 18px;
  }
}

@media (max-width: 996px) {
  .start {
    flex-direction: column-reverse;
  }

  .start__inner {
    width: 70%;
    height: 500px;
  }

  .start__coin {
    width: 140px;
  }

  .about {
    flex-direction: column;
  }

  .about__inner {
    width: 100%;
    margin-bottom: 30px;
  }

  .about__statistics {
    width: 100%;
  }

  .profit__content_block {
    width: 29%;
  }

  .tariff__content {
    gap: 10px;
  }

  .tariff__block {
    width: 33%;
  }

  .traders__content {
    flex-wrap: wrap;
  }

  .traders__content_block {
    width: 49%;
    margin-bottom: 20px;
  }

  .traders__info_profit {
    display: flex;
  }

  .social {
    padding: 0 40px;
  }

  .social__line,
  .social__robot {
    display: none;
  }

  .social__robot_mob {
    display: block;
  }

  .social__content {
    padding: 20px;
    border-radius: 16px;
  }

  .social__logo {
    margin: 0;
  }

  .header__list_item:not(:last-child) {
    margin-right: 20px;
  }

  .header__list {
    margin-right: 20px;
  }
}

@media (max-width: 820px) {

  .container {
    padding: 0 12px;
  }

  .header__list,
  .header__btn,
  .start__line,
  .about__line,
  .profit__line,
  .traider__line,
  .tariff__line,
  .faq__line {
    display: none;
  }

  .burger-block {
    display: flex;
  }

  .faq__content {
    width: 100%;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: 32px;
    line-height: 38px;
  }

  h2 {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }

  h3 {
    font-size: 18px;
    line-height: 26px;
    text-align: center;
  }

  .start__inner {
    width: 100%;
    height: 450px;
  }

  .start__inner:nth-child(1) {
    height: 310px;
  }

  .start__coin {
    width: 100px;
  }

  .start__btn_block {
    margin-top: 30px;
  }

  .start__btn {
    width: 100%;
  }

  .about__statistics_number {
    font-size: 68px;
  }

  .about__inner {
    margin-bottom: 0;
  }

  .traders__content_block {
    width: 100%;
  }

  .profit__content,
  .tariff__content {
    flex-wrap: wrap;
  }

  .profit__content_block,
  .profit__content_block-arrow {
    width: 100%;
    display: flex;
  }

  .profit__arrow-pink {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .tariff__block {
    width: 100%;
  }



  .traders__content {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 60px 20px;
    gap: 15px;
  }

  .traders__content_block {
    width: 85%;
    min-width: 85%;
  }

  .traders__content::-webkit-scrollbar {
    display: none;
  }

  .traders__content {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}