* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    font-family: Frank-Light;
}

body {
    /* color: #ffffff !important; */
    /* background: #020316 !important; */

}

/* Your natural Dark Mode setup */
body {
    background: #020316 !important;
    color: #ffffff !important;
    --bg-card: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #333333;
    display: flex;
    flex-direction: column;
}

/* Updated to target both html and body */
.light-mode body {
    background: #f5f7fa !important;
    color: #000 !important;
    --text-primary: #2d3436 !important;
    --text-secondary: #636e72 !important;
    --border-color: #dfe6e9 !important;
}

body,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff !important;
}

.light-mode p,
.light-mode h1,
.light-mode h2,
.light-mode h3,
.light-mode h4,
.light-mode h5,
.light-mode h6,
.light-mode li{
    color: #000 !important;
}




body,
p,
a {
    font-family: 'lato', sans-serif;

}

a {
    text-decoration: none !important;
    color: #fff !important;
    transition: 0.5s ease;
}

img {
    width: 100%;
    object-fit: cover;
}


a:is(:link, :active, :visited).active {
    color: #06B3E4;
}

/* Container for the switch */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

.theme-switch input {
    display: none;
    /* Hide the actual checkbox */
}

/* The slider background */
.theme-switch-wrapper .slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
}

.theme-switch-wrapper .slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 26px;
    z-index: 2;
}

/* When the checkbox is checked (Dark Mode) */
input:checked+.slider {
    background-color: #2e7d32;
    /* Matches your success green */
}

input:checked+.slider:before {
    transform: translateX(26px);
}

/* Round shape */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Icons inside the slider */
.icon {
    font-size: 14px;
    user-select: none;
}

/* #success_box {
    width: 35%;
    margin: 1% auto;
    background-color: #f0fff8;
    color: green;
    text-align: center;
    padding: 1%;
    border-radius: 5px;
    transition: 0.2 ease-in-out;
}

#error_box {
    width: 35%;
    margin: 1% auto;
    background-color: #f8d7da;
    color: red;
    text-align: center;
    padding: 1%;
    border-radius: 5px;
    transition: 0.2 ease-in-out;
} */

/* Base styles for both boxes */
#error_box,
#success_box {
    padding: 15px 20px;
    margin: 20px auto;
    border-radius: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    text-align: center;
    max-width: 500px;
    border: 1px solid;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    /* Needed for absolute positioning of the X */
    padding-right: 40px;
    /* Make room so text doesn't hit the X */
}

/* Error Box Styling */
#error_box {
    background-color: #fce4e4;
    color: #cc0033;
    border-color: #f7a0a0;
    animation: shake 0.5s ease-in-out;
}

.close-btn {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    opacity: 0.6;
}

.close-btn:hover {
    opacity: 1;
}

/* Success Box Styling */
#success_box {
    background-color: #e7f4e4;
    color: #2e7d32;
    border-color: #c3e6cb;
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Media Query */
@media (max-width: 600px) {

    #error_box,
    #success_box {
        width: 90%;
        /* Take up more space on mobile */
        font-size: 14px;
        /* Slightly smaller text */
        padding: 12px;
        margin: 10px auto;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

#loftloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    /* background: transparent; */
    /* Dark background to match your site */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* opacity: 0.5; */
}

.blue-loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(46, 204, 113, 0.2);
    /* Faint green ring */
    border-top: 5px solid #06B3E4;
    /* Solid green spinning part */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Hide class to be triggered by JS */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.float-in {
    opacity: 0;
    animation: floatIn 1s ease-out forwards;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
    will-change: transform, opacity;
    transition-delay: 0.1s;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
    will-change: transform, opacity;
    transition-delay: 0.1s;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-top {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.6s ease-out;
}

.slide-in-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-bottom {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.slide-in-bottom.visible {
    opacity: 1;
    transform: translateY(0);
}

.flip-in {
    transform: rotateY(90deg);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    transform-style: preserve-3d;
}

.flip-in.visible {
    transform: rotateY(0deg);
    opacity: 1;
}

.flip-out {
    transform: rotateY(90deg);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    transform-style: preserve-3d;
}

.flip-out.visible {
    transform: rotateY(0deg);
    opacity: 1;
}



/* header */
/* .sticky {
    position: sticky;
    top: 0;
    background-color: rgb(0, 0, 0, 0.8);
} */

.caretright {
    width: 17px;
    font-weight: bolder;
}

@media screen and (max-width: 576px) {
    .col-f-nav {
        position: absolute;
    }
}

.container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.col-f-nav {
    transition: .5s ease-in-out;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: rgb(0, 0, 0, 0.8);
}

.col-f-nav .header {
    height: 60px;
    width: 100%;
    /* overflow: hidden; */
}

.col-f-nav .header>.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    box-sizing: border-box;
    overflow: wrap;
    padding: 0 !important;
}

.header>.row>* {
    max-height: 100%;
    flex-shrink: 1;
}

.navbar-toggler {
    border: none;
    outline: none;
    display: none;

}

.navbar-brand {
    height: 60px !important;
    display: flex;
    align-items: center;
}

#navbarSupportedContent.active {
    display: block;
    background: #212529;
    max-width: 50% !important;
    margin-left: auto;
}

#navbarSupportedContent.active li {
    text-align: center;
}

.navbar-brand img {
    height: 100%;
    display: block;
    object-fit: cover;
    width: 120px;
}

@media (max-width: 976px) {
    .col-sm-12 {
        display: flex;
        justify-content: space-between;
    }

    .navbar-toggler {
        display: block;
        float: right;
    }
}

/* @media (max-width: 576px) {
    .nav {
        margin-top: 0 !important;

    }
} */

@media (max-width: 976px) {
    .nav {
        margin-top: -15px;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1000;
    }

    .navbar {
        position: relative;
        display: inline-block;
    }

}

@media (max-width: 976px) {
    .navbar-expand-lg {
        width: 100%;
    }
}

.navbar-nav a.active {
    color: #52afee;
}

.dropdown-menu {
    background: #212529 !important;
    color: white;
    margin-left: -5em;

}

.dropdown-menu a {
    background: #212529 !important;
    color: white;
}

.dropdown-menu a:hover {
    background: #fff !important;
    color: white;
}

.dropdown-menu {
    -webkit-box-shadow: 0 7px 20px rgba(85, 85, 85, 0.16);
    -moz-box-shadow: 0 7px 20px rgba(85, 85, 85, 0.16);
    box-shadow: 0 7px 20px rgba(85, 85, 85, 0.16);
    border: 0 !important;
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

@media (min-width: 992px) {
    .animate {
        animation-duration: 0.3s;
        -webkit-animation-duration: 0.3s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
}

nav ul li a {
    color: white !important;
    font-weight: 600 !important;
    font-size: 11px !important;
}

nav ul li a:hover {
    color: #52afee !important;
}

a:hover {
    color: #52afee;
}

@media (max-width: 976px) {
    .brand {
        width: 8em;
    }
}

.brand {
    width: 8em;
    float: left;
    position: relative;
    z-index: 3;
}

img {
    max-width: 100%;
    max-height: 100%;
}

@media (max-width: 976px) {
    .top-contact-wrap {
        padding: 0;
    }
}

@media (max-width: 976px) {
    .top-contact-wrap {
        background: rgba(0, 0, 0, 0.6) !important;
    }
}

.top-contact-wrap {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}


.custom-select {
    background: rgba(0, 0, 0, 0.9);
    color: #52afee;
    border-radius: 5px;
    margin: 11px;
    float: right;
    border: 1px solid #52afee;
    padding: 0 20px;
}

@media (max-width: 976px) {
    .top-signup {
        float: left !important;
    }
}

.top-signup {
    color: #fff;
    background: #52afee;
    border: 1px solid #52afee;
}

.top-signup:hover {
    background: black;
    color: #52afee;
}

.top-signup,
.top-login {
    padding: 0px 25px;
    font-weight: 600;
    border-radius: 5px;
    transition: .3s ease-in-out;
    font-size: 15px;
    line-height: 2;
    margin: 10px 1px;
    text-decoration: none;
}

.float-right {
    float: right;
}

@media (max-width: 976px) {
    .display-none-mobile {
        display: none;
    }
}

.top-login {
    color: #fff;
}

.secondul.active {
    display: block;
}

header nav div .secondul a {
    display: flex;
}

header nav ul li {
    list-style: none;
    justify-content: space-between;
    font-weight: 600;
    font-size: 13px;
}

header div .login {
    background-color: transparent;
    border: none;
    width: 70px;
    font-weight: 600;
    margin-right: 10px;
    color: white;
    transition: 2s ease-in-out;
    transition-delay: 2s;
    position: relative;
    padding: 7px 15px;
}

header div .login:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10%;
    height: 3px;
    width: 120%;
    background: #52afee;
    transition: transform .25s ease-in-out;
}

.top-contact-wrap .logsign {
    display: flex;
}

.top-contact-wrap .dashlogdiv {
    position: relative;
    display: inline-block;
}

.top-contact-wrap .CheckProfileImage img {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    cursor: pointer;
    background-color: #fff;
}

.top-contact-wrap .myprofile2 {
    position: absolute;
    top: 50px;
    left: 0;
    background: #1d2028;
    padding: 20px;
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    z-index: 1000;
    border-radius: 5px;
    display: none;
    transition: 0.5s ease;
}

.top-contact-wrap .myprofile2.active {
    display: block;
}

.top-contact-wrap .myprofile2 a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 13px;
}

.dashlogdiv .myprofile2 .logout{
    color: red !important;
}

.top-contact-wrap .my_profile {
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

}

.top-contact-wrap .myprofile2 .my_profile:hover {
    color: #06B3E4;
}

@media (max-width: 976px) {
    .top-contact-wrap {
        width: 100%;
        gap: 30px;
        display: flex;
        justify-content: space-between;
        padding: 0;
        /* background-color: red !important; */
    }

    .top-signup {
        color: #fff;
        background: transparent;
        color: #52afee;
    }
}

@media (max-width: 576px) {}

@media (max-width: 976px) {
    .elementor-hidden-mobile {
        display: none;
    }
}

@media (max-width: 976px) {}




/* Index Page */
.first-elementor-column-gap-default {
    display: flex;
    width: 100%;
}

.first-elementor-column-gap-default>.elementor-column {
    width: 100%;

}

.first-elementor-column-gap-default>.elementor-column>.elementor-widget-wrap {
    width: 100%;

}

.first-elementor-column-gap-default>.elementor-column>.elementor-widget-wrap>.elementor-element {
    width: 100%;

}

.first-elementor-column-gap-default>.elementor-column>.elementor-widget-wrap>.elementor-element>.elementor-widget-container {
    width: 100%;
    border: 1px solid #f5f5f5;
}

.firstindexsec {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.firstindexsec .builtbyt {
    text-align: center;
    align-items: center;
    line-height: 4em;
    padding: 4em;
}

.firstindexsec .builtbyt h1 {
    font-size: 3em;
}

.firstindexsec .builtbyt p {
    line-height: 30px;
}

.firstindexsec span {
    color: #06B3E4;
}

.firstindexsec .create {
    background-color: #06B3E4;
    padding: 10px 15px;
    border: 1px solid #06B3E4;
    transition: 0.5s;
}

.firstindexsec .create:hover {
    color: #ffffff;
    background: #020316;
}

.firstindexsec .tvbtcimg {
    width: 80%;
}

.firstindexsec .tvbtcimg img {
    width: 100%;
    margin-top: 20px;
}

.firstindexsec .ctfx-mock-up {
    width: 80%;
    display: flex;
    justify-content: center;
    gap: 6em;
}

.firstindexsec .ctfx-mock-up div {
    width: 40%;
}

.firstindexsec .ctfx-mock-up img {
    width: 100%;
}

.firstindexsec .ctfx-mock-up .ctfx-mock-up2 {
    background-color: #131722;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 3em;
    padding: 20px;
}
.light-mode .firstindexsec .ctfx-mock-up .ctfx-mock-up2 {
    background-color: #dfe6e9;
}

.firstindexsec .ctfx-mock-up .ctfx-mock-up2 .prating1 {
    text-align: left;
}

.firstindexsec .ctfx-mock-up .ctfx-mock-up2 .prating1 p {
    text-align: left;
    font-size: 18px;
}

.firstindexsec .ctfx-mock-up .ctfx-mock-up2 article {
    overflow: hidden;
}

.firstindexsec .ctfx-mock-up .ctfx-mock-up2 .slider {
    position: relative;
    width: 100%;
    color: white;
}


.firstindexsec .ctfx-mock-up .ctfx-mock-up2 .slides {
    display: flex;
    width: 300%;
    overflow: hidden;
    background-color: #272C39;
    border-radius: 5px;
    padding: 30px 0;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.light-mode .firstindexsec .ctfx-mock-up .ctfx-mock-up2 .slides {
     background-color: #c3c7c9;;
}

.firstindexsec .ctfx-mock-up .ctfx-mock-up2 .slide {
    width: 100%;
    transition: transform 2s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.firstindexsec .ctfx-mock-up .ctfx-mock-up2 .prating2 div p {
    width: 90%;
    text-align: center;
}

.firstindexsec .ctfx-mock-up .ctfx-mock-up2 .prating2 div img {
    width: 70px;
    height: 70px;
    border-radius: 70px;
}

.firstindexsec .ctfx-mock-up .ctfx-mock-up2 .prating2 div h3 {
    font-weight: 600;
    font-size: 15px;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 10px;
    left: 30%;
}

.dots .dot {
    width: 11px;
    height: 11px;
    border-radius: 11px;
    cursor: pointer;
    text-align: center;
}

.indexfirstsvgsec {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-around;
    padding: 30px 0;
}

.indexfirstsvgsec .indexfirstsvg {
    width: 25%;
}

.indexfirstsvgsec .indexfirstsvg div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.indexfirstsvgsec .indexfirstsvg div p {
    text-align: center;
}

.trustedsec {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    overflow-x: hidden;
}

.trustedsec .trustedsecart {
    width: 45%;
}

.trustedsec .trustedsecart2 {
    line-height: 3em;
    padding: 20px 0;
    justify-content: space-between;
}

.trustedsec .trustedsecart2 p {
    line-height: 1.3em;
}

.trustedsec .trustedsecart2 .Buybtn {
    background-color: #06B3E4;
    padding: 10px 15px;
    border: 1px solid #06B3E4;
    transition: 0.5s;
}

.trustedsec .trustedsecart2 .Buybtn:hover {
    color: #ffffff;
    background: #020316;
}

/* body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background: #f9f9f9;
} */

.stats-section {
    padding: 50px 20px;
    width: 100% !important;
    overflow: hidden;
}

.stats-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.stats-section p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #555;
    text-align: center;
}

.stats-container {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 200px;
}

@media (max-width:976px) {
    .stat {
        padding: 5px;
        display: inline-block;
    }

    .stats-container {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0077cc;
}

/* Container must be relative and have a fixed height */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    /* Adjust height as needed (e.g., 47rem) */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Make the video fill the entire background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark tint so white text is readable */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Adjust opacity here */
    z-index: 2;
}

/* Content sits on the very top */
.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    /* Responsive font size */
    margin-bottom: 1rem;
    font-weight: 800;
    color: #fff !important;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff !important;
}

.hero-content p span {
    color: #06B3E4;
}

/* Button Styling without Bootstrap */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary {
    background-color: #f39c12;
    color: #fff;
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #e67e22;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}


.industrysec {
    padding: 30px;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.industrysec article {
    display: flex;
    justify-content: space-around;
}

.industrysec article .baicdiv1 {
    background: #000000;
    border: 1px solid #fff;
    width: 22%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.light-mode .industrysec article .baicdiv1 {
    background-color: #b0b0b0;
     box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.3);
     border: none;
}

.industrysec article .baicdiv1 div {
    line-height: 2em;
}

.industrysec article .getbtn {
    background-color: #06B3E4;
    padding: 10px 15px;
    border: 1px solid #06B3E4;
    transition: 0.5s;
}

.industrysec article .getbtn:hover {
    color: #ffffff;
    background: #020316;
}

.startinvestsec {
    width: 100%;
    text-align: center;
    padding: 3em 0;
    overflow: hidden;

}

.startinvestsec .startinvestsecdiv {
    display: flex;
    justify-content: center;
    gap: 3em;

}

.startinvestsec .startinvestsecdiv .imdiv {
    width: 25%;
}

.depositwithdrawalsec {
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
}

.depositwithdrawalsec article {
    overflow: hidden;
    width: 80%;
}

.depositwithdrawalsec article .slider2 {
    width: 100%;
}

.depositwithdrawalsec article .slider2 .slides2 {
    width: 120%;
    overflow: hidden;
    background-color: #06B3E4;
}

.slide2 {
    width: 13%;
    transition: transform 2s ease;
}

.depositwithdrawalsec .depositwithdrawaldiv .depositwithdrawalimgd {
    display: flex;
    gap: 10px;
    align-self: center;
}

.depositwithdrawalsec .depositwithdrawaldiv div {
    display: flex;
}

.growwealthsec {
    display: flex;
}



@media (max-width: 976px) {
    .firstindexsec .ctfx-mock-up {
        flex-direction: column;
    }

    .firstindexsec .ctfx-mock-up div {
        width: 100%;
    }

    .industrysec {
        margin-top: 20px;

    }

    .industrysec article {
        display: grid;
        grid-template-columns: repeat(2, 40%);
        gap: 2em;
    }

    .industrysec article .baicdiv1 {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .firstindexsec .ctfx-mock-up {
        flex-direction: column;
    }

    .firstindexsec .ctfx-mock-up div {
        width: 100%;
    }

    .indexfirstsvgsec {
        flex-direction: column;
        padding: 20px;
        width: 100% !important;
        overflow: hidden;
    }

    .indexfirstsvgsec .indexfirstsvg {
        width: 100%;
    }

    .trustedsec {
        flex-direction: column;
        padding: 20px;
    }

    .trustedsec .trustedsecart {
        width: 100%;
    }

    .trustedsec .trustedsecart img {
        width: 70%;

    }

    .industrysec {
        margin-top: 20px;
    }

    .industrysec article {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2em;
    }

    .industrysec article .baicdiv1 {
        width: 70%;
    }

    .startinvestsec .startinvestsecdiv {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3em;
    }

    .startinvestsec .startinvestsecdiv .imdiv {
        width: 80%;
    }
}

/* About */

.mainaboutsec {
    /* background-color: #222941; */
    color: white;
}

.aboutsec {
    background-image: url(../img/bg-about-header.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 60vh;
}

.aboutsec .h2 {
    height: 35vh;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.aboutsec h2 {
    text-align: center;
    font-size: 30px;
}

.aboutsec1 {
    display: flex;
    justify-content: space-around;
    padding: 0 150px 100px 0;
}

.aboutsec1 .article1 {
    width: 40%;
    padding-right: 30px;
}

.aboutsec1 .article1 .imgdiv {
    width: 400px;
    margin-top: -10%;
}

.aboutsec1 .article1 .imgdiv img {
    width: 100%;
    top: -5%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

.aboutsec1 .article1 .textdiv h2 span {
    padding-left: 10px;
}

.aboutsec1 .article1 .textdiv p {
    opacity: 0.5;
    margin-left: 0px;
}

.aboutsec1 .article2 {
    width: 35%;
    display: flex;
    flex-direction: column;
    place-content: center;
    padding: 30px 0 0 0;
    margin-right: 40px;
}

.aboutsec1 .article2 h1 {
    font-size: 35px;
    font-weight: 500;
}

.aboutsec1 .article2 h1 span {
    padding-left: 10px;
}

.aboutsec1 .article2 div {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: -9px;
}

.aboutsec1 .article2 div h2 {
    font-size: 25px;
    font-weight: 500;
}

.aboutsec1 .article2 div div p {
    font-weight: 600;
    line-height: 25px;
}

.aboutsec1 .article2 div div span {
    opacity: 0.5;
    font-weight: 500;
    font-size: 14px;
}

.aboutcompany {
    display: flex;
    justify-content: center;
}

.aboutcompany article {
    width: 70%;
    text-align: center;
}

.aboutcompany h1 {
    font-weight: 500;
    font-size: 35px;
}

.aboutcompany p {
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
}

@media (max-width: 976px) {
    .aboutsec {
        height: 40vh;
    }

    .aboutsec .h2 {
        height: 40vh;
    }

    .aboutsec1 {
        width: 100%;
        display: flex;
        flex-direction: column;
        padding-left: 30px;
    }

    .aboutsec1 .article1 {
        width: 80vw;
        overflow: hidden;
        max-width: 90vw;
        padding-right: 0;
    }

    .aboutsec1 .article2 {
        width: 80vw;
        overflow: hidden;
        margin-right: 0;
        padding: 0;
    }

    .aboutsec1 .article1 .imgdiv img {
        width: 70%;
        top: 5%;
        margin-top: 10%;
        height: auto;
    }
}

.multi {
    display: flex;
    width: 100%;
    justify-content: space-around;
    padding: 60px 20px;
}

.multi div {
    width: 28%;
}

.multi div h6 {
    font-size: 20px;
}

.multi div h6 span {
    font-size: 20px;
    padding-left: 10px;
    padding-top: 5px;
    margin-top: 5px;
    font-weight: 500;
}

.multi div p {
    margin-top: 10px;
    opacity: 0.5;
}

.ourteam article {
    text-align: center;
    gap: 30px;
}

.ourteam article h1 {
    font-size: 30px;
    font-weight: 500;
}

.ourteam article div {
    width: 50%;
    text-align: center;
    margin-top: 50px;
}

.ourteam div img {
    width: 200px;
    height: 200px;
    border-radius: 150px;
    object-fit: cover;
}

.clientoriented {
    display: flex;
    align-items: center;
    padding: 30px;
    /* justify-content: space-between; */
    gap: 7em;
}

.clientoriented .article1 {
    width: 40%;
}

.clientoriented .article2 {
    width: 40%;
}

.clientoriented .article2 h1 {
    font-size: 25px;
}

.clientoriented .article2 div {
    margin-bottom: 2em;
    line-height: 2em;
}


/* FAQ */


.mainFAQ {
    background-image: url('../img/bg-about-header.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.mainFAQ .FAQdiv {
    text-align: center;
    padding: 9em 0;
}

.FAQ .article123 {
    text-align: center;
    display: flex;
    align-items: center;
    place-content: center;
    padding: 5em 0;
}

.FAQ .article123 div {
    text-align: center;
    width: 70%;
}

.FAQ .article123 div h2 {
    margin-bottom: 40px;
}

.FAQ .article123 div p {
    line-height: 30px;
}

.accordion>.card:first-of-type {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.accordion>.card {
    overflow: hidden;
    background: rgba(0, 0, 0, 0.15);
}

.card {
    background: rgba(0, 0, 0, 0.15);
    color: #a9b5cb;
    font-size: .9em;
}

.cardbody1 {
    display: none;
}

.cardbody1.active {
    display: block;
}

.cardbody2 {
    /* display: none; */
}

.cardbody2.active2 {
    display: block;
}

.cardbody5 {
    /* display: none; */
}

.cardbody5.active3 {
    display: block;
}

/* contact */


.maincontactsec {
    background-image: url('../img/bg-contact.jpg');
}

.contacttexdiv {
    padding: 6em 0;
    text-align: center;
}
.light-mode .contacttexdiv h2{
    color: #ffffff !important;
}
.light-mode .contacttexdiv p{
    color: #ffffff !important;
}

.contactdiv {
    display: flex;
    justify-content: space-between;
    height: 90vh;
    width: 100%;
    /* background-color: #041e42; */
}

.contactdiv .first {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 45%;
    gap: 20px;
    padding: 100px 70px 50px 60px;
}

.contactdiv .first .touch {
    font-size: 12px;
    color: #8c8b8b;
}

.contactdiv .first h2 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 600;
}


.contactdiv .first div p {
    margin-top: 10px;
    font-size: 14px;
    color: gray;
    /* gap: 20px; */
}

.contactdiv .second {
    height: 100%;
    padding: 50px 0 50px 0;
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: red; */
}

.contactdiv .second .map {
    width: 90%;
    height: 100%;
}

.contactdiv2 {
    display: flex;
    padding: 60px;
    /* margin: 30px; */
}

.contactform {
    width: 60%;

}


.contactform form {
    background: rgba(255, 255, 255, 0.9);
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/8.jpg);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, .5);
    position: relative;
    gap: 20px;
    width: 100%;
}
.light-mode .contactform form {
    background: #dfe6e9;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/8.jpg);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, .5);
    position: relative;
    gap: 20px;
    width: 100%;
}

.contactform p {
    font-size: 13px;
    color: gray;
}

.contactform h2 {
    margin: 10px 0 40px 0;
    font-size: 20px;
    font-weight: 800;
}

.contactform form input {
    background: transparent;
    border: none;
    color: white;
    outline: none;
    border-bottom: 2px solid #52afee;
    padding: 20px 0 2px;
    padding-inline: 10px;
    width: 100%;
    margin-top: 25px;
}

.contactform form label {
    margin-top: -3em;
    color: #fff;
    display: block;
    transition: .3s ease-in-out;
    margin-top: -2em;
    pointer-events: none;
    opacity: 0.7;
}
.light-mode .contactform form label {
    color: #000;
}

.input-box:focus~label,
.input-box:valid~label {
    font-size: 12px;
    color: #628fb2;
    margin-top: -4em;
    opacity: 1;
}
.light-mode .input-box:focus~label,
.input-box:valid~label {
    font-size: 12px;
    color: #628fb2;
    margin-top: -4em;
    opacity: 1;
}

.contactform form textarea {
    background: transparent;
    border: 2px solid #52afee;
    color: white;
    outline: none;
    padding: 20px 0 2px;
    padding-inline: 10px;
    width: 100%;
    margin-top: 60px;
}

.contactform form button {
    background-color: #52afee;
    width: 20%;
    color: white;
    padding: 10px 0;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.5s ease;
    border: 1px solid #52afee;
}

.contactform form button:hover {
    background: black;
    color: #52afee;
}


.contactdiv2 .contactright {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 30px;
}

.contactdiv2 .contactright div {
    display: flex;
}

.contactdiv2 .contactright .hat {
    padding: 0 20px 0 40px;
}

.contactdiv2 .contactright .hat img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.contactdiv2 .contactright .description {
    display: flex;
    align-items: center;
}

.contactdiv2 .contactright .description p {
    font-size: 14px;
}

.contactdiv2 .contactright .description p span {
    font-weight: 700;
}

a:is(:link, :active, :visited).active {
    text-align: center;
    color: blue;
}

a:is(:link, :active, :visited).active:hover {
    border-bottom: none;
}

@media (max-width: 976px) {
    .contactdiv {
        display: inline-block;
        width: 100%;
    }

    .contactdiv .first {
        width: 100%;
    }

    .contactdiv .second {
        width: 100%;
        height: 50vh;
    }

    .contactdiv2 {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .contactdiv2 .contactright {
        width: 100%;
    }

    .contactdiv2 .contactright {
        align-items: center;
        margin-top: 20px;
    }

    .contactdiv2 .contactform {
        width: 100%;
    }
}

/* crypto */

.maincrypto {
    font-family: Frank-Light;
    color: #fff;
    background-color: #222941;
}
.light-mode .maincrypto {
    background-color: #f5f7fa;
    color: #f5f7fa;
}

.maincrypto .crypto {
    background: url('../img/slider3.jpg');
}

.maincrypto .crypto div div {
    margin-left: 7em;
    padding: 6em 0 2em;
}

.maincrypto .homecrypto {
    margin-top: 5em;
    width: 100%;
    background-color: #222632;
    padding-top: 5px;
    padding-inline: 30px;
    display: flex;
    align-content: center;
}
.light-mode .maincrypto .homecrypto {
    background-color: #b0b0b0;
}

.maincrypto .homecrypto p {
    display: flex;
    align-self: center;
}

.maincrypto .homecrypto p span {
    opacity: 0.5;
    padding-left: 3px;
}

.maincrypto .firstarticle .row{
    overflow: hidden !important;
    width: 100% !important;    
}

.maincrypto .firstarticle .firstdiv {
    display: flex;
    flex-direction: row;
}

.maincrypto .firstarticle .firstdiv .firstdiv1 {
    width: 50%;
}

.maincrypto .firstarticle .firstdiv .firstdiv2 {
    width: 30%;
    background-color: #1e90ff;
}

.maincrypto .firstarticle .cryptoimg {
    background-color: #1e90ff;
    width: 100%;
    height: 11em;
}

.maincrypto .firstarticle .cryptoimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pad-55 {
    padding: 55px;
}

@media (max-width: 976px) {
    .colmaincat {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        display: block;
    }

    .colmaincat .container {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .crypto-cat {
        width: 100% !important;
        /* padding-left: 15px;
        padding-right: 15px; */
    }
}

.crypto-cat {
    padding: 30px;
}

.current-crypto {
    width: 90%;
    padding: 8px 15px;
    background: #52afee;
    font-size: 1.1em;
    margin: 5px;
    color: #fff;
}

.crypto-cat>a {
    text-decoration: none !important;
    color: #efefef;
    transition: .2s ease-in-out;
}

.crypto-cat>a>div {
    width: 90%;
    padding: 10px 15px;
    background: #efefef;
    font-size: 1.1em;
    margin: 5px;
    color: #404040;
    transition: .5s ease;
}

.crypto-cat>a>div:hover {
    background-color: #222941;
    color: #fff;
}

.plan-signup-crypto {
    width: 140px;
    border-radius: 40px;
    background: #52afee;
    position: relative;
    padding: 12px 0 !important;
    color: #fff;
    overflow: hidden;
    transition: .5s ease;
    font-weight: 600;
}

.plan-signup-crypto:hover {
    background: black;
    color: #52afee;
}

.col-crypto {
    padding: 50px;
}

.t-h2 {
    font-size: 4em;
    text-align: center;
}

@media (max-width: 976px) {
    .t-h2 {
        font-size: 2em;
    }
}


img {
    max-width: 100%;
    max-height: 100%;
}

.sign-up-col-txt p,
h3 {
    text-align: left;
}

.t-p {
    font-size: 1.1em;
    line-height: 2.1;
}

.crypto-list li {
    list-style: none;
    padding: 10px;
}



/* About Page */

.fiveyearssec {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.fiveyearssec .fiveyearsart {
    width: 45%;
}

.fiveyearssec .fiveyearsart h1 {
    font-size: 4em;
}

.fiveyearssec .fiveyearsart p {
    font-size: 20px;
}

.fiveyearssec .fiveyearsart div img {
    width: 80%;
}

.Safetransparentsec {
    display: flex;
    flex-direction: column;
    align-items: center;
    place-content: center;
    width: 90%;
    padding: 4em 0;
    margin: auto;
}

.Safetransparentsec h1 {
    font-size: 4em;
    padding: 20px 0;
    text-align: center;
}

.Safetransparentsec h2 {
    font-size: 2.4em;
    padding: 20px 0;
    text-align: center;
}

.Safetransparentsec p {
    line-height: 30px;
    text-align: center;
}

.Skillset {
    padding-top: 0;
}

.letGrow {
    padding-top: 0;
}

.howitworks {
    padding: 0 30px;
}

.howitworks div {
    padding-bottom: 20px;
}

.howitworks h1 {
    text-align: center;
    padding-bottom: 1.3em;
}

.howitworks h5 {
    font-weight: 900;
    padding-bottom: 0.3em;
}

.howitworks li {
    list-style: upper-alpha;
    list-style-position: outside;
}

.RedHeartsec {
    margin: auto;
    width: 80%;
    text-align: center;
    padding: 20px 0;
}

.RedHeartsec .RedHeartimg {
    width: 20%;
    align-self: center;
    margin: auto;
}

.RedHeartsec .RedHeartimg img {
    width: 100%;
}

@media (max-width: 976px) {
    .fiveyearssec .fiveyearsart h1 {
        font-size: 3em;
    }

    .fiveyearssec .fiveyearsart p {
        font-size: 18px;
    }

    .Safetransparentsec h1 {
        font-size: 3em;
    }

    .Safetransparentsec h2 {
        font-size: 1.6em;
    }
}

@media (max-width: 576px) {
    .fiveyearssec {
        flex-direction: column;
    }

    .fiveyearssec .fiveyearsart {
        width: 90%;
    }

    .fiveyearssec .fiveyearsart h1 {
        font-size: 2em;
    }

    .fiveyearssec .fiveyearsart p {
        font-size: 16px;
    }

    .Safetransparentsec h1 {
        font-size: 2em;
    }

    .Safetransparentsec h2 {
        font-size: 1.2em;
    }

    .RedHeartsec .RedHeartimg {
        width: 30%;
    }

    .RedHeartsec {
        width: 90%;
    }
}

/* Sign up */

.signupbody {
    /* background-color: #131722 !important; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media (width: 976px) {
    .signupbody {
        margin-top: 300px;
    }
}

.signupbody main {
    display: flex;
    flex-direction: column;
    align-self: center;
    width: 100%;
}

.signupbody main .goback {
    position: absolute;
    left: 5%;
    top: 7%;
    font-size: large;
    color: #06B3E4;
    transition: 0.5s ease;
}

.signupbody main .goback:hover {
    color: #fff;
}

.signupsec {
    width: 40%;
    margin: auto;
    text-align: center;
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-self: center;
    position: relative;
}

.light-mode .signupsec {
    color: #000;
}

.signupsec .signupimg {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.signupsec .signupimg img {
    width: 50%;
    align-self: center;
    margin-bottom: 20px;
}

.signupsec form {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
    background: #1E222D;
}


.light-mode .signupsec form {
    background: #f5f7fa;
    color: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.4);
}

.signupsec form div {
    display: flex;
    flex-direction: column;
}

.signupsec form .password {
    display: flex;
    position: relative;
    /* background-color: #fff; */
}

.signupsec form .password img {
    width: 4%;
    position: absolute;
    right: 5%;
    top: 70%;
    display: none;
    cursor: pointer;
}

#hide1 {
    display: block;
}

#hide2 {
    display: block;
}

#loginhide {
    display: block;
}

.signupsec form label {
    font-weight: 600;
    text-align: left;
    padding: 20px 0 3px;
}

.signupsec form input {
    padding: 3px 0;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    padding-inline: 10px;
}

.signupsec form input:focus {
    color: #ffffffB8;
    border: 1px solid #4073EC;
    outline: none;
    border-radius: .25rem;
    -webkit-box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075) 0 0 20px rgba(110, 0, 225, .1);
    box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075),
        0 0 20px rgba(110, 0, 225, .1);
}

.light-mode .signupsec form input {
    box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.1);
    border: 1px solid black;
}

.signupsec form select {
    padding: 7px 0;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #1E222D;
    color: #fff;
}

.light-mode .signupsec form select {
    background: #f5f7fa;
    color: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.4);
}

.signupsec form .create {
    background-color: #06B3E4;
    color: #fff;
    padding: 8px 0;
    border: 1px solid #06B3E4;
    transition: 0.5s;
    width: 100%;
    margin-top: 20px;
}

.signupsec form .create:hover {
    color: #ffffff;
    background: #020316;
}

.signupsec form .already {
    text-align: right;
    margin-top: 10px;
}

.signupsec form .already span {
    opacity: 0.6;
}

.signupsec form .already a {
    color: #06B3E4 !important;
    text-decoration: underline !important;
    padding-left: 5px;
    transition: 0.5s ease;
}

.signupsec form .already a:hover {
    color: #fff;
}

.Rememberforgot {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 0 0;
}

.Rememberforgot .Remembercheckboxdiv {
    display: flex;
    place-content: center;
    align-items: center;
    flex-direction: row;
    cursor: pointer;
}

.Rememberforgot .Remembercheckboxdiv label {
    margin-top: -17px;
    margin-left: 5px;
    font-weight: 500;
    opacity: 0.6;
    cursor: pointer;
}

.Rememberforgot .Remembercheckboxdiv span {
    padding-left: 10px;
    opacity: 0.6;
}

.Rememberforgot .Forgot {
    color: #fff;
    opacity: 0.6;
}

@media (max-width: 976px) {
    .signupsec {
        width: 70%;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .signupsec>div {
        margin-top: 70px;
    }
}

/* Footer */

footer {
    background: url(../img/footer.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10px;
    font-size: 1.2em;
    color: #a9b5cb;
}

footer a {
    text-decoration: none !important;
    color: white !important;
}

footer a:hover {
    text-decoration: none !important;
    color: #52afee !important;
}

footer .footerimg {
    display: flex;
    justify-content: space-between;
}

footer img {
    max-width: 100%;
    height: 50px;
    max-height: 100%;
    width: 5em;
}

.footer-link span {
    font-size: .7em;
}

.footer-link a {
    font-size: .7em;
    padding: 10px;
    text-align: center;
}

footer .support {
    opacity: .8;
    text-decoration: underline;
}