*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root {
    --color-primary: #C1FF03;
    --color-primary-hover: #E7F9B1;
    --color-white: #fff;
    --color-black: #050505;
  
    --font-title: "Lexend", sans-serif;
    --font-text: "Source Code Pro", monospace;
  
    /* fonts-size */
    --font-size-h1: 72px;
    --font-size-h2: 64px;
    --font-size-h3: 40px;
    --font-size-subtitle: 40px;
  
    /* line-height */
    --line-title: 1.1;
    --line-btn: 1;

    /* height */
    --section-height: 1080px;
}
body{
    background: var(--color-black);
    position: relative;
}
.bg_site{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: cover;
}
a{
    text-decoration: none;
    display: block;
}
section{
    min-height: var(--section-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    z-index: 2;
}
h1{
    font-family: var(--font-title);
    color: var(--color-white);
    font-weight: 500;
    line-height: var(--line-title);
    font-size: var(--font-size-h1);
    max-width: 1000px;
    text-align: center;
}
h2{
    font-family: var(--font-title);
    color: var(--color-white);
    font-weight: 500;
    line-height: var(--line-title);
    font-size: var(--font-size-h2);
    width: 100%;
    text-align: center;
}
.h3, .rewards_div p.h3, .how_text_div p.h3{
    font-family: var(--font-title);
    color: var(--color-black);
    font-weight: 500;
    line-height: var(--line-title);
    font-size: var(--font-size-h3);
}
p{
    font-family: var(--font-title);
    color: var(--color-white);
}
li{
    font-family: var(--font-title); 
}
.container{
    max-width: 1680px;
    width: 100%;
}
.btn_main{
    padding: 24px 160px;
    background: var(--color-primary);
    border-radius: 4px;
    font-size: 32px;
    color: var(--color-black);
    line-height: var(--line-btn);
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--font-text);
    border: 0px;
    transition: .3s;
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.btn_main:hover{
    background: var(--color-primary-hover);
}
.row{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
}
ul{
    margin: 0;
    padding: 0;
}
ul li{
    list-style: none;
}


/* animation */

.animate-fadeIn{
    opacity: 0;
}
.animate.active .animate-fadeIn {
  opacity: 1;
}
.animate-slideFromBottom {
  top: 50px;
}
.animate.active .animate-slideFromBottom {
  top: 0;
}


.animate-delay-02{
    transition: all 1s 0.2s ease;
}
.animate-delay-04{
    transition: all 1s 0.4s ease;
}
.animate-delay-06{
    transition: all 1s 0.6s ease;
}
.animate-delay-08{
    transition: all 1s 0.8s ease;
}