@import url('https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&family=Be+Vietnam+Pro: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&family=Kanit: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&family=Lexend:wght@100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #7165FA;
    --darkColor: #222222;
    --light-color: #515F6E;
    --blue-color: #1D3042;


    --secondary-color: #3C3963;
    --bg-light-color: #ECEBFF;
    --bg-nav-color: #ECEBFF;
    --bg-dark-color: #081D33;
    --bg-color: #F1F6FA;
    --popup-bg: #f8f3f0;
    --popup-bgcolor-over: rgba(0, 0, 0, 0.5);
    --white-color: #ffffff;
    --title-color: #151819;
    --text-color: #69767A;
    --input-placeholder-color: #93A8AF;
    --border-color: #B1CDD7;
    --border-radius: 6px;
    --transition: all 0.3s;
    --fontLexend: "Lexend", sans-serif;
    --fontBeVietnam: "Be Vietnam Pro", sans-serif;
    --fontAfacad: "Afacad", sans-serif;
    --fontUrbanist: "Urbanist", sans-serif;
    --fontKanit: "Kanit", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-family: "Be Vietnam Pro", sans-serif;
    overflow-x: hidden;
    background-color: var(--white-color);
    color: var(--darkColor);
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Scroll */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background-color: #dddddd;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    height: 100px;
    background-color: var(--primary-color);
}

/* Scroll */
*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

a,
a:hover,
a:focus {
    /* text-transform: capitalize; */
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
    word-break: break-word;
    font-family: "Be Vietnam Pro", sans-serif;
}

p {
    font-family: "Be Vietnam Pro", sans-serif;
}

img,
video {
    max-width: 100%;
}

input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus,
.form-control:focus {
    outline: none !important;
    /* box-shadow: none;
  border: none; */
}

input,
select {
    height: 40px;
    background-color: var(--white-color);
    border-radius: 10px;
    border: none;
    color: var(--text-color);
    font-family: "Be Vietnam Pro", sans-serif;
}

input::placeholder,
textarea::placeholder {
    font-family: "Be Vietnam Pro", sans-serif;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

button {
    cursor: pointer;
}
.container1440{
    max-width: 1470px;
}

.pxu_btn {
    min-width: 125px;
    width: fit-content;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #C5BFFF 0%, #6557F9 100%);
    color: var(--white-color);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius);
    line-height: normal;
    padding: 0 20px;
    margin: 0;
    text-transform: capitalize;
    border: none;
    outline: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    font-family: "Be Vietnam Pro", sans-serif;
    z-index: 0;
}
.pxu_btn:hover {
    color: var(--white-color);
}
.pxu_btn:after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #5C54B5 0%, #0B0920 100%);
    opacity: 0;
    transition: opacity 0.3s linear;
    border-radius: var(--border-radius);
    z-index: -1;
}
.pxu_btn:hover:after{
  opacity: 1;
}


.pxu_btn_sm {
    height: 40px;
    padding: 0 10px;
}

.pxu_btn_full {
    width: 100%;
}

.pxu_react_select_60Per {
    width: 60%;
}

.pxu_btn.pxu_secondary_btn {
    background: linear-gradient(180deg, #5C54B5 0%, #0B0920 100%);
}
.pxu_btn.pxu_secondary_btn:after{
    background: linear-gradient(180deg, #C5BFFF 0%, #6557F9 100%);
}

.pxu_header {
    display: flex;
    justify-content: space-between;
    padding: 15px 80px;
    background-color: white;
    width: 100%;
    flex-wrap: wrap;
    position: sticky;
    top: 0px;
    z-index: 9999;
    box-shadow: 0px 4px 90px 0px #4936A133;
      transition: all 0.4s linear;
      position: relative;
}
header.pxu_header.fixed {
    position: fixed;
    top: 0;
     animation: slideDown 0.5s linear forwards; /* smooth slide down */
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.pxu_header .navbar-toggler {
    position: absolute;
}
.pxu_header .navbar-nav {
    width: 100%;
    max-width: calc(100% - 530px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 70px;
}
.pxu_header .navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.pxu_comingSoon_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* overflow: auto; */
    width: 100%;
    flex-direction: column;
    gap: 50px;
    /* height: 100vh; */
    position: relative;
}
.pxu_header .navbar-nav .nav-link {
    font-family: var(--fontLexend);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: var(--darkColor);
    position: relative;
}
.pxu_header .navbar-nav .nav-link:hover, .pxu_header .navbar-nav .nav-link.active {
    color: var(--primary-color);
}
.pxu_header .navbar-nav .nav-link:hover:after, .pxu_header .navbar-nav .nav-link.active:after {
   width: 100%;
}
.pxu_header .navbar-nav .nav-link:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    margin: auto;
    transition: all 0.3s;
}
.sp_banner_form {
    background: #FFFFFF80;
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(50px);
    border-radius: 10px;
    padding: 30px 40px;
    max-width: 700px;
    width: 100%;
}
.sp_banner_form .sp_input_wrap.icon.position-relative input {
    background: #ffffff;
}
.sp_banner_form_field_wrap form {
    display: flex;
    gap: 10px;
}
.sp_banner_form_field_left {
    width: 100%;
    max-width: 360px;
}
.sp_banner_form_btn input {
    text-transform: capitalize !important;
}
.sp_banner_box_inner {
    background: #FFFFFF;
    box-shadow: 0px 42px 56.3px 0px #1D26501A;
    border-radius: 14px;
    padding: 30px 30px;
    position: relative;
    width: 100%;
    max-width: 300px;
    min-width: 300px;
    margin-bottom: 30px;

}
.sp_banner_box_inner:after {
    background: linear-gradient(115.35deg, #C5BFFF 26.44%, #6557F9 101.49%);
    position: absolute;
    content: "";
    bottom: -10px;
    left: 0;
    right: 0;
    width: 85%;
    height: 10px;
    border-radius: 0px 0px 10px 10px;
    margin: auto;
}
.sp_banner_box_wrap .sp_banner_box_inner:hover{
    transform: translateY(-10px);
}
.sp_banner_box_wrap .sp_banner_box_inner{
    transition: all 0.3s;
}
.sp_banner_box_wrap {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);

}
.sp_banner_box_wrap {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 50px;
}
.pxu_vertivalCenter_dv {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 0 50px;
}

.pxu_vertivalCenter_dv .countdown-container {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #673ab7, #e91e63);
    padding: 25px 30px 25px 75px;
    border-radius: 130px;
    color: #fff;
    font-family: Arial, sans-serif;
    width: fit-content;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    max-width: 560px;
    width: 100%;
}

.pxu_vertivalCenter_dv .clock-icon {
    height: auto;
    margin-right: 0;
    position: absolute;
    left: -30px;
}

.pxu_vertivalCenter_dv .countdown-timer {
    display: flex;
    align-items: center;
    gap: 30px;
}

.pxu_vertivalCenter_dv .time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.pxu_vertivalCenter_dv .time {
    font-size: 36px;
    font-weight: normal;
    line-height: 46px;
}

.pxu_vertivalCenter_dv .label {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
}

.pxu_vertivalCenter_dv .colon {
    font-size: 24px;
    font-weight: bold;
    position: relative;
    top: -10px;
}
.sp_banner_section .timerBOx {
    position: relative;
    z-index: 1;
}
.countdown-container:before {
    content: '';
    background: #2B1E51;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 130px;
    z-index: -1;
    opacity: 70%;
}

.pxu_countDown_wrap {
    text-align: center;
    margin: 30px auto 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pxu_countDown_wrap h4 {
    font-weight: 800;
    font-size: 18px;
    line-height: 39px;
    letter-spacing: 0;
    text-align: center;
    background: #A9A2FE;
    color: #fff;
    padding: 0px 30px;
    border-radius: 155px 155px 0 0;
}

.pxu_gradText {
    background: linear-gradient(90deg, #FF84E4 0%, #A9A2FE 100%);
    border-radius: 60px;
    max-width: fit-content;
    margin: 50px auto;
    box-shadow: -7px 8px 30px 0px #5200FF33;
}

.pxu_gradText p {
    padding: 0px 30px;
    line-height: 53px;
    color: #fff;
}

.pxu_gradText p {
    padding: 0px 30px;
    line-height: 53px;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0;
    text-align: center;
    margin: 0px auto;
}

.pxu_formHead_wrap {
    border: 2px solid transparent;
    background: linear-gradient(white, white, white) padding-box, linear-gradient(90deg, #8277FF 0%, #D941FF 50%, #00FFE0 100%) border-box;
    border-radius: 60px;
    font-weight: 600;
    font-size: 16px;
    line-height: 48px;
    letter-spacing: 0%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    margin: 0px auto;
    position: absolute;
    width: 100%;
    top: -27px;
    box-shadow: -7px 8px 30px 0px #5200FF33;
}

.pxu_formHead_wrap:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 0;
    border-radius: 100px;
}

.pxu_textGradient {
    background: linear-gradient(90deg, #8277FF 0%, #D941FF 50%, #00FFE0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* for Firefox */
    font-weight: bold;
    position: relative;
}

.pxu_formWrap_dv {
    position: relative;
    max-width: 820px;
    width: 100%;
    padding: 50px 20px 30px;
    text-align: center;
    display: flex;
    min-height: 155px;
    align-items: center;
    justify-content: center;
    background-size: 100% 100%;
    margin: auto;
}

.pxu_formInner_wrap {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

.pxu_formGroup label {
    display: block;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.2px;
    color: var(--bg-dark-color);
    margin-bottom: 5px;
}

.pxu_formGroup {
    display: block;
    width: 100%;
    max-width: calc(37% - 10px);
}

.pxu_formGroup .pxu_input {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    border: 1px solid #E0D3E6;
    width: 100%;
    padding: 0px 20px;
    border-radius: 6px;
}

.pxu_formBtn button.pxu_btn {
    height: 40px;
    color: #fff;
    border-radius: 40px;
    line-height: 40px;
    font-size: 14px;
}
.pxu_accessBox_btn {
    background: radial-gradient(50% 50% at 50% 50%, #A083F7 0%, #6B3CF6 100%);
    padding: 20px 45px;
    border-radius: 50px;
    border: none;
    color: white;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0px 7px 31.8px -8px #5B00FF40;
}
.sp_review_access_img_vector > li {
    position: absolute;
}
.sp_review_access_img_vector > li:first-child {
    top: 7%;
    left: 11%;
}
.sp_review_access_img_vector > li:nth-child(02) {
    bottom: 0%;
    left: 0%;
}
.sp_review_access_img_vector > li:nth-child(03){
    top: 0%;
    right: 0%;
}
.sp_review_access_img_vector > li:nth-child(04){
    bottom: 0%;
    right: 0%;
}





.pxu_logoHead {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
}

.btn_holder_header {
    display: flex;
    gap: 10px;
}

.pxu_vertivalCenter_dv h1 {
    font-weight: 800;
    font-size: 60px;
    line-height: 70px;
    text-align: center;
    color: #222222;
    margin-top: 15px;
}

.pxu_vertivalCenter_dv h1 span {
    color: #8277FF;
}

.pxu_launch_show {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
}

.pxu_launch_show h3 {
    background: linear-gradient(317.92deg, #589BF5 -21.76%, #0E6AED 93.36%);
    text-align: center;
    width: 100%;
    padding: 0px 45px;
    border-radius: 50px;
    font-size: 26px;
    line-height: 70px;
    font-weight: 600;
}

.pxu_launch_show p {
    margin: 0;
    font-size: 14px;
    padding: 8px 30px 13px;
    background: #2D1B51;
    border-radius: 0px 0px 70px 70px;
}

.pxu_video_wrapper {
    max-width: 820px;
    max-height: 450px;
    width: 820px;
    height: 450px;
    margin: 30px 0;
    aspect-ratio: 16 / 9;
}


.pxu_access_box {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    max-width: 1090px;
    width: 100%;
    margin-top: -90px;
}

.pxu_access_box div {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pxu_access_box>div {
    transition: all 0.3s;
}
.pxu_access_box .pxu_access_box_01:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgb(177 153 248 / 28%);
}
.pxu_access_box .pxu_access_box_02:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgb(255 160 11 / 11%);
}

.pxu_access_box h3 {
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 0;
    text-align: center;
    color: #000000;
}

.pxu_access_box p {
    margin: 0;
    min-height: 100px;
    padding: 20px 0px;
    font-size: 18px;
    color: #7D6A87;
    line-height: 28px;


}

.pxu_access_box_01 {
    max-width: 765px;
    border: 2px solid #B69EFF;
    box-shadow: 0px 29px 75.4px -1px #B7A1FF33;
    background: #F3EFFF;
    border-radius: 20px;
    padding: 90px 30px 40px;
    width: 100%;
    display: flex
;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    gap: 10px;
}

.pxu_access_box_01 .pxu_accessBox_btn {
    background: radial-gradient(50% 50% at 50% 50%, #A083F7 0%, #6B3CF6 100%);
    padding: 20px 45px;
    border-radius: 50px;
    border: none;
    color: white;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0px 7px 31.8px -8px #5B00FF40;
}

.pxu_access_box_01 .pxu_accessBox_btn.btn2 {
    box-shadow: 0px 7px 31.8px -8px #FF800040;
    background: radial-gradient(50% 50% at 50% 50%, #FFC078 0%, #FFB133 100%);


}
.pxu_accessBox_btn_wrap {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: inherit;
    flex-wrap: wrap;
}

.pxu_access_box_02 {
    max-width: 530px;
    min-height: 250px;
    border: 2px solid #FFDA9E;
    background: #FFF6E8;
    border-radius: 20px;
    box-shadow: 0px 29px 75.4px -1px #B7A1FF33;
    padding: 30px;
    width: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    gap: 10px;
}
.pxu_comingSoon_para {
    color: #222222;
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
}
.timerBOx h3 {
    font-family: Be Vietnam Pro;
    font-weight: 700;
    font-size: 32px;
    line-height: 70px;
    letter-spacing: 0;
    text-align: center;
    color: var(--darkColor);
}
.pxu_featureContent {
    text-align: left;
    padding-left: 20px;
}

.pxu_three_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1090px;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.pxu_three_box>div {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: var(--primary-color);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    text-align: center;
}

.pxu_three_box>div:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgb(113 101 250 / 37%);
}
.pxu_featuerList {
    transition: all 0.3s;
}

.pxu_three_box>div>div:first-child {
    width: 80px;
    height: max-content;
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pxu_three_box svg {
    width: 40px;
    height: 40px;
}

.pxu_three_box path {
    fill: white;
}

.pxu_three_box title {
    display: block;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}
.sp_review_access_note {
    background: #F8F4FF;
    border-radius: 6px;
    padding: 20px;
    max-width: 840px;
    margin: auto;
    width: 100%;
}


.pxu_three_box p {
    font-size: 14px;
    line-height: 1.4;
    color: #f0f0f0;
    margin: 0;
}
.sp_bottom_arrow_inner {
    background: linear-gradient(180deg, #ADA6FF 0%, #6557F9 100%);
    box-shadow: -25px 14px 50px 0px #6522FF4D;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    animation: bounce 2s ease 0s infinite;
}
.sp_bottom_arrow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: max-content;
}
/* Keyframes for bounce effect */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0); /* Start and end at original position */
    }
    40% {
        transform: translateY(-15px); /* Move up */
    }
    60% {
        transform: translateY(-5px); /* Slight bounce down */
    }
}
/* Fix for the second SVG (cart icon) */
.pxu_three_box>div:nth-child(2) svg path {
    fill: none;
    stroke: white;
}

/* Fix for the third SVG (bag icon) */
.pxu_three_box>div:nth-child(3) svg path {
    fill: none;
    stroke: white;
}

/* pxu_popup_wr */
.pxu_popup_wr {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s cubic-bezier(.25, .8, .25, 1);
}

.pxu_popup_wr .pxu_over {
    position: fixed;
    background-color: #00000080;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.pxu_popup_wr.pxu_popup_active {
    opacity: 1;
    visibility: visible;
}

.pxu_popup_wr.pxu_popup_active.pxu_zIndex_Dv {
    z-index: 99999;
}

.pxu_popup_inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100% - 1rem);
    opacity: 0;
    transition: all 0.3s;
}

.pxu_popup_wr.pxu_popup_active .pxu_popup_inner {
    opacity: 1;
}

.pxu_popup_close {
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
    z-index: 10;
}

.pxu_popup_close span {
    background: #FF5C5C;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.pxu_modal_title h5 {
    font-size: 18px;
    font-weight: bold;
    color: var(--title-color);
    margin-bottom: 25px;
}

.pxu_xlarge {
    max-width: 1320px;
}

.pxu_xxl {
    max-width: 1100px;
}

.pxu_xl {
    max-width: 900px;
}

.pxu_md {
    max-width: 700px;
}

.pxu_sm {
    max-width: 400px;
}

.pxu_550 {
    max-width: 550px;
}

.pxu_610 {
    max-width: 610px;
}

.pxu_popup_content {
    border-radius: 10px;
    padding: 30px 25px;
    background: var(--white-color);
    position: relative;
    z-index: 99999;
    width: 100%;
}

.pxu_popup_content h4 {
    font-size: 22px;
    color: var(--title-color);
    margin: 10px 0 15px;
}

.pxu_popup_content p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #222222;
    margin: 0;
    margin-top: 10px !important;
}

.pxu_popup_btn {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.pxu_popup_btn .pxu_btn {
    font-size: 16px;
    width: 100%;
}

.pxu_main_input {
    margin-bottom: 15px;
}

.pxu_main_label {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0em;
    text-align: left;
    color: var(--text-color);
    display: block;
    text-transform: capitalize;
}

.pxu_custom_input {
    padding: 10px 15px;
    position: relative;
    height: 45px;
    background: var(--white-color);
    display: block;
    width: 100%;
    line-height: 50px;
    font-size: 15px;
    letter-spacing: 0px;
    color: var(--title-color);
    font-weight: 400;
    border: none;
    border: 1px solid #E3EEF6;
    border-radius: var(--border-radius);
}

.d-none {
    display: none;
}
/* Section Header */
.sp_headerWrapper h2 span, .textGradient{
background: linear-gradient(180deg, #ADA6FF 0%, #6557F9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sp_templateSection {
}
.sp_headerWrapper p {
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    max-width: 750px;
    margin: 20px auto;
    color: var(--darkColor);
}
.sp_headerWrapper h2 {
    font-weight: 800;
    font-size: 50px;
    line-height: 70px;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
}
.sp_headerWrapper {
    text-align: center;
}
/* Slider Css */
.swiper-slide.aa_gallery_image {
    border: 1px solid #3C2F62;
    background: #1B1334;
    padding: 10px;
    border-radius: 10px;
}
.aa_meargImageGallery{
    margin-top: 50px;
}
.aa_meargImageGalleryReverse {
    margin-top: 30px;
}
.sp_templateSliderWrapper{
    position: relative;
    overflow: hidden;
}
.sp_templateSliderWrapper:before,
.sp_templateSliderWrapper:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 100%;
    background: #fff;
    z-index: 0;
    top: 0;
    bottom: 0;
    border-radius: 0;
    z-index: 11;
}
.sp_templateSliderWrapper:after {
    background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 97.34%);
    right: 0px;
    top: 0px;
    left: auto;
}
.sp_templateSliderWrapper:before {
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 97.34%);
    left: 0px;
    top: 0px;
}
.aa_gallery_image img {
    max-width: 100%;
    width: 100%;
}
/* Section Header */
.sp_stepSectionInner{
    max-width: 1400px;
    width: 100%;
    padding: 0px 15px;
    margin: 0 auto;
}
.sp_stepWrap{
    text-align: center;
}
.sp_stepWrap h2 {
    color: #222;
    font-weight: 800;
    font-size: 38px;
    line-height: 48px;
}
.sp_stepWrap p {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    margin: 20px auto;
    color: var(--darkColor);
}
.sp_stepSection {
    padding: 80px 0px;
}
.themeColor {
    color: var(--primary-color);
}
.sp_stepWrapItems {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}
.sp_wrapList {
    max-width: 400px;
    position: relative;
    padding-top: 20px;
}
.stepNum {
    position: absolute;
    top: 0;
    left: 40px;
    border-radius: 10px;
    padding: 0px 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 43px;
}
.step1{
    background: #4ECBFF;
}
.sp_wrapList_inner h4 {
    font-weight: 800;
    font-size: 28px;
    line-height: 38px;
    letter-spacing: 0;
    color: var(--darkColor);
}
.sp_wrapList_inner p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    margin: 15px 0;
}
.step1Wrap .sp_stepInnerWrapper {
    background: linear-gradient(180deg, #CBEFFE 0%, #CBEFFE 100%);
}
.sp_stepBottomWrap {
    padding: 30px 0 0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp_formmWrapInner{
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #fff;
}
.sp_formmWrapInner {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #fff;
    padding: 0 20px;
    color: #222;
}
.sp_stepInnerWrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    border-radius: 20px;
}
.step2Wrap .sp_stepInnerWrapper {
    background: #D9CCFF;
}
.step3Wrap .sp_stepInnerWrapper {
    background: #FBE2F7;
}
.stepNum.step2 {
    background: #8F84FF;
}
.stepNum.step3 {
    background: #FA8EE9;
}

/* tab steps automatic changes start */
/* Tab COntent */
.sp_tab_steps_box_wrap {
background: #F8F4FF;
    padding: 35px;
    border-radius: 20px;
}
.sp_navTabsAutoChange .nav-link.active,
.sp_navTabsAutoChange .nav-link:hover {
    color: #fff
}
.sp_navTabsAutoChange .nav-link:after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    border-radius: 10px;
    z-index: -1;
    background:linear-gradient(180deg, #C5BFFF 0%, #6557F9 100%);
}
.sp_navTabsAutoChange .nav-link:hover::after, .sp_navTabsAutoChange .nav-link.active::after {
    opacity: 1;
}
.sp_navTabsAutoChange .nav-link {
    color: #222222;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    font-weight: 600;
    background: #FBF9FF;
    border: 1px solid #E2D4FF;
z-index: 0;
    position: relative;
}
.sp_tabContent_dv>.active {
    display: block;
    border-radius: 20px;
}
.sp_tabContent_dv .tab-pane{
    animation: custom-fade 0.5s linear;
}
 @keyframes custom-fade {
      from {
        opacity: 0;
        transform: translateY(4px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
.sp_tabContent_dv> .box1 {
/* background: linear-gradient(180deg, #CBEFFE 0%, #CBEFFE 100%); */

}
.sp_tabContent_dv> .box2 {
/* background: #D9CCFF; */

}
.sp_tabContent_dv> .box3 {
/* background: #FBE2F7; */

}

.sp_navTabsAutoChange {
    border-bottom: 0px;
    justify-content: center;
    margin: 20px auto 40px;
    gap: 20px;
}
.sp_autoChange_tab{
    box-shadow: 0px 0px 60px 0px #7114AF1A;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid transparent;
    background: linear-gradient(180deg, #503FFF 0%, #FF6A00 100%);
    position: relative;
    overflow: hidden;
}
.sp_autoChange_tab:before {
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 0;
    background: #fff;
    border-radius: 15px;
}
.sp_autoChange_tab > * {
    position: relative;
}
.sp_navTabsAutoChange .nav-item{
    display: flex;
    align-items: center;
    gap: 10px
}
.sp_tab_steps_gif {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #B4A0EF;
background: #ffffff;
box-shadow: 0px 0px 50px 0px #6031B333;

}
/* .sp_tabContent_dv .box1 .sp_tab_steps_gif {
    border: 1px solid #7BD2F6;
    background: #A7DCF2;
}
.sp_tabContent_dv .box2  .sp_tab_steps_gif {
border: 1px solid #B4A0EF;
background: #CDBCFF;

}
.sp_tabContent_dv .box3  .sp_tab_steps_gif {
background: #FAD4F4;
border: 1px solid #FFADF2
} */
.sp_tab_steps_section  .tab-content.sp_tabContent_dv {
    max-width: 1200px;
    margin: auto;
}
.sp_tab_steps_details {
max-width: 685px;
    width: 100%;
    margin: 30px auto 0;
}
@media (max-width: 991px) {
.tab-content.sp_tabContent_dv>.active {
    padding: 15px;
}

}
@media (max-width: 480px) {
.sp_navTabsAutoChange .nav-link {
    padding: 12px 20px;
}
}
/* tab steps automatic changes end */
/* 10 Years Section */
.sp_yearsSection{
    background: #FBF9FF;
}
.sp_experienceInner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1400px;
    padding: 0px 20px;
    margin: 50px auto 0;
    position: relative;
}
.sp_leftWrap {
    max-width: calc(100% - 537px);
    width: 100%;
}
.sp_leftWrap .sp_headerWrapper h2 {
    text-align: left;
    max-width: 100%;
}
.sp_leftWrap .sp_headerWrapper p {
    text-align: left;
    max-width: 720px;
    margin-left: 0;
}
.sp_yearsInner{
    position: relative;
}
.sp_yearsInner:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    top: auto;
    left: 0;
    background-image: url(/html-pages/jv2/assets/images/10years.png);
    background-repeat: no-repeat;
    background-size: 1075px 405px;
    background-position: right bottom;
    right: 0;
    bottom: 0;
}
.sp_rightWrap {
    max-width: 537px;
}
.sp_boxItemWrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 600px;
}

.sp_boxItem {
    box-shadow: 0px 16px 50px 0px #7E6BA333;
    background: #FFFFFF;
    padding: 20px;
    border-radius: 12px;
}
.sp_innerBox_wrapper {
    margin-top: 155px;
}
.sp_boxItem h4 {
    font-weight: 600;
    font-size: 26px;
    line-height: 22px;
    letter-spacing: -1px;
    vertical-align: middle;
}
.sp_icon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.sp_boxItem p {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #837499;
    margin-bottom: 0;
}
/* Pricing Section */
.sp_darkSection {
    padding-bottom: 80px;

}

.sp_pricingInner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    flex-wrap: wrap;
    max-width: 820px;
    margin: 50px auto 0;
    position: relative;
    flex-direction: column;
}
/* .sp_pricingWrapHeader h2 {
    font-weight: 800;
    font-size: 46px;
    text-align: center;
    text-transform: uppercase;
}
.sp_pricingWrapHeader p {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
} */
.sp_pricingBoxItem {
    background: linear-gradient(90deg, #FFA033 -4.94%, #00B3FF 106.17%);
    padding: 2px;
    border-radius: 10px;
    position: relative;
    width: 100%;
}
.sp_pricingBoxItem::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #FFA033 -4.94%, #00B3FF 106.17%);
    opacity: 0.1;
    border-radius: 10px;
}
.sp_pricingBoxWrap {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 820px;
    margin-top: 30px;
}
.sp_pricingBoxInner {
    background: #F8F8FF;
    border-radius: 10px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}
.sp_priceLabel {
    min-width: 70px;
    position: relative;
}
.sp_pricingBoxInner h2 {
    font-weight: 800;
    font-size: 36px;
    line-height: 48px;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
    min-width: 115px;
}
.sp_priceLabel span {
    font-family: var(--fontKanit);
    font-weight: 700;
    font-size: 28.08px;
    line-height: 35.1px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.sp_pricingBoxInner p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}
.sp_pricingBoxInner > span {
    font-size: 24px;
    font-weight: 500;
}
.sp_bottomLabelBox {
    align-items: center;
    justify-content: center;
    display: flex;
}
.sp_bottomLabelBox h4 {
    text-transform: capitalize;
    text-align: center;
    border-radius: 70px;
    padding: 21px 30px;
background:
linear-gradient(180deg, #C5BFFF 0%, #6557F9 100%);
color: #ffffff;

}
.greenTextGradient {
    background: linear-gradient(90deg, #FFFF15 -25%, #00FFD5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}


.bg-b {
    background: linear-gradient(90deg, #FFA033 -4.65%, #00B3FF 100%);
    padding: 2px;
    position: relative;
    border-radius: 10px;
}
.sp_bgInnerBox{
    padding: 30px;
    border-radius: 10px;
    background-color: #fff;
}
.sp_bgInnerBox h2 {
    text-transform: capitalize;
    margin-bottom: 20px;
}
.giftBox {
    position: absolute;
    right: -35px;
    top: -35px;
}
.sp_launchSection_inner .container {
    max-width: 1110px;
    margin: 0px auto 50px;
}
.sp_preLaunchWinner{
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 20px 40px;
    gap: 30px;
}
.sp_preLaunchWinner::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(203, 239, 254, 0) 0%, #CBEFFE 100%);
    opacity: 0.1;
    border-radius: 10px;
}
.sp_preLaunchWinner.sp_blue {
    background: linear-gradient(90deg, rgba(203, 239, 254, 0) 0%, #CBEFFE 100%);
}
.sp_preLaunchWinner.sp_purlple{
    background: linear-gradient(90deg, rgba(217, 204, 255, 0) 0%, #D9CCFF 100%);
}
.sp_preLaunchWinner.sp_red{
    background: linear-gradient(90deg, rgba(251, 226, 247, 0) 0%, #FBE2F7 100%);
}
.sp_preLaunchWinnerInner > span {
    font-weight: 800;
    font-size: 34px;
    line-height: 28px;
}
.sp_preLaunchWinnerInner > p {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    margin-top: 10px;
    margin-bottom: 0;
}
.list-unstyled {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.darkbox_innerWrap {
    max-width: 1300px;
    margin: auto;
    background: #EDE9FF;

    border-radius: 15px;
    color: #fff;
    padding: 20px;
}
.darkbox_innerWrap .container {
    max-width: 100%;
    margin-bottom: 0;
}
.darkbox_inner h4 {
    text-transform: capitalize;
}
.darkbox_inner p {
    text-transform: capitalize;
    margin-top: 30px;
}
.darkbox_inner {
    padding: 35px;
}
.darkbox_inner img{
    margin-bottom: 20px;
}
.sp_pricePoolBox {
    padding: 50px 0px 0px;
}
.sp_pricePoolBox .container {
    max-width: 1480px;
    padding: 0px 20px;
    margin-bottom: 0px;
}
.sp_phasesBox {
  background: #DCD4FF;
    padding: 20px;
border-radius: 18px;
}
.sp_phaseHead {
    text-align: center;
    text-transform: uppercase;
    padding: 0px 0px 20px;
}
.sp_phaseInner {
    text-align: center;
    background: #FFFFFF;
    padding: 10px;
border-radius: 18px;
}
.sp_phaseInnerBox {
    padding: 13px 15px;
    border-radius: 10px;
}
.sp_phaseInnerBox:nth-child(2n) {
    background: rgba(70, 60, 102, 0.1);
}
.sp_phasesBox.sp_centerBox {
    background: linear-gradient(180deg, #C5BFFF 0%, #6557F9 100%);
}
.sp_phaseInnerBox b {
    font-weight: 800;
}
/*  Section */
.sp_lightBoxSection{
}
.sp_countBoxContent {
width: 75px;
    font-size: 28px;
    color: rgb(255, 255, 255);
    height: 75px;
    display: flex
;
    align-items: end;
    justify-content: center;
    position: absolute;
    right: -15px;
    top: -15px;
    font-weight: 900;
    transform: rotate(45deg);
    border-radius: 5px;
    background: linear-gradient(180deg, #C5BFFF 0%, #6557F9 100%);
}
.sp_countBoxContent > span{
    font-size: 30px;
    font-weight: 600;
}
.sp_countBox {
    position: relative;
    overflow: hidden;
    background: #F8F8FF;
    border: 2px solid #7165FA30;
    border-radius: 10px;
}
.sp_countBoxHead{
        padding: 64px 40px 26px;
}
.sp_countBoxHead h4{

}
.sp_countBoxHead p{

}
.sp_list_right_icon{
    background-color: #E6E4FF;
    padding: 18px;
    border-radius: 12px;
}
.sp_list_right_icon li{
    padding-left: 45px;
    position: relative;
}
.sp_list_right_icon li > img{
    position: absolute;
    left: 0px;
    top: 2px;
    width: 28px;
    height: 28px;
}
.sp_bottomBox_countList{
margin: 0 20px 20px;
}


.sp_boxCard_wrap {
    background: linear-gradient(90deg, #FFA033 -4.65%, #00B3FF 100%);


    box-shadow: 0px 4px 20px 0px #4F449A1A;
    border-radius: 20px;
    position: relative;
    z-index: 0;
        display: grid
;
    grid-template-columns: repeat(auto-fill, minmax(366px, 1fr));
    grid-template-columns: repeat(4, 1fr);
    padding: 40px 0px 30px;
}


.sp_boxCard_wrap:after {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #ffffff;
    border-radius: 20px;
    z-index: -1;
}

.sp_boxCard_icon {
    width: 80px;
    height: 80px;
    background: #4ECBFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.sp_boxCard_inner.box1 .sp_boxCard_icon {
   background: #4ECBFF;
}
.sp_boxCard_inner.box2 .sp_boxCard_icon {
   background: #8F84FF;
}
.sp_boxCard_inner.box3 .sp_boxCard_icon {
background: #FA8EE9;
}
.sp_boxCard_inner.box4 .sp_boxCard_icon {
background: #FFB43B;
}
.sp_boxCard_inner {
    padding: 0px 20px;
    position: relative;
}
.sp_boxCard_wrap > .sp_boxCard_inner:last-child::after {
    display: none;
}
.sp_boxCard_inner:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: #E7EEE9;
    width: 1px;
}
.lrpadding.sp_boxCard_top {
    padding: 0 20px;
}
/* solves section start */
.sp_solve_sation_wrap {

}
.sp_solve_sation_table_left {
    background: #FBF9FF;
    border-radius: 20px;
    width: 100%;
    max-width: 722px;
    overflow: hidden;
}
.sp_solve_sation_table_heading {
    background: #E6E4FF;
    padding: 20px 25px;
    font-size: clamp(18px, 4vw, 28px);;
    font-weight: 800;
}
.sp_solve_sation_table_list >li {
    text-indent: -33px;
    padding-left: 33px;
}
.sp_solve_sation_table_list >li:not(:last-child) {
    border-bottom: 1px solid #E8E8E8;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.sp_solve_sation_table_right .sp_solve_sation_table_list >li {

    border-bottom-color:#E8E8E845;
}
.sp_solve_sation_table_list {
    padding: 4.3% 5.5%;
}
.sp_solve_sation_table_right {
    background: linear-gradient(180deg, #C5BFFF 0%, #6557F9 100%);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 50px;
}
.sp_solve_sation_table_right .sp_solve_sation_table_heading {
    background: linear-gradient(180deg, #C5BFFF 0%, #6557F9 100%);
    overflow: hidden;
    width: 100%;
    max-width: 722px;
    color: #ffffff;
    border-radius:  20px 20px 0 0;
}

/* 60 Second Affiliate Challenge */
.sp_affi_chalange_wrap {
    /* background: url(../images/affilicate_chalange/bg.jpg) no-repeat;
    background-size: cover;
    background-position: top center; */
    /* padding-bottom: 220px; */

}

.sp_video_wrap iframe{
    width: 100%;
    max-width: 820px;
    height: 460px;
    border-radius: 10px;
    background: linear-gradient(180deg, #FFA033 0%, #00B2FF 100%);
    padding: 2px;
}
.pils_round {
    background: #372851;
    border-radius: 70px;
    display: inline-block;
    padding: 1% 2.5%;
}
.sp_whitebox_with_gradient .bg-b {
    border-radius: 20px;
    width: 100%;
    height: 100%;
}
.sp_whitebox_with_gradient_inner {
    background: #fff;
    border-radius: 19px;
    width: 100%;
    height: 100%;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.sp_whitebox_with_gradient {
    max-width: 640px;
    height: 345px;
    width: 100%;
    /* height: 100%; */
}
.box_absolute_img {
    position: absolute;
}
.box1_img3 {
    bottom: 0;
    right: 2%;
}
.box1_img2 {
    bottom: 0;
    left: 4%;
}

.box2_img2 {
    bottom:30px;
    left: 4%;
}
.box2_img3 {
    bottom: -10%;
    right: 26%;
}
.box2_img4 {
 top: 0;
    left: -6%;
}
.box2_img5 {
    bottom: -14%;
    right: -6%;
}

.box3_img1 {
    top: 0;
    bottom: 0;
    margin: auto;
    left: -5%;
}
.box3_img2 {
   top: 0;
    bottom: 0;
    margin: auto;
    left: 22%;
}
.box3_img3 {
top: 0;
    bottom: 0;
    margin: auto;
    left: 42%;
}
.box3_img4 {
    top: 0;
    bottom: 0;
    margin: auto;
    left: 64%;
}

.box4_img2 {
    top: 15%;
    left: 1%;
}
.box4_img3 {
    bottom: -12%;
    left: -6%;
}
.box4_img4 {
    top: -34px;
    left: 23%;
}
.box4_img5 {
    top: -12%;
    right: -7%;
}
.box4_img6 {
    bottom: 6%;
    left: 46%;
}
.box4_img7 {
    bottom: -14%;
    right: -6%;
}

.box5_img2 {
    bottom: -15%;
    left: -8%;
}
.box5_img3 {
    top: -12%;
    left: 33%;
}
.box5_img4 {
    bottom: -16%;
    right: -8%;
}
.box5_img5 {
    bottom: 5%;
    right: 32%;
}


.box6_img2 {
    bottom: -11%;
    right: -8%;
    max-width: 80%;
}
.box6_img3 {
bottom: -14%;
    left: -8%;
}

.box7_img2 {
    bottom: 2%;
    left: 1%;
}
.box7_img3 {
    top: 8%;
    right: -2%;
}


.box8_img1 {
    left: -7%;
    top: -8%;
    bottom: 0;
}
.box8_img2 {
    bottom: 0;
    left: 10%;
    margin: auto;
}
.box8_img3 {
    top: 8%;
    right: 2%;
}


.box9_img2 {
    bottom: -13%;
    left: -40px;
}
.box9_img3 {
    bottom: -11%;
    right: -5%;
}

.box10_img2 {
    bottom: -8%;
    left: -3%;
}
.box10_img3 {
    bottom: -5%;
    right: 1%;
}

.box11_img2 {
    bottom: 0;
    left: 0%;
}
.box11_img3 {
    bottom: -5%;
    right: 1%;
}

.box12_img2 {
    bottom: 0;
    left: 0%;
}
.box12_img3 {
    bottom: -5%;
    left: 23%;
}
.box12_img4 {
    bottom: -8%;
    right: 1%;
}


.box13_img2 {
    bottom: 0;
    right: 2%;
    top: 0;
    margin: auto;
}
.box13_img3 {
    bottom: 4%;
    right: 24%;
}
.box13_img1 {
    bottom: 0;
    left: 2%;
}

.box14_img2 {
    bottom: -12%;
    left: 14%;
}
.box14_img3 {
    top: 0;
    right: 0;
}

/* 60 Second Affiliate Challenge */
.sp_introdusing_logo img {
        max-width: 390px;
    }
.sp_introdusing_grid {

}

/* funnel section start */



/* funnel section start */
.sp_funnelBox-wrapper .container{
    max-width: 1600px;
}
.sp_reviewAccess_sation_wrap .pxu_btn {
    font-size: 18px;
    border-radius: 10px;
    height: inherit;
    line-height: inherit;
    padding: 1.4% 3%;
}
.sp_innerFunnel_box:before {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, #C5BFFF 0%, #6557F9 100%);
    opacity: 0.3;
    width: 90%;
    height: 100%;
    top: -20px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 21px;
    z-index: -1;
}
.sp_innerFunnel_box {
    background: linear-gradient(180deg, #C5BFFF 0%, #6557F9 100%);
    width: 100%;
    padding: 30px;
    border-radius: 15px;
    position: relative;
}
.sp_innerFunnel_box h1 {
    background: #FFFFFF;
    font-weight: 900;
    font-size: 31.39px;
    line-height: 52.32px;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    border-radius: 50px;
    color: var(--primary-color);
    max-width: fit-content;
    margin: auto;
    padding: 0px 30px;
}
.sp_innerFunnel_box h3 {
    font-weight: 600;
    font-size: 31.39px;
    line-height: 46.04px;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
}
.sp_borderLine {
    background: linear-gradient(90deg, #8C81FC 0%, rgba(255, 255, 255, 0.6) 49.52%, #8C81FC 100%);
    width: 100%;
    max-width: 190px;
    height: 5px;
    opacity: 1;
    border-radius: 62.78px;
    display: block;
    margin: 15px auto;
}
.sp_innerFunnel_box h2 {
    font-weight: 800;
    font-size: 57.55px;
    line-height: 40px;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
}
.sp_oneTime {
    font-weight: 600;
    font-size: 25.11px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    margin: auto;
    display: inline-block;
}
.sp_funnerLight_box h1 {
    background: linear-gradient(180deg, #C5BFFF 0%, #6557F9 100%);
    border-radius: 50px;
    text-align: center;
    max-width: 250px;
    margin: auto;
    color: #fff;
    font-weight: 700;
    font-size: 31.39px;
    line-height: 52.32px;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    max-width: fit-content;
    margin: auto;
    padding: 0px 30px;
}
.sp_funnerLight_box h3 {
    font-weight: 500;
    font-size: 23.3px;
    line-height: 52.32px;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
}
.sp_funnerLight_box {
    border: 2.09px solid #7165FA30;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
}
.sp_funnerLight_box .sp_borderLine {
    background: linear-gradient(90deg, #F8F8FF 0%, #6B5EF9 49.52%, #F8F8FF 100%);
}
.sp_funnerLight_box h2 {
    font-weight: 800;
    font-size: 57.55px;
    line-height: 52.32px;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
}
.sp_funnerLight_box .sp_oneTime {
    color: var(--darkColor);
}
.sp_arrow_down {
    display: block;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: -3px auto;
    z-index: 1;
}
.bigArrow_down{
    margin-top: -10px;
}
.sp_funnerLight_box {
    margin-top: 38px;
    margin-bottom: 50px;
}
.sp_funnelList{
    list-style: disc;
    padding-left: 25px;
}
.sp_funnelList li {
    font-weight: 500;
    font-size: 20.93px;
    line-height: 40.81px;
    letter-spacing: 0;
    text-transform: capitalize;
    text-align: left;
}
.sp_funnerLight_box h4 {
    font-weight: 800;
    font-size: 21.97px;
    line-height: 31.39px;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    color: var(--primary-color);
}
.sp_innerFunnel_box h5 {
    font-weight: 800;
    font-size: 20px;
    line-height: 41.85px;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    color: var(--primary-color);
    padding: 0px 10px;
    margin: 10px auto;
    background-color: #fff;
    border-radius: 25px;
}




/* mission section start */
.sp_owner_box {
    background: #F8F8FF;
    border: 2px solid #7165FA30;
    border-radius: 20px;
    padding: 20px 20px;
    display: flex
;
    align-items: center;
    gap: 30px;
}
.sp_owner_details {
    background: #E9E9FF;
    border-radius: 10px;
    padding: 3%;
    display: flex;
    flex-direction: column;
    gap: 20px;
width: 65%;
}
.sp_owner_details > a{
    word-break: break-all;
}
.sp_owner_name {
    width: 35%;
}
.sp_input_wrap.icon.position-relative input {
    background: #FBF9FF;
    border: 1px solid #F0EAFB;
    padding: 0 30px 0 20px;
    color: #A299B5;
    width: 100%;
    height: 50px;
}
.sp_input_icon {
    position: absolute;
    right: 20px;
    bottom: 0;
    top: 0;
    margin: auto;
    display: flex
;
    justify-content: center;
    align-items: center;
}

.sp_mission_btm_box_two {
    border: 1px solid #DBDCFF;
    box-shadow: -10px 14px 80px 0px #6F62FA1A;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    min-height: 187px;
}
.sp_mission_btm_box_one {
    background: url(../images/mission/bg1.png) no-repeat;
    background: linear-gradient(180deg, #C5BFFF 0%, #6557F9 100%);
    background-size: cover;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    max-width: 570px;
    width: 100%;
    z-index: 0;
}
.sp_mission_btm_box_one:after {
    background: url(../images/mission/bg1.png) no-repeat;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-size: cover;
    border-radius: 10px;
}
.sp_mission_bbo_number{
    position: absolute;
    right: 20px;
    top: 20px;
    opacity: 0.2;
}
.sp_mission_btm_box_wrap {
    display: flex;
    gap: 20px;
    margin-top: 4%;
    justify-content: center;
}
.bb2 .sp_mission_btm_box_two{
    display: flex
;
    justify-content: center;
    align-items: center;
}
.bb2.sp_mission_btm_box_one {
    background: #0F0514;
}
.bb2.sp_mission_btm_box_one:after {
    opacity: 0.3;
}
.bb2 .pxu_btn.dark {
    background: linear-gradient(180deg, #1F0820 8.97%, #31306A 100%);
}
.sp_one_link_wrap{
background: url(../images/oneLink.png) no-repeat ;
  background-size: cover;
}
/* footer start */
.sp_footerMenu_list {
    gap: 15px;
    display: flex;
}
.sp_listWrap_mrnu {
    max-width: calc(33.3% - 10px);
    width: 100%;
}
.sp_listWrap_mrnu h4 {
    color: var(--darkColor);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}
.sp_listWrap_mrnu li a {
    color: var(--darkColor);
    line-height: 35px;
}
.sp_footerSection hr {
    margin: 45px 0;
    border-color: red;
    opacity: 0.1;
}
.sp_footMenu {
    align-items: center;
    justify-content: end;
    gap: 15px;
    flex-wrap: wrap;
    display: flex;
}
.sp_footMenu li a {
    color: var(--dark-color);
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
}
@media (max-width: 991px) {
    .sp_footLogo_wrap {
        text-align: center;
        padding: 0 !important;
        margin-bottom: 50px;
    }
}
@media (max-width: 600px) {
    .sp_footerMenu_list {
        flex-direction: column;
        row-gap: 50px;
    }
}

/* Responsive Css */
@media(min-width:576px) {
    .sp_boxCard_inner {
    height: 100%;
    display: flex
;
    justify-content: space-between;
    flex-direction: column;
}
}
@media(min-width:1200px) {
    .sp_mission_btm_box_one {
        height: 237px;
    }
    .sp_mission_btm_box_two {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 120px;
    max-width: 80%;
    margin: auto;

}

}
@media(min-width:768px) {
    .sp_solve_sation_table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.sp_solve_sation_table_left {
    border-radius: 20px 0 0 20px;
}
.sp_solve_sation_table_right {
    height: calc(100% + 30px);
    margin: -20px 0 0;
    position: relative;

}
.sp_solve_sation_table_right .sp_solve_sation_table_heading {
    padding: 30px 25px;
}
.sp_countBox {
    height: 100%;
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
}
}
@media(max-width:1599px) {
        .sp_introdusing_logo img {
        max-width: 290px;
    }
        .sp_introdusing_grid {
        margin-top: -298px;
        padding-top: 22%;
    }
    /* funnel */
      .sp_innerFunnel_box h1, .sp_funnerLight_box h1 {
        font-weight: 900;
        font-size: 20.39px;
    }
    .sp_innerFunnel_box h3 {
        font-size: 24.39px;
        line-height: normal;
    }
    .sp_funnerLight_box h3 {
        font-size: 20px;
        line-height: 32px;
    }
    .sp_innerFunnel_box h2, .sp_funnerLight_box h2 {
        font-size: 40px;
        line-height: 35px;
    }
    .sp_oneTime , .sp_funnerLight_box .sp_oneTime{
        font-size: 20px;
        line-height: 26px;
    }
    .sp_funnelList li {
        font-size: 16px;
        line-height: 25.81px;
    }
    .sp_funnerLight_box h4 {
        font-size: 16px;
        line-height: 24px;
    }
    .sp_innerFunnel_box h5 {
        font-size: 16px;
        line-height: 20px;
        padding: 5px 10px;
    }
    /* funnel */
}
@media(max-width:1499px) {
    .pxu_header {
        padding: 15px 50px 15px;
    }
    .pxu_header .navbar-nav {
        gap: 30px;
    }
    .sp_stepWrap h2 {
        font-size: 30px;
    }
    .sp_stepWrap p {
        font-size: 16px;
        line-height: 25px;
    }
    .sp_wrapList_inner h4 {
        font-size: 22px;
        line-height: 28px;
    }
    .sp_wrapList_inner p {
        font-size: 14px;
        line-height: 22px;
    }
    .stepNum {
        font-size: 14px;
    }
    .sp_countBoxHead {
        padding: 30px 20px 20px;
    }
    .sp_countBoxContent {
        width: 60px;
        height: 60px;
    }
    .sp_countBoxContent > span {
        font-size: 22px;
    }


}
@media(max-width:1399px) {
    .sp_yearsInner:before{
        display: none;
    }
    .sp_innerBox_wrapper {
        margin-top: 50px;
    }
        .sp_introdusing_grid {
        margin-top: -24%;
        padding-top: 27%;
    }
    .sp_banner_box_inner {

    max-width: inherit;
    min-width: inherit;
}
}
@media(max-width:1199px) {
    .mb_lg_30{
        margin-bottom: 30px;
    }
    .mt_lg_30{
        margin-top: 30px;
    }
    .pb_lg_30{
        padding-bottom: 30px;
    }
    .pt_lg_30{
        padding-bottom-top: 30px;
    }
    .pxu_header {
        padding: 15px 15px 15px;
    }
    .sp_leftWrap {
        max-width: calc(100% - 360px);
        width: 100%;
    }
    .sp_rightWrap {
        max-width: 330px;
    }
    .sp_headerWrapper h2 {
        font-size: 34px;
        line-height: 45px;
    }
    .sp_headerWrapper p {
        font-size: 16px;
        line-height: 26px;
    }
    .sp_boxItem h4 {
        font-size: 20px;
    }
    .sp_boxItem p {
        font-size: 14px;
    }
    .menu_open .pxu_header .navbar-nav {
        left: 0;
    }
    .pxu_header .navbar-nav{
        position: fixed;
        left: -200px;
        top: 0;
        bottom: 0;
        width: 200px;
        max-width: inherit;
        background-color: var(--primary-color);
        transition: .3s ease-in-out;
        -webkit-transition: .3s ease-in-out;
        -moz-transition: .3s ease-in-out;
        height: 100vh;
        z-index: 99;
        justify-content: start;
        flex-direction: column;
    }
    .pxu_header .navbar-nav .nav-item{
        padding: 15px 10px 15px 30px;
        border-bottom: 1px solid #ddd;
        text-align: left;
        width: 100%;
    }
    .pxu_header .navbar-nav .nav-link {
        color: var(--white-color);
    }
        .pxu_header .navbar-nav {
        gap: 0;
    }
    .pre_toggle_btn {
        display: flex;
        background: var(--primary-color);
        border-radius: 2px;
    }

    .pre_toggle_btn>svg {
        cursor: pointer;
        -webkit-tap-highlight-color: #fff0;
        transition: transform .4s;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
        width: 35px
    }

    .menu_open .pre_toggle_btn>svg {
        transform: rotate(45deg)
    }

    .pre_toggle_btn_line {
        fill: none;
        transition: stroke-dasharray .4s,stroke-dashoffset .4s;
        stroke: var(--white-color);
        stroke-width: 4;
        stroke-linecap: round
    }

    .pre_toggle_btn .bottom,.pre_toggle_btn .top {
        stroke-dasharray: 40 121
    }

    .menu_open .pre_toggle_btn .bottom,.menu_open .pre_toggle_btn .top {
        stroke-dashoffset: -68px
    }

    .sp_boxCard_wrap {
    grid-template-columns: repeat(2, 1fr);
}

    .sp_boxCard_wrap .sp_boxCard_inner:nth-child(02):after {
        display: none;
    }
    .sp_introdusing_grid {
        margin-top: 0;
        padding: 8% 0;
        background: #f0ecf8;
}
.sp_affi_chalange_wrap {
    padding: 8% 0;
}
.pxu_vertivalCenter_dv h1 {
    font-size: 50px;
    line-height: 1.4;
}
.sp_review_access_img.position-relative > img {
    max-width: 90%;
    margin: auto;
}
.sp_review_access_img_vector > li:first-child{
    left: 0;
}
.sp_review_access_img_vector > li:first-child img{
    max-width: 70%;
}
.sp_review_access_img_vector > li:nth-child(02){
    left: 0;
}
.sp_review_access_img_vector > li:nth-child(02) img{
    /* max-width: 70%; */
}
.sp_review_access_img_vector > li:nth-child(03) img{
    max-width: 70%;
}
.sp_review_access_img_vector > li:nth-child(04) img{
    max-width: 70%;
}

    .sp_innerFunnel_box h3 {
        font-size: 20.39px;
    }
    .sp_innerFunnel_box h3 {
        font-size: 16px;
    }
}

@media(max-width:1024px) {
    br {
        display: none;
    }
}
@media(max-width:991px) {
    .mt_md_30{
        margin-top: 30px;
    }
    .mt_md_50{
        margin-top: 50px;
    }
    .mb_md_30{
        margin-bottom: 30px;
    }
    .mb_md_50{
        margin-bottom: 50px;
    }
    .sp_banner_box_wrap {

    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}
    .pxu_access_box_01 .pxu_accessBox_btn, .sp_review_access_wrap .pxu_accessBox_btn{
    padding: 18px 30px;
    font-size: 16px;
}
    .sp_launchSection .pe-5 {
    padding-right: 15px !important;
}
    .sp_leftWrap {
        /* order: 2; */
        max-width: 100%;
        width: 100%;
    }
    .sp_rightWrap {
        /* order: 1; */
        max-width: 100%;
        width: 100%;
    }
    .sp_experienceInner{
        flex-direction: column;
        margin-top: 0px;
    }
    .sp_phasesBox {
    margin-bottom: 20px;
}
    .sp_whitebox_with_gradient {
        margin: auto auto 30px;
    }
    .sp_pricingBoxInner {

        padding: 12px 10px;
        gap: 10px;
    }
    .sp_pricingBoxInner h2 {

    font-size: 24px;
    min-width: inherit;
    }
    .sp_stepWrap h2 {
        font-size: 24px;
        line-height: 1.4;
    }
    .sp_review_access_img.position-relative > img {
        max-width: 600px;
        width: 100%;
    }
    .sp_review_access_img_vector > li:first-child {
        top: -11%;
    }
        .sp_review_access_img_vector > li:nth-child(02) {
        left: -6%;
        bottom: -16%;
    }
}
@media(max-width:767px) {
    .mb_sm_50{
        margin-bottom: 50px;
    }
    .mt_sm_50{
        margin-top: 50px;
    }
    .mb_sm_30{
        margin-bottom: 30px;
    }
    .mt_sm_30{
        margin-top: 30px;
    }
    .pxu_header .pxu_btn {
    min-width: inherit;
    height: 45px;
    font-size: 15px;
    padding: 0 10px;
}
    .sp_mission_btm_box_wrap {
    flex-wrap: wrap;
}

    .pxu_formGroup {
        max-width: calc(33.3% - 10px);
    }

.pxu_launch_show h3 {
    padding: 10px 25px;
    font-size: 17px;
    line-height: 1.4;
}

    .pxu_gradText p {
        padding: 20px;
        line-height: normal;
    }

    .pxu_vertivalCenter_dv .time {
        font-size: 26px;
        line-height: 30px;
    }

    .pxu_vertivalCenter_dv .countdown-timer {
        gap: 10px;
    }

    .pxu_vertivalCenter_dv .countdown-container {
        max-width: fit-content;
    }

    .pxu_countDown_wrap h4 {
        font-size: 12px;
        padding: 0px 20px;
        line-height: 30px;
    }

    .pxu_vertivalCenter_dv .time-box {
        min-width: 40px;
    }

    .pxu_vertivalCenter_dv .label {
        font-size: 10px;
    }

    .pxu_video_wrapper {
        width: 100%;
        height: 100%;
    }

    .pxu_vertivalCenter_dv {
        padding-top:20px;
        padding-bottom:50px;
    }

    .pxu_video_wrapper iframe {
        height: auto !important;
        aspect-ratio: 16 / 10;
    }
    .sp_video_wrap iframe {
        height: auto !important;
        aspect-ratio: 16 / 10;
    }
    .sp_introdusing_logo img {
        max-width: 230px;
    }
    .sp_reviewAccess_signature img{
        max-width: 200px;
    }
    .sp_whitebox_with_gradient_inner .box2_img2, .sp_whitebox_with_gradient_inner .box2_img3, .sp_whitebox_with_gradient_inner .box2_img4, .sp_whitebox_with_gradient_inner .box2_img5 {
        max-width: 50%;
    }

    .sp_whitebox_with_gradient_inner .box3_img2, .sp_whitebox_with_gradient_inner .box3_img3, .sp_whitebox_with_gradient_inner .box3_img4, .sp_whitebox_with_gradient_inner .box3_img1 {
        max-width: 40%;
    }
     .sp_whitebox_with_gradient_inner .box3_img2 {
        left: 18%;
    }
    .sp_banner_form_field_wrap form {
        flex-direction: column;
    }
    .sp_banner_form_field_left {
        width: 100%;
        max-width: 100%;
    }




}

@media(max-width:575px) {
    .mb_xs_50{
        margin-bottom: 50px;
    }
    .mt_xs_50{
        margin-top: 50px;
    }
    .mb_xs_30{
        margin-bottom: 30px;
    }
    .mt_xs_30{
        margin-top: 30px;
    }
    .pb_xs_50{
        padding-bottom: 50px;
    }
    .pt_xs_50{
        padding-top: 50px;
    }
    .pb_xs_30{
        padding-bottom: 30px;
    }
    .pt_xs_30{
        padding-top: 30px;
    }
    .pxu_header h2 {
        font-size: 26px;
        line-height: 30px;
        line-height: 30px;
    }

    .pxu_header img {
        width: 140px;
    }
    .darkbox_inner {
        padding: 0;
    }

    br {
        display: none;
    }

    .pxu_gradText p {
        padding: 10px 20px;
        font-size: 14px;
    }

    .pxu_formHead_wrap {
        font-size: 14px;
        line-height: 30px;
    }

    .pxu_vertivalCenter_dv .time-box {
        min-width: 40px;
    }

    .pxu_formInner_wrap {
        align-items: center;
        justify-content: center;
    }

    .pxu_formGroup {
        max-width: calc(50% - 10px);
    }

    .pxu_formBtn,
    .pxu_formBtn button.pxu_btn {
        width: 100%;
    }

    .pxu_formWrap_dv {
        background-image: none !important;

    }

    .pxu_formWrap_dv::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 1px;
        /* border width */
        border-radius: 10px;
        background: linear-gradient(180deg, #0051FF 0%, #BF00FF 115.22%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .pxu_formHead_wrap {
        top: -15px;
    }


    .pxu_vertivalCenter_dv .colon {
        top: -6px;
    }

    .pxu_logoHead .pxu_btn {
        min-width: fit-content;
    }

    .pxu_logoHead img {
        max-width: 150px;
    }

    .btn_holder_header .pxu_btn {
        font-size: 12px;
        height: 35px;
    }

    .pxu_three_box {
        gap: 15px;
    }

    .pxu_launch_show p {
        margin-top: 15px;
        border-radius: 20px;
    }

    .pxu_three_box title {
        font-size: 20px;
    }

    .pxu_three_box p {
        line-height: 1.2;
        font-size: 14px;
    }

    .pxu_three_box>div>div:first-child {
        width: 50px;
        height: 50px;
    }

    .pxu_launch_show {
        max-width: 90%;
    }

    .pxu_vertivalCenter_dv h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .pxu_comingSoon_para {
        font-size: 16px;
        line-height: 24px;
    }

    .pxu_launch_show h3 {
        font-size: 18px;
        line-height: 24px;
        padding: 10px 40px;
    }

    .pxu_launch_show p {
        padding: 10px 20px;
    }



    .pxu_access_box_01 .pxu_accessBox_btn, .sp_review_access_wrap .pxu_accessBox_btn {
        font-size: 16px;
        font-weight: 600;
        padding: 8px 20px;
    }


    .pxu_access_box p {
        font-size: 16px;
        line-height: 24px;
    }

    .pxu_access_box h3 {
        font-size: 20px;
    }
    .sp_icon {
        flex-direction: column;
    }
    .sp_boxItem p{
        text-align: center;
    }
    .sp_boxItem {
        padding: 10px;
    }
    .pxu_comingSoon_wrapper {
    gap: 10px;
    }
    .sp_boxCard_wrap .sp_boxCard_inner:after {
        display: none;
    }
    .sp_boxCard_wrap {
        grid-template-columns: repeat(1, 1fr);
    }
    .sp_whitebox_with_gradient {
    height: auto;
    aspect-ratio: 3 / 2;
}
    .sp_whitebox_with_gradient_inner .box1_img2, .sp_whitebox_with_gradient_inner .box1_img3 {
        max-width: 85px;
    }
    .sp_whitebox_with_gradient_inner .box1_img2 {
        bottom: 61px;
    }
    .sp_whitebox_with_gradient_inner .box1_img3 {
        bottom: 16%;
    }
    .sp_whitebox_with_gradient_inner .box4_img2, .sp_whitebox_with_gradient_inner .box4_img3, .sp_whitebox_with_gradient_inner .box4_img4, .sp_whitebox_with_gradient_inner .box4_img5, .sp_whitebox_with_gradient_inner .box4_img6, .sp_whitebox_with_gradient_inner .box4_img7 {
            max-width: 50%;
        }

    .sp_whitebox_with_gradient_inner .box5_img2, .sp_whitebox_with_gradient_inner .box5_img3, .sp_whitebox_with_gradient_inner .box5_img4, .sp_whitebox_with_gradient_inner .box5_img5 {
            max-width: 50%;
        }
        .box6_img3 {
        bottom: -5%;
        left: -4%;
    }
    .box6_img2 {
        bottom: -1%;
        right: -2%;
    }

    .sp_whitebox_with_gradient_inner .box6_img2, .sp_whitebox_with_gradient_inner .box6_img3 {
            max-width: 50%;
        }
    .sp_whitebox_with_gradient_inner .box7_img2, .sp_whitebox_with_gradient_inner .box7_img3 {
            max-width: 50%;
        }
        .box7_img3 {
        right: 0;
    }
    .sp_whitebox_with_gradient_inner .box8_img2{
            max-width: 50%;
        }
    .sp_whitebox_with_gradient_inner .box8_img3 {
            max-width: 30%;
        }

      .sp_whitebox_with_gradient_inner .box9_img2, .sp_whitebox_with_gradient_inner .box9_img3 {
        max-width: 50%;
    }
      .sp_whitebox_with_gradient_inner .box10_img2, .sp_whitebox_with_gradient_inner .box10_img3 {
        max-width: 50%;
    }
      .sp_whitebox_with_gradient_inner .box11_img2, .sp_whitebox_with_gradient_inner .box11_img3 {
        max-width: 50%;
    }
      .sp_whitebox_with_gradient_inner .box12_img2, .sp_whitebox_with_gradient_inner .box12_img3, .sp_whitebox_with_gradient_inner .box12_img4 {
        max-width: 40%;
    }
      .sp_whitebox_with_gradient_inner .box13_img2 {
        max-width: 33%;
    }
          .sp_whitebox_with_gradient_inner .box14_img2, .sp_whitebox_with_gradient_inner .box14_img3, .sp_whitebox_with_gradient_inner .box14_img4 {
        max-width: 50%;
    }
    .box14_img2 {
        left: -20px;
    }
    .sp_pricingBoxInner {
        flex-wrap: wrap;
    }
    .sp_preLaunchWinner {
    padding: 20px 15px;
    gap: 12px;
}
   .sp_stepWrap h2 {
        font-size: 22px;
    }
    .sp_stepWrap p {
        font-size: 15px;
    }
.sp_review_access_img_vector > li{
        display: none;
    }

}
@media(max-width:520px){
    .sp_funnelBox-wrapper .col-lg-3.col-md-6.col-6.position-relative {
        max-width: 100%;
        width: 100%;
    }
    .sp_innerFunnel_box {
        margin-bottom: 50px;
        margin-top: 50px;
    }
    .sp_arrow_down{
        position: relative;
        margin: 0px;
    }
}
@media(max-width:480px) {
.sp_owner_box {
    flex-wrap: wrap;
}
.sp_owner_details {
    width: 100%;
}
.sp_preLaunchWinnerInner > span {
    font-size: 26px;
    line-height: 20px;
}
.sp_preLaunchWinnerInner > p {
    font-size: 15px;
    line-height: 17px;
    margin-top: 10px;
}
.pxu_access_box_01 {
    padding: 80px 8px 35px;
}
.sp_banner_box_icon img {
    max-width: 60px;
}
.sp_banner_box_inner {
    padding: 20px 10px;
}
}
@media(max-width:450px) {
    .pxu_vertivalCenter_dv h1 {
        font-size: 26px;
        line-height: 1.5;
    }

    .pxu_formGroup {
        max-width: calc(100% - 0px);
    }


    .pxu_header {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .pxu_logoHead {
        flex-direction: column;
    }


    .pxu_vertivalCenter_dv .clock-icon {
        height: auto;
        margin-right: 0;
        position: relative;
        left: 0;
    }

    .pxu_vertivalCenter_dv .countdown-container {
        padding: 15px;
        flex-direction: column;
        border-radius: 10px;
        row-gap: 20px;
    }

    .countdown-container:before {
        border-radius: 10px;
    }

    .pxu_formHead_wrap {
        max-width: fit-content;
        padding: 5px 15px;
        line-height: 1.4;
    }

    .pxu_vertivalCenter_dv .countdown-container {
        max-width: 100%;
    }
    .pxu_launch_show h3 {
        font-size: 14px;
        line-height: 24px;
        padding: 10px 20px;
    }
    .timerBOx {
        width: 100%;
    }


    .sp_mission_btm_box_two {
        padding: 8px;
    }
    .sp_mission_btm_box_one {
    padding: 15px 10px;
    }
    .sp_stepWrap h2 {
        font-size: 22px;
        line-height: 1.5;
    }


}

@media (max-width:400px) {}

