@font-face {
    font-family: 'ClashGrotesk';
    src: url('../fonts/ClashGrotesk-Variable.woff2') format('woff2'),
         url('../fonts/ClashGrotesk-Variable.woff') format('woff'),
         url('../fonts/ClashGrotesk-Variable.ttf') format('truetype');
    font-weight: 200 700;
    font-display: swap;
    font-style: normal;
}

/* Fallback for non-variable font support */
@font-face {
    font-family: 'ClashGrotesk';
    src: url('../fonts/ClashGrotesk-Extralight.woff2') format('woff2'),
         url('../fonts/ClashGrotesk-Extralight.woff') format('woff'),
         url('../fonts/ClashGrotesk-Extralight.ttf') format('truetype');
    font-weight: 200;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'ClashGrotesk';
    src: url('../fonts/ClashGrotesk-Light.woff2') format('woff2'),
         url('../fonts/ClashGrotesk-Light.woff') format('woff'),
         url('../fonts/ClashGrotesk-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'ClashGrotesk';
    src: url('../fonts/ClashGrotesk-Regular.woff2') format('woff2'),
         url('../fonts/ClashGrotesk-Regular.woff') format('woff'),
         url('../fonts/ClashGrotesk-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'ClashGrotesk';
    src: url('../fonts/ClashGrotesk-Medium.woff2') format('woff2'),
         url('../fonts/ClashGrotesk-Medium.woff') format('woff'),
         url('../fonts/ClashGrotesk-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'ClashGrotesk';
    src: url('../fonts/ClashGrotesk-Semibold.woff2') format('woff2'),
         url('../fonts/ClashGrotesk-Semibold.woff') format('woff'),
         url('../fonts/ClashGrotesk-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'ClashGrotesk';
    src: url('../fonts/ClashGrotesk-Bold.woff2') format('woff2'),
         url('../fonts/ClashGrotesk-Bold.woff') format('woff'),
         url('../fonts/ClashGrotesk-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

.fa-solid, .fas {
    font-weight: 400 !important;
    font-family: 'FontAwesome' !important;
    color: var(--secondry-color);
    font-size: 14px;
}


:root {

    --primary-color: #121212;  /* Black Color */
    --secondry-color: #EEBA2C; /* Yellow Color */
    --tertiary-color: #262626; /* Gray Color */
    --grey-color: #212121;  /* Light Gray Color */

    --text-grey-color: #BDBEBE;  /* Light Gray Color */
    --white-color: #fff;
    --black-color: #000;
    --red-color: #FF6040;
    --light-black-color:#161616;

	--hero-heading-font-size: 70px;
    --heading-font-size: 64px;
    --sub-heading-font-size: 50px;

    --base-font-size: 16px;
    --body-font-size: 16px;

    --card-font-size: 26px;
    --card-text-size: 16px;

    --accordion-button-size: 22px;
    --accordion-text-size: 16px;

    --tab-heading-size: 26px;
    --trader-heading-size: 30px;
    --box-heading-size: 30px;

    --light-font-weight: 300;
    --regular-font-weight: 400;
    --medium-font-weight: 500;
    --semi-bold-font-weight: 600;
    --bold-font-weight: 700;
    --extra-font-weight: 800;
    --heavy-font-weight: 900;


    --base-font-family: 'Inter';
    --heading-font-family: 'ClashGrotesk';


}
html, body{
    overflow-x: hidden;
}
body{
    background-image: url(../images/stars-bg.png);
    background-repeat: repeat-x;
    background-color: var(--primary-color);
    font-family: var(--base-font-family) ;
    font-weight: var(--regular-font-weight);
}
.container{
    max-width: 1200px;
}
* {
	box-sizing: border-box;
}
a {
	text-decoration: none;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.btn{
    border-radius: 48px;
    padding: 12px 28px;
    font-size: var(--base-font-size);
    font-family: var(--base-font-family);
    font-weight: var(--semi-bold-font-weight);
    color: var(--white-color);
}
.primary-btn {
    border: 1px solid  var(--yellow-color);
    border-image-source: linear-gradient(180deg, #EEBA2C 0%, rgba(10, 124, 255, 0) 100%);
    background: rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 30px 0px rgba(238, 186, 44, 0.7) inset;
}
.primary-btn:hover {
    background: var(--secondry-color) !important;
    color: var(--black-color);
    transition: 2s ease;
}
.secondry-btn {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
    radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.06) inset;
    box-shadow: 1px 1px 0px 0px rgba(255, 255, 255, 0.08) inset;
    box-shadow: 0px 8px 40px -20px rgba(255, 255, 255, 0.2);
}
.secondry-btn:hover {
    background: var(--white-color);
    color: var(--black-color);
    transition: 1s ease;
}
.tertiary-btn {
    background-color: var(--secondry-color);
    color: var(--black-color);
}
.tertiary-btn:hover {
    background-color: var(--secondry-color);
    color: var(--black-color);
}
.tertiary-btn.light, .tertiary-btn.light:hover {
    background-color: var(--white-color);
    color: var(--black-color);
}

h1, h2, h3, h4, h5, h6{
     font-weight: var(--semi-bold-font-weight);
    font-family: var(--heading-font-family);
}

h1.heading {
    font-size: var(--hero-heading-font-size);
    color: var(--white-color);
    text-transform: capitalize;
    margin: 0;
    line-height: 1.1;
}
.sub-heading-small{
    font-size: calc(var(--hero-heading-font-size) - 10%);
    line-height: 0.9 !important;
}
h2 {
    font-size: var(--heading-font-size);
    color: var(--white-color);
    text-transform: capitalize;
    margin: 0;
    line-height: 1.2;
}
h3 {
    font-size: var(--sub-heading-font-size);
    color: var(--white-color);
    text-transform: capitalize;
    margin: 0;
    line-height: 1.1;
}
p.body-text {
    font-size: var(--body-font-size);
    font-weight: var(--regular-font-weight);
    font-family: var(--base-font-family);
    margin: 0;
}
p.base-text {
    font-size: var(--base-font-size);
    font-weight: var(--regular-font-weight);
    font-family: var(--base-font-family);
    margin: 0;
}
.primary-color {
    color: var(--secondry-color);
}

.secondary-color {
    color: var(--black-color) !important;
}

.primary-bg{
    background: var(--secondry-color) !important;
}


.top-bar {
    background: #FF4B5C;
    padding: 8px 0;
}
.top-bar .inner-box {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.top-bar .inner-box p {
    margin: 0;
    color: var(--white-color);
}
.top-bar .inner-box strong {
    color: var(--white-color);
}
.top-bar .top-text-slider {
    position: relative;
    width: 33%;
}
.top-bar .top-text-slider .base-text {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.top-bar .top-text-slider .base-text.active {
    opacity: 1 !important;
}
 .top-text-slider .base-text.active {
   opacity: 1 !important;
}




.site-hader {
    background-color: var(--primary-color);
    padding: 10px 0;
}
.site-hader nav ul {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(38, 38, 38, 1);
    background: rgba(38, 38, 38, 0.59);
    backdrop-filter: blur(40px);
    border-radius: 50px;
    padding: 10px 10px;
}
.site-hader nav ul li a{
    font-size: var(--body-font-size);
    font-family: var(--base-font-family);
    font-weight: var(--regular-font-weight);
    color: var(--white-color);
    background: rgba(33, 33, 33, 1);
    border-radius: 32px;
    padding: 8px 28px;
}
.site-hader nav ul li.active a,
.site-hader nav ul li a:hover {
    color: var(--black-color);
    background: var(--secondry-color);
}
.site-hader ul {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: end;
}
.site-hader ul li a {
    font-size: var(--body-font-size);
    font-family: var(--base-font-family);
    font-weight: var(--semi-bold-font-weight);
    color: var(--white-color);
}
.site-hader ul li a.primary-btn {
    border: 1px solid  var(--yellow-color);
    border-image-source: linear-gradient(180deg, #EEBA2C 0%, rgba(10, 124, 255, 0) 100%);
    background: rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 30px 0px rgba(238, 186, 44, 0.7) inset;
    border-radius: 48px;
    padding: 14px 27px;
}
.hero-banner {
    background-image: url();
    background-repeat: no-repeat;
    background-size: cover;
/*    background-color: var(--primary-color);*/
    padding: 150px 0;
    position: relative;
}
.page-heading{
    padding: 80px 0 !important;
}
.hero-banner .banner-inner-sec {
    text-align: center;
    width: 950px;
    max-width: 100%;
    margin: auto;
}

.hero-banner .hero-graphic.left{
    position: absolute;
    top: 0;
    left: -300px;
    animation: hero-animation-left 30s linear infinite;
}
.hero-banner .hero-graphic.right{
    position: absolute;
    top: 330px !important;
    right: -300px;
    animation: hero-animation-right 30s linear infinite;
}

@keyframes hero-animation-left {
 0%{
    transform: rotate(0deg);
   }
100%{
    transform: rotate(360deg);
   }
}

@keyframes hero-animation-right {
   0%{
    transform: rotate(0deg);
   }
   100%{
    transform: rotate(360deg);
   }
}
.second-section {
    background-color: var(--light-black-color);
    padding: 80px 0;
}
.second-section ul li.box {
    border-radius: 40px;
    padding: 40px 90px 40px;
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}
.second-section ul li:first-child {
    background: rgba(69, 68, 68, 1);
}
.second-section ul li:nth-child(2) {
    background: rgba(62, 60, 60, 1);
}
.second-section ul li:nth-child(3) {
    background: rgba(48, 47, 47, 1);
}
.second-section ul li:nth-child(4) {
    background: rgba(38, 38, 38, 1);
}
.second-section ul li.box .icon-box img {
    border-radius: 50%;
    border: 3.61px solid rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}
.second-section ul li.box h4 {
    font-size: var(--box-heading-size);
    font-weight: var(--semi-bold-font-weight);
    font-family: var(--heading-font-family);
    color: var(--white-color);
    margin: 0;
    line-height: 1.1;
    padding-bottom: 10px;
    max-width: 400px;
    text-transform: capitalize;
    width: 100%;
}
.second-section p {
    color: var(--text-grey-color);
    margin: 0;
    max-width: 406px;
    width: 100%;
}

.third-tab-section {
    background-color: var(--grey-color);
    padding: 80px 0;
}
.third-tab-section .button-sec {
    text-align: center;
    margin-top: 30px;
}
.third-tab-section .instant-button {
    text-align: center;
    margin: 50px 0 30px;
}


.third-tab-section .funding-tabs ul.nav-tabs .tab-one .instant-button.btn {
    background: rgba(38, 38, 38, 1) !important;
    border: rgba(38, 38, 38, 1) 1px solid !important;

    border-radius: 999px;
    padding: 10px 70px;
    font-size: var(--body-font-size);
    font-weight: var(--semi-bold-font-weight);
    font-family: var( --base-font-family);
    color: var(--white-color);
    position: relative;
}
.third-tab-section .funding-tabs ul.nav-tabs .tab-two{
    background: rgba(38, 38, 38, 1) !important;
    border: 1px solid rgba(38, 38, 38, 1) !important;
    backdrop-filter: blur(40px) !important;
    width: fit-content;
    margin: auto;
    border-radius: 999px;
    padding: 6px;
    gap: 8px;
    display: flex;
}

.third-tab-section .funding-tabs ul.nav-tabs {
    background: none;
    border: none;
    backdrop-filter: blur(40px) !important;
    width: 400px;
    max-width: 100%;
    margin: auto;
    border-radius: 999px;
    padding: 6px;
    gap: 8px;
}

.third-tab-section .funding-tabs ul.nav-tabs .nav-link,
.third-tab-section .funding-tabs ul.inner-tab-list li a {
    background: var(--grey-color) !important;
    border-radius: 999px;
    padding: 10px 65px;
    font-size: var(--body-font-size);
    font-weight: var(--semi-bold-font-weight);
    font-family: var( --base-font-family);
    color: var(--white-color);
    transition: unset !important;
    position: relative;
}
.coming-soon-badge {
    position: absolute;
    background: #FF6040;
    font-size: 13px;
    padding: 3px 8px;
    border-radius: 32px;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 102px;
    text-align: center;
}
.third-tab-section .funding-tabs ul.nav-tabs .nav-link:hover{
    border: transparent 1px solid !important;
    transition: unset !important;
}
.third-tab-section .funding-tabs ul.nav-tabs .nav-link.active,
.third-tab-section .funding-tabs ul.inner-tab-list li a.active {
    background: var(--secondry-color) !important;
    color: var(--black-color);
    border: transparent 1px solid !important;
}
.third-tab-section .funding-tabs ul.inner-tab-list {
    background: rgba(38, 38, 38, 1) !important;
    border: 1px solid rgba(38, 38, 38, 1) !important;
    backdrop-filter: blur(40px) !important;
    width: fit-content;
    max-width: 100%;
    margin: 30px auto 70px;
    border-radius: 999px;
    padding: 4px 6px;
    display: flex !important;
    gap: 8px !important;
}
.third-tab-section .funding-tabs .card {
    padding: 40px;
    border-radius: 40px;
    background: rgba(33, 33, 33, 1);
    box-shadow: 0px 4.21px 8.42px 0px rgba(0, 0, 0, 0.25);
    height: 380px;
}
.third-tab-section .funding-tabs .funded-card h4,
.third-tab-section .funding-tabs .funded-card ul li {
    color: #3B3832 !important;
}
.third-tab-section .funding-tabs .card h4 {
    font-size: var(--tab-heading-size);
    font-weight: var(--semi-bold-font-weight);
    font-family: var(--heading-font-family);
    color: var(--white-color);
    margin: 0;
    padding-bottom: 30px;
}
.third-tab-section .funding-tabs .card ul li {
    font-size: var(--body-font-size);
    font-weight: var(--bold-font-weight);
    font-family: var(--base-font-family);
    color: var(--white-color);
    position: relative;
    padding-bottom: 15px;
    display: flex;
    gap: 10px;
}

.third-tab-section .funding-tabs .card.primary-bg{
    position: relative;
    top: -20px;
    height: calc(100% + 20px);
}

.third-tab-section .funding-tabs .card.primary-bg h4,
.third-tab-section .funding-tabs .card.primary-bg ul li{
    color: var(--primary-color);
}
.third-tab-section .funding-tabs .card ul li .icon {
    background: #3B3832;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    position: relative;
    top: 2px;
}
.third-tab-section .funding-tabs .card.primary-bg ul li .icon{
    background: rgba(38, 38, 38, 0.2);
}
.third-tab-section .funding-tabs .card ul li .icon img{
    width: 12px;
    height: 10px;
}
.third-tab-section .funding-tabs .card ul li span{
    font-weight: var(--regular-font-weight);
}
.forth-section {
    background-color: var(--light-black-color) !important;
    background: url(../images/globe-black.png);
    background-repeat: no-repeat;
    background-position: center, center;
    background-size: 600px;
    height: 700px;
    position: relative;
}
.forth-section h2{
    font-size: calc(var(--heading-font-size) - 20px);
}
.forth-section .inner-content {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.fifth-section {
    background-color: var(--light-black-color) !important;
    padding: 40px 0 80px;
}
.fifth-section p.body-text {
    color: var(--white-color);
}
.fifth-section img {
  width: 20px;
  height:20px;
}
.fifth-section .slide {
/*    animation: scroll 30s linear infinite;*/
    background: rgba(38, 38, 38, 1);
    border: 1px solid rgba(96, 97, 97, 1);
    padding: 26px 30px;
    display: flex;
    gap: 22px;
    border-radius: 20px;
}
.fifth-section .slide-track {
  width: 100%;
  display: flex;
  gap: 3em;
  overflow: hidden;
}
.fifth-section .image-box span {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    background-size: cover;
}
@keyframes scroll {
  0% {transform: translateX(0);}
  100% {transform: translatex(-1000%)}
}
.fifth-section h4 {
    font-size: var(--trader-heading-size);
    font-weight: var(--regular-font-weight);
    font-family: var( --heading-font-family);
    color: var(--white-color);
    margin: 0;
}
.sixth-section {
    background-color: var(--primary-color);
    padding: 80px 0;
}
.sixth-section .card{
    background-color: var( --grey-color);
    border-radius: 20px;
    padding: 40px 50px;
    display: flex;
    height: 200px;
    align-items: center;
    justify-content: center;
}
.seventh-section {
    background: url(../images/gif-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 740px;
    position: relative;
    display: flex;
    align-items: center;
}
.eight-section {
    background-color: var(--primary-color);
    padding:80px 0;
}
.eight-section .team-card {
    position: relative;
}
.eight-section .team-card img {
    border-radius: 40px;
    width: 100%;
}
.eight-section .team-des {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 25px;
    position: absolute;
    bottom: 16px;
    left: 15px;
    width: calc(100% - 30px);
    margin: auto;
}
.eight-section  .team-des h4 {
    font-size: var(--card-font-size);
    font-weight: var(--semi-bold-font-weight);
    font-family: var(--base-font-family);
    color: var(--white-color);
    margin: 0;
    padding-bottom: 10px;
}
.eight-section  .team-des p {
    font-size: var(--card-text-size);
    font-weight: var(--semi-bold-font-weight);
    font-family: var(--base-font-family);
    color: var(--white-color);
    margin: 0;
}
.ninth-section {
    background-color: var(--primary-color);
    padding:80px 0;
}
.ninth-section .card {
    border-radius: 40px;
    padding: 40px 30px;
    border: none;
    height: 550px;
}
.ninth-section .img-box {
    padding-bottom: 20px;
}
.ninth-section .primary-card{
    background: rgba(255, 209, 86, 1);
}
.ninth-section .primary-card .btn {
    width: fit-content;
    margin: auto;
}
.ninth-section .secondry-card {
    background-image: url(../images/round-circle.png) !important;
    background-repeat: no-repeat !important;
    background-position: top,center !important;
    background: rgba(38, 38, 38, 1);
    color:var(--white-color);
    padding-top: 80px;
}
.ninth-section h4 {
    font-family: var(--heading-font-family);
    font-size: var(--trader-heading-size);
    font-weight: var(--semi-bold-font-weight);
    margin: 10px 0 0 0;
    line-height: 1;
}
.ninth-section .secondry-card p{
    color: var(--text-grey-color);
}
.ninth-section .input-card {
    background: rgba(38, 38, 38, 1);
    border-radius: 40px;
    padding: 50px 40px;
    border: none;
}
.ninth-section  form fieldset {
    display: flex;
    gap: 20px;
}
.ninth-section  form input {
    border: none;
    border-radius: 30px;
    height: 55px;
    width: 100%;
}
.ninth-section form fieldset input[type="text"] {
    width: 70%;
    background: #fff;
    color: #858686;
    padding: 0;
}
.ninth-section form fieldset input[type="text"]::placeholder {
    color: #858686;
}
.ninth-section form fieldset input[type="submit"] {
    width: 30%;
}
.ninth-section  form input::placeholder {
    font-size: var(--body-font-size);
    font-weight: var(--regular-font-weight);
    font-family: var(--base-font-family);
    color: var(--black-color);
    padding: 0 26px;
}
.ninth-section  input[type="submit"] {
    font-size: var(--base-font-size);
    font-weight: var(--semi-bold-font-weight);
    font-family: var(--base-font-family);
    color: var(--black-color);
    background-color: var(--secondry-color);
}
.site-footer {
    background-color: var(--primary-color);
    padding: 80px 0 80px;
}
.site-footer .footer-img img {
    max-width: 100%;
    width: 100%;
}
.site-footer .footer-menu {
    position: relative;
}
.site-footer .footer-menu ul {
    display: flex;
    gap: 60px;
    position: absolute;
    top: 180px;
    right: 0;
}
.site-footer .footer-menu a {
    font-size: var(--base-font-size);
    font-weight: var(--regular-font-weight);
    font-family: var(--base-font-family);
    color: var(--white-color);
}
.site-footer .copy-right-sec {
    padding: 80px 0 0;
}
.site-footer .address {
    max-width: 100%;
    width: 400px;
    margin: auto;
}
.site-footer .address p.physical,
.site-footer .address a  {
    font-size: var(--body-font-size);
    font-weight: var(--extra-font-weight);
    font-family: var(--base-font-family);
    margin: 0;
    color: var(--text-grey-color);
}
.site-footer .address a {
    display: flex;
    justify-content: center;
}
.site-footer .social-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 90px;
}
ul.icon-list {
    display: flex;
    align-items: center;
    gap: 10px;
}
ul.icon-list li a {
    background: rgba(241, 221, 128, 0.12);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.site-footer .social-icons p  {
    font-size: 13px;
    font-weight: var(--regular-font-weight);
    font-family: var(--base-font-family);
    margin: 0;
    color: var(--secondry-color);
}

/*---Contacts Style Start---*/
.get-in-touch .card{
    background: var(--grey-color);
    color: var(--white-color);
    border-radius: 40px;
    padding: 30px;
}
.get-in-touch .card iframe{
    border-radius: 20px;
}
.get-in-touch .card h4{
    font-size: var(--sub-heading-font-size);
    margin-bottom: 20px;
}
.get-in-touch .card label{
    font-size: 20px;
    color: var(--secondry-color);
    font-family: var(--heading-font-family);
    font-weight: var(--medium-font-weight);
    margin: 15px 0 0;
}
.get-in-touch .card p{
    font-size: calc(var(--card-font-size) - 10%);
    font-family: var(--heading-font-family);
    line-height: 1.3;
}
.get-in-touch .card.terms-of-use p{
    font-size: var(--body-font-size);
}
.get-in-touch .card ul{}
.get-in-touch .card ul li{}
.get-in-touch .card ul li a{}
.get-in-touch .card ul li a img{}
/*---Contacts Style End---*/

/*---Login Style Start---*/
.login-form{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 0 25px;
}
.form-inner{
    width: 380px;
    max-width: 100%;
}
.login-form h3{
    font-size: var(--card-font-size);
    text-align: center;
    margin: 40px 0 25px;
}
.login-form .logo{
    display: flex;
    display: flex;
    justify-content: center;
}
.login-form .certify{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    margin: 25px 0 20px;
}
.login-form .certify input{
    margin-top: 5px;
}
.login-form .certify label{
    color: #A0A0A0;
    font-weight: var(--base-font-size);
    font-weight: var(--regular-font-weight);
    font-family: var(--base-font-family);
}
.login-form .certify label a{
    color: var(--white-color);
}
input[type=color],
input[type=date],
input[type=datetime-local],
input[type=datetime],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select,
textarea{
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 12px;
    border: var(--grey-color) 2px solid;
    padding: 10px;
    margin-bottom: 10px;
}

::placeholder{
    color: var(--white-color);
    font-weight: var(--base-font-size);
    font-weight: var(--regular-font-weight);
    font-family: var(--base-font-family);
}
.login-form .btn{
    width: 100%;
    font-weight: var(--bold-font-weight);
    font-size: 16px;
}
.login-form .account{
    text-align: center;
    color: #A0A0A0;
    margin: 25px;
    font-weight: var(--base-font-size);
    font-weight: var(--regular-font-weight);
    font-family: var(--base-font-family);
}
.login-form .account a{
    color: var(--secondry-color);
    font-weight: var(--bold-font-weight);
}
.login-form #first-name,
.login-form #last-name,
.login-form #email,
.login-form #password{
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) 50%;
}
.login-form #first-name, .login-form #last-name{
    background-image: url(../images/users.svg);
}
.login-form #email{
    background-image: url(../images/email.svg);
}
.login-form #password{
    background-image: url(../images/password.svg);
}
.login-form.login .remember-me{
    margin-top: 5px;
    margin-bottom: 20px;
}
.login-form.login .remember-me label{
    color: #A0A0A0;
    font-weight: var(--base-font-size);
    font-weight: var(--regular-font-weight);
    font-family: var(--base-font-family);
}
.login-form.login .remember-me a{
    font-weight: var(--bold-font-weight);
    color: var(--secondry-color);
}

/*---Login Style End---*/

/*---Terms Style Start---*/

.terms-of-use h2{
    font-size: var(--sub-heading-font-size);
}

.card.terms-of-use{
    padding: 60px 100px;
}
.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 50px 0;
}
.accordion-item {
    background: var(--tertiary-color);
    border: none;
    border-radius: 10px;
}
button.accordion-button,
.accordion-button:not(.collapsed) {
    background: none;
    font-size: var(--accordion-button-size);
    color: var(--secondry-color);
    font-weight: var(--semi-bold-font-weight);
    box-shadow: none !important;
}
.accordion-body{
    font-size: var(--accordion-text-size);
    color: var(--white-color);
}
.accordion-body ul{
    list-style: disc;
    padding: 0 0 0 20px;
}
.accordion-body ol {
    padding-left: 20px;
    margin-top: 20px;
}
.accordion-body ol li:not(:last-child),
.accordion-body ul li:not(:last-child) {
    margin-bottom: 12px;
}
.accordion-button:not(.collapsed) {
    background-color: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after{
    background-image: url(../images/minus.svg);
}
.accordion-button::after{
    background-image: url(../images/plus.svg);
}

/*---Terms Style End---*/


/*---Faqs Style Start---*/

.faq-page{
     background-image: url('../images/faq-bg.png'), url('../images/stars-bg.png');
     background-repeat: no-repeat, no-repeat;
     background-size: 50%, 100%;
}

.faq-sec{
    margin-bottom: 80px;
}

.faq-sec .faq-search{
    margin-bottom: 80px;
}

.faq-search input[type=search] {
    width: 100%;
    background-color: #262626;
    color: var(--white-color);
    border-radius: 59px;
    border: rgb(208, 213, 221, 12%) 1px solid;
    padding: 18px 20px 18px 55px;
    margin-bottom: 10px;
    font-size: var(--base-font-size);
    font-weight: var(--regular-font-weight);
    font-family: var(--base-font-family);
    background-image: url(../images/search.svg);
    background-repeat: no-repeat;
    background-position: 20px 50%;
}

.faq-search ::placeholder {
    color: #ABABAB !important;
}



.faq-sec .faq-cards {
    background: #262626;
    padding: 30px 10px 30px 20px;
    border-radius: 40px;
    margin-bottom: 35px;
}

.faq-sec .faq-cards h2 {
    font-size: calc(var(--box-heading-size) - 5px);
    font-weight: var(
    --semi-bold-font-weight);
    font-family: var(
    --heading-font-family);
    color: var(
    --white-color);
    text-transform: capitalize;
    margin: 0;
    line-height: 1;
}




/*---Faqs Style End---*/

/*---General-Question start---*/

.general-question-sec .faq-search{
    margin-bottom: 100px;
}

.breadcrumb-item a {
    color: var(--white-color);
}

.breadcrumb-item+.breadcrumb-item::before{
    color: #fff;
    content: var(--bs-breadcrumb-divider, ">");
}


.general-question-sec .faq-cards h2 {
    font-size: var(--box-heading-size);
    font-weight: var(
    --semi-bold-font-weight);
    font-family: var(
    --heading-font-family);
    color: var(
    --white-color);
    text-transform: capitalize;
    margin: 0;
    line-height: 1;
}

.general-question-sec .general-cards {
    background: #262626;
    padding: 30px 20px 30px 25px;
    border-radius: 10px;
}

.general-question-sec .card-content-icon h4 {
    font-size: var(--accordion-button-size);
    font-weight: var(
    --semi-bold-font-weight);
    font-family: var(
    --heading-font-family);
    color: var(
    --white-color);
    text-transform: capitalize;
    margin: 0;
    line-height: 1;
}

.general-question-sec button.accordion-button {
    color: #fff;
}


/*---General-Question End---*/

/*---affiliate-program start---*/

.btn-sec a.primary-btn {
    border: 1px solid  var(--yellow-color);
    border-image-source: linear-gradient(180deg, #EEBA2C 0%, rgba(10, 124, 255, 0) 100%);
    background: rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 30px 0px rgba(238, 186, 44, 0.7) inset;
    border-radius: 48px;
    padding: 12px 28px;
    color: var(--white-color);
}

.btn-sec {
    margin-top: 60px;
}

.affiliate-work-sec {
    background-image: url('../images/faq-bg.png');
    background-repeat: no-repeat, no-repeat;
    background-size: 50%, 100%;
    background-color: rgba(33, 33, 33, 1);
    padding: 80px 0 40px 0;
}

.affiliate-work-sec h2 {
    font-size: var(--sub-heading-font-size);
    font-weight: var(
    --semi-bold-font-weight);
    font-family: var(
    --heading-font-family);
    color: var(
    --white-color);
    text-transform: capitalize;
    margin: 0;
    line-height: 1;
    text-align: center;
}


/* Bootstrap Timeline CSS */

.timeline {
    list-style: none;
    padding: 20px 0 20px;
    position: relative;
    max-width: 1140px;
    margin: 60px auto 60px;
}

.timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 3px;
  background-color: #eeeeee;
  left: 50%;
  margin-left: -1.5px;
}

.timeline > li {
  margin-bottom: 20px;
  position: relative;
}

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}

.timeline > li:after {
  clear: both;
}

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}

.timeline > li:after {
  clear: both;
}

.timeline > li > .timeline-panel {
    width: 500px;
    float: left;
    height: 240px;
    background-image: url(../images/Group3.png);
    background-repeat: no-repeat;
    position: relative;
    padding: 20px 80px 10px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*.timeline > li > .timeline-panel:before {
  position: absolute;
  top: 26px;
  right: -15px;
  display: inline-block;
  border-top: 15px solid transparent;
  border-left: 15px solid #ccc;
  border-right: 0 solid #ccc;
  border-bottom: 15px solid transparent;
  content: " ";
}*/

/*.timeline > li > .timeline-panel:after {
  position: absolute;
  top: 27px;
  right: -14px;
  display: inline-block;
  border-top: 14px solid transparent;
  border-left: 14px solid #fff;
  border-right: 0 solid #fff;
  border-bottom: 14px solid transparent;
  content: " ";
}*/

.timeline > li > .timeline-badge {
    color: #fff;
    width: 34px;
    height: 34px;
    position: absolute;
    top: 100px;
    left: 50.6%;
    margin-left: -25px;
    background-color: #262626;
    z-index: 100;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    border: #EEBA2C 6px solid;
}

.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}




.timeline-body > p,
.timeline-body > ul {
  margin-bottom: 0;
}

.timeline-body > p + p {
  margin-top: 5px;
}

h4.timeline-title {
    font-family: var(--heading-font-family);
    color: var(--white-color);
    font-size: 25px;
    max-width: 80%;
}

.timeline > li > .timeline-panel ul {
    padding: 0 0 0 25px;
}

.timeline-body li {
    font-weight: var(--regular-font-weight);
    color: var(--white-color);
    margin: auto;
    list-style: disc;
    margin-top: 10px;
    line-height: 1.3;
}


/*---affiliate-program End---*/

/*---commission-rewards-sec start---*/

.commission-rewards-sec {
    padding: 80px 0;
}

.commission-rewards-sec h2 {
    font-size: var(--sub-heading-font-size);
    font-weight: var(--semi-bold-font-weight);
    font-family: var(--heading-font-family);
    color: var(--white-color);
    margin: 0;
    line-height: 1;
    text-align: center;
    margin-bottom: 80px;
}

.reward-card {
    background-image: url(../images/reward-card-head-bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-color: #212121;
    color: #fff;
    text-align: center;
    min-height: 650px;
}

.reward-head {
    width: calc(100% - 40px);
    margin: auto;
    position: relative;
    height: 200px;
    padding: 18px 0px 0 0px;
}

.commission-rewards-sec .reward-head h4 {
    font-size: var(--tab-heading-size);
    font-weight: var(
    --semi-bold-font-weight);
    font-family: var(
    --heading-font-family);
    color: var(--black-color);
    margin: auto;
    line-height: 1;
    max-width: 54%;
    margin-top: 5px;
}

.commission-rewards-sec .reward-label {
    font-family: var(--heading-font-family) !important;
    color: #ABABAB !important;
}

.commission-rewards-sec .reward-value {
    font-size: calc(var(--accordion-button-size)-10%);
    font-weight: var(--semi-bold-font-weight);
    line-height: 1.4;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.commission-rewards-sec .giveaways-button {
    background-color: rgba(255, 255, 255, 16%);
    padding: 10px 18px 10px 18px;
    border-radius: 40px;
    margin-top: 6px;

}


/*---commission-rewards-sec end---*/

/*---affiliate-perks-sec start---*/

.affiliate-perks-sec {
    padding: 80px 0;
}

.affiliate-perks-sec h2 {
    font-size: var(--sub-heading-font-size);
    font-weight: var(--semi-bold-font-weight);
    font-family: var(--heading-font-family);
    color: var(--white-color);
    margin: 0;
    line-height: 1;
    text-align: center;
    margin-bottom: 80px;
}

.affiliate-perks-sec .perks-icon-content {
    text-align: center;
    background: rgba(38, 38, 38, 1);
    border-radius: 40px;
    padding: 10px 87px 40px 87px;
    min-height: 358px;
}

.affiliate-perks-sec .perks-icon-content h3 {
    font-size: calc(var(--trader-heading-size) - 5px);
    font-weight: var(--semi-bold-font-weight);
    font-family: var(--heading-font-family);
    color: var(--white-color);
    margin: 0;
    line-height: 1;
    padding-top: 20px;
}

.affiliate-perks-sec .perks-icon-content h5 {
    font-size: var(--accordion-text-size);
    font-weight: var(--regular-font-weight);
    font-family: var(--heading-font-family);
    color: var(--white-color);
    margin: 0;
    line-height: 1;
    margin-top: 15px;
}


/*---affiliate-perks-sec end---*/

/*---terms-conditions-sec start---*/

.terms-conditions-sec {
    background-color: rgba(33, 33, 33, 1);
    padding: 50px 0 150px 0;
}

.terms-conditions-sec h2 {
    font-size: var(--sub-heading-font-size);
    font-weight: var(
    --semi-bold-font-weight);
    font-family: var(
    --heading-font-family);
    color: var(
    --white-color);
    text-transform: capitalize;
    margin: 0;
    line-height: 1;
    text-align: center;
    margin-bottom: 30px;
}
.terms-conditions-sec .terms-conditions-content li {
    font-size: var(--accordion-button-size);
    font-weight: var(--regular-font-weight);
    font-family: var(--heading-font-family);
    color: var(--white-color);
    line-height: 1.4;
    max-width: 63%;
    margin: auto;
    margin-top: 20px;
    list-style: disc;
}


/*---terms-conditions-sec end---*/

/*---terms-title-sec start---*/

.terms-title-sec .terms-conditions-title h3 {
    font-size: var(--trader-heading-size);
    font-weight: var(--semi-bold-font-weight);
    font-family: var(--heading-font-family);
    color: var(--black-color);
    line-height: 1;
    text-align: center;
}


.terms-conditions-title {
    background: var(--white-color);
    padding: 38px 35px 38px 35px;
    max-width: 63%;
    margin: auto;
    border-radius: 40px !important;
    margin-top: -80px;
}

/*---terms-title-sec end---*/

.site-hader .menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: #fff;
    float: right;
}

li.slide.slick-slide {
    margin: 0 15px;
    width: 280px;
    display: flex;
}

.for-mobile{
    display: none !important;
}

/*.team-container{
    display: none !important;
}*/

.team-slider .slick-slide {
    margin: 0 10px; /* Adjust the gap as needed */
}
.team-slider .slick-list {
    margin: 0 -10px; /* Counteract the extra margin */
}

@media screen and ( max-width: 1027px ){


    :root {
        --hero-heading-font-size: 60px;
        --heading-font-size: 50px;
        --sub-heading-font-size: 40px;
        --trader-heading-size: 30px;
        --box-heading-size: 22px;
    }

    /*  Mobile Menu Style Start  */
    .site-hader nav.site-menu{
        display: none !important;
        position: absolute;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        z-index: 9;
        padding-top: 140px;
        background: rgba(38, 38, 38, 0.59);
        backdrop-filter: blur(40px);
    }
    .site-hader nav.site-menu.show {
        display: block !important;
    }
    .site-hader nav.site-menu ul{
        border: unset;
        background: unset;
        backdrop-filter: unset;
    }
    .site-hader .menu-toggle {
        display: block;
        position: relative;
        z-index: 999;
    }
    .site-hader .site-menu ul {
        display: none;
        flex-direction: column;
    }
    .site-hader .site-menu ul.show {
        display: flex;
    }
    .site-hader .site-logo{
        position: relative;
        z-index: 999;
    }
    .site-hader .site-menu ul.menu {
        display: flex;
        align-items: flex-start;
    }
    .site-hader nav ul li a,
    .site-hader nav ul li.active a,
    .site-hader nav ul li a:hover {
        background: none !important;
    }
    .site-hader nav ul li.active a,
    .site-hader nav ul li a:hover{
        color: #EEBA2C;
    }
    .site-hader ul.for-mobile {
        position: absolute !important;
        bottom: 100px;
        width: 100%;
    }
    .for-desktop{
        display: none !important;
    }
    .for-mobile{
        display: flex !important;
        flex-direction: row !important;
        background: none;
        position: unset !important;
    }
    /*  Mobile Menu Style End  */

    .site-footer .footer-menu {
        display: flex;
        gap: 24px;
        justify-content: space-between;
    }
    .site-footer .footer-menu ul {
        display: unset;
        position: unset;
    }
    .site-footer .footer-img {
        width: 50%;
    }
    .site-footer .footer-menu ul li {
        padding-bottom: 6px;
    }
    .site-footer .footer-menu a {
        font-size: var(--body-font-size);
    }

    .third-tab-section .funding-tabs ul.nav-tabs .nav-link, .third-tab-section .funding-tabs ul.inner-tab-list li a {
        padding: 10px 30px;
    }
    .third-tab-section .funding-tabs .card {
        margin-bottom: 30px;
    }
    .ninth-section .secondry-card {
        margin-top: 40px;
    }
    .ninth-section .input-card h4 {
        margin-bottom: 40px;
    }
    .eight-section .team-card {
        position: relative;
        margin-bottom: 40px;
    }
    .card.terms-of-use {
        padding: 60px;
    }
    .get-in-touch .contacts-info-box {
        padding: 50px 0 !important;
    }
    .reward-card {
        padding-bottom: 30px;
        margin-bottom: 40px;
        min-height: auto !important;
    }
    .commission-rewards-sec .reward-value {
        margin-bottom: 15px;

    }
    .affiliate-perks-sec .perks-icon-content {
        padding: 20px 20px 40px 20px;
        min-height: 385px;
    }
    .top-bar .top-text-slider {
        position: relative;
        width: 288px;
    }
}

@media screen and (min-width:767px) {
    .get-in-touch .contacts-info-box{
        padding: 0 60px;
    }
}

@media screen and (max-width:767px) {
    :root {
        --hero-heading-font-size: 45px;
        --heading-font-size: 40px;
        --sub-heading-font-size: 36px;
        --trader-heading-size: 26px;
        --box-heading-size: 22px;

        --base-font-size: 16px;
        --body-font-size: 15px;
        --card-font-size: 24px;
        --card-text-size: 15px;

        --button-text-size: 15px;

        --accordion-button-size: 20px;
        --accordion-text-size: 18px;
    }

    .btn {
        padding: 12px 20px;
        font-size: var(--button-text-size);
    }

    .banner-button {
        display: flex;
        align-items: flex-start;
    }

    .m-flex-column {
        flex-direction: column;
        gap: 0 !important;
    }

    .hero-banner .hero-graphic.left img,
    .hero-banner .hero-graphic.right img{
        width: 100%;
    }

    .hero-banner .hero-graphic.left {
        left: -50%;
        width: 300px;
    }
    .hero-banner .hero-graphic.right {
        right: -50%;
        width: 300px;
        top: 480px !important;
    }
    .hero-banner, .second-section, .third-tab-section, .sixth-section, .seventh-section, .eight-section{
        padding: 60px 0;
        height: auto;
    }
    .ninth-section{
        padding: 0 0 60px;
    }
    .hero-banner .banner-button a.btn.primary-btn {
        margin-bottom: 24px;
    }
    .second-section ul li.box {
        padding: 20px;
        gap: 20px;
    }

    .second-section h3 {
        padding-bottom: 50px !important;
    }
    .third-tab-section .funding-tabs ul.nav-tabs .nav-link {
        padding: 10px 56px;
    }
    .third-tab-section .funding-tabs .card ul li {
        padding-bottom: 10px;
    }
    .third-tab-section .funding-tabs .card {
        margin-bottom: 20px;
        padding: 30px;
    }
    .third-tab-section .tab-pane ul li a {
        padding: 10px !important;
    }
    .third-tab-section .funding-tabs ul.inner-tab-list {
        margin: 30px auto;
        gap: 6px !important;
    }
    .third-tab-section .value-result {
        font-size: var(--sub-heading-font-size);
    }
    .sixth-section .card {
        margin-bottom: 20px;
        padding: 30px;
    }

    .seventh-section p.base-text {
       padding: 20px 0 !important;
    }
    .eight-section .team-card {
        margin-bottom: 20px;
    }
    .eight-section {
        padding: 70px 0 20px;
    }
    .eight-section h3 {
        padding-bottom: 40px !important;
    }
    .eight-section .team-des {
        padding: 15px;
    }
    .eight-section  .team-des h4 {
        padding-bottom: 5px;
        font-size: 18px;
    }

    .ninth-section h2 {
        padding-bottom: 40px !important;
    }
    .ninth-section .card {
        height: auto;
        padding: 25px 25px 50px;
        margin-bottom: 20px;
    }
    .ninth-section .input-card {
        padding: 25px;
    }
    .ninth-section .secondry-card{
        margin-top: 0;
    }
    .ninth-section .row.mt-5 {
        margin-top: 0 !important;
    }
    .ninth-section  form fieldset {
        gap: 8px;
    }
    .ninth-section h4 {
        padding-bottom: 0px;
    }
    .site-footer {
        padding: 40px 0;
    }

    .site-footer .copy-right-sec {
        padding: 30px 0 0;
    }
    .site-footer .social-icons {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding-top: 40px;
    }
    .forth-section {
        height: 450px;
        background-size: 85%;
    }
    .forth-section .inner-content {
        position: absolute;
        top: 65%;
        left: 50%;
        width: 100%;
    }
    .fifth-section {
        padding: 0 0 60px;
    }
    .card.terms-of-use {
        padding: 25px;
    }
    .accordion {
        margin: 30px 0;
    }
    .get-in-touch iframe {
        height: 300px;
    }
    .commission-rewards-sec{

    }
    .affiliate-perks-sec {
        padding: 0 0 80px 0;
    }
    .commission-rewards-sec {
        padding: 80px 0 80px 0;
    }
    .affiliate-perks-sec .perks-icon-content {
        margin-bottom: 15px;
    }
    .affiliate-perks-sec .col-md-12.mt-3.mb-3 {
        margin: 0px !important;
    }
    .terms-conditions-sec .terms-conditions-content {
        padding-left: 20px;
    }
    .terms-conditions-sec .terms-conditions-content li {
        max-width: 100%;
        font-size: var(--base-font-size);
    }
    .terms-conditions-title {
        max-width: 100%;
    }
    .affiliate-perks-sec h2 {
        margin-bottom: 50px;
    }
    .faq-sec .faq-search {
        margin-bottom: 40px;
    }
    .faq-sec .faq-cards {
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 20px;
        gap: 10px !important;
    }
    .faq-sec .faq-icon,
    .faq-icon{
        width: 50px;
    }
    .faq-sec .faq-icon img,
    .faq-icon img{
        width: 100%;
    }
    .page-heading {
        padding: 80px 0 !important;
    }
    button.accordion-button {
        line-height: 1.25;
    }
    .login-form {
        display: unset;
        height: auto;
    }
    .form-inner {
        width: calc(100% - 40px);
        margin: auto;
    }
    .m-center{
        justify-content: center !important;
    }
    .dashboard-container .btn-wrap {
        margin: 20px 0 30px;
    }
    .affiliate-work-sec {
        padding: 80px 0 30px 0;
    }
    .timeline:before {
        left: 15px;

    }
    .timeline > li {
        margin-bottom: 0px;

    }
    .timeline > li > .timeline-badge{
        left: 22px;
        top: 75px;
    }
    .timeline > li > .timeline-panel {
        width: 100%;
        height: 240px;
        background-image: url(../images/Group3.png);
        padding: 15px 50px 15px 65px;
        background-size: 100%;
        justify-content: flex-start;
    }
    h4.timeline-title {
        font-size: 18px;
    }
    .timeline-heading img {
        width: 40px;
    }
    .timeline-body li {
        margin-top: 8px;
        font-size: 14px;
    }
    .third-tab-section .funding-tabs .card.primary-bg {
        top: unset;
        height: unset;
    }
    ul.stikcy-list .icon-box {
        flex: 0 0 60px;
    }
    ul.stikcy-list .icon-box img{
        width: 100%;

    }
    .second-section ul li.box .icon-box img{
         padding: 10px;
    }
    li.slide.slick-slide {
        margin: 0 10px;
        width: 200px;
    }
    .team-container{
        display: block !important;
    }
    button.slick-prev.slick-arrow{
        left: 20px;
        z-index: 9999;
    }
    button.slick-next.slick-arrow{
        right: 20px;
        z-index: 9999;
    }
    .slick-next:before, .slick-prev:before {
        font-size: 25px !important;
    }
    h1.heading br{
        display: none;
    }
    .site-footer .copy-right-sec p {
        font-size: 15px;
        line-height: 1.4;
    }
    .sixth-section .card img {
        width: 100%;
        height: auto;
    }
    .sixth-section .card{
        height: 140px;
    }
    .eight-section .team-card img {
        border-radius: 20px;
        width: 100%;
    }
    .team-slider .slick-slide {
        margin: 0 10px; /* Adjust spacing between slides */
    }
    .team-slider .slick-list {
        margin: 0 -10px; /* Compensate for added margins */
    }
    .eight-section .team-des {
        border-radius: 10px;
        padding: 15px;
        bottom: 5px;
        left: 5px;
        width: calc(100% - 10px);

    }
    .eight-section  .team-des p {
        font-size: 11px;

    }
    .ninth-section .img-box img {
        height: 125px;
        width: auto;
    }
    .fifth-section .slide {
        padding: 15px;
        gap: 15px;
    }
    .site-hader .site-logo img {
        width: 150px;
    }
    .slick-track {
        padding-left: 45px;
    }
    .top-bar {
        padding: 8px 0 34px !important;
    }
    .top-bar .inner-box p {
        font-size: 14px  !important;
    }
    .top-bar .inner-box {
        display: unset !important;
        text-align: center !important;
    }
    .top-text-slider {
        width: 100% !important;
    }
}

@media screen and ( max-width: 375px ){
    .third-tab-section .funding-tabs ul.nav-tabs .nav-link {
        padding: 10px 50px;
    }
}



.third-tab-section .funding-tabs ul.nav-tabs .nav-link.active .coming-soon-badge,
.third-tab-section .funding-tabs ul.inner-tab-list li a.active .coming-soon-badge{
    color: var(--white-color) !important;
}

nav.site-menu {
    margin: auto;
    width: max-content;
}

.ulcls {
      padding-left: 20px; 
    }
    .ulcls li {
      margin-bottom: 10px;color:#bdbebe;list-style: initial;    font-family: var(--base-font-family);
    }
    .section {
      margin-bottom: 40px;
    }
    .section h4
    {
        color:#fff;font-size: var(--trader-heading-size);
    }
    .section p 
    {
        color:#bdbebe;    font-family: var(--base-font-family);
        
    }
    .seccard
    {
    background: #373737;
  border-radius: 40px;
  padding: 40px 30px;
}


.abtcontainer {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
      gap: 20px; /* space between columns */
      padding: 0 20px 40px;
    }

    .section {
      box-sizing: border-box;
      padding: 30px;
      width: calc(50% - 10px); /* subtract half the gap for perfect alignment */
      background-color: #262626;
      border: 1px solid #333;
      border-radius: 40px;
    }

    .section:nth-child(even) {
      background-color: #1e1e1e;
    }

    .section h4 {
      margin-top: 0;
      color: #ffffff;
    font-size: var(--trader-heading-size);
    }

    .section p {
      margin: 10px 0 15px;
    }

    .section ul {
      padding-left: 20px;
      margin: 0;
    }

    .section ul li {
      margin-bottom: 10px;
      color:#bdbebe;
      list-style: inside;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .section {
        width: 100%;
      }

      .abtcontainer {
        gap: 16px;
      }
    }
  

    .blog-container {
        display: grid;
         grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1000px; /* Adjust max-width to cap at 3 columns */
  margin: auto;
  padding: 50px 0px;
}

 

    .blog-card {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s ease;
    }

    .blog-card:hover {
      transform: translateY(-4px);
    }

    .blog-thumbnail {
     width: 100%;
  height: 200px; /* Optional: taller image for large screens */
  object-fit: cover;
    }

    .blog-content {
      padding: 15px;
      flex: 1;
    }

    .blog-date {
      color: #888;
      font-size: 0.9em;
      margin-bottom: 8px;
    }

    .blog-title {
      font-size: 1.2em;
      margin: 0 0 10px;
      color: #333;
    }

    .blog-desc {
      font-size: 0.95em;
      color: #555;
    }

    @media (max-width: 500px) {
      .blog-card {
        flex-direction: column;
      }
    }
    
    .blog-container {
  
}

 

    
 .navlinkhref
 {
     padding: 12px 30px;
    background: #0b0b0b;
    color: #fff !important;
    border-radius: 20px;
    font-size: var(--base-font-size);
    font-family: var(--base-font-family);
    width: 222px;
    border: 2px solid var(--white-color);
    text-align: center;
 }
 .about-welcometext
 {
     text-align: center;
    color: #fff;
    padding: 20px 0px;
 }
