@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all .2s linear;
    outline: none;
    text-decoration: none;
    font-family: "Nunito", sans-serif;
}

:root {
    --font-1: "Poppins", serif;
    --font-2: "Nunito", sans-serif;
}

a {
    cursor: pointer;
}

button:hover {
    transform: scale(1.05);
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: #F7F9FF;
}

.desktop-max-width {
    max-width: 130rem;
    margin: 0 auto;
}



/* header: start */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.574);
    padding-block: 2.4rem;

    backdrop-filter: blur(10px);
    /* Apply blur */
    -webkit-backdrop-filter: blur(10px);

    z-index: 999;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    width: 20rem;
    height: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.2rem;
}

li {
    list-style: none;
}

li a {
    text-decoration: none;
    font-size: 2rem;
    color: #ffffff;

    &:hover {
        text-decoration: underline;
    }
}

.btn {
    font-family: var(--font-2);
    font-size: 2.4rem;
    color: #ffffff;
    font-weight: 700;
    padding: 2rem 4.8rem;
    width: 100%;
    border-radius: 2.4rem;
    outline: none;
    border: none;
    cursor: pointer;
    background-color: #4d6bfe;
    /* background-image: linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%); */
    /* box-shadow: 0 0 15px rgba(255, 60, 172, 0.5); */
    width: fit-content;
}

/* header: end */



/* hero: start */
.hero {
    background: url("../assets/hero_bg.webp") no-repeat center center/cover;
    /* background-color: #111; */
    /* background-size: 40%; */
    padding-top: 16rem;

    padding-bottom: 7.2rem;

    margin-bottom: 10rem;
}

.hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;

    text-align: center;
}

.heading-1 {
    font-family: var(--font-2) !important;
    font-size: 6rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 125%;
    padding-bottom: 0.8rem;

    /* margin-bottom: 12rem; */

    /* border-bottom: 1px solid rgb(149, 149, 149); */
}

.heading-2 {
    font-size: 5.6rem;
    border: none;

    border: 2px solid #f0eb51;
    padding: 2.4rem;
    border-radius: 2.4rem;
}

.heading-2 img {
    height: 6rem;
    width: auto;
    object-fit: contain;

    margin-bottom: -1.2rem;
}

/* .pill {
    padding: 1.6rem 2.4rem;
    border: 2px solid #FF3CAC;
    background: #000000;
    color: #ffffff;

    font-size: 2rem;
    font-weight: 500;

    border-radius: 99rem;
} */

.pill {
    padding: 1.6rem 2.4rem;
    border: 2px solid #ff3cac;
    background: #000000;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 500;
    border-radius: 99rem;
    position: relative;
    overflow: hidden;
}

.hero-pill {
    background-color: #111;
    /* border: 1px dashed rgba(255, 255, 255, 0.566) !important; */
    border: 1px dashed yellow !important;
    color: #fff;
    border: none;
    border-radius: .8rem !important;
}

.gradient-tint {
    background-color: #85ffbd;
    background-image: linear-gradient(45deg,
            rgb(144, 203, 68) 80%,
            rgb(137, 190, 69) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* color: rgb(183, 254, 92); */
}

.rocket-image {
    width: 82%;
    height: auto;
    object-fit: contain;
    /* margin-bottom: 12rem; */
    margin: 3.2rem 0rem;
}

.mockup-mobile {
    display: none;
}

.hero-brand-logo {
    width: 28rem;
    height: auto;
    object-fit: contain;
}

.blue-pill {
    padding: 0.4rem 1.6rem;
    border-radius: 0.8rem;
    background-color: #4d6bfe;
}

.red-pill {
    padding: 0.4rem 1.6rem;
    border-radius: 0.8rem;
    background-color: red;
    color: #fff;
}

.yellow-pill {
    padding: 0.4rem 1.6rem;
    border-radius: 0.8rem;
    background-color: yellow;
}

.hero-logo {
    width: 32rem;
    height: auto;
    object-fit: contain;
    margin-bottom: 2.4rem;
}

.section-heading {
    font-size: 5.6rem;
    font-weight: 600;
    text-align: center;
    line-height: 125%;
    color: #111111;
    margin-bottom: 2.4rem;
}

.big-para {
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
    line-height: 150%;
    color: #fff;
    margin-bottom: 2.4rem;
}

.normal-para {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    line-height: 150%;
    color: #111;
    margin-bottom: 2.4rem;
}

.section-heading-2 {
    font-size: 3.2rem;
    font-weight: 600;
    text-align: center;
    line-height: 150%;
    color: #111111;
    margin-bottom: 2.4rem;
}

.highlight {
    color: #007bff;
    font-weight: bold;
}

.hero-product-image {
    width: 64rem;
    height: auto;
    object-fit: contain;
}




/* step: start */
.step {
    margin-bottom: 8rem;
}

.step-main-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
    justify-content: center;
    align-items: center;
}

.step-box {
    background-color: #ffffff;
    border-radius: 2.4rem;
    overflow: hidden;
    box-shadow: 0px 24px 48px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.step-stripe {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    width: 100%;
    display: block;

    padding-block: 1.6rem;
    width: 100%;
    background-color: #12A73C;
}

.step-heading {
    font-size: 3.2rem;
    font-weight: 800;
    color: #000000;
    text-align: center;
    width: 100%;
}

.step-1-form {
    padding: 3.2rem;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.8rem;

}

.step-1-form .field-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.step-1-form label,
.step-para {
    font-size: 1.6rem;
    color: #444444;
    font-weight: 400;
    margin-bottom: .4rem;
}

.step-para {
    text-align: center;
    width: 100%;
}

.warrior-plus-logo {
    width: 12rem;
    height: auto;
    object-fit: contain;
    margin: .8rem auto;
}

.step-1-form input {
    font-size: 1.8rem;
    color: #000000;
    font-weight: 500;
    width: 100%;

    padding: 1.2rem 1rem;
    border: 1px solid #999999;
    border-radius: .8rem;
}

.step-1-form input:focus {
    border: 1px solid rgb(58, 58, 58);
}

.form-btn {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    padding: 2rem 0rem;
    width: 100%;
    /* background-color: ; */
    border: none;
    outline: none;
    border-radius: .8rem;
    cursor: pointer;
    text-align: center;
    background: linear-gradient(180deg, rgba(18, 167, 60, 0.75) 0%, rgba(18, 167, 60, 0.8) 35%, #12A73C 100%);
    /* background: linear-gradient(180deg, rgba(23, 129, 225, 0.75) 0%, rgba(23, 129, 225, 0.8) 35%, #175CFC 100%); */
    box-shadow: 0px 18px 29px rgba(23, 16, 21, 0.025), 0px 3.6px 4.7125px rgba(23, 16, 21, 0.05);
}

.form-btn-2 {
    background: linear-gradient(180deg, rgba(23, 129, 225, 0.75) 0%, rgba(23, 129, 225, 0.8) 35%, #175CFC 100%);
}

/* step: end */



/* access: start */
.access {
    margin-bottom: 8rem;
}

.access-main-container {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 4.8rem;
}

.access-main-heading {
    font-size: 4.8rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 1rem;
    text-align: center;
}

.access-main-para {
    font-size: 2rem;
    font-weight: 500;
    color: #111111;
    margin-bottom: 2.4rem;
    text-align: center;
}

.access-btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
}

.access-btn {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    padding: 2rem 5.6rem;
    border: none;
    outline: none;
    border-radius: .8rem;
    cursor: pointer;
    /* background: linear-gradient(180deg, rgba(18, 167, 60, 0.75) 0%, rgba(18, 167, 60, 0.8) 35%, #12A73C 100%); */
    box-shadow: 0px 18px 29px rgba(23, 16, 21, 0.025), 0px 3.6px 4.7125px rgba(23, 16, 21, 0.05);
}

.access-btn-1 {
    background: linear-gradient(180deg, rgba(238, 46, 246, 0.75) 0%, rgba(238, 46, 246, 0.8) 35%, #ee2ef6 100%);
}

.access-btn-2 {
    background: linear-gradient(180deg, rgba(251, 150, 21, 0.75) 0%, rgba(251, 150, 21, 0.8) 35%, #fb9615 100%);
}

/* access: end */


/* intro: start */
.intro {
    margin-bottom: 8rem;
}



.intro-main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.2rem;
}

.intro-para {
    font-size: 2.4rem;
    line-height: 150%;
    text-align: center;
    color: #000000;
    font-weight: 400;
    margin-bottom: .4rem;
}

.intro-logo {
    width: 40rem;
    height: auto;
    object-fit: contain;
    background-color: #000000;
    padding: .8rem 2.4rem;
    border-radius: 1rem;
}

.intro-heading {
    font-size: 4rem;
    font-weight: 500;
    line-height: 175%;
    color: #000000;
    text-align: center;
}

.intro-product-image {
    width: 72%;
    height: auto;
    object-fit: contain;
    margin: 1.6rem auto;
    display: block;
}

.blue-heading {
    font-size: 3.2rem;
    font-weight: 700;
    color: blue;
    text-align: center;
}
.unlock {
    background: url(../assets/unlock_bg.webp) no-repeat center center / contain;
    margin-bottom: 10rem;
}

/* intro: end */



/* feature: start  */
.feature {
    margin-bottom: 8rem;

    padding-block: 8rem;
    background: url(../assets/bg-1.webp);
    background-size: 48%;
}

.feature-heading {
    font-size: 4.8rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    width: 100%;
    margin-bottom: 2.4rem;
}


.mail-image-features {
    width: 6rem;
    height: auto;
    object-fit: contain;
    margin-bottom: 1.6rem;
}

.feature-main-content-box {
    padding: 3.2rem;
    border-radius: 2.4rem;

    border: 2.4px solid rgb(126 251 173 / 93%);
    /* background: rgba(255, 207, 225, 0.925); */
    /* background-color: #FBAB7E; */
    background-image: linear-gradient(62deg, rgb(103 223 255 / 70%) 0%, rgb(126 251 173 / 70%) 100%);
}

.feature-main-image {
    width: 50rem;
    height: auto;
    object-fit: contain;
}

.feature-main-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5.6rem;

    margin-bottom: 5.6rem;
}


.feature-box-heading {
    font-size: 3.8rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.6rem;
}

.feature-box-para {
    font-size: 2.2rem;
    color: #ffffff;
    line-height: 150%;
}

/* feature: end  */



/* commission: start */
.commission {
    margin-bottom: 8rem;
    position: relative;
}

.supporting-item {
    position: absolute;
    width: 20rem;
    height: auto;
    object-fit: contain;
    z-index: -999;
}

.supporting-item-1 {
    top: 4rem;
    left: -7rem;
}

.supporting-item-2 {
    top: 24rem;
    right: -7rem;
}

.supporting-item-3 {
    bottom: 0rem;
    left: -7rem;
}

.supporting-item-4 {
    bottom: 0rem;
    right: -7rem;
}

.commission-main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.commission-heading {
    font-size: 4.8rem;
    font-weight: 800;
    text-align: center;
    color: #111111;
    line-height: 125%;
    margin-bottom: 6.4rem;
}

.commission-image {
    width: 72%;
    height: auto;
    object-fit: contain;
}

/* commission: end */



/* feature-2: start */
.feature-2 {
    margin-bottom: 8rem;
    position: relative;
}

.supporting-item-5 {
    top: 24rem;
    left: -8rem;
}

.supporting-item-6 {
    top: 48rem;
    right: -8rem;
}

.feature-2-main-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3.2rem;
}

.feature-2-text-box,
.feature-2-image {
    flex: 1;
}

.feature-2-image {
    width: 64rem;
}

.feature-2-heading {
    font-size: 4rem;
    font-weight: 800;
    color: #111111;
    line-height: 150%;
    text-align: left;

    margin-bottom: 2.4rem;
}

.feature-2-list {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.feature-2-list li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: .8rem;
}

.feature-2-list li img {
    width: 2.8rem;
    height: auto;
    object-fit: contain;
}

.feature-2-list li span {
    font-size: 1.8rem;
    font-weight: 500;
    color: #111111;
    line-height: 150%;
    text-align: left;
}

/* feature-2: end */



/* query: start */
.query {
    padding-block: 8rem;
    background-color: #EAFFF2;
    position: relative;
}



.query-main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.8rem;

    h1 {
        font-size: 4.8rem;
        font-weight: 800;
        color: #811BF9;
        text-align: center;
        margin-bottom: 2.4rem;
    }

    .query-main-image {
        width: 64rem;
        height: auto;
        object-fit: contain;
        margin: 1rem auto;
        margin-bottom: 2.4rem;
    }

    h2 {
        font-size: 3.2rem;
        font-weight: 800;
        font-style: italic;
        color: #ffffff;
        padding: .8rem 1.2rem;
        background-color: rgba(0, 0, 255, 0.664);
        border-radius: .8rem;
        margin-bottom: 2.4rem;
    }

    .fb-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.6rem;
        background-color: #DFEEFC;

        height: 6.4rem;
        width: fit-content;
        border: none;
        outline: none;
        overflow: hidden;
        border-radius: .8rem;
        cursor: pointer;

        img {
            height: 100%;
            width: auto;
            object-fit: contain;
            border-radius: .8rem;
        }

        span {
            font-size: 2.8rem;
            font-weight: 800;
            color: #285FEE;

            padding-right: 1.6rem;

        }

        &:hover {
            transform: scale(1.1);
        }
    }
}

/* query: end */



/* footer: start */
footer {
    background-color: #000000;

    padding-block: 7.2rem;
}

.footer-main-container {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

footer img {
    width: 24rem;
    height: auto;
    object-fit: contain;

    margin: 1.6rem auto;
}

.footer-main-container p {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 150%;
    color: #ffffff;
    text-align: center;
}

/* footer: end */
/* game changer: start  */
.game-changer {
    margin-bottom: 10rem;
}

.section-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
    align-items: center;
}

.split-part-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.split-part-text {
    p {
        text-align: left !important;
    }

    ul li {
        list-style: none;
        text-align: left !important;

        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0.8rem;

        img {
            width: 3.2rem;
            height: auto;
            object-fit: contain;
        }
    }
}

/* game changer: end  */

/* family: start */
.family {
    background-color: #111;
    padding: 8rem 0rem;

    margin-bottom: 0rem;
}

.family-main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;

    p {
        color: #fff !important;
    }
}

.family-image {
    width: 64rem;
    height: auto;
    object-fit: contain;
}

/* family: end */

/* contest: start */
.contest {
    background-color: #4F2020;

    padding-block: 8rem;

    margin-bottom: 0rem;
}

.contest-main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contest-top-image {
    width: 56rem;
    height: auto;
    object-fit: contain;
    margin-bottom: 3.2rem;
}

.contest-heading {
    font-size: 6.4rem;
    font-weight: 700;
    color: #FFF0C5;
    text-align: center;
}

.contest-heading-2 {
    font-size: 3.2rem;
    font-weight: 500;
    color: #FFF0C5;
    line-height: 125%;

    text-align: center;

    margin-bottom: 2.4rem;
}

.card-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;

    margin-top: 4.8rem;
}

.card-box-image {
    width: 100%;
    height: auto;
    object-fit: contain;

    place-self: center;
}

/* contest: end */

/* timer */
.timer {
    display: flex;
    align-items: center;
    font-size: 3rem;
    margin: 20px 0;
    justify-content: center;
    color: #ffffff;
}

.time-section {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
    margin-right: 1.2rem;
}

.days,
.hours,
.minutes,
.seconds {
    font-size: 5.6rem;
    font-weight: 700;
    display: block;
    color: #ffffff;
}
label {
    margin-top: -1.6rem;
    font-size: 1.8rem;
    color: #d7d7d7;
}

.btn {
    background-color: #0030bf;
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: #ffffff;
    padding: 2rem 4rem;

    border: none;
    outline: none;
    border-radius: 1.6rem;

    cursor: pointer;
}