html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
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:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
}

:after, :before, :hover {
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Helvetica', 'Arial', 'PingFang SC', 'Microsoft YaHei', 'WenQuanYi Micro Hei', sans-serif;
}
body{
    background: #171824;
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: 16px;
    min-width: 350px;
}
a{
    color: #fff;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}
.container {
    width: 100%;
    max-width: 1320px;
    padding: 0 15px;
    margin: 0 auto;
}
header{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
header:before{
    content: "";
    position: absolute;
    top: -1px;
    bottom: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    background: #171824;
    transform: scale3d(1, 1, 1);
    transform-origin: top;
}
header .header_row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    position: relative;
}

header .header_logo{
    display: block;
    margin-right: 15px;
}

header .header_logo svg{
    display: block;
    width: 95px;
    height: 36px;
}

header .header_btns{
    display: flex;
    gap: 20px;
}

header .header_btns .btn{
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    background-color: transparent;
    border: 2px solid #ffc400;
    transition: .5s all ease;
    position: relative;
    overflow: hidden;
    height: 40px;
    min-width: 110px;
    font-size: 14px;
    text-transform: uppercase;
}

header .header_btns .btn_signup:hover{
    background: rgba(255, 196, 0, 0.1);
}

header .header_btns .btn_registration:hover{
    background-color: #ffa300;
    border-color: #ffa300;
}

header .header_btns .btn_registration{
    background-color: #ffc400!important;
    border-color: #ffc400;
    color: #111;
    min-width: 130px;
}


.page_wrap {
    line-height: 1.5;
    padding: 50px 0;
}
.page_title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.page_subtitle {
    font-size: 20px;
    line-height: 1.3;
}
.page_btn:hover {
    opacity: .7;
}
.page_hero {
    position: relative;
    overflow: hidden;
    background: #222335;
    border-radius: 16px;
    margin-bottom: 72px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}
.page_hero_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.page_hero .text_col {
    padding: 40px;
}
.page_hero_desc{
    max-width: 430px;
}
.page_hero .img_col{
    position: relative;
}
.page_hero .img_col:before{
    content: '';
    filter: blur(115.62px);
    background: #ff00ff;
    width: 390px;
    height: 390px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}
.page_hero .img_col img {
    display: block;
    max-width: 70%;
    position: relative;
    margin: 0 auto;
    width: 515px;
}
.page_hero .page_title{
    font-size: 48px;
}
.page_hero .page_title span {
    font-size: 38px;
    color: #ffc400;
    display: block;
}
.page_hero_bottom{
    background: #1f202f;
    margin-top: auto;
    padding: 21px 40px;
    position: relative;
    z-index: 1;
}
.loyalty_desc_list{
    display: flex;
    justify-content: space-between;
    gap: 0 28px;
}
.loyalty_desc_list .loyalty_desc_img{
    width: 86px;
    min-width: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loyalty_desc_list .loyalty_desc_img img{
    display: block;
    max-width: 100%;
}
.loyalty_desc_list .loyalty_desc_text{
    padding: 8px 0;
}
.loyalty_desc_list .item{
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.2;
    gap: 8px;
}
.loyalty_desc_list .item_title{
    font-size: 14px;
    color: #ffc400;
    margin-bottom: 4px;
}
.page_description_section{
    padding: 29px 25px;
    border-radius: 20px;
    background: #222335;
}
.info{
    position: relative;
    padding-left: 30px;
}
.info .ico{
    position: absolute;
    top: 2px;
    left: 0;
}
.page_description_section .page_title{
    margin-bottom: 12px;
}

@media screen and (max-width: 991px) {
    .page_wrap {
        font-size: 14px;
        padding: 0;
    }
    .page_title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .page_subtitle {
        font-size: 16px;
    }
    .page_hero .text_col {
        padding: 28px 16px 44px;
    }
    .page_hero .page_btn {
        margin-top: 24px;
    }
    .page_hero_bottom{
        padding: 21px 14px;
    }
    .loyalty_desc_list .item{
        width: 50%;
    }
    .loyalty_desc_list{
        flex-wrap: wrap;
        gap: 0;
    }
}
@media screen and (max-width: 767px) {
    .page_hero{
        margin-bottom: 50px;
    }
    .page_hero_bg {
        left: auto;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .page_hero .page_title span{
        font-size: 18px;
    }
    .page_hero .page_title{
        font-size: 24px;
    }
    .page_description_section{
        padding: 40px 12px;
    }
}
@media screen and (max-width: 575px){
    header .header_btns .btn{
        padding: 5px;
        font-size: 12px;
        height: 34px;
        min-width: 95px;
    }
    header .header_btns{
        gap: 5px;
    }
    header .header_logo svg {
        display: block;
        width: 110px;
        height: 25px;
    }
    .page_hero_row{
        flex-direction: column;
    }
    .loyalty_desc_list .item{
        width: 100%;
    }
    .page_hero .text_col{
        width: 100%;
    }
    .page_hero .img_col{
        width: 100%;
    }
}