* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: "Stelvio Grotesk";
    src: url('../fonts/Stelvio-Grotesk-light.TTF') format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: "Stelvio Grotesk";
    src: url('../fonts/Stelvio-Grotesk-regular.TTF') format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Stelvio Grotesk";
    src: url('../fonts/Stelvio-Grotesk-medium.TTF') format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "Stelvio Grotesk";
    src: url('../fonts/Stelvio-Grotesk-bold.TTF') format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: "Stelvio Grotesk";
    src: url('../fonts/Stelvio-Grotesk-extra-bold.TTF') format("truetype");
    font-weight: 700;
}

@font-face {
    font-family: "Stelvio Grotesk";
    src: url('../fonts/Stelvio-Grotesk-heavy.TTF') format("truetype");
    font-weight: 800;
}

@font-face {
    font-family: "RotontoTrial";
    src: url('../fonts/ROTONTOTRIAL-LIGHT.OTF') format("opentype");
    font-weight: 300;
}

@font-face {
    font-family: "RotontoTrial";
    src: url('../fonts/ROTONTOTRIAL-REGULAR.OTF') format("opentype");
    font-weight: 400;
}

@font-face {
    font-family: "RotontoTrial";
    src: url('../fonts/ROTONTOTRIAL-MEDIUM.OTF') format("opentype");
    font-weight: 500;
}

@font-face {
    font-family: "RotontoTrial";
    src: url('../fonts/ROTONTOTRIAL-SEMIBOLD.OTF') format("opentype");
    font-weight: 600;
}

@font-face {
    font-family: "RotontoTrial";
    src: url('../fonts/ROTONTOTRIAL-BOLD.OTF') format("opentype");
    font-weight: 700;
}

@font-face {
    font-family: "RotontoTrial";
    src: url('../fonts/ROTONTOTRIAL-HEAVY.OTF') format("opentype");
    font-weight: 800;
}

@font-face {
    font-family: "RotontoTrial";
    src: url('../fonts/ROTONTOTRIAL-BLACK.OTF') format("opentype");
    font-weight: 900;
}

/* variables */

:root {
    --primary-font: "Stelvio Grotesk";
    --secondery-font: "RotontoTrial";

    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-heavy: 800;
    --font-black: 900;

    --dark-black: #141414;
    --white-dull: #FFFFFF99;
    --white-light: #FFFFFF33;
    --white: #ffffff;
    --dark-dark-grey: #232323;
    --dark-grey: #212121;
    --grey: #303030;
    --blue: #1F97F4;
    --blue-sky-light: #C0E2FC;
    --blue-medium: #2732A3;
    --blue-dark: #03033E;
    --yellow: #F4BF33;
    --red: #D53636;
    --blue-dark-dark: #03033e1a;
    --green: #00A186;
    --dark-green: #00a1861a;
    --blue-gray: #03033e80;
    --black-dark: #03033e33;
}

body {
    font-family: var(--primary-font);
    width: 100%;
    background-color: var(--dark-black);
    margin: 0 auto !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover,
a:focus {
    color: inherit;
}

ul {
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
}

.round_img {
    background-image: url('../image/main_bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    width: 100%;
}

.navbar {
    padding: 30px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(30px);
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.nav-link {
    padding: 0;
    font-family: var(--secondery-font);
    font-size: 18px;
    font-weight: var(--font-regular);
    letter-spacing: 0.54px;
    color: var(--white);
}

.nav-link.active {
    color: var(--blue);
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0;
        padding-left: 0;
    }
}

.download_app {
    padding: 15px 25px !important;
    background-color: var(--blue);
    border-radius: 40px;
    color: var(--white);
}

.section_style {
    width: 100%;
    display: inline-block;
}

.hero_section {
    padding: 240px 80px 0;
}

.hero_title {
    font-family: var(--primary-font);
    font-size: 85px;
    font-weight: var(--font-medium);
    line-height: 85px;
    letter-spacing: -0.85px;
    color: var(--white);
}

.hero_p {
    font-family: var(--secondery-font);
    font-size: 18px;
    font-weight: var(--font-regular);
    line-height: 24px;
    letter-spacing: 0.54px;
    color: var(--white-dull);
    margin-bottom: 35px;
}

.fone_network {
    background-image: url('../image/fone_network.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
}

.video_style {
    margin: 0 auto;
    mix-blend-mode: screen;
    height: 950px;
    width: 950px;
}

.download_link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    width: 315px;
    overflow: hidden;
    margin: 0 auto;
}

.download_btn {
    padding: 22px 35px;
    border-radius: 40px;
    background-color: var(--white);
    font-family: var(--secondery-font);
    font-size: 18px;
    font-weight: var(--font-regular);
    letter-spacing: 0.54px;
    color: var(--grey);
    display: inline-block;
    white-space: nowrap;
    transition: all 0.3s ease-in;
}

.store_btn {
    padding: 12px 25px;
}

.download_icon {
    padding: 23px 25px;
    border-radius: 40px;
}

.download_blue_icon {
    background-color: var(--white);
    width: auto;
    height: auto;
    padding: 23px 25px;
    transition: all 0.3s ease-in;
}

.download_link:hover .download_btn {
    background-color: var(--blue);
    color: var(--white);
    transition: all 0.3s ease-in;
}

.download_link:hover .download_blue_icon {
    background-color: var(--blue);
    transition: all 0.3s ease-in;
}

.download_link:hover .download_blue_icon svg path,
.download_link:hover .download_blue_icon svg circle {
    stroke: var(--white);
    transition: all 0.3s ease-in;
}

.title_span {
    font-family: var(--secondery-font);
    font-size: 18px;
    font-weight: var(--font-regular);
    line-height: 24px;
    letter-spacing: 0.54px;
    color: var(--blue);
}

.title_h2 {
    margin: 40px 0 80px;
    font-size: 85px;
    font-weight: var(--font-medium);
    line-height: 85px;
    letter-spacing: -0.85px;
    color: var(--white-dull);
}

.fone_card {
    background-color: var(--dark-grey);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
}

.fone_card::after {
    content: '';
    position: absolute;
    left: 0;
    top: -150%;
    width: 729px;
    height: 729px;
    background-color: var(--blue-dark);
    border-radius: 729px;
    filter: blur(127px);
    z-index: 1;
}

.fone_card::before {
    content: '';
    position: absolute;
    bottom: -200%;
    left: -20%;
    width: 729px;
    height: 729px;
    background-color: var(--blue-medium);
    border-radius: 729px;
    filter: blur(127px);
    z-index: 1;
}

.fone_card img {
    mix-blend-mode: luminosity;
    transition: mix-blend-mode 0.5s ease-in;
    z-index: 2;
}

.fone_card:hover img {
    mix-blend-mode: normal;
    transition: mix-blend-mode 0.5s ease-in;
}

.fone_card:hover::after {
    top: -50%;
    z-index: 1;
}

.fone_card:hover::before {
    bottom: -50%;
    z-index: 1;
}

.fonecard_detail {
    padding: 50px;
    z-index: 2;
}

.fonecard_detail h3 {
    font-size: 50px;
    font-weight: var(--font-medium);
    line-height: 50px;
    letter-spacing: -0.5px;
    color: var(--white);
    margin-bottom: 10px;
}

.fonecard_detail p {
    font-size: 21px;
    font-weight: var(--font-regular);
    line-height: 22px;
    color: var(--white-dull);
}

.decentralized_section {
    padding: 120px 0;
}

.decentralized_h2 {
    font-size: 65px;
    font-weight: var(--font-medium);
    line-height: 65px;
    letter-spacing: -0.65px;
    color: var(--white);
    text-transform: capitalize;
    margin-bottom: 30px;
}

.decentralized_p {
    font-size: 21px;
    font-weight: var(--font-medium);
    line-height: 22px;
    color: var(--white-dull);
}

.depin_img {
    background-image: url('../image/depin.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
    width: 100%;
    height: 600px;
    position: relative;
    margin-top: 100px;
    margin-bottom: 40px;
    padding: 50px;
}

.depin_mobile {
    position: absolute;
    top: -28%;
    right: 3%;
    z-index: 1;
    width: 45%;
}

.depin_p {
    font-size: 21px;
    font-weight: var(--font-medium);
    line-height: 21px;
    color: var(--white);
}

.airdrop_card {
    padding: 50px 70px;
    border-radius: 25px;
    background-color: var(--dark-grey);
    border: 2px solid var(--dark-dark-grey);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.airdrop_p {
    font-size: 30px;
    font-weight: var(--font-regular);
    line-height: 30px;
    color: var(--white);
    margin-top: 32px;
}

.app_traction_section {
    padding-bottom: 50px;
}

.app_traction_height {
    height: 440px;
}

.app_col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.app_traction_card {
    padding: 25px 25px 10px 25px;
    border-radius: 20px;
    margin-bottom: 3px;
}

.app_traction_p {
    font-size: 20px;
    font-weight: var(--font-regular);
    line-height: 20px;
    color: var(--white-dull);
}

.app_traction_title {
    font-size: 35px;
    font-weight: var(--font-medium);
    letter-spacing: -0.35px;
    color: var(--white);
    margin-top: 5px;
}

.app_traction_number {
    font-size: 85px;
    font-weight: var(--font-medium);
    line-height: 65px;
    letter-spacing: -0.85px;
    color: var(--white);
}

.card_opacity {
    opacity: 0.8;
}

.card_light_opacity {
    opacity: 0.75;
}

.round_blur {
    position: relative;
}

.round_blur::after {
    content: '';
    position: absolute;
    top: 30%;
    left: -20%;
    width: 729px;
    height: 729px;
    border-radius: 729px;
    background: var(--blue-dark);
    filter: blur(110px);
    z-index: -1;
}

.round_blur::before {
    content: '';
    position: absolute;
    top: 34%;
    right: -20%;
    width: 729px;
    height: 729px;
    border-radius: 729px;
    background: var(--blue-dark);
    filter: blur(110px);
    z-index: -1;
}

.business_model_img {
    background-image: url('../image/business_model_bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 74px 0 40px;
}

.fone_margin {
    margin-top: 220px;
}

.blockchain_padding {
    padding-bottom: 60px;
}

.blockchain_structure {
    background-image: url('../image/blockchain_structure.svg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 25px;
    overflow: hidden;
    border-radius: 30px;
}

.blockchain_detail {
    padding: 25px;
    border-radius: 20px;
    background-color: var(--dark-black);
    width: 700px;
}

.blockchain_detail_p {
    font-size: 20px;
    line-height: 20px;
    font-weight: var(--font-regular);
    color: var(--white-dull);
}

.blockchain_border {
    border-bottom: 1px solid var(--grey);
}

.documents_section {
    padding: 60px 0;
}

.document_title {
    font-size: 50px;
    font-weight: var(--font-medium);
    line-height: 50px;
    letter-spacing: -0.5px;
    color: var(--white);
}

.document_detail {
    padding: 30px 30px 20px 30px;
    border-radius: 20px;
    background-color: var(--dark-grey);
    position: relative;
    transition: all 0.3s ease-in;
}

.document_detail::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 30px;
    width: 36px;
    height: 4px;
    background-color: var(--grey);
    border-radius: 20px;
}

.document_detail_title {
    font-size: 30px;
    line-height: 30px;
    font-weight: var(--font-medium);
    letter-spacing: -0.3px;
    color: var(--white);
}

.document_detail:hover {
    background-color: var(--blue-medium);
}

.document_detail:hover::after {
    background-color: var(--blue-sky-light);
}

.document_detail:hover .document_detail_title {
    color: var(--blue-sky-light);
}

.roadmap_card {
    padding: 30px;
    border-radius: 20px;
    background-color: var(--dark-grey);
    min-width: 323px;
    height: 285px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease-in;
}

.roadmap_card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 30px;
    width: 36px;
    height: 4px;
    background-color: var(--grey);
    border-radius: 20px;
}

.roadmap_title {
    font-size: 30px;
    font-weight: var(--font-regular);
    line-height: 30px;
    color: var(--white-dull);
}

.roadmap_content {
    font-size: 20px;
    line-height: 25px;
    font-weight: var(--font-regular);
    color: var(--white-dull);
    margin: 15px 0;
}

.border_roadmap {
    background-color: var(--white);
    width: 18px;
    height: 1px;
    opacity: 0.1;
}

.roadmap_card:hover {
    background-color: var(--grey);
}

.roadmap_card:hover::after {
    background-color: var(--white);
}

.roadmap_card.active {
    background-color: var(--blue-medium);
}

.roadmap_card.active .roadmap_title {
    color: var(--blue-sky-light);
}

.roadmap_card.active .roadmap_content {
    color: var(--blue-sky-light);
}

.roadmap_card::after.active {
    color: var(--blue-sky-light);
}

.contact_card {
    background-image: url('../image/contact_bg.svg');
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact_card_p {
    font-size: 21px;
    font-weight: var(--font-medium);
    line-height: 22px;
    color: var(--white-dull);
}

.form-control {
    padding: 25px 25px 20px 25px;
    border-radius: 57px;
    border: 1px solid var(--white-light);
    background-color: transparent;
    color: var(--white-dull);
    font-size: 20px;
    font-weight: var(--font-regular);
    line-height: 20px;
}

.form-control::placeholder {
    color: var(--white-dull);
}

textarea.form-control {
    min-height: 150px;
    border-radius: 27px;
    resize: none;
}

.form-control:focus {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white-dull);
    box-shadow: none;
}

.submit_btn {
    padding: 25px 55px;
    background-color: var(--white);
    border-radius: 40px;
    font-family: var(--secondery-font);
    font-size: 18px;
    font-weight: var(--font-regular);
    letter-spacing: 0.54px;
    color: var(--grey);
}

.contact_row {
    position: relative;
    z-index: 2;
}

.contact_card_video1 {
    position: absolute;
    bottom: -198%;
    left: -12%;
    transform: rotate(-45deg) translate(-50%, 0);
    mix-blend-mode: screen;
    z-index: 1;
}

.contact_card_video2 {
    position: absolute;
    bottom: -320%;
    left: -16%;
    transform: rotate(15deg);
    mix-blend-mode: screen;
    z-index: 1;
}

.footer_section {
    background-image: url('../image/footer_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    padding: 320px 0 100px;
}

.white_bg {
    background-image: url('../image/white_bg.png');
}

.footer_fone {
    text-align: center;
    filter: blur(10px);
}

.footer_border {
    height: 1px;
    width: 100%;
    background-color: var(--blue-sky-light);
    margin: 40px 0;
    opacity: 0.2;
}

.footer_content {
    font-size: 20px;
    line-height: 20px;
    font-weight: var(--font-regular);
    color: var(--blue-sky-light);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.team_card {
    padding: 30px;
    border-radius: 35px;
    border: 2px solid var(--dark-grey);
    height: 100%;
}

.team_deail {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1.5px solid #FFFFFF99;
}

.team_name {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -0.4px;
    color: #ffffff;
}

.validations_text {
    background-color: #ffffff;
    padding: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #000000;
    position: absolute;
    border-radius: 4px;
    bottom: -66%;
    left: 24%;
    transform: translate(-50%, 0%);
    z-index: 1;
}

.validations_text::after {
    content: "";
    position: absolute;
    left: 8px;
    top: -5px;
    border-right: 5px solid #e91e6300;
    border-bottom: 5px solid #e91e6300;
    border-top: 5px solid #ffffff;
    border-left: 5px solid #ffffff;
    transform: rotate(45deg);
}

.textarea_validation {
    bottom: -24%;
    left: 14%;
}

.whitepapar_favicon {
    width: 10%;
    margin-bottom: 30px;
}

.whitepaper_section h2 {
    font-size: 50px;
    font-weight: var(--font-medium);
    line-height: 50px;
    color: var(--white);
    margin: 16px 0;
}

.whitepaper_section h3 {
    font-size: 30px;
    font-weight: var(--font-regular);
    color: var(--white);
    line-height: 30px;
    margin: 12px 0;
}

.whitepaper_section p {
    font-size: 22px;
    font-weight: var(--font-regular);
    color: var(--white-dull);
    line-height: 30px;
    margin-bottom: 16px;
}

.whitepaper_section p span {
    display: block;
}

.whitepaper_section pre {
    font-size: 22px;
    font-weight: var(--font-regular);
    color: var(--white-dull);
    line-height: 30px;
    margin-bottom: 16px;
}

.explorer_section {
    background-image: url('../image/explorer_bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 187px 0 140px;
}

.explorer_title {
    color: var(--white);
    font-size: 32px;
    font-weight: var(--font-bold);
    line-height: 32px;
    letter-spacing: -0.32px;
}

.explorer_select {
    border-radius: 50px;
    border: 1px solid var(--blue);
    background: var(--white);
    padding: 5px 5px 5px 15px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 20px 0;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.explorer_select .form-select {
    border-radius: 57px;
    background-color: var(--blue-medium);
    padding: 14px 25px 7px;
    color: var(--blue-sky-light);
    font-size: 20px;
    font-weight: var(--font-regular);
    line-height: 25px;
    text-transform: capitalize;
    width: 255px;
    background-image: url('../image/arrow.svg');
    background-position: right 18px center;
    border: 0;
    flex: 0 0 auto;
}

.explorer_select .form-select:focus {
    box-shadow: 0 0 0 0 transparent;
}

.form_search {
    padding: 5px 0 0px;
    border: 0;
    color: var(--blue-dark);
    border-radius: 0;
    width: 100%;
}

.form_search::placeholder {
    color: var(--blue-dark);
}

.form_search:focus {
    color: var(--blue-dark);
    border: 0;
}

.search_btn {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
}

.search_btn:focus {
    box-shadow: unset;
}

.explorer_pera {
    color: var(--white-dull);
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0;
}

/* .explorer_footer {
    position: absolute;
    bottom: 43px;
    left: 50%;
    transform: translate(-50%, 0);
}

.explorer_footer p {
    font-size: 20px;
    font-weight: var(--font-regular);
    line-height: 25px;
    color: var(--blue-sky-light);
} */

.explorer_video2 {
    position: absolute;
    right: 0%;
    bottom: -64%;
    transform: translate(-50%, 0);
    width: 40%;
    transform: rotate(-10.303deg);
    mix-blend-mode: screen;
}

.form-select option {
    background-color: var(--dark-grey);
    border-radius: 10px;
}

.explorer_bg {
    background-color: #F2F9FF;
}

.wallet_services {
    margin-top: -80px;
    position: relative;
}

.services_card {
    border-radius: 15px;
    border: 1px solid var(--blue-dark-dark);
    background: var(--white);
    padding: 25px 25px 15px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services_card span {
    font-size: 18px;
    font-weight: var(--font-semibold);
    color: var(--blue-dark);
}

.services_card p {
    color: var(--blue-dark) !important;
    font-weight: var(--font-medium);
}

.services_btn a span {
    color: var(--blue-medium);
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    text-transform: capitalize;
    padding-right: 15px;
}

.explorer_history {
    margin-top: 20px;
    display: block;
}

.price_card {
    height: 145px;
    gap: 0;
    justify-content: space-between;
    padding: 25px 25px 12px;
}

.price_content span {
    color: var(--blue-dark);
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    opacity: 0.6;
    display: inline-block;
}

.price_content h3 {
    color: var(--blue-dark);
    text-overflow: ellipsis;
    font-size: 32px;
    font-weight: var(--font-medium);
    line-height: 32px;
    letter-spacing: -0.32px;
}

.blocks_card {
    border-radius: 15px;
    border: 1px solid var(--blue-dark-dark);
    background: var(--white);
}

.blocks_card .card_header {
    padding: 15px;
    border-bottom: 1px solid var(--blue-dark-dark);
}

.blocks_card .card_header h3 {
    color: var(--blue-dark);
    font-size: 20px;
    font-weight: var(--font-medium);
    line-height: 20px;
    letter-spacing: -0.2px;
}

.blocks_card .card_body {
    padding: 0px 15px;
}

.box {
    border-radius: 5px;
    border: 1px solid var(--blue-dark-dark);
    background: var(--blue-dark-dark);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.latest_data_div {
    padding: 20px 0;
    border-bottom: 1px solid var(--blue-dark-dark);
}

.fone_data {
    padding: 10px 15px 2px;
    border-radius: 57px;
    border: 1px solid var(--blue-dark-dark);
    background: var(--white);
    display: inline-block;
    margin-left: auto;
}

.fone_data p {
    color: var(--blue-dark);
    font-size: 16px;
    font-weight: var(--font-regular);
    line-height: 18px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.card_logo {
    width: 100%;
}

.table_data span,
.table_data p {
    color: var(--blue-dark);
    font-size: 18px;
    font-weight: var(--font-regular);
    line-height: 18px;
    opacity: 0.5;
    display: block;
}

.table_data p {
    opacity: 1;
    font-weight: var(--font-medium);
}

.data_row {
    display: flex;
    flex-direction: column;
}

.hstory_table tbody td {
    padding: 20px 0px;
    vertical-align: middle;
    border-color: var(--blue-dark-dark);
}

.view_btn span {
    color: var(--blue-dark);
    font-size: 18px;
    font-style: normal;
    font-weight: var(--font-medium);
    line-height: 25px;
    text-transform: capitalize;
    padding-top: 7px;
}

.hstory_table tbody :last-child td {
    text-align: center;
    padding: 15px 0px;
    border-width: 0;
}

.block_space {
    padding-top: 140px;
}

.block_id {
    padding: 20px 0;
    gap: 10px;
}

.block_id p,
.block_id span {
    color: var(--blue-dark);
    font-size: 26px;
    font-weight: var(--font-bold);
    line-height: 32px;
    letter-spacing: -0.26px;
}

.block_data {
    display: flex;
    align-items: center;
    gap: 10px
}

.tag_width {
    width: 25%;
}

.tag_detail_width {
    width: 75%;
}

.transaction_detail_div {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid var(--blue-dark-dark);
}

.block_data p,
.block_data span,
.block_data a {
    color: var(--blue-dark);
    font-size: 18px;
    font-weight: var(--font-medium);
    line-height: 18px;
    padding-top: 6px;
}

.block_data span {
    color: var(--blue-gray);
}

.block_id span {
    font-weight: var(--font-medium);
}

.block_status_success {
    border-radius: 35px;
    border: 1px solid var(--green);
    background: var(--dark-green);
    display: inline-block;
    padding: 3px 10px 3px 6px;
}

.block_status_pending {
    border-radius: 35px;
    border: 1px solid var(--blue-dark);
    background: var(--blue-sky-light);
    display: inline-block;
    padding: 3px 10px 3px 6px;
}

.block_status_success span {
    color: var(--green);
    padding-left: 5px;
    vertical-align: bottom;
}

.block_status_pending span {
    color: var(--blue-dark);
    padding-left: 5px;
    vertical-align: bottom;
}

.address_card {
    gap: 25px;
}

.address_card .block_id span {
    font-size: 20px;
    opacity: 0.8;
}

.address_card span {
    color: var(--blue-dark);
    font-size: 18px;
    font-weight: var(--font-regular);
    line-height: 20px;
    letter-spacing: -0.18px;
    text-transform: capitalize;
    opacity: 0.8;
}

.fone_balance p {
    font-weight: var(--font-bold);
}

.main_balance {
    gap: 10px;
}

.main_balance p {
    color: var(--blue-dark);
    font-size: 20px;
    font-weight: var(--font-medium);
    line-height: 32px;
    letter-spacing: -0.2px;
}

.main_balance span {
    color: var(--blue-dark);
    white-space: nowrap;
    font-size: 16px;
    font-weight: var(--font-regular);
    line-height: normal;
    letter-spacing: -0.16px;
}

.header_bg {
    background-image: url(../image/explorer_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.info_address {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-top: 8px;
}

.info_address p {
    color: var(--blue) !important;
    white-space: nowrap;
    font-size: 18px;
    font-weight: var(--font-regular);
    line-height: 18px;
}

.info_address span {
    color: var(--blue-dark);
    font-size: 18px;
    font-weight: var(--font-regular);
    line-height: 20px;
    letter-spacing: -0.18px;
    text-transform: capitalize;
}

.data_list {
    padding: 20px 0px 30px;
    gap: 10px;
}

.data_list p {
    color: var(--blue-dark);
    font-size: 20px;
    font-weight: var(--font-medium);
    line-height: 20px;
    letter-spacing: -0.2px;
}

.data_list span {
    color: var(--blue-gray);
}

.address_data th p {
    font-weight: var(--blue-medium);
}

.address_data th {
    border-color: var(--blue-dark-dark) !important;
    padding: 0 0 15px;
}

.address_data tbody :last-child td {
    text-align: start;
}

.data_method {
    border: 1px solid var(--black-dark);
    background: var(--blue-dark-dark);
    width: 85%;
    text-align: center;
}

.address_data tbody td {
    color: var(--blue-dark);
    font-size: 18px;
    font-style: normal;
    font-weight: var(--font-regular);
    line-height: 20px;
    letter-spacing: -0.18px;
    vertical-align: middle;
}

.address_data tbody td span {
    color: var(--blue-dark);
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.18px;
    text-transform: capitalize;
    opacity: 0.6;
    vertical-align: middle;
}

.address_data .block_data {
    text-transform: capitalize;
}

.address_data td.data_value {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.16px;
    text-transform: capitalize;
}

.nft_details {
    margin-top: 30px;
}

.nft_card {
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--blue-dark-dark);
    background-color: var(--white);
    margin-top: 22px;
}

.nft_title h3 {
    color: var(--blue-dark);
    font-size: 20px;
    font-weight: var(--font-medium);
    line-height: 20px;
    letter-spacing: -0.2px;
    margin-bottom: 10px;
}

.nft_img {
    width: 340px;
    height: 340px;
    margin-bottom: 10px;
}

.nft_img img {
    border-radius: 5px;
    width: auto;
    height: 340px;
    object-fit: fill;
}

.nft_data {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0 2px;
}

.nft_data h5 {
    color: var(--blue-dark);
    font-size: 18px;
    font-weight: var(--font-medium);
    line-height: 18px;
    flex: 0 0 auto;
}

.nft_data p {
    color: var(--blue-gray);
    font-size: 18px;
    font-weight: var(--font-regular);
    line-height: 18px;
    margin-bottom: 0;
}

.hr_border {
    width: 100%;
    height: 1px;
    background-color: var(--blue-dark);
    opacity: 0.1;
    margin: 10px 0;
}

.copy_icon {
    flex: 0 0 auto;
    position: relative;
}

.copy_icon span {
    position: absolute;
    top: -32px;
    left: 40%;
    transform: translateX(-50%);
    padding: 4px 5px 0px;
    background-color: var(--black-dark);
    border-radius: 5px;
}

.copy_icon span::after {
    content: "";
    position: absolute;
    border-top: 8px solid transparent;
    border-right: 8px solid var(--black-dark);
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    bottom: -4px;
}

.view_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.copied {
    color: var(--blue-dark) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    opacity: 0.8 !important;
    vertical-align: middle !important;
}

.btn-close {
    position: absolute;
    top: 2%;
    right: 2%;
    z-index: 99999;
}

.modal-header {
    padding: 10px 20px;
    border-bottom: none;
    height: 55px;
}

.modal-fullscreen .modal-body {
    display: flex;
    justify-content: center;
}

.navbar-toggler {
    padding: 4px;
}

.fone_price {
    line-height: normal;
}

.back_button {
    display: flex;
    align-items: center;
}

.back_button p {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 28px;
    color: #03033E;
    font-weight: 500;
    height: 20px;
}

.user_address .copy_icon {
    display: inline-block;
    vertical-align: text-bottom;
    margin-left: 12px;
}

.view_more {
    color: var(--blue-dark);
    font-size: 18px;
    font-weight: var(--font-medium);
    line-height: 20px;
    letter-spacing: -0.2px;
    cursor: pointer;
    text-align: center;
    padding-block: 16px;
    display: inline-block;
}

.nft_modal.show .modal-body img {
    object-fit: scale-down;
}

.searchbar_box {
    position: absolute;
    width: 100%;
    background-image: url(../image/explorer_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.header_search_box {
    width: 50%;
    margin: 0;
}

.modal_content {
    background-color: #03033e;
    background-image: url(../image/explorer_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.modal_body {
    padding: 40px 30px;
}

.search_msg {
    position: absolute;
    bottom: -60%;
    left: 4%;
}




/* common css */

.font_white {
    color: var(--white);
}

.font_dull_white {
    color: var(--white-dull);
}

.font_yellow {
    color: var(--yellow);
}

.font_blue {
    color: var(--blue) !important;
}

.font_gray {
    color: var(--blue-gray) !important;
}

.font_blue_medium {
    color: var(--blue-medium);
}

.font_blue_dark {
    color: var(--blue-dark);
}

.font_grey {
    color: var(--grey);
}

.font_dark_grey {
    color: var(--dark-grey);
}

.font_semi_bold {
    font-weight: var(--font-semibold);
}

.dark_blue_card {
    background-color: var(--blue-medium);
}

.blue_card {
    background-color: var(--blue);
}

.yellow_card {
    background-color: var(--yellow);
}

.grey_card {
    background-color: var(--grey);
}

.mt20 {
    margin-top: 20px;
}

.pointer {
    cursor: pointer;
}

.scroll_space {
    scroll-margin-top: 110px !important;
}


/* responsive css start */

@media screen and (max-width:1600px) {
    .navbar {
        padding: 30px 120px;
    }

    .explorer_video2 {
        right: -8%;
        bottom: -50%;
    }
}

@media screen and (max-width:1440px) {
    .container {
        max-width: 1320px;
    }

    .fonecard_detail {
        padding: 30px;
    }

    .depin_mobile {
        top: -17%;
        width: 40%;
    }

    .contact_card_video1 {
        bottom: -186%;
    }

    .contact_card_video2 {
        bottom: -294%;
    }

    .explorer_video2 {
        right: -8%;
        bottom: -42%;
    }
}

@media screen and (max-width:1366px) {
    .depin_img {
        height: 500px;
    }

    .decentralized_h2 {
        font-size: 55px;
        line-height: 55px;
        margin-bottom: 20px;
    }

    .fone_margin {
        margin-top: 120px;
    }

    .roadmap_card {
        min-width: 250px;
    }

    .contact_card_video1 {
        bottom: -134%;
    }

    .contact_card_video2 {
        bottom: -218%;
        left: -14%;
    }

    .explorer_video2 {
        right: -10%;
        bottom: -38%;
    }
}

@media screen and (max-width:1280px) {
    .container {
        max-width: 1200px;
    }

    .navbar {
        padding: 30px 100px;
    }

    .hero_section {
        padding: 200px 80px 0;
    }

    .hero_title {
        font-size: 80px;
        line-height: 80px;
    }

    .hero_p {
        margin-bottom: 30px;
    }

    .title_h2 {
        margin: 30px 0 60px;
        font-size: 78px;
        line-height: 78px;
    }

    .fonecard_detail h3 {
        font-size: 46px;
        line-height: 42px;
    }

    .depin_img {
        height: 450px;
        padding: 40px;
    }

    .app_traction_number {
        font-size: 78px;
    }

    .decentralized_section {
        padding: 100px 0;
    }

    .fone_margin {
        margin-top: 80px;
    }

    .document_title {
        font-size: 48px;
        line-height: 44px;
    }

    .document_detail_title {
        font-size: 26px;
        line-height: 26px;
    }

    .contact_card {
        padding: 40px;
    }

    .form-control {
        padding: 22px 25px 20px 25px;
    }

    .submit_btn {
        padding: 20px 55px;
    }

    .contact_card_video1 {
        bottom: -144%;
    }

    .contact_card_video2 {
        bottom: -237%;
    }

    .footer_section {
        padding: 250px 0 80px;
    }

    .form_search {
        padding: 8px 0 0px;
    }

    .explorer_video2 {
        bottom: -28%;
        right: -9%;
    }

    .price_content h3 {
        font-size: 26px;
        line-height: 26px;
    }

    .services_card {
        padding: 20px 20px 12px;
    }

    .price_card {
        height: 135px;
        padding: 20px 20px 12px;
    }

    .explorer_pera {
        font-size: 18px;
    }

    .user_address span {
        word-break: break-word;
    }
}

@media screen and (max-width:1024px) {
    .container {
        max-width: 960px;
    }

    .navbar {
        padding: 20px 30px;
    }

    .nav-link {
        font-size: 16px;
    }

    .hero_title {
        font-size: 75px;
        line-height: 70px;
    }

    .hero_p {
        font-size: 16px;
        line-height: 22px;
    }

    .video_style {
        height: 820px;
        width: 820px;
    }

    .title_h2 {
        font-size: 70px;
        line-height: 70px;
    }

    .fonecard_detail h3 {
        font-size: 40px;
        line-height: 36px;
    }

    .fone_card::after {
        top: -180%;
    }

    .fone_card:hover::before {
        bottom: -80%;
    }

    .fone_card:hover::after {
        top: -100%;
    }

    .depin_img {
        margin-top: 40px;
        height: 420px;
    }

    .decentralized_h2 {
        font-size: 46px;
        line-height: 46px;
        margin-bottom: 16px;
    }

    .download_btn {
        padding: 20px 35px;
        font-size: 16px;
    }

    .depin_mobile {
        top: -18%;
        width: 44%;
    }

    .app_traction_title {
        font-size: 30px;
    }

    .app_traction_height {
        height: 400px;
    }

    .app_traction_number {
        font-size: 64px;
        line-height: 54px;
    }

    .blockchain_detail {
        padding: 20px;
        width: 450px;
    }

    .blockchain_detail_p {
        font-size: 18px;
        line-height: 18px;
    }

    .document_title {
        font-size: 42px;
        line-height: 40px;
    }

    .document_detail {
        padding: 25px 25px 15px 25px;
    }

    .document_detail_title {
        font-size: 22px;
        line-height: 22px;
    }

    .form-control {
        padding: 18px 25px 18px 25px;
        border-radius: 30px;
    }

    .contact_card_video1 {
        bottom: -130%;
    }

    .contact_card_video2 {
        bottom: -208%;
    }

    .submit_btn {
        padding: 16px 45px;
    }

    .footer_section {
        padding: 200px 0 60px;
    }

    .footer_section img {
        width: 80%;
    }

    .team_card {
        padding: 20px;
        border-radius: 25px;
    }

    .team_name {
        font-size: 34px;
    }

    .whitepaper_section h2 {
        font-size: 44px;
        line-height: 44px;
    }

    .whitepaper_section h3 {
        font-size: 28px;
        line-height: 28px;
    }

    .explorer_video1 {
        bottom: -34%;
    }

    .explorer_video2 {
        transform: rotate(-10.303deg);
        bottom: -22%;
        right: -85px;
    }

    .form_search {
        padding: 8px 0 0px;
    }

    .price_content h3 {
        font-size: 20px;
        line-height: 20px;
    }

    .price_card {
        height: 120px;
    }

    .price_content span {
        font-size: 16px;
        line-height: 16px;
    }

    .info_address {
        gap: 5px;
        flex-wrap: wrap;
    }

    .address_data tbody td {
        white-space: nowrap;
        padding: 15px;
    }

    .address_data th {
        white-space: nowrap;
        padding: 15px;
    }

    .data_method {
        width: 100%;
    }
}

@media screen and (max-width:991px) {
    .container {
        max-width: 800px;
    }

    .navbar-collapse {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #141414;
        border-bottom: 1px solid #212121;
    }

    .navbar {
        padding: 20px 20px;
    }

    .navbar-nav {
        padding: 50px;
    }

    .nav-link {
        width: auto;
        display: inline-block;
    }

    .hero_title {
        font-size: 70px;
        line-height: 65px;
    }

    .video_style {
        height: 700px;
        width: 700px;
    }

    .title_h2 {
        font-size: 60px;
        line-height: 55px;
    }

    .fonecard_detail h3 {
        font-size: 36px;
        line-height: 30px;
    }

    .fone_card::after {
        width: 529px;
        height: 529px;
    }

    .fone_card::before {
        width: 529px;
        height: 529px;
    }

    .fonecard_detail p {
        font-size: 18px;
        line-height: 18px;
    }

    .depin_img {
        background-image: url(../image/depin_responsive.svg);
        height: 640px;
        border-radius: 20px;
        background-size: cover;
    }

    .decentralized_section {
        padding: 60px 0;
    }

    .depin_mobile {
        top: inherit;
        width: 44%;
        bottom: 0;
    }

    .app_traction_height {
        height: 100%;
    }

    .app_col {
        height: 400px;
    }

    .round_blur::before {
        top: 28%;
    }

    .round_blur::after {
        top: 28%;
    }

    .blockchain_structure {
        background-image: url(../image/blockchain_structure_responsive.svg);
        border-radius: 20px;
        height: 1020px;
        display: flex;
        align-items: end;
        justify-content: center;
        width: 100%;
    }

    .blockchain_detail {
        width: 100%;
    }

    .title_span {
        font-size: 16px;
        line-height: 20px;
    }

    .document_title {
        font-size: 38px;
        line-height: 36px;
    }

    .documents_section {
        padding: 30px 0;
    }

    .roadmap_card {
        height: 280px;
        padding: 25px;
    }

    .roadmap_content {
        font-size: 18px;
        line-height: 22px;
        margin: 12px 0;
    }

    .contact_card {
        background-image: url(../image/contact_bg_responsive.svg);
        padding: 50px;
        height: 1020px;
    }

    .contact_card_p {
        font-size: 18px;
        line-height: 18px;
    }

    .contact_card_video1 {
        bottom: 0%;
        width: 100%;
        left: 0%;
    }

    .contact_card_video2 {
        bottom: -20%;
        width: 100%;
        left: 5%;
    }

    .explorer_section {
        padding: 155px 0 140px;
    }

    .explorer_select {
        margin: 15px 0 0;
    }

    .explorer_video2 {
        bottom: -15%;
        right: -50px;
    }

    .hstory_table tbody tr td {
        white-space: nowrap;
    }

    .block_table tbody tr>:not(:first-child) {
        padding: 20px 20px 20px 30px;
    }

    .block_data {
        gap: 5px;
    }

    .tag_width {
        width: 21%;
    }

    .block_data p,
    .block_data span {
        font-size: 16px;
        line-height: 16px;
    }

    .block_id p,
    .block_id span {
        font-size: 24px;
        line-height: 28px;
    }

    .block_id {
        flex-wrap: wrap;
        gap: 5px;
    }

    .info_address p {
        white-space: unset;
        word-break: break-word;
    }

    .address_data tbody tr>:not(:first-child) {
        padding: 15px;
    }

    .nft_img {
        width: 280px;
        height: 280px;
    }

    .nft_img img {
        height: 280px;
    }

    .modal_body {
        padding: 30px 20px;
    }

    .header_search_box {
        margin: 0;
    }

    .search_msg {
        bottom: -54%;
    }
}

@media screen and (max-width:768px) {
    .container {
        max-width: 720px;
    }

    .app_col {
        height: 360px;
    }

    .contact_card {
        height: 980px;
    }

    .video_style {
        height: 600px;
        width: 600px;
    }

    .team_name {
        font-size: 32px;
    }

    .whitepapar_favicon {
        width: 20%;
    }

    .explorer_video1 {
        bottom: -15%;
    }

    .explorer_video2 {
        bottom: -15%;
    }

    .nft_data p {
        word-break: break-word;
    }

    .transaction_detail_div {
        flex-direction: column;
        align-items: start;
    }

    .data_row {
        flex-direction: row;
        gap: 8px;
    }

    .fone_data {
        padding: 8px 15px 2px;
    }

    .header_search_box {
        width: 100%;
    }
}

@media screen and (max-width:480px) {
    .hero_section {
        padding: 180px 30px 0;
    }

    .hero_title {
        font-size: 60px;
        line-height: 55px;
    }

    .download_btn {
        padding: 18px 30px;
    }

    .video_style {
        height: 500px;
        width: 450px;
    }

    .title_h2 {
        font-size: 50px;
        line-height: 50px;
        margin: 20px 0 50px;
    }

    .fone_card {
        border-radius: 15px;
    }

    .fonecard_detail h3 {
        font-size: 32px;
        line-height: 26px;
    }

    .depin_img {
        margin-top: 0;
        margin-bottom: 0;
        padding: 30px;
        border-radius: 15px;
    }

    .decentralized_h2 {
        font-size: 40px;
        line-height: 40px;
    }

    .depin_p {
        font-size: 18px;
        line-height: 18px;
    }

    .download_link {
        height: 60px;
    }

    .depin_mobile {
        width: 70%;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .app_traction_card {
        padding: 25px 25px 10px 25px;
    }

    .app_traction_p {
        font-size: 18px;
        line-height: 18px;
    }

    .app_traction_title {
        font-size: 28px;
    }

    .app_traction_number {
        font-size: 50px;
        line-height: 40px;
    }

    .blockchain_structure {
        border-radius: 15px;
        height: 760px;
    }

    .blockchain_detail {
        border-radius: 10px;
    }

    .blockchain_detail_p {
        font-size: 16px;
        line-height: 16px;
    }

    .document_title {
        font-size: 34px;
        line-height: 32px;
    }

    .blockchain_padding {
        padding-bottom: 30px;
    }

    .document_detail {
        padding: 25px 20px 15px 20px;
        border-radius: 15px;
    }

    .roadmap_card {
        border-radius: 15px;
        height: 240px;
    }

    .roadmap_title {
        font-size: 28px;
        line-height: 28px;
    }

    .roadmap_content {
        font-size: 16px;
        line-height: 20px;
        margin: 10px 0;
    }

    .contact_card {
        padding: 40px;
        height: 780px;
        border-radius: 15px;
    }

    .contact_card_video1 {
        bottom: -10%;
    }

    .contact_card_video2 {
        bottom: -26%;
    }

    .footer_section {
        padding: 160px 0 40px;
    }

    .whitepaper_section h2 {
        font-size: 40px;
        line-height: 40px;
    }

    .explorer_video1 {
        bottom: 5%;
        left: -27%;
        width: 60%;
    }

    .explorer_video2 {
        bottom: 5%;
        right: -27%;
        width: 60%;
    }

    .explorer_footer p {
        font-size: 16px;
        line-height: 20px;
    }

    .whitepaper_section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .whitepaper_section p {
        font-size: 20px;
        line-height: 28px;
    }

    .explorer_section {
        padding: 140px 0 140px;
    }

    .explorer_title {
        font-size: 28px;
        line-height: 30px;
    }

    .hstory_table tbody td {
        padding: 20px 12px;
        white-space: nowrap;
    }

    .hstory_table tbody tr>:first-child {
        padding: 20px 20px 20px 0px;
    }

    .hstory_table tbody tr>:last-child {
        padding: 20px 20px 20px 0px;
    }

    .hstory_table tbody tr>:last-child {
        padding: 20px 0px 20px 0px;
    }

    .table_data span,
    .table_data p {
        font-size: 16px;
        line-height: 16px;
    }

    .box {
        padding: 6px;
        width: 30px;
        height: 30px;
    }

    .explorer_pera {
        font-size: 16px;
    }

    .explorer_video2 {
        bottom: -3%;
        right: -17%;
        width: 80%;
    }

    .form_search {
        padding: 6px 0 0px;
        font-size: 16px;
    }

    .block_space {
        padding-top: 105px;
    }

    .block_table tbody tr>:not(:first-child) {
        padding: 15px 15px 15px 20px;
    }

    .hstory_table tbody tr>:first-child {
        padding: 15px 20px 15px 0px;
    }

    .address_card .block_id span {
        font-size: 16px;
        word-break: break-word;
        line-height: 20px;
    }

    .block_id p,
    .block_id span {
        font-size: 22px;
        line-height: 26px;
    }

    .main_balance p {
        font-size: 18px;
        line-height: 28px;
    }

    .search_btn {
        width: 35px;
        height: 35px;
    }

    .address_card span {
        font-size: 16px;
    }

    .info_address {
        margin-top: 4px;
    }

    .info_address p {
        font-size: 16px;
    }

    .data_list p {
        font-size: 16px;
    }

    .address_data thead tr>:first-child {
        padding-left: 0;
    }

    .address_data tbody tr>:first-child {
        padding: 8px 8px 8px 0px;
    }

    .address_data tbody tr>:not(:first-child) {
        padding: 12px;
    }

    .data_method {
        padding: 10px 12px 3px;
    }

    .data_list {
        padding: 20px 0px 15px;
    }

    .address_data p,
    .block_data span {
        padding-top: 0px;
    }

    .nft_data {
        align-items: start;
        padding: 8px 0 2px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nft_data p {
        font-size: 16px;
        line-height: 16px;
    }

    .nft_data h5 {
        font-size: 16px;
        line-height: 16px;
    }

    .hr_border {
        margin: 8px 0;
    }

    .nft_img {
        width: 190px;
        height: 190px;
    }

    .nft_img img {
        height: 190px;
    }

    .nft_title h3 {
        font-size: 18px;
        line-height: 18px;
    }

    .nft_card {
        margin-top: 15px;
        padding: 15px;
    }

    .copied {
        font-size: 14px !important;
    }

    .copy_icon span {
        padding: 4px 5px 0px !important;
        left: 8%;
        word-break: inherit !important;
    }

    .price_card {
        height: 100px;
    }

    .block_data p,
    .block_data span,
    .block_data a {
        word-break: break-all;
    }

    .block_status_success {
        border-radius: 16px;
    }

    .tag_width {
        width: 40%;
    }

    .user_address span {
        font-size: 18px;
        line-height: 20px;
    }

}

@media screen and (max-width:390px) {
    .navbar-nav {
        padding: 30px 40px;
    }

    .navbar-brand img {
        width: 80%;
    }

    .navbar-collapse {
        top: 72px;
    }

    .video_style {
        height: 380px;
        width: 360px;
    }

    .hero_title {
        font-size: 56px;
        line-height: 50px;
    }

    .download_btn {
        padding: 18px 24px;
    }

    .title_h2 {
        font-size: 46px;
        line-height: 46px;
        margin: 20px 0 30px;
    }

    .fonecard_detail {
        padding: 20px;
    }

    .decentralized_h2 {
        font-size: 36px;
        line-height: 36px;
    }

    .app_traction_number {
        font-size: 46px;
        line-height: 36px;
    }

    .blockchain_structure {
        padding: 20px;
    }

    .contact_card {
        padding: 30px;
    }

    .form-control {
        border-radius: 25px;
    }

    .footer_section {
        padding: 140px 0 40px;
    }

    .footer_border {
        margin: 30px 0;
    }

    .app_col {
        height: 320px;
    }

    .team_card {
        border-radius: 15px;
    }

    .contact_card_video2 {
        bottom: -22%;
    }

    .explorer_video1 {
        bottom: -4%;
    }

    .explorer_video2 {
        bottom: -4%;
    }

    .price_content span {
        font-size: 14px;
        line-height: 14px;
    }

    .price_content h3 {
        font-size: 18px;
        line-height: 18px;
    }

    .view_btn span {
        font-size: 16px;
    }

    .explorer_video2 {
        bottom: -10%;
        right: -27%;
        width: 85%;
    }

    .nft_img {
        width: 170px;
        height: 170px;
    }

    .nft_img img {
        height: 170px;
    }

    .card_logo {
        width: 50%;
    }

    .search_mobile_icon {
        width: 30px;
        height: 30px;
    }

    .navbar {
        padding: 20px 10px;
    }

    .navbar-toggler {
        padding: 1px;
    }

    .search_msg {
        bottom: -60%;
    }
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}