@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;600;700&display=swap');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

body {
    overflow: auto;
    position: relative;
    color: #fff;
    background-color: #080518;
}

p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

a, a:hover, a:visited, a:focus {
    color: #fff;
}

ul {
    padding: 0;
}

.header {
    background-color: transparent;
}

.header-hr {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-hr .logo {
    height: 50px;
}

.navbar-list {
    display: flex;
    gap: 48px;
    list-style: none;
}

.navbar-links,
.navbar-links:link,
.navbar-links:visited {
    display: inline-block;
    text-decoration: none;
    font-size: 20px;
    color: #ffffff;
    transition: all 0.3s;
}

.mobile-navbar-btn {
    display: none;
    background: transparent;
    cursor: pointer;
}

.mobile-nav-icon {
    font-size: 30px;
    color: #323232;
}

.hero {
    height: 90vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18rem 0rem;
}

.hero-text {
    font-size: 4rem;
    font-weight: 300;
}

.typetext {
    color: #FF2E59;
    font-weight: bold;
}

.hero-p {
    font-size: 1.2rem;
    font-weight: 200;
}

.btn-one {
    text-decoration: none;
    background: linear-gradient(to right, #FF2E59, #8304F2);
    font-size: 1.2rem;
    font-weight: bold;
    padding: .5rem 2.5rem;
    color: #ffffff;
    border-radius: 2rem;
    border: 2px solid transparent;
    transition: 0.5s all linear;
}

.btn-one:hover {
    background: transparent;
    border: 2px solid #FF2E59;
}

.hero-img {
    width: 30rem;
}

.hero_img-section.right {
    margin-left: 0;
}
  
.hero_img-section.animated {
    animation: float 12s infinite;
}
  
  /* animation */
@-webkit-keyframes float {
  
    from,
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  
    10%,
    30%,
    50%,
    70%,
    90% {
      -webkit-transform: translate3d(0, -15px, 0);
      transform: translate3d(0, -15px, 0);
    }
  
    20%,
    40%,
    60%,
    80% {
      -webkit-transform: translate3d(0, 15px, 0);
      transform: translate3d(0, 15px, 0);
    }
}
  
@keyframes float {
  
    from,
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  
    10%,
    30%,
    50%,
    70%,
    90% {
      -webkit-transform: translate3d(0, -10px, 0);
      transform: translate3d(0, -10px, 0);
    }
  
    20%,
    40%,
    60%,
    80% {
      -webkit-transform: translate3d(0, 10px, 0);
      transform: translate3d(0, 10px, 0);
    }
}

.stat, .earn, .payment {
    padding-bottom: 12rem;
}

.login {
    padding: 7rem 0px;
}

.section_heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-weight: bold;
}

.section-title-p {
    font-size: 1rem;
    font-weight: 300;
}

.section_content {
    margin: 1rem 0rem;
}

.stat-card {
    padding: 5rem;
    background-color: rgb(128 133 193 / 23%);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    transition: 0.2s all ease-in-out;
    position: relative;
    overflow: hidden;
}

.login_card_content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background-color: rgb(128 133 193 / 23%);
    border-radius: 2rem;
    padding: 2rem 2rem;
    max-width: 450px;
    overflow: hidden;
}

/*
.stat-card:hover {
    background-color: #FF2E59;
    transform: scale(1.2);
    box-shadow: 20px 11px 10px 0px rgb(255 46 89 / 52%);
}

*/


.stat-card::before {
    content: '';
    position: absolute;
    width: 15rem;
    height: 140%;
    background: linear-gradient(#FF2E59, #8304F2);
    animation: rotate 4s linear infinite;
}

.stat-card::after {
    content: '';
    position: absolute;
    background-color: #080518;
    inset: 5px;
}

@keyframes rotate{
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.stat-card i {
    font-size: 4rem;
    margin-bottom: 1rem;
    z-index: 2;
}


.stat-card h3 {
    font-weight: bold;
    z-index: 2;
}

.stat-card p {
    z-index: 2;
}

.earn__content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.lp {
    width: 90%; height: auto;
}

.earn-card {
    padding: 1rem;
    background-color: #000000;
    display: flex;
    align-items: center;
    border-radius: 1rem;
    transition: 0.2s all ease-in-out;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    opacity: 0.65;
    transition: 0.3s all ease;
    box-shadow: -3px -1px 5px 10px #080518 inset;
    -webkit-box-shadow: -3px -1px 5px 10px #080518 inset;
    -moz-box-shadow: -3px -1px 5px 10px #080518 inset;
}

.earn-card:hover {
    opacity: 1;
    transform: scale(1.2);
    cursor: pointer;
    
}

.earn-icon {
    background-color: #080518;
    color: #fff;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    margin-right: 1rem;
}

.earn-text > h3 {
    font-size: 1.2rem;
    font-weight: bold;
}

.earn-text > p {
    font-weight: 300;
}

.payment_icon {
    background: rgb(128 133 193 / 23%);
    border-radius: 1rem;
    padding: 10px 0px 10px 20px;
    display: flex;
    align-items: center;
}

.owl-carousel .owl-item img{
    width: 20%;
}

.payment_icon h4 {
    font-weight: bold;
    margin-left: 1rem;
    font-size: 1.2rem;
}

.footer {
    text-align: center;
}

.footer_content {
    background: linear-gradient(to right bottom, #FF2E59, #8304F2);
    padding: 1.5rem 5rem;
    text-align: center;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

#particles-js {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
}

.form-control, .form-control:focus {
    background-color: rgb(8 5 24 / 29%);
    color: #ffffff;
}

.form-control:focus {
    border-color: #f1296a;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(185 23 176 / 34%);
}


/* Responsive Code */
@media(max-width:980px) {
    .mobile-navbar-btn {
        display: block;
        z-index: 999;
    }

    .header {
        position: relative;
    }

    .navbar {
        width: 100%;
        height: 100vh;
        background-color: #624aff;
        color: #ffffff;
        font-weight: bold;
        position: absolute;
        top: 0;
        left: 0;

        display: flex;
        justify-content: center;
        align-items: center;

        transform: translateY(100%);
        transition: all 0.5s linear;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .navbar-links:link,
    .navbar-links:visited {
        color: #ffffff;
    }

    .navbar-list {
        flex-direction: column;
        align-items: center;
    }

    .active .navbar {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        z-index: 10;
    }

    .hero {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        padding: 18rem 0rem;
        text-align: center;
    }

    .hero-img {
        width: 80%;
        margin-bottom: 2rem;
    }

    .hero-text {
        font-size: 2.5rem;
    }

    .hero-p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .stat-card {
        margin-bottom: 1.5rem;
    }

    .lp{
        margin-left: auto;
    }
    
}