@charset "UTF-8";
html {
  background-color: transparent;
}

:root {
  --color-white: rgb(240, 240, 240);
  --color-black: #131118;
  --color-bg: #0e1d2b;
  --color-red: rgb(222, 80, 35);
  --color-yellow: #fce418;
  --color-violet: #3c3254;
  --color-gray: #55505f;
  --transition-normal: all 0.3s ease 0s;
  --gradient: linear-gradient(180deg, #26272b 0%, #131118 100%);
}

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  min-width: 320px;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  cursor: pointer;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

ol,
ul {
  padding-left: 19px;
}

/*Обнуление*/

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.woff2") format("woff2"), url("../fonts/Manrope-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.woff2") format("woff2"), url("../fonts/Manrope-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Anton";
  src: url("../fonts/Anton-Regular.woff2") format("woff2"), url("../fonts/Anton-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.375;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  background: var(--color-bg);
}

body.lock {
  overflow: hidden;
}

.container {
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin: 0 auto;
  max-width: 1230px;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* плавное изменение прозрачности  placeholder-а при фокусе */

input,
textarea {
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: var(--color-gray);
}

input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-moz-placeholder,
input:-ms-input-placeholder,
textarea::-webkit-input-placeholder,
textarea::-moz-placeholder,
textarea:-moz-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
}

input:focus::-webkit-input-placeholder,
input:focus::-moz-placeholder,
input:focus:-moz-placeholder,
input:focus:-ms-input-placeholder,
textarea:focus::-webkit-input-placeholder,
textarea:focus::-moz-placeholder,
textarea:focus:-moz-placeholder,
textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

h1 {
  color: var(--color-white);
  font-family: "Anton", sans-serif;
  font-size: 56px;
  line-height: 130%;
}

h1 span {
  color: var(--color-yellow);
}

h2 {
  text-align: center;
  color: var(--color-white);
  font-family: "Anton", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.5;
}

h2 span {
  color: var(--color-yellow);
}

.btn {
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border-radius: 100px;
  padding: 10px 36px;
  font-size: 16px;
  line-height: 1.375;
  color: var(--color-black);
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.btn svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20px;
  max-width: 100%;
  height: 20px;
  fill: currentColor;
}

.btn.btn-outline-white {
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.btn.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.btn.btn-yellow {
  color: #000 !important;
  background: var(--color-yellow);
  -webkit-box-shadow: 0px 4px 0px 0px #d43b2e;
          box-shadow: 0px 4px 0px 0px #d43b2e;
  position: relative;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.btn.btn-yellow:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn.btn-yellow:active {
  -webkit-box-shadow: 0px 0px 0px 0px #d43b2e;
          box-shadow: 0px 0px 0px 0px #d43b2e;
}

.btn.btn-large {
  height: 72px;
  padding: 15px 45px;
  font-weight: 700;
}

.btn.btn-large svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
}

.btn.btn-small {
  height: 42px;
  font-size: 16px;
  line-height: 1.375;
  padding: 5px 24px;
}

.btn.btn-small svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 18px;
  max-width: 100%;
  height: 18px;
}

.header {
  padding: 20px 0;
  position: relative;
  z-index: 6;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.header.fixed {
  background: var(--color-bg);
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -15px;
}

.header__left {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.666%;
  max-width: 100%;
}

.header__center {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.666%;
  max-width: 100%;
}

.header__right {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.666%;
  max-width: 100%;
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.header__profile-icon {
  display: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 22px;
  max-width: 100%;
  height: 22px;
  color: var(--color-white);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__profile-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.header__menu-icon {
  display: none;
}

.logo {
  display: inline-block;
  width: 141px;
  line-height: 1;
}

.logo img {
  max-width: 100%;
}

.menu__top {
  display: none;
  padding: 11px 0 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.menu__close {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 39px;
  max-width: 100%;
  height: 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-gray);
  cursor: pointer;
}

.menu__close svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  padding: 0;
  list-style: none;
}

.menu__link {
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.375;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.menu__link:hover {
  color: var(--color-yellow);
}

.menu__link.active {
  color: var(--color-yellow);
}

.menu__bottom {
  display: none;
  margin-top: auto;
  padding-top: 50px;
}

.icon-menu {
  cursor: pointer;
  width: 22px;
  height: 21px;
  position: relative;
  display: none;
}

.icon-menu.active span {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.icon-menu.active span:first-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
}

.icon-menu.active span:last-child {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: 8px;
}

.icon-menu span {
  position: absolute;
  top: 9px;
  width: 100%;
  height: 3px;
  left: 0;
  background: var(--color-yellow);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 3px;
}

.icon-menu span:first-child {
  background: var(--color-white);
  top: 1px;
}

.icon-menu span:last-child {
  background: var(--color-white);
  top: auto;
  bottom: 1px;
}

.footer {
  padding: 30px 0;
  position: relative;
  z-index: 3;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -15px;
}

.footer__left {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.666%;
  max-width: 100%;
}

.footer__logo {
  width: 140px;
}

.footer__logo img {
  max-width: 100%;
}

.footer__center {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.666%;
  max-width: 100%;
}

.footer__right {
  padding: 0 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.666%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.footer .social-block {
  display: none;
  margin-top: 50px;
}

.social-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.social-block__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 45px;
  max-width: 100%;
  height: 45px;
  border-radius: 50%;
  color: var(--color-bg);
  -webkit-filter: drop-shadow(0px 0px 12px rgba(255, 205, 67, 0.8));
          filter: drop-shadow(0px 0px 12px rgba(255, 205, 67, 0.8));
  background: var(--color-yellow);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.social-block__item svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  padding: 0;
  list-style: none;
}

.footer-menu li a {
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.375;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.footer-menu li a:hover {
  color: var(--color-yellow);
}

.footer-menu li a.active {
  color: var(--color-yellow);
}

.partners {
  position: relative;
  z-index: 3;
  margin: 93px 0 97px;
}

.partners__title {
  margin-bottom: 50px;
}

.partners__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.partners__col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  padding: 0 25px;
  margin: 0;
}

.partners__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.partners__img img {
  max-width: 100%;
}

ul.carouselTicker__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 6000px;
}

ul.carouselTicker__list:after {
  content: "";
  display: block;
  clear: both;
}

.carouselTicker__wrap {
  overflow: visible !important;
}

.block-animation {
  margin: -20px 0 93px;
  height: 170px;
  position: relative;
  z-index: 3;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.block-animation:before {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 50px 0 50px 1000px;
  border-color: transparent transparent transparent var(--color-bg);
  position: absolute;
  top: -35px;
  left: 0;
  z-index: 1;
}

.block-animation:after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 50px 1000px 50px 0;
  border-color: transparent var(--color-bg) transparent transparent;
  position: absolute;
  top: -35px;
  right: 0;
  z-index: 1;
}

.block-animation__top {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

.block-animation__bottom {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

.block-animation__bottom .block-animation__img img {
  -webkit-transform: rotate(-4deg);
      -ms-transform: rotate(-4deg);
          transform: rotate(-4deg);
}

.block-animation__img {
  height: 170px;
}

.block-animation__img img {
  -webkit-transform: rotate(4deg);
      -ms-transform: rotate(4deg);
          transform: rotate(4deg);
  height: 60px;
}

.block-home {
  position: relative;
  padding: 100px 0 200px;
}

.block-home__bg {
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 2;
  width: 100%;
}

.block-home__bg img {
  max-width: 100%;
}

.block-home__animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
  pointer-events: none;
}

.mechanics {
  position: relative;
  z-index: 3;
  margin: 200px 0;
}

.mechanics:first-child {
  margin-top: 0;
}

.mechanics:last-child {
  margin-bottom: 0;
}

.mechanics__title {
  margin-bottom: 50px;
}

.mechanics__btn {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5px;
}

.mechanics-slider {
  overflow: hidden;
  border-radius: 10px;
}

.mechanics-slider__slide {
  height: auto;
}

.mechanics-slider__pagination.swiper-pagination-bullets {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.mechanics-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 9px;
  max-width: 100%;
  height: 5px;
  margin: 0;
  opacity: 1;
  background: var(--color-yellow);
  border-radius: 5px;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.mechanics-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 35px;
}

.item-mechanics {
  height: 100%;
  padding: 30px 18px;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(6, 20, 30, 0.4);
}

.item-mechanics__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}

.item-mechanics__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 0px 30px -8px rgba(92, 255, 244, 0.5);
          box-shadow: 0px 0px 30px -8px rgba(92, 255, 244, 0.5);
  background: -webkit-gradient(linear, left top, left bottom, from(#26272b), to(#09090a));
  background: -o-linear-gradient(top, #26272b, #09090a 100%);
  background: linear-gradient(180deg, #26272b, #09090a 100%);
  padding: 10px;
}

.item-mechanics__icon img {
  max-width: 100%;
}

.item-mechanics__title {
  color: var(--color-white);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.375;
  margin-bottom: 15px;
}

.item-mechanics__text {
  color: var(--color-white);
  text-align: center;
  font-size: 14px;
  line-height: 1.35714;
  opacity: 0.6;
}

.marketplaces {
  position: relative;
  z-index: 3;
  margin: 200px 0;
}

.marketplaces:first-child {
  margin-top: 0;
}

.marketplaces:last-child {
  margin-bottom: 0;
}

.marketplaces__title {
  margin-bottom: 50px;
}

.marketplaces__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -15px;
}

.marketplaces__col {
  padding: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.item-marketplaces {
  height: 100%;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(6, 20, 30, 0.4);
  padding: 35px 10px;
}

.item-marketplaces__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
}

.item-marketplaces__icon {
  width: 53px;
  height: 53px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  overflow: hidden;
}

.item-marketplaces__icon img {
  width: 53px;
  height: 53px;
}

.item-marketplaces__title {
  color: var(--color-white);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.375;
  margin-bottom: 27px;
}

.item-marketplaces__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
}

.item-marketplaces__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  border-radius: 30px;
  background: var(--color-red);
  color: var(--color-white);
  padding: 5px 15px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  height: 30px;
  line-height: 1.23077;
}

.item-marketplaces__link:hover {
  color: var(--color-black);
  background: var(--color-yellow);
}

.item-marketplaces__link.disabled {
  background: #1a2934;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.3);
}

@-webkit-keyframes anim {
  0% {
    background-position: 0px;
  }

  100% {
    background-position: -6000px;
  }
}

@keyframes anim {
  0% {
    background-position: 0px;
  }

  100% {
    background-position: -6000px;
  }
}

.mystery-box {
  padding-bottom: 125px;
  position: relative;
}

.mystery-box .container {
  position: relative;
  z-index: 5;
}

.mystery-box__top {
  max-width: 570px;
  margin: 0 auto 50px;
}

.mystery-box__title {
  margin-bottom: 25px;
}

.mystery-box__text {
  color: var(--color-white);
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
}

.mystery-box__content {
  position: relative;
}

.mystery-box__bg {
  position: absolute;
  top: 100px;
  left: 50%;
  z-index: 1;
  width: 100%;
  min-width: 1440px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  background: var(--color-bg);
}

.mystery-box__bg img {
  max-width: 100%;
}

.mystery-box__anim {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0.5;
  width: 100%;
  height: 256px;
  z-index: 2;
  -webkit-animation: anim 180s linear infinite;
          animation: anim 180s linear infinite;
  will-change: animation;
  background: url("../img/mystery-box-bg-lemon.png");
}

.mystery-box__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 4;
  margin-top: -40px;
}

.mystery-box__btn .btn {
  min-width: 270px;
}

.mystery-box-items {
  width: 649px;
  height: 533px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.mystery-box-items__element-1 {
  position: absolute !important;
  top: 33px !important;
  right: 120px !important;
  width: 36px !important;
  height: 56px !important;
  left: auto !important;
  z-index: 1;
}

.mystery-box-items__element-1 img {
  width: 36px;
  height: 56px;
}

.mystery-box-items__element-2 {
  position: absolute !important;
  top: 90px !important;
  left: 110px !important;
  width: 41px !important;
  height: 41px !important;
  z-index: 1;
}

.mystery-box-items__element-2 img {
  width: 41px;
  height: 41px;
}

.mystery-box-items__element-3 {
  position: absolute !important;
  top: 218px !important;
  left: 73px !important;
  width: 38px !important;
  height: 33px !important;
  z-index: 1;
}

.mystery-box-items__element-3 img {
  width: 38px;
  height: 33px;
}

.mystery-box-items__element-4 {
  position: absolute !important;
  top: 254px !important;
  right: 75px !important;
  width: 80px !important;
  height: 70px !important;
  left: auto !important;
  z-index: 1;
}

.mystery-box-items__element-4 img {
  width: 80px;
  height: 70px;
}

.mystery-box-items__element-5 {
  position: absolute !important;
  top: 346px !important;
  left: 0 !important;
  width: 36px !important;
  height: 56px !important;
  z-index: 1;
}

.mystery-box-items__element-5 img {
  width: 36px;
  height: 56px;
}

.mystery-box-items__element-6 {
  position: absolute !important;
  top: 457px !important;
  left: 155px !important;
  width: 27px !important;
  height: 27px !important;
  z-index: 1;
}

.mystery-box-items__element-6 img {
  width: 27px;
  height: 27px;
}

.mystery-box-items__element-7 {
  position: absolute !important;
  top: 460px !important;
  left: 393px !important;
  width: 60px !important;
  height: 60px !important;
  z-index: 1;
}

.mystery-box-items__element-7 img {
  width: 60px;
  height: 60px;
}

.mystery-box-items__element-8 {
  position: absolute !important;
  top: 476px !important;
  left: 430px !important;
  width: 60px !important;
  height: 60px !important;
  z-index: 1;
}

.mystery-box-items__element-8 img {
  width: 60px;
  height: 60px;
}

.mystery-box-items__img-1 {
  position: absolute !important;
  width: 113px !important;
  height: 125px !important;
  top: 2px !important;
  left: 24px !important;
}

.mystery-box-items__img-1 img {
  width: 113px;
  height: 125px;
}

.mystery-box-items__img-2 {
  position: absolute !important;
  width: 83px !important;
  height: 92px !important;
  top: 75px !important;
  right: 45px !important;
  left: auto !important;
}

.mystery-box-items__img-2 img {
  width: 83px;
  height: 92px;
}

.mystery-box-items__img-3 {
  position: absolute !important;
  width: 83px !important;
  height: 92px !important;
  left: 67px !important;
  top: auto !important;
  bottom: 44px !important;
}

.mystery-box-items__img-3 img {
  width: 83px;
  height: 92px;
}

.mystery-box-items__img-4 {
  position: absolute !important;
  width: 105px !important;
  height: 116px !important;
  right: 2px !important;
  left: auto !important;
  top: auto !important;
  bottom: 41px !important;
}

.mystery-box-items__img-4 img {
  width: 105px;
  height: 116px;
}

.mystery-box-items__box {
  position: absolute !important;
  top: 24px !important;
  left: 60px !important;
  pointer-events: none;
  width: 452px !important;
}

.mystery-box-items__box:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-filter: blur(300px);
          filter: blur(300px);
  background: rgba(92, 255, 244, 0.5);
  opacity: 0.6;
}

.mystery-box-items__box img {
  max-width: 100%;
  position: relative;
  z-index: 2;
}

@-webkit-keyframes animScale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }

  9% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }

  18% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
}

@keyframes animScale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }

  9% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }

  18% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
}

@-webkit-keyframes animScaleLogo {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }

  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }

  40% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes animScaleLogo {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }

  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }

  40% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.offer {
  position: relative;
}

.offer__logo-1 {
  position: absolute;
  top: 24%;
  left: 23%;
  z-index: 2;
  -webkit-animation-name: animScaleLogo;
          animation-name: animScaleLogo;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 7.5s;
          animation-duration: 7.5s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  will-change: animation;
  opacity: 0;
}

.offer__logo-2 {
  position: absolute;
  top: 25%;
  left: 39%;
  z-index: 2;
  -webkit-animation-name: animScaleLogo;
          animation-name: animScaleLogo;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 9s;
          animation-duration: 9s;
  will-change: animation;
  opacity: 0;
}

.offer__logo-3 {
  position: absolute;
  top: 39%;
  left: 30%;
  z-index: 2;
  -webkit-animation-name: animScaleLogo;
          animation-name: animScaleLogo;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  will-change: animation;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  opacity: 0;
}

.offer__logo-4 {
  position: absolute;
  top: 43%;
  left: 44%;
  z-index: 2;
  -webkit-animation-name: animScaleLogo;
          animation-name: animScaleLogo;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
  will-change: animation;
  opacity: 0;
}

.offer__star-1 {
  position: absolute;
  top: 7%;
  left: 7%;
  z-index: 2;
  -webkit-animation-name: animScale;
          animation-name: animScale;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  will-change: animation;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.offer__star-2 {
  position: absolute;
  bottom: 12%;
  left: 12%;
  z-index: 2;
  -webkit-animation-name: animScale;
          animation-name: animScale;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  will-change: animation;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.offer__star-3 {
  position: absolute;
  bottom: 7%;
  left: 3%;
  z-index: 2;
  -webkit-animation-name: animScale;
          animation-name: animScale;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  will-change: animation;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.offer__star-4 {
  position: absolute;
  top: 6%;
  right: 3%;
  z-index: 2;
  -webkit-animation-name: animScale;
          animation-name: animScale;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  will-change: animation;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.offer__star-5 {
  position: absolute;
  top: 15%;
  right: 6%;
  z-index: 2;
  -webkit-animation-name: animScale;
          animation-name: animScale;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  will-change: animation;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.offer__star-6 {
  position: absolute;
  top: 13%;
  left: 36%;
  z-index: 2;
  -webkit-animation-name: animScale;
          animation-name: animScale;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  will-change: animation;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.offer__star-7 {
  position: absolute;
  bottom: 13%;
  left: 47%;
  z-index: 2;
  -webkit-animation-name: animScale;
          animation-name: animScale;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
  -webkit-animation-duration: 3.5s;
          animation-duration: 3.5s;
  will-change: animation;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.offer__star-8 {
  position: absolute;
  bottom: 9%;
  right: 22%;
  z-index: 2;
  -webkit-animation-name: animScale;
          animation-name: animScale;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
  -webkit-animation-duration: 5.5s;
          animation-duration: 5.5s;
  will-change: animation;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.offer__star-9 {
  position: absolute;
  bottom: 6%;
  right: 37%;
  z-index: 2;
  -webkit-animation-name: animScale;
          animation-name: animScale;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  will-change: animation;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.offer__star-10 {
  position: absolute;
  top: 44%;
  left: 11%;
  z-index: 2;
  -webkit-animation-name: animScale;
          animation-name: animScale;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  will-change: animation;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.offer__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 82px);
}

.offer__bg:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: -o-radial-gradient(50% 50%, 47% 47%, rgba(10, 31, 45, 0.4), #0a1f2d 100%);
  background: radial-gradient(47% 47% at 50% 50%, rgba(10, 31, 45, 0.4), #0a1f2d 100%);
}

.offer__bg img,
.offer__bg video,
.offer__bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.offer__content {
  position: relative;
  z-index: 2;
  height: 844px;
}

.offer__slider {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 500px;
  margin-left: auto;
  margin-right: -50px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.offer__body {
  padding-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.offer__box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.offer__title {
  margin-bottom: 15px;
}

.offer__text {
  color: var(--color-white);
  font-size: 18px;
  line-height: 1.38889;
}

.offer__buttons {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.offer__buttons .btn {
  min-width: 166px;
  padding: 10px;
}

.offer-slider__img {
  text-align: center;
}

.offer-slider__img img {
  max-width: 100%;
}

.main-social {
  position: fixed;
  top: 50%;
  right: 95px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-social:hover .main-social__item {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.main-social:hover .main-social__item:nth-child(2),
.main-social:hover .main-social__item:nth-child(3) {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.main-social:hover .main-social__item:nth-child(2):hover,
.main-social:hover .main-social__item:nth-child(3):hover {
  -webkit-transform: translateY(0) scale(1.2);
      -ms-transform: translateY(0) scale(1.2);
          transform: translateY(0) scale(1.2);
}

.main-social__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 80px;
  max-width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(252, 228, 24, 0.8);
          box-shadow: 0px 0px 40px 0px rgba(252, 228, 24, 0.8);
  background: #ffce43;
  -webkit-transition: var(--transition-normal);
  -o-transition: var(--transition-normal);
  transition: var(--transition-normal);
  cursor: pointer;
  color: var(--color-black);
  border-radius: 50%;
}

.main-social__item:first-child {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  position: relative;
  z-index: 2;
}

.main-social__item:nth-child(2) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(90px);
      -ms-transform: translateY(90px);
          transform: translateY(90px);
}

.main-social__item:nth-child(3) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-90px);
      -ms-transform: translateY(-90px);
          transform: translateY(-90px);
}

.main-social__item:hover {
  background: var(--color-yellow);
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.main-social__item:not(:last-child) {
  margin-bottom: 20px;
}

.main-social__item svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 1920px) {
  .block-animation:before {
    border-width: 30px 0 30px 540px;
    top: -13px;
  }

  .block-animation:after {
    border-width: 30px 540px 30px 0;
    top: -13px;
  }
}

@media (max-width: 1350px) {
  .main-social {
    right: 30px;
  }
}

@media (max-width: 1229.98px) {
  .marketplaces__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .offer__slider {
    margin-right: 0;
  }
}

@media (max-width: 1199.98px) {
  h1 {
    font-size: 44px;
  }

  .block-animation:before {
    top: 3px;
    border-width: 30px 0 30px 300px;
  }

  .block-animation:after {
    top: 3px;
    border-width: 30px 300px 30px 0;
  }
}

@media (max-width: 991.98px) {
  h2 {
    font-size: 40px;
  }

  .header__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
    max-width: 100%;
  }

  .header__center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 60%;
    max-width: 100%;
  }

  .header__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
    max-width: 100%;
  }

  .menu__list {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }

  .icon-menu {
    display: block;
  }

  .footer__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
    max-width: 100%;
  }

  .footer__logo {
    width: 130px;
  }

  .footer__center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 60%;
    max-width: 100%;
  }

  .footer__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
    max-width: 100%;
  }

  .footer-menu {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }

  .partners {
    margin: 100px 0;
  }

  .partners__col {
    padding: 0 20px;
  }

  .block-home {
    padding: 100px 0 150px;
  }

  .mechanics {
    margin: 150px 0;
  }

  .marketplaces {
    margin: 150px 0;
  }

  .mystery-box__anim {
    height: 150px;
    background-size: auto 150px;
  }

  .offer__slider {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    margin: 0 auto;
  }

  .offer__body {
    padding-top: 150px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .offer__box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .main-social__item {
    width: 50px;
    height: 50px;
  }

  .main-social__item:not(:last-child) {
    margin-bottom: 15px;
  }

  .main-social__item svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 991.98px) and (max-width: 767.98px) {
  .block-home {
    padding: 100px 0;
  }
}

@media (max-width: 767.98px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .fancybox-slide {
    padding: 30px 15px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .header__left {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
  }

  .header__center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    padding: 0;
  }

  .header__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .header__profile .btn {
    display: none;
  }

  .header__profile-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header__menu-icon {
    display: block;
  }

  .logo {
    width: 98px;
  }

  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: rgba(19, 17, 24, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }

  .menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .menu.open .menu__body {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }

  .menu__body {
    background: var(--color-black);
    max-width: 250px;
    width: 100%;
    padding: 0 11px 0 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.3s ease 0.1s;
    -o-transition: all 0.3s ease 0.1s;
    transition: all 0.3s ease 0.1s;
  }

  .menu__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .menu__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    padding-bottom: 50px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .menu__list {
    display: block;
  }

  .menu__item:not(:last-child) {
    margin-bottom: 30px;
  }

  .menu__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .footer {
    padding: 30px 0 50px;
  }

  .footer__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 35px;
  }

  .footer__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .footer__logo {
    margin: 0 auto;
  }

  .footer__center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .footer__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer .social-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .footer-menu {
    display: block;
  }

  .footer-menu li {
    text-align: center;
  }

  .footer-menu li:not(:last-child) {
    margin-bottom: 30px;
  }

  .partners {
    margin: 20px 0 0;
  }

  .partners__title {
    margin-bottom: 35px;
  }

  .partners__col {
    padding: 0 17.5px;
  }

  .block-animation {
    height: 81px;
    margin: -20px 0 40px;
  }

  .block-animation:before {
    top: -18px;
  }

  .block-animation:after {
    top: -18px;
  }

  .block-animation__bottom .block-animation__img img {
    -webkit-transform: rotate(-6deg);
        -ms-transform: rotate(-6deg);
            transform: rotate(-6deg);
  }

  .block-animation__img {
    height: 81px;
  }

  .block-animation__img img {
    height: 35px;
    -webkit-transform: rotate(6deg);
        -ms-transform: rotate(6deg);
            transform: rotate(6deg);
  }

  .block-home__bg {
    background-position: left 82%;
    min-width: 600px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 70%;
  }

  .mechanics {
    margin: 100px 0;
  }

  .marketplaces {
    margin: 100px 0;
  }

  .marketplaces__row {
    margin: -10px;
  }

  .marketplaces__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 10px;
  }

  .mystery-box {
    padding-bottom: 65px;
  }

  .mystery-box__text {
    font-size: 13px;
  }

  .mystery-box__bg {
    min-width: 768px;
    top: 100px;
  }

  .mystery-box__anim {
    height: 56px;
    background-size: auto 56px;
    opacity: 1;
    top: 36%;
    -webkit-animation: anim 500s linear infinite;
            animation: anim 500s linear infinite;
  }

  .mystery-box__body {
    margin: 0 -10px;
  }

  .mystery-box__btn {
    margin-top: 50px;
    padding: 0 10px;
  }

  .mystery-box__btn .btn {
    width: 100%;
  }

  .mystery-box-items {
    width: 320px;
    height: 294px;
  }

  .mystery-box-items__element-1 {
    width: 25px !important;
    height: 38px !important;
    top: 9px !important;
    right: 62px !important;
  }

  .mystery-box-items__element-1 img {
    width: 25px;
    height: 38px;
  }

  .mystery-box-items__element-2 {
    width: 25px !important;
    height: 25px !important;
    top: 68px !important;
    left: 57px !important;
  }

  .mystery-box-items__element-2 img {
    width: 25px;
    height: 25px;
  }

  .mystery-box-items__element-3 {
    width: 26px !important;
    height: 23px !important;
    top: 97px !important;
    left: 25px !important;
  }

  .mystery-box-items__element-3 img {
    width: 26px;
    height: 23px;
  }

  .mystery-box-items__element-4 {
    width: 40px !important;
    height: 34px !important;
    top: 138px !important;
    right: 46px !important;
  }

  .mystery-box-items__element-4 img {
    width: 40px;
    height: 34px;
  }

  .mystery-box-items__element-5 {
    width: 18px !important;
    height: 28px !important;
    top: 188px !important;
    left: 13px !important;
  }

  .mystery-box-items__element-5 img {
    width: 18px;
    height: 28px;
  }

  .mystery-box-items__element-6 {
    width: 13px !important;
    height: 13px !important;
    top: 219px !important;
    left: 83px !important;
  }

  .mystery-box-items__element-6 img {
    width: 13px;
    height: 13px;
  }

  .mystery-box-items__element-7 {
    width: 35px !important;
    height: 35px !important;
    top: 224px !important;
    left: 190px !important;
  }

  .mystery-box-items__element-7 img {
    width: 35px;
    height: 35px;
  }

  .mystery-box-items__element-8 {
    width: 27px !important;
    height: 27px !important;
    top: 243px !important;
    left: 211px !important;
  }

  .mystery-box-items__element-8 img {
    width: 27px;
    height: 27px;
  }

  .mystery-box-items__img-1 {
    width: 70px !important;
    height: 77px !important;
    top: 4px !important;
    left: 11px !important;
  }

  .mystery-box-items__img-1 img {
    width: 70px;
    height: 77px;
  }

  .mystery-box-items__img-2 {
    width: 50px !important;
    height: 55px !important;
    top: 40px !important;
    right: 17px !important;
  }

  .mystery-box-items__img-2 img {
    width: 50px;
    height: 55px;
  }

  .mystery-box-items__img-3 {
    width: 50px !important;
    height: 55px !important;
    left: 27px !important;
    bottom: 38px !important;
  }

  .mystery-box-items__img-3 img {
    width: 50px;
    height: 55px;
  }

  .mystery-box-items__img-4 {
    width: 70px !important;
    height: 77px !important;
    right: 9px !important;
    bottom: 34px !important;
  }

  .mystery-box-items__img-4 img {
    width: 70px;
    height: 77px;
  }

  .mystery-box-items__box {
    top: 20px !important;
    left: 28px !important;
    width: 232px !important;
  }

  .mystery-box-items__box img {
    display: inline-block;
  }

  .offer__bg {
    height: calc(100% + 62px);
    top: -62px;
  }

  .offer__content {
    height: auto;
  }

  .offer__body {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .offer__box {
    margin-bottom: 35px;
  }

  .offer__text {
    font-size: 16px;
    line-height: 1.375;
  }

  .offer__buttons {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    margin-top: 55px;
  }

  .offer-slider__img {
    margin: 0 auto;
  }

  .main-social {
    display: none;
  }
}

@media (max-width: 650px) {
  .block-animation:before {
    top: -12px;
  }

  .block-animation:after {
    top: -12px;
  }
}

@media (max-width: 575.98px) {
  .mechanics__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .mechanics-slider__wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .mechanics-slider__slide {
    display: none;
  }

  .mechanics-slider__slide:not(:first-child) {
    margin-top: 20px;
  }

  .mechanics-slider__slide:nth-child(1),
  .mechanics-slider__slide:nth-child(2),
  .mechanics-slider__slide:nth-child(3),
  .mechanics-slider__slide:nth-child(4) {
    display: block;
  }

  .mechanics-slider__slide:nth-child(1).active,
  .mechanics-slider__slide:nth-child(2).active,
  .mechanics-slider__slide:nth-child(3).active,
  .mechanics-slider__slide:nth-child(4).active {
    display: block;
  }

  .mechanics-slider__pagination {
    display: none;
  }

  .item-mechanics {
    border-radius: 0px;
    background: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }

  .offer__buttons .btn {
    min-width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 550px) {
  .block-animation:before {
    top: -8px;
  }

  .block-animation:after {
    top: -8px;
  }
}

@media (max-width: 500px) {
  .block-animation:before {
    top: -5px;
  }

  .block-animation:after {
    top: -5px;
  }
}

@media (max-width: 450px) {
  .block-animation:before {
    top: -2px;
  }

  .block-animation:after {
    top: -2px;
  }
}

@media (max-width: 400px) {
  .block-animation:before {
    border-width: 30px 0 30px 200px;
    top: -2px;
  }

  .block-animation:after {
    border-width: 30px 200px 30px 0;
    top: -2px;
  }
}