* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scrollbar-width: none;
    -webkit-tap-highlight-color: transparent;
}

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

img,
picture {
    display: block;
    width: 100%;
}

object,
svg {
    width: 100%;
    display: block;
    pointer-events: none;
}

body {
    width: 100%;
    overflow: hidden scroll;
    font-family: "Inter";
}

.main_container {
    position: relative;
}

.menu_btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 4px;
    background-color: #0c113a;
    -webkit-box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.20);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.20);
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    outline: none;
    cursor: pointer;
}

.menu_btn:hover {
    color: #fff !important;
    background-color: #5376a3 !important;
}

.menu_btn:hover path {
    stroke: #fff !important;
}

#menuIcon,
#closeIcon {
    width: 16px;
    aspect-ratio: 1;
}

/* ---------------------------------------- */
.brand_logo {
    position: absolute;
    left: 80px;
    top: 0;
    z-index: 1;
    display: inline-block;
    width: 64px;
}

.nav_bar {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1;
    width: auto;
    height: auto;
}

.navbar_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.navbar_list::before {
    content: "";
    height: calc(100% - 14px);
    margin: auto;
    border-right: 2px solid #0c113a;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 6px;
    bottom: 0;
}

.navbar_list_item {
    color: #000;
    gap: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    text-decoration: none;
    text-transform: capitalize;
}

.navbar_list_item h5 {
    color: #0c113a;
    font-family: "Inter";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar_list_item .round_ball {
    width: 14px;
    padding: 3px;
    aspect-ratio: 1;
}

.navbar_list_item.active .round_ball {
    border: 1px solid #0c113a;
    padding: 2px;
    -webkit-transition: all 0.2 ease;
    -o-transition: all 0.2 ease;
    transition: all 0.2 ease;
    border-radius: 50%;
}

.round_ball_sub {
    display: none;
}

.navbar_list_item:has(.round_ball_sub).active {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    margin-bottom: -10px;
}

.navbar_list_item:has(.round_ball_sub).active svg {
    display: none;
}

.navbar_list_item:has(.round_ball_sub).active .round_ball {
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 0px;
}

.navbar_list_item:has(.round_ball_sub).active .round_ball_sub {
    display: block;
    margin: 2px;
    width: 8px;
    aspect-ratio: 1;
    outline: 1px solid transparent;
    border-radius: 25px;
    background-color: #0c113a;
}

.navbar_list_item:has(.round_ball_sub).active .round_ball_sub.active {
    width: 12px;
    margin: 0px;
    position: relative;
    outline: 1px solid #0c113a;
    background-color: transparent;
}

.navbar_list_item:has(.round_ball_sub).active .round_ball_sub.active::before {
    content: "";
    display: block;
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #0c113a;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.navbar_list_item:has(.round_ball_sub).active .round_ball_sub.active {
    border: 1px solid ;
} 

/* ------------------------------------------------ */
/*--------------- Common Components  -------------- */

.landing_card_secondary_content_wrap,
.landing_card_primary_content_wrap {
    width: 100%;
    height: 100vh;
    position: relative;
}

@media screen and (max-width: 767px) {
    .menu_btn {
        right: 16px;
        bottom: 16px;
        font-size: 12px;
        padding: 6px;
        gap: 6px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    #menuIcon,
    #closeIcon {
        width: 12px;
    }

    .nav_bar {
        display: none;
    }

    .brand_logo {
        position: relative;
        width: 50px;
        left: 0px;
    }

    /* ----------------------------------------------- */

    .landing_card_secondary_content_wrap,
    .landing_card_primary_content_wrap {
        width: 100%;
        height: 100%;
        position: unset;
    }
}
.explore_btn:hover {
    color: #fff !important;
    background-color: #5376a3 !important;
}

.explore_btn:hover path {
    stroke: #fff !important;
}