html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul a {
  list-style: none;
  text-decoration: none;
}

li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

@font-face {
  font-family: "Nekst-Black";
  src: url(assets/fonts/Nekst-Black.woff) format("woff");
}
@font-face {
  font-family: "Nekst-Bold";
  src: url(assets/fonts/Nekst-Bold.woff) format("woff");
}
@font-face {
  font-family: "Nekst-Light";
  src: url(assets/fonts/Nekst-Light.woff) format("woff");
}
@font-face {
  font-family: "Nekst-Medium";
  src: url(assets/fonts/Nekst-Medium.woff) format("woff");
}
@font-face {
  font-family: "Nekst-Regular";
  src: url(assets/fonts/Nekst-Regular.woff) format("woff");
}
@font-face {
  font-family: "Nekst-SemiBold";
  src: url(assets/fonts/Nekst-SemiBold.woff) format("woff");
}
@font-face {
  font-family: "Nekst-Thin";
  src: url(assets/fonts/Nekst-Thin.woff) format("woff");
}
.wrapper {
  margin: 0 auto;
}

.header {
  font-family: "Nekst-Thin";
  padding: 40px;
  color: #fff;
  line-height: 24.75px;
  letter-spacing: -0.03em;
}
.header__body {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 170px;
}
@media (max-width: 1000px) {
  .header__body {
    gap: 10px;
    justify-content: space-between;
  }
}

.header-logo__img {
  width: 100%;
  max-width: 264px;
}
@media (max-width: 1000px) {
  .header-logo__img {
    max-width: 164px;
  }
}

.language-group {
  position: relative;
  display: flex;
  gap: 8px;
  font-family: "Nekst-Thin";
}
@media (max-width: 560px) {
  .language-group {
    display: none;
  }
}
.language-group__arrow {
  cursor: pointer;
}

.show-list {
  position: absolute;
  top: 50px;
  background-color: rgba(95, 41, 183, 0.9);
  width: 99px;
  height: 148px;
  border-radius: 20px;
  display: none;
}
.show-list__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 49px 13px 19px;
}
.show-list__item {
  font-family: "Nekst-Light";
  cursor: pointer;
  transition: all 1s;
  scale: 0.8;
}
.show-list__item:hover {
  scale: 1;
}

.show-list-active {
  display: block;
}

.nav-mobile {
  display: none;
}
@media (max-width: 1000px) {
  .nav-mobile {
    display: flex;
    gap: 7px;
    flex-direction: column;
  }
}
.nav-mobile__elem {
  width: 20px;
  height: 2px;
  background-color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 55px;
}
.nav__list {
  display: flex;
  gap: 57px;
}
@media (max-width: 1000px) {
  .nav__list {
    position: absolute;
    top: 9%;
    right: 25%;
    background-color: rgba(95, 41, 183, 0.9);
    border-radius: 20px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    transition: all 1s;
    transform: translateY(-500px);
  }
}
.nav__list-item {
  font-size: 30px;
}
@media (max-width: 1000px) {
  .nav__list-item {
    font-size: calc(1rem + 1.25vw);
  }
}
.nav__list-link {
  color: #fff;
  transition: all 1s;
  cursor: pointer;
}
.nav__list-link:hover {
  color: rgb(144, 75, 255);
}
.nav__button {
  background-color: rgb(95, 41, 183);
  font-family: "Nekst-Thin";
  font-size: calc(1rem + 0.25vw);
  padding: 17px 26px 18px 37px;
  border: none;
  transition: all 1s;
}
@media (max-width: 1000px) {
  .nav__button {
    padding: 7px 14px;
  }
}
@media (max-width: 1200px) {
  .nav__button-image {
    display: none;
  }
}
.nav__button:hover {
  background-color: rgb(132, 65, 241);
}
.nav__button:active {
  scale: 0.8;
}
.nav__button-text {
  margin-right: 8px;
}

.active {
  color: rgb(144, 75, 255);
}

.list-active {
  transform: translateY(0);
}

.button {
  cursor: pointer;
  border-radius: 42.66px;
  color: #fff;
}

.wrap {
  background-image: url(../images/backLines.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left 250px;
  height: 100vh;
}

.formContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 170px;
}

.signIn {
  color: #fff;
  font-family: "Nekst-Medium";
}
.signIn__title {
  font-size: 50px;
  margin-bottom: 30px;
}
.signIn__info {
  font-size: 27px;
  margin-bottom: 40px;
}
.signIn__link {
  color: #fff;
  margin-left: 10px;
  font-size: 19px;
}

.formSign {
  display: flex;
  flex-direction: column;
}
.formSign__body {
  display: flex;
  flex-direction: column;
}
.formSign__body-email {
  font-size: 20px;
  margin-bottom: 10px;
}
.formSign__body-input {
  width: 380px;
  height: 35px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #fff;
  background: transparent;
}
.formSign__body-btn {
  font-family: "Nekst-Light";
  font-size: 15px;
  border-radius: 5px;
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  padding: 7px 30px;
  align-self: end;
  cursor: pointer;
  margin-bottom: 40px;
}

.btnGroup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.btnGroup__title {
  font-family: "Nekst-Medium";
  font-size: 20px;
  margin-bottom: 10px;
}
.btnGroup__img {
  width: 20px;
  margin-right: 10px;
}
.btnGroup__google-text {
  font-family: "Nekst-Light";
}
.btnGroup__facebook-text {
  font-family: "Nekst-Light";
}
.btnGroup__apple-text {
  font-family: "Nekst-Light";
}

.group {
  display: flex;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid #fff;
  width: 330px;
  background-color: transparent;
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
  padding: 16px 22px;
  cursor: pointer;
}

.container {
  margin: 0 auto;
  max-width: 1650px;
}

.top {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  margin-top: 90px;
}
@media (max-width: 1000px) {
  .top__titleGroup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.top__titleGroup-title {
  font-family: "Nekst-Medium";
  font-size: 102.2px;
  line-height: 97.09px;
  text-align: left;
  max-width: 765px;
  margin-bottom: 17px;
}
@media (max-width: 1000px) {
  .top__titleGroup-title {
    font-size: calc(1rem + 10.25vw);
    text-align: center;
    margin-top: -90px;
  }
}
.top__titleGroup-btn {
  font-size: 28px;
  line-height: 26.04px;
  letter-spacing: -0.03em;
  padding: 20px 56px;
  margin-bottom: 117px;
}
.top__titleGroup-subtitle {
  font-family: "Nekst-SemiBold";
  font-size: 30px;
  line-height: 33.9px;
  text-align: left;
  color: #ffffff;
  max-width: 397px;
  margin-bottom: 27px;
}
@media (max-width: 1000px) {
  .top__titleGroup-subtitle {
    text-align: center;
  }
}
.top__btnGroup {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding-bottom: 63px;
}
.top__btnGroup-cryp {
  background-color: rgb(14, 9, 21);
  border: 1px solid transparent;
}
.top__btnGroup-cryp:hover {
  border: 1px solid transparent;
  background: linear-gradient(#000, #000) padding-box, linear-gradient(180deg, #5a2fed 0%, #8f00ff 100%) border-box;
  border-radius: 30px;
}

.gradientTitle {
  background-image: linear-gradient(251.46deg, #ffffff 13.67%, #5f29b7 124.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  font-family: "Nekst-SemiBold", serif;
  background-color: rgb(95, 41, 183);
  border: none;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  cursor: pointer;
}

.crypto-btn {
  padding: 42px 60px;
  border-radius: 30px;
  width: 237px;
  cursor: pointer;
  transition: all 0.5s;
}

.video {
  display: flex;
  justify-content: center;
  padding-top: 73px;
}
.video__img {
  width: 100%;
  flex-basis: 50%;
}

.benefits__body {
  display: flex;
  margin-left: 80px;
}
@media (max-width: 1000px) {
  .benefits__body {
    flex-direction: column;
    margin: 0;
    justify-content: center;
    align-items: center;
  }
}
.benefits__body-img {
  width: 100%;
  flex-basis: 50%;
}

.about-title {
  font-family: "Nekst-Light";
  font-size: 130px;
  line-height: 120.9px;
  margin-bottom: 100px;
}
@media (max-width: 1000px) {
  .about-title {
    font-size: calc(1rem + 3.25vw);
    text-align: center;
    margin-bottom: 50px;
  }
}

.about-info {
  display: flex;
  gap: 50px;
  font-family: "Nekst-Regular";
  color: #fff;
}
@media (max-width: 1000px) {
  .about-info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }
}
.about-info__left {
  font-size: 40px;
  line-height: 37.2px;
}
.about-info__right {
  font-size: 18px;
  font-weight: 300;
  line-height: 18.54px;
}
@media (max-width: 1000px) {
  .about-info__right {
    text-align: center;
  }
}

.numbers {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 90px;
}
.numbers__grid {
  display: grid;
  grid-template-columns: 50% repeat(2, 376px);
  grid-template-rows: 1fr, 82px, repeat(2fr);
  margin-left: 81px;
  gap: 33px;
  color: #fff;
}
@media (max-width: 1000px) {
  .numbers__grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
  }
}
.numbers__grid-one {
  font-family: "Nekst-Light";
  font-size: 250px;
  line-height: 232.5px;
  text-align: left;
  grid-column: 1/3;
  grid-row: 1;
}
@media (max-width: 1000px) {
  .numbers__grid-one {
    text-align: center;
    font-size: calc(1rem + 15.25vw);
  }
}
.numbers__grid-two {
  grid-column: 1;
  grid-row: 2;
  font-family: "Nekst-Regular";
  font-size: 40px;
  line-height: 41.2px;
  margin-left: 27px;
}
.numbers__grid-three {
  grid-column: 1;
  grid-row: 4;
  margin-left: 27px;
  font-family: "Nekst-Regular";
  font-size: 15px;
  line-height: 15.45px;
}
.numbers__grid-four {
  grid-column: 2;
  grid-row: 3;
}
.numbers__grid-five {
  grid-column: 2;
  grid-row: 4;
}
.numbers__grid-six {
  grid-column: 3/4;
  grid-row: 4;
}

.area {
  padding: 42px 42px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
@media (max-width: 1000px) {
  .area {
    flex-direction: column;
  }
}
.area__title {
  font-family: "Nekst-Light";
  font-size: 60px;
  line-height: 55.8px;
}
.area__subtitle {
  font-family: "Nekst-Regular";
  font-size: 15px;
  line-height: 15.45px;
}

.cardNum {
  display: flex;
  flex-direction: column;
  gap: 123px;
}

.num {
  font-family: "Nekst-Light";
  font-size: 80px;
  line-height: 74.4px;
  margin: 42px 0 0 30px;
}

.info {
  font-family: "Nekst-Regular";
  font-size: 20px;
  line-height: 20.6px;
  margin: 0 0 32px 30px;
}

.border {
  border: 1px solid transparent;
  background: linear-gradient(#000, #000) padding-box, linear-gradient(96.63deg, #ffffff 5.78%, #5f29b7 72.85%) border-box;
  border-radius: 30px;
}

.multichart {
  display: flex;
  flex-direction: column;
  gap: 322px;
  justify-content: center;
  margin-left: 60px;
  padding-top: 222px;
}
@media (max-width: 1000px) {
  .multichart {
    margin: 0;
    padding: 0 15px;
    gap: 60px;
  }
}
.multichart__top {
  display: flex;
}
@media (max-width: 1000px) {
  .multichart__top {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.multichart__bottom {
  display: flex;
}
@media (max-width: 1000px) {
  .multichart__bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.active-text {
  color: rgb(255, 255, 255);
}

@media (max-width: 1000px) {
  .top-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.top-body__title {
  font-family: "Nekst-Light";
  font-size: 130px;
  line-height: 120.9px;
}
@media (max-width: 1000px) {
  .top-body__title {
    font-size: calc(1rem + 8.25vw);
  }
}
.top-body__subtitle {
  font-family: "Nekst-Medium";
  font-size: 40px;
  line-height: 43.2px;
  color: #7b708d;
  max-width: 571px;
  padding-top: 109px;
}
@media (max-width: 1000px) {
  .top-body__subtitle {
    font-size: calc(1rem + 1.25vw);
    padding-top: 20px;
  }
}

@media (max-width: 1000px) {
  .bottom-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.bottom-body__title {
  font-family: "Nekst-Light";
  font-size: 130px;
  line-height: 120.9px;
}
@media (max-width: 1000px) {
  .bottom-body__title {
    font-size: calc(1rem + 8.25vw);
  }
}
.bottom-body__subtitle {
  font-family: "Nekst-Medium";
  font-size: 40px;
  line-height: 43.2px;
  color: #fff;
  max-width: 571px;
  padding-top: 109px;
}
@media (max-width: 1000px) {
  .bottom-body__subtitle {
    font-size: calc(1rem + 1.25vw);
    padding-top: 20px;
  }
}

.sliders {
  padding-top: 266px;
  margin-bottom: 100px;
}
.sliders__title {
  font-family: "Nekst-Light";
  font-size: 90px;
  line-height: 92.7px;
  margin-left: 40px;
  max-width: 950px;
  margin-bottom: 115px;
}
@media (max-width: 1000px) {
  .sliders__title {
    font-size: calc(1rem + 9.25vw);
    margin-bottom: 35px;
  }
}

.image-slider__wrapper {
  display: flex;
  gap: 30px;
  margin-left: 208px;
  align-items: stretch;
}
@media (max-width: 1000px) {
  .image-slider__wrapper {
    margin-left: 18px;
  }
}
.image-slider__container {
  display: flex;
  flex-direction: column;
  padding: 39px 39px 44px 30px;
  color: #fff;
  border: 1px solid #402e5c;
  border-radius: 40px;
  gap: 40px;
  max-width: 300px;
  height: auto;
}
.image-slider__title {
  font-family: "Nekst-Light";
  font-weight: 400;
  font-size: 34px;
  line-height: 31.62px;
}
@media (max-width: 1000px) {
  .image-slider__title {
    font-size: calc(1rem + 2.25vw);
  }
}
.image-slider__image {
  max-width: 114px;
}
.image-slider__text {
  font-family: "Nekst-Medium";
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  color: rgb(233, 227, 244);
}

.swiper {
  display: flex;
  flex-direction: column;
}

.nav-group {
  display: flex;
  justify-content: flex-end;
  margin-right: 30px;
  gap: 15px;
  margin-bottom: 74px;
  cursor: pointer;
}

.prev {
  border-radius: 50%;
  border: 1px solid #fff;
  padding: 33px;
  transition: all 0.5s;
}

.next {
  border-radius: 70px;
  border: 1px solid #fff;
  padding: 33px 71px;
  transition: all 0.5s;
}

.next:hover {
  border: 1px solid transparent;
  background: linear-gradient(#000, #000) padding-box, linear-gradient(180deg, #5a2fed 0%, #8f00ff 100%) border-box;
  border-radius: 70px;
}

.prev:hover {
  border: 1px solid transparent;
  background: linear-gradient(#000, #000) padding-box, linear-gradient(180deg, #c2bbde 0%, #2c028d 100%) border-box;
  border-radius: 50%;
}

.scrollbar {
  margin-top: 30px;
  margin-left: 208px;
  background-color: rgb(64, 46, 92);
  max-width: 621px;
  height: 5px;
}

@media (max-width: 1000px) {
  .scrollbar {
    margin-left: 18px;
    max-width: 380px;
  }
}
.trade {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 116px;
  font-family: "Nekst-Regular";
  color: rgb(255, 255, 255);
  height: 80vh;
}
@media (max-width: 1000px) {
  .trade {
    display: none;
  }
}
.trade__title {
  font-size: 130px;
  line-height: 120.9px;
  margin: 0 0 168px 30px;
}
.trade__text {
  font-size: 40px;
  line-height: 48px;
  margin: 0 0 118px 30px;
  max-width: 414px;
}

.wideBtn {
  margin: 0 auto;
  padding: 30px 70px;
  font-family: "Nekst-SemiBold";
  font-size: 40px;
  line-height: 41.85px;
}

.features {
  background: linear-gradient(125.96deg, #7061aa -34.49%, #340e73 85.02%);
  border-radius: 41px;
}

.features-container {
  display: flex;
  justify-content: center;
}
@media (max-width: 1000px) {
  .features-container {
    flex-direction: column;
    align-items: center;
  }
}
.features-container__list {
  padding-top: 90px;
  margin-left: 20px;
  flex-basis: 600px;
  transition: all 1s;
}
@media (max-width: 1000px) {
  .features-container__list {
    display: flex;
    flex-direction: column;
    flex-basis: 0;
    margin-bottom: 40px;
    text-align: center;
  }
}
.features-container__items {
  color: rgb(126, 99, 185);
  font-family: "Nekst-Light";
  font-size: 24px;
  line-height: 36px;
  cursor: pointer;
}

.active-item {
  color: #fff;
}

@media (max-width: 1000px) {
  .slide-container {
    padding-bottom: 65px;
  }
}

.body-slide {
  position: relative;
  z-index: 10;
  margin-bottom: 100px;
  padding: 0 30px;
  background-color: rgb(109, 69, 185);
  width: 622px;
  height: 439px;
  border-radius: 38px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .body-slide {
    width: auto;
    margin: 0 10px;
  }
}
.body-slide__row {
  display: flex;
  align-items: center;
  gap: 101px;
}
@media (max-width: 1000px) {
  .body-slide__row {
    gap: 10px;
  }
}
.body-slide__about {
  font-family: "Nekst-Medium";
  font-size: 15.88px;
  font-weight: 400;
  line-height: 22.23px;
  margin-bottom: 37px;
}
@media (max-width: 1000px) {
  .body-slide__about {
    margin-bottom: 15px;
  }
}
.body-slide__btn {
  font-family: "Nekst-SemiBold";
  font-size: 15.12px;
  line-height: 18.15px;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  max-width: 185px;
  color: #fff;
  background-color: transparent;
  border: 1px solid rgb(180, 150, 238);
  border-radius: 44px;
  padding: 18px 27px;
  margin-bottom: 61px;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .body-slide__btn {
    margin-bottom: 15px;
  }
}

.row-title {
  padding-top: 77px;
  font-family: "Nekst-Regular";
  font-size: 60px;
  line-height: 49.8px;
  margin-bottom: 18px;
}

@media (max-width: 1000px) {
  .row-title {
    font-size: calc(1rem + 2.25vw);
  }
}
.security__title {
  font-family: "Nekst-Medium";
  font-size: 90px;
  line-height: 92.7px;
  padding-top: 100px;
  color: rgb(255, 255, 255);
  margin: 0 0 10px 50px;
}
@media (max-width: 1000px) {
  .security__title {
    font-size: calc(1rem + 9.25vw);
    margin: 0;
    text-align: center;
  }
}
.security__body {
  display: flex;
}
@media (max-width: 1000px) {
  .security__body {
    flex-direction: column;
  }
}

.body-image__img {
  max-width: 965px;
  background-position: 3% 3%;
}
@media (max-width: 1000px) {
  .body-image__img {
    max-width: 100%;
    flex-shrink: 50%;
  }
}

.body-about {
  display: flex;
  flex-wrap: wrap;
  gap: 41px;
  color: rgb(255, 255, 255);
  width: 100%;
}
@media (max-width: 1000px) {
  .body-about {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.body-about__card-wrapper {
  border: 1px solid rgb(64, 46, 92);
  border-radius: 40px;
  max-width: 304px;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 35px 25px;
}

.card-title {
  font-family: "Nekst-Medium";
  font-size: 34px;
  line-height: 31.62px;
  margin-bottom: 50px;
}

.card-img {
  margin-bottom: 220px;
}

.card-text {
  font-family: "Nekst-Light";
  font-size: 16px;
  font-weight: 400;
  line-height: 21.6px;
}

.partners {
  margin-top: 98px;
  background: linear-gradient(125.96deg, #7061aa -34.49%, #340e73 85.02%);
  border-radius: 41px;
}
.partners__title-group {
  display: flex;
  margin-left: 50px;
  gap: 350px;
  padding-top: 20px;
}
@media (max-width: 1000px) {
  .partners__title-group {
    flex-direction: column;
    margin: 0;
    align-items: center;
    gap: 30px;
    padding: 0 15px;
  }
}

.partners-title {
  font-family: "Nekst-Medium";
  font-size: 90px;
  line-height: 92.7px;
  color: rgb(255, 255, 255);
}
@media (max-width: 1000px) {
  .partners-title {
    font-size: calc(1rem + 9.25vw);
  }
}

.partners-subtitle {
  font-family: "Nekst-SemiBold";
  font-size: 40px;
  line-height: 40px;
  padding-top: 60px;
  background: linear-gradient(96.63deg, #ffffff 5.78%, #bfa5ea 72.85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 692px;
}
@media (max-width: 1000px) {
  .partners-subtitle {
    padding-top: 20px;
  }
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 33px;
}
@media (max-width: 1000px) {
  .btn-group {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding-top: 30px;
  }
}
.btn-group__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 140px;
  margin-bottom: 131px;
}
@media (max-width: 1000px) {
  .btn-group__body {
    padding-top: 0;
    margin-bottom: 0;
  }
}
.btn-group__button {
  border: 1px solid rgb(180, 150, 238);
  background-color: transparent;
}
.btn-group__button:hover {
  border: 1px solid rgb(255, 255, 255);
  scale: 1.1;
}
.btn-group__text {
  font-family: "Nekst-SemiBold";
  font-size: 12px;
  line-height: 15px;
  color: rgb(170, 135, 226);
}

.footer {
  background-color: rgb(23, 16, 34);
  border-radius: 40px;
  padding: 36px 53px 70px 53px;
}
.footer__body {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .footer__body {
    flex-direction: column;
  }
}

.body-logo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.body-social__title {
  margin-bottom: 32px;
}

.social-group {
  display: flex;
  gap: 9px;
  margin-bottom: 69px;
}
.social-group__item {
  cursor: pointer;
}
.social-group__info {
  font-family: "Nekst-Regular";
  font-size: 17px;
  line-height: 17px;
  color: rgb(255, 255, 255);
}

.body-documents__about {
  margin-bottom: 10px;
}
@media (max-width: 1000px) {
  .body-documents {
    display: none;
  }
}

.body-platform__about {
  margin-bottom: 10px;
}
@media (max-width: 1000px) {
  .body-platform {
    display: none;
  }
}

@media (max-width: 1000px) {
  .body-register {
    padding-top: 15px;
  }
}

.same-text {
  font-family: "Nekst-Regular";
  font-size: 17px;
  line-height: 17px;
  color: rgb(143, 136, 154);
}

.same-title {
  font-family: "Nekst-Medium";
  font-size: 23px;
  line-height: 22.77px;
  color: rgb(255, 255, 255);
  margin-bottom: 25px;
  cursor: pointer;
}

.try {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 70vh;
}
.try__title {
  font-family: "Nekst-Regular";
  text-align: center;
  font-size: 100px;
  line-height: 93px;
  padding-top: 120px;
  margin-bottom: 236px;
}
@media (max-width: 1000px) {
  .try__title {
    margin-bottom: 136px;
    font-size: calc(1rem + 6.25vw);
  }
}
.try__btn {
  margin-bottom: 10px;
  transition: all 1s;
}
@media (max-width: 1000px) {
  .try__btn {
    padding: 10px 15px;
    font-size: 19px;
    margin-bottom: 30px;
  }
}
.try__btn:hover {
  color: rgb(126, 99, 185);
}

body {
  background-color: #000;
}/*# sourceMappingURL=styles.css.map */