/* main */
#main{
    position: relative;
    overflow: hidden;
}
.laptop{
    position: absolute;
    height: 640px;
    right: -15%;
    z-index: 3;
}
.bg_main{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    mix-blend-mode: lighten;
}
.main_text{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 100%;
}
.main_text>*{
    max-width: 770px;
}
.logo{
    margin-bottom: 110px;
}
.subtitle{
    font-family: var(--font-title);
    color: var(--color-white);
    font-weight: 300;
    line-height: var(--line-title);
    font-size: var(--font-size-subtitle);
    margin: 44px 0px 80px 0px;
}
#main .btn_main{
    font-size: 40px;
}
#main .container{
    height: var(--section-height);
    align-items: start;
    justify-content: start;
    padding-top: 100px;
    position: relative;
    z-index: 2;
}
.main_btn_row{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}
#main .main_btn_row .btn_main{
    padding: 24px 84px;
}
#main .main_btn_row .btn_main:last-child{
    background: var(--color-primary-hover);
}

/* steps */
#steps{
    position: relative;
}
#steps .row{
    align-items: stretch;
    margin-top: 80px;
}
.step_div{
    background: var(--color-white);
    padding: 80px 60px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    height: auto;
    gap: 100px;
    width: 30%;
    flex-grow: 1;
}
.step_div_text{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 28px;
}
.step_text{
    font-size: 28px;
    line-height: 1.3;
    font-weight: 300;
    color: var(--color-black);
}
#steps .h3{
    font-weight: 500;
}

.hand_ok{
    position: absolute;
    z-index: 2;
    top: 220px;
    right: 0;
}
.hand_rock{
    position: absolute;
    z-index: 2;
    bottom: -20px;
    left: 0;
}
.step_div .btn_main{
    position: relative;
    z-index: 10;
    padding: 24px;
    width: 100%;
}

/* earn */
#earn img{
    width: 45%;
}
.earn_text{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 50%;
    max-width: 700px;
}
#earn .h3{
    margin: 40px 0px 80px 0px;
    color: var(--color-white);
}

/* footer */
footer{
    padding: 120px 0px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_text{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    row-gap: 20px;
}
.footer_text h2{
    color: var(--color-black);
    font-size: 80px;
}
footer .btn_main{
    background: var(--color-black);
    color: var(--color-white);
    font-size: 40px;
    padding: 56px 190px;
}
footer .btn_main:hover{
    background: var(--color-black);
    box-shadow: 0px 0px 20px rgb(0,0,0,0.6);
}