a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block
}

body {
  line-height: 1
}

ol,
ul {
  list-style: none
}

blockquote,
q {
  quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

select {
  -webkit-appearance: none;
  border: none;
  outline: none;
  cursor: pointer
}

select::-ms-expand {
  display: none
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/montserrat-bold-webfont.woff2) format("woff2"), url(../fonts/montserrat-bold-webfont.woff) format("woff");
  font-weight: 700;
  font-style: normal
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/montserrat-extrabold-webfont.woff2) format("woff2"), url(../fonts/montserrat-extrabold-webfont.woff) format("woff");
  font-weight: 800;
  font-style: normal
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/montserrat-black-webfont.woff2) format("woff2"), url(../fonts/montserrat-black-webfont.woff) format("woff");
  font-weight: 900;
  font-style: normal
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/montserrat-regular-webfont.woff2) format("woff2"), url(../fonts/montserrat-regular-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: Roboto;
  src: url(../fonts/roboto-medium-webfont.woff2) format("woff2"), url(../fonts/roboto-medium-webfont.woff) format("woff");
  font-weight: 500;
  font-style: normal
}

@font-face {
  font-family: Roboto;
  src: url(../fonts/roboto-black-webfont.woff2) format("woff2"), url(../fonts/roboto-black-webfont.woff) format("woff");
  font-weight: 900;
  font-style: normal
}

@font-face {
  font-family: Roboto;
  src: url(../fonts/roboto-bold-webfont.woff2) format("woff2"), url(../fonts/roboto-bold-webfont.woff) format("woff");
  font-weight: 700;
  font-style: normal
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: url(../img/bg-mobile.jpg) #460682 no-repeat top/cover;
  color: #1d1c1e;
  line-height: 1.2;
  font-family: Montserrat;
  font-weight: 400;
  font-style: normal
}

@media (min-width:500px) {
  body {
    background-image: url(../img/bg-tablet.jpg)
  }
}

@media (min-width:768px) {
  body {
    background-image: url(../img/bg-desk.jpg)
  }
}

.body-wrap {
  overflow: hidden
}

.body-wrap,
.layout {
  position: relative;
  width: 100%
}

.layout {
  max-width: 320px;
  margin-right: auto;
  margin-left: auto
}

@media (min-width:500px) {
  .layout {
    max-width: 480px
  }
}

@media (min-width:768px) {
  .layout {
    max-width: 720px
  }
}

@media (min-width:1100px) {
  .layout {
    max-width: 900px
  }
}

@media (min-width:1500px) {
  .layout {
    max-width: 1000px
  }
}

.accent-red {
  color: #d14c4e;
  margin: 0 5px
}

.accent-blue {
  color: #518f9a
}

.btn-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex
}

.btn,
.btn-wrap {
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.btn {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #fff;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(#d14c4e), to(#bb3335));
  background: -moz-linear-gradient(top, #d14c4e, #bb3335);
  background: linear-gradient(180deg, #d14c4e, #bb3335);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  text-align: center;
  min-width: 300px;
  padding: 25px 0;
  -webkit-transition: -webkit-filter .4s;
  transition: -webkit-filter .4s;
  -moz-transition: filter .4s;
  transition: filter .4s;
  transition: filter .4s, -webkit-filter .4s
}

@media (min-width:500px) {
  .btn {
    min-width: 375px;
    font-size: 32px;
    padding: 30px 0
  }
}

@media (min-width:768px) {
  .btn {
    min-width: 295px;
    font-size: 25px;
    padding: 25px 0
  }
}

@media (min-width:1100px) {
  .btn {
    min-width: 338px;
    font-size: 30px;
    padding: 28px 0
  }
}

.btn:hover {
  -webkit-filter: brightness(1.15);
  filter: brightness(1.15)
}

.header {
  padding-top: 30px
}

@media (min-width:768px) {
  .header {
    padding-top: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
}

@media (min-width:1100px) {
  .header {
    padding-top: 30px
  }
}

.logo {
  display: block;
  width: 220px;
  margin: 0 auto 25px;
  -ms-flex-negative: 0;
  flex-shrink: 0
}

@media (min-width:768px) {
  .logo {
    width: 135px;
    margin: 0
  }
}

@media (min-width:1100px) {
  .logo {
    width: 185px;
  }
}

.slogan {
  text-align: center;
  font-weight: 700;
  font-size: 21px;
  color: #0894FB;
}

@media (min-width:500px) {
  .slogan br {
    display: none
  }
}

@media (min-width:768px) {
  .slogan {
    text-align: right;
    color: #fff;
    font-size: 20px
  }
}

@media (min-width:1100px) {
  .slogan {
    max-width: 70%;
    font-size: 24px
  }
}

.welcome {
  position: relative
}

@media (min-width:768px) {
  .welcome {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }
}

@media (min-width:768px) {

  .welcome,
  .welcome .btn-wrap {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }
}

.title-wrap {
  text-align: center;
  margin: 30px 0
}

@media (min-width:768px) {
  .title-wrap {
    margin: 100px 0 75px;
    width: 400px;
    text-align: left
  }
}

@media (min-width:1100px) {
  .title-wrap {
    margin: 60px 0;
    width: 535px
  }
}

.title-wrap .title {
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
  -webkit-background-clip: text;
}

@media (min-width:500px) {
  .title-wrap .title {
    font-size: 53px
  }
}

@media (min-width:768px) {
  .title-wrap .title {
    font-size: 50px
  }
}

@media (min-width:1100px) {
  .title-wrap .title {
    font-size: 65px;
    color: #0894FB;
  }
}

.title-wrap .subtitle {
  color: #fe2e31;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px
}

@media (min-width:500px) {
  .title-wrap .subtitle {
    font-size: 28px;
    margin-bottom: 15px
  }
}

@media (min-width:1100px) {
  .title-wrap .subtitle {
    font-size: 34px
  }
}

.title-wrap .text {
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
}

@media (min-width:500px) {
  .title-wrap .text {
    font-size: 30px;
    color: #ffffff;
  }
}

.img-wrap {
  position: relative;
  width: 100%;
  margin: 110px auto 100px;
  -webkit-animation: a 4s ease-in-out infinite alternate;
  -moz-animation: a 4s ease-in-out infinite alternate;
  animation: a 4s ease-in-out infinite alternate;
  pointer-events: none
}

@media (min-width:768px) {
  .img-wrap {
    position: absolute;
    top: auto;
    bottom: 0;
    right: -10%;
    margin: 0;
    width: 58%
  }
}

@media (min-width:1100px) {
  .img-wrap {
    right: 0;
    bottom: auto;
    top: 15%;
    width: 52%
  }
}

.img-wrap:after,
.img-wrap img {
  width: 100%;
  margin: auto
}

.img-wrap:after {
  content: "";
  position: absolute;
  bottom: -26%;
  left: 0;
  right: 0;
  top: auto;
  height: 100%;
  opacity: .7;
  background: url(../img/Light.png) no-repeat bottom/100%;
  -webkit-animation: b 2s ease-in-out alternate infinite;
  -moz-animation: b 2s ease-in-out alternate infinite;
  animation: b 2s ease-in-out alternate infinite
}

@-webkit-keyframes a {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }

  50% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px)
  }
}

@-moz-keyframes a {
  0% {
    -moz-transform: translateY(0);
    transform: translateY(0)
  }

  50% {
    -moz-transform: translateY(10px);
    transform: translateY(10px)
  }
}

@keyframes a {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0)
  }

  50% {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    transform: translateY(10px)
  }
}

@-webkit-keyframes b {
  0% {
    -webkit-filter: brightness(1);
    filter: brightness(1)
  }

  50% {
    -webkit-filter: brightness(1.25);
    filter: brightness(1.25)
  }
}

@-moz-keyframes b {
  0% {
    filter: brightness(1)
  }

  50% {
    filter: brightness(1.25)
  }
}

@keyframes b {
  0% {
    -webkit-filter: brightness(1);
    filter: brightness(1)
  }

  50% {
    -webkit-filter: brightness(1.25);
    filter: brightness(1.25)
  }
}

.block-title {
  font-family: Roboto;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  color: #fff
}

@media (min-width:500px) {
  .block-title {
    font-size: 18px
  }
}

@media (min-width:768px) {
  .block-title {
    font-size: 20px
  }
}

@media (min-width:1100px) {
  .block-title {
    font-size: 18px
  }
}

.block-title.flex-title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.block-title.flex-title .crypto {
  margin: 5px;
  max-width: 90px;
  max-height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0
}

@media (min-width:768px) {
  .block-title.flex-title .crypto {
    max-width: 120px;
    max-height: 30px;
    margin: 8px 5px
  }
}

.block-title.gradient {
  padding: 15px 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(57, 5, 112, 0)), color-stop(50%, #862d9c), to(rgba(57, 5, 112, 0)));
  background: -moz-linear-gradient(left, rgba(57, 5, 112, 0) 0, #862d9c 50%, rgba(57, 5, 112, 0));
  background: linear-gradient(90deg, rgba(57, 5, 112, 0) 0, #862d9c 50%, rgba(57, 5, 112, 0))
}

@media (min-width:500px) {
  .block-title.gradient {
    padding: 25px 0
  }
}

.benefits {
  margin: 30px 0
}

@media (min-width:768px) {
  .benefits {
    margin: 0 0 50px;
    padding-top: 180px
  }
}

.benefits .wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px
}

@media (min-width:1100px) {
  .benefits .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 50px
  }
}

.benefits .item {
  position: relative;
  background: url(../img/benefit-bg.png) no-repeat top/100%;
  -moz-border-radius: 100px;
  border-radius: 100px;
  width: 100%;
  height: 140px;
  margin: 0 auto 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 25px 0 30px
}

@media (min-width:500px) {
  .benefits .item {
    width: 440px;
    height: 190px;
    padding: 0 30px 0 40px
  }
}

.benefits .item:last-child {
  margin-bottom: 0
}

.benefits .icon {
  position: relative;
  width: 95px;
  height: 95px;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 4px solid #518f9a;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 5px
}

@media (min-width:500px) {
  .benefits .icon {
    width: 135px;
    height: 135px
  }
}

.benefits .icon.rotate {
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  transform: rotate(-20deg)
}

.benefits .icon img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 60%;
  height: 60%
}

.benefits .text-block {
  font-family: Roboto;
  font-weight: 900
}

.benefits .ben-title {
  font-size: 16px;
  text-transform: uppercase
}

@media (min-width:500px) {
  .benefits .ben-title {
    font-size: 20px
  }
}

.benefits .text {
  font-size: 10px
}

@media (min-width:500px) {
  .benefits .text {
    font-size: 14px
  }
}

.steps {
  margin: 20px 0
}

@media (min-width:768px) {
  .steps {
    margin: 45px 0
  }
}

@media (min-width:1100px) {
  .steps {
    margin: 65px 0
  }
}

.steps .wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

@media (min-width:768px) {
  .steps .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-top: 40px
  }
}

.steps .item {
  position: relative;
  font-family: Roboto;
  background: #882e9d;
  color: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -moz-border-radius: 100px;
  border-radius: 100px;
  width: 230px;
  height: 100px;
  margin: 35px auto
}

@media (min-width:500px) {
  .steps .item {
    width: 320px;
    height: 120px;
    margin: 45px auto
  }
}

@media (min-width:768px) {
  .steps .item {
    width: 185px;
    height: 80px;
    margin: 0 15px
  }
}

@media (min-width:1100px) {
  .steps .item {
    width: 230px;
    height: 85px
  }
}

.steps .number {
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.steps .number,
.steps .number svg {
  position: absolute
}

.steps .number span {
  position: relative;
  color: #518f9a;
  font-size: 80px;
  font-weight: 700;
  z-index: 1
}

@media (min-width:500px) {
  .steps .number span {
    font-size: 90px
  }
}

@media (min-width:768px) {
  .steps .number span {
    font-size: 58px
  }
}

@media (min-width:1100px) {
  .steps .number span {
    font-size: 62px
  }
}

.steps .text-block {
  padding-left: 85px
}

@media (min-width:500px) {
  .steps .text-block {
    padding-left: 120px
  }
}

@media (min-width:768px) {
  .steps .text-block {
    padding-left: 65px
  }
}

@media (min-width:1100px) {
  .steps .text-block {
    padding-left: 80px
  }
}

.steps .step-title {
  font-size: 20px;
  font-weight: 700
}

@media (min-width:500px) {
  .steps .step-title {
    font-size: 28px
  }
}

@media (min-width:768px) {
  .steps .step-title {
    font-size: 18px
  }
}

.steps .text {
  font-size: 14px;
  font-weight: 500
}

@media (min-width:500px) {
  .steps .text {
    font-size: 26px
  }
}

@media (min-width:768px) {
  .steps .text {
    font-size: 14px
  }
}

.footer {
  margin: 30px 0
}

@media (min-width:1100px) {
  .footer {
    margin: 60px 0
  }
}

.footer .block-title {
  margin-bottom: 50px
}

@media (min-width:500px) {
  .footer .block-title {
    margin-bottom: 45px
  }
}

@media (min-width:1100px) {
  .footer .block-title {
    margin-bottom: 60px
  }
}

.payments {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 25px 0
}

@media (min-width:1100px) {
  .payments {
    margin: 40px 0
  }
}

.payments img {
  margin: 2px 5px 5px;
  max-width: 90px;
  max-height: 30px
}

@media (min-width:500px) {
  .payments img {
    max-width: 100px;
    max-height: 36px
  }
}

@media (min-width:768px) {
  .payments img {
    max-width: 130px;
    max-height: 45px;
    margin: 5px 10px
  }
}

@media (min-width:1100px) {
  .payments img {
    max-width: 145px;
    max-height: 48px;
    margin: 5px 15px
  }
}

.copyright {
  font-size: 15px;
  color: hsla(0, 0%, 100%, .5);
  text-align: center
}

@media (min-width:500px) {
  .copyright {
    font-size: 16px
  }
}

@media (min-width:1100px) {
  .copyright {
    font-size: 18px
  }
}

.el {
  position: absolute;
  pointer-events: none
}

.el img {
  width: 100%
}

.el-1 {
  width: 20%;
  top: 45%;
  left: -27%
}

@media (min-width:768px) {
  .el-1 {
    width: 15%;
    top: 50%;
    left: -15%
  }
}

.el-2 {
  width: 22%;
  top: 55%;
  right: -18%
}

@media (min-width:768px) {
  .el-2 {
    width: 16%;
    top: 65%;
    right: -20%
  }
}

.el-3 {
  width: 18%;
  top: 32%;
  right: 20%
}

@media (min-width:768px) {
  .el-3 {
    width: 11%;
    top: 25%;
    right: 23%
  }
}

@media (min-width:1100px) {
  .el-3 {
    top: 30%
  }
}

.el-4 {
  width: 20%;
  top: 20%;
  left: -22%
}

@media (min-width:768px) {
  .el-4 {
    width: 10%;
    top: 5%;
    left: auto;
    right: -15%
  }
}

.el-5 {
  width: 22%;
  top: 6%;
  right: -23%
}

@media (min-width:768px) {
  .el-5 {
    width: 20%;
    top: 35%;
    right: -40%
  }
}

.el-6 {
  width: 13%;
  top: 22%;
  right: -10%
}

@media (min-width:768px) {
  .el-6 {
    width: 21%;
    top: 23%;
    right: auto;
    left: -27%
  }
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
  .title-wrap .title {
    background: none;
    color: #355e64
  }

  .steps .number span {
    color: #fff
  }
}