/* Ð¨Ñ€Ð¸Ñ„Ñ‚Ð¸ */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Raleway:wght@500&display=swap');


/* reset */
* {
    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%;
    font-size: 100%;
    line-height: 100%;
    font-size: 16px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

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;
}

ul li {
    list-style: none;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
}

a {
    color: inherit;
}

/* /reset */

:root {
    --container-width: 1100px;
}

/* default --------*/
html,
body {
    font-family: "Lato", sans-serif;
    height: 100%;
    font-weight: 400;
    scroll-behavior: smooth;
    color: #fff;
}

.app {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}



/*-------------- button --------------*/
.btn {
    width: 100%;
    max-width: 456px;
    border-radius: 16px;
    background: linear-gradient(90deg, #0095FF 0%, #0015FF 100%);
    -webkit-box-shadow: 0px 4px 7.3px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 7.3px 0px rgba(0, 0, 0, 0.25);
    padding: 16px;
    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;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.4px;
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    text-transform: uppercase;
}

.btn:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
}

.btn:active {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}





/* =============== mobile version =============== */
.main {
    position: relative;
}

.page,
.event {
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.page.active {
    display: block;
    opacity: 1;
}



/* --------- intro --------- */
.intro {
    position: relative;
    padding: 30px 0;
    background: url("../images/intro-bg_mob.jpg") no-repeat top center/100% 100%
}

.intro-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    height: calc(100vh - 100px);
    gap: 50px;
    position: relative;
    z-index: 2;
}

.intro-logo {
    max-width: 120px;
}

.intro-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 32px;
    text-align: center;
}

.intro-title p {
    margin-top: 22px;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    font-style: italic;
}

.intro-form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
}

.intro-form-wrapper {
    max-width: 456px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
    background: #3056b738;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    box-shadow: 2px 1px 20px #00e5ff36;
}

.form-input-main {
    width: 100%;
}

.form-input-main input {
    width: 100%;
    height: 54px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(40px);
    color: #fff !important;
    padding: 25px;
    font-size: 16px;
}

.form-input-main input::placeholder {
    color: #fff;
    opacity: 1;
}

.intro-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
}

.intro-text {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    max-width: 400px;
    font-style: italic;
}


.footer-desk {
    display: none;
}

.footer {
    margin-top: 40px;
}

.footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.footer-content img {
    max-width: 175px;
    width: 100%;
}




/* -------- trade --------*/

.income.active,
.review.active,
.end.active,
.trade.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    opacity: 1;
}

.trade {
    background: url("../images/trade-bg_mob.jpg") no-repeat center bottom/cover;
    padding: 30px 16px;
    flex-direction: column;
}

.trade-hero__info-logo {
    margin: 0 auto;
    max-width: 105px;
}

.trade .container {
    margin-top: 22px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 16px;
}

.trade-hero__subtitle {
    text-align: center;
    font-size: 16px;
    line-height: 22px;
}

.trade-hero__subtitle h2 {
    font-weight: 800;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 10px;
}

.trade-hero__note {
    font-size: 14px;
    font-weight: 800;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    margin: 40px auto -40px;
}

.trade-chart {
    margin-top: 16px;
    overflow: hidden;
    border-radius: 24px;
    background: #000;
    color: #fff !important;
}

.trade-control {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.trade-control__profit-title,
.trade-control__profit-value {
    text-align: center;
}

.trade-control__active-users {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
}

.trade-control__active-users span {
    font-weight: 800;
    color: #29def7;
}

.trade-control__profit-title {
    font-size: 20px;
    line-height: 28px;
}

.trade-control__profit-value {
    font-weight: 600;
}

.trade-control__button {
    width: 100%;
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.trade-control__button .button {
    width: 100%;
    min-height: 58px;
    max-width: 456px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: linear-gradient(90deg, #0095FF 0%, #0015FF 100%);
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    transition: 0.6s ease-in-out;
}

.trade-control__button .button:hover {
    transition: all 0.3s;
    opacity: 0.8;
    background: #0015FF;
}


.footer-section__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    margin-top: 50px;
    font-size: 14px;
    line-height: 24px;
}

.footer-section__content img {
    width: 175px;
}







/* -------- event --------*/

.event.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    opacity: 1;
}

.event {
    width: 100%;
    min-width: 100vw;
    width: 100%;
    max-width: none;

    background: url("../images/trade-bg_mob.jpg") no-repeat center center/cover;
    padding: 30px 16px;
    min-height: 100vh;
    height: 100%;
}

.event-logo {
    margin: 0 auto 22px;
}


.event .container {
    width: 100%;
}


/* -------- event/ income --------*/
.income {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
}

.income-title {
    /*position: relative;*/
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 16px;

    max-width: 600px;
    width: 100%;
    margin-bottom: 16px;
}

.income-title-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    /*position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);*/
    text-align: center;
    font-size: 20px;
    line-height: 22px;
}

.income-count {
    font-weight: 800;
}

.income-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 600px;

    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 16px;
}

.income-list h3 {
    font-weight: 800;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 20px;
}

.income-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 32px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.income-item-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    max-width: 80%;
}

.income-item-check {
    position: relative;
    width: 28px;
    height: 28px;
}

.income-item-check img {
    position: absolute;
    width: 28px;
    height: 28px;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    top: 0;
    left: 0;
}

.income-item-check img.active {
    opacity: 1;
}

.income-item-check img.smaller {
    padding: 2px;
}

.check-loader {
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}









/* -------- event/ review --------*/

.review {
    max-width: 600px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.review-content {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 16px;
}

.review-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

.review-title {
    max-width: 345px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.review-text {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 30px;
}

.review-text-small {
    margin-top: 20px;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
}

.review-paid-users {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    z-index: -1;
}

.review-paid-users h3 {
    line-height: 20px;
    text-align: center;
}

.review-btn {
    margin: 0 auto;
}

.review-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.review-counter img {
    max-width: 52px;
    width: 100%;
}

.review-sum-users {
    font-weight: 800;
    font-size: 28px;
    line-height: 40px;
}



/* -------- event/ end --------*/
.end {
    max-width: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
}

.end-content {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 16px;
}


.end-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 30px;
}

.end-form {
    max-width: 456px;
    margin: 0 auto;
}

.end-content button {
    margin: 32px auto 0;
}

.end-form .form-input-main:first-child {
    margin-bottom: 8px;
}







/* ------- modal-window toast-container ------ */
.toast-container {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    pointer-events: none;

    font-size: 14px;
    line-height: 24px;
}

.content-toast {
    max-width: 390px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 8px;
    padding: 20px 40px;
    border-radius: 16px;
    background: linear-gradient(180deg, #231940 0%, #18143B 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(100px);
    margin: 0 auto;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity .4s ease, transform .4s ease;
}

.content-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.content-toast__logo img {
    max-width: 50px;
}

.content-toast__title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.content-toast__title span {
    font-size: 20px;
    margin-left: 10px;
}

.content-toast__subtitle span {
    font-size: 20px;
    margin-left: 10px;
    color: #3cff00;
}







section {
    min-height: 100vh;
}



@media (min-width: 768px) {
    .button {
        height: 68px;
    }

    /* -------- intro --------*/
    .intro {
        background: url("../images/intro-bg_desk.jpg") no-repeat top center/100% 100%;
    }

    .intro-content {
        gap: 30px;
    }

    .intro-title br {
        display: none;
    }

    .intro-title h1 {
        font-size: 36px;
        line-height: 40px;
        max-width: 715px;
        margin: 0 auto;
    }

    .intro-title p {
        margin: 25px auto 0;
        max-width: 435px;
        font-style: normal;
    }

    .intro-form-wrapper {
        max-width: 560px;
        padding: 56px 52px;
    }

    .intro-text {
        color: #fff;
    }

    .intro-text br {
        display: none;
    }

    .intro-decor-pc {
        display: block;
    }

    .intro-decor-mobile {
        display: none;
    }

    .footer-desk {
        display: block;
        color: #fff;
        font-size: 16px;
    }

    .footer {
        background: none;
    }

    .footer-content img {
        max-width: 300px;
    }






    /* -------- trade --------*/
    .trade {
        background: url("../images/trade-bg_desk.jpg") no-repeat center bottom/100% 100%;
    }

    .trade .container {
        margin-top: 40px;
        /*background: #00000033;*/
        background: #51377369;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(25px);
        box-shadow: 2px 1px 20px #dc62e342;

        border-radius: 16px;
        padding: 40px;
    }

    .trade-hero__subtitl {
        font-size: 20px;
        line-height: 26px;
    }

    .trade-hero__subtitle h2 br {
        display: none;
    }

    .trade-hero__subtitle h2 {
        font-size: 28px;
        font-weight: 800;
        line-height: 40px;
        max-width: 900px;
        margin: 0 auto 16px;
    }

    .footer-section__content {
        gap: 15px;
        margin-top: 25px;
        font-size: 16px;
    }



    /* -------- event --------*/
    .event {
        height: 100%;
        background: url("../images/trade-bg_desk.jpg") no-repeat center center/cover;
    }



    /* -------- event/ income --------*/
    .income-title {
        background: #51377369;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(25px);
        box-shadow: 2px 1px 20px #dc62e36e;

        border-radius: 16px;
        padding: 40px;
        margin-bottom: 44px;
    }

    .income-count {
        font-size: 28px;
        font-weight: 800;
        line-height: 40px;
    }

    .income-list {
        background: #51377369;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(25px);
        box-shadow: 2px 1px 20px #dc62e36e;
        padding: 40px;
        gap: 8px;
    }

    .income-list h3 {
        font-size: 28px;
        line-height: 40px;
    }

    .income-item-text {
        font-size: 18px;
        line-height: 26px;
    }






    /* -------- event/ review- --------*/
    .review {
        gap: 10px;
    }

    .review-content,
    .end-content {
        background: #51377369;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(25px);
        box-shadow: 2px 1px 20px #dc62e36e;
        padding: 40px;
    }

    .review-title {
        max-width: 600px;
        font-size: 26px;
        line-height: 40px;
    }

    .review-text br {
        display: none;
    }

    .review-paid-users {
        background: #51377369;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(25px);
        box-shadow: 2px 1px 20px #dc62e36e;
        padding: 17px 40px;
    }

    .review-paid-users h3 {
        margin-bottom: 10px;
    }

    .review-paid-users h3 br {
        display: none;
    }


    /* -------- event/ end --------*/
    .end-title {
        text-align: center;
        font-size: 22px;
        font-weight: 600;
        line-height: 32px;
        margin-bottom: 50px;
    }

    .end-title br:first-child {
        display: none;
    }

    .footer-section__content img {
        width: 300px;
    }
}

.income,
.review,
.end,
.trade {
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.iti__country-list {
    min-width: 300px !important;
    color: #000 !important;
    z-index: 10 !important;
}