body{
    background: #040406;
    overflow-x: hidden;
}
 :root {
    --fcolor: #094cfd;
    --scolor: #681ee0;
    --tcolor: #462a81;
    --txtcolor: #fff;
    --navcolor: #000000;
    --mcolor: #dbc5ff;
}
.banner{
    height: auto;
    min-height: 100vh;
    background: url(../images/tap_to_earn/taptoearn-banner.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
h2,h3{
    color: #FFF;
}
h3{
    font-size: 24px;
    font-weight: 600;
}
p,.text_pink{
    color: #BCBAD9;
}
.btn-outline-dark {
    background: linear-gradient(90deg, #0050FF 0%, #6A1DE0 100%);
    border-radius: 5px;
    color: #FFF;
    padding: 8px 15px;
    border: 0;
}
.sticky_bigg{
    background: rgba(31, 33, 57, 0.5);
backdrop-filter: blur(27.5px);
border-radius: 50px;
padding: 15px 25px;
}
.purp_card{
    background-color: #272948;
border-radius: 5px;
padding: 25px;
height: 100%;
transition: .3s all ease;
}
.purp_card:hover{
   background-color: #8087E8;
}
.tap_nav{
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 20px;
    border: 2px solid #3c3c3c;
    border-radius: 25px;
    padding: 3px;
}
.tap_nav .nav-tabs .nav-link.active {
    border-bottom: none;
    color: #FFF;
    background: #8087E8;
    border-radius: 20px;
}
.how_tap{
    background: url(../images/tap_to_earn/how_tap.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.sticked_card{
    position: sticky;
    top: 100px;
}
.card_line{
    background: rgba(31, 33, 57, 0.5);
backdrop-filter: blur(27.5px);
border-radius: 5px;
padding: 15px;
padding-left: 30px;
position: relative;
transition: .3s all ease;
}
.one_text{
    font-family: 'Poppins';
font-style: normal;
font-weight: 700;
font-size: 64px;
line-height: normal;
color: #1e244f;
}
.tp_cont{
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
    left: 45px;
    transition: .3s all ease;
    cursor: pointer;
}
.card_line:hover .tp_cont{
    left: 60px;
}
.tp_cont p{
    display: none;
    opacity: 0;
    transition: all .3s ease;
} 
.card_line:hover .tp_cont p{
    display: block;
    opacity: 1;
    transition: all .3s ease;
}
.card_line:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, transparent 100%);
    bottom: 0;
    left: 0;
    transition: .3s all ease;
    opacity: 0;
} 
.card_line:hover:after{
    background: linear-gradient(90deg, #0050FF 0%, #6A1DE0 100%);
    opacity: 1;
}
.card_rocket{
    background: #10111F;
    border-radius: 35px;
    padding: 100px 20px;
}
.left_rocket{
    position: absolute;
    left: -5%;
    bottom: 50%;
    transform: translateY(50%);
    width: 26%;
    max-width: 480px;
}
.right_coin{
    position: absolute;
    right: -5%;
    top: -20%;
    transform: translateY(-20%);
    width: 19%;
    max-width: 350px;
}
.top_coin{
    position: absolute;
    right: 1%;
    bottom: -10%;
    transform: translateY(-10%);
    width: 13%;
}
.bottom_rocket{
    position: absolute;
    left: 20%;
    top: -20%;
    transform: translateY(-20%);
    width: 13%;
}
.tap_nav .nav-tabs .nav-link:hover,.tap_nav .nav-tabs .nav-link:focus,.tap_nav .nav-tabs .nav-link.active:hover,.tap_nav .nav-tabs .nav-link.active:focus{
    border-color: transparent !important;
}
.tap_nav .nav-tabs .nav-link{
    border-color: transparent !important;
}

@media (max-width: 991px){
    .banner {
        background: linear-gradient(0deg, #06000f, #3f3e3d);
        background-size: 100%;
    }
    .how_tap{
        background: none;
        background-repeat: no-repeat;
    }
    h3 {
        font-size: 21px;
        font-weight: 600;
    }
    .sticky_bigg {
        background: rgba(31, 33, 57, 0.5);
        backdrop-filter: blur(27.5px);
        border-radius: 25px;
        padding: 25px 10px;
    }
}