* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*::after {
  --moz-box-sizing: border-box;
  --webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
  border: none;
}

a:focus,
a:active {
  outline: none;
  border: none;
}

input,
button,
textarea {
  font-family: inherit;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-size: inherit;
  font-weight: inherit;
}

p {
  font-size: inherit;
  font-weight: inherit;
}

.display-none {
  display: none;
}

button {
  outline: none;
  border: none;
}

.close {
  opacity: 0;
  width: 0;
  height: 0;
  transition: all 0.5s ease;
  cursor: pointer;
}

.burger {
  opacity: 0;
  width: 0;
  height: 0;
  transition: all 0.5s ease;
  cursor: pointer;
}

.close.active {
  opacity: 1;
  width: 22px;
  height: 18px;
  transition: all 0.5s ease;
  filter: invert(1);
}

.burger.active {
  opacity: 1;
  width: 22px;
  height: 18px;
  transition: all 0.5s ease;
  filter: invert(1);
}

.nav__mobile {
  display: none;
}

.burger__container {
  display: none;
}

.cookies__container {
  background-color: #0c1824;
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 12px 12%;
  text-align: justify;
  text-transform: lowercase;
  z-index: 10;
  width: 100%;
  border-radius: 30px;
}

#accept-cookies {
  color: #fff;
  font-weight: 600;
  background-color: rgba(29, 38, 53, 0.5019607843);
  padding: 12px 24px;
  margin-top: 15px;
  cursor: pointer;
  transition: all 0.5s ease;
  border-radius: 30px;
}

#accept-cookies:hover {
  box-shadow: linear-gradient(180deg, rgba(43, 26, 44, 0) 25%, #82039e 100%);
  transition: all 0.5s ease;
}

.header-2 {
  font-size: 26px;
  font-family: "unbounded", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.header-3 {
  font-size: 22px;
  font-weight: 600;
  font-family: "Onest", sans-serif;
}

.descr {
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
  line-height: 26px;
  text-wrap: balance;
  font-family: "Roboto Flex", sans-serif;
}

body {
  color: #ffffff;
  font-family: "Roboto Slab", sans-serif;
  background: #09101E;
  background-attachment: scroll;
}

a {
  color: #ffffff;
}

.btn {
  margin: 0 auto;
  padding: 18px 69px;
  background: linear-gradient(84.35deg, #5EB5FF 10.6%, #0080FF 31.95%, #0098F9 46.89%, #5EB5FF 61.77%, #009BF8 78.96%, #5EB5FF 88.77%, #009BF8 97.17%);
  color: #09101E;
  text-transform: uppercase;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  font-weight: 700;
  border-radius: 30px;
  border: 1px solid transparent;
  font-family: "Roboto Slab", sans-serif;
}
.btn:hover {
  transition: all 0.3s ease;
  box-shadow: 0px 0px 18px 0px rgb(0, 133, 255);
}

.container {
  padding: 0 2%;
  max-width: 1560px;
  margin: 0 auto;
}

.grid-3__list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.grid-3__item {
  display: grid;
  grid-column: 4 span;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  transition: all 0.4s ease;
  z-index: 10;
  background: #1D2635;
  font-weight: 700;
}
.header .btn {
  border-radius: 6px;
  padding: 7px 27px;
  display: block;
  width: 180px;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1D2635;
  width: 100vw;
  height: 60px;
  padding: 0px 6%;
  max-width: 1560px;
  margin: 0 auto;
}

.nav__list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 15px;
}

.nav__item:not(:last-child) {
  margin-right: 22px;
}

.nav__item {
  position: relative;
  font-weight: 600;
}
.nav__item .back {
  padding-top: 15px;
  position: relative;
  transition: all 0.3s ease;
}
.nav__item .back::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(146, 23, 132, 0.5);
  filter: blur(4px);
  transform: scaleX(0);
  transform-origin: center;
  transition: all 0.3s ease;
}
.nav__item:hover .back {
  background: linear-gradient(180deg, rgba(43, 26, 44, 0) 25%, #82039e 100%);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.nav__item:hover .back::after {
  transform: scaleX(1);
  filter: blur(10px);
}

.img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.logo {
  height: auto;
  width: 120px;
}

.main__title {
  font-size: 56px;
  font-weight: 600;
}

.main {
  padding-top: 50px;
  width: 100%;
  background: #09101E;
  background-attachment: scroll;
  min-height: 40vh;
  margin-top: 100px;
  position: relative;
  padding: 50px 4%;
}
.main .descr {
  font-size: 22px;
  line-height: 31px;
  font-weight: 500;
  width: 40%;
}
.main .top {
  display: flex;
  position: relative;
}
.main .left-side {
  width: 80%;
}
.main .right-side {
  position: relative;
}
.main .right-side .img {
  position: absolute;
  width: auto;
  min-height: 40vh;
  top: -100px;
  right: -340px;
}
.main .back-money {
  background: url(../img/bg-main.png) no-repeat center/cover;
  width: 100%;
  position: absolute;
  height: 100%;
  bottom: 80px;
  left: -3%;
  background-attachment: scroll;
}
.main .btn__container {
  margin-top: 100px;
}

.main-content {
  position: relative;
  padding: 0 4%;
}

.app {
  position: relative;
}
.app .back-money {
  background: url(../img/bg-app.png) no-repeat center/contain;
  width: 110%;
  position: absolute;
  height: 100%;
  bottom: 80px;
  left: -7%;
  background-attachment: scroll;
}
.app .grid-3__item {
  display: grid;
  border-radius: 20px;
  padding: 25px 35px 60px 25px;
  position: relative;
  z-index: 2;
}
.app .grid-3__item:nth-child(1) {
  background: url(../img/app-1.png) no-repeat center/cover;
}
.app .grid-3__item:nth-child(2) {
  background: url(../img/app-2.png) no-repeat center/cover;
}
.app .grid-3__item:nth-child(3) {
  background: url(../img/app-3.png) no-repeat center/cover;
}

.information {
  position: relative;
  margin-top: 106px;
}
.information .back-money {
  background: url(../img/bg-inform.png) no-repeat center/contain;
  width: 110%;
  position: absolute;
  height: 100%;
  bottom: 80px;
  left: -7%;
  background-attachment: scroll;
}
.information .info-content {
  display: flex;
  margin-top: 30px;
}
.information .info-content .left {
  width: 40%;
  margin-right: 50px;
}
.information .info-content .left .list {
  border-radius: 20px;
  padding: 15px 0;
  background: rgba(29, 38, 53, 0.5019607843);
}
.information .info-content .left .item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10%;
  border-bottom: 1px solid #95A0B9;
}
.information .info-content .left .item:last-child .item-content {
  border: none;
}
.information .info-content .left .descr {
  line-height: 26px;
}
.information .info-content .right {
  width: 50%;
}
.information .info-content .right .img {
  -o-object-fit: contain;
     object-fit: contain;
}

.welcome {
  margin-top: 106px;
  position: relative;
}
.welcome .grid-3__list {
  gap: 22px;
}
.welcome .grid-3__item {
  background: #1D2635;
  padding: 36px 33px 33px 33px;
  border-radius: 30px;
  text-align: center;
  position: relative;
}
.welcome .grid-3__item:first-child:before {
  content: "";
  position: absolute;
  border-bottom: 7px solid #de6fde;
  top: 50%;
  right: -10%;
  width: 10%;
}
.welcome .grid-3__item:nth-child(2):before {
  content: "";
  position: absolute;
  border-bottom: 7px solid #cc6fde;
  top: 50%;
  right: -10%;
  width: 10%;
}
.welcome .circle-back-ext {
  box-shadow: 0 0 5px 5px rgb(40, 53, 71);
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px;
  margin: 0 auto;
  border-radius: 50%;
}
.welcome .circle-back-int {
  box-shadow: 0 0 5px 5px rgb(40, 53, 71);
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px;
  margin: 0 auto;
  border-radius: 50%;
}
.welcome .circle {
  font-family: "unbounded", sans-serif;
  font-size: 35px;
  line-height: 49px;
  background: linear-gradient(84.35deg, #5EB5FF 10.6%, #0080FF 31.95%, #0098F9 46.89%, #5EB5FF 61.77%, #009BF8 78.96%, #5EB5FF 88.77%, #009BF8 97.17%);
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 28px;
  margin: 0 auto;
  border-radius: 50%;
}
.welcome .header-3 {
  letter-spacing: 1px;
}

.download-mobile .grid-3__item {
  background: none;
  align-content: baseline;
  position: relative;
  padding: 36px 13px 33px 13px;
}
.download-mobile .card-main {
  background: #1D2635;
  padding: 36px 33px 33px 33px;
  border-radius: 30px;
  text-align: center;
  min-height: 15vh;
}
.download-mobile .img {
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 40px;
}
.download-mobile .grid-3__item:first-child:before {
  content: "";
  position: absolute;
  border-bottom: none;
  border-left: 5px solid #0198fb;
  top: 150px;
  right: 41%;
  width: 10%;
  height: 200px;
  z-index: -1;
}
.download-mobile .grid-3__item:nth-child(2):before {
  content: "";
  position: absolute;
  border-bottom: none;
  border-left: 5px solid #0198fb;
  top: 150px;
  right: 41%;
  width: 10%;
  height: 200px;
  z-index: -1;
}
.download-mobile .grid-3__item:nth-child(3):before {
  content: "";
  position: absolute;
  border-bottom: none;
  border-left: 5px solid #0198fb;
  top: 150px;
  right: 41%;
  width: 10%;
  height: 200px;
  z-index: -1;
}
.download-mobile .circle-back-ext {
  margin-top: -70px;
}
.download-mobile .circle {
  padding: 10px 14px;
}
.download-mobile .circle-back-int {
  padding: 0;
}
.download-mobile .descr {
  margin-top: 24px;
}
.download-mobile .back-money {
  background: url(../img/bg-iphone.png) no-repeat center/contain;
  width: 110%;
  position: absolute;
  height: 100%;
  bottom: 80px;
  left: -7%;
  background-attachment: scroll;
}

.download-android .back-money {
  background: url(../img/bg-android.png) no-repeat center/contain;
  width: 110%;
  position: absolute;
  height: 100%;
  bottom: 80px;
  left: -7%;
  background-attachment: scroll;
}

.download-mac .back-money {
  background: url(../img/bd-mac-chrome.png) no-repeat center/contain;
  width: 110%;
  position: absolute;
  height: 100%;
  bottom: 80px;
  left: -57%;
  background-attachment: scroll;
}

.download-winda .back-money {
  background: url(../img/bd-wind-chrome.png) no-repeat center/contain;
  width: 110%;
  position: absolute;
  height: 100%;
  bottom: 80px;
  left: -59%;
  background-attachment: scroll;
}

.download-desktop .download-content {
  display: flex;
  align-items: center;
}
.download-desktop .download-content .left {
  width: 70%;
}
.download-desktop .download-content .right {
  width: 30%;
}
.download-desktop .circle-back-ext {
  margin-top: -70px;
}
.download-desktop .circle {
  padding: 10px 14px;
}
.download-desktop .circle-back-int {
  padding: 0;
}
.download-desktop .descr {
  margin-top: 24px;
}

.footer {
  padding-top: 50px;
}

.back-money {
  z-index: -1;
}

@media screen and (max-width: 1800px) {
  .ab .money-back {
    width: 100%;
  }
  .welcome .money-back {
    width: 100%;
  }
}
@media screen and (max-width: 1440px) {
  .main .right-side .img {
    position: absolute;
    width: auto;
    top: -150px;
    right: -310px;
  }
}
@media screen and (max-width: 1300px) {
  .main .left-side {
    width: 50%;
  }
  .main .right-side .img {
    position: absolute;
    width: auto;
    width: auto;
    min-height: 31vh;
    top: -20px;
    right: -570px;
  }
  .main .grid-3__item {
    margin-top: 0px;
  }
  .main .grid-3__item .btn__content {
    padding: 8px;
  }
  .main .grid-3__item .btn__content .arrow {
    padding: 12px 20px;
  }
  .header-2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 1024px) {
  .main .top {
    flex-direction: column;
    text-align: center;
  }
  .main .descr {
    width: 100%;
  }
  .download-mobile .card-main {
    min-height: 19vh;
  }
  .main .btn__container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
  .main .left-side {
    width: 100%;
  }
  .main .right-side .img {
    position: relative;
    width: 100%;
    min-height: auto;
    top: -30px;
    right: 0px;
  }
  .main .grid-3__list {
    margin-top: -150px;
  }
  .main-content {
    margin-top: 30px;
  }
  .payment .grid-6__item {
    grid-column: 4 span;
  }
  .grid-4__item {
    grid-column: 6 span;
  }
}
@media screen and (max-width: 768px) {
  .burger__container {
    display: block;
  }
  .download-mobile .card-main {
    min-height: auto;
  }
  .nav {
    display: none;
  }
  .nav__mobile.active {
    display: block;
    opacity: 1;
    height: auto;
    width: auto;
    padding-bottom: 20px;
  }
  .information .info-content {
    flex-direction: column-reverse;
    overflow: hidden;
  }
  .information .info-content .left {
    width: 100%;
    margin-right: 0;
    margin-top: 30px;
  }
  .information .info-content .right {
    width: 100%;
    margin-top: 24px;
  }
  .information .info-content .right .img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .main .right-side .img {
    min-height: 39vh;
  }
  .btn {
    display: inline-block;
  }
  .grid-3__item {
    grid-column: 12 span;
  }
  .welcome .grid-3__item:first-child:before {
    top: 40%;
    right: 40%;
    height: 40%;
  }
  .welcome .circle {
    font-size: 25px;
    line-height: 17px;
    width: 75px;
    height: 75px;
    padding: 29px 12px;
  }
}
@media screen and (max-width: 768px) {
  .header__container {
    background: #09101E;
  }
  .header .btn {
    width: 114px;
    color: #1D2635;
    font-weight: 600;
  }
  .main__title {
    font-size: 24px;
  }
  .descr {
    font-size: 14px;
  }
  .main .right-side {
    overflow: hidden;
  }
  .main .grid-3__list {
    margin-top: -90px;
  }
  .payment .grid-6__item {
    grid-column: 6 span;
  }
  .grid-4__item {
    grid-column: 12 span;
  }
  .header-2 {
    font-size: 20px;
  }
  .header-3 {
    font-size: 20px;
  }
  .main .descr {
    font-size: 14px;
    line-height: 18px;
  }
  .main .grid-3__item .btn__content .left .descr {
    font-size: 14px;
  }
  .back-money {
    display: none;
  }
  .download-desktop .download-content {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
  }
  .download-desktop .download-content .left {
    width: 100%;
    margin-right: 0;
  }
  .download-desktop .download-content .right {
    width: 100%;
  }
  .download-desktop .grid-3__item:first-child:before {
    top: 100%;
    right: 40%;
    height: 40%;
    border-left: 5px solid #0198fb;
    border-bottom: none;
  }
  .welcome .grid-3__item:nth-child(2):before {
    top: 10%;
    right: 40%;
    height: 40%;
    border-left: 5px solid #0198fb;
    border-bottom: none;
  }
  .download-desktop .grid-3__item:nth-child(2):before {
    top: 100%;
  }
  .download-desktop .grid-3__item {
    margin-bottom: 50px;
  }
}
html {
  scroll-behavior: smooth;
}

@media screen and (max-width: 550px) {
  .welcome .grid-3__item:first-child:before {
    top: 50%;
  }
  .welcome .grid-3__item:nth-child(2):before {
    top: 30%;
  }
  .download-desktop .grid-3__item:first-child:before {
    top: 100%;
  }
  .download-desktop .grid-3__item:nth-child(2):before {
    top: 100%;
  }
}/*# sourceMappingURL=style.css.map */