@import url('https://fonts.googleapis.com/css2?family=Six+Caps&family=Space+Grotesk:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

* {
    padding: 0;
    margin: 0;
}

html,
body {
    background-color: var(--light-black) !important;
    overflow-x: hidden !important;
}

@font-face {
    font-family: New machina;
    src: url("../fonts/nue-machina.ttf");
}

.ff_machina {
    font-family: New machina;
}

.ff_space_grostek {
    font-family: 'Space Grotesk', sans-serif;
}

.ff_six_caps {
    font-family: 'Six Caps', sans-serif;
}

.ff_audiowide {
    font-family: 'Audiowide', cursive;
}

:root {
    /* FONT SIZES  */
    --font-xs: 20px;
    --font-sm: 22px;
    --font-md: 24px;
    --font-lg: 27px;
    --font-xl: 50px;
    --font-xxl: 60px;
    --font-2xl: 70px;
    --font-3xl: 90px;
    --font-4xl: 100px;
    --font-5xl: 120px;
    --font-6xl: 187px;
    --font-7xl: 200px;
    --font-8xl: 530px;
    /* COLORS  */
    --white: #ffffff;
    --off-white: #fffcf9;
    --creame: #e8e8e8;
    --light-black: #0d0d0d;
    --light-gray: #b7b7b7;
    --gray: #d9d9d9;
}

/* ----------------------------------- ONLY-MEDIA-QUERIES ----------------------------------- */
@media (max-width: 1599.98px) {
    :root {
        --font-xs: 18px;
        --font-sm: 20px;
        --font-md: 18px;
        --font-lg: 24px;
        --font-xl: 40px;
        --font-xxl: 50px;
        --font-2xl: 60px;
        --font-3xl: 80px;
        --font-4xl: 90px;
        --font-5xl: 100px;
        --font-6xl: 100px;
        --font-7xl: 100px;
        --font-8xl: 180px;
    }
}

@media (max-width: 1199.98px) {
    :root {
        --font-md: 18px;
        --font-xl: 35px;
        --font-xxl: 40px;
        --font-2xl: 50px;
        --font-3xl: 60px;
        --font-4xl: 70px;
        --font-5xl: 80px;
        --font-6xl: 110px;
        --font-7xl: 125px;
        --font-8xl: 120px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --font-md: 18px;
        --font-lg: 22px;
        --font-xl: 26px;
        --font-xxl: 35px;
        --font-2xl: 40px;
        --font-3xl: 50px;
        --font-4xl: 60px;
        --font-5xl: 70px;
        --font-6xl: 100px;
        --font-7xl: 120px;
        --font-8xl: 105px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --font-xs: 14px;
        --font-sm: 16px;
        --font-md: 18px;
        --font-lg: 20px;
        --font-xl: 26px;
        --font-xxl: 30px;
        --font-2xl: 35px;
        --font-3xl: 40px;
        --font-4xl: 50px;
        --font-5xl: 60px;
        --font-6xl: 70px;
        --font-7xl: 80px;
        --font-8xl: 80px;
    }
}

@media (max-width: 575.98px) {
    :root {
        --font-sm: 13px;
        --font-md: 14px;
        --font-lg: 18px;
        --font-xl: 19px;
        --font-xxl: 20px;
        --font-2xl: 22px;
        --font-3xl: 25px;
        --font-4xl: 30px;
        --font-5xl: 50px;
        --font-6xl: 60px;
        --font-7xl: 55px;
        --font-8xl: 60px;
    }
}

/*FONT WEIGHT START*/
.fw_500 {
    font-weight: 500 !important;
}

/*FONT-SIZES START*/
.font-xs {
    font-size: var(--font-xs) !important;
}

.font-sm {
    font-size: var(--font-sm) !important;
}

.font-md {
    font-size: var(--font-md) !important;
}

.font-lg {
    font-size: var(--font-lg) !important;
}

.font-xl {
    font-size: var(--font-xl) !important;
}

.font-xxl {
    font-size: var(--font-xxl) !important;
}

.font-2xl {
    font-size: var(--font-2xl) !important;
}

.font-3xl {
    font-size: var(--font-3xl) !important;
}

.font-4xl {
    font-size: var(--font-4xl) !important;
}

.font-5xl {
    font-size: var(--font-5xl) !important;
}

.font-6xl {
    font-size: var(--font-6xl) !important;
}

.font-7xl {
    font-size: var(--font-7xl) !important;
}

.font-8xl {
    font-size: var(--font-8xl) !important;
}

/*COLORS CLASSES START*/
.color_off_white {
    color: var(--off-white) !important;
}

.color_creame {
    color: var(--creame) !important;
}

.color_light_gray {
    color: var(--light-gray) !important;
}

.colort_gray {
    color: var(--gray) !important;
}

/*COMMON CLASSES START*/
.main_heading {
    font-size: var(--font-7xl);
    color: var(--white);
    font-weight: normal;
    font-family: 'Six Caps', sans-serif;
}

.main_para {
    font-size: var(--font-md);
    font-weight: normal;
    font-family: 'Space Grotesk', sans-serif;
}

.common_btn {
    font-size: var(--font-lg);
    padding: 16px 53px;
}

.common_btn:hover {
    background: linear-gradient(270deg, #D41568 0%, #FEC215 56.66%, #432D82 103.61%);
}

.opacity_08 {
    opacity: 0.8;
}

.z_index_1 {
    z-index: 1;
}

.z_index-1 {
    z-index: -1;
}

.z_index_0 {
    z-index: 0;
}

.z_index_10 {
    z-index: 10;
}

.line_height_45 {
    line-height: 45px;
}

.cursor_pointer {
    cursor: pointer;
}

.fashion_text {
    background: linear-gradient(131.13deg,
            #432d82 17.31%,
            #d41568 30.59%,
            #fec215 44.45%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    --text-fill-color: transparent;
    animation: text-color-gradient 10s ease infinite;
    background-size: 400% 400%;
}

.hero_animated_text {
    background: linear-gradient(94.05deg, #432D82 9.35%, #D41568 21.63%, #FEC215 35.27%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    --text-fill-color: transparent;
    text-transform: uppercase;
    top: 70%;
    right: -10vw;
    z-index: 0;
}

.wear_text {
    background: linear-gradient(94.05deg,
            #432d82 9.35%,
            #d41568 21.63%,
            #fec215 35.27%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    --text-fill-color: transparent;
    animation: text-color-gradient 10s ease infinite;
    background-size: 400% 400%;
}

.animated_text {
    color: white;
    background-image: -webkit-linear-gradient(112.95deg,
            #432d82 30.52%,
            #d41568 50.93%,
            #fec215 70.92%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-color-gradient 10s ease infinite;
    background-size: 400% 400%;
}

.roadmap_text_gradient {
    background: linear-gradient(270.26deg, #432D82 -40.03%, #D41568 38.39%, #FEC215 103.37%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: text-color-gradient 10s ease infinite;
    background-size: 400% 400%;
}

.meta_text {
    text-transform: capitalize;
    background: linear-gradient(91.44deg,
            #432d82 -0.89%,
            #d41568 45.6%,
            #fec215 86.62%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    --text-fill-color: transparent;
    transform: rotate(10.75deg);
    animation: text-color-gradient 10s ease infinite;
    background-size: 100% 100%;
}

@keyframes text-color-gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 50% 20%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/*=============================NAV CLASS HERE=======================*/
.nav_text {
    transform: rotate(-90deg) !important;
}

/*====================ROADMAP TEAM CSS START========================*/
.roadmap_dot {
    position: relative;
}

.roadmap_dot::after {
    position: absolute;
    content: "";
    display: block;
    background-color: var(--gray);
    width: 5px;
    height: 5px;
    right: -5%;
    top: 20px;
    border-radius: 50%;
    border: 2px solid var(--gray);
}

.roadmap_list::marker {
    font-size: 18px;
}

.roadmap_circle {
    background-color: var(--white);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 5.33333px solid #0D0D0C;
    right: -22%;
    top: 53%;
}

.roadmap_shadow_img {
    top: 40%;
    right: -10%;
}

.team_member_shadow_1 {
    right: -25%;
    top: -30%;
}

.shadow_img_1 {
    max-width: 800px;
}

.shadow_img_2 {
    max-width: 700px;
}

.team_member_shadow_2 {
    right: -10%;
    top: 0%;
}

.border_roadmap {
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
}

.border_left_roadmap {
    position: relative;
}

.border_left_roadmap::after {
    border-right: 1px solid var(--white);
    position: absolute;
    content: "";
    display: block;
    height: 112%;
    width: 2%;
    left: 100%;
    top: -50px;
}

.roadmap_line {
    top: -2%;
    left: 48%;
}

.team_member_img_1 {
    padding-left: 50px;
}

.team_member_spacing {
    padding-right: 24px;
}

/*=====================FOOTER CSS START======================*/
.social_icons {
    /* border: 1px solid var(--white) !important; */
    transition: all 0.3s ease-in-out;
    width: 69.33px;
    height: 69.33px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 450ms linear !important;
}

.social_icons::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    border: 1px solid white;
    transition: all 200ms linear !important;
}

.social_icons:hover::after {
    transform: scale(0.4);
    border: 1px solid transparent;
}

.social_icons svg {
    transition: all 0.3s ease-in-out;
}

.social_icons:hover svg {
    transform: scale(1.5);
}

/* ==========PRE-LOADER============ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 3000;
    background: black;
}

/* ============================ BACK TO TOP CSS START ============================ */
#scroll {
    position: fixed;
    right: 2%;
    bottom: 3%;
    cursor: pointer;
    width: 65px;
    height: 65px;
    overflow: hidden;
    display: none;
    border-radius: 50%;
    background-color: black;
    border: 1.6px solid white;
    -webkit-animation: up-down 2.5s ease-in-out infinite;
    animation: up-down 2.5s ease-in-out infinite;
    z-index: 10;
}

@-webkit-keyframes up-down {
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

#scroll span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: white;
}

#scroll:hover {
    -webkit-box-shadow: 0 0 17px rgba(0, 0, 0, 0.547);
}

#scroll:hover::after {
    height: 100%;
}

/* ---------------------------------HERO-SECTION-START---------------------------- */
.wear_text::after {
    content: "";
    width: 624px;
    height: 149px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 2%;
    background: linear-gradient(270deg, rgba(67, 45, 130, 0.5) 0%, rgba(212, 21, 104, 0.5) 56.66%, rgba(254, 194, 21, 0.5) 103.61%);
    filter: blur(75px);
    z-index: -1 !important;
}

.hero_circle_img {
    top: -28%;
}

.fashion_blur {
    position: relative;
    z-index: 1;
}

.fashion_blur::after {
    content: "";
    width: 333px;
    height: 185px;
    position: absolute;
    top: 0%;
    left: 0%;
    background: linear-gradient(270deg, rgba(67, 45, 130, 0.5) 0%, rgba(212, 21, 104, 0.5) 56.66%, rgba(254, 194, 21, 0.5) 103.61%);
    filter: blur(42px);
    z-index: -1 !important;
}

.max-w-hero {
    min-width: 30vw !important;
    min-height: 100vh;
}

.transform_rotate15 {
    transform: rotate(15deg);
}

.positioning-hero {
    position: absolute;
    top: 43px;
    left: -132px;
}

.secondstep_hero {
    transform: translateY(-80px);
}

.threestep_hero {
    transform: translateY(-100px);
}

.fourstep_hero {
    transform: translateY(-168px);
}

.hero_head p {
    line-height: 113%;
}

.mt_negative_120 {
    margin-top: -120px;
}

/*---------------------------- SLIDER-SECTION-CSS-START ---------------------*/
.slider_overlay::after {
    position: absolute;
    background-color: transparent;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
}

.max-h-slider {
    max-height: 521px !important;
}

.object-cover {
    object-fit: cover;
}

.magic-1 {
    width: 274px;
}

.magic-2 {
    width: 336px;
    transform: translateX(-40px);
}

.magic-3 {
    width: 426px;
    transform: translateX(-75px);
}

.magic-4 {
    width: 239px;
    transform: translateX(-100px);
}

.magic-5 {
    width: 426px;
    transform: translateX(-115px);
}

.magic-6 {
    width: 336px;
    transform: translateX(-150px);
}

.magic-7 {
    width: 274px;
    margin-left: -193px;
    margin-right: 18px;
}

.custom_vw_hero_img {
    width: 15vw;
}

.overflow_x_hidden {
    overflow-x: hidden;
}

/*---------------------- OUR-PURPOSE-CSS-START ----------------------*/
.max_696px {
    max-width: 696px !important;
    overflow: hidden;
}

.shoes_part1 {
    width: 192px;
    height: 240px;
}

.shoes_part2 {
    width: 120px;
    height: 120px;
}

.shoes_part3 {
    width: 100% !important;
    height: 480px;
}

.shoes_part4 {
    width: 192px;
    height: 240px;
}

.shoes_part5 {
    width: 120px;
    height: 120px;
}

.positioning_meta_nova {
    top: 22% !important;
    right: -10% !important;
}

.tokenomics {
    width: 100% !important;
}

.ourline {
    left: -4% !important;
    position: absolute !important;
    top: 54% !important;
}

/* =============OUR-MISSION-TEXT-BGBLUR=============== */
.bg_mission {
    position: relative;
    z-index: 1;
}

.bg_mission::after {
    content: "";
    width: 1068px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20%;
    background: linear-gradient(270deg,
            rgba(67, 45, 130, 0.5) 0%,
            rgba(212, 21, 104, 0.5) 56.66%,
            rgba(254, 194, 21, 0.5) 103.61%);
    filter: blur(125px);
    z-index: -1 !important;
}

/* ========OUR-MISSION-RIGHTSIDE-BLUR============== */
.blur_effect {
    position: relative;
    z-index: 1;
}

.blur_effect::after {
    content: "";
    width: 1004px;
    height: 760px;
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
    right: -20%;
    background: rgba(176, 234, 253, 0.15);
    filter: blur(180px);
    border-radius: 50%;
    z-index: -1 !important;
}

/* ========WEAR-TO-EARN-LEFTSIDE-BLUR-START============== */
.blur_effect_wear {
    position: relative;
    z-index: 1;
}

/*FOOTER BUTTON CSS HERE */

.blur_effect_wear::after {
    content: "";
    width: 1004px;
    height: 633px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -20%;
    background: rgba(176, 234, 253, 0.15);
    filter: blur(200px);
    border-radius: 50%;
    z-index: -1 !important;
}

.button_hover_effect.fast {
    --duration: .32s;
}

.button_hover_effect {
    --background: linear-gradient(270deg, #432D82 0%, #D41568 56.66%, #FEC215 103.61%);
    --text: #fff;
    --font-size: var(--font-lg);
    --duration: .44s;
    --move-hover: -4px;
    --font-shadow: var(--font-size);
    line-height: var(--font-size);
    outline: none;
    text-decoration: none;
    letter-spacing: 0.5px;
    background: var(--background);
    color: var(--text);
    transform: translateY(var(--y)) translateZ(0);
    transition: transform var(--duration) ease, box-shadow var(--duration) ease;
    font-weight: 600;
    border: 1px solid black;
    transition: all 0.3s ease-in-out;
}

.button_hover_effect div {
    display: flex;
    overflow: hidden;
    text-shadow: 0 var(--font-shadow) 0 var(--text);
}

.button_hover_effect div span {
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
    transition: transform var(--duration) ease;
    transform: translateY(var(--m)) translateZ(0);
}

.button_hover_effect div span:nth-child(1) {
    transition-delay: 0.05s;
}

.button_hover_effect div span:nth-child(2) {
    transition-delay: 0.1s;
}

.button_hover_effect div span:nth-child(3) {
    transition-delay: 0.15s;
}

.button_hover_effect div span:nth-child(4) {
    transition-delay: 0.2s;
}

.button_hover_effect div span:nth-child(5) {
    transition-delay: 0.25s;
}

.button_hover_effect div span:nth-child(6) {
    transition-delay: 0.3s;
}

.button_hover_effect div span:nth-child(7) {
    transition-delay: 0.35s;
}

.button_hover_effect div span:nth-child(8) {
    transition-delay: 0.4s;
}

.button_hover_effect:hover {
    --y: var(--move-hover);
    --shadow: var(--shadow-hover);
}

.button_hover_effect:hover span {
    --m: calc(var(--font-size) * -1);
}

/*=====================MEDIA QUERY START================*/
@media (min-width: 1600px) {
    .custom_container {
        max-width: 1600px !important;
    }

    .letterspacing {
        letter-spacing: -10px;
    }

    .wear_section {
        margin-top: 100px;
    }
}

@media (max-width:1599.98px) {
    .border_left_roadmap::after {
        height: 117%;
        top: -49px;
    }

    .roadmap_line {
        top: 6%;
        left: 47.4%;
    }

    .roadmap_line_img {
        max-height: 1025px;
    }

    .team_member_img_1 {
        padding-left: 0px;
    }

    .team_member_spacing {
        padding-right: 13px;
    }

    .bg_mission::after {
        content: "";
        width: 400px !important;
        height: 105px !important;
        left: 33% !important;
        filter: blur(40px) !important;
    }

    .positioning_meta_nova {
        top: 15% !important;
        right: -26% !important;
    }

    .blur_effect::after {
        content: "";
        width: 800px !important;

        height: 400px !important;
        filter: blur(150px) !important;
        top: 70% !important;
    }

    .vh_100 {
        min-height: 80vh !important;
    }

    .tokenomics {
        width: 80% !important;
    }

    .fashion_blur::after {
        content: "";
        width: 180px;
        height: 120px;
        position: absolute;
        top: 0%;
        left: 0%;
        border-radius: 50%;
        background: linear-gradient(270deg, rgba(67, 45, 130, 0.5) 0%, rgba(212, 21, 104, 0.5) 56.66%, rgba(254, 194, 21, 0.5) 103.61%);
        filter: blur(22px);
        z-index: -1 !important;
    }

    .hero_animated_text {
        top: 55%;
    }

    .wear_text::after {
        content: "";
        width: 293px;
        height: 123px;
        filter: blur(49px);
    }
}

@media (max-width: 1440px) {
    .positioning_meta_nova {
        top: 15% !important;
        right: -26% !important;
    }

    .ourline {
        max-width: 142px;
    }

    .learnmore_custom_w {
        width: 75% !important;
    }

    .line_height_45 {
        line-height: unset;
    }
}

@media (max-width:1399.98px) {
    .border_roadmap {
        border-top: unset;
        border-bottom: unset;
    }

    .border_left_roadmap::after {
        border-right: unset;
    }

    .roadmap_line {
        left: 49%;
        top: 0;
    }

    .border_left_roadmap::after {
        content: unset;
    }

    #scroll {
        width: 50px;
        height: 50px;
    }
}

@media (max-width:1199.98px) {
    .partnership_icons {
        width: 75% !important;
    }

    .roadmap_line {
        top: 0%;
        left: 48.2%;
    }

    .roadmap_line_img {
        max-height: 900px;
    }

    .shadow_img_1 {
        max-width: 500px;
    }

    .team_member_shadow_1 {
        top: -15%;
    }

    .shadow_img_2 {
        max-width: 500px;
    }

    .team_member_shadow_2 {
        top: -20%;
        right: -20%;
    }

    .roadmap_dot::after {
        top: 14px;
    }

    .bg_mission::after {
        content: "";
        width: 300px !important;
        height: 70px !important;
        left: 35% !important;
        filter: blur(40px) !important;
    }

    .positioning_meta_nova p {
        font-size: 26px !important;
    }

    .ourline {
        max-width: 95px;
    }

    .custom_vw_hero_img {
        width: 16vw;
    }
}

@media (max-width:991.98px) {
    .roadmap_line {
        left: 47.5%;
    }

    .shadow_img_1 {
        max-width: 500px;
    }

    .shadow_img_2 {
        max-width: 500px;
    }

    .team_member_shadow_2 {
        right: -25%;
        top: -20%;
    }

    .team_member_shadow_1 {
        right: -30%;
        top: -15%;
    }

    .hero_animated_text {
        z-index: 1;
        top: 50%;
    }

    .max-w-hero {
        min-height: calc(80vh - 120px);
    }

    .mt_negative_120 {
        margin-top: 0;
    }

    .custom_vw_hero_img {
        width: 32vw;
    }

    .blur_effect_wear::after {
        width: 750px;
    }

    .hero_circle_img {
        top: unset;
    }
}

@media (max-width:767.98px) {
    .roadmap_line {
        left: 47%;
    }

    .shadow_img_1 {
        max-width: 400px;
    }

    .team_member_shadow_1 {
        right: -40%;
        top: -14%;
    }

    .shadow_img_2 {
        max-width: 400px;
    }

    .team_member_shadow_2 {
        right: -35%;
        top: -14%;
    }

    .max_696px {
        max-width: 600px !important;
        overflow: hidden;
    }

    .ourline {
        left: -5% !important;
        position: absolute !important;
        top: 54% !important;
    }

    .ourline {
        max-width: 70px !important;
    }

    .positioning_meta_nova {
        top: 19% !important;
        right: -25% !important;
    }

    .positioning_meta_nova p {
        font-size: 18px !important;
    }

    .blur_effect_wear::after {
        display: none !important;
    }

    .blur_effect::after {
        display: none;
    }

    .bg_mission::after {
        content: "";
        width: 146px !important;
        height: 33px !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 35% !important;
        background: linear-gradient(270deg,
                rgba(67, 45, 130, 0.5) 0%,
                rgba(212, 21, 104, 0.5) 56.66%,
                rgba(254, 194, 21, 0.5) 103.61%);
        filter: blur(15px) !important;
        z-index: -1 !important;
    }

    .fashion_blur::after {
        content: "";
        width: 120px;
        height: 80px;
    }
}

@media (max-width:575.98px) {
    .roadmap_line {
        left: 46%;
        top: 4%;
    }

    .roadmap_line_img {
        max-height: 620px;
    }

    .roadmap_circle {
        right: -21%;
    }

    .roadmap_dot::after {
        top: 12px;
        right: -7%;
        width: 3px;
        height: 3px;
    }

    .roadmap_list::marker {
        font-size: 12px;
    }

    .nav_logo {
        width: 70%;
    }

    .shadow_img_1 {
        max-width: 300px;
    }

    .shadow_img_2 {
        max-width: 300px;
    }

    .team_member_shadow_1 {
        right: -10%;
    }

    .team_member_shadow_2 {
        right: -10%;
        top: 0;
    }

    .common_btn {
        padding: 10px 25px;
    }

    .social_icons svg {
        width: 25px;
        height: 20px;
        object-fit: cover;
        max-width: 55px;
        max-height: 55px;
    }

    #scroll {
        width: 40px;
        height: 40px;
    }

    .social_icons {
        width: 50px;
        height: 50px;
    }

    .fashion_blur::after {
        content: "";
        width: 95px;
        height: 69px;
    }

    .partnership_icons {
        width: 63% !important;
    }

    .tokenomics {
        width: 100% !important;
    }

    .max-h-slider {
        max-height: 250px !important;
    }

    .custom_vw_hero_img {
        width: 35vw;
    }

    .magic-1 {
        width: 174px;
        margin-right: 14px;
    }

    .magic-2 {
        width: 216px;
    }

    .magic-3 {
        width: 300px;
    }

    .magic-4 {
        width: 139px;
    }

    .magic-5 {
        width: 326px;
        height: 100%;
    }

    .magic-6 {
        width: 236px;
    }

    .magic-7 {
        width: 174px;
        margin-left: -173px;
    }

    .shoes_part1 {
        width: 100%;
        height: 100% !important;
    }

    .shoes_part2 {
        width: 100%;
        height: 100% !important;
    }

    .shoes_part3 {
        width: 100%;
        height: 100% !important;
    }

    .shoes_part4 {
        width: 100%;
        height: 100% !important;
    }

    .shoes_part5 {
        width: 100%;
        height: 100% !important;
    }

    .positioning_meta_nova p {
        font-size: 14px !important;
    }

    .ourline {
        max-width: 48px !important;
    }

    .learnmore_custom_w {
        width: 50% !important;
    }

    .wear_text::after {
        content: "";
        width: 200px;
        height: 40px;
        filter: blur(20px);
    }
}

@media (max-width:429.98px) {
    .roadmap_circle {
        right: -25%;
    }
}

@media (max-width:399.98px) {
    .roadmap_circle {
        right: -27%;
    }

    .roadmap_line_img {
        max-height: 680px;
    }
}