@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

button {
  padding: 0;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --color-background-dark: #000;
  --color-text-white: #FFFFFF;
  --color-text-grey: #A2A2A2;
  --color-text-game: #D0A1FF;
  --color-text-metric: #A859F6;
  --color-text-orange: #FF552F;
  --color-title-game-telegram: #FFBCFF;
  --color-link-hover: #F42D8F;
  --text-shadow--title: 0px 0px 84.107px #7D06F4, 0px 0px 48.061px #7D06F4, 0px 0px 28.036px #7D06F4, 0px 0px 14.018px #FFBCFF, 0px 0px 4.005px #FFBCFF, 0px 0px 2.003px #FFBCFF;
  --filter-shadow: drop-shadow(5px 5px 20px rgba(255, 75, 147, 0.3));
  --filter-shadow-hover: drop-shadow(5px 5px 20px rgba(255, 75, 147, 0.6));
  --font-family-base: "Montserrat", sans-serif;
  --font-family-accent: "Involve", sans-serif;
  --font-size-desktop-title: 80px;
  --font-size-desktop-text: 20px;
  --font-size-desktop-button-graph: 30px;
  --font-size-laptop-title: 65px;
  --font-size-laptop-text: 18px;
  --font-size-laptop-button-graph: 26px;
  --font-size-mobile-title: 30px;
  --font-size-mobile-text: 12px;
  --font-size-mobile-button-graph: 14px;
  --transiotion-duration: 0.2s;
  --background-image-line-url: url(/images/block-line.svg);
}

@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Light.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Involve";
  src: url(../fonts/Involve-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html.is-lock,
body.is-lock {
  overflow: hidden;
}

html:not(.is-lock) {
  overflow-y: visible;
}

html, body {
  overflow-x: hidden;
}

body {
  background: var(--color-background-dark);
  background-repeat: no-repeat;
  overflow-y: hidden;
}
@media (width <= 1265.98px) {
  body {
    overflow-y: visible;
  }
}

a {
  text-decoration: none;
}

.container-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 100px;
  background: url("../images/background/background-pattern.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (width <= 1917.98px) {
  .container-info {
    gap: 63px;
  }
}
@media (width <= 1265.98px) {
  .container-info {
    gap: 20px;
  }
}
@media (width <= 750.98px) {
  .container-info {
    gap: 0px;
  }
}

.visibility-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 750.98px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 750.98px) {
  .visible-mobile {
    display: none !important;
  }
}

@media (width <= 1917.98px) {
  .hidden-laptop {
    display: none !important;
  }
}

@media (width > 1917.98px) {
  .visible-laptop {
    display: none !important;
  }
}

@media (width <= 1265.98px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (width > 1265.98px) {
  .visible-tablet {
    display: none !important;
  }
}

.burger-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 45px;
  height: 40px;
  padding: 7px;
  border: none;
  background-color: transparent;
}
.burger-button.is-active .burger-button__line:first-child {
  rotate: 45deg;
  translate: -0.3em 0.4em;
}
.burger-button.is-active .burger-button__line:nth-child(2) {
  width: 0;
}
.burger-button.is-active .burger-button__line:last-child {
  rotate: -45deg;
  translate: -0.3em -0.8em;
}
.burger-button__line {
  width: 100%;
  height: 2.5px;
  background: linear-gradient(to right, #ff2aad, #ff5e62);
  border-radius: 3px;
  transition-duration: var(--transiotion-duration);
}
.burger-button__line:nth-child(2) {
  width: 75%;
}

.button {
  border: none;
  text-align: center;
  background: none;
  display: flex;
  position: relative;
  align-items: center;
  font-family: var(--font-family-base);
  color: var(--color-text-white);
  width: 345px;
}
.button--action {
  width: 288px;
  height: 70px;
  max-width: unset;
  flex-shrink: 0;
  display: flex;
}
.button__bg-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button__bg-wrap svg {
  display: block;
  width: 100%;
  height: auto;
  filter: var(--filter-shadow);
}
.button__content {
  display: flex;
  position: absolute;
  align-items: center;
  gap: 10px;
}
@media (width <= 750.98px) {
  .button__content {
    gap: 8px;
  }
}
.button__text {
  position: absolute;
  color: var(--color-text-white);
  text-align: center;
  font-family: Montserrat;
  font-size: var(--font-size-desktop-button-graph);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  pointer-events: none;
}
.button__text--action {
  color: var(--color-text-white);
  text-align: center;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  pointer-events: none;
  position: relative;
}
@media (width <= 1917.98px) {
  .button__text--action {
    font-size: var(--font-size-laptop-button-graph);
  }
}
@media (width <= 750.98px) {
  .button__text--action {
    font-size: var(--font-size-mobile-button-graph);
  }
}
@media (width <= 1917.98px) {
  .button__text {
    font-size: var(--font-size-laptop-button-graph);
  }
}
@media (width <= 750.98px) {
  .button__text {
    font-size: var(--font-size-mobile-button-graph);
  }
}
.button__corner-left {
  position: absolute;
  margin-left: 91%;
  top: -3%;
  z-index: 1;
}
.button__corner-left--action {
  margin-left: 258px;
}
.button__corner-left--slaction {
  position: absolute;
  left: 0%;
  bottom: 0%;
  z-index: 1;
  margin-left: unset;
  top: unset;
}
.button__corner-right {
  position: absolute;
  margin-left: -1%;
  bottom: 1%;
  z-index: 1;
}
.button__corner-right--action {
  margin-left: -3px;
  bottom: -2px;
}
@media (width <= 750.98px) {
  .button__corner-right--action {
    margin-left: 3%;
  }
}
.button__corner-right--slaction {
  position: absolute;
  left: 199px;
  top: -1px;
  bottom: unset;
  margin-left: unset;
  z-index: 1;
}
.button__img {
  filter: drop-shadow(-30px 20px 70px rgba(252, 84, 145, 0.5));
}
@media (width <= 750.98px) {
  .button__img {
    width: 202px;
    height: 40px;
  }
}
@media (width <= 750.98px) {
  .button__img {
    filter: drop-shadow(-30px 20px 70px rgba(252, 84, 145, 0.2));
  }
}
.button:hover .button__bg-wrap svg, .button:hover .button__img {
  filter: var(--filter-shadow-hover);
}
.button__bg-wrap svg {
  transition: filter var(--transiotion-duration) ease;
}
.button:hover .button__corner-left {
  transform: translate(5px, -5px);
}
.button:hover .button__corner-left--slaction {
  transform: translate(-5px, 5px);
}
.button:hover .button__corner-right {
  transform: translate(-5px, 5px);
}
.button:hover .button__corner-right--slaction {
  transform: translate(5px, -5px);
}
.button__corner-left, .button__corner-right {
  transition: transform var(--transiotion-duration) ease;
}

@media (width <= 750.98px) {
  .button {
    width: 202px;
    height: 40.986px;
  }
  .button__corner-left {
    width: 15.3px;
    height: 15.3px;
    margin-left: 93%;
    top: -5%;
  }
  .button__corner-left--action {
    top: -2%;
  }
  .button__corner-left--slaction {
    left: -1px;
    bottom: 0%;
    margin-left: unset;
    top: unset;
    width: 10px;
    height: 10px;
  }
  .button__corner-right {
    width: 15.3px;
    height: 15.3px;
    margin-left: calc(-1% + 1px);
    bottom: -3%;
  }
  .button__corner-right--action {
    bottom: -2%;
  }
  .button__corner-right--slaction {
    left: calc(195px - 1%);
    top: -1px;
    bottom: unset;
    margin-left: unset;
    width: 10px;
    height: 10px;
  }
  .button:hover .button__corner-left {
    transform: translate(3px, -3px);
  }
  .button:hover .button__corner-left--slaction {
    transform: translate(-3px, 3px);
  }
  .button:hover .button__corner-right {
    transform: translate(-3px, 3px);
  }
  .button:hover .button__corner-right--slaction {
    transform: translate(3px, -3px);
  }
  .button__icon {
    width: 22px;
    height: 22px;
  }
  .button-hr {
    width: 153px;
    height: 31px;
  }
  .button-hr__corner-left {
    width: 13.3px;
    height: 13.3px;
    margin-left: 92%;
    top: -6%;
  }
  .button-hr__corner-right {
    width: 13.3px;
    height: 13.3px;
    margin-left: -1%;
    bottom: -3%;
  }
  .button-hr:hover .button-hr__corner-left {
    transform: translate(3px, -3px);
  }
  .button-hr:hover .button-hr__corner-right {
    transform: translate(-3px, 3px);
  }
}
.button--header {
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: none;
  border: none;
  position: relative;
  width: 209px;
}
.button--header__bg-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button--header__bg-wrap svg {
  filter: var(--filter-shadow);
}
.button--header__text {
  position: absolute;
  color: var(--color-text-white);
  text-align: center;
  font-family: Montserrat;
  font-size: var(--font-size-desktop-text);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.button--header__corner-left {
  position: absolute;
  margin-left: -95%;
  margin-top: 30px;
}
.button--header__corner-right {
  position: absolute;
  margin-left: 199px;
  margin-bottom: 30px;
  z-index: 1;
}
.button--header:hover .button--header__corner-left {
  transform: translate(-5px, 5px);
}
.button--header:hover .button--header__corner-right {
  transform: translate(5px, -5px);
}
.button--header:hover .button--header__bg-wrap svg {
  filter: var(--filter-shadow-hover);
}
.button--header__bg-wrap svg {
  transition: filter var(--transiotion-duration) ease;
}
.button--header__corner-left, .button--header__corner-right {
  transition: transform var(--transiotion-duration) ease;
}

@media (width <= 1917.98px) {
  .button--header {
    width: 171px;
    height: 32px;
  }
  .button--header__size {
    width: 171px;
    height: 32px;
  }
  .button--header__corner-right {
    margin-left: 90%;
    margin-bottom: 13%;
  }
  .button--header__corner-left {
    margin-left: -90%;
    margin-top: 12%;
  }
  .button--header__text {
    font-size: var(--font-size-laptop-text);
  }
}
@media (width <= 1917.98px) and (width <= 750.98px) {
  .button--header__text--slaction {
    font-size: 14px;
  }
}
@media (width <= 1917.98px) {
  .button--slaction {
    width: 209px;
    height: 54px;
  }
}
.header {
  background-image: url(../images/background/bacground-cosmo.png), linear-gradient(-3deg, rgba(0, 0, 0, 0.48) 0.39%, #000 5.44%, rgba(0, 0, 0, 0) 45.25%), url(../images/background/bacground-image-header.png);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 954px 754px, auto, cover;
  background-position: calc(50% + 420px) bottom, bottom, center;
  overflow: hidden;
  position: relative;
  z-index: 2;
  justify-items: center;
}
.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 0, 255, 0) 0%, rgb(160, 80, 255) 50%, rgba(255, 0, 255, 0) 100%);
  pointer-events: none;
  display: block;
}
@media (width <= 1917.98px) {
  .header {
    background-size: 880px 653px, auto, cover;
  }
}
@media (width <= 1265.98px) {
  .header {
    background-position: calc(50% + 370px) bottom, bottom, center;
  }
}
@media (width <= 750.98px) {
  .header {
    background-image: url(../images/cosmo-mobile.png), linear-gradient(-3deg, rgba(0, 0, 0, 0.48) 0.39%, #000 5.44%, rgba(0, 0, 0, 0) 45.25%), url(../images/background/bacground-image-header.png);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 582px 464px, auto, cover;
    background-position: calc(0% - 210px) bottom, bottom, center;
  }
}
.header__content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  flex-direction: column;
  padding-block: 0px 75px;
  gap: 146px;
}
@media (width <= 1917.98px) {
  .header__content {
    max-width: 1180px;
  }
}
@media (width <= 1265.98px) {
  .header__content {
    max-width: 850px;
  }
}
@media (width <= 750.98px) {
  .header__content {
    gap: 215px;
    max-width: 420px;
    padding-block: 35px 45px;
  }
}
.header__inner {
  max-width: 1600px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (width <= 1917.98px) {
  .header__inner {
    max-width: 1180px;
  }
}
@media (width <= 1265.98px) {
  .header__inner {
    max-width: 900px;
  }
}
@media (width <= 750.98px) {
  .header__inner {
    max-width: 500px;
  }
}
.header__promo {
  display: flex;
  justify-content: center;
  font-family: var(--font-family-accent);
  font-size: var(--font-size-desktop-text);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 45px;
  transition: backdrop-filter 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.header__promo.is-fixed {
  position: fixed;
  padding: 25px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(255, 166, 242, 0.25);
}
.header__promo.is-fixed.menu-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: none;
}
@media (width <= 750.98px) {
  .header__promo.is-fixed {
    padding: 20px;
  }
}
@media (width <= 1917.98px) {
  .header__promo {
    column-gap: 44px;
    font-size: var(--font-size-laptop-text);
  }
}
@media (width <= 1265.98px) {
  .header__promo {
    font-size: var(--font-size-desktop-text);
    padding-inline: 25px;
  }
}
.header__menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 49%;
}
.header__menu-list {
  display: flex;
  flex-direction: row;
  column-gap: 75px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 1265.98px) {
  .header__menu-list {
    flex-direction: column;
    gap: 30px;
  }
}
.header__menu-link {
  color: var(--color-text-white);
  transition: color var(--transiotion-duration) ease;
}
.header__menu-link:hover {
  color: var(--color-link-hover);
}
@media (width <= 1917.98px) {
  .header__menu {
    width: 57%;
  }
  .header__menu-list {
    width: 100%;
    justify-content: space-between;
    column-gap: 50px;
    white-space: nowrap;
  }
}
.header__change-lang {
  align-items: center;
  color: var(--color-text-white);
  transition: color var(--transiotion-duration) ease;
}
.header__change-lang:hover {
  color: var(--color-link-hover);
}
.header__overlay {
  display: contents;
}
.header__overlay--menu {
  display: contents;
}
@media (width <= 1265.98px) {
  .header__overlay {
    background: var(--color-background-dark);
    transition-duration: var(--transiotion-duration);
  }
  .header__overlay.is-active {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 52px;
    padding: 13px 30px 52px 30px;
    z-index: 100;
  }
  .header__overlay.is-active .menu-hidden,
  .header__overlay.is-active .header__change-lang {
    display: none;
  }
  .header__overlay.is-active .menu-visible {
    display: block;
  }
  .header__overlay.is-active .header__overlay--menu {
    display: flex;
    flex-direction: row;
    gap: calc(50% - 45px - 18px);
  }
  .header__overlay.is-active .header__inner {
    display: contents;
  }
  .header__overlay.is-active .header__menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 30px;
  }
  .header__overlay:not(.is-active) {
    display: contents;
    position: static;
    inset: unset;
  }
  .header__overlay:not(.is-active) .header__menu {
    display: none;
  }
}
.header__body {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1600px;
  margin-bottom: 113px;
  padding-top: 236px;
}
@media (width <= 1917.98px) {
  .header__body {
    padding-left: 0px;
    margin-bottom: 40px;
    max-width: 1120px;
  }
}
@media (width <= 1265.98px) {
  .header__body {
    padding-inline: 30px;
  }
}
@media (width <= 750.98px) {
  .header__body {
    margin-bottom: 0;
  }
}
.header__info {
  width: 830px;
  color: var(--color-text-white);
  font-size: var(--font-size-desktop-title);
  font-family: var(--font-family-accent);
  margin-bottom: 70px;
  font-weight: 400;
  line-height: 110%;
}
@media (width <= 1917.98px) {
  .header__info {
    width: 70%;
    font-size: var(--font-size-laptop-title);
    margin-bottom: 50px;
  }
}
@media (width <= 1265.98px) {
  .header__info {
    width: 100%;
    font-size: 45px;
  }
}
@media (width <= 750.98px) {
  .header__info {
    font-size: var(--font-size-mobile-title);
    margin-bottom: 30px;
  }
}
.header__background-lights {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.header__light {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}
@media (width <= 1265.98px) {
  .header__light {
    opacity: 0.3;
  }
}
.header__light--blue {
  width: 1500px;
  height: 1500px;
  background: radial-gradient(45.18% 46.89% at 50% 50%, #0675F4 0%, rgba(73, 3, 142, 0) 100%);
  transform: rotate(90deg);
  background-repeat: no-repeat;
  top: calc(0% - 700px);
  left: calc(0% - 650px);
}
@media (width <= 750.98px) {
  .header__light--blue {
    width: 351px;
    height: 351px;
    top: calc(0% - 121px);
    left: calc(0% - 121px);
    filter: blur(0px);
  }
}
.header__light--purple {
  width: 1039.285px;
  height: 1143.24px;
  background: radial-gradient(45.18% 46.89% at 50% 50%, #7D06F4 0%, rgba(73, 3, 142, 0) 100%);
  transform: rotate(90deg);
  background-repeat: no-repeat;
  top: calc(0% - 475px);
  left: 50%;
}
@media (width <= 1265.98px) {
  .header__light--purple {
    width: 485px;
    height: 485px;
    top: calc(0% - 74px);
    right: calc(0% - 213px);
  }
}

.lp {
  position: relative;
  width: 350px;
  margin-top: 20px;
}

@media (width <= 1917.98px) {
  .header__logo {
    width: 130px;
    height: 45px;
  }
}
@media (width <= 1917.98px) and (width <= 1265.98px) {
  .header__logo {
    width: 38px;
    height: 41px;
  }
}
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.social-links__link {
  align-items: center;
  filter: var(--filter-shadow);
  transform: filter var(--transiotion-duration) ease;
}
.social-links__link:hover {
  filter: var(--filter-shadow-hover);
}

.logo__image {
  width: 54px;
  height: 54px;
  filter: var(--filter-shadow);
  transform: filter var(--transiotion-duration) ease;
}
.logo__image:hover {
  filter: var(--filter-shadow-hover);
}
@media (width <= 750.98px) {
  .logo__image {
    width: 30px;
    height: 30px;
  }
}

.header__logo-media {
  width: 40px;
  height: 40px;
}

.logo__image-main {
  flex-shrink: 0;
}

.logo-header__mobile {
  position: relative;
  top: -3px;
}

.about {
  height: 776px;
  width: 100%;
  padding-inline: 135px 144px;
  max-width: 1920px;
  margin: 100px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.about::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 0, 255, 0) 0%, rgb(160, 80, 255) 50%, rgba(255, 0, 255, 0) 100%);
  pointer-events: none;
  display: block;
}
@media (width <= 1917.98px) {
  .about {
    max-width: 1400px;
    height: 950px;
    padding-left: 81px;
    justify-content: left;
    align-items: flex-start;
  }
}
@media (width <= 1265.98px) {
  .about {
    height: auto;
    padding: 0 60px;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    padding-bottom: 100px;
    max-width: 900px;
  }
}
@media (width <= 750.98px) {
  .about {
    margin-top: 32px;
    padding: 0px 30px 10px 30px;
    gap: 20px;
  }
  .about::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 0, 255, 0) 0%, rgb(160, 80, 255) 50%, rgba(255, 0, 255, 0) 100%);
    pointer-events: none;
    display: none;
  }
}
.about__intro {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
  width: 677px;
}
@media (width <= 1917.98px) {
  .about__intro {
    align-items: flex-start;
    margin-top: 0;
    max-width: 464px;
    min-width: 0;
    width: auto;
    gap: 30px;
  }
}
@media (width <= 1265.98px) {
  .about__intro {
    align-items: center;
    width: 100%;
    max-width: none;
  }
}
@media (width <= 750.98px) {
  .about__intro {
    gap: 20px;
  }
}
.about__title {
  color: var(--color-text-white);
  text-align: center;
  font-family: var(--font-family-accent);
  font-size: var(--font-size-desktop-title);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
@media (width <= 1917.98px) {
  .about__title {
    text-align: left;
    font-size: var(--font-size-laptop-title);
  }
}
@media (width <= 1265.98px) {
  .about__title {
    text-align: center;
  }
}
@media (width <= 750.98px) {
  .about__title {
    font-size: var(--font-size-mobile-title);
  }
}
.about__description {
  color: var(--color-text-white);
  text-align: center;
  font-family: var(--font-family-base);
  font-size: var(--font-size-desktop-text);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  width: 640px;
}
@media (width <= 1917.98px) {
  .about__description {
    width: 447px;
    text-align: left;
    font-size: var(--font-size-laptop-text);
  }
}
@media (width <= 1265.98px) {
  .about__description {
    width: 75%;
    text-align: center;
    max-width: 550px;
  }
}
@media (width <= 750.98px) {
  .about__description {
    width: 100%;
    font-size: var(--font-size-mobile-text);
    max-width: 420px;
  }
}
.about__cards {
  display: contents;
}
@media (width <= 1265.98px) {
  .about__cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    gap: 20px;
  }
}
@media (width <= 750.98px) {
  .about__cards {
    gap: 10px;
    flex-direction: column;
  }
}
.about__card {
  width: 402px;
  height: 402px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background: url(../images/three-stars.png), url(../images/three-stars.png), url(../images/about-card.png);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 80px 24px, 80px 24px, 340px 385px;
  background-position: center 274px, center 103px, center;
}
.about__card:nth-child(1) {
  left: 7%;
  top: 0;
}
.about__card:nth-child(2) {
  left: 28.5%;
  bottom: 100px;
}
.about__card:nth-child(3) {
  left: 50%;
  bottom: 100px;
  background-position: center 298px, center 79px, center;
}
.about__card:nth-child(4) {
  right: 7.5%;
  top: 0;
}
@media (width <= 1917.98px) {
  .about__card:nth-child(1) {
    left: 3%;
    top: 34%;
  }
  .about__card:nth-child(2) {
    left: 36%;
    top: 48%;
  }
  .about__card:nth-child(3) {
    left: 45.7%;
    top: -1%;
    background-position: center 298px, center 79px, center;
  }
  .about__card:nth-child(4) {
    left: 66.5%;
    top: 31.6%;
  }
}
@media (width <= 1265.98px) {
  .about__card {
    width: 370px;
    height: 200px;
    position: relative;
    background: url(../images/three-stars.png), url(../images/three-stars.png), url(../images/about-card.png);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 80px 24px, 80px 24px, 370px 200px;
    background-position: center 165px, center 15px, center;
  }
  .about__card:nth-child(1) {
    left: auto;
    top: auto;
  }
  .about__card:nth-child(2) {
    left: auto;
    top: auto;
    bottom: auto;
  }
  .about__card:nth-child(3) {
    left: auto;
    top: auto;
    bottom: auto;
    background-position: center 165px, center 15px, center;
  }
  .about__card:nth-child(4) {
    right: auto;
    left: auto;
    top: auto;
  }
}
@media (width <= 750.98px) {
  .about__card {
    width: 320px;
    height: 130px;
    background-size: 36px 11px, 36px 11px, 320px 130px;
    background-position: center 105px, center 15px, center;
  }
  .about__card:nth-child(3) {
    background-position: center 105px, center 15px, center;
  }
}
.about__text {
  color: var(--color-text-white);
  text-align: center;
  font-family: var(--font-family-base);
  font-size: var(--font-size-desktop-text);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  width: 251px;
}
@media (width <= 1917.98px) {
  .about__text {
    width: 226px;
    font-size: var(--font-size-laptop-text);
  }
}
@media (width <= 1265.98px) {
  .about__text {
    width: 350px;
    font-size: 16px;
  }
}
@media (width <= 750.98px) {
  .about__text {
    width: 257px;
    font-size: var(--font-size-mobile-text);
  }
}
.about__background-lights {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.about__light {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(150px);
}
@media (width <= 1917.98px) {
  .about__light {
    filter: blur(125px);
  }
}
@media (width <= 750.98px) {
  .about__light {
    filter: none;
  }
}
.about__light--orange {
  width: 700px;
  height: 700px;
  background: radial-gradient(45.18% 46.89% at 50% 50%, rgba(255, 85, 47, 0.61) 0%, rgba(73, 3, 142, 0) 100%);
  transform: rotate(90deg);
  opacity: 0.5;
  top: -12%;
  left: calc(0% - 250px);
}
@media (width <= 1917.98px) {
  .about__light--orange {
    opacity: 0.5;
  }
}
@media (width <= 1265.98px) {
  .about__light--orange {
    width: 580px;
    height: 580px;
    opacity: 0.3;
    left: calc(0% - 275px);
    top: -25%;
  }
}
.about__light--purple-small {
  width: 800px;
  height: 800px;
  background: radial-gradient(45.18% 46.89% at 50% 50%, #7D06F4 0%, rgba(73, 3, 142, 0) 100%);
  transform: rotate(10.223deg);
  opacity: 0.8;
  top: 20%;
  left: calc(0% - 500px);
}
@media (width <= 1917.98px) {
  .about__light--purple-small {
    opacity: 0.7;
  }
}
@media (width <= 750.98px) {
  .about__light--purple-small {
    width: 485.293px;
    height: 525.515px;
    border-radius: 525.515px;
    opacity: 0.5;
    left: calc(0% - 300px);
  }
}
.about__light--purple-big {
  width: 1300px;
  height: 1300px;
  background: radial-gradient(45.18% 46.89% at 50% 50%, #7D06F4 0%, rgba(73, 3, 142, 0) 100%);
  transform: rotate(86.831deg);
  opacity: 0.6;
  top: 0%;
  right: calc(0% - 1400px);
  transform: translateX(-50%) rotate(86.831deg);
}
@media (width <= 1917.98px) {
  .about__light--purple-big {
    opacity: 0.5;
    top: 15%;
  }
}
@media (width <= 750.98px) {
  .about__light--purple-big {
    width: 602.114px;
    height: 562.823px;
    border-radius: 602.114px;
    top: 25%;
    right: calc(0% - 650px);
  }
}

.game {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (width <= 1917.98px) {
  .game {
    width: 100%;
  }
}
.game__mutate {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-inline: 37px 86px;
  max-width: 1920px;
}
@media (width <= 1917.98px) {
  .game__mutate {
    max-width: 1400px;
    padding-inline: 0px 64px;
  }
}
@media (width <= 1265.98px) {
  .game__mutate {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
}
@media (width <= 1917.98px) {
  .game__image-scientist {
    position: absolute;
    width: 584px;
    height: 598px;
    align-self: self-start;
    left: calc(0% - 24px);
  }
}
@media (width <= 1265.98px) {
  .game__image-scientist {
    left: 0;
    mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 45%, rgba(0, 0, 0, 0) 82%);
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 45%, rgba(0, 0, 0, 0) 82%);
  }
}
@media (width <= 750.98px) {
  .game__image-scientist {
    left: auto;
    width: 352.5px;
    height: 360px;
  }
}
.game__info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 80px;
  background: url(../images/line-verical-right.png), url(../images/three-stars-game.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: right 117px, center 720px;
  z-index: 1;
}
@media (width <= 1917.98px) {
  .game__info {
    max-width: 680px;
    gap: 100px;
    background-position: right top, center 560px;
  }
}
@media (width <= 1265.98px) {
  .game__info {
    gap: 40px;
    background: none;
  }
}
@media (width <= 750.98px) {
  .game__info {
    max-width: 420px;
    width: 79%;
    gap: 20px;
  }
}
.game__text-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 117px 74px 0px 89px;
}
@media (width <= 1917.98px) {
  .game__text-block {
    width: 636px;
    padding: 0px 0px 0px 0px;
    margin-right: 40px;
  }
}
@media (width <= 1265.98px) {
  .game__text-block {
    margin-right: 0;
    gap: 20px;
  }
  .game__text-block::before {
    content: "";
    position: absolute;
    top: calc(15% + 115px);
    left: calc(50% - 370px);
    width: 74px;
    height: 515.5px;
    background: url(../images/line-vertical-left.png) no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
  }
  .game__text-block::after {
    content: "";
    position: absolute;
    top: calc(15% + 115px);
    left: calc(50% + 295px);
    width: 74px;
    height: 515.5px;
    background: url(../images/line-verical-right.png) no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
  }
}
@media (width <= 750.98px) {
  .game__text-block {
    position: relative;
    width: 100%;
    max-width: 420px;
  }
  .game__text-block::before {
    top: 6%;
    left: calc(0% - 25px);
    width: 29.648px;
    height: 286.665px;
  }
  .game__text-block::after {
    top: 6%;
    left: calc(100% - 5px);
    width: 29.648px;
    height: 286.665px;
  }
}
.game__buttons {
  display: flex;
  gap: 58px;
  padding-inline: 85px 70px;
  margin-bottom: 127px;
}
@media (width <= 1917.98px) {
  .game__buttons {
    justify-content: center;
    margin-bottom: 65px;
    gap: 50px;
    padding-inline: 0px;
  }
}
@media (width <= 1265.98px) {
  .game__buttons {
    margin-bottom: 20px;
  }
}
@media (width <= 750.98px) {
  .game__buttons {
    flex-direction: column;
    gap: 20px;
  }
}
.game__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border: 2px solid rgba(125, 6, 244, 0.3);
  background: linear-gradient(117deg, rgba(125, 6, 244, 0.2) 3.34%, rgba(24, 0, 48, 0.2) 45.41%);
}
@media (width <= 1265.98px) {
  .game__features {
    padding: 20px;
    gap: 15px;
  }
}
@media (width <= 750.98px) {
  .game__features {
    gap: 5px;
    padding: 15px;
  }
}
.game__image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (width <= 1917.98px) {
  .game__image {
    position: relative;
    width: 569px;
  }
}
@media (width <= 1917.98px) {
  .game__image {
    height: 350px;
  }
}
@media (width <= 750.98px) {
  .game__image {
    align-items: end;
    height: 230px;
  }
}
.game__title {
  color: var(--color-title-game-telegram);
  text-align: left;
  text-shadow: var(--text-shadow--title);
  font-family: var(--font-family-accent);
  font-size: var(--font-size-desktop-title);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 1917.98px) {
  .game__title {
    font-size: var(--font-size-laptop-title);
  }
}
@media (width <= 1265.98px) {
  .game__title {
    text-align: center;
  }
}
@media (width <= 750.98px) {
  .game__title {
    font-size: var(--font-size-mobile-title);
  }
}
.game__description {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: var(--font-size-desktop-text);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
@media (width <= 1917.98px) {
  .game__description {
    font-size: var(--font-size-laptop-text);
  }
}
@media (width <= 1265.98px) {
  .game__description {
    text-align: center;
  }
}
@media (width <= 750.98px) {
  .game__description {
    font-size: var(--font-size-mobile-text);
  }
}
.game__text {
  color: var(--color-text-game);
  font-family: var(--font-family-base);
  font-size: var(--font-size-desktop-text);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
@media (width <= 1917.98px) {
  .game__text {
    font-size: var(--font-size-laptop-text);
  }
}
@media (width <= 750.98px) {
  .game__text {
    font-size: var(--font-size-mobile-text);
  }
}
.game__fight {
  display: flex;
  padding-left: 86px;
  position: relative;
  width: 100%;
  max-width: 1920px;
}
@media (width <= 1917.98px) {
  .game__fight {
    max-width: 1400px;
    padding-left: 71px;
  }
}
@media (width <= 1265.98px) {
  .game__fight {
    padding: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.game__social-links {
  gap: 20px;
}
@media (width <= 750.98px) {
  .game__social-links {
    gap: 10px;
  }
}

.info--fight {
  background: url(../images/line-vertical-left.png), url(../images/three-stars-game.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left 91px, 345px 668px;
  position: relative;
  width: 750px;
}
@media (width <= 1917.98px) {
  .info--fight {
    width: 676px;
    background-position: left top, 310px 78%;
  }
}
@media (width <= 1265.98px) {
  .info--fight {
    background: none;
    order: 1;
    width: auto;
    max-width: 680px;
  }
}
@media (width <= 750.98px) {
  .info--fight {
    max-width: 420px;
    width: 79%;
    gap: 20px;
  }
}

.text-block--fight {
  padding: 91px 0px 0px 74px;
}
@media (width <= 1917.98px) {
  .text-block--fight {
    width: 676px;
    padding: 15px 0px 0px 41px;
    margin-right: 0px;
  }
}
@media (width <= 1265.98px) {
  .text-block--fight {
    width: 636px;
    padding: 0px;
  }
  .text-block--fight::before {
    top: calc(0% + 48px);
    left: calc(50% - 372px);
  }
  .text-block--fight::after {
    top: calc(0% + 48px);
    left: calc(50% + 298px);
  }
}
@media (width <= 750.98px) {
  .text-block--fight {
    width: 100%;
  }
  .text-block--fight::before {
    top: 6%;
    left: calc(0% - 25px);
    width: 29.648px;
    height: 286.665px;
  }
  .text-block--fight::after {
    top: 6%;
    left: calc(100% - 5px);
    width: 29.648px;
    height: 286.665px;
  }
}

.text--fight {
  width: 94%;
}
@media (width <= 1265.98px) {
  .text--fight {
    width: 100%;
  }
}

.game__image--fight {
  display: flex;
  width: 1170px;
  height: 895px;
  position: absolute;
  align-items: center;
  justify-content: center;
  right: calc(0% - 170px);
}
@media (width <= 1917.98px) {
  .game__image--fight {
    width: 691.814px;
    height: 529.463px;
    right: 0;
  }
}
@media (width <= 1265.98px) {
  .game__image--fight {
    order: 0;
    right: 0;
    height: 350px;
    align-items: center;
    justify-content: center;
    position: relative;
  }
}
@media (width <= 750.98px) {
  .game__image--fight {
    inset: auto;
    height: 210px;
  }
}

.game__image-viking {
  position: relative;
  width: 1170px;
  height: 895px;
  flex-shrink: 0;
  z-index: 1;
}
@media (width <= 1917.98px) {
  .game__image-viking {
    width: 691.814px;
    height: 529.463px;
    rotate: 8deg;
    top: 90px;
    left: 60px;
  }
}
@media (width <= 1265.98px) {
  .game__image-viking {
    left: calc(0% - 50px);
    rotate: 20deg;
    top: calc(15% + 40px);
    mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 25%, rgba(0, 0, 0, 0) 90%);
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 25%, rgba(0, 0, 0, 0) 90%);
  }
}
@media (width <= 750.98px) {
  .game__image-viking {
    left: calc(0% - 40px);
    top: 41px;
    width: 415.216px;
    height: 317.775px;
    rotate: 25deg;
  }
}

.buttons--fight {
  margin-left: 50px;
  width: 100%;
}
@media (width <= 1265.98px) {
  .buttons--fight {
    align-items: center;
    margin-left: auto;
  }
}

.game__background-lights {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.game__light {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}
@media (width <= 1265.98px) {
  .game__light {
    border-radius: 0;
  }
}
.game__light--purple-left {
  width: 1293px;
  height: 1333px;
  background: radial-gradient(45.18% 46.89% at 50% 50%, #7D06F4 0%, rgba(73, 3, 142, 0) 100%);
  transform: rotate(173.095deg);
  opacity: 0.7;
  top: 30%;
  left: calc(0% - 900px);
}
@media (width <= 1917.98px) {
  .game__light--purple-left {
    opacity: 0.35;
  }
}
@media (width <= 1265.98px) {
  .game__light--purple-left {
    top: 0;
  }
}
@media (width <= 750.98px) {
  .game__light--purple-left {
    width: 425.445px;
    height: 438.563px;
    transform: rotate(153.313deg);
    flex-shrink: 0;
    border-radius: 438.563px;
    background: radial-gradient(45.18% 46.89% at 50% 50%, #7D06F4 0%, rgba(73, 3, 142, 0) 100%);
    top: 10%;
    left: calc(0% - 230px);
    opacity: 0.55;
  }
}
.game__light--orange-left {
  width: 1150px;
  height: 1170px;
  background: radial-gradient(45.18% 46.89% at 50% 50%, rgba(255, 85, 47, 0.61) 0%, rgba(73, 3, 142, 0) 100%);
  opacity: 0.4;
  transform: rotate(86.831deg);
  bottom: 30%;
  left: calc(0% - 500px);
}
@media (width <= 1917.98px) {
  .game__light--orange-left {
    bottom: 15%;
    opacity: 0.25;
  }
}
@media (width <= 1265.98px) {
  .game__light--orange-left {
    bottom: 60%;
  }
}
@media (width <= 750.98px) {
  .game__light--orange-left {
    width: 378.12px;
    height: 384.087px;
    border-radius: 384.087px;
    opacity: 0.5;
    background: radial-gradient(45.18% 46.89% at 50% 50%, rgba(255, 85, 47, 0.61) 0%, rgba(73, 3, 142, 0) 100%);
    bottom: 77%;
    left: calc(0% - 150px);
  }
}
.game__light--orange-right {
  width: 1277px;
  height: 1292px;
  background: radial-gradient(45.18% 46.89% at 50% 50%, rgba(255, 85, 47, 0.61) 0%, rgba(73, 3, 142, 0) 100%);
  opacity: 0.48;
  transform: rotate(-46.331deg);
  top: 35%;
  right: calc(0% - 800px);
}
@media (width <= 1917.98px) {
  .game__light--orange-right {
    top: 30%;
    right: calc(0% - 950px);
  }
}
@media (width <= 750.98px) {
  .game__light--orange-right {
    width: 453.424px;
    height: 445.532px;
    transform: rotate(-98.586deg);
    flex-shrink: 0;
    border-radius: 453.424px;
    background: radial-gradient(45.18% 46.89% at 50% 50%, rgba(255, 85, 47, 0.61) 0%, rgba(73, 3, 142, 0) 100%);
    top: 65%;
    right: calc(0% - 300px);
  }
}
.game__light--purple-right {
  width: 1631px;
  height: 1514px;
  background: radial-gradient(45.18% 46.89% at 50% 50%, #7D06F4 0%, rgba(73, 3, 142, 0) 100%);
  opacity: 0.7;
  transform: rotate(-46.331deg);
  top: 45%;
  right: -20%;
}
@media (width <= 1917.98px) {
  .game__light--purple-right {
    top: 40%;
    right: -65%;
    opacity: 0.65;
  }
}
@media (width <= 1265.98px) {
  .game__light--purple-right {
    width: 1550.737px;
    height: 1398.658px;
    transform: rotate(-46.282deg);
    flex-shrink: 0;
    border-radius: 1550.737px;
    opacity: 0.65;
    top: 55%;
    right: calc(0% - 1000px);
    background: radial-gradient(45.18% 46.89% at 50% 50%, #7D06F4 0%, rgba(73, 3, 142, 0) 100%);
  }
}
@media (width <= 750.98px) {
  .game__light--purple-right {
    width: 579.152px;
    height: 522.355px;
    transform: rotate(-98.654deg);
    flex-shrink: 0;
    border-radius: 579.152px;
    opacity: 0.55;
    right: calc(0% - 300px);
    top: 80%;
    background: radial-gradient(45.18% 46.89% at 50% 50%, #7D06F4 0%, rgba(73, 3, 142, 0) 100%);
  }
}

.telegram {
  max-width: 1920px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-inline: 31px 89px;
  position: relative;
}
.telegram::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 0, 255, 0) 0%, rgb(160, 80, 255) 50%, rgba(255, 0, 255, 0) 100%);
  pointer-events: none;
  display: block;
}
@media (width <= 1917.98px) {
  .telegram {
    padding: 0px 41px 0px 41px;
    max-width: 1400px;
  }
}
@media (width <= 1265.98px) {
  .telegram {
    padding: 0px 41px 0px 41px;
    justify-content: center;
  }
}
@media (width <= 750.98px) {
  .telegram {
    align-items: center;
    padding: 0px 30px 24px 30px;
  }
}
.telegram__section--1 {
  display: flex;
  gap: 44px;
  background: url(../images/background-numbers-1.png);
  background-repeat: no-repeat;
  background-position: 50px bottom;
  margin-bottom: 76px;
  margin-inline: 52px 52px;
  position: relative;
  bottom: 35px;
  width: 100%;
}
@media (width <= 1917.98px) {
  .telegram__section--1 {
    background-position: 0px bottom;
    margin-inline: 0;
    bottom: 15px;
    gap: 0px;
    justify-content: space-between;
  }
}
@media (width <= 1265.98px) {
  .telegram__section--1 {
    background-position: right top;
    gap: 35px;
    bottom: 0;
    max-width: 850px;
  }
}
@media screen and (max-width: 950px) {
  .telegram__section--1 {
    flex-direction: column;
  }
}
@media (width <= 750.98px) {
  .telegram__section--1 {
    width: 100%;
    align-items: center;
    max-width: 420px;
    background-position: right 80px;
    background-size: 50px 148px;
  }
}
.telegram__section-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
@media (width <= 1917.98px) {
  .telegram__section-wrapper {
    gap: 20px;
  }
}
@media (width <= 1265.98px) {
  .telegram__section-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
}
.telegram__text-wrapper {
  display: flex;
  gap: 160px;
  background: url(../images/metrics1-section-1.png);
  background-repeat: no-repeat;
  background-size: 151px 307px;
  background-position: 620px 20px;
  width: 65%;
}
@media (width <= 1917.98px) {
  .telegram__text-wrapper {
    width: 656px;
    gap: 128px;
    justify-content: space-between;
    background-size: 125px 307px;
    background-position: 525px 20px;
  }
}
@media (width <= 1265.98px) {
  .telegram__text-wrapper {
    width: 70%;
    margin-top: 60px;
    background: none;
  }
}
@media screen and (max-width: 950px) {
  .telegram__text-wrapper {
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    right: 0;
  }
}
@media (width <= 750.98px) {
  .telegram__text-wrapper {
    margin-top: 0px;
  }
}
.telegram__text {
  margin-left: 184px;
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: var(--font-size-desktop-text);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  width: 55%;
}
.telegram__text--section1 {
  height: 123px;
  width: 62%;
}
@media (width <= 1917.98px) {
  .telegram__text--section1 {
    width: 58%;
  }
}
@media (width <= 1265.98px) {
  .telegram__text--section1 {
    width: auto;
    height: auto;
  }
}
.telegram__text--section2 {
  width: 62%;
}
@media (width <= 1917.98px) {
  .telegram__text--section2 {
    width: 59%;
  }
}
.telegram__text--section3 {
  width: 68%;
}
@media (width <= 1917.98px) {
  .telegram__text {
    font-size: var(--font-size-laptop-text);
  }
}
@media (width <= 1265.98px) {
  .telegram__text {
    width: 80%;
    margin-left: 0;
  }
}
@media (width <= 750.98px) {
  .telegram__text {
    font-size: var(--font-size-mobile-text);
    margin-left: 0;
    width: 100%;
  }
  .telegram__text--section1 {
    width: 88%;
  }
}
.telegram__title-wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 31px;
  margin-left: 100px;
}
@media (width <= 1917.98px) {
  .telegram__title-wrapper {
    margin-left: 0px;
    gap: 25px;
  }
}
@media (width <= 1265.98px) {
  .telegram__title-wrapper {
    margin-left: 0;
    margin-top: 0px;
    gap: 0px;
    width: 100%;
    max-width: 850px;
  }
}
@media (width <= 750.98px) {
  .telegram__title-wrapper {
    max-width: 420px;
    width: 100%;
    align-self: flex-start;
    margin-top: 30px;
  }
}
.telegram__title {
  color: var(--color-text-white);
  font-family: var(--font-family-accent);
  font-size: var(--font-size-desktop-title);
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
@media (width <= 1917.98px) {
  .telegram__title {
    font-size: var(--font-size-laptop-title);
  }
}
@media (width <= 1265.98px) {
  .telegram__title {
    font-size: 45px;
  }
}
@media (width <= 750.98px) {
  .telegram__title {
    font-size: var(--font-size-mobile-title);
  }
}
.telegram__title-shadow {
  color: var(--color-title-game-telegram);
  text-shadow: var(--text-shadow--title);
  font-family: var(--font-family-accent);
  font-size: var(--font-size-desktop-title);
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
@media (width <= 1917.98px) {
  .telegram__title-shadow {
    font-size: var(--font-size-laptop-title);
  }
}
@media (width <= 1265.98px) {
  .telegram__title-shadow {
    font-size: 45px;
  }
}
@media (width <= 750.98px) {
  .telegram__title-shadow {
    font-size: var(--font-size-mobile-title);
  }
}
.telegram__description-wrapper {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  gap: 23px;
}
@media (width <= 1917.98px) {
  .telegram__description-wrapper {
    gap: 28px;
  }
}
@media (width <= 1265.98px) {
  .telegram__description-wrapper {
    justify-content: flex-start;
    gap: 30px;
  }
}
@media (width <= 750.98px) {
  .telegram__description-wrapper {
    gap: 20px;
  }
}
.telegram__decription-bg {
  margin-left: 158px;
  padding-inline: 28px 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 464px;
  height: 117px;
  border: 2px solid rgba(125, 6, 244, 0.3);
  background: linear-gradient(117deg, rgba(125, 6, 244, 0.2) 3.34%, rgba(24, 0, 48, 0.2) 105.31%);
}
@media (width <= 1917.98px) {
  .telegram__decription-bg {
    padding: 0;
    padding-left: 20px;
    padding-right: 20px;
    width: 369px;
    height: 117px;
  }
}
@media (width <= 1265.98px) {
  .telegram__decription-bg {
    padding: 8px 13px;
    margin-left: 0px;
    width: 80%;
    align-self: flex-start;
    height: auto;
  }
}
@media (width <= 750.98px) {
  .telegram__decription-bg {
    width: 100%;
  }
}
.telegram__description {
  color: var(--color-text-game);
  font-family: var(--font-family-base);
  font-size: var(--font-size-desktop-text);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
@media (width <= 1917.98px) {
  .telegram__description {
    font-size: var(--font-size-laptop-text);
  }
}
@media (width <= 1265.98px) {
  .telegram__description {
    font-size: 16px;
  }
}
@media (width <= 750.98px) {
  .telegram__description {
    font-size: var(--font-size-mobile-text);
  }
}
.telegram__metrics1 {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 40%;
  bottom: 20px;
  white-space: nowrap;
  position: relative;
}
@media (width <= 1917.98px) {
  .telegram__metrics1 {
    gap: 66px;
    width: auto;
    bottom: 25px;
  }
}
@media (width <= 1265.98px) {
  .telegram__metrics1 {
    flex-direction: row;
    justify-content: space-between;
    gap: 44px;
    width: 80%;
    bottom: 0;
  }
}
@media (width <= 750.98px) {
  .telegram__metrics1 {
    width: 100%;
    gap: 5px;
  }
}
.telegram__mertic {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.telegram__mertic-title {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: var(--font-size-desktop-button-graph);
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}
@media (width <= 1917.98px) {
  .telegram__mertic-title {
    font-size: var(--font-size-laptop-button-graph);
  }
}
@media (width <= 1265.98px) {
  .telegram__mertic-title {
    font-size: 24px;
  }
  .telegram__mertic-title--tablet {
    color: var(--color-title-game-telegram);
  }
}
@media (width <= 750.98px) {
  .telegram__mertic-title {
    font-size: var(--font-size-mobile-text);
  }
  .telegram__mertic-title--tablet {
    text-align: center;
  }
}
@media (width <= 750.98px) {
  .telegram__mertic {
    gap: 3px;
  }
}
.telegram__metric-text {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: var(--font-size-desktop-text);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
@media (width <= 1917.98px) {
  .telegram__metric-text {
    font-size: var(--font-size-laptop-text);
  }
}
@media (width <= 1265.98px) {
  .telegram__metric-text {
    font-size: 16px;
  }
}
@media (width <= 750.98px) {
  .telegram__metric-text {
    font-size: 10px;
  }
  .telegram__metric-text--mobile {
    text-align: center;
    white-space: normal;
  }
}
.telegram__metrics2 {
  display: flex;
  justify-content: center;
  gap: 97px;
  position: relative;
  width: 45%;
  bottom: 10px;
  background: url(../images/diagram-metric.png);
  background-repeat: no-repeat;
  background-position: left bottom;
}
@media (width <= 1917.98px) {
  .telegram__metrics2 {
    position: absolute;
    justify-content: flex-start;
    background: url(../images/diagram-metric-laptop.png);
    background-repeat: no-repeat;
    background-size: 357px 407px;
    background-position: left bottom;
    bottom: 0;
    right: 0%;
    width: 357px;
    height: 407px;
    gap: 38px;
  }
}
@media (width <= 1265.98px) {
  .telegram__metrics2 {
    right: 0%;
  }
}
@media screen and (max-width: 950px) {
  .telegram__metrics2 {
    position: relative;
    background: url(../images/diagram-metric-mobile.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 600px 92px;
    width: 100%;
    height: 150px;
    margin-top: 50px;
    gap: 335px;
    justify-content: center;
  }
}
@media (width <= 750.98px) {
  .telegram__metrics2 {
    gap: 54px;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 90px;
    background-position: center bottom;
    background-size: 311px 52px;
    margin-top: 0px;
    right: 0;
  }
}
.telegram__metric2--diagram {
  position: absolute;
}
.telegram__metric2--diagram:nth-child(1) {
  left: calc(25% + 10px);
  top: calc(30% - 95px);
}
.telegram__metric2--diagram:nth-child(2) {
  top: 5%;
  right: calc(-4% + 41px);
  width: 28%;
}
@media (width <= 1917.98px) {
  .telegram__metric2--diagram:nth-child(1) {
    left: calc(0% + 10px);
    top: calc(0% - 95px);
  }
  .telegram__metric2--diagram:nth-child(2) {
    top: 11%;
    right: calc(-5% + 41px);
  }
}
@media screen and (max-width: 950px) {
  .telegram__metric2--diagram {
    position: relative;
  }
  .telegram__metric2--diagram:nth-child(1) {
    left: 60px;
    top: -42px;
    bottom: 5%;
  }
  .telegram__metric2--diagram:nth-child(2) {
    top: -37px;
    right: 100px;
  }
}
@media (width <= 750.98px) {
  .telegram__metric2--diagram:nth-child(1) {
    left: -22px;
    top: -23px;
    bottom: 5%;
  }
  .telegram__metric2--diagram:nth-child(2) {
    top: -25px;
    right: 12px;
    width: 34%;
  }
}
.telegram__metric2-title {
  color: var(--color-text-metric);
  font-family: var(--font-family-base);
  font-size: var(--font-size-desktop-button-graph);
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  text-transform: uppercase;
}
@media (width <= 1917.98px) {
  .telegram__metric2-title {
    font-size: var(--font-size-laptop-button-graph);
  }
}
@media (width <= 750.98px) {
  .telegram__metric2-title {
    font-size: var(--font-size-mobile-text);
  }
}
.telegram__section--2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 36.5%;
  margin-left: 102px;
  background: url(../images/background-numbers-2.png), url(../images/vertcical-three-stars.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left top, center 66%;
}
@media (width <= 1917.98px) {
  .telegram__section--2 {
    margin-left: 0px;
    width: 44%;
    background-position: left top, center 62%;
  }
}
@media (width <= 1265.98px) {
  .telegram__section--2 {
    width: 100%;
    max-width: 850px;
    background: url(../images/background-numbers-2.png);
    background-repeat: no-repeat;
    background-position: right top;
    margin-left: 0;
  }
}
@media (width <= 750.98px) {
  .telegram__section--2 {
    max-width: 420px;
    background-size: 100px 140px;
  }
}
.telegram__text--section2 {
  margin-top: 125px;
  margin-left: 0px;
}
@media (width <= 1265.98px) {
  .telegram__text--section2 {
    align-self: flex-start;
    margin-top: 0px;
    width: 80%;
  }
}
@media (width <= 750.98px) {
  .telegram__text--section2 {
    width: 88%;
  }
}
.telegram__metrics3 {
  margin-top: 89px;
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 100%;
  background: url(../images/line-star-1.png);
  background-repeat: no-repeat;
  background-position: center 75%;
  background-size: contain;
}
@media (width <= 1917.98px) {
  .telegram__metrics3 {
    margin-top: 60px;
    background-size: contain;
  }
}
@media (width <= 750.98px) {
  .telegram__metrics3 {
    background: url(../images/line-star-01-mobile.png);
    background-repeat: no-repeat;
    background-position: center 75%;
    background-size: contain;
    margin-top: 20px;
  }
}
.telegram__metrics4 {
  display: flex;
  margin-top: 191px;
  position: relative;
  justify-content: space-between;
  width: 100%;
  background: url(../images/line-star-2.png);
  background-repeat: no-repeat;
  background-position: center 75%;
  background-size: contain;
}
@media (width <= 1265.98px) {
  .telegram__metrics4 {
    margin-top: 40px;
  }
}
@media (width <= 750.98px) {
  .telegram__metrics4 {
    background: url(../images/line-star-02-mobile.png);
    background-repeat: no-repeat;
    background-position: center 75%;
    background-size: contain;
    margin-top: 26px;
  }
}
.telegram__metric--position {
  position: relative;
  left: 25px;
}
@media (width <= 750.98px) {
  .telegram__metric--position {
    left: 10px;
  }
}
.telegram__metric--position2 {
  position: absolute;
  width: 60%;
  right: -135px;
}
@media (width <= 1917.98px) {
  .telegram__metric--position2 {
    right: -115px;
  }
}
@media (width <= 1265.98px) {
  .telegram__metric--position2 {
    right: -182px;
  }
}
@media (width <= 750.98px) {
  .telegram__metric--position2 {
    right: -50px;
  }
}
.telegram__metric--position4 {
  position: relative;
  right: -70px;
  width: 50%;
}
@media (width <= 1917.98px) {
  .telegram__metric--position4 {
    right: -60px;
  }
}
@media (width <= 1265.98px) {
  .telegram__metric--position4 {
    width: 50%;
    right: -100px;
  }
}
@media (width <= 750.98px) {
  .telegram__metric--position4 {
    right: -20px;
  }
}
.telegram__section--3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin-right: 60px;
  margin-bottom: 100px;
  width: 38%;
  background-image: url(../images/background-numbers-3.png);
  background-repeat: no-repeat;
  background-position: left top;
}
@media (width <= 1917.98px) {
  .telegram__section--3 {
    margin-right: 0;
    width: 52%;
    margin-bottom: 125px;
  }
}
@media (width <= 1265.98px) {
  .telegram__section--3 {
    width: 100%;
    max-width: 850px;
    background-position: right top;
    margin-bottom: 80px;
  }
}
@media (width <= 750.98px) {
  .telegram__section--3 {
    max-width: 420px;
    background-size: 120px 180px;
    margin-bottom: 0px;
  }
}
.telegram__text--section3 {
  margin-left: 0px;
  margin-top: 125px;
  margin-bottom: 58px;
}
@media (width <= 1265.98px) {
  .telegram__text--section3 {
    align-self: flex-start;
    margin-top: 0px;
    width: 80%;
  }
}
@media (width <= 750.98px) {
  .telegram__text--section3 {
    margin-bottom: 20px;
    width: 86%;
  }
}
.telegram__charts {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media (width <= 750.98px) {
  .telegram__charts {
    width: 655px;
  }
}
.telegram__chart-img {
  margin-bottom: 9px;
  flex-shrink: 0;
}
@media (width <= 750.98px) {
  .telegram__chart-img {
    width: 652px;
    height: 252px;
    max-width: none;
    display: block;
    transition: left 0.1s;
    cursor: grab;
  }
}
@media (width <= 1917.98px) {
  .telegram__chart-container:nth-child(1) {
    order: 1;
  }
  .telegram__chart-container:nth-child(3) {
    order: 3;
  }
}
@media (width <= 1265.98px) {
  .telegram__chart-container:nth-child(1) {
    order: 0;
  }
}
@media (width <= 750.98px) {
  .telegram__chart-container {
    width: 100%;
    max-width: 100vw;
    height: 252px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-left: 30px;
    padding-right: 30px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .telegram__chart-container::-webkit-scrollbar {
    display: none;
  }
  .telegram__chart-container:nth-child(1) {
    order: 0;
  }
}
.telegram__subImg-text {
  color: var(--color-text-grey);
  text-align: center;
  font-family: var(--font-family-base);
  font-size: var(--font-size-desktop-text);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 16px;
  position: relative;
}
@media (width <= 1917.98px) {
  .telegram__subImg-text {
    font-size: var(--font-size-laptop-text);
  }
  .telegram__subImg-text:nth-child(2) {
    order: 0;
  }
  .telegram__subImg-text:nth-child(4) {
    order: 3;
  }
}
@media (width <= 1265.98px) {
  .telegram__subImg-text {
    align-self: flex-start;
    text-align: left;
  }
  .telegram__subImg-text:first-child {
    order: 1;
  }
  .telegram__subImg-text:last-child {
    order: 3;
  }
  .telegram__subImg-text::after {
    content: "";
    content: "";
    width: 200px;
    height: 15px;
    display: inline-block;
    margin: 0 16px;
    vertical-align: middle;
    position: relative;
    background: url(../images/arrow-mobile.png);
    background-repeat: no-repeat;
    background-size: 180px 10px;
  }
}
@media (width <= 750.98px) {
  .telegram__subImg-text {
    font-size: 10px;
    position: relative;
    left: calc(655px - 74%);
  }
  .telegram__subImg-text::after {
    width: 150px;
    height: 10px;
    background-size: 110px 6px;
  }
  .telegram__subImg-text:nth-child(2) {
    margin-top: 10px;
  }
  .telegram__subImg-text:nth-child(4) {
    margin-top: 10px;
  }
  .telegram__subImg-text:nth-child(4)::after {
    margin: 0 16px;
  }
}
.telegram__background-lights {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.telegram__light {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(140px);
}
@media (width <= 750.98px) {
  .telegram__light {
    filter: blur(0px);
  }
}
.telegram__light--left {
  width: 1000px;
  height: 1200px;
  background: radial-gradient(45.18% 46.89% at 50% 50%, #7D06F4 0%, rgba(73, 3, 142, 0) 100%);
  opacity: 0.6;
  transform: rotate(-5.832deg);
  top: 72%;
  left: -28.5%;
  translate: 0 -50%;
}
@media (width <= 1917.98px) {
  .telegram__light--left {
    top: 55%;
    left: -40%;
  }
}
@media (width <= 1265.98px) {
  .telegram__light--left {
    left: calc(0% - 600px);
  }
}
@media (width <= 750.98px) {
  .telegram__light--left {
    width: 587.497px;
    height: 553.689px;
    transform: rotate(-5.832deg);
    flex-shrink: 0;
    border-radius: 587.497px;
    opacity: 0.6;
    background: radial-gradient(45.18% 46.89% at 50% 50%, #7D06F4 0%, rgba(73, 3, 142, 0) 100%);
    top: 60%;
    left: calc(0% - 330px);
  }
}
.telegram__light--orange-right {
  width: 809.336px;
  height: 1307.807px;
  transform: rotate(14.419deg);
  flex-shrink: 0;
  border-radius: 1307.807px;
  opacity: 0.72;
  background: radial-gradient(45.18% 46.89% at 50% 50%, rgba(255, 85, 47, 0.61) 0%, rgba(73, 3, 142, 0) 100%);
  bottom: -25%;
  right: -55%;
}
@media (width <= 1265.98px) {
  .telegram__light--orange-right {
    right: calc(0% - 700px);
  }
}
@media (width <= 750.98px) {
  .telegram__light--orange-right {
    width: 417.64px;
    height: 674.866px;
    transform: rotate(14.419deg);
    flex-shrink: 0;
    border-radius: 674.866px;
    opacity: 0.62;
    background: radial-gradient(45.18% 46.89% at 50% 50%, rgba(255, 85, 47, 0.61) 0%, rgba(73, 3, 142, 0) 100%);
    bottom: -20%;
    right: 0;
    left: calc(0% - 270px);
  }
}
.telegram__light--purple-right {
  width: 1551.547px;
  height: 1867.841px;
  transform: rotate(-5.832deg);
  flex-shrink: 0;
  border-radius: 1867.841px;
  opacity: 0.7;
  background: radial-gradient(45.18% 46.89% at 50% 50%, #7D06F4 0%, rgba(73, 3, 142, 0) 100%);
  bottom: -30%;
  right: -75%;
}
@media (width <= 1265.98px) {
  .telegram__light--purple-right {
    right: calc(0% - 1000px);
  }
}
@media (width <= 750.98px) {
  .telegram__light--purple-right {
    width: 489.902px;
    height: 515.831px;
    transform: rotate(-4.2deg);
    flex-shrink: 0;
    border-radius: 515.831px;
    background: radial-gradient(45.18% 46.89% at 50% 50%, #7D06F4 0%, rgba(73, 3, 142, 0) 100%);
    bottom: -7%;
    opacity: 0.6;
    right: 0;
    left: calc(0% - 330px);
  }
}

.text-color--orange,
.text-color--purple {
  margin-top: 55px;
}
@media (width <= 750.98px) {
  .text-color--orange,
  .text-color--purple {
    margin-top: 26px;
  }
}

.text-color--orange,
.title-color--orange {
  color: var(--color-text-orange);
}
@media (width <= 750.98px) {
  .text-color--orange,
  .title-color--orange {
    color: var(--color-title-game-telegram);
  }
}

.text-color--purple,
.title-color--purple {
  color: var(--color-text-metric);
}

.text-color--grey {
  color: var(--color-text-grey);
}

@media (width <= 750.98px) {
  .size--mobile {
    font-size: 10px;
  }
}
.newsletter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  z-index: 1;
  position: relative;
  background: url(../images/background/background-prefooter.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.newsletter::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 0, 255, 0) 0%, rgb(160, 80, 255) 50%, rgba(255, 0, 255, 0) 100%);
  pointer-events: none;
  display: block;
}
.newsletter__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 45px;
}
@media (width <= 1917.98px) {
  .newsletter__wrapper {
    gap: 0px;
  }
}
.newsletter__form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.newsletter__subtitle {
  margin-top: 21px;
  color: var(--color-text-white);
  text-align: center;
  font-family: var(--font-family-base);
  font-size: var(--font-size-desktop-button-graph);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.newsletter__subtitle::before, .newsletter__subtitle::after {
  content: "";
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 16px;
  vertical-align: middle;
  position: relative;
  bottom: 2px;
  background: url(../images/star.svg);
  background-repeat: no-repeat;
}
@media (width <= 1917.98px) {
  .newsletter__subtitle {
    font-size: var(--font-size-laptop-button-graph);
    margin-bottom: 37px;
  }
  .newsletter__subtitle::before, .newsletter__subtitle::after {
    margin: 0 30px;
  }
}
@media (width <= 1265.98px) {
  .newsletter__subtitle {
    margin-top: 45px;
    font-size: 23px;
    margin-bottom: 23px;
  }
  .newsletter__subtitle::before, .newsletter__subtitle::after {
    margin: 0 16px;
  }
}
@media (width <= 750.98px) {
  .newsletter__subtitle {
    margin-top: 31px;
    font-size: 12px;
  }
  .newsletter__subtitle::before, .newsletter__subtitle::after {
    background: url(../images/star-mobile.svg);
    background-repeat: no-repeat;
    width: 13.5px;
    height: 13.5px;
    margin: 0 5px;
  }
}
.newsletter__title {
  color: var(--color-text-white);
  text-align: center;
  font-family: var(--font-family-accent);
  font-size: var(--font-size-desktop-title);
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
@media (width <= 1917.98px) {
  .newsletter__title {
    font-size: var(--font-size-laptop-title);
    margin-bottom: 50px;
  }
}
@media (width <= 1265.98px) {
  .newsletter__title {
    font-size: 45px;
  }
}
@media (width <= 750.98px) {
  .newsletter__title {
    margin-bottom: 20px;
    font-size: var(--font-size-mobile-title);
  }
}
.newsletter__note {
  margin-top: 10px;
  color: var(--color-text-grey);
  text-align: center;
  font-family: var(--font-family-base);
  font-size: var(--font-size-desktop-text);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
@media (width <= 1917.98px) {
  .newsletter__note {
    font-size: var(--font-size-laptop-text);
  }
}
@media (width <= 1265.98px) {
  .newsletter__note {
    font-size: 12px;
  }
}
@media (width <= 750.98px) {
  .newsletter__note {
    margin-top: 10px;
    font-size: 8px;
  }
}
.newsletter__button {
  margin-block: 41px 208px;
}
@media (width <= 1917.98px) {
  .newsletter__button {
    margin-block: 30px 80px;
  }
}
@media (width <= 750.98px) {
  .newsletter__button {
    margin-block: 20px 32px;
  }
}
.newsletter__glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(150px);
}
.newsletter__glow--purple {
  width: 1324.219px;
  height: 1229.467px;
  top: -550px;
  right: -650px;
  transform: rotate(-10.577deg);
  background: radial-gradient(45.18% 46.89% at 50% 50%, #7D06F4 0%, rgba(73, 3, 142, 0) 100%);
  opacity: 0.7;
}
@media (width <= 1917.98px) {
  .newsletter__glow--purple {
    display: none;
  }
}
.newsletter__glow--orange {
  width: 1228.157px;
  height: 1519.483px;
  top: 0%;
  right: -45%;
  transform: rotate(12.745deg) translateY(-50%);
  background: radial-gradient(45.18% 46.89% at 50% 50%, rgba(255, 85, 47, 0.61) 0%, rgba(73, 3, 142, 0) 100%);
  opacity: 0.72;
}
@media (width <= 1917.98px) {
  .newsletter__glow--orange {
    display: none;
  }
}

.input-wrapper {
  position: relative;
  width: 812px;
  height: 80px;
}
@media (width <= 1265.98px) {
  .input-wrapper {
    width: 650px;
    height: 65px;
  }
}
@media (width <= 750.98px) {
  .input-wrapper {
    width: 320.787px;
    height: 36.137px;
  }
}

.input-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  fill: linear-gradient(89deg, rgba(49, 1, 97, 0.9) 1.21%, rgba(33, 0, 67, 0.9) 98.79%);
  stroke: rgba(76, 4, 152, 0.8);
  stroke-width: 2px;
}

.newsletter__input {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 30px;
  text-align: center;
  z-index: 1;
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: var(--font-size-desktop-button-graph);
  font-weight: 500;
  line-height: 80px;
}
@media (width <= 1917.98px) {
  .newsletter__input {
    font-size: var(--font-size-laptop-button-graph);
  }
}
@media (width <= 750.98px) {
  .newsletter__input {
    font-size: var(--font-size-mobile-button-graph);
  }
}
.newsletter__input::placeholder {
  color: var(--color-text-white);
  opacity: 1;
  transition: color 0.2s ease;
}
.newsletter__input:focus::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

/* --- Отдельно состояния --- */
.newsletter__input:focus ~ .input-border .svg-fill,
.newsletter__input.filled ~ .input-border .svg-fill {
  fill: url(#paint-focus);
  transition: fill 0.2s ease;
}

.newsletter__input.error ~ .input-border .svg-fill {
  fill: url(#paint-error);
  transition: fill 0.2s ease;
}

.newsletter__input:not(.filled):not(.error) ~ .input-border .svg-fill {
  fill: url(#paint0);
  transition: fill 0.2s ease;
}

/* Ошибка бордера */
.newsletter__input.error ~ .input-border {
  stroke: rgba(244, 43, 35, 0.8);
}

.error-message {
  margin-top: 8px;
  width: 100%;
  color: #F42B23;
  font-size: 14px;
  font-family: var(--font-family-base);
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: left;
  padding-left: 20px;
}
@media (width <= 1265.98px) {
  .error-message {
    margin-top: 0px;
  }
}
@media (width <= 750.98px) {
  .error-message {
    font-size: 10px;
  }
}

.error-message.visible {
  opacity: 1;
}

.footer {
  width: 100%;
  background: url(../images/background/bg-footer.png);
  background-repeat: no-repeat;
  background-size: cover;
  justify-items: center;
}
.footer__content {
  position: relative;
  width: 100%;
  display: flex;
  gap: 64px;
  flex-direction: column;
  padding-block: 50px 35px;
  max-width: 1600px;
  width: 100%;
}
@media (width <= 1917.98px) {
  .footer__content {
    gap: 69px;
    padding-block: 55px 38px;
    max-width: 1120px;
  }
}
@media (width <= 1265.98px) {
  .footer__content {
    gap: 45px;
    padding: 40px 40px 30px 40px;
    max-width: 800px;
  }
}
@media (width <= 750.98px) {
  .footer__content {
    gap: 30px;
    padding: 20px 30px 20px 30px;
    max-width: 400px;
  }
}
.footer__navigation {
  display: flex;
  gap: 295px;
}
@media (width <= 1917.98px) {
  .footer__navigation {
    gap: 213px;
  }
}
@media (width <= 1265.98px) {
  .footer__navigation {
    gap: 100px;
  }
}
@media (width <= 750.98px) {
  .footer__navigation {
    justify-content: space-between;
  }
}
.footer__contact {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (width <= 750.98px) {
  .footer__contact {
    position: relative;
  }
}
.footer__text-block {
  display: flex;
  gap: 393px;
  align-items: center;
}
@media (width <= 1917.98px) {
  .footer__text-block {
    gap: 224px;
  }
}
@media (width <= 1265.98px) {
  .footer__text-block {
    gap: 65px;
  }
}
@media (width <= 750.98px) {
  .footer__text-block {
    gap: 15px;
  }
}
.footer__text-parnetship {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.footer__text {
  color: var(--color-text-grey);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
@media (width <= 750.98px) {
  .footer__text {
    font-size: 8px;
  }
}
.footer__link {
  color: var(--color-text-grey);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
}
.footer__link:hover, .footer__link:focus {
  text-decoration: underline;
}
@media (width <= 750.98px) {
  .footer__link {
    font-size: 8px;
  }
}
.footer__menu {
  display: grid;
  max-width: 361px;
  width: 50%;
}
.footer__menu-list {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto;
  gap: 30px 150px;
  align-items: center;
  justify-self: start;
}
@media (width <= 1917.98px) {
  .footer__menu-list {
    gap: 32px 74px;
  }
}
@media (width <= 1265.98px) {
  .footer__menu-list {
    width: 300px;
    gap: 20px 50px;
  }
}
.footer__menu-item:nth-child(1) {
  grid-row: 1;
  grid-column: 1;
}
.footer__menu-item:nth-child(2) {
  grid-row: 1;
  grid-column: 2;
}
.footer__menu-item:nth-child(3) {
  grid-row: 2;
  grid-column: 1;
}
.footer__menu-item:nth-child(4) {
  grid-row: 2;
  grid-column: 2;
}
.footer__menu-item--big {
  grid-row: 1/3;
  grid-column: 3;
}
.footer__menu-link {
  color: var(--color-text-white);
  font-family: var(--font-family-accent);
  font-size: var(--font-size-desktop-text);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
  text-align: center;
  transition: color var(--transiotion-duration) ease;
}
.footer__menu-link:hover {
  color: var(--color-link-hover);
}
@media (width <= 1917.98px) {
  .footer__menu-link {
    font-size: var(--font-size-laptop-text);
  }
}
@media (width <= 1265.98px) {
  .footer__menu-link {
    font-size: 16px;
  }
}
.footer__scroll-top {
  position: absolute;
  width: 50px;
  height: 50px;
  right: -10px;
  top: 30px;
  background-color: transparent;
  border: none;
  outline: none;
  justify-self: center;
  align-items: center;
  cursor: pointer;
  z-index: 5;
}
.footer__scroll-top:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}
@media (width <= 1917.98px) {
  .footer__scroll-top {
    top: 34px;
  }
}
@media (width <= 1265.98px) {
  .footer__scroll-top {
    right: 25px;
  }
}
.footer__scroll-top--mobile {
  position: relative;
  width: 20px;
  height: 12px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 5;
}
.footer__scroll-top--mobile:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}
.footer__scroll-top--mobile svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 9px;
  color: var(--color-text-white);
}
.footer__social-link {
  width: 40px;
  height: 40px;
}
@media (width <= 1917.98px) {
  .footer__logo-img {
    width: 160px;
    height: 55px;
    flex-shrink: 0;
  }
}
@media (width <= 1917.98px) and (width <= 1265.98px) {
  .footer__logo-img {
    width: 120px;
    height: 43px;
  }
}
@media (width <= 1917.98px) and (width <= 750.98px) {
  .footer__logo-img {
    width: 84px;
    height: 30px;
  }
}

.newsletter__success {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 879px;
  height: 493px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.newsletter__success.visible {
  opacity: 1;
  visibility: visible;
}
.newsletter__success .newsletter__bg-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0px 4px 70px rgba(232, 0, 218, 0.2));
  z-index: 0;
  pointer-events: none;
}
.newsletter__success .newsletter__circles {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 330px;
  height: 384px;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.newsletter__success .newsletter__success-text {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: var(--font-family-accent);
  font-size: var(--font-size-desktop-button-graph);
  line-height: 110%;
  padding: 20px;
}
@media (width <= 1265.98px) {
  .newsletter__success .newsletter__success-text {
    font-size: 26px;
  }
}
@media (width <= 750.98px) {
  .newsletter__success {
    width: 320px;
    height: 250px;
  }
  .newsletter__success .newsletter__bg-shadow {
    width: 100%;
    height: auto;
  }
  .newsletter__success .newsletter__circles {
    width: 150px;
    height: 165px;
    transform: translate(-50%, -70%);
  }
  .newsletter__success .newsletter__success-text {
    font-size: 20px;
    padding: 15px;
    bottom: 35px;
  }
}

.action {
  width: 100%;
  max-width: 1920px;
  display: flex;
  min-height: 940px;
  background-image: url(../images/action__cars.png);
  background-size: 1170px 940px;
  background-position: left top;
  background-repeat: no-repeat;
  position: relative;
  padding-right: 86px;
}
@media (width <= 1917.98px) {
  .action {
    max-width: 1400px;
    min-height: 690px;
    background-size: 693px 588px;
    margin-bottom: 54px;
    padding-right: 20px;
    background-position: calc(0% - 30px);
  }
}
@media (width <= 1265.98px) {
  .action {
    min-height: unset;
    margin-bottom: 0px;
    background-image: linear-gradient(to top, rgb(0, 0, 0) 15%, rgba(0, 0, 0, 0) 50%), url(../images/action__cars.png);
    background-position: calc(50% + 15px) top;
    padding-right: 0px;
  }
}
@media (width <= 750.98px) {
  .action {
    align-items: center;
    justify-content: center;
    background-size: 410px 350px;
    margin-bottom: 31px;
  }
}
.action__wrapper {
  display: flex;
  position: relative;
  width: 100%;
  flex-direction: column;
  gap: 100px;
  padding-right: 70px;
  padding-top: 117px;
}
@media (width <= 1917.98px) {
  .action__wrapper {
    padding-top: 50px;
    justify-content: space-between;
  }
}
.action__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 95px;
  height: 715.5px;
  flex-shrink: 0;
  background-image: url(../images/line-verical-right.png);
  background-size: 95px 715.5px;
  background-position: right 117px;
  background-repeat: no-repeat;
}
@media (width <= 1917.98px) {
  .action__wrapper::after {
    background-position: -20px 50px;
  }
}
@media (width <= 1265.98px) {
  .action__wrapper {
    align-items: center;
    justify-content: center;
    padding-top: 360px;
    padding-left: 50px;
    padding-right: 50px;
  }
  .action__wrapper::before {
    content: "";
    position: absolute;
    top: 410px;
    left: calc(50% - 370px);
    width: 74px;
    height: 515.5px;
    background: url(../images/line-vertical-left.png) no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
  }
}
@media (width <= 1265.98px) and (width <= 750.98px) {
  .action__wrapper::before {
    top: 290px;
    left: calc(0% - 25px);
    width: 29.648px;
    height: 286.665px;
  }
}
@media (width <= 1265.98px) {
  .action__wrapper::after {
    content: "";
    position: absolute;
    top: 410px;
    left: calc(50% + 304px);
    width: 74px;
    height: 515.5px;
    background: url(../images/line-verical-right.png) no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
    background-position: left top;
  }
}
@media (width <= 1265.98px) and (width <= 750.98px) {
  .action__wrapper::after {
    top: 290px;
    left: calc(100% - 5px);
    width: 29.648px;
    height: 286.665px;
  }
}
@media (width <= 750.98px) {
  .action__wrapper {
    max-width: 420px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 270px;
    gap: 20px;
    width: 80%;
  }
}
.action__text-block {
  display: flex;
  width: 35%;
  gap: 30px;
  flex-direction: column;
  margin-left: auto;
}
@media (width <= 1917.98px) {
  .action__text-block {
    width: 60%;
    max-width: 635px;
  }
}
@media (width <= 1265.98px) {
  .action__text-block {
    width: 100%;
    margin-left: unset;
  }
}
@media (width <= 750.98px) {
  .action__text-block {
    gap: 20px;
  }
}
.action__links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 35%;
  margin-left: auto;
}
@media (width <= 1917.98px) {
  .action__links {
    width: 100%;
    max-width: 650px;
  }
}
@media (width <= 1265.98px) {
  .action__links {
    flex-direction: column;
    margin-left: unset;
    justify-content: center;
    align-items: center;
  }
}
@media (width <= 750.98px) {
  .action__links {
    gap: 20px;
  }
}
.action__links-social {
  gap: 20px;
}
@media (width <= 1265.98px) {
  .action__links-social {
    order: 1;
  }
}
@media (width <= 750.98px) {
  .action__links-social {
    gap: 11px;
  }
}
.action__links-stores {
  display: flex;
  width: 100%;
  gap: 60px;
  justify-content: flex-end;
}
@media (width <= 1265.98px) {
  .action__links-stores {
    gap: 20px;
    order: 0;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
  }
}
@media (width <= 750.98px) {
  .action__links-stores {
    flex-direction: column;
  }
}
.action__title {
  color: #FFBCFF;
  text-shadow: 0 0 84.107px #7D06F4, 0 0 48.061px #7D06F4, 0 0 28.036px #7D06F4, 0 0 14.018px #FFBCFF, 0 0 4.005px #FFBCFF, 0 0 2.003px #FFBCFF;
  font-family: Involve;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 1917.98px) {
  .action__title {
    font-size: 65px;
  }
}
@media (width <= 1265.98px) {
  .action__title {
    text-align: center;
  }
}
@media (width <= 750.98px) {
  .action__title {
    font-size: 30px;
  }
}
.action__description {
  color: #FFF;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
@media (width <= 1917.98px) {
  .action__description {
    font-size: 18px;
  }
}
@media (width <= 1265.98px) {
  .action__description {
    text-align: center;
  }
}
@media (width <= 750.98px) {
  .action__description {
    font-size: 12px;
  }
}
.action__text-list {
  display: flex;
  flex-direction: column;
  padding: 30px;
  justify-content: center;
  align-items: center;
  gap: 15px;
  align-self: stretch;
  position: relative;
  border: 2px solid rgba(125, 6, 244, 0.3);
  background: linear-gradient(96deg, rgba(125, 6, 244, 0.2) 0.23%, rgba(24, 0, 48, 0.2) 100%);
}
@media (width <= 1917.98px) {
  .action__text-list {
    padding: 20px;
  }
}
@media (width <= 750.98px) {
  .action__text-list {
    padding: 15px;
  }
}
.action__text-list::after {
  content: "";
  position: absolute;
  bottom: -70px;
  width: 130px;
  height: 40px;
  flex-shrink: 0;
  background-image: url(../images/three-stars-game.svg);
  background-size: 130px 40px;
  background-position: center;
  background-repeat: no-repeat;
}
@media (width <= 1265.98px) {
  .action__text-list::after {
    bottom: -70px;
  }
}
@media (width <= 750.98px) {
  .action__text-list::after {
    display: none;
  }
}
.action__text {
  color: #D0A1FF;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
@media (width <= 1917.98px) {
  .action__text {
    font-size: 18px;
  }
}
@media (width <= 750.98px) {
  .action__text {
    font-size: 12px;
  }
}
.action__button-wrapper {
  display: flex;
}
@media (width <= 1265.98px) {
  .action__button-wrapper {
    justify-content: center;
  }
}

.background-light-purple--1 {
  position: absolute;
  top: -200px;
  left: -400px;
  width: 1149.591px;
  height: 1167.732px;
  transform: rotate(86.831deg);
  flex-shrink: 0;
  border-radius: 1167.732px;
  opacity: 0.5;
  background: radial-gradient(45.18% 46.89% at 50% 50%, rgba(0, 140, 255, 0.8) 0%, rgba(73, 3, 142, 0) 100%);
  z-index: 0;
}
@media (width <= 1917.98px) {
  .background-light-purple--1 {
    left: -80px;
    width: 600px;
    height: 600px;
    top: 170px;
  }
}
@media (width <= 1265.98px) {
  .background-light-purple--1 {
    width: 397.108px;
    height: 403.375px;
    border-radius: 403.375px;
    left: -10px;
    top: 190px;
    opacity: 0.4;
  }
}
@media (width <= 750.98px) {
  .background-light-purple--1 {
    left: -173px;
    top: 90px;
  }
}

.background-light-purple--2 {
  position: absolute;
  top: 415px;
  left: -340px;
  width: 1000.948px;
  height: 1000.816px;
  transform: rotate(173.095deg);
  flex-shrink: 0;
  opacity: 0.8;
  border-radius: 2101.816px;
  background: radial-gradient(45.18% 46.89% at 50% 50%, #7D06F4 0%, rgba(73, 3, 142, 0) 100%);
  z-index: 0;
}
@media (width <= 1917.98px) {
  .background-light-purple--2 {
    top: 100px;
    left: -800px;
    width: 1619.948px;
    height: 1905.816px;
  }
}
@media (width <= 1265.98px) {
  .background-light-purple--2 {
    width: 704.323px;
    height: 726.04px;
    border-radius: 726.04px;
    left: -270px;
    top: 340px;
    opacity: 0.5;
  }
}
@media (width <= 750.98px) {
  .background-light-purple--2 {
    left: -350px;
    top: 162px;
    opacity: 0.4;
  }
}

@media (width <= 750.98px) {
  .button--slaction {
    height: 40px;
    width: 202px;
    font-size: 14px;
  }
  .button--slaction__img {
    width: 202px;
    height: 40px;
  }
}
.nerbets {
  width: 100%;
  max-width: 1920px;
  display: flex;
  min-height: 980px;
  background-image: url(../images/nerbets.png);
  background-size: 1140px 1030px;
  background-position: calc(50% + 440px) calc(0% - 40px);
  background-repeat: no-repeat;
  position: relative;
  padding-left: 86px;
}
@media (width <= 1917.98px) {
  .nerbets {
    max-width: 1400px;
    min-height: 690px;
    background-size: 600px 560px;
    background-position: calc(50% + 380px) calc(0% + 90px);
    margin-bottom: 54px;
    padding-left: 71px;
  }
}
@media (width <= 1265.98px) {
  .nerbets {
    min-height: unset;
    margin-bottom: 0px;
    background-position: center top;
    background-image: linear-gradient(to top, rgb(0, 0, 0) 15%, rgba(0, 0, 0, 0) 50%), url(../images/nerbets.png);
    background-position: 50% calc(0% + 50px);
    padding-left: 0px;
  }
}
@media (width <= 750.98px) {
  .nerbets {
    align-items: center;
    justify-content: center;
    min-height: 750px;
    background-size: 410px 350px;
    margin-bottom: 31px;
  }
}
.nerbets__wrapper {
  display: flex;
  position: relative;
  width: 100%;
  flex-direction: column;
  gap: 100px;
  padding-left: 74px;
  padding-top: 80px;
}
@media (width <= 1917.98px) {
  .nerbets__wrapper {
    padding-top: 50px;
    justify-content: space-between;
  }
}
.nerbets__wrapper::after {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 74px;
  height: 1060.5px;
  flex-shrink: 0;
  background-image: url(../images/line-vertical-left.png);
  background-size: 74px 715.5px;
  background-position: right 177px;
  background-repeat: no-repeat;
}
@media (width <= 1917.98px) {
  .nerbets__wrapper::after {
    width: 180px;
    background-position: 36px 161px;
  }
}
@media (width <= 1265.98px) {
  .nerbets__wrapper {
    align-items: center;
    justify-content: center;
    padding-top: 360px;
    padding-left: 50px;
    padding-right: 50px;
  }
  .nerbets__wrapper::before {
    content: "";
    position: absolute;
    top: 410px;
    left: calc(50% - 370px);
    width: 74px;
    height: 515.5px;
    background: url(../images/line-vertical-left.png) no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
  }
}
@media (width <= 1265.98px) and (width <= 750.98px) {
  .nerbets__wrapper::before {
    top: 290px;
    left: calc(0% - 25px);
    width: 29.648px;
    height: 286.665px;
  }
}
@media (width <= 1265.98px) {
  .nerbets__wrapper::after {
    content: "";
    position: absolute;
    top: 410px;
    left: calc(50% + 304px);
    width: 74px;
    height: 515.5px;
    background: url(../images/line-verical-right.png) no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
    background-position: left top;
  }
}
@media (width <= 1265.98px) and (width <= 750.98px) {
  .nerbets__wrapper::after {
    top: 290px;
    left: calc(100% - 5px);
    width: 29.648px;
    height: 286.665px;
  }
}
@media (width <= 750.98px) {
  .nerbets__wrapper {
    max-width: 420px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 270px;
    gap: 20px;
    width: 80%;
  }
}
.nerbets__links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 35%;
  margin-right: auto;
}
@media (width <= 1917.98px) {
  .nerbets__links {
    width: 100%;
    max-width: 650px;
  }
}
@media (width <= 1265.98px) {
  .nerbets__links {
    flex-direction: column;
    margin-left: unset;
    justify-content: center;
    align-items: center;
    margin-right: unset;
    margin-bottom: 160px;
  }
}
@media (width <= 750.98px) {
  .nerbets__links {
    gap: 20px;
    margin-bottom: 0px;
  }
}
.nerbets__text-block {
  display: flex;
  width: 35%;
  gap: 30px;
  flex-direction: column;
  margin-right: auto;
}
@media (width <= 1917.98px) {
  .nerbets__text-block {
    width: 60%;
    max-width: 635px;
  }
}
@media (width <= 1265.98px) {
  .nerbets__text-block {
    width: 100%;
    margin-left: unset;
    margin-right: unset;
  }
}
@media (width <= 750.98px) {
  .nerbets__text-block {
    gap: 20px;
  }
}
.nerbets__title {
  color: #FFBCFF;
  text-shadow: 0 0 84.107px #7D06F4, 0 0 48.061px #7D06F4, 0 0 28.036px #7D06F4, 0 0 14.018px #FFBCFF, 0 0 4.005px #FFBCFF, 0 0 2.003px #FFBCFF;
  font-family: Involve;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 1917.98px) {
  .nerbets__title {
    font-size: 65px;
  }
}
@media (width <= 1265.98px) {
  .nerbets__title {
    text-align: center;
  }
}
@media (width <= 750.98px) {
  .nerbets__title {
    font-size: 30px;
  }
}
.nerbets__description {
  color: #FFF;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
@media (width <= 1917.98px) {
  .nerbets__description {
    font-size: 18px;
  }
}
@media (width <= 1265.98px) {
  .nerbets__description {
    text-align: center;
  }
}
@media (width <= 750.98px) {
  .nerbets__description {
    font-size: 12px;
  }
}
.nerbets__text-list {
  display: flex;
  flex-direction: column;
  padding: 30px;
  justify-content: center;
  align-items: center;
  gap: 15px;
  align-self: stretch;
  position: relative;
  border: 2px solid rgba(125, 6, 244, 0.3);
  background: linear-gradient(96deg, rgba(125, 6, 244, 0.2) 0.23%, rgba(24, 0, 48, 0.2) 100%);
}
@media (width <= 1917.98px) {
  .nerbets__text-list {
    padding: 20px;
  }
}
@media (width <= 750.98px) {
  .nerbets__text-list {
    padding: 15px;
  }
}
.nerbets__text-list::after {
  content: "";
  position: absolute;
  bottom: -70px;
  width: 130px;
  height: 40px;
  flex-shrink: 0;
  background-image: url(../images/three-stars-game.svg);
  background-size: 130px 40px;
  background-position: center;
  background-repeat: no-repeat;
}
@media (width <= 1265.98px) {
  .nerbets__text-list::after {
    bottom: -70px;
  }
}
@media (width <= 750.98px) {
  .nerbets__text-list::after {
    display: none;
  }
}
.nerbets__text {
  color: #D0A1FF;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
@media (width <= 1917.98px) {
  .nerbets__text {
    font-size: 18px;
  }
}
@media (width <= 750.98px) {
  .nerbets__text {
    font-size: 12px;
  }
}
.nerbets__background-light-purple {
  position: absolute;
  top: 405px;
  left: calc(50% + 320px);
  width: 1000.948px;
  height: 1000.816px;
  transform: rotate(173.095deg);
  flex-shrink: 0;
  opacity: 0.8;
  border-radius: 2101.816px;
  background: radial-gradient(45.18% 46.89% at 50% 50%, #7D06F4 0%, rgba(73, 3, 142, 0) 100%);
  z-index: 0;
}
@media (width <= 1917.98px) {
  .nerbets__background-light-purple {
    display: none;
  }
}
@media (width <= 1265.98px) {
  .nerbets__background-light-purple {
    width: 704.323px;
    height: 726.04px;
    border-radius: 726.04px;
    left: -270px;
    top: 340px;
    opacity: 0.5;
    display: block;
  }
}
@media (width <= 750.98px) {
  .nerbets__background-light-purple {
    left: -350px;
    top: 162px;
    opacity: 0.4;
  }
}
.nerbets__social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

/*# sourceMappingURL=main.css.map */
