@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-image: linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%); */
    /* background-image: linear-gradient( 109deg,  rgba(160,24,80,1) 11.2%, rgba(201,138,75,1) 81.7% ); */
    background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(20, 12, 239, 1) 0%, rgba(198, 253, 249, 1) 90%);
    box-shadow: 0 0 15px rgba(20, 12, 239, 0.5);
    width: fit-content;
}

/* header: end */



/* hero: start */

.hero {
    padding-top: 18rem;
    padding-bottom: 5.6rem;
    background: url(../assets/hero_bg.webp) no-repeat center center/cover;

    margin-bottom: 8rem;
    position: relative;
}

.bg{
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
.bg-1{
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    width: 100vw;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
.pill {
    padding: 1.2rem 3.2rem;
    border: 2px solid #FF3CAC;
    text-align: center;
    background: #000000;
    background-color: rgb(0, 0, 0);
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 500;
    border-radius: 99rem;
    animation: gradientAnimation 3s infinite, glow 1.5s infinite alternate;
    position: relative;
    overflow: hidden;
}

.contrast-bg {
    background-color: #F0EB51;
    color: #222;
    border: none;
}

.hero-main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
    position: relative;
    z-index: 1;
}

.hero-heading {
    font-size: 5.6rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
}

.hero-heading-secondary {
    font-size: 4.8rem;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
}

.heavy-text {
    font-weight: 900;
}

.pill-2 {
    font-size: 2.4rem;
    font-weight: 700;
    padding: 2rem 4.8rem;
    border-radius: 99rem;
    color: #000000;
    background-color: #ffffff;

    border: 3.2px dashed #000000;

    margin-bottom: 4.8rem;

}

.launch-container {

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

    img {
        /* width: 60rem; */
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

.launch-box {
    img {
        width: 42rem;
        height: auto;
        object-fit: contain;
    }
}

/* hero: end */



/* 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);
}

.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%); */
    /* background: linear-gradient(90deg, #ed6b37 11.32%, #ec180c 95.28%); */
    background: linear-gradient(180deg, rgb(225 131 23 / 75%) 0%, rgb(225 152 23 / 80%) 35%, #fcb117 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%); */
    /* background: linear-gradient( 109deg,  rgba(160,24,80,1) 11.2%, rgba(201,138,75,1) 81.7% ); */
    background-image: linear-gradient(98.7deg, rgba(6, 238, 243, 1) 10.6%, rgba(34, 126, 209, 1) 72.2%, rgba(35, 44, 51, 1) 122.5%, rgba(35, 44, 51, 1) 122.5%);
}

.access-btn-2 {
    /* background: linear-gradient(180deg, rgba(251, 150, 21, 0.75) 0%, rgba(251, 150, 21, 0.8) 35%, #fb9615 100%); */
    /* background: linear-gradient(90deg, #ed6b37 11.32%, #ec180c 95.28%); */
    background-image: radial-gradient( circle 921px at 94.2% 47.5%,  rgba(243,31,115,1) 0%, rgba(240,117,117,1) 42.8%, rgba(240,117,117,1) 71.5%, rgba(243,31,115,1) 82.8%, rgba(255,175,2,1) 97.6% );
}

/* 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: 100%;
    height: auto;
    object-fit: contain;
    background-color:#000;
    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: 100%;
    height: auto;
    object-fit: contain;
    margin: 1.6rem auto;
}

.blue-heading {
    font-size: 3.2rem;
    font-weight: 700;
    color: blue;
    text-align: center;
}

/* intro: end */



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

    padding-block: 8rem;
    background: url(../assets/bg-1.jpg);
    background-size: 48%;
    position: relative;
}
.feature-main-container{
    z-index: 1;
    position: relative;
}
.feature-heading {
    font-size: 4.8rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    width: 100%;
    margin-bottom: 2.4rem;
}


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

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

    /* border: 2.4px solid rgba(147, 126, 251, 0.934); */
    border: 2.4px solid rgba(255, 192, 203, 0.934);

    /* background: rgba(255, 207, 225, 0.925); */
    /* background-color: #FBAB7E; */
    /* background-image: linear-gradient(62deg, rgba(147, 126, 251, 0.7) 0%, rgba(147, 126, 251, 0.7) 100%); */
    /* background-image: linear-gradient(126.6deg, rgba(44, 115, 210, 0.7) 3.4%, rgba(251, 234, 255, 0) 127.9%); */
    background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(255, 192, 203, 0.5) 0%, rgba(203, 160, 236, 0.5) 96.6%);

}

.feature-main-image {
    width: 50rem;
    height: auto;
    object-fit: contain;
    /* background-image: radial-gradient(circle 703px at 15.9% 53.4%, rgba(80, 15, 85, 0.1) 0%, rgba(11, 83, 149, 0.1) 100.2%); */
    background-color: #F7F9FF;
    border-radius: 13px;
    padding: 10px;
}

.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: center;
    justify-content: center;
    gap: 3.2rem;
}

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

.feature-2-image {
    width: 100%;
}

.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;
    background: url(../assets/famili.webp);
    /* background-size: 48%; */
    background-repeat: no-repeat;
}



.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;
        /* color: rgba(160, 24, 80, 1); */
        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); */
        /* background: linear-gradient(109deg, rgba(160, 24, 80, 1) 11.2%, rgba(201, 138, 75, 1) 81.7%); */
        background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(20, 12, 239, 1) 0%, rgba(198, 253, 249, 1) 90%);
        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: 2.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;
    display: block;
    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 */