@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;700;800&display=swap');

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  height: 100%;
  min-height: 100vh;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  background: #010000;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

h1,
.title {
  display: block;
  position: relative;
  text-transform: uppercase;
  line-height: 1;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100%;
}

.main__img {
  position: absolute;
  right: 0;
  top: 0;
  height: 70%;
  z-index: -1;
}

.main__img img {
  display: block;
  height: 100%;
  max-width: unset;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.cover {
  padding-left: calc(50% - 1210px / 2);
  padding-right: calc(50% - 1210px / 2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  width: 100%;
  margin: 0 auto;
}

/* HEADER */
.header {
  padding-top: 60px;
  padding-bottom: 54px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.header__logo {
  margin: 0;
}

.header__logo + .header__logo {
  border-left: 0.5px solid #ffffff;
}

.header__logo:first-child {
  padding-left: 0;
}

.header__logo img {
  display: block;
  width: 140px;
}

/* PRIME */
.prime {
  margin-top: auto;
  margin-bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  z-index: 1;
}

.prime__badge {
  margin-bottom: 20px;
  padding: 14px 25px;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 1.1px;
  color: #ffffff;
  background-color: #e96e32;
  text-transform: uppercase;
  border: 1px solid #e96e32;
  border-radius: 5px;
	cursor: pointer;
}

.prime__badge:hover {
	opacity: 0.7;
}

.prime__title {
  margin-bottom: 20px;
  max-width: 500px;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  text-align: left;
  color: #ffffff;
}

.prime__title-additional {
  margin-bottom: 33px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.title__icon {
  margin: 0 10px;
  flex: 0 0 31px;
}

.title__icon img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.prime__desc {
  max-width: 355px;
  text-align: center;
}

.prime__button {
  margin-bottom: 15px;
  padding: 20px 50px;
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #ffffff;
  background: #8f00ff;
  border-radius: 295px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.prime__button:hover {
	opacity: 0.7;
}

.prime__desc p {
  font-weight: 300;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.25px;
}

.prime__desc p > a {
  color: inherit;
  font: inherit;
  text-decoration: underline;
}

.prime__desc p > a:hover {
  text-decoration: none;
}

/* Instructions */
.instructions {
  margin-top: 38px;
  padding-top: 36px;
  padding-bottom: 36px;
  background: #292133;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.instructions ul {
  padding: 26px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  background: #822ef0;
  border-radius: 10px;
  border: 1px solid #9193fb;
}

.instructions li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
}

.instructions li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  color: #ffffff;
}

.instructions li a:hover {
  opacity: 0.7;
}

.instructions li:not(:last-child)::after {
  content: '';
  margin: 0 45px;
  display: block;
  width: 11px;
  height: 21px;
  background-image: url("../img/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.instructions__icon {
  margin-right: 10px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 35px;
  -ms-flex: 0 0 35px;
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
}

.instructions__icon img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.instructions__desc {
  max-width: 175px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.1;
  width: 100%;
}


.instructions__desc > b {
  /* display: block; */
  font-weight: 800;
}

/* FOOTER */
.footer {
  padding-top: 26px;
  padding-bottom: 26px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  max-width: 100% !important;
  background: #161616;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.footer > * {
  width: 100%;
}

.footer > *:not(:last-child) {
  margin-right: 12px;
}

.footer img {
  display: block;
}

.footer ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__payment {
  width: 100%;
  max-width: 50%;
  margin: 0 auto;
}

.footer__payment li + li {
  margin-left: 20px;
}

.footer__payment img {
  display: block;
  max-height: 24px;
}

.footer__crypto {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer-crypto__title {
  margin-right: 30px;
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: #ffffff;
}

.footer__crypto ul li + li {
  margin-left: 14.5px;
}

.popup-wrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99;
    background: #000000c7;
}

.popup-wrap-content {
    width: 736px;
    min-height: 589px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 24px;
    overflow: hidden;
    background: #1e1450;
    display: flex;
    justify-content: end;
}

.banner {
    width: 286px;
    height: 100%;
    background: url("../img/sadq3234-web.jpg") center / cover no-repeat;
    padding: 52px 16px 0 32px;
    position: absolute;
    z-index: -2;
    left: 0;
    top: 0;
    bottom: 0;
}

.banner-title {
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.banner-text {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 27.78px;
    color: #fff;
    width: 200px;
    text-align: center;
}

.yellow {
    color: #FFDC41;
}

.banner-text span {
    font-weight: 900;
    font-size: 52px;
    line-height: 56px;
    display: block;
}

iframe#TRUE_SIGNUP_FRAME {
    width: 480px;
    z-index: 3;
    border-radius: 24px;
    outline: none;
    border: none;
}

.close-banner {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 16px;
    top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #BEB9FF33;
    border-radius: 12px;
    cursor: pointer;
}

.close-banner img {
    width: 16px;
    height: 16px;
}
@media (max-width: 900px) {
    .popup-wrap-content {
        width: calc(100% - 16px);
        height: auto;
        position: relative;
        min-height: 684px;
        display: block;
    }

    .banner {
        width: 100%;
        height: 152px;
        background: url("../img/dasdas32423.png") center / cover no-repeat;
        padding: 20px 24px;
        position: relative;
    }

    .banner-title {
        font-weight: 400;
        font-size: 16px;
        margin-bottom: 0;
    }
    
    .banner-text {
        width: 100%;
        text-align: left;
    }
    
    .banner-text span {
        font-weight: 900;
        font-size: 32px;
        line-height: 38px;
        display: inline;
    }
    
    iframe#TRUE_SIGNUP_FRAME {
        min-height: 546px;
        border-radius: 24px;
        margin-top: -12px;
        width: 100%;
    }
}