@font-face {
    font-family: nunito;
    src: url(../font/Nunito-Medium.ttf);
}
html {
    scroll-behavior: smooth;
  }
body{
    font-family: poppins, sans-serif;
    margin: 0;
    padding: 0;
    background: #000000;
	height: 100vh;
	overflow: hidden;
}
html.w-mod-touch * {
    background-attachment: scroll !important;
}
a{
    text-decoration: none;
}
.herobg {
    overflow: hidden;
    background-image: url(../images/herobg.png), linear-gradient(135deg, #7742ff, #2f176c);
    background-position: 100% 100%, 0px 0px;
    background-size: 1440px, auto;
    height: 100vh;
    background-repeat: no-repeat, repeat;
}
nav{
    height: 5rem;
    width: 95vw;
    display: flex;
    position: fixed;
    z-index: 10;
    top: 0;
    align-items: center;
    justify-content: space-between;
}

/*Styling logo*/
.logo{
    padding:1vh 2vw;
}
.logo img {
    height: 2.5rem;
    width: auto;
}
/*Styling Links*/
.nav-links{
    display: flex;
    list-style: none; 
    width: 60vw;
    padding: 0 0.7vw;
    justify-content: flex-start;
    align-items: center;
    text-transform: uppercase;
    margin: 0;
    top: 0;
}
.nav-links li a{
    text-decoration: none;
    margin: 0 2vw;
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 600;
}
.nav-links li a:hover {
    color: #ec2977;
}
.nav-links li {
    position: relative;
}
.nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    background-color: #FCEA15;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
}
.nav-links li a:hover::before{
    width: 80%;
}

/*Styling Buttons*/
.login-button{
    background-color: transparent;
    border: 1.5px solid #f2f5f7;
    border-radius: 2em;
    padding: 0.6rem 0.8rem;
    margin-left: 2vw;
    font-size: 1rem;
    cursor: pointer;

}
.login-button:hover {
    color: #131418;
    background-color: #f2f5f7;
    border:1.5px solid #f2f5f7;
    transition: all ease-in-out 350ms;
}

.top_download_btn{
    background: #0DC400;
    color: #14151A;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    color: #ffffff;
}
.top_download_btn:hover {
    transform: scale(1.1);
    transition: all ease 350ms;
}

.join-button{
    color: #131418;
    background-color: #61DAFB;
    border: 1.5px solid #61DAFB;
    border-radius: 2em;
    padding: 0.6rem 0.8rem;
    font-size: 1rem;
    cursor: pointer;
}
.join-button:hover {
    color: #f2f5f7;
    background-color: transparent;
    border:1.5px solid #f2f5f7;
    transition: all ease-in-out 350ms;
}

/*Styling Hamburger Icon*/
.hamburger div{
    width: 30px;
    height:3px;
    background: #ffffff;
    margin: 5px;
    transition: all 0.3s ease;
}
.hamburger{
    display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 800px){
    nav{
        position: fixed;
        z-index: 3;
        padding: 0;
    }
    .hamburger{
        display:block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.2s ease;
    }
    .nav-links{
        position: fixed;
        background: #282828;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 0.2s ease-out;
        pointer-events: none;
        justify-content: space-evenly;
    }
    .nav-links li a {
        color: #ffffff;
    }
    .nav-links.open{
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% 0%);
        pointer-events: all;
    }
    .nav-links li{
        opacity: 0;
    }
    .nav-links li:nth-child(1){
        transition: all 0.5s ease 0.1s;
    }
    .nav-links li:nth-child(2){
        transition: all 0.5s ease 0.2s;
    }
    .nav-links li:nth-child(3){
        transition: all 0.5s ease 0.3s;
    }
    .nav-links li:nth-child(4){
        transition: all 0.5s ease 0.4s;
    }
    .nav-links li:nth-child(5){
        transition: all 0.5s ease 0.5s;
    }
    .nav-links li:nth-child(6){
        transition: all 0.5s ease 0.6s;
        margin: 0;
    }
    .nav-links li:nth-child(7){
        transition: all 0.5s ease 0.7s;
        margin: 0;
    }
    li.fade{
        opacity: 1;
    }
    .down{
        display: none;
    }
}
/*Animating Hamburger Icon on Click*/
.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    transition: all 0.7s ease;
    width:0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}

/* top container section */
.hero_content{
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #fff;
    margin-top: 60px;
}
.c_right > img{
    width: auto;
    height: 600px;
    margin-top: 40px;
}

.democodelabel {
    margin-top: 5px;
    margin-left: 25px;
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
    color: #fff;
    line-height: 20px;
    font-weight: bold;
}
.democodearrow {
    display: block;
    width: 40px;
    margin-top: 8px;
    margin-left: 15px;
    -webkit-filter: brightness(0%) invert(100%);
    filter: brightness(0%) invert(100%);
}
.democodelabelwrap >img{
    width: auto;
    height: 30px;
}
.g_play_logo{
    width: auto;
    height: 50px;
}
.qr_code{
    display: flex;
    align-items: center;
}
.qr_code >img{
    width: auto;
    height: 100px;
}

.c_right{
    text-align: center;
}

.c_left > .title{
    font-size: 50px;
    margin: 0;
    color: #FCBA04;
    text-transform: uppercase;
    font-weight: 700;
}

@keyframes textclip {
    to {
      background-position: 200% center;
    }
  }

.c_left > p{
    font-size: 28px;
    margin: 0;
    font-weight: 600;
    height: 70px;
    color: #ffffff;
    padding-bottom: 10px;
    text-transform: uppercase;
    animation: shake-animation 2s ease infinite;
}

@media screen and (max-width: 600px){
    .c_left {
        text-align: center;
    } 
    .qr_code{
        display: none;
    }
    .hero_content{
        flex-direction: column;
    }
    .c_left > .title{
        font-size: 30px;
        line-height: 40px;
    }
    .c_left > p{
        font-size: 24px;
    }
}
@media screen and (max-width: 600px){
    .c_right > img {
        width: 100%;
        height: auto;
        margin-top: 0;
    }
}
@media screen and (max-width: 380px){
    .c_right > img {
        width: 100%;
        height: auto;
        margin-top: 0;
    }
}

nav.scrolled {
    background: #000000;
}


/* body part starts here */
.m_title{
    padding: 40px 100px;
    text-align: center;
}
.m_title>h2{
    font-size: 44px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    color: #000000;
}
.m_title>p{
    font-size: 16px;
    font-weight: 400;
    color: #333333;
}

.abt_app{
    display: flex;
    align-items: center;
    margin-top: 100px;
}
.abt_app > img{
    width: auto;
    height: 350px;
}
.txt{
    text-align: left;
    margin-left: 40px;
}
.txt >h2{
    font-size: 25px;
}
.txt >p{
    font-size: 14px;
    color: #333333;
    max-width: 90%;
}
.abt_2{
    flex-direction: row-reverse;
}

.compl{
    display: grid;
    flex-direction: row;
    justify-content: space-evenly;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
}
.item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #713FF3;
    text-align: left;
    margin-top: 40px;
    padding: 10px 20px;
    -webkit-transition: all .3s linear 0s;
    transition: all .3s linear 0s;
    cursor: pointer;
}
.active{
    background-color: #F9F9FF;
    box-shadow: 0px 0px 20px #00000021;
    border-radius: 30px 0px;
}
.active >.data >p{
    color: #713FF3;
}
.item >img{
    width: auto;
    height: 60px;
    margin-right: 10px;
}
.data>h2{
    font-size: 26px;
    margin: 0;
}
.data>p{
    font-size: 16px;
    margin: 0;
    color: #000000;
}

.cnt_2{
    display: flex;
    align-items: center;
}
.cnt_2 > .txt2{
    max-width: 45%;
}
.cnt_2 >img{
    width: auto;
    height: 600px;
}
.border_btn{
    border: 1px solid #0D13D7;
    border-radius: 10px;
    font-size: 16px;
    color: #707070;
    text-transform: capitalize;
    padding: 10px 30px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-top: 40px;
}
.border_btn >img{
    width: auto;
    height: 15px;
    margin-left: 10px;
}
.g_feat{
    background: url(../images/bg.png);
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper {
    overflow-x: hidden;
}
.swiper-slide{
    text-align: center;
}
.slider_img{
    width: auto;
    height: 500px;
    border-radius: 30px;
    box-shadow: 0px 0px 16px #0000002a;
}
.icons{
    width: 100%;
    height: auto;
}
.rating{
    width: auto;
    height: 120px;
    margin-top: 40px;
}
.contact{
    background: url(../images/contact.jpg);
    height: 400px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: #ffffff;
}
.contact >h2{
    margin: 0;
    text-transform: uppercase;
}
.contact >p{
    margin: 0;
}


/* footer */
.foot-upp {
    background: #f5f5f7;
    padding: 30px 10px;
    text-align: center;
    margin-top: 100px;
}
.icon-footer {
    max-width: 100%;
    height: 50px;
    margin-top: 20px;
}
.foot-social {
    display: block;
    margin-top: 30px;
}
.foot-social img {
    max-width: 100%;
    max-height: 30px;
    cursor: pointer;
    margin-right: 10px;
}
.f-links p {
    margin-top: 20px;
}
.f-links p a {
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    letter-spacing: 0;
    line-height: 28px;
    font-size: 14px;
    color: #8A8A8A;
    margin: 0 18px;
    cursor: pointer;
    text-decoration: none;
}
.container > p {
    margin-top: 20px;
    color: #8A8A8A;
    font-size: 14px;
}
.container > p >a{
    margin-top: 20px;
    color: #8A8A8A;
    text-decoration: none;
}
hr {
    margin: 30px 0px;
}
.image2{
    width: auto;
    height: 350px;
    margin-top: 20px;
    border-radius: 30px;
}
.youtube_video{
    text-align: center;
    display: flex;
    justify-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
}
.youtube_video >iframe{
    margin-top: 10px;
    width: 30%;
    height: 300px;
}
@media screen and (max-width: 600px){
    .m_title>h2{
        font-size: 32px;
    }
    .m_title>p{
        font-size: 14px;
    }
    .abt_app{
        flex-direction: column;
        margin-top: 40px;
    }
    .m_title{
        padding: 40px 10px;
    }
    .abt_app > img{
        width: 100%;
        height: auto;
    }
    .txt{
        margin: 0;
    }
    .cnt_2 >img {
        width: 100%;
        height: auto;
        margin-left: -30%;
    }
    .cnt_2 {
        flex-direction: column;
    }
    .cnt_2 > .txt2 {
        max-width: 90%;
    }
    .g_feat{
        background-position: left;
    }
    .rating{
        width: 100%;
        height: auto;
    }
    .contact{
        background: #713ff3;
        height: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        color: #ffffff;
        border-radius: 30px;
        margin: 0px 20px;
    }
    .contact > .top_download_btn{
        background: #ffffff;
        color: #000000;
        font-weight: 800;
    }
    .foot-upp {
        margin-top: 40px;
    }
    .item >img{
        width: auto;
        height: 25px;
    }
    .data>h2 {
        font-size: 18px;
        margin: 0;
    }
    .data>p {
        font-size: 12px;
        margin: 0;
    }
    .image2{
        width: 100%;
        height: auto;
    }
    .youtube_video >iframe{
        margin-top: 10px;
        width: 100%;
        height: auto;
    }
}



/* scroll bar */
/* width */
::-webkit-scrollbar {
    width: 4px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #713ff3; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }

  .t-c-head {
    color: #4394FF !important;
    font-size: 28px;
}

.nv2{
    background: #4394FF !important;
}


.white_btn{
    background-color: #ffffff;
    color: #000000;
    margin-top: 40px;
    border-radius: 0px;
}
.black_btn{
    background-color: #000000;
    color: #ffffff;
    margin-top: 20px;
    border-radius: 0px; 
}

/* tabs */
/* Style the tab */
.tab {
    float: left;
    width: 30%;
    height: 300px;
    font-family: nunito, sans-serif;
  }
  
  /* Style the buttons inside the tab */
  .tab button {
    display: block;
    background-color: inherit;
    color: black;
    padding: 25px 16px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #EBEBF8;
  }
  
  /* Create an active/current "tab button" class */
  .tab button.active2 {
    color: #713FF3;
    background-color: #EBEBF8;
  }
  
  /* Style the tab content */
  .tabcontent {
    float: left;
    padding: 0px 12px;
    width: 70%;
    border-left: none;
    height: 300px;
    text-align: left;
  }
  .tabcontent >img{
    width: 100%;
   
  }

  .tab_sec{
    display: flex;
    margin-top: 60px;
    font-family: nunito;
  }


  .tab>button>span{
    border: 1px solid #000000;
    padding: 10px 15px;
    border-radius: 100px;
    margin-right: 10px;
    font-weight: 700;
  }


  .banner{
    padding: 40px;
    background: url(../images/earn.jpg);
    background-size: cover;
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    margin: 40px 40px 0px 40px;
  }

  .abt_app2{
    margin-top: 0px !important;
  }


  .form{
    background-color: #713FF3;
    margin: 100px 40px;
    padding-bottom: 40px;
  }
  .form_data{
    display: grid;
    justify-content: center;
    flex-wrap: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    padding: 0px 40px;
  }
  .form_inf{
    display: flex;
    flex-direction: column;
    color: #ffffff;
    width: 90%;
    margin-bottom: 20px;
  }
  .form_inf>input{
    background: #ffffff;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
  }
  .form_inf>span{
    margin: 15px 0px;
  }
  .form_inf>input:focus-visible{
    outline: none;
  }
  .white >h2{
    color: #ffffff;
  }
  .note{
    text-align: center;
    color: #ffffff;
  }
  .c_btn{
    display: flex;
    flex-direction: column;
  }


  @media screen and (max-width: 600px){
    .banner{
    padding: 0px;
    background-size: contain;
    height: 150px;
    margin:0;
    }
    .form {
        margin: 0px;
        margin-bottom: 30px;
    }
    .form_data {
        grid-template-columns: 1fr;
        padding: 0px 20px;
    }
    .tab_sec {
        flex-direction: column;
    }
    .tab {
        width: 100%; 
        height: auto;
        margin-bottom: 40px;
    }
    .tabcontent {
        width: 100%;
        padding: 0;
    }
  }

  .blog_txt >p{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }

.tab_blog{
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto !important;
    float: none;
    margin: 0px;
  }
.tab_blog>button>span {
    margin-right:0px;
}
.tab_blog> button {
    text-align: center; 
    padding: 10px;
    width: auto;
}

.tab_blog > button:hover {
    background: none;
}
.tab_blog button.active2 {
    color: #713FF3;
    background: none;
}


.btn_dwn{
    background: #0DC400;
    display: flex;
    align-items: center;
    height: 50px;
    padding: 5px;
    border-radius: 10px;
    align-content: stretch;
    justify-content: center;
    margin-top: 100px;
    width: 85%;
    animation: shake-animation 2s ease infinite;
    text-align: center;
    
}
@keyframes shake-animation {
    0% { transform:translate(0,0) }
   1.78571% { transform:translate(5px,0) }
   3.57143% { transform:translate(0,0) }
   5.35714% { transform:translate(5px,0) }
   7.14286% { transform:translate(0,0) }
   8.92857% { transform:translate(5px,0) }
   10.71429% { transform:translate(0,0) }
   100% { transform:translate(0,0) }
 }
.btn_dwn >button{
    border: none;
    background: none;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.btn_dwn >button >img{
    width: auto;
    height: 25px;
    margin-right: 10px;
}


.p_fixed >p{
    display: none;
}
@media screen and (max-width: 600px){
    .p_fixed{
        position: fixed;
        bottom: 20px;
        left: 0%;
        width: 100%;
    }
    .p_fixed >p{
        display: block;
        color: #001123;
        animation: blink 1s ease-in-out infinite forwards !important;
        font-size: 18px;
        font-weight: bold;
    }
    .c_left{
        margin-top: 40px;
    }
    
    

    .btn_dwn{
        margin: 0px 20px;
        width: auto;
    }
    .g_play_logo {
        width: auto;
        height: 40px;
    }
}
@media screen and (max-width: 380px){
    .p_fixed{
        position: fixed;
        bottom: 20px;
        left: 0%;
        width: 100%;
    }
    .p_fixed >p{
        display: block;
        color: #001123;
        animation: blink 1s ease-in-out infinite forwards !important;
        font-size: 18px;
        font-weight: bold;
    }
    .c_left{
        margin-top: 40px;
    }
   
    

    .btn_dwn{
        margin: 0px 20px;
        width: auto;
    }
    .g_play_logo {
        width: auto;
        height: 40px;
    }

    .btn_dwn >button {
        font-size: 14px;
    }
}

@keyframes blink{
    0%{opacity: 0;}
    50%{opacity: .5;}
    100%{opacity: 1;}
}