html, body{
    margin: 0;
    padding: 0;
    color: #727A9B;
    background: #fafafa;
    overflow-x: hidden;
    position: relative;
}

body.no-scroll{
    height: 100vh;
    overflow: hidden;
}

*{
    outline: 0;
}

:root{
    --color: #727A9B;
    --black: #212955;
    --gradient: linear-gradient(59.63deg, #6252D9 18.37%, #1DB5A9 81.42%);
    --green: #1AB9A7;
    --green-active: #17A191;
}

.container{
    padding: 0 20px;
    max-width: 1180px;
    margin: auto;
}

.small{
    max-width: 960px;
}

.flex{
    display: flex;
    flex-direction: row;
}

.column{
    flex-direction: column;
}

.s-b{
    justify-content: space-between;
}

.a-center{
    align-items: center;
}

strong{
    font-weight: 700;
}

section:not(.main):not(.pre_footer){
    margin-bottom: 120px;
}





.main{
    position: inherit;
    min-height: 554px;
    z-index: 1;
}

.main:after{
    content: '';
    background: url(../img/m-s-bg.jpg) top right no-repeat;
    display: block;
    width: 50%;
    height: 554px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0px 0px 0px 32px;
    z-index: -1;
}

#logo, #logo_white{
    height: 51px;
    width: 160px;
    background: url(../img/logo.svg) center no-repeat;
    background-size: contain;
}

#logo_white{
    background: url(../img/logo_white.svg) center no-repeat;
    background-size: contain;
}

h1{
    font-family: Encode Sans;
    font-size: 50px;
    font-style: normal;
    font-weight: 900;
    line-height: 65px;
    letter-spacing: 0em;
    text-align: left;
    text-transform: uppercase;
}

.content{
    padding-top: 30px;
    width: 50%;
    padding-right: 50px;
    box-sizing: border-box;
}

.content h1{
    margin: 0;
    margin-top: 93px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content p{
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
    max-width: 445px;
    margin: 0;
    margin-top: 40px;
}




.form{
    padding: 35px;
    box-sizing: border-box;
    width: 50%;
    max-width: 470px;
    background: #fff;
    margin-top: 125px;
    margin-left: 50px;
    border-radius: 32px;
    box-shadow: 0px 20px 50px rgba(113, 145, 184, 0.05);
}

.form .box > .wrapper, #step_3 > .container > .wrapper{
    border-bottom: 1px solid rgba(114, 122, 155, 0.4);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.slogan{
    font-family: Encode Sans;
    font-size: 25px;
    font-style: normal;
    font-weight: 900;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    color: var(--black);
    margin-bottom: 25px;
}

.form p{
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    margin: 0;
}

.form-group{
    margin-bottom: 25px;
}

.form-group .title{
    color: var(--black);
    margin-bottom: 20px;
    font-family: Poppins;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 120%;
}
    
::-webkit-input-placeholder {color:rgba(114, 122, 155, 0.6);}
::-moz-placeholder          {color:rgba(114, 122, 155, 0.6);}/* Firefox 19+ */
:-moz-placeholder           {color:rgba(114, 122, 155, 0.6);}/* Firefox 18- */
:-ms-input-placeholder      {color:rgba(114, 122, 155, 0.6);}

.form-group .input{
    width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    border: 1px solid rgba(114, 122, 155, 0.4);
    border-radius: 8px;
    color:rgba(114, 122, 155, 0.6);
}

.form-group .input:focus{    
    border: 1px solid var(--green);
}

#male, #female{
    display: none;
}

.input_group{
    margin-right: 20px;
}

.input_group label{
    cursor: pointer;
}

.input_group label:before{
    content: '';
    display: block;
    height: 90px;
    width: 90px;
}

.input_group #male + label:before{
    background: url(../img/man.svg) center no-repeat;
    background-size: contain;
}

.input_group #female + label:before{
    background: url(../img/woman.svg) center no-repeat;
    background-size: contain;
}

.input_group #male:checked + label:before{
    background: url(../img/man-selected.svg) center no-repeat;   
    background-size: contain; 
}

.input_group #female:checked + label:before{
    background: url(../img/woman-selected.svg) center no-repeat;    
    background-size: contain;
}

.date_group .input{
    width: 30%;
}

.form button{
    color: #fff;
    font-family: Encode Sans;
    font-style: normal;
    font-weight: 900;
    font-size: 20px;
    line-height: 60px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    border: 0;
    border-radius: 8px;
    background: var(--green);
    transition: background .2s linear;
    cursor: pointer;
}

.form button:hover, #step_3 .select_box label:hover, #step_3 .chk_all:hover{
    background: var(--green-active);
}

.progress_bar{
    height: 25px;
    border: 1px solid var(--green);
    box-sizing: border-box;
    border-radius: 4px;
    margin-bottom: 25px;
    position: relative;
    width: 100%;
}

.progress_bar span{
    display: block;
    height: 100%;
    background: var(--green);
}

.progress_bar:after{
    content: 'Progress: 'attr(data-progress);
/*    width: 105px;*/
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    color: var(--black)
}

.input[type=email]{
    margin-bottom: 100px;
}

#step_3{
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: #fafafa;
    padding-top: 50px;
    box-sizing: border-box;
    z-index: 999;
    overflow: auto;
}

#step_3 #logo{
    margin-bottom: 70px;
}

#step_3 > .container{
    padding-bottom: 100px;
}

#step_3 .progress_bar{
    height: 40px;
    margin-bottom: 30px;
}

#step_3 .progress_bar:after{
    font-size: 16px;
    line-height: 37px;
}

#step_3 .slogan{
    font-family: Encode Sans;
    font-size: 50px;
    font-style: normal;
    font-weight: 900;
    line-height: 65px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 40px;
    text-transform: uppercase;
}

#step_3 > .container > .wrapper{
    margin-bottom: 45px;
    padding-bottom: 45px;
}

#step_3 .data_group:after{
    content: '';
    display: block;
    height: 0;
    clear: both;
}

#step_3 .chk_all{
    float: right;
    width: auto;
    padding: 0 70px;
    line-height: 40px;
}

#step_3 .items_group{
    margin-top: 30px;
}

#step_3 .data_item{    
    padding: 30px 25px;
    background: #fff;
    margin-bottom: 40px;
}

#step_3 .prize{ 
    background: url(../img/trophy.svg) center no-repeat;
    background-size: contain;
    height: 36px;
    width: 149px;
}

#step_3 .gift{ 
    background: url(../img/giftbox.svg) center no-repeat;
    background-size: contain;
    height: 36px;
    width: 135px;
}

#step_3 .money{ 
    background: url(../img/money.svg) center no-repeat;
    background-size: contain;
    height: 36px;
    width: 111px;
}

#step_3 .gift, #step_3 .money{
    margin-left: 20px;
}

#step_3 .star_box{
    margin-top: 10px;
    margin-bottom: 20px;
}

#step_3 .star{
    height: 20px;
    width: 20px;
    background: url(../img/star.svg) center no-repeat;
    background-size: contain;
}

#step_3 h3{
    font-family: Poppins;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 130%;
    margin: 0;
    margin-bottom: 20px;
}

#step_3 .to_earn{
    list-style:none;
    padding: 0;
    padding-bottom: 20px;
    margin: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(33, 41, 85, 0.4);
}

#step_3 .to_earn li{
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

#step_3 .to_earn li:last-child{
    margin-bottom: 0;
}

#step_3 .to_earn li:before{
    content: '';
    display: block;
    height: 20px;
    width: 20px;
    background: url(../img/checked.svg) center no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
}

#step_3 .select_box input{
    display: none;
}

#step_3 .chk_all, #step_3 .select_box label{
    display: block;
    color: #fff;
    font-family: Encode Sans;
    font-style: normal;
    font-weight: 900;
    font-size: 20px;
    line-height: 60px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 8px;
    background: var(--green);
    transition: background .2s linear;
    cursor: pointer;
    padding: 0 70px;
    line-height: 40px;
}

#step_3 .select_box input:checked + label{
    background: gray;
}

#step_3 .item_footer{
    align-items: center;
}

#step_3 .terms{
    margin: 0;
    margin-right: 10px;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

#step_3 .terms li{
    position: relative;
    margin-right: 8px;
    padding-left: 12px;
}

#step_3 .terms li:before{
    content: '';
    display: block;
    height: 4px;
    width: 4px;
    background: var(--green);
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

#step_3 .terms li:first-child{
    padding-left: 0;
}

#step_3 .terms li:first-child:before{
    display: none;
}

#step_3 .terms a{
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: var(--green);
    text-decoration: none;
}

#step_3 .terms a:hover{
    text-decoration: underline;
}







#step_4 .input_group{
    margin-right: 0;
}

#step_4 .input_group:not(:last-child){
    margin-bottom: 25px;
}

#step_4 #terms_of_use{
    display: none;
}

#step_4 .terms label{
    display: block;
    position: relative;
    background: #fff;
    border: 1px solid rgba(114, 122, 155, 0.4);
    border-radius: 4px;
    height: 20px;
    width: 20px;
    box-sizing: border-box;
    z-index: 1;
}

#step_4 .terms label:before{
    content: '';
    height: 20px;
    width: 20px;
    z-index: 2;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#step_4 .terms #terms_of_use:checked + label{
    border: 1px solid var(--green);
    background: var(--green);
}

#step_4 .terms #terms_of_use:checked + label:before{
    background: url(../img/check.svg) center no-repeat;
}

#step_4 p{
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 150%;
    margin-left: 8px;
    margin-bottom: 25px;
}





h2{
    font-family: Encode Sans;
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: 52px;
    letter-spacing: 0em;
    text-align: left;
    text-transform: uppercase;
    color: var(--black);
    margin: 0;
    margin-bottom: 40px;
    max-width: 487px;
}

.advantages .container > p{
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
    max-width: 487px;
}

.advantages .wrapper{
    margin-top: 70px;
}

.advantages .item{
    width: 30%;
}

.advantages .item img{
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
}

.advantages .item p{
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 31px;
    letter-spacing: 0em;
    text-align: center;
}












.more h2{
    text-align: center;
    margin: 0;
    margin-bottom: 40px;
}

.more p{
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: center;
    max-width: 493px;
    margin: 0;
}

.more .wrapper{
    margin-top: 95px;
}

.more .item{
    padding: 50px 25px 30px;
    box-sizing: border-box;
    position: relative;
    background: #fff;
    width: calc(50% - 15px);
    margin-right: 30px;
    border-radius: 32px;
    box-shadow: 0px 20px 50px rgba(113, 145, 184, 0.05);
    margin-bottom: 25px;
}

.more .item:before{
    content: '';
    background: url(../img/quote-icon.svg) center no-repeat;
    background-size: contain;
    display: block;
    height: 50px;
    width: 50px;
    position: absolute;
    top: -25px;
    left: 50px;
}

.more .item:nth-of-type(2n){
    margin-right: 0;
}

.more .item .comment{
    font-family: Poppins;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 20px;
}

.more .item .author{
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0em;
    text-align: left;
}

.more .join{
    margin-top: 25px;
    padding: 0 69px;
    line-height: 60px;
    background: var(--green);
    border-radius: 8px;
    font-family: Encode Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0em;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    transition: background .2s linear;
}

.more .join:hover{
    background: var(--green-active);
}







.pre_footer{
    padding: 100px 0;
    background: url(../img/f-s-bg.jpg) center no-repeat;
    background-size: cover;
}

.pre_footer h2{
    font-family: Encode Sans;
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: 52px;
    letter-spacing: 0em;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    margin-bottom: 40px;
}

.pre_footer p{
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
    margin: 0;
    margin-bottom: 40px;
}

.pre_footer .start{
    padding: 0 69px;
    box-sizing: border-box;
    line-height: 60px;
    background: transparent;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    font-family: Encode Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0em;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    transition: background .2s linear, color .2s linear;
}

.pre_footer .start:hover{
    background: #fff;
    color: var(--green);
}







footer{
    background: var(--green);
}

.f-place{
    padding: 70px 0;
}

.f-place:after{
    content: '';
    display: block;
    height: 0;
    width: 160px;
    opacity: 0;
}

.f-place ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.f-place ul li:not(:last-child){
    margin-right: 50px;
}

.f-place a{
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
    color: #fff;
    text-decoration: none;
}

.f-place a:hover{
    text-decoration: underline;
}

footer .copy{
    padding: 24px;
    background: #252525;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
}




@media screen and (max-width: 768px){
    section:not(.main):not(.pre_footer){
        margin-bottom: 70px;
    }
    
    .main > .flex{
        flex-direction: column;
    }
    
    .content, .form{
        width: 100%;
    }
    
    .content{
        padding-right: 0;
    }
    
    .form{
        margin: 60px 0 100px;
        padding: 0;
        width: 100%;
        max-width: 100%;
        position: relative;
        z-index: 1;
    }
    
    .form:before {
        content: '';
        background: url(../img/m-s-bg.jpg) top right no-repeat;
        display: block;
        width: calc(100% + 40px);
        height: calc(100% + 60px);
        position: absolute;
        top: -30px;
        right: -20px;
        z-index: -1;
    }
    
    .box{
        background: #fff;
        padding: 35px;
        border-radius: 32px;
        box-shadow: 0px 20px 50px rgba(113, 145, 184, 0.05);
    }
    
    .main:after{
        display: none;
    }
    
    #step_3{
        position: fixed;
    }
    
    #step_3 .data_item > .wrapper.flex{
        flex-direction: column;
        align-items: flex-start;
    }
    
    #step_3 .data_item > .wrapper.flex img{
        margin-bottom: 10px;
    }
    
    #step_3 .slogan{
        font-size: 28px;
        line-height: 130%;
        margin-bottom: 25px;
    }
    
    #step_3 > .container > .wrapper{
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    #step_3 .progress_bar{
        height: 25px;
        margin-bottom: 25px;
    }
    
    #step_3 .progress_bar:after{
        font-size: 14px;
        line-height: 22px;
    }
    
    #step_3 .chk_all, #step_3 .select_box label{
        padding: 0 40px;
        font-size: 18px;
    }
    
    #step_3 .to_earn li{
        font-size: 16px;
    }
    
    #step_3 .terms a{
        font-size: 14px;
    }
    
    footer .container.flex, footer ul.flex{
        flex-direction: column;
        align-items: center;
    }
    
    .f-place:after{
        display: none;
    }
    
    .f-place ul li:not(:last-child){
        margin: 0;
        margin-bottom: 16px;
    }
    
    #logo_white{
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 600px){
    h1{
        font-size: 35px;
        font-style: normal;
        font-weight: 900;
        line-height: 45px;
    }
    
    .content h1{
        margin-top: 50px;        
    }
    
    .content p{
        font-size: 18px;
        font-weight: 500;
        line-height: 27px;
        margin-top: 25px;
    }
    
    .form .box{
        padding: 30px 20px;
    }
    
    .form .box > .wrapper{
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
    
    .slogan{
        font-size: 20px;
        font-style: normal;
        font-weight: 900;
        line-height: 26px;
    }
    
    .form p{
        font-size: 16px;
    }
    
    .form-group .title{
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .input_group{
        margin-right: 15px;
    }
    
    .input_group label:before{
        height: 70px;
        width: 70px;        
    }
    
    .form-group{
        margin-bottom: 20px;
    }
    
    .form button{
        line-height: 50px;
        font-size: 18px;
    }
    
    h2{
        font-weight: 900;
        font-size: 28px;
        line-height: 130%;
        margin-bottom: 25px;
    }
        
    .advantages .wrapper.flex, .more .wrapper.flex{
        flex-direction: column;
    }
    
    .advantages .container > p{
        font-size: 18px;
        line-height: 27px;
    }
    
    .advantages .item, .more .item{
        width: 100%;
        margin-bottom: 50px;
    }
    
    .advantages .item:last-child, .more .item:last-child{
        margin-bottom: 0;
    }
    
    .advantages .item img{
        height: 80px;
        width: 80px;
        background-size: contain;
    }
    
    .advantages .item p{
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: 130%;
    }
    
    .more h2{
        margin-bottom: 25px;
    }
    
    .more p{
        font-size: 22px;
        line-height: 33px;
    }
    
    .more .wrapper{
        margin-top: 65px;
    }
    
    .more .item{
        margin-right: 0;
    }
    
    .more .item .comment, .more .item .author{
        font-size: 16px;
        line-height: 24px;
    }
    
    .more .join{
        margin-top: 30px;
        font-size: 18px;
        line-height: 50px;
    }
    
    .pre_footer{
        padding: 70px 0;
    }
    
    .pre_footer h2{
        font-size: 28px;
        line-height: 130%;
        margin-bottom: 25px;
    }
    
    .pre_footer p{
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 25px;
    }
    
    .pre_footer .start{
        padding: 0;
        width: 100%;
        max-width: 280px;
        font-size: 18px;
        line-height: 50px;
    }
    
    #step_3 .tokens_group.flex{
        flex-direction: column;
    }
    
    #step_3 .tokens_group > div{
        margin: 0;
        margin-right: 0;
        margin-bottom: 10px;        
    }
    
    .f-place{
        padding: 50px 0;
    }
    
    .f-place a{
        font-family: Poppins;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 21px;
        letter-spacing: 0em;
        text-align: center;
    }
}