@font-face {
    font-family: "Times New Roman", Times, serif;
    src: url("../fonts/times.ttf") format("ttf");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "orbikular";
    src: url("../fonts/orbikular-font/OrbikularTRIAL-Regular-BF6711d4be7f929.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Lufga";
    src: url("../fonts/LufgaThin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lufga";
    src: url("../fonts/LufgaLight.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lufga";
    src: url("../fonts/LufgaRegular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lufga";
    src: url("../fonts/LufgaMedium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lufga";
    src: url("../fonts/LufgaSemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lufga";
    src: url("../fonts/LufgaBold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lufga";
    src: url("../fonts/LufgaExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lufga";
    src: url("../fonts/LufgaBlack.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --btnbg: #00000033;
    --theme_txt: #00295E;
    --pera_txt: #59687B;
    --text_secondary: #B6B8BD;
    --bg-blue: #1D2635;
    --dark_blue: #091221;
    --gray: #E9EDF4;
    --bg_secondary: #E9EDF4;
    --btn_bg: #438EF3;
    --bglight: #FBFBFC;
    --border_secondary: #DFE5EC
}

body {
    background-color: var(--white);
    color: #000;
    font-family: "Lufga";
}

html {
    scroll-behavior: smooth;
    /* Ye browser ko force karega smooth chalne ke liye */
}

body {
    height: auto !important;
    /* Height fix */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    margin: 0px;
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

button {
    border: none;
}

.bg_light {
    background-color: var(--bglight);
}

.bg_blue {
    background-color: var(--bg-blue) !important;
}

.bg_dark {
    background-color: var(--dark_blue);
}

.text_blue {
    color: var(--bg-blue);
}

.dark_blue {
    color: var(--dark_blue);
}

.text_mute {
    color: var(--pera_txt);
}

.text_secondary {
    color: var(--text_secondary);
}

.bg_secondary {
    background-color: var(--bg_secondary);
}

.theme_txt {
    color: var(--theme_txt);
}

.bg_theme {
    background-color: var(--theme_txt);
}

.border_light {
    border: 1px solid #C2CBD6;
}

html {
    overscroll-behavior-x: none;
    overscroll-behavior-y: none;
    scroll-behavior: smooth;
}

.btn_theme {
    background-color: var(--btn_bg);
    color: var(--white);
    padding: 14px 30px;
    height: 50px;
    min-width: 170px;
    width: max-content;
    font-weight: 500;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn_theme:focus-visible {
    border: none !important;
    outline: none !important;
}

.btn_borded {
    background-color: var(--white);
    border: 1px solid var(--pera_txt);
    color: var(--pera_txt);
}

.btn_borded:hover {
    color: var(--white);
}

.btn_theme span {
    transition: transform 0.3s ease;
    transform: translateX(10px);
}

.btn_theme i {
    opacity: 0;
    transform: translateX(-3px);
    transition: all 0.4s ease;
    font-size: 13px;
}

/* HOVER */
.btn_theme:hover {
    background-color: var(--theme_txt);
}

.btn_theme:hover span {
    transform: translateX(1px);
}

.btn_theme:hover i {
    opacity: 1;
    transform: translateX(0px);
}

/* Headings  */
.main_heading {
    font-weight: 400;
    font-size: 64px;
    text-align: center;
    color: var(--white);
    font-family: "orbikular", serif;
}

.sub_heading {
    color: var(--theme_txt);
    font-size: 64px;
    font-weight: 400;
    font-family: "orbikular", serif;
    word-break: break-word;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.main_title {
    font-weight: 400;
    font-size: 64px;
    text-align: center;
    color: var(--theme_txt);
    font-family: "orbikular", serif;
}

.sub_h3 {
    color: var(--dark_blue);
    font-size: 34px;
    font-weight: 400;
    letter-spacing: -0.68px;
}

.pera_txt {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: var(--pera_txt);

}

.text_48 {
    font-size: 48px;
}

.text_24 {
    font-size: 24px;
}

.text_32 {
    font-size: 32px;
}

.text_14 {
    font-size: 14px;
}

.text_20 {
    font-size: 20px;
}

.text_22 {
    font-size: 22px;
}

.text_18 {
    font-size: 18px;
}

.space_padd {
    padding: 100px 0px;
}

.text_94 {
    font-size: 94px;
}

.mb_180 {
    margin-bottom: 180px;
}

/* --------------- header css --------------- */
.zvd_nav {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 25px 24px;
    z-index: 900;
    background-color: #e9edf4ef;
}

.zvd_nav.scrolled {
    background-color: #e9edf4ef;
    backdrop-filter: blur(25px);
    transition: all 0.4s ease;

}

.hero_section {
    background-image: url("../img/home/herobg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 300px 0;
    display: block;
    margin: 12px;
    border-radius: 8px;
    position: relative;
}

.hero_section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00000066;
    width: 100%;
    height: 100%;
}

.hero_section p,
h1,
button,
a {
    z-index: 3;
    position: relative;
}

/* btn css */
.header_btn {
    background: var(--btnbg) !important;
    /* filter: blur(15px); */
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 14px;
    color: var(--white) !important;
    border: none;
    backdrop-filter: blur(7.5px);
    transition: all 0.4s ease;
    cursor: pointer;
}

.header_btn:hover {
    background-color: var(--theme_txt) !important;
    color: var(--white) !important;
}

.sub_dropdown li a {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark_blue);
    position: relative;
    display: block;
    transition: 0.5s;
    width: max-content;
}

.sub_dropdown li>a::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--btn_bg);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s
}

.sub_dropdown li a i.right_ae {
    transition: all 0.5s linear;
    opacity: 0;
    position: relative;
    left: -10px;
    font-size: 18px;

}

.sub_dropdown li:hover a i.right_ae {
    left: 8px;
    opacity: 1;

}

.sub_dropdown li:hover>a::after,
.sub_dropdown li>a.active::after {
    transform: scaleX(1);
    transform-origin: left
}

/* .header_menubtn {
    z-index: 999;
} */

.sub_dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 280px;
    padding: 15px;
    background-color: #ffffff;
    backdrop-filter: blur(25px);
    border-radius: 8px;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.3s ease;
    z-index: -1;
    margin-top: 15px;
    overflow: hidden;
}

.sub_dropdown.show {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
}

.zvd_badge {
    border-radius: 30px;
    background: var(--gray);
    padding: 8px 16px;
    color: var(--pera_txt);
    font-size: 12px;
}

.social_menu li a {
    font-size: 14px;
    text-transform: capitalize;
}

.social_menu i {
    font-size: 10px;
}

.soical_headerbtn {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding-right: 15px;

}

.soical_headerbtn span {
    position: relative;
    z-index: 2;
}

/* both arrows */
.soical_headerbtn i {
    position: absolute;
    right: 0;
    top: 3px;
    transition: transform 0.3s ease-in-out;
}

/* first arrow (visible initially) */
.soical_headerbtn .first {
    transform: translate(0, 0);
}

/* second arrow (hidden initially) */
.soical_headerbtn .second {
    transform: translate(-150%, 150%);
}

/* hover effect */
.soical_headerbtn:hover .first {
    transform: translate(150%, -150%);
}

.soical_headerbtn:hover .second {
    transform: translate(0, 0);
}



/* ---------------------- new header css --------------- */


.main_header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 30px 0;
}

.navheader {
    background-color: #f5eeff0d;
    backdrop-filter: blur(25px);
    box-shadow: 5px 5px 5px rgb(0 0 0 / 3%);
    /* padding: 20px; */
    border-radius: 20px;
    border: 1px solid #f5eeff26;
}

.main_nav li {
    padding: 0 25px;
}

.main_nav li>a {
    font-size: 16px;
    position: relative;
    display: block;
    transition: 0.5s;
    padding-bottom: 5px;
    color: var(--dark_blue) !important;
    font-weight: 500 !important;

}

.zvd_nav.scrolled .main_nav li>a {
    color: var(--theme_txt) !important;

}

.main_nav li a:hover {
    opacity: 1 !important;
    color: var(--theme_txt) !important;

}

.main_nav li>a::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--btn_bg);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s
}

.main_nav li:hover>a::after,
.main_nav li>a.active::after {
    transform: scaleX(1);
    transform-origin: left
}

/* ---------------- about css --------------- */

.about_video {
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--dark_blue);
}

/* ------------------- plateform css --------------- */

.plateform_title {
    font-size: 120px;
    font-family: "orbikular", serif;
}

.plateform_box {
    height: 500px;
}

.iphone_mockup {
    width: 450px;
}

.plateform_mockup {
    height: 800px;
}

.plateform_mockup2 {
    height: 450px;
}

.plateform_mockup::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 150px;
    background-image: linear-gradient(180deg, #e9edf417 0%, #E9EDF4 100%);
    filter: blur(5px);
    z-index: 0;
    transition: all 0.5s ease;
}

.icon_box {
    display: flex;
    width: 72px;
    height: 75px;
    padding: 4px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    aspect-ratio: 1/1;
    background-color: var(--dark_blue);
    border-radius: 8px;
}

.list_box {
    box-shadow: 0 0 20px 0 rgba(9, 18, 33, 0.60);
}

.platelist {
    border-radius: 64px;
    background: rgba(0, 0, 0, 0.20);
    padding: 14px 32px;
    font-size: 24px;
    backdrop-filter: blur(10px);
    text-transform: capitalize;
}

.list1 {
    position: absolute;
    top: 50%;
    left: 150px;
}

.list2 {
    position: absolute;
    top: 35%;
    right: 150px;
}

.list3 {
    position: absolute;
    top: 80%;
    right: 150px;
}

.hand_mockup {
    /* max-width: 90%; */
    width: 450px;
    right: 0px;
    position: absolute;
}

/* --------------- counter css ------------- */

.num_txt {
    color: var(--theme_txt);
    font-family: "orbikular", serif;
    font-size: 54px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -1.88px;
}

.tab_btn:hover {
    background-color: var(--theme_txt) !important;
    color: white !important;
}

/* --------------- verticle tab css -------------- */

.main_verticle .inner {
    position: relative;
    display: flex;
    margin: 0 -5px;
    gap: 0px;
}

.main_verticle .card {
    position: relative;
    flex-grow: 1;
    background: var(--events-image) no-repeat center / cover;
    height: 600px;
    border-radius: 8px;
    margin: 0 5px;
    transition: 0.5s;
    overflow: hidden;
}

.main_verticle .card:hover {
    flex-grow: 1.7;
    cursor: pointer;
}

.main_verticle .card .cardtext {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.63), transparent);
    padding: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.main_verticle .card .cardtext h5 {
    position: relative;
    font-size: 30px;
    margin-bottom: 5px;
    color: #fff;
}

.main_verticle .card .cardtext p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 0px;
}

/* ----------------- contact css -------------------- */

.input {
    width: 100%;
    height: 50px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
}

.footer_logo {
    max-width: 240px;
}

.footer_menu li a:hover {
    color: var(--btn_bg) !important;
}

/* .diamond_icon {
    width: 64px;
    height: 64px;
    border-radius: 8px;
} */

.swiper-slide .sliderbox {
    min-height: 285px;
}

.trading_box {
    min-height: 340px;
}

/* ------------------ slider css --------------- */
.trading_sec {
    background-color: var(--dark_blue);
}

.plateform_video {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.social_icon {
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #1D2635;
    border-radius: 8px;
    transition: all 0.4s linear;
}

.social_icon:hover {
    background-color: var(--btn_bg);
}

.word {
    display: inline-block !important;
    white-space: nowrap !important;
}

.char {
    display: inline !important;
}

.animated-text {
    overflow: visible;
    word-break: nowrap;
}

.magic-cursor {
    position: fixed;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    /* background: #09122167; */
    background: rgba(25, 25, 25, 0.4);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    z-index: 9999999999;
    backdrop-filter: blur(15px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

/* .cursor-text {
    font-size: 10px;
    color: white;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
} */

.cursor-text {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Space between icons and the word DRAG */
    font-size: 12px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.cursor-text i {
    font-size: 10px;
    /* Adjust icon size */
    display: flex;
    align-items: center;
}

/* hover */
.magic-cursor.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.4);
}

.scrollToTop {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    text-align: center;
    background-color: var(--theme_txt);
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    transition: all 0.5s linear;
    z-index: 9999;
    backdrop-filter: blur(15px);
}


.scrollToTop:hover {
    background-color: var(--btn_bg);
}

.contact_sec {
    /* padding: 120px 20px 40px; */
    padding: 120px 20px 120px;
    background-image: url("/assets/img/home/contact_bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    margin: 12px;
    position: relative;
    z-index: 3;
    height: 500px;
}

.contact_sec::before {
    position: absolute;
    content: '';
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.274);
    z-index: 0;
}

.animated-paragraph .line {
    display: inline-block !important;
    overflow: hidden;
    line-height: 1;
}

.country_select {
    width: 220px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.place-details-compact-container {
    display: none !important;
}

.video_popup {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.country_box {
    padding: 15px;
    background-color: #F5F5F7;
    backdrop-filter: blur(2px);
    border-radius: 8px;
    height: 185px;
}

.country_box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #eee;
    transition: 0.3s;
    height: 100%;
}

.country_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.country_box h5 {
    font-weight: 600;
    font-size: 18px;
}

.contact_row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}


.contact_row svg {
    min-width: 15px;
    min-height: 15px;
    margin-top: 2px;
}

.contact_row a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

.contact_row a:hover {
    color: var(--btn_bg);
}

@media (max-width: 576px) {
    .country_box {
        padding: 16px;
    }

    .country_box h5 {
        font-size: 16px;
    }

    .contact_row {
        gap: 8px;
    }
}


.sticky-section {
    will-change: transform;
}

/* ----------------------- about page --------------------- */
.teamimg {
    width: 100%;
    height: 400px;
    object-position: center;
    filter: grayscale(1);
    transition: all 0.4s linear;
    aspect-ratio: 1 / 1;
}

.teamimg:hover {
    filter: grayscale(0);
}

.herospace {
    padding: 150px 0px 100px !important;
}

.abouthero_video {
    height: 600px;
}

.rounded_search {
    border-radius: 16px;
    border: 1px solid var(--text_secondary);
    padding: 14px;
    align-items: center;
    max-width: 530px;
    width: 100%;
    padding-left: 45px;
}

.rounded_search:focus,
.rounded_search:focus-visible {
    border: 1px solid var(--text_secondary);
}

.rounded_search_icon {
    position: absolute;
    left: 26px;
    top: 10px;
    transform: translate(-50%, -50%);
}

.zvd_faq .accordion-item {
    border-bottom: 1px solid var(--border_secondary) !important;
}

.zvd_faq .accordion-button {
    background-color: transparent;
    padding-inline: 0px !important;
    font-size: 18px;
}

.zvd_faq .accordion-button:focus,
.zvd_faq button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

.zvd_faq .accordion-button::after {
    background-image: url("data: image/svg+xml, %3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226%22%20height%3D%2211%22%20viewBox%3D%220%200%2011%206%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M0%206L10.6667%206L5.33331%20-2.33126e-07L0%206Z%22%20fill%3D%22%23091221%22%2F%3E%3C%2Fsvg%3E");
    background-size: 50%;
    transform: rotatex(180deg) !important;

}

.zvd_faq .accordion-button:not(.collapsed)::after {
    transform: rotatex(360deg) !important;
}

.accordion-button:not(.collapsed) {
    box-shadow: none !important;
}

.pt-100 {
    padding-top: 100px !important;
}


/* CARD */
.contact-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
}

.contact-item {
    margin-bottom: 12px;
}

.contact-item span {
    display: block;
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--btn_bg);
}

.contact-item p {
    margin: 0;
    color: #ccc;
    font-size: 14px;
}

.select_with_flag {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.flag_absolute {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    pointer-events: none;
}

.select_padding {
    padding-left: 45px !important;
}


.loder_text {
    z-index: 99;
}

.textarea_input {
    height: 90%;
}

.zvd_loader {
    background: var(--bg_secondary);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 9999;
    overflow: hidden;
}

.loder_img {
    opacity: 0;
    position: fixed !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 999;
}

.counter_numbers {
    z-index: 999999;
    position: relative;
}

.h_100vh {
    height: 100vh;
}

.blog_hero {
    padding-top: 0px !important;
}


.phone-wrapper {
    width: 100%;
    position: relative;
    border-radius: 8px;
}

.react-international-phone {
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.react-international-phone-input-container .react-international-phone-input {
    border-radius: 8px;
}

.react-international-phone-country-selector-button {
    border: none !important;
    background: transparent !important;
    padding: 0 10px !important;
    display: flex;
    align-items: center;
}

.react-international-phone-country-selector-button span {
    margin-left: 6px;
    font-size: 16px !important;
}

.react-international-phone-input {
    border: none !important;
    outline: none !important;
    width: 100% !important;
    padding-left: 10px !important;
    font-size: 16px !important;
}

.react-international-phone:focus-within {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* .react-international-phone-country-selector {
    display: none;
} */

/* ---------------- category section css ---------------- */

.category_sec {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.svg_icon {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    border: 1px solid var(--bg-blue);
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky_round {
    position: relative;
    /* top: 100px; */
    padding-right: 30px;
}


.progess_line {
    position: absolute;
    top: 0px;
    right: 15px;
    width: 3px;
    height: 100%;
    background-color: var(--dark_blue);
    z-index: 0;
    border-radius: 20px;
}

.progess_inner {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 2;
    background-color: var(--btn_bg);
    transition: height 0.3s ease;
}

.svg_icon.active {
    background-color: var(--btn_bg);
    color: #fff;
    border-color: var(--btn_bg);
}

.per_num {
    position: absolute;
    bottom: -40px;
    right: 20px;
}

.comming_txt {
    font-size: 150px !important;
    font-weight: 800;

}

.diamond_icon {
    width: 120px !important;
    height: 120px !important;
}

.ChapterTransformation-videoTransform1 canvas {
    position: absolute;
    left: 11.92203083%;
    top: 0.8612874%;
    width: 76.15593835%;
    height: 109.2475068%;
}

.ChapterTransformation-videoTransform2 canvas {
    position: absolute;
    left: 29.96373527%;
    top: 26.24660018%;
    width: 42.24841342%;
    height: 51.58658205%;
}

.ChapterTransformation-videoTransform3 canvas {
    position: absolute;
    left: -8.11423391%;
    top: -2.58386219%;
    width: 120.94288305%;
    height: 132.81958296%;
}

.ChapterTransformation-videoTransform4 canvas {
    position: absolute;
    left: -37.03535811%;
    top: -37.03535811%;
    width: 174.07071623%;
    height: 174.07071623%;
}

.ChapterTransformation-videoTransform5 canvas {
    position: absolute;
    left: -19.80961015%;
    top: 12.01269266%;
    width: 117.86038078%;
    height: 104.80507706%;
}

.ChapterTransformation-staticDiamond img {
    position: absolute;
    left: -37.03535811%;
    top: -37.03535811%;
    width: 174.07071623%;
    height: 174.07071623%;
}

.ChapterTransformation-staticCrystal {
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
    z-index: 2;
    will-change: transform;
}

.ChapterTransformation-staticCrystal img {
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: opacity;
}

.ChapterTransformation-transformInfo {
    position: absolute;
    top: 50%;
    margin-top: -0.12375rem;
    height: 0.246875rem;
    left: 0.02rem;
    right: 0.02rem;
}

.ChapterTransformation-transformInfoTexts {
    position: absolute;
    top: 0.005rem;
    left: 0;
    width: 0.24rem;
}

.ChapterTransformation-transformInfoTextsItem {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.025rem;
    line-height: 0.03rem;
}

.ChapterTransformation-transformInfoTextsItem h3 {
    font-weight: 200;
    font-feature-settings: "case" on;
    color: #fff;
}

.scoll_imgse_staticCrystal {
    position: relative;
    top: 50%;
    /* left: 50%; */
    pointer-events: none;
    z-index: 2;
    will-change: transform;
}


.scoll_imgse {
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header_logo {
    width: 200px;
}

.app-buttons img {
    width: 160px;
}

.lazy-load-image-background:has( > .related_blog) {
    width: 100%;
}

.blog-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;        /* Specifies the number of lines to show */
  -webkit-box-orient: vertical; /* Sets the box's orientation to vertical */
  overflow: hidden;             /* Required to hide the extra text */
}