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

a {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

.container {
  max-width: 1260px;
  padding: 0 10px;
  margin: 0 auto;
}

@media screen and (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 300px) {
  .container {
    padding: 0 10px;
  }
}

@font-face {
  font-family: "NexaBold";
  src: url("../fonts/NexaBold.ttf") format("truetype");
}

@font-face {
  font-family: "NexaBlack";
  src: url("../fonts/NexaBlack.ttf") format("truetype");
}

@font-face {
  font-family: "NexaRegular";
  src: url("../fonts/NexaRegular.ttf") format("truetype");
}

html {
  background-color: #382F59;
  color: #fff;
  font-family: 'NexaBold', sans-serif;
}

body {
  position: relative;
  background:linear-gradient(180deg, #380A73 0%, #000000 58.85%);
  min-height: 100vh;
  /* Demonstrate a "mostly customized" scrollbar
   * (won't be visible otherwise if width/height is specified) */
  /* Add a thumb */
}

body.no-scroll {
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  body {
    background-size: 100% 61%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  body {
    background-size: 100% 34%;
  }
}

@media screen and (max-width: 768px) {
  body {
    background-image: url(../img/mobile-bg.jpg);
    background-size: contain 100%;
  }
}

body .shadow {
  width: 100vw;
  max-width: 100%;
  min-height: 145vh;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

@media screen and (max-width: 1640px) {
  body .shadow {
    min-height: 150vh;
  }
}

@media screen and (max-width: 1560px) {
  body .shadow {
    min-height: 165vh;
  }
}

@media screen and (max-width: 1560px) {
  body .shadow {
    min-height: 180vh;
  }
}

@media screen and (max-width: 1330px) {
  body .shadow {
    min-height: 190vh;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  body .shadow {
    min-height: 231vh;
  }
}

@media screen and (max-width: 768px) {
  body .shadow {
    min-height: 145vh;
  }
}

@media screen and (max-width: 500px) {
  body .shadow {
    min-height: 150vh;
  }
}

@media screen and (max-width: 375px) {
  body .shadow {
    min-height: 140vh;
  }
}

@media screen and (max-width: 325px) {
  body .shadow {
    min-height: 180vh;
  }
}

body .visible-scrollbar, body .invisible-scrollbar, body .mostly-customized-scrollbar {
  display: block;
  width: 10em;
  overflow: auto;
  height: 2em;
}

body::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #FF2977;
}

body::-webkit-scrollbar-thumb {
  background: #31EAE5;
}

main {
  z-index: 5;
  position: relative;
}

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #382F59;
  z-index: 100;
}

.preloader.hide {
  display: none;
}

.preloader .img {
  position: fixed;
  top: 50%;
  left: 50%;
  height: 100px;
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: 2;
  pointer-events: none;
  -webkit-animation: pulse 0.5s infinite;
          animation: pulse 0.5s infinite;
}

@-webkit-keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
  }
  70% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.95);
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
  }
  70% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.95);
  }
}

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

.footer__wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__nav a {
  margin: 10px;
  color: #7B6FA8;
}

.footer__providers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__providers img {
  min-height: 35px;
  max-height: 35px;
  margin: 10px;
  -webkit-filter: invert(51%) sepia(20%) saturate(852%) hue-rotate(212deg) brightness(85%) contrast(89%);
          filter: invert(51%) sepia(20%) saturate(852%) hue-rotate(212deg) brightness(85%) contrast(89%);
}

.footer__providers img.softswiss {
  width: 125px;
}

.footer__text {
  font-family: 'NexaRegular';
  color: #7B6FA8;
  font-size: 18px;
  text-align: center;
  padding: 40px 0;
  width: 84%;
  line-height: 30px;
}

.header {
  padding-top: 35px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .header img {
    width: 22vw;
  }
}

.text {
  margin-top: 70px;
  color: #31EAE5;
}

@media screen and (max-width: 768px) {
  .text {
    margin-top: 50px;
  }
}

.text__wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.text__title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text__title_text {
  text-transform: uppercase;
  font-size: 92px;
}

@media screen and (max-width: 1024px) {
  .text__title_text {
    font-size: 62px;
  }
}

@media screen and (max-width: 768px) {
  .text__title_text {
    font-size: 9vw;
  }
}

.text__title img {
  width: 53px;
  height: 53px;
  margin: 0 20px;
  position: relative;
  top: -4px;
}

@media screen and (max-width: 768px) {
  .text__title img {
    display: none;
  }
}

.text__subtitle {
  font-size: 66px;
}

@media screen and (max-width: 1024px) {
  .text__subtitle {
    font-size: 55px;
  }
}

@media screen and (max-width: 768px) {
  .text__subtitle {
    font-size: 9vw;
  }
}

.text__descr {
  margin: 35px 0 30px 0;
  font-size: 44px;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .text__descr {
    font-size: 35px;
  }
}

@media screen and (max-width: 768px) {
  .text__descr {
    font-size: 6vw;
    margin: 30px 0;
  }
}

.text__bonus-link {
  background: #FF2977;
  border-radius: 100px;
  padding: 32px 38px;
  color: #fff;
  font-size: 27px;
}

@media screen and (max-width: 1024px) {
  .text__bonus-link {
    padding: 23px 38px;
    font-size: 23px;
  }
}

@media screen and (max-width: 500px) {
  .text__bonus-link {
    padding: 12px 30px;
    font-size: 14px;
  }
}

.text__open-popup {
  color: #fff;
  font-size: 23px;
  text-decoration: underline;
  margin-top: 25px;
}

.text__open-popup:hover {
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .text__open-popup {
    font-size: 19px;
  }
}

@media screen and (max-width: 768px) {
  .text__open-popup {
    font-size: 4vw;
  }
}

.steps {
  padding-bottom: 50px;
  margin-top: 30px;
}

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

.steps__wrapper {
  background-repeat: no-repeat;
  background-size: contain;
  color: #382F59;
  font-size: 40px;
  text-transform: uppercase;
  padding: 70px 95px;
  width: 84%;
  margin: 0 auto;
  position: relative;
  height: 295px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .steps__wrapper {
    height: 230px;
    padding: 0 95px;
  }
}

.steps__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 28px 0;
  width: 95%;
}

.steps__inner span {
  width: 25%;
  text-align: center;
}

@media screen and (min-width: 1200px) {
  .steps__inner span {
    font-size: 40px;
  }
}

@media screen and (min-width: 1025px) {
  .steps__inner span {
    font-size: 25px;
  }
}

@media screen and (max-width: 1024px) {
  .steps__inner span {
    font-size: 22px;
  }
}

@media screen and (max-width: 1024px) {
  .steps__inner {
    margin: 5px 0;
  }
}

.steps .line-big__bottom, .steps .line-big__top {
  width: 95%;
}

.steps__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.steps .coins {
  position: absolute;
  right: -9%;
  bottom: 1%;
}

@media screen and (max-width: 1024px) {
  .steps .coins {
    width: 250px;
  }
}

.steps-mobile {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 10vw;
  margin-top: 95vw;
}

@media screen and (min-width: 769px) {
  .steps-mobile {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .steps-mobile {
    margin-top: 71vw;
  }
}

.steps-mobile__text {
  font-size: 8vw;
  color: #31EAE5;
  text-transform: uppercase;
}

.steps-mobile__text:nth-of-type(3) {
  margin-bottom: 10px;
}

.steps-mobile__dots {
  margin: 30px 0;
  display: flex;
  flex-flow: column nowrap;
}

.steps-mobile__dots img:nth-of-type(2) {
  margin: 10px 0;
}

.steps-mobile__img-coins {
  width: 54vw;
  position: relative;
  top: 5px;
  z-index: 5;
}

.steps-mobile__img-confetti {
  width: 70vw;
  position: absolute;
  bottom: 0;
}

.mobile-bg {
  min-height: 80vw;
  background-image: url(../img/women.png), url(../img/man.png);
  background-repeat: no-repeat no-repeat;
  background-size: 120%, 55%;
  background-position: -20vw -5vw, -14vw;
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 95vw;
}

@media screen and (min-width: 769px) {
  .mobile-bg {
    display: none;
  }
}

.parallax {
  position: absolute;
  width: 100%;
  height: 860px;
  overflow: hidden;
  top: 0px;
  left: 0;
  z-index: 1;
}

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

.parallax .image {
  position: absolute;
  width: 100%;
  height: 860px;
  background: no-repeat;
}

.parallax #image-layer1 {
  background-image: url(../img/man.png);
  background-position: 2vw 17vw;
  background-size: 29%;
  z-index: 4;
}

.parallax #image-layer2 {
  background-image: url(../img/women.png);
  background-position: 27vw 3vw;
  z-index: 3;
  background-size: 73%;
}

.parallax #image-layer3 {
  background-image: url(../img/bullet.png);
  background-position: 64vw 17vw;
  z-index: 10;
}

.parallax #image-layer5-line {
  background-image: url(../img/line.png);
  background-position: 28vw 17vw;
  z-index: 12;
}

@media screen and (max-width: 1200px) {
  .parallax #image-layer5-line {
    display: none;
  }
}

.parallax #image-layer6-glass {
  background-image: url(../img/glass.png);
  background-position: 55vw 8vw;
  z-index: 7;
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
}

.popup__overlay {
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s all;
}

.popup.open {
  visibility: visible;
}

.popup.open .popup__overlay {
  background-color: rgba(0, 0, 0, 0.7);
}

.popup__window {
  position: relative;
  opacity: 0;
  transform: scale(0.9) translateY(50px);
  transition: 0.2s all;
  font-size: 14px;
  overflow: hidden;
  background-color: #382F59;
  max-width: 90vw;
  width: 400px;
  padding: 20px 30px;
  box-sizing: border-box;
  color: #fff;
  border-radius: 3px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  border-radius: 15px;
  width: 65vw;
  height: 90vh;
}

@media screen and (max-width: 1300px) {
  .popup__window {
    width: 80vw;
  }
}

@media screen and (max-width: 768px) {
  .popup__window {
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    max-width: 100vw;
    border-radius: 0px;
    padding: 20px 4px;
  }
}

.popup__window img:not(.popup__close) {
  width: 140px;
  align-self: center;
}

.popup.open .popup__window {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.popup__close {
  position: absolute;
  width: 15px;
  bottom: calc(100% + 10px);
  right: 15px;
  top: 15px;
  cursor: pointer;
}

.popup__content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 35px 85px;
  overflow: auto;
  margin-top: 3vw;
}

@media screen and (max-width: 1024px) {
  .popup__content {
    padding: 20px 35px;
  }
}

@media screen and (max-width: 768px) {
  .popup__content {
    padding: 20px 50px;
    display: block;
  }
}

.modal-text > div {
  text-align: center;
}

.modal-text .bonus-description {
  margin: 10px 0 20px;
  text-align: start;
}

.popup__content::-webkit-scrollbar {
  width: 5px;
}

.popup__content::-webkit-scrollbar-thumb {
  background-color: #FF2977;
}

.modal-btn {
  text-decoration: none;
  height: 42px;
  border-radius: 15px;
  background-color: #E74C50;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  margin-top: 30px;
}

.popup__title {
  font-size: 40px;
  text-align: center;
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .popup__title {
    margin-top: 75vh;
    font-size: 32px;
  }
}

@media screen and (max-width: 768px) {
  .popup__title {
    flex-flow: column;
    align-items: center;
    margin: 0;
    text-align: center;
  }
}

.popup__subtitle {
  font-size: 21px;
  font-family: 'NexaRegular', sans-serif;
  margin: 20px 0px 40px 0;
}

@media screen and (max-width: 768px) {
  .popup__subtitle {
    font-size: 17px;
    text-align: center;
  }
}

.popup__bonuses {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .popup__bonuses {
    flex-flow: column;
    align-items: center;
    display: block;
  }
}

.popup__bonuses_bonus {
  width: 31%;
  min-height: 17vw;
  padding: 28px 0;
  border-radius: 10px;
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1300px) {
  .popup__bonuses_bonus {
    min-height: 21vw;
  }
}

@media screen and (max-width: 1024px) {
  .popup__bonuses_bonus {
    min-height: 26vw;
  }
}

@media screen and (max-width: 768px) {
  .popup__bonuses_bonus {
    width: 100%;
    min-height: 40vh;
    margin-bottom: 25px;
  }
}

.popup__bonuses_bonus * {
  text-align: center;
  color: #382F59;
}

.popup__bonuses_bonus:nth-of-type(1) {
  background-color: #9CF7D5;
  background-image: url("../img/bonus-bg-1.png");
}

.popup__bonuses_bonus:nth-of-type(2) {
  background-color: #FEE5B1;
  background-image: url("../img/bonus-bg-2.png");
}

.popup__bonuses_bonus:nth-of-type(3) {
  background-color: #70EBE8;
  background-image: url("../img/bonus-bg-3.png");
}

.popup__bonuses_text-top, .popup__bonuses_text-bottom {
  text-transform: uppercase;
  font-size: 14px;
}

.popup__bonuses_text-middle {
  font-size: 25px;
  margin: 15px 0;
}

@media screen and (max-width: 768px) {
  .popup__bonuses_text {
    text-align: center;
  }
}

.popup__terms h3 {
  font-size: 21px;
  margin: 40px 0;
}

@media screen and (max-width: 325px) {
  .popup__terms h3 {
    font-size: 19px;
  }
}

.popup__terms p {
  font-family: 'NexaRegular', sans-serif;
  line-height: 30px;
}
