:root {
    --bg-color: #000;
    --body-color: #fff;
    --btn-main-bg: linear-gradient(89.16deg, #FEB342 -8.5%, #F87614 107.9%);
    --btn-app-bg: linear-gradient(92.51deg, rgba(255, 255, 255, 0.15) 0.24%, rgba(0, 0, 0, 0.15) 98.62%);
    --btn-app-border: linear-gradient(267.38deg, #F66F1C 0%, #E09735 100%);
    --btn-main-span: linear-gradient(92.51deg, rgb(26 26 26) 0.24%, rgb(0 0 0 / 84%) 98.62%);
}

body {
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    background-color: var(--bg-color);
    color: var(--body-color);
    line-height: 28px;
    height: 100%;
    /* background-image: url('../assets/images/background-images/swap-bg.png');
    background-repeat  : no-repeat;
    background-position: top 45% right 0;
    background-size    : 40%; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 52px;
    line-height: 58px;
    margin-bottom: 42px;
}

h2 {
    font-size: 42px;
    line-height: 54px;
}

p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.btn-main {
    padding: 1px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 18px;
    background: var(--btn-main-bg);
    text-shadow: 0px 3px 4px 0px #0000001A;
    line-height: 21.78px;
    color: #fff;
    border: 0;
}

.btn-main span {
    background: var(--btn-app-bg);
    padding: 16px 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: background .5s ease;
    width: 100%;
    position: relative;
    z-index: 2;
    background: transparent;
}

.btn-main span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    background: #1a1a1a;
    border-radius: 8px;
    transition: 0.2s all;
}

.btn-main:hover span::before {
    width: 100%;
}

.btn-app {
    background: var(--btn-app-border);
    padding: 1px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 18px;
    text-shadow: 0px 3px 4px 0px #0000001A;
    line-height: 21.78px;
    color: #fff;
    border: none;
    position: relative;
}

.btn-app span {
    background: var(--btn-app-bg);
    padding: 16px 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100%;
    transition: background .5s ease;
    width: 100%;
    position: relative;
    z-index: 2;
    background-color: #000;
}

.btn-app span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    background: var(--btn-app-border);
    border-radius: 8px;
    transition: 0.2s all;
}

.btn-app:hover span::before {
    width: 100%;
}

.btn-app:hover span {
    background: transparent;
}

section .container.container-main {
    width: 100%;
    max-width: 90%;
}

section .container.container-send_received {
    width: 100%;
    max-width: 90%;
}


section .container.container-hf {
    width: 100%;
    max-width: 90%;
}



.navbar-top .navbar {
    background-color: #FFFFFF1A;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 18px 20px;
    transition: background-color 0.3s;
    z-index: 10;
}

.navbar-top .navbar.scroll {
    background-color: #1a1a1a;
}

.navbar-top .navbar ul.navbar-nav {
    gap: 12px;
}

.navbar-top .navbar ul.navbar-nav li.nav-item a.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    line-height: 32px;
    padding: 10px 8px;
    letter-spacing: 5%;
}

.navbar-top .navbar ul.navbar-nav li.nav-item a.nav-link:hover,
.navbar-top .navbar ul.navbar-nav li.nav-item a.nav-link.active {
    color: #F87614;
}

.navbar-top .navbar .btn-app {
    font-size: 16px;
    font-weight: 500;
    margin-left: 90px;
    line-height: 19.36px;
}

.navbar-top .navbar .btn-app span {
    padding: 16px 18px;
}

/* .navbar-top .navbar .btn-app span img {
    width: 19px;
    height: auto;
} */

.navbar-top .navbar .btn-menu-open {
    border: none;
    background-color: transparent;
    padding: 10px 5px;
}

.navbar-top .navbar .btn-menu-open img {
    width: 30px;
    height: auto;
}

.navbar-top .navbar .btn-menu-open span {
    background: linear-gradient(89deg, #FEB342 -8.5%, #F87614 107.9%);
    width: 30px;
    height: 2px;
    position: relative;
    margin: 10px 0px;
    display: block;
    border-radius: 15px;
    transition: 0.4s;
}

.navbar-top .navbar .btn-menu-open.active span.bar-1 {
    -webkit-transform: rotate(-45deg) translate(-2px, 3px);
    transform: rotate(-45deg) translate(-2px, 3px);
}

.navbar-top .navbar .btn-menu-open.active span.bar-2 {
    -webkit-transform: rotate(45deg) translate(-5px, -7px);
    transform: rotate(45deg) translate(-5px, -7px);
}


.sidebar_mob {
    background: #303030;
}

.sidebar_mob .offcanvas-header .navbar-brand img {
    max-width: 170px;
}

.sidebar_mob .offcanvas-header .btn-close {
    background: #F87614;
    opacity: 1;
    border-radius: 4px;
    background-image: url('../assets/images/icons/close-menu.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.sidebar_mob ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    line-height: 32px;
    padding: 20px 10px;
    letter-spacing: 5%;
    font-size: 18px;
    border-bottom: 1px solid #FFFFFF1A;
    background-image: url('../assets/images/icons/icon-chevron-down.svg');
    background-repeat: no-repeat;
    background-position: center right 20px;
    background-size: 20px;
}

.sidebar_mob ul li a.active {
    color: #F87614;
}

.sidebar_mob .btn-app {
    font-size: 16px;
    font-weight: 500;
    margin-left: 90px;
    line-height: 19.36px;
}

.sidebar_mob .btn-app span {
    padding: 16px 18px;
}

.sidebar_mob .btn-app span img {
    width: 19px;
    height: auto;
}

.mobile-nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #060606;
    z-index: 9;
    display: none;
}

.mobile-nav .mobile-nav-header {
    width: 100%;
    height: 105px;
}

.mobile-nav ul.nav {
    width: 100%;
}

.mobile-nav ul.nav li a {
    width: 100%;
    padding: 27px 20px;
    position: relative;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    line-height: normal;
    border-bottom: 1px solid #FFFFFF33;
    background-image: url('../assets/images/icons/icon-chevron-down-mob.png');
    background-repeat: no-repeat;
    background-position: center right 20px;
    background-size: 20px;
}

.mobile-nav ul.nav li a:visited,
.mobile-nav ul.nav li a:focus {
    background-color: #1A191A;
}

.mobile-nav ul.nav li a.active {
    color: #F87614;
}

.mobile-nav ul.nav li:last-child a {
    border-bottom: 0;
}

.mobile-nav ul.nav li a.btn-app {
    padding: 12px 18px;
    font-weight: 600;
    font-size: 16px;
    line-height: 21.78px;
    color: #fff;
    border: 1px solid #F66F1C;
    position: relative;
    border-radius: 8px;
    text-shadow: 0px 3px 4px rgba(0, 0, 0, 0.10);
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mobile-nav .download-now {
    width: 100%;
    margin-top: 50%;
}

.mobile-nav .download-now h1 {
    font-size: 18px;
    margin-bottom: 24px;
}


/* ==== SECTION STYLES ==== */

section.main-banner {
    padding: 150px 0 60px 0px;
}

section.main-banner .main-banner-content {
    width: 100%;
    max-width: 600px;
    position: relative;
}

section.main-banner .main-banner-content .indication-arrow {
    position: absolute;
    width: 60%;
    height: 15%;
    right: -150px;
    bottom: 5%;
    transition: width 0.5s ease;
}

#lottie-animation {
    width: 100%;
    height: auto;
    /* transform: scaleX(-1); Flip horizontally */
}

/* update style 2 june 2025 */
section.main-banner .main-banner-content .section-heading {
    padding-bottom: 40px;
    position: relative;
}

section.main-banner .main-banner-content .section-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FEB342 -12.29%, rgba(248, 118, 20, 0.00) 87.29%);
}


section.main-banner .main-banner-content .section-heading h1 {
    margin-bottom: 0;
    position: relative;
    text-transform: capitalize;
}

/* update style 2 june 2025 */
section.main-banner .main-banner-content .section-heading .banner-title,
section.main-banner .main-banner-content .section-heading h1 span {
    background: linear-gradient(89.16deg, #FEB342 -8.5%, #F87614 107.9%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Space Grotesk;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    margin-bottom: 40px;
    padding: 10px 10px;

}

/* update style 2 june 2025 */
section.main-banner .main-banner-content .section-content p {
    margin-bottom: 70px;
    font-size: 20px;
    line-height: 24.2px;
    font-style: italic;
    font-weight: 500;
}

/* update style 2 june 2025 */
section.main-banner .main-banner-content .section-content p span {
    position: relative;
}

/* update style 2 june 2025 */
section.main-banner .main-banner-content .section-content p span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FEB342 -12.29%, rgba(248, 118, 20, 0.00) 87.29%);
}

/* update style 2 june 2025 */
section.main-banner .section-img-dsktop {
    position: relative;
    width: 100%;
    max-width: 355px;
    margin-right: auto;
    margin-left: auto;
}

/* update style 2 june 2025 */
section.main-banner .section-img-dsktop .coin-1 {
    position: absolute;
    top: -3%;
    left: 30%;
    width: 47px;
    height: 55px;
    background-image: url('../assets/images/coins/coin-1.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    animation: CoinA 1.7s ease-in-out infinite;
}

/* update style 2 june 2025 */
section.main-banner .section-img-dsktop .coin-2 {
    position: absolute;
    top: 50%;
    left: -15%;
    width: 52px;
    height: 54px;
    background-image: url('../assets/images/coins/coin-2.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    animation: CoinB 2s ease-in-out infinite;
}

/* update style 2 june 2025 */
section.main-banner .section-img-dsktop .coin-3 {
    position: absolute;
    top: 60%;
    right: -15%;
    width: 50px;
    height: 52px;
    background-image: url('../assets/images/coins/coin-3.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    animation: CoinC 2.5s ease-in-out infinite;
}

/* update style 2 june 2025 */
section.main-banner .section-img-dsktop .sphere-1 {
    position: absolute;
    top: 2px;
    left: 0;
    width: 28px;
    height: 28px;
    background-image: url('../assets/images/coins/sphere-1.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

/* update style 2 june 2025 */
section.main-banner .section-img-dsktop .sphere-2 {
    position: absolute;
    bottom: 15px;
    right: 30%;
    width: 16px;
    height: 16px;
    background-image: url('../assets/images/coins/sphere-2.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

/* update style 2 june 2025 */
@keyframes CoinA {
    0% {
        transform: translateY(-10%);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10%);
    }
}

/* update style 2 june 2025 */
@keyframes CoinB {
    0% {
        transform: translateY(50%);
    }

    50% {
        transform: translateY(60%);
    }

    100% {
        transform: translateY(50%);
    }
}

/* update style 2 june 2025 */
@keyframes CoinC {
    0% {
        transform: translateY(60%);
    }

    50% {
        transform: translateY(50%);
    }

    100% {
        transform: translateY(60%);
    }
}

/* update style 2 june 2025 */
section.main-banner .scan-app {
    margin-top: 80px;
}

section.main-banner .scan-app .scanner {
    width: 125px;
    height: 125px;
}

section.main-banner .scan-app .scanner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* update style 2 june 2025 */
section.main-banner .scan-app .scanner-title {
    font-size: 18px;
    line-height: 21.78px;
    width: 100%;
    max-width: 180px;
}

/* update style 2 june 2025 */
section.main-banner .scan-app .scanner-title span {
    background: linear-gradient(89.16deg, #FEB342 -8.5%, #F87614 107.9%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner_features_network-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* update style 2 june 2025 */
.banner_features_network-section {
    background-image: url('../assets/images/background-images/bg-gradient-img.png');
    background-position: center right -3%;
    background-repeat: no-repeat;
    background-size: inherit;
}

.cg-features {
    padding: 50px 0px 50px 0px;
}

.cg-features .container-main .row {
    text-align: center;
    background: #FFFFFF1F;
    border-radius: 20px;
    padding: 32px 30px;
}

.cg-features .container-main .features-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 29.05px;
    margin-bottom: 15px;
}

.cg-features .container-main .features-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 21.78px;
    color: #D5D5D5;
}

.network-supported {
    padding: 50px 0px 40px 0px;
}

/* update style 2 june 2025 */
.network-supported h1 {
    font-weight: 700;
    font-size: 42px;
    line-height: 54px;
    vertical-align: middle;
    margin-bottom: 40px;
}

/* update style 2 june 2025 */
.network-supported h1 span {
    background: linear-gradient(89.16deg, #FEB342 -8.5%, #F87614 107.9%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.network-supported .network-heading {
    margin-bottom: 20px;
    line-height: 24.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
}

.network-supported .network-support-content {
    width: 100%;
    max-width: 620px;
}

.network-supported .network-support-content p {
    color: #FFFFFFCC;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
}

.network-supported .network-heading .sum-of-network {
    font-size: 72px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background: linear-gradient(89deg, #FEB342 -8.5%, #F87614 107.9%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.network-supported .network-heading .network-title {
    font-size: 20px;
    font-weight: 400;
}

.network-supported .network-banner img {
    width: 100%;
    max-width: 1050px;
    margin: auto;
}

.network-supported .network-banner video {
    height: auto;
}

.monitor-store.true-ownership p {
    font-size: 18px;
    line-height: 28px;
}

.monitor-store {
    position: relative;
    padding: 50px 0px 90px 0px;
}

/* update style 2 june 2025 */
.monitor-store .container .monitor-store-content {
    position: relative;
    background-color: #FFFFFF12;
    border: 1px solid #FFFFFF14;
    backdrop-filter: blur(13.800000190734863px);
    padding: 40px;
    border-radius: 20px;
    background-image: url('../assets/images/background-images/LooperBG.svg');
    background-repeat: no-repeat;
    background-position: top center;
}

/* update style 2 june 2025 */
.monitor-store .container .monitor-store-content .ms-title {
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(89.16deg, rgba(254, 179, 66, 0.14) -8.5%, rgba(248, 118, 20, 0.14) 107.9%);
    border-radius: 8px;
    padding: 10px;
    width: fit-content;
}

/* update style 2 june 2025 */
.monitor-store .container .monitor-store-content .ms-title span {
    font-family: "Space Grotesk", sans-serif;
    background: linear-gradient(89deg, #FEB342 -8.5%, #F87614 107.9%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.42px;
    font-weight: 700;
}

.monitor-store .container .monitor-store-content .crypto_assets-img img {
    width: 100%;
    max-width: 80%;
}

.monitor-store h1 {
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 54px;
}

/* update style 2 june 2025 */
.monitor-store p {
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    color: #FFFFFFCC;
}

.monitor-store .section-heading,
.monitor-store .section-content {
    width: 100%;
    max-width: 585px;
}

.wallet-activities {
    position: relative;
    padding: 80px 0px 95px 0px;
}

.wallet-activities .cgw-tabs ul.nav-tabs {
    gap: 20px;
    border: none;
    margin: 30px 0px;
    justify-content: center;
}

.wallet-activities .cgw-tabs ul.nav-tabs li button.btn-app {
    font-weight: 500;
    line-height: 28px;
    border-radius: 20px;
    background: transparent;
    font-family: "Space Grotesk", sans-serif;
}

.wallet-activities .cgw-tabs ul.nav-tabs li button.btn-app.active {
    background: var(--btn-app-border);
}

.wallet-activities .cgw-tabs ul.nav-tabs li button.btn-app span {
    flex-direction: column;
    gap: 13px;
    border-radius: 20px;
    width: 220px;
    padding: 25px 12px;
    background: #000;
}

.wallet-activities .cgw-tabs ul.nav-tabs li button.btn-app span::before {
    border-radius: 20px;
    background: #FFFFFF33;
}

.wallet-activities .cgw-tabs ul.nav-tabs li button.btn-app:hover span::before {
    background: transparent;
    width: 0;
}

.wallet-activities .cgw-tabs .tab-content {
    padding-top: 50px;
    padding-bottom: 25px;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.wallet-activities .cgw-tabs .tab-content p {
    font-size: 20px;
}

.wallet-activities .cgw-tabs .tab-content img {
    width: 100%;
    max-width: 260px;
    height: auto;
    position: relative;
}

.wallet-activities .cgw-tabs .tab-content .tab-pane {
    padding: 20px;
}

.fade-image {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-pane.active .fade-image {
    opacity: 1;
    transform: scale(1);
}

.wallet-activities .cgw-tabs .cgw-tabs-body {
    width: 100%;
    height: 60vh;
    overflow: hidden;
    position: relative;
    padding-top: 50px;
    padding-bottom: 25px;
    overflow-y: scroll;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.wallet-activities .cgw-tabs .cgw-tabs-body .tab-panel {
    height: 100%;
    display: flex;
    align-items: center;
}

.wallet-activities .cgw-tabs .cgw-tabs-body p {
    font-size: 20px;
}

.wallet-activities .cgw-tabs .cgw-tabs-body img {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin-left: 40px;
}

.swap-anything {
    position: relative;
    padding: 100px 0px 100px 0px;
    overflow: hidden;
}

.swap-anything::before {
    content: '';
    position: absolute;
    width: 530.367px;
    height: 428.071px;
    transform: rotate(-19.18deg);
    border-radius: 1269.849px;
    background: rgba(248, 118, 20, 0.20);
    filter: blur(115.19999694824219px);
    bottom: 0;
    right: -5%;
}

.swap-anything .swap-banner img {
    width: 100%;
    max-width: 300px;
}

.swap-anything .section-content p {
    font-size: 20px;
    text-align: center;
    width: 100%;
    max-width: 604px;
    margin-right: auto;
    margin-left: auto;
}

/* update style 2 june 2025 */
.cgw-choice {
    position: relative;
    padding: 150px 0px 50px 0px;
}

.cgw-choice h1 {
    font-size: 42px;
    line-height: 54px;
}

.cgw-choice .cgw-choice-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.cgw-choice .cgw-choice-card h2 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 26.63px;
    margin-bottom: 15px;
}

.cgw-choice .cgw-choice-card p {
    line-height: 26px;
}

/* update style 2 june 2025 */
.cgw-choice .cgw-card,
.cgw-choice .cgw-video-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.36) 100%);
    border-radius: 20px;
    border: 1px solid #FFFFFF33;
    padding: 30px 20px;
    position: relative;
}

.cgw-choice .cgw-card {
    background: linear-gradient(300.15deg, rgba(247, 118, 19, 0.04) 80.55%, rgba(247, 118, 19, 0.62) 98.99%);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cgw-choice .cgw-card img {
    width: 60px;
    height: auto;
}

.cgw-choice .cgw-video-card .video-play-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--btn-main-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    border: none;
    outline: none;
    box-shadow: 0px 4px 10.1px 0px rgba(0, 0, 0, 0.08);
    padding: 0;
}

.cgw-choice .cgw-video-card .video-play-btn span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    transform: scale(0.8);
    border-left: 32px solid #fff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    transition: all 0.55s cubic-bezier(0.645, 0.045, 0.355, 1);
    left: 4px;
}

.cgw-choice .cgw-video-card .video-play-btn::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: rgba(255, 175, 21, 0.65);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.cgw-choice .cgw-video-card .video-play-btn::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--btn-main-bg);
    border-radius: 50%;
    transition: all 200ms;
    transition: all 0.55s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.cgw-choice .cgw-video-card .video-play-btn:hover span {
    border-left: 32px solid #F5800F;
}

.cgw-choice .cgw-video-card .video-play-btn:hover::after {
    background: linear-gradient(89.16deg, #f8f2e9 -8.5%, #eeecec 107.9%);
    ;
    transition: all 0.55s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.cgw-choice .cgw-card .cgw-card-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    margin-bottom: 14px;
    background: linear-gradient(89.16deg, #FEB342 -8.5%, #F87614 107.9%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cgw-choice .cgw-card p {
    color: #FFFFFFCC;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
}

.cgw-choice .cgw-video-card img {
    width: 100%;
    height: 100%;
}

.sdk {
    position: relative;
    padding: 0px 0px 100px 0px;
}

/* update style 2 june 2025 */
.sdk .sdk-box {
    box-sizing: border-box;
    display: block;
    z-index: 2;
}

/* update style 2 june 2025 */
.sdk .sdk-box .sdk-body {
    align-items: center;
    background-color: #FFFFFF12;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 30px 40px;
    border: 1px solid #FFFFFF14;
    backdrop-filter: blur(13.800000190734863px);
    border-radius: 20px;
    background-image: url('../assets/images/background-images/sdkBG.svg');
    background-repeat: no-repeat;
    background-position: bottom left 25%;
}

/* update style 2 june 2025 */
.sdk .sdk-box .sdk-body .sdk-title {
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(89.16deg, rgba(254, 179, 66, 0.14) -8.5%, rgba(248, 118, 20, 0.14) 107.9%);
    border-radius: 8px;
    padding: 10px;
    width: fit-content;
    font-weight: 700;
}

.sdk .sdk-box .sdk-body h1 {
    font-size: 42px;
    line-height: 54px;
}

/* update style 2 june 2025 */
.sdk .sdk-box .sdk-body .sdk-title span {
    font-family: "Space Grotesk", sans-serif;
    background: linear-gradient(89deg, #FEB342 -8.5%, #F87614 107.9%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.42px;
}

.sdk .sdk-box .sdk-body .section-content p {
    margin-bottom: 50px;
    color: #E7E7E7;
    font-size: 20px;
}

.sdk .sdk-box .sdk-body .section-content p span {
    font-weight: 700;
    background: linear-gradient(89.16deg, #FEB342 -8.5%, #F87614 107.9%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.sdk .sdk-box .sdk-body .content-img img {
    width: 100%;
    max-width: 320px;
}

.crypto-experience {
    position: relative;
    /* padding: 60px 0px 0px 0px; */
}

.crypto-experience p {
    width: 100%;
    max-width: 790px;
    margin-right: auto;
    margin-left: auto;
}

.crypto-experience .crypto-video {
    background-color: rgba(238, 238, 238, 0.2);
    border-radius: 20px;
    padding: 22px 30px;
    position: relative;
    width: 100%;
    max-width: 1040px;
    margin: 40px auto;
    margin-bottom: 0;
}

.crypto-experience .crypto-video img.cross {
    width: 100%;
    height: auto;
}

.crypto-experience .crypto-video .video-play-btn {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--btn-main-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    border: none;
    outline: none;
    box-shadow: 0px 4px 10.1px 0px rgba(0, 0, 0, 0.08);
    padding: 0;
}

.crypto-experience .crypto-video .video-play-btn svg {
    position: relative;
    left: 5px;
}

#video-modal .btn-close {
    background: #F87614;
    opacity: 1;
    border-radius: 2px;
    background-image: url(../assets/images/icons/close-menu.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 9;
    transition: all .3s;
    width: 30px;
    height: 30px;
    padding: 0;
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, .031372549);
}

#video-modal .btn-close:hover {
    background-color: #303030;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1333333333), 0 0 3px 1px rgba(0, 0, 0, .0666666667);
    opacity: 1;
    transform: scale(1.1);
}

/* update style 2 june 2025 */
.download-now {
    position: relative;
    padding: 50px 0px 50px 0px;
    background-image: url('../assets/images/background-images/downlaodBg.svg');
    background-repeat: no-repeat;
    background-position: center right 30%;
    background-size: inherit;
}

.download-now .download-app-section {
    width: 100%;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}

.download-now .download-app-section ul.nav {
    gap: 15px;
    margin-bottom: 40px;
}

.download-now .download-app-section .app-banner {
    margin-top: 15px;
    margin-bottom: 40px;
}

.download-now .download-app-section .app-banner img {
    width: 100%;
    height: auto;
}

.faq {
    position: relative;
    padding: 50px 0px 50px 0px;
}

.faq .faq-body {
    width: 100%;
    max-width: 970px;
    margin-right: auto;
    margin-left: auto;
}

/* update style 2 june 2025 */
.faq .faq-body .accordion .accordion-item {
    margin-bottom: 10px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 10px 30px 0px #00000014;
    backdrop-filter: blur(20px);
    /* border          : 1px solid rgba(255, 255, 255, 0.2); */
    border: 1px solid #FFFFFF33;
    background-color: #000;
}

/* update style 2 june 2025 */
.faq .faq-body .accordion .accordion-item .accordion-button {
    background: #FFFFFF1A;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 24.2px;
    padding: 23px 30px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: none;
}

.faq .faq-body .accordion .accordion-item .accordion-button:focus,
.faq .faq-body .accordion .accordion-item .accordion-button:active {
    box-shadow: none;
    outline: none;
}

.faq .faq-body .accordion .accordion-item .accordion-button::after {
    width: 14px;
    height: 24px;
    background-size: 100%;
    background-position: center;
    background-image: url('../assets/images/icons/Down.svg');
}

.faq .faq-body .accordion .accordion-item .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    background-image: url('../assets/images/icons/Down.svg');
}

.faq .faq-body .accordion .accordion-item .accordion-body {
    background: #FFFFFF1A;
    color: #fff;
    font-size: 16px;
    padding: 20px 30px;
}

.faq .faq-body .accordion .accordion-item .collapse.show {
    border-top: 1px solid #FFFFFF33;
}

.faq .faq-body .accordion .accordion-item .accordion-body a {
    color: #F87614;
}

.cg-footer {
    padding-top: 80px;
    padding-bottom: 44px;
    background-image: url('../assets/images/background-images/bg-gradient-footer.png');
    background-repeat: no-repeat;
    background-size: inherit;
    background-position: bottom right;
}

.cg-footer .coin_guard-logo-footer img {
    width: 100%;
    max-width: 245px;
    margin-bottom: 15px;
}

.cg-footer .section-content p {
    color: rgba(204, 204, 204, 1);
    max-width: 415px;
}

.cg-footer ul.nav li {
    line-height: 20px;
}

.cg-footer ul.nav li .footer-heading {
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 22px;
}

.cg-footer ul.nav li a {
    color: rgba(255, 255, 255, 1);
    line-height: 32px;
    padding: 9px 0px;
    text-decoration: none;
    opacity: 0.8;
    position: relative;
}

.cg-footer ul.nav li a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: url('../assets/images/icons/icon-chevron-down.svg');
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%);
}

.cg-footer ul.nav li a:hover {
    color: #F87614;
}

.cg-footer ul.nav.social-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cg-footer ul.nav li a.social-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #45474A;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
}

.cg-footer ul.nav li a.social-link i {
    color: #fff;
    position: relative;
    top: 1px;
}

.cg-footer ul.nav li a.social-link:hover {
    background-color: #262627;
}

.cg-footer ul.nav li a.social-link:hover i {
    color: #F87614;
}

.cg-footer .footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 1%;
    line-height: 32px;
    font-size: 14px;
}

.available-on-sec ul li .btn-app {
    font-size: 16px;
}

.available-on-sec ul li .btn-app span {
    padding: 12px 18px;
}

.available-on-sec ul li .btn-app span img {
    width: 20px;
}

.aboutUs.inner-banner {
    padding-top: 270px;
    padding-bottom: 55px;
    position: relative;
    background-image: url('../assets/images/background-images/CoinGuard.png');
    background-repeat: no-repeat;
    background-position: top 30% center;
    background-size: 65%;
}

.aboutUs.inner-banner::before {
    content: '';
    position: absolute;
    width: 34px;
    height: 34px;
    right: 100px;
    top: 200px;
    background-image: url('../assets/images/background-images/star-bg.svg');
    background-repeat: no-repeat;
    background-position: center;
    animation: rotate360 20s linear infinite;
}

.aboutUs.inner-banner::after {
    content: '';
    position: absolute;
    width: 34px;
    height: 34px;
    left: 100px;
    bottom: 100px;
    background-image: url('../assets/images/background-images/star-bg.svg');
    background-repeat: no-repeat;
    background-position: center;
    animation: rotateRevarse360 20s linear infinite;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateRevarse360 {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}


.aboutUs.inner-banner .page-title {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 600;
    line-height: 48.41px;
    margin-bottom: 45px;
    letter-spacing: 4px;
    background: linear-gradient(89.16deg, #FEB342 -8.5%, #F87614 107.9%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Space Grotesk", sans-serif;
}

.aboutUs.inner-banner p {
    font-size: 22px;
    font-weight: 400;
    line-height: 34px;
    max-width: 650px;
    margin: auto;
}

.core-values {
    padding-top: 70px;
    padding-bottom: 50px;
    position: relative;
    background-image: url('../assets/images/background-images/about-bg.svg'), url('../assets/images/background-images/about-main-bg.png');
    background-repeat: no-repeat, no-repeat;
    background-position: top 160px left, top center;
    background-size: 25%, contain;
}

.core-values h1 {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 600;
    line-height: 48.41px;
    margin-bottom: 45px;
    letter-spacing: 4px;
    background: linear-gradient(89.16deg, #FEB342 -8.5%, #F87614 107.9%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.core-values p.top {
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 60px;
}

.core-values .core-card-row {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.core-values .core-card {
    border-radius: 20px;
    border: 1px solid #FEB342;
    background: linear-gradient(180deg, rgba(94, 92, 92, 0.06) 0%, rgba(0, 0, 0, 0.60) 100%),
        linear-gradient(300deg, rgba(247, 118, 19, 0.04) 80.55%, rgba(247, 118, 19, 0.62) 98.99%);
    border-radius: 20px;
    padding: 50px 35px;
    width: 100%;
    max-width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 25px;
}

.core-values .core-card .core-card-header {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 35px;
}

.core-values .core-card p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.80);
}

.core-values .core-card-row .core-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-values .core-img-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
}

.core-values .core-img-row .core-img-col {
    width: 100%;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-main {
    padding-top: 160px;
    background-image: url('../assets/images/background-images/network-bg.png');
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    background-attachment: fixed;
}

.faq-main::before {
    content: '';
    position: absolute;
    width: 34px;
    height: 34px;
    right: 70px;
    top: 150px;
    background-image: url('../assets/images/background-images/star-bg.svg');
    background-repeat: no-repeat;
    background-position: center;
    animation: rotate360 20s linear infinite;
}

.support-sec {
    padding-top: 150px;
    padding-bottom: 100px;
    position: relative;
    background-image: url('../assets/images/background-images/network-bg.png'), url('../assets/images/background-images/support-rignt-bg.png');
    background-repeat: no-repeat, no-repeat;
    background-position: left center, top right;
    background-size: contain, contain;
    background-attachment: fixed;

}

.support-sec::before {
    content: '';
    position: absolute;
    width: 34px;
    height: 34px;
    right: 70px;
    top: 150px;
    background-image: url('../assets/images/background-images/star-bg.svg');
    background-repeat: no-repeat;
    background-position: center;
    animation: rotate360 20s linear infinite;
}

.support-sec::after {
    content: '';
    position: absolute;
    width: 34px;
    height: 34px;
    left: 70px;
    bottom: 40%;
    background-image: url('../assets/images/background-images/star-bg.svg');
    background-repeat: no-repeat;
    background-position: center;
    animation: rotate360 20s linear infinite;
}

.support-sec .support-body {
    width: 100%;
    max-width: 590px;
    margin: auto;
    padding: 10px;
}

.support-sec .support-body p {
    font-size: 20px;
    line-height: 24.2px;
}

.support-sec .support-body .support-form {
    padding-top: 90px;
    padding-bottom: 30px;
}

.support-sec .support-body .support-form .form-group {
    margin-bottom: 35px;
}

.support-sec .support-body .support-form .form-group label {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #F4F4F4;
    margin-bottom: 15px;
}

.support-sec .support-body .support-form .form-group .form-control {
    border: 1px solid #FFFFFF29;
    background: #FFFFFF1F;
    padding: 20px 30px;
    color: #fff;
    border-radius: 8px;
    line-height: 19.36px;
}

.support-sec .support-body .support-form .form-group .form-control::placeholder {
    color: #AFAFAF;
}

.download-now .btn-app img {
    width: 32px;
}

.offer-sec .offerCard-mob {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.10);
    padding: 20px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.offer-sec .offerCard-mob .title {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    background: linear-gradient(89deg, #FEB342 -8.5%, #F87614 107.9%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer-sec .offerCard-mob .offer-img {
    width: 100%;
    height: auto;
}

.offer-sec .offerCard-mob .offer-pra {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #fff;
}

/* update style 2 june 2025 */

.ownership-monitor-store {
    background-image: url('../assets/images/background-images/bg-gradient-b.png');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: inherit;
}

.offer-cgw {
    position: relative;
    background-image: url('../assets/images/background-images/bg-gradient-c.png');
    background-position: right -1% bottom 6%;
    background-repeat: no-repeat;
    background-size: inherit;
}

/* .offer-cgw::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    height: 100%;
    
} */

.faq-download-bg {
    background-image: url('../assets/images/background-images/bg-gradient-d.png');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: inherit;
}

@media (min-width: 768px) {
    .cg-footer ul.nav li a::after {
        display: none;
    }
}

@media (max-width: 1550px) and (min-width: 1201px) {
    section.wallet-activities .container-main {
        max-width: 95%;
    }

    .wallet-activities .cgw-tabs ul.nav-tabs li button.btn-app {
        font-size: 16px;
    }

    .wallet-activities .cgw-tabs ul.nav-tabs li button.btn-app span {
        width: 200px;
    }

    .wallet-activities .cgw-tabs ul.nav-tabs li button.btn-app span img {
        width: 55px;
        height: auto;
    }

    .swap-anything .swap-banner img {
        max-width: 270px;
    }
}

@media (max-width: 1350px) and (min-width: 1200px) {
    section.main-banner .main-banner-content .indication-arrow {
        width: 50%;
        right: -100px;
        height: 13%;
    }
}

@media (max-width: 1200px) and (min-width: 992px) {
    h1 {
        font-size: 45px;
        line-height: 50px;
        margin-bottom: 35px;
    }

    section .container.container-main {
        width: 100%;
        max-width: 95%;
    }

    section.main-banner .main-banner-content .section-heading h1 {
        margin-bottom: 45px;
    }

    section.main-banner .scan-app .scanner {
        width: 100px;
        height: 100px;
    }

    section.main-banner .main-banner-content .indication-arrow {
        width: 50%;
        height: 15%;
        right: -14%;
    }

    .cg-features .container-main .features-title {
        font-size: 20px;
        line-height: 25.05px;
    }

    .cg-features .container-main .features-description {
        font-size: 16px;
        line-height: 18px;
    }

    .wallet-activities .cgw-tabs .tab-content p {
        font-size: 16px;
    }

    .wallet-activities .cgw-tabs .tab-content img {
        max-width: 210px;
    }

    .wallet-activities .cgw-tabs ul.nav-tabs {
        gap: 10px;
    }

    .wallet-activities .cgw-tabs ul.nav-tabs li button.btn-app {
        font-size: 14px;
    }

    .wallet-activities .cgw-tabs ul.nav-tabs li button.btn-app span {
        padding: 20px 8px;
        width: 170px;
    }

    .wallet-activities .cgw-tabs ul.nav-tabs li button.btn-app span img {
        width: 50px;
        height: auto;
    }

    .sdk .sdk-box .sdk-body .content-img img {
        max-width: 240px;
    }

    .cgw-choice h1 {
        font-size: 35px;
        line-height: 45px;
    }

    .cgw-choice .cgw-choice-card {
        gap: 15px;
    }

    .swap-anything .swap-banner img {
        max-width: 230px;
    }

    .core-values .core-card .core-card-header {
        font-size: 24px;
        line-height: 35px;
    }

    .core-values .core-card p {
        font-size: 17px;
        line-height: 24px;
    }
}


@media (max-width: 992px) {

    h1 {
        font-size: 40px;
        line-height: 42px;
    }

    section.main-banner {
        padding: 130px 0 30px 0px;
    }

    section.main-banner .main-banner-content .section-heading h1 {
        margin-bottom: 50px;
    }

    .wallet-activities {
        padding: 60px 0px 70px 0px;
    }

    .swap-anything {
        padding: 50px 0px 50px 0px;
    }

    section.main-banner .main-banner-content,
    .monitor-store .section-heading,
    .monitor-store .section-content {
        max-width: 100%;
    }

    .sdk {
        padding: 65px 0px 60px 0px;
    }

    .sdk .sdk-box .sdk-body {
        padding: 50px 45px;
    }

    .sdk .sdk-box .sdk-body .section-content p {
        margin-bottom: 30px;
        font-size: 18px;
    }

    .sdk .sdk-box .sdk-body .content-img img {
        width: 100%;
        max-width: 200px;
    }

    .cgw-choice {
        padding: 50px 0px 50px 0px;
    }

    .crypto-experience,
    .download-now,
    .faq {
        padding: 40px 0px 40px 0px;
    }

    .crypto-experience .crypto-video .video-play-btn {
        width: 90px;
        height: 90px;
    }

    .faq .faq-body .accordion .accordion-item .accordion-body {
        color: #E7E7E7;
    }

    .cg-footer {
        padding-top: 90px;
        padding-bottom: 30px;
    }

    .cg-footer ul.nav li .footer-heading {
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 32px;
    }

    .aboutUs.inner-banner {
        padding-top: 175px;
        padding-bottom: 50px;
        background-position: top 30% center;
        background-size: 75%;
    }

    .aboutUs.inner-banner h1 {
        font-size: 26px;
        line-height: 30px;
    }

    .aboutUs.inner-banner::before {
        right: 50px;
    }

    .aboutUs.inner-banner::after {
        left: 50px;
    }

    .core-values {
        padding-top: 50px;
        padding-bottom: 25px;
    }

    .core-values p.top {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 30px;
    }

    .faq-main {
        padding-top: 120px;
    }

    .support-sec {
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .swap-anything .swap-banner img {
        max-width: 150px;
    }

    .monitor-store.true-ownership img {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .network-supported .network-heading .sum-of-network {
        font-size: 60px;
    }

    .network-supported .network-heading .network-title {
        font-size: 30px;
    }

    .aboutUs.inner-banner p {
        font-size: 18px;
        line-height: 28px;
    }

    .core-values h1 {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .core-values .core-card-row {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .core-values .core-card-row .core-img,
    .core-values .core-img-row {
        display: none;
    }

    .core-values .core-card {
        max-width: 100%;
        height: auto !important;
        padding: 35px 15px;
    }

    .core-values .core-card .core-card-header {
        font-size: 22px;
        line-height: 25px;
    }

    .core-values .core-card p {
        font-size: 14px;
        line-height: 20px;
    }

    .banner_features_network-section,
    .ownership-monitor-store,
    .offer-cgw,
    .faq-download-bg,
    .cg-footer {
        background-image: none;
    }

    .download-now {
        background-position: top right;
        background-size: 35%;
    }

    .download-now-mob {
        background-image: none;
    }
}

@media (max-width: 767px) {

    h1,
    .cgw-choice h1,
    .monitor-store h1 {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    p {
        line-height: 24px;
        color: #ccc;
    }

    .navbar-top .navbar {
        padding: 18px 5px;
    }

    .navbar-top .navbar .navbar-brand img {
        max-width: 200px;
    }

    section .container.container-main {
        width: 100%;
        max-width: 90%;
    }

    section.main-banner .main-banner-content .section-heading h1 {
        font-size: 32px;
        line-height: 34px;
    }

    section.main-banner .main-banner-content .section-content p {
        font-size: 16px;
        line-height: 22px;
        color: #CCCCCC;
    }

    .banner_features_network-section::before {
        display: none;
    }

    /* update style 2 june 2025 */
    section.main-banner .main-banner-content .section-heading .banner-title,
    section.main-banner .main-banner-content .section-heading h1 span {
        margin-bottom: 20px;
    }

    /* update style 2 june 2025 */
    section.main-banner .main-banner-content .section-heading h1 {
        margin-bottom: 10px;
    }

    /* update style 2 june 2025 */
    section.main-banner .main-banner-content .section-heading {
        padding-bottom: 10px
    }

    /* update style 2 june 2025 */
    .network-supported h1 {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    /* update style 2 june 2025 */
    .monitor-store .container .monitor-store-content {
        padding: 30px;
        background-position: top right;
    }

    /* update style 2 june 2025 */
    .monitor-store .container .monitor-store-content .ms-title {
        font-size: 13px;
        margin-bottom: 30px;
        line-height: 24px;
    }

    .features_network-section .cg-features {
        overflow: hidden;
    }

    .features_network-section .cg-features::before {
        content: '';
        position: absolute;
        left: unset;
        top: -15%;
        right: -45%;
        width: 364.645px;
        height: 294.313px;
        transform: rotate(-19.18deg);
        border-radius: 364.645px;
        background: rgba(248, 118, 20, 0.20);
        filter: blur(115.19999694824219px);
    }

    .features_network-section .cg-features::after {
        content: '';
        position: absolute;
        bottom: -15%;
        left: -45%;
        width: 364.645px;
        height: 294.313px;
        transform: rotate(-19.18deg);
        border-radius: 364.645px;
        background: rgba(248, 118, 20, 0.20);
        filter: blur(115.19999694824219px);
    }

    /* update style 2 june 2025 */
    .sdk .sdk-box .sdk-body {
        background-position: top right;
        background-image: url('../assets/images/background-images/LooperBG.svg');
    }

    /* update style 2 june 2025 */
    .sdk .sdk-box .sdk-body .sdk-title {
        margin: auto;
        margin-bottom: 20px;
        width: 90%;
    }

    .cg-features {
        padding: 30px 0px 30px 0px;
    }

    .cg-features .feature-card {
        padding-top: 34px;
        padding-bottom: 34px;
        position: relative;
    }

    .cg-features .feature-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: url('../assets/images/section-img/border-bottom.svg');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .cg-features .col-md-6:last-child .feature-card::after {
        display: none;
    }

    .network-supported {
        padding: 20px 0px 20px 0px;
    }

    .network-supported .network-heading {
        flex-direction: column;
        line-height: 30px;
        gap: 10px;
    }

    .network-supported .network-heading .sum-of-network {
        font-size: 60px;
    }

    .network-supported .network-heading .network-title {
        font-size: 18px;
    }

    .sdk .sdk-box .sdk-body {
        padding: 30px 15px;
    }

    .sdk .sdk-box .sdk-body .content-img img {
        margin-bottom: 30px;
    }

    .cgw-choice .cgw-choice-card {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 30px;
    }

    .cgw-choice .cgw-choice-card p {
        max-width: 85%;
        margin-right: auto;
        margin-left: auto;
    }

    .crypto-experience .crypto-video {
        padding: 40px 30px;
    }

    .crypto-experience .crypto-video .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .crypto-experience .crypto-video .video-play-btn svg {
        width: 20px !important;
        height: 24px !important;
        left: 2px;
    }

    .download-app-section h1 {
        font-size: 28px;
        line-height: 28px;
    }

    .faq .faq-body .accordion .accordion-item .accordion-button {
        font-size: 16px;
        line-height: 22px;
        padding: 25px 40px 25px 18px;
    }

    .monitor-store,
    .swap-anything,
    .sdk,
    .cgw-choice,
    .crypto-experience,
    .download-now,
    .faq {
        padding: 30px 0px 30px 0px;
    }

    .download-now .btn-app img {
        width: 22px;
    }

    .download-now.aboutUs-page {
        padding-bottom: 0;
    }

    .download-now .download-app-section ul.nav {
        margin-bottom: 10px;
    }

    .cg-footer {
        padding-top: 40px;
        padding-bottom: 30px;
        position: relative;
        /* background-image: url('../assets/images/background-images/footer-bg.png');
        background-repeat  : no-repeat;
        background-position: top;
        background-size    : 100%; */
    }

    .cg-footer::before {
        content: '';
        position: absolute;
        width: 80%;
        height: 210px;
        transform: translateX(-50%) rotate(-25.082deg);
        -webkit-transform: translateX(-50%) rotate(-25.082deg);
        border-radius: 337px;
        background: rgba(248, 118, 20, 0.30);
        filter: blur(115.19999694824219px);
        top: 0;
        left: 50%;
    }

    .cg-footer ul.nav li a {
        border-bottom: 1px solid #FFFFFF1A;
    }

    .cg-footer .footer-bottom {
        margin-top: 10px;
        line-height: 25px;
        color: #9D9FA2;
    }

    .faq .faq-body .accordion .accordion-item .accordion-button::after,
    .faq .faq-body .accordion .accordion-item .accordion-button:not(.collapsed)::after {
        background-image: url('../assets/images/icons/Shape.svg');
    }

    .aboutUs.inner-banner {
        padding-top: 145px;
        padding-bottom: 25px;
        background-position: top 25% center;
        background-size: 80%;
    }

    .core-values .core-card {
        max-width: 100%;
    }

    .aboutUs.inner-banner::before {
        width: 34px;
        height: 34px;
        right: 20px;
        top: 100px;
    }

    .aboutUs.inner-banner::after {
        width: 34px;
        height: 34px;
        left: 30px;
        bottom: 20px;
    }

    .aboutUs.inner-banner .page-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .core-values {
        padding-top: 30px;
        padding-bottom: 15px;
    }

    .core-values p.top {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 30px;
    }

    .core-values .core-card-row .core-img-mob img {
        height: 53px !important;
    }

    .faq-main::before {
        right: 20px;
        top: 95px;
    }

    .faq-main {
        padding-top: 120px;
    }

    .support-sec {
        padding-top: 110px;
        padding-bottom: 60px;
    }

    .support-sec::before {
        right: 20px;
        top: 105px;
        width: 20px;
        height: 20px;
        background-size: 100%;
    }

    .support-sec::after {
        display: none;
    }

    .support-sec .support-body .support-form {
        padding-top: 30px;
    }

    section.main-banner .section-img-dsktop {
        max-width: 225px;
    }

    section.main-banner .section-img-dsktop .coin-1 {
        width: 30px;
        height: 32px;
    }

    section.main-banner .section-img-dsktop .coin-2 {
        width: 36px;
        height: 37px;
    }

    section.main-banner .section-img-dsktop .coin-3 {
        width: 37px;
        height: 38px;
    }

    section.main-banner .section-img-dsktop .sphere-1 {
        width: 16px;
        height: 16px;
    }

    section.main-banner .section-img-dsktop .sphere-2 {
        display: none;
    }
}

@media (max-width: 580px) {

    section .container.container-hf,
    section .container.container-main {
        max-width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

    section.cg-footer .container.container-hf {
        max-width: 90%;
    }

    .swap-anything .swap-banner img {
        max-width: 120px;
    }
}

@media (max-width: 440px) {
    .swap-anything .swap-banner img {
        max-width: 100px;
    }
}

.image {
    opacity: 0;
    transition: all 0.5s ease;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
}

.image.active {
    opacity: 1;
}

/* .image.image--1.active {
    background-color: #ffffff1a;
}

.image.image--2.active {
    background-color: #ffffff1a;
}

.image.image--3.active {
    background-color: #ffffff1a;
}

.image.image--4.active {
    background-color: #ffffff1a;
}

.image.image--5.active {
    background-color: #ffffff1a;
} */

.locker {
    position: relative;
    padding-top: 70px;
    /* display           : grid;
    grid-template-columns: [full-start] minmax(4.2rem, 1fr) [center-start] repeat(12, [col-start] minmax(min-content, 8rem) [col-end]) [center-end] minmax(4.2rem, 1fr) [full-end]; */
    /* background-image  : url('../assets/images/background-images/swap-bg.png');
    background-repeat    : no-repeat;
    background-position  : top 45% right 0;
    background-size      : 40%;
    background-attachment: fixed; */
}

.locker__image {
    position: relative;
    /* grid-column: col-start 2/col-end 6; */
}

.locker__image img {
    width: auto;
    /* max-width : 100%; */
    height: 100%;
    /* max-height: 100%; */
    position: absolute;
    transition: all 2.5s ease;
    /* margin-top: 160px; */
}

.locker__container {
    position: sticky;
    position: -webkit-sticky;
    top: 170px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #ffffff1a; */
    border-radius: 20px;
}

/* .locker__content {
    grid-column: col-start 8/center-end;
  } */
.locker__section {
    height: 70vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0.1;
    transition: all 1s ease;
    /* border-top  : 1px solid #cdcdcd; */
}

.locker__section.active {
    opacity: 1;
}

.locker__section p {
    width: 80%;
    font-size: 20px;
}

.locker__section p.gradient-text {
    background: linear-gradient(89deg, #FEB342 -8.5%, #F87614 107.9%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wow {
    visibility: hidden;
}

.wow.visible {
    visibility: visible;
}

/* .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0.2s;
}

@-webkit-keyframes fadeInUp {
    0% {
      opacity: 0;
      -webkit-transform: translateY(20px);
      transform: translateY(20px);
    }
  
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
      transform: translateY(20px);
    }
  
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }
}
  
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
} */

@media (max-width: 1430px) {
    .locker__image img {
        height: 85%;
    }
}

@media (max-width: 1200px) {
    .locker__image img {
        height: 75%;
    }
}

#video-modal {
    overflow-y: hidden;
}

#video-modal .modal-dialog .modal-content .modal-body .video-wraper {
    width: 100%;
    height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
}

#video-modal .modal-dialog .modal-content .modal-body video {
    border-radius: 20px;
}

.modal-backdrop {
    background: #171717a6 !important;
    backdrop-filter: blur(7px) !important;
    -webkit-backdrop-filter: blur(7px) !important;
    opacity: 1 !important;
}