@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600;700&display=swap');

@font-face {
    font-family: 'Colus';
    src: url('../assets/fonts/Colus.otf') format('opentype');
    font-style: normal;
}

@font-face {
    font-family: 'Evolventa';
    src: url('../assets/fonts/Evolventa.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Jost';
    src: url('../assets/fonts/Jost.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Jost Bold';
    src: url('../assets/fonts/Jost-SemiBold.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Evolventa Bold';
    src: url('../assets/fonts/Evolventa-Bold.ttf') format('truetype');
}

:root {
    --grey-10: #F5F5F5;
    --grey-20: #EDEDED;
    --grey-30: #e7e7e7;
    --grey-40: #dedede;
    --grey-50: #d6d6d6;
    --grey-base: #cecece;
    --grey-60: #acacac;
    --grey-70: #898989;
    --grey-80: #676767;
    --grey-90: #454545;
    --grey-100: #292929;

    --red-10: #ffcfcf;
    --red-20: #ffaeae;
    --red-30: #ff8686;
    --red-40: #ff5e5e;
    --red-50: #ff3535;
    --red-base: #ff0d0d;
    --red-60: #d50b0b;
    --red-70: #aa0909;
    --red-80: #800707;
    --red-90: #550404;
    --red-100: #330303;

    --primary-black: #080808;
    --primary-white: #FFFFFF;
}

.loading {
    pointer-events: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, #FFF 0%, #E3E3E3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    transition: opacity 1s ease, visibility 1s ease;
}

body.dark .loading {
    background: linear-gradient(180deg, #2c2c2c 0%, #1c1c1c 100%);
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading_logo {
    background-image: url(../assets/logo_w.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 260px;
    height: 78px;
    animation: heartbeat 2s infinite ease-in-out;
}

body.dark .loading_logo {
    background-image: url(../assets/logo_d.svg);
}

html {
    scroll-padding-top: 110px;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.1);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.05);
    }

    60% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

a {
    color: inherit;
    text-decoration: none;
}

.icon_right {
    margin-right: 12px;
}

#content a {
    text-decoration: none;
    color: #AA0909;
    font-family: Evolventa;
    font-size: 24px;
    line-height: 130%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-position: from-font;
}

body.dark #content a {
    color: #BD9C49;
}

body {
    background: url(../assets/back.jpg) center / contain repeat;
    font-family: Evolventa;
    font-size: 24px;
    font-style: normal;
    line-height: 130%;
    color: #080808;
    margin: 0;
}

body.dark {
    background: url(../assets/back_dark.jpg) center / contain repeat;
    color: #E7E7E7;
}

.all_title {
    color: #AA0909;
    font-family: Colus;
    font-size: 48px;
    line-height: 52px;
    letter-spacing: -0.48px;
    text-align: center;
    padding: 80px 0 64px;
}

body.dark .all_title {
    text-shadow: none;
    color: #BD9C49;
}

.all_title span {
    color: #aa0909;
}

body.dark .all_title span {
    color: #BD9C49;
}

body.dark .all_title span {
    background: linear-gradient(180deg, #BD9C49 0%, #E6B843 63.5%, #EECE7F 79%, #8C7845 98.5%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
}

.nice_divider {
    background: url(../assets/nice_divider.png);
    width: 100%;
    height: 56px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

body.dark .nice_divider {
    opacity: 0.2;
}

.red_but {
    min-width: 290px;
    width: fit-content;
    height: 52px;
    background: linear-gradient(270deg, #330303 14.81%, #800707 57.41%, #330303 100%);
    position: relative;
    margin: 0 17px;
    padding: 3px 0;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.30)) drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.15));
    cursor: pointer;
    transition: filter 0.3s ease;
}

.red_but:hover {
    filter: drop-shadow(0px 1px 2px #0000007c) drop-shadow(0px 1px 3px #00000056);
}

.in_red_but {
    color: #EDEDED;
    font-family: Colus;
    font-size: 18px;
    line-height: 23px;
    text-transform: uppercase;
    text-align: center;
    padding: 11px;
    position: relative;
    height: 100%;
}

.in_red_but::after,
.in_red_but::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #D9D9D9;
    z-index: 0;
}

.in_red_but::after {
    top: 0;
}

.in_red_but::before {
    bottom: 0;
}

.red_but:hover .in_red_but {
    color: #FFFFFF;
}

.red_but::after,
.red_but::before {
    content: "";
    position: absolute;
    top: 0;
    width: 17px;
    height: 100%;
    background: url(../assets/krai.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.red_but::before {
    left: -16px;
}

.red_but::after {
    right: -16px;
    transform: rotate(180deg);
}

.red_mini_but {
    min-width: 260px;
    width: fit-content;
    height: 52px;
    background: linear-gradient(270deg, #330303 14.81%, #800707 57.41%, #330303 100%);
    position: relative;
    margin: 0 10px;
    padding: 3px 0;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.30)) drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.15));
    cursor: pointer;
    transition: all 0.3s ease;
    cursor: pointer;
}

.red_mini_but:hover {
    filter: drop-shadow(0px 1px 2px #0000007c) drop-shadow(0px 1px 3px #00000056);
}

.red_mini_but:hover .in_red_mini_but {
    color: #FFFFFF;
}

.in_red_mini_but {
    color: #EDEDED;
    font-family: 'Evolventa Bold';
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
    padding: 11px;
    position: relative;
    height: 100%;
    white-space: nowrap;
}

.in_red_mini_but::after,
.in_red_mini_but::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #cecece;
    z-index: 0;
}

.in_red_mini_but::after {
    top: 0;
}

.in_red_mini_but::before {
    bottom: 0;
}

.in_red_mini_but img {
    position: absolute;
    left: 8px;
}

.red_mini_but::after,
.red_mini_but::before {
    content: "";
    position: absolute;
    top: 0;
    width: 9px;
    height: 100%;
    background: url(../assets/krai_red.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.red_mini_but::before {
    left: -8px;
}

.red_mini_but::after {
    right: -8px;
    transform: rotate(180deg);
}

#form-signup button,
#form-signup__modal button {
    background-image: url(../assets/redmain.png);
    height: 64px;
    color: var(--grey-20);
    font-size: 18px;
    line-height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    font-family: Colus;
    text-align: center;
    background-color: inherit;
    cursor: pointer;
    transition: all 250ms ease-out;
    filter: drop-shadow(0px 2px 2px #0000004D);
    margin: 0 auto;
    font-weight: 400;
}

.submit-email,
.white_form_but {
    background-image: url(../assets/white.png);
    width: 252px;
    min-width: 252px;
    color: var(--primary-black);
    display: block;
    padding: 15px 0;
    font-size: 16px;
    line-height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-family: Colus;
    font-weight: 400;
    text-align: center;
    background-color: inherit;
    cursor: pointer;
    min-height: 52px;
    height: 52px;
    transition: all 250ms ease-out;
    filter: drop-shadow(0px 2px 2px #0000004D);
}

body.dark .submit-email {
    background-image: url(../assets/black.png);
    color: #E7E7E7;
}

.hello_form {
    max-width: 448px;
    max-height: fit-content;
    padding: 6px;
    position: fixed;
    border-radius: 16px;
    box-shadow: 0px 2px 6px 2px #00000026, 0px 1px 2px 0px #0000004D;
    background-image: url(../assets/white-paper.jpg);
    z-index: 7000;
    top: 17px;
    transition: all 0.3s ease-out;
}

body.dark .hello_form {
    background-image: url(../assets/paper_black.jpg);
    background-size: cover;
}

.hide_hello {
    right: -500px;
}

.hello_close {
    position: absolute;
    right: 16px;
    top: 16px;
    background-image: url(../assets/close.svg);
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.hello_close:hover {
    filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.336));
}

.show_hello {
    right: 17px;
}

.hello_signup-form h3 {
    display: none;
}

.hello_signup-form #form-signup__modal {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hello_signup-form .left_form {
    gap: 4px;
}

.hello_section-emailtg h3 {
    display: none;
}

.hello_section-emailtg .section-emailtg {
    padding: 0;
    background: inherit;
}

.hello_section-emailtg .section-emailtg:after {
    border: none;
}

.section-emailtg .likeh3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
}

.hello_section-emailtg .step {
    font-size: 18px;
    line-height: 20px;
}


.hello_section-emailtg .bonuses {
    padding: 0 0 16px;
}

.hello_section-emailtg .bonuses img {
    width: 32px;
    height: 32px;
}

.hello_section-emailtg .form_send {
    font-size: 14px;
    line-height: 20px;
    text-align: left;
}

.hello_section-emailtg .form_disclamer {
    font-size: 14px;
    line-height: 20px;
    padding: 24px 0 0;
    display: block;
}

.hello_section-emailtg .email-tg {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.hello_inform {
    background-image: url(../assets/white-paper.jpg);
    width: 100%;
    height: 100%;
    border-radius: 18px;
    position: relative;
}

body.dark .hello_inform {
    background-image: url(../assets/paper_black.jpg);
    background-size: cover;
}

.hello_inform:after {
    content: "";
    position: absolute;
    bottom: 4px;
    height: calc(100% - 10px);
    left: 4px;
    border: 2px solid #997759;
    border-radius: 16px;
    width: calc(100% - 10px);
    pointer-events: none;
}

.hello_text {
    display: block;
    font-family: Evolventa;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
}

.hello_swap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
}

.hello_swap_item {
    font-family: Colus;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: var(--primary-black);
    padding: 8px 0px;
    border-bottom: 2px solid var(--primary-black);
    cursor: pointer;
    transition: all 0.3s ease-out;
    width: 100%;
}

body.dark .hello_swap_item {
    color: #E7E7E7;
    border-bottom: 2px solid #E7E7E7;
}

.hello_swap_item.active {
    color: var(--red-70);
    border-bottom: 2px solid var(--red-70);
}

body.dark .hello_swap_item.active {
    color: #BD9C49;
    border-bottom: 2px solid #BD9C49;
}

.hello_signup {
    gap: 0px !important;
    padding: 24px;
}

.hello_recover {
    font-family: Evolventa Bold;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: var(--primary-black);
}

.hello_recover a {
    color: var(--red-70);
}

.hello_title {
    color: var(--primary-black);
    font-family: Colus;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.008em;
    text-align: left;
}

body.dark .hello_title {
    color: #E7E7E7;
}

.hellotgform {
    flex-direction: column !important;
}

.helloh3 {
    font-size: 18px;
    line-height: 24px;
    font-family: Jost Bold;
    letter-spacing: -0.01em;
}

#banner {
    padding: 180px 64px 80px;
    overflow: hidden;
    position: relative;
}

.banner_wrapper {
    width: 100%;
    margin: 0 auto;
    max-width: 1920px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.banner_content {
    border-radius: 24px;
    height: 389px;
    width: 100%;
    padding: 8px;
    background: #FFFFFF;
    box-shadow: 0 3.364px 6.728px 2.523px rgba(0, 0, 0, 0.15), 0 0.841px 2.523px 0 rgba(0, 0, 0, 0.30);
}

body.dark .banner_content {
    background: url(../assets/paper_black.jpg) center / cover no-repeat;
}

.banner_contenr_img {
    background: url(../assets/banner.jpg) center / cover no-repeat;
    width: 100%;
    height: 100%;
    border-radius: 18px;
}

.banner_title {
    color: #080808;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.30), 0 1px 3px rgba(0, 0, 0, 0.15);
    font-family: Colus;
    font-size: 64px;
    line-height: 68px;
    letter-spacing: -0.64px;
    max-width: 1060px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.banner_title span {
    color: #AA0909;
}

body.dark .banner_title {
    color: #E7E7E7;
}


body.dark .banner_title span {
    color: #BD9C49;
    background: linear-gradient(180deg, #AF934C 0%, #DEBC66 50%, #AF934C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.part_1 {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.part_1 .list_dot {
    line-height: 110%;
}

.part_1 div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text_br {
    font-family: Evolventa Bold;
    font-size: 24px;
    line-height: 110%;
}

#content {
    max-width: 880px;
    margin: 0 auto;
}

.step_padding {
    padding-bottom: 64px;
}

.list_dot {
    list-style: disc;
    padding-left: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    line-height: 130%;
}

.list_num {
    gap: 16px;
    list-style: decimal;
    display: flex;
    flex-direction: column;
    padding-left: 36px;
    line-height: 130%;
}

.part {
    padding-bottom: 80px;
}

.text_line {
    line-height: 130%;
}

.step_big_padding {
    padding-bottom: 228px;
}

.step {
    gap: 32px;
    display: flex;
    flex-direction: column;
    line-height: 130%;
}

.step_title {
    font-family: Colus;
    font-size: 32px;
    line-height: 110%;
}

.step_img {
    width: 100%;
    aspect-ratio: 8/5;
    border-radius: 24px;
    box-shadow: 0 3.364px 6.728px 2.523px rgba(0, 0, 0, 0.15), 0 0.841px 2.523px 0 rgba(0, 0, 0, 0.30);
    background: #F5F5F5;
    padding: 8px;
}

body.dark .step_img {
    background: #252424;
}

.row_flex {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.step_img img {
    border-radius: 18px;
    width: 100%;
    min-height: 100%;
    display: block;
    object-fit: cover;
}

.step_icon_body {
    width: 40px;
    position: relative;
    display: inline-block;
}

.list_rel li .step_icon_body {
    margin-right: 12px;
}

.step_icon {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: -28px;
}

.line {
    width: 100%;
    height: 4px;
    background: #F5F5F5;
    box-shadow: 0 -1.5px 1.2px 0 rgba(255, 255, 255, 0.80) inset, 0 0.5px 1px 0 rgba(0, 0, 0, 0.30) inset;
    margin: 64px 0;
}

body.dark .line {
    background: #313131;
    box-shadow: 0 -1.5px 1.2px 0 rgb(35 35 35 / 80%) inset, 0 0.5px 1px 0 rgba(0, 0, 0, 0.30) inset;
}

.step_row span {
    color: #AA0909;
}

body.dark .step_row span {
    color: #BD9C49;
}

.step_row li span {
    font-family: Evolventa Bold;
    color: inherit;
}

#navigation {
    flex-direction: column;
    gap: 8px;
    position: fixed;
    top: 50%;
    left: 54px;
    font-family: Evolventa Bold;
    font-size: 18px;
    line-height: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
    transform: translate(0, -50%);
}

.body_navigation {
    display: flex;
}

.burger_navigation {
    display: none
}

.nav_point {
    position: relative;
}

.nav_point::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    transform: rotate(-45deg);
    background: #080808;
    top: 8px;
    left: -15px;
}

#navigation .active.nav_point::before {
    background: #AA0909;
    width: 8px;
    height: 8px;
}

body.dark #navigation .active.nav_point::before {
    background: #BD9C49;
    width: 8px;
    height: 8px;
}

body.dark .nav_point::before {
    background: #F7F7F7;
}

#navigation.visible {
    opacity: 1;
    visibility: visible;
}

#navigation .active {
    color: #AA0909;
}

body.dark #navigation .active {
    color: #BD9C49;
}

.nav_row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav_row div {
    cursor: pointer;
}

.nav_row ul {
    padding-left: 12px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav_row li {
    cursor: pointer;
}

#up_button {
    position: fixed;
    width: 80px !important;
    height: 80px !important;
    background-image: url(../assets/arrowback.png);
    filter: drop-shadow(0px 2px 6px #00000026);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    bottom: 80px;
    right: 32px;
    opacity: 0.5;
}

body.dark #up_button {
    background-image: url(../assets/arrow_b.png);
    filter: drop-shadow(0px 1px 1px #8c784581);
}

body.dark #up_button img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(33%) saturate(79%) hue-rotate(256deg) brightness(115%) contrast(92%);
}

#up_button:hover {
    opacity: 1;
}

#main-footer {
    box-shadow: 0px 1.25px 2.51px 0px #0000003D inset;
    background: #cbcaca10;
}

.burger_menu {
    text-align: left !important;
    text-transform: none !important;
    align-items: flex-start !important;
}

@media (max-width: 1600px) {
    #navigation {
        font-size: 14px;
        line-height: 130%;
        left: 32px;
    }
}

@media (max-width: 1400px) {

    html {
        scroll-padding-top: 80px;
    }

    .body_navigation {
        display: none;
    }

    .burger_navigation {
        display: flex
    }

    #navigation {
        flex-direction: column;
        gap: 8px;
        position: relative;
        top: auto;
        left: 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
        font-size: 18px;
        line-height: 22px;
    }


    body {
        font-size: 18px;
        line-height: 24px;
    }

    .text_br {
        font-size: 18px;
        line-height: 24px;
    }

    .part_1 {
        gap: 22px;
    }

    #content a {
        font-size: 18px;
        line-height: 24px;
    }

    .step_icon {
        width: 25px;
        height: 25px;
        top: -20px;
    }

    .step_icon_body {
        width: 25px;
    }

    .step {
        gap: 22px;
    }

    .part {
        padding-bottom: 64px;
    }

    .all_title {
        padding: 64px 0 48px;
    }

    .banner_title {
        font-size: 32px;
        line-height: 36px;
        letter-spacing: -0.32px;
    }

    .all_title {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: -0.192px;
    }

    #banner {
        padding: 85px 16px 64px;
        height: 100dvh;
    }

    .step_title {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: -0.192px;
    }

    .line {
        margin: 44px 0;
        height: 2px;
    }
}

@media (max-width: 950px) {
    .banner_content {
        height: 225px;
    }

    #up_button {
        bottom: 16px;
        right: 16px;
    }

    .nice_divider {
        height: 32px;
    }

    #banner {
        padding: 125px 16px 64px;
    }

    #content {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 16px;
    }
}

@media (max-width: 750px) {
    .hello_signup {
        gap: 0px !important;
        padding: 16px;
    }

    .hello_form {
        max-width: 360px;
        padding: 0px;
        border-radius: 20px;
    }

    .show_hello {
        right: 8px;
    }

    .nice_divider {
        background-size: cover;
    }
}


@media (max-width: 450px) {
    .red_but {
        min-width: 90%;
    }
}