@font-face {
  font-family: "SF Pro Display";
  src: url("SF-Pro-Display-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("SF-Pro-Display-Heavy.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("SF-Pro-Display-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("SF-Pro-Display-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("SF-Pro-Display-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("SF-Pro-Display-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("SF-Pro-Display-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("SF-Pro-Display-Thin.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("SF-Pro-Display-Ultralight.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

:root {
  --mainColor: #007cee;
  --borderColor: rgba($color: #fff, $alpha: 0.1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

svg {
  flex-shrink: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul,
ol,
li {
  list-style: none;
}

body {
  font-family: "SF Pro Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  background-color: #000;
  color: #fff;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

body.lock {
  overflow: hidden;
}

body.lock::after {
  opacity: 1;
  visibility: visible;
}

.wrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100vh;
}

.main {
  flex-grow: 1;
}

.container {
  width: 100%;
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
}

.ibg {
  position: relative;
}

.ibg>img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: 0;
  outline: 0;
}

textarea {
  resize: none;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit;
}

input::placeholder,
textarea::placeholder {
  color: inherit;
}

button {
  cursor: pointer;
  background-color: transparent;
  transition: 0.3s;
}

.video {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
}

.video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.text {
  line-height: normal;
}

.item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dim {
  opacity: 0.5;
}

.main-color {
  color: var(--mainColor);
}

.bold {
  font-weight: 700;
}

.section {
  padding: 40px 0;
}

.howwork{
  position: relative;
  z-index: 2;
  background: #000;
}

.inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.label {
  background-color: rgba(81, 94, 236, 0.15);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 13px;
}

.title {
  font-weight: 500;
  font-size: 40px;
  max-width: 694px;
  text-align: center;
}

@media (max-width: 1200px) {
  .title {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .title {
    font-size: 24px;
  }
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1242ff;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid #6c7278;
  padding: 19px 40px;
}

.btn:hover {
  background-color: #0a35e2;
}

@media (max-width: 1200px) {
  .btn {
    padding: 18px 38px;
  }
}

@media (max-width: 992px) {
  .btn {
    padding: 17px 34px;
  }
}

@media (max-width: 768px) {
  .btn {
    padding: 15px 30px;
  }
}

@media (max-width: 576px) {
  .btn {
    padding: 14px 28px;
  }
}

.text {
  line-height: 1.5;
}

.trading__cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
}

@media (max-width: 1200px) {
  .trading__cards {
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .trading__cards {
    gap: 20px;
  }
}

.trading-card {
  width: calc(100% / 3 - (3 - 1) * 56px / 3);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 1200px) {
  .trading-card {
    width: calc(100% / 3 - (3 - 1) * 24px / 3);
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .trading-card {
    width: calc(100% / 2 - (2 - 1) * 24px / 2);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .trading-card {
    width: 100%;
    gap: 12px;
  }
}

.trading-card__img {
  padding-bottom: 76.545%;
}

.trading-card--anim {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  overflow: hidden;
  z-index: 5;
}

.trading-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 992px) {
  .trading-card__content {
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .trading-card__content {
    gap: 8px;
  }
}

.trading-card__title {
  font-weight: 700;
  font-size: 24px;
}

@media (max-width: 992px) {
  .trading-card__title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .trading-card__title {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .trading-card__title {
    font-size: 18px;
  }
}

.trading-card__label {
  font-size: 20px;
  font-weight: 500;
  color: #acb5bb;
}

.trading-card__text {
  font-weight: 500;
  color: #acb5bb;
}

@media (max-width: 992px) {
  .trading-card__text {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .trading-card__text {
    font-size: 14px;
  }
}

.model__container {
  max-width: 1192px;
}

.model__cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

@media (max-width: 1200px) {
  .model__cards {
    gap: 8px 20px;
  }
}

@media (max-width: 992px) {
  .model__cards {
    gap: 8px 16px;
  }
}

.model-card {
  width: calc(100% / 3 - (3 - 1) * 24px / 3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

@media (max-width: 1200px) {
  .model-card {
    width: calc(100% / 3 - (3 - 1) * 20px / 3);
  }
}

@media (max-width: 992px) {
  .model-card {
    width: calc(100% / 2 - (2 - 1) * 16px / 2);
  }
}

@media (max-width: 576px) {
  .model-card {
    width: 100%;
  }
}

.model-card__img {
  padding-bottom: 91.81%;
}

.model-card__content {
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.model-card__title {
  font-weight: 500;
  font-size: 20px;
}

.model-card__text {
  color: rgba(248, 248, 248, 0.7);
}

.community__title {
  font-weight: 700;
  font-size: 42px;
  max-width: 900px;
}

@media (max-width: 1200px) {
  .community__title {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .community__title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .community__title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .community__title {
    font-size: 26px;
  }
}

.community__title .blue {
  color: #6b89ff;
}

.community__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.community__stats {
  display: flex;
  align-items: center;
  gap: 12px;
}

.community__text {
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 992px) {
  .community__text {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .community__text {
    font-size: 16px;
  }
}

.community__text span {
  color: rgba(248, 248, 248, 0.7);
}

.community__stars {
  display: flex;
  align-items: center;
}

.community__avg {
  font-weight: 800;
  font-size: 22px;
}

@media (max-width: 992px) {
  .community__avg {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .community__avg {
    font-size: 18px;
  }
}

.community__peoples {
  display: flex;
}

.community__people {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #578df1;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid #000;
}

.community__people:not(:first-child) {
  margin-left: -10px;
}

.faq__container {
  max-width: 1000px;
}

.faq__title {
  align-self: start;
}

.faq__items {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  border-radius: 24px;
}

@media (max-width: 992px) {
  .faq-item {
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .faq-item {
    border-radius: 16px;
  }
}

@media (max-width: 576px) {
  .faq-item {
    border-radius: 12px;
  }
}

.faq-item__btn {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

@media (max-width: 992px) {
  .faq-item__btn {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .faq-item__btn {
    padding: 16px;
  }
}

@media (max-width: 576px) {
  .faq-item__btn {
    padding: 12px;
  }
}

.faq-item__label {
  font-weight: 600;
  font-size: 18px;
}

@media (max-width: 576px) {
  .faq-item__label {
    font-size: 16px;
  }
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.faq-item__plus {
  color: rgb(18, 66, 255);
}

.faq-item__minus {
  color: rgb(255, 89, 18);
  display: none;
}

.faq-item__content {
  padding: 12px 24px 24px;
  position: relative;
  display: none;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 992px) {
  .faq-item__content {
    padding: 12px 20px 20px;
  }
}

@media (max-width: 768px) {
  .faq-item__content {
    padding: 10px 16px 16px;
  }
}

@media (max-width: 576px) {
  .faq-item__content {
    padding: 8px 12px 12px;
  }
}

.faq-item__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: calc(100% - 48px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
  .faq-item__content::before {
    left: 20px;
    width: calc(100% - 40px);
  }
}

@media (max-width: 768px) {
  .faq-item__content::before {
    left: 16px;
    width: calc(100% - 32px);
  }
}

@media (max-width: 768px) {
  .faq-item__content::before {
    left: 12px;
    width: calc(100% - 24px);
  }
}

.faq-item.active .faq-item__content {
  display: flex;
}

.faq-item.active .faq-item__plus {
  display: none;
}

.faq-item.active .faq-item__minus {
  display: flex;
}

.faq-item__paragraph {
  display: flex;
  flex-direction: column;
}

.faq-item__text {
  color: #acb5bb;
  font-size: 14px;
}

.footer {
  position: relative;
}

.footer__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}

.footer__container {
  max-width: 700px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 992px) {
  .footer__inner {
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .footer__inner {
    gap: 12px;
  }
}

.footer__part {
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 576px) {
  .footer__part {
    gap: 12px;
    flex-direction: column;
  }
}

.footer__btns {
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__anchor {
  font-weight: 600;
  color: #8e8d91;
}

.footer__copy {
  font-weight: 700;
  font-size: 13px;
  color: #383838;
}

.footer__link {
  font-weight: 700;
  font-size: 13px;
  color: #383838;
  text-decoration: underline;
}

.footer__link:hover{
  color: #fff;
}

.footer__btn {
  padding: 11px 25px;
}

.earn__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

@media (max-width: 1200px) {
  .earn__cards {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .earn__cards {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .earn__cards {
    gap: 12px;
  }
}

.earn-card {
  width: calc(100% / 3 - (3 - 1) * 24px / 3);
  border: 1px solid #44444a;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
}

@media (max-width: 1200px) {
  .earn-card {
    width: calc(100% / 3 - (3 - 1) * 20px / 3);
  }
}

@media (max-width: 992px) {
  .earn-card {
    width: calc(100% / 2 - (2 - 1) * 16px / 2);
    gap: 20px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .earn-card {
    width: 100%;
    gap: 16px;
    padding: 16px;
  }
}

@media (max-width: 576px) {
  .earn-card {
    gap: 12px;
    padding: 12px;
  }
}

.earn-card__label {
  font-weight: 600;
}

@media (max-width: 576px) {
  .earn-card__label {
    font-size: 15px;
  }
}

.earn-card__title {
  font-weight: 500;
  font-size: 28px;
}

@media (max-width: 1200px) {
  .earn-card__title {
    font-size: 26px;
  }
}

@media (max-width: 992px) {
  .earn-card__title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .earn-card__title {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .earn-card__title {
    font-size: 20px;
  }
}

.earn-card__benefit {
  font-weight: 500;
  font-size: 10px;
  color: #6c7278;
  width: 100%;
  text-align: center;
  position: relative;
}

.earn-card__benefit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #6c7278;
  z-index: -2;
}

.earn-card__benefit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
  width: 110px;
  height: 10px;
  z-index: -1;
}

.earn-card__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.earn-card__item {
  display: flex;
  gap: 10px;
}

@media (max-width: 576px) {
  .earn-card__item {
    font-size: 15px;
  }
}

.news__content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
}

@media (max-width: 992px) {
.news__content {
  gap: 20px;
}
}

@media (max-width: 992px) {
.news__content {
  gap: 16px;
}
}

.news__item, .news__item--single {
  width: calc(100% / 3 - 48px / 3);
  position: relative;
  overflow: hidden;
  border: 1px solid #303030;
  border-radius: 12px;
  background: #000308;
  padding: 26px 17px;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  flex-grow: 1;
}

.news__item--single{
  width: 100%;
  align-items: center;
}

@media (max-width: 768px) {
  .news__item--single{
    min-height: 150px;
  }
}

@media (max-width: 998px) {
  .news__item--single .news__item--bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width:992px) {
  .news__item {
    width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .news__item {
    min-height: 220px;
    padding: 16px;
  }
}

@media (max-width:576px) {
  .news__item {
    min-height: 160px;
    width: 100%;
    padding: 12px;
  }
}

.news__item.big {
  width: 100%;
  background: linear-gradient(to bottom, #000912, #010206);
  padding: 70px 40px 56px 35px;
}

@media (max-width: 1200px) {
  .news__item.big {
    padding: 60px 36px 48px 30px;
  }
}

@media (max-width: 992px) {
  .news__item.big {
    padding: 50px 30px 41% 25px;
  }
}

@media (max-width: 768px) {
  .news__item.big {
    padding: 32px 20px 41% 20px;
  }
}

@media (max-width: 576px) {
  .news__item.big {
    padding: 12px 12px 41%;
  }
}

.news__text--block {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.news__text--title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
}


@media (max-width: 1200px) {
  .news__text--title {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .news__text--title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .news__text--title {
    font-size: 28px;
  }
}

@media (max-width:576px) {
  .news__text--title {
    font-size: 24px;
  }
}

.news__text--link {
  padding: 15px 34px;
  border: 1px solid #2450FF;
  color: #2450FF;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  border-radius: 9px;
}

@media (max-width: 576px) {
  .news__text--link {
    padding: 11px 29px;
  }
}

.news__text--link:hover {
  color: #fff;
  background: #2450FF;
}

.news__item--bg {
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
  max-height: 100%;
}

@media (max-width: 992px) {
  .news__item--bg {
    right: unset;
    top: unset;
    left: 0;
    bottom: 0;
    max-height: unset;
    width: 100%;
  }
}

.news__item--sign {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  padding-right: 30px;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .news__item--sign {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .news__item--sign {
    font-size: 20px;
  }
}

.news__item--img {
  width: 100%;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
}

@media (max-width: 576px) {
  .news__item--img{
    top: -140px;
  }
}
@media (max-width: 440px) {
  .news__item--img{
    top: -90px;
  }
}
@media (max-width: 370px) {
  .news__item--img{
    top: -50px;
  }
}

/* Шапка */
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 15px 0;
}

.header__inner {
  width: 100%;
  padding: 7px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 576px) {
  .header__inner {
    gap: 16px;
  }
}
@media (max-width: 420px) {
  .header__inner{
    gap: 8px;
  }
}

.header__wrap{
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang__wrapper{
  position: relative;
}

.lang__select{
  width: 63px;
  height: 34px;
  border: 1px solid #6C7278;
  border-radius: 6px;
  text-align: center;
  background: #000;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  outline: none;
  padding: 0 9px 0 4px;
}

@media (max-width: 420px) {
  .lang__select{
    width: 55px;
    height: 32px;
    font-size: 12px;
  }

  .header__link{
    font-size: 13px;
  }
}

.lang__select--arrow{
  position: absolute;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-logo img{
  max-width: 50px;
}

.logo img{
  max-width: 50px;
}

@media (max-width: 420px) {
  .header-logo img{
    max-width: 33px;
  }
}

@media (max-width: 576px) {
  .header-logo__text {
    display: none;
  }
}

.header__inner:before,
.header__inner:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 239, 231, 0.4), rgba(153, 153, 153, 0));
  position: absolute;
  top: 0;
  left: 0;
}

.header__inner:after {
  bottom: 0;
  top: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 1;
}

@media (max-width: 1200px) {
  .header__nav {
    gap: 16px;
  }
}

@media (max-width: 992px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100vh;
    background-color: #121214;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    overflow-y: auto;
    transition: .3s;
  }

  .header__nav.active {
    left: 0;
  }
}

@media (max-width: 480px) {
  .header__nav {
    width: 75%;
  }
}

.header__nav--link {
  color: #8E8D91;
  font-size: 14px;
  font-weight: 600;
  line-height: 2.2;
}

.header__nav--link:hover {
  color: #fff;
}

.header__link {
  padding: 4px 16px;
  line-height: 1.5;
}

.burger-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
  justify-content: center;
  align-items: center;
  color: #8E8D91;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .burger-btn {
    display: flex;
  }
}

.mainlink__block {
  padding: 4px 14px 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(252, 252, 253, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #8E8D91;
  position: relative;
  z-index: 9;
}

@media (max-width: 480px) {
  .mainlink__block{
    font-size: 11px;
  }
}

.mainlink__block:hover {
  border: 1px solid rgba(252, 252, 253, 0.4);
  color: #fff;
}

.mainlink__block--star {
  padding: 6px 12px;
  border-radius: 50px;
  background: rgba(81, 94, 236, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .mainlink__block--star{
    padding: 4px 8px;
  }
}

.mainlink__block--arrow {
  width: 12px;
  flex-shrink: 0;
  color: #fff;
}

.main__title--inner {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 11px;
  padding-bottom: 10px;
  position: relative;
  z-index: 9;
}

@media (max-width: 768px) {
  .main__title--inner{
    margin-top: 25px;
    padding-top: 8px;
  }
}

.main__title--inner:before,
.main__title--inner:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 239, 231, 0.4), rgba(153, 153, 153, 0));
  position: absolute;
  top: 0;
  left: 0;
}

.main__title--inner:after {
  top: auto;
  bottom: 0;
}

.main__title {
  color: #fff;
  font-size: 72px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  width: 100%;
  max-width: 1000px;
  min-height: 144px;
}

@media (max-width: 1200px) {
  .main__title {
    font-size: 64px;
    min-height: 136px;
  }
}

@media (max-width: 992px) {
  .main__title {
    font-size: 54px;
    min-height: 118px;
  }
}

@media (max-width: 768px) {
  .main__title {
    font-size: 44px;
    min-height: 98px;
  }
}

@media (max-width: 576px) {
  .main__title {
    font-size: 36px;
    min-height: 108px;
  }
}

.main__title .blue {
  color: #6b89ff;
}

.main__text {
  width: 100%;
  max-width: 434px;
  text-align: center;
  color: #8E8D91;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 20px;
}

@media (max-width:992px) {
  .main__text {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .main__text {
    font-size: 16px;
  }
}

.main__links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 14px;
  position: relative;
  z-index: 9;
}

@media (max-width: 992px) {
  .main__links {
    gap: 20px;
  }
}

@media (max-width:576px) {
  .main__links {
    gap: 16px;
    flex-direction: column;
  }
}

.main__link {
  padding: 12px 22px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
}

@media (max-width: 576px) {
  .main__link {
    font-size: 18px;
    padding: 8px 16px;
  }
}

.main__link--more {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
}

.main__link--more svg {
  width: 16px;
  flex-shrink: 0;
}

.mainsection__video {
  width: 120%;
  max-width: 2200px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 768px) {
  .mainsection__video {
    width: 150%;
  }
}

@media (max-width: 480px) {
  .mainsection__video {
    width: 200%;
  }
}

/* Главный блок */
.mainsection {
  padding: 118px 0;
  min-height: 1000px;
  position: relative;
}

@media (max-width:1400px) {
  .mainsection {
    min-height: 850px;
  }
}

@media (max-width:1200px) {
  .mainsection {
    min-height: 750px;
  }
}

@media (max-width:992px) {
  .mainsection {
    min-height: 650px;
  }
}


@media (max-width:768px) {
  .mainsection {
    /* min-height: 590px; */
  }
}

@media (max-width:576px) {
  .mainsection {
    padding: 90px 0;
  }
}

.mainsection:before {
  content: "";
  display: block;
  width: 100%;
  height: 180px;
  position: absolute;
  bottom: -50px;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
  z-index: 2;
}

.mainsection__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.mainsection__light {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.mainsection__light1 {
  top: 0;
  left: 0;
}

.mainsection__light2 {
  bottom: -200px;
  right: -500px;
}

.mainsection__ellipse,
.mainsection__star,
.mainsection__ballon,
.mainsection__coin {
  position: absolute;
  pointer-events: none;
}

.mainsection__star,
.mainsection__ballon,
.mainsection__coin {
  z-index: 3;
}

.mainsection__ellipse1 {
  left: -200px;
  top: 0px;
  width: 1500px;
}

.mainsection__ellipse2 {
  width: 2100px;
  top: -200px;
  left: -500px;
}

.mainsection__star1 {
  top: 150px;
  left: -50px;
  width: 100%;
  max-width: 80px;
}

.mainsection__star2 {
  top: -50px;
  right: -60px;
  width: 100%;
  max-width: 95px;
}

.mainsection__star3 {
  top: 20px;
  right: -200px;
  width: 100%;
  max-width: 70px;
}

.mainsection__ballon1 {
  width: 100%;
  max-width: 145px;
  top: 300px;
  left: -200px;
}

.mainsection__ballon2 {
  width: 100%;
  max-width: 345px;
  top: 350px;
  right: -430px;
}

.mainsection__coin1 {
  width: 100%;
  max-width: 125px;
  top: 30px;
  left: -190px;
}

.mainsection__coin2 {
  width: 100%;
  max-width: 125px;
  top: 590px;
  left: 0px;
}

.mainsection__coin3 {
  width: 100%;
  max-width: 125px;
  top: 120px;
  right: -140px;
}

.mainsection__coin4 {
  width: 100%;
  max-width: 147px;
  top: 600px;
  right: 0;
}

.main__grid{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .main__grid{
    display: none;
  }
}

@media (max-width:992px) {
  .mainsection__inner > img:not(.main__grid) {
    display: none;
  }
}
@media (max-width: 768px) {
  .mainsection__light{
    opacity: 0.5;
    max-width: 400px;
  }
}

.newssingle{
  width: 100%;
  padding: 118px 0 60px 0;
}

.newssingle__inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.newssingle__back{
  display: inline-block;
  padding: 16px 33px;
  border: 1px solid #2450FF;
  font-size: 15px;
  font-weight: 700;
  color: #2450FF;
  border-radius: 9px;
}

.newssingle__back:hover{
  background: #2450FF;
  color: #fff;
}

.newssingle__content, .newssingle__item, .newssingle__list{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.newssingle__item{
  gap: 16px;
}

.newssingle__item p{
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  max-width: 700px;
  line-height: 1.4;
}

.newssingle__item p span{
  font-weight: 700;
}

.newssingle__list{
  gap: 6px;
}

.newssingle__item h2{
  text-align: center;
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.03rem;
}

@media (max-width: 998px) {
  .newssingle__item p{
    font-size: 18px;
  }

  .newssingle__item h2{
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .newssingle__item p{
    font-size: 16px;
  }

  .newssingle__item h2{
    font-size: 24px;
  }
}