/*! Normalise CSS !*/
@import url(normalize.css);
/*! Google Fonts !*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Sacramento&display=swap");
/*! Google Fonts !*/
* {
  margin: 0rem;
  padding: 0rem;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0rem;
  padding: 0rem;
}

body {
  margin: 0rem;
  padding: 0rem;
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  /* 150% */
  background: #000;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

p {
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 20px;
}
p:last-child {
  margin: 0;
}

h1 {
  padding: 0;
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: clamp(2.5rem, 3.469vw + 0.837rem, 5rem);
  font-style: normal;
  font-weight: 900;
  line-height: clamp(3rem, 3.469vw + 1.337rem, 5.5rem); /* 110% */
  margin-bottom: 16px;
}
h1 span {
  color: #e37627;
}

h2 {
  padding: 0;
  margin: 0;
  /* H2 */
  color: #fff;
  font-family: Roboto;
  font-size: clamp(2.188rem, 2.515vw + 0.982rem, 4rem);
  font-style: normal;
  font-weight: 900;
  line-height: clamp(2.188rem, 2.515vw + 0.982rem, 4rem); /* 100% */
  margin-bottom: 16px;
}
h2 span {
  color: #e37627;
}

h3 {
  padding: 0;
  margin: 0;
  color: #000;
  font-family: "Caveat Brush", serif;
  font-size: clamp(1.375rem, 0.625vw + 1.25rem, 2rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

h4 {
  padding: 0;
  margin: 0;
  font-family: "Caveat Brush", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 16px;
  /* 32.992px */
}

h5 {
  margin: 0;
  color: var(--Black, #000);
  font-family: "Caveat Brush", serif;
  font-size: clamp(1.125rem, 0.375vw + 1.05rem, 1.5rem);
  font-style: normal;
  font-weight: 600;
  line-height: clamp(1.625rem, 0.625vw + 1.5rem, 2.25rem);
  /* 150% */
  margin-bottom: 16px;
}

h6 {
  margin: 0;
  padding: 0;
  color: var(--Blue, #3c7fa4);
  font-family: "Comic Neue";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-object-fit: cover;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  margin: 0;
  padding: 0;
}

a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.btn {
  position: relative;
  display: inline-block;
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  padding: 12px 32px;
  border-radius: 100px;
  background: #e37627;
}
.btn:hover {
  background: rgba(227, 117, 39, 0.6588235294);
}

input:not([type=submit])::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  opacity: 0.5;
}

input:not([type=submit])::placeholder,
textarea::placeholder,
select::placeholder {
  opacity: 0.5;
}

input:not([type=submit]),
select {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border-radius: 1.5625rem;
  background: #fff;
  color: var(--Dark-Blue, #0f1a20);
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none;
  margin-bottom: 16px;
  outline: none;
  box-shadow: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}

select {
  -webkit-appearance: none; /* Removes default appearance in Safari */
  -moz-appearance: none; /* Removes default appearance in Firefox */
  appearance: none; /* Standard */
  outline: none; /* Removes the focus outline */
  box-shadow: none; /* Removes the box shadow */
  padding: 16px 20px; /* Add padding for better UI */
  background-color: #fff; /* Background color */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path d="M0 0l5 6 5-6z" fill="%23666"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
}

textarea {
  height: 10.375rem;
  resize: none;
  overflow: hidden;
  display: block;
  width: 100%;
  color: var(--Dark-Blue, #0f1a20);
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 8px 20px;
  border: none;
  padding: 16px 20px;
  border-radius: 1.5625rem;
  background: #fff;
  margin-bottom: 1.875rem;
  outline: none;
  box-shadow: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}

textarea:focus {
  outline: none;
  box-shadow: none;
  border: none;
  background: #fff;
  box-shadow: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--Dark-Blue, #0f1a20);
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

select:focus {
  border: 1px solid #cccccc;
  outline: none;
  background-color: #fff;
}

select option {
  color: #1d1d1d;
  font-size: 14px;
  font-weight: 400;
}

label {
  color: var(--Dark-Blue, #0f1a20);
  font-family: Lato;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  display: block;
  margin-bottom: 0.5rem;
}

.mainHd {
  background: #000;
}
.mainHd .hdrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.mainHd .hdrow .logo {
  width: 68.156px;
}
.mainHd .hdrow .logo a {
  display: block;
  width: 100%;
}
.mainHd .hdrow .logo a img {
  width: 100%;
}
.mainHd .hdrow .stellarnav {
  border-radius: 100px;
  background: rgba(227, 118, 39, 0.16);
  position: relative;
  padding: 0 32px;
}
.mainHd .hdrow .stellarnav:before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  border-radius: 100px;
}
.mainHd .hdrow .stellarnav ul li {
  margin: 0;
  border: none;
}
.mainHd .hdrow .stellarnav ul li a {
  padding: 12px 0;
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  position: relative;
}
.mainHd .hdrow .stellarnav ul li a:hover {
  color: #e37627;
}
.mainHd .hdrow .stellarnav ul li a.dd-toggle {
  padding: 0 !important;
  color: #fff;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  position: absolute;
}
.mainHd .hdrow .stellarnav ul li a.dd-toggle.icon-plus:before, .mainHd .hdrow .stellarnav ul li a.dd-toggle.icon-plus:after {
  border-color: white !important;
}
.mainHd .hdrow .stellarnav ul li ul {
  max-width: 171px;
  padding: 24px 32px 24px 31px;
  border-radius: 16px;
  border: 2px solid rgba(227, 118, 39, 0.4);
  background: #121212;
}
.mainHd .hdrow .stellarnav ul li ul li:first-child a {
  padding-top: 0;
}
.mainHd .hdrow .stellarnav ul li ul li:last-child a {
  padding-bottom: 0;
}
.mainHd .hdrow .stellarnav ul li ul li a {
  color: #fff;
}
.mainHd .hdrow .stellarnav ul li ul li a:hover {
  color: #e37627;
}
.mainHd .hdrow .stellarnav ul li.has-sub > a {
  padding-right: 18px;
}
.mainHd .hdrow .stellarnav ul li.has-sub > a:before {
  content: "";
  width: 11.74px;
  height: 6px;
  position: absolute;
  right: 0;
  top: 50%;
  background: url(../images/navdropdown.svg) no-repeat 0 0;
  transform: translateY(-50%);
}
.mainHd .stellarnav a.dd-toggle .icon-plus:before,
.mainHd .stellarnav a.dd-toggle .icon-plus:after {
  border-color: white !important;
}
.mainHd .stellarnav .icon-close:after,
.mainHd .stellarnav .icon-close:before {
  border-color: white !important;
}

.tradingview-widget-copyright {
  display: none !important;
}

.tradingview-widget-container {
  height: 46px !important;
}

.banner {
  background: #000;
  height: clamp(25rem, 23.764vw + 13.608rem, 42.125rem);
  position: relative;
  overflow: hidden;
}
.banner .bannerslider {
  position: relative;
}
.banner .bannerslider .swiper-slide {
  position: relative;
}
.banner .bannerslider .swiper-slide img {
  width: 100%;
  height: clamp(25rem, 23.764vw + 13.608rem, 42.125rem);
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .bannerslider .swiper-slide.text-left .bannertext {
  text-align: left;
  max-width: clamp(36.875rem, 25vw + 18.125rem, 48.125rem);
  padding: 0 0 0 50px;
}
.banner .bannerslider .swiper-slide.text-left .bannertext h1,
.banner .bannerslider .swiper-slide.text-left .bannertext p {
  text-align: left;
}
.banner .bannerslider .swiper-slide.text-left .container {
  justify-content: flex-start;
}
.banner .bannerslider .bannerslider-swiper-button-prev,
.banner .bannerslider .bannerslider-swiper-button-next {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .bannerslider .bannerslider-swiper-button-prev:after, .banner .bannerslider .bannerslider-swiper-button-prev:before,
.banner .bannerslider .bannerslider-swiper-button-next:after,
.banner .bannerslider .bannerslider-swiper-button-next:before {
  display: none;
}
.banner .bannerslider .sliderbtn-container {
  position: absolute;
  margin: 0 auto;
  inset: 0;
}
@media (min-width: 576px) {
  .banner .bannerslider .sliderbtn-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .banner .bannerslider .sliderbtn-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .banner .bannerslider .sliderbtn-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .banner .bannerslider .sliderbtn-container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .banner .bannerslider .sliderbtn-container {
    max-width: 1320px;
  }
}
.banner .bannerslider .bannerslider-swiper-pagination {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  bottom: 35px;
}
.banner .bannerslider .bannerslider-swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  aspect-ratio: 1/1;
  background-color: #fff;
  opacity: 1;
  margin: 0;
}
.banner .bannerslider .bannerslider-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #e37627;
}
.banner .container {
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  inset: 0;
  justify-content: center;
}
.banner .container .bannertext {
  max-width: clamp(39.813rem, 19.444vw + 25.229rem, 48.563rem);
  text-align: center;
}
.banner .container .bannertext p {
  margin-bottom: clamp(1.25rem, 1.735vw + 0.418rem, 2.5rem);
  color: #fff;
  text-align: center;
  font-size: clamp(1.125rem, 0.173vw + 1.042rem, 1.25rem);
  font-weight: 400;
  line-height: 24px; /* 120% */
}
.banner .container .bannertext .btn {
  display: inline-flex;
}

.whos-behind {
  background: #000;
  padding: clamp(2.5rem, 6.938vw - 0.826rem, 7.5rem) 0;
}
.whos-behind .who-img img {
  width: 100%;
}
.whos-behind .whotext {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.whos-behind .whotext p {
  margin-bottom: clamp(1.25rem, 1.735vw + 0.418rem, 2.5rem);
}
.whos-behind .whotext h5 {
  color: var(--Primary-Color, #e37627);
  font-family: Sacramento;
  font-size: clamp(2.188rem, 2.515vw + 0.982rem, 4rem);
  font-style: normal;
  font-weight: 400;
  line-height: clamp(3rem, 4.163vw + 1.004rem, 6rem); /* 150% */
}
.whos-behind .whotext h5 + p {
  margin-bottom: 0;
}

.right-prop {
  padding-bottom: clamp(2.5rem, 6.938vw - 0.826rem, 7.5rem);
}
.right-prop .right-prop-content {
  border-radius: 32px;
  border: 1px solid #e37627;
  background: rgba(227, 118, 39, 0.12);
  padding: clamp(2.375rem, 3.469vw + 0.712rem, 4.875rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.right-prop .right-prop-content:before {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 143px;
  width: 329px;
  height: 182px;
  flex-shrink: 0;
  border-radius: 329px;
  background: var(--Primary-Color, #e37627);
  filter: blur(165px);
}
.right-prop .right-prop-content:after {
  content: "";
  position: absolute;
  top: -18px;
  left: 10px;
  width: 329px;
  height: 182px;
  flex-shrink: 0;
  border-radius: 329px;
  background: var(--Primary-Color, #e37627);
  filter: blur(165px);
}
.right-prop .right-prop-content h2 {
  text-align: center;
  max-width: clamp(37.25rem, 19.853vw + 22.36rem, 54.125rem);
  margin-bottom: 16px;
  margin: 0 auto 16px;
  color: #e37627;
}
.right-prop .right-prop-content p {
  max-width: 866px;
  margin-bottom: clamp(1.25rem, 1.735vw + 0.418rem, 2.5rem);
  margin: 0 auto clamp(1.25rem, 1.735vw + 0.418rem, 2.5rem);
}

.market-tools {
  text-align: center;
  padding-bottom: clamp(2.5rem, 6.938vw - 0.826rem, 7.5rem);
}
.market-tools h2 {
  max-width: 500px;
  margin: 0 auto 16px;
}
.market-tools p {
  margin-bottom: clamp(1.25rem, 1.735vw + 0.418rem, 2.5rem);
  max-width: 1089px;
  margin: 0 auto clamp(1.25rem, 1.735vw + 0.418rem, 2.5rem);
}
.market-tools .market-tab-content .tradingview-widget-container {
  height: clamp(21.563rem, 27.754vw + 8.258rem, 41.563rem) !important;
  border-radius: 8px;
  border: 8px solid rgba(227, 118, 39, 0.32);
  overflow: hidden;
  max-width: 1089px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.market-tools .market-tab-content .tradingview-widget-container iframe {
  height: 100% !important;
}
.market-tools .tabs {
  display: grid;
  position: relative;
}
.market-tools .tabs:before {
  content: "";
  width: 262px;
  height: 224px;
  flex-shrink: 0;
  position: absolute;
  border-radius: 262px;
  background: var(--Primary-Color, #e37627);
  filter: blur(205px);
  top: -57px;
  right: 0px;
}
.market-tools .tabs:after {
  content: "";
  width: 340px;
  height: 290px;
  flex-shrink: 0;
  position: absolute;
  border-radius: 340px;
  background: var(--Primary-Color, #e37627);
  filter: blur(205px);
  top: 286px;
  left: -147px;
}
.market-tools .tabs .tabs-nav {
  border-radius: 100px;
  background: #000;
  box-shadow: 0px 0px 16px 0px rgba(227, 118, 39, 0.16), 0px -4px 24px 0px rgba(227, 118, 39, 0.32) inset, 0px 4px 24px 0px rgba(227, 118, 39, 0.32) inset;
  max-width: 586px;
  margin: 0 auto clamp(1.25rem, 1.735vw + 0.418rem, 2.5rem);
  width: 100%;
}
.market-tools .tabs .tabs-nav button {
  background-color: transparent;
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 24px; /* 120% */
  padding: 20px;
  border: none;
}
.market-tools .tabs .tabs-nav button[aria-selected=true] {
  color: var(--Primary-Color, #e37627);
}
.market-tools button[aria-selected=true] {
  color: var(--Primary-Color, #e37627);
}
.market-tools button:focus {
  outline: 0;
  --bs-color: rgba(0, 0, 0, 0.6);
}

footer {
  padding: clamp(2.5rem, 3.469vw + 0.837rem, 5rem) 0;
  background: #121212;
}
footer .ftbx .ftlogo {
  width: 124px;
  margin-bottom: 24px;
}
footer .ftbx h5 {
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
  font-size: 16px;
  line-height: 24px; /* 150% */
  font-family: Roboto;
}
footer .ftbx h4 {
  color: #fff;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px; /* 100% */
  margin-bottom: 16px;
}
footer .ftbx .newsletter {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 38px;
}
footer .ftbx .newsletter input[type=email] {
  padding: 12px 32px;
  width: 100%;
  border-radius: 8px;
  background: #fff;
  color: #646464;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 0;
}
footer .ftbx .newsletter input[type=submit] {
  padding: 12px 32px;
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  background: var(--Primary-Color, #e37627);
  border: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}
footer .ftbx .newsletter input[type=submit]:hover {
  background-color: rgba(227, 117, 39, 0.6705882353);
}
footer .ftbx ul li {
  margin-bottom: 16px;
}
footer .ftbx ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
footer .ftbx ul li:last-child {
  margin-bottom: 0;
}
footer .ftbx ul.socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .ftbx ul.socials li {
  margin-bottom: 0;
}
footer .ftbx ul.socials li a {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 100px;
  border: 1px solid var(--Primary-Color, #e37627);
  color: #e37627;
}
footer .ftbx ul.socials li a:hover {
  background-color: #e37627;
  color: #fff;
}

.copyright {
  padding: 6px 0;
  background: var(--Primary-Color, #e37627);
}
.copyright .copyright-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.copyright .copyright-row p {
  color: #fff;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px; /* 100% */
  margin-bottom: 0;
}
.copyright .copyright-row ul {
  display: flex;
  align-items: center;
}
.copyright .copyright-row ul li {
  position: relative;
}
.copyright .copyright-row ul li:nth-child(1):before {
  display: none;
}
.copyright .copyright-row ul li:before {
  content: "|";
}
.copyright .copyright-row ul li a {
  color: #fff;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  margin: 0 10px 0 0;
}

.banner.innerbanner {
  position: relative;
  height: 564px;
  overflow: unset;
}
.banner.innerbanner:before {
  content: "";
  width: 330px;
  height: 280px;
  flex-shrink: 0;
  position: absolute;
  top: 95px;
  right: 0;
  left: 0;
  margin: 0 auto;
  border-radius: 330px;
  background: var(--Primary-Color, #e37627);
  filter: blur(205px);
}
.banner.innerbanner:after {
  content: "";
  width: 330px;
  height: 280px;
  flex-shrink: 0;
  position: absolute;
  right: -85px;
  bottom: 67px;
  border-radius: 330px;
  background: var(--Primary-Color, #e37627);
  filter: blur(205px);
}
.banner.innerbanner .banner-text {
  max-width: clamp(36.75rem, 37.5vw + 8.625rem, 53.625rem);
  margin: 0 auto;
}
.banner.innerbanner h1 {
  margin-bottom: 16px;
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: clamp(2.5rem, 2.775vw + 1.17rem, 4.5rem);
  font-style: normal;
  font-weight: 900;
  line-height: clamp(2.5rem, 2.775vw + 1.17rem, 4.5rem); /* 100% */
}
.banner.innerbanner p {
  text-align: center;
  color: #fff;
  font-family: Roboto;
  font-size: clamp(1.125rem, 0.173vw + 1.042rem, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 140% */
}

.sorttableouter {
  padding: clamp(2.5rem, 3.469vw + 0.837rem, 5rem) 0 clamp(2.5rem, 6.938vw - 0.826rem, 7.5rem);
  position: relative;
}
.sorttableouter:before {
  content: "";
  width: 330px;
  height: 280px;
  flex-shrink: 0;
  position: absolute;
  top: 70px;
  left: 5px;
  border-radius: 330px;
  background: var(--Primary-Color, #e37627);
  filter: blur(205px);
}
.sorttableouter .table-container {
  position: relative;
  z-index: 1;
}
.sorttableouter .table-container .table-header-controls {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  align-self: stretch;
  margin-bottom: 40px;
}
.sorttableouter .table-container .table-header-controls .filters {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sorttableouter .table-container .table-header-controls .filters .filter-dropdown label {
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  display: block;
}
.sorttableouter .table-container .table-header-controls .filters .filter-dropdown button {
  border: none;
  display: flex;
  height: 40px;
  padding: 0px 24px;
  align-items: center;
  gap: 16px;
  border-radius: 100px;
  color: #9f9f9f;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  background: #262626 url(../images/angle-small-down.svg) no-repeat center right 20px;
  min-width: 121px;
  text-align: left;
  padding: 0px 44px 0 24px;
}
.sorttableouter .table-container .table-header-controls .filters .filter-dropdown button option {
  color: #9f9f9f;
  text-align: left;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.sorttableouter .table-container .table-header-controls .filters .filter-dropdown.active button {
  justify-content: center;
}
.sorttableouter .table-container .table-header-controls .filters .filter-dropdown.active button span {
  justify-content: center;
  display: flex;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 34px;
  height: 32px;
  border-radius: 100px;
  background-color: #e37627;
  color: white;
}
.sorttableouter .table-container .search-bar {
  max-width: 350px;
  width: 100%;
}
.sorttableouter .table-container .search-bar input[type=search] {
  width: 100%;
  padding: 8px 24px;
  border-radius: 100px;
  color: #9f9f9f;
  text-align: left;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  background: #262626 url(../images/searchicon.svg) no-repeat right 24px center;
  margin-bottom: 0;
}
.sorttableouter .table-container .data-tableouter {
  border-radius: 16px;
  border: 2px solid rgba(227, 118, 39, 0.32);
  overflow: auto;
  /* --- 1. Webkit Scrollbar Styling (Chrome, Safari, Edge, Opera, etc.) --- */
  /* --- 2. Standard CSS Scrollbar Styling (Mainly Firefox) --- */
  scrollbar-width: thin; /* 'auto', 'thin', or 'none' */
  scrollbar-color: #555 #2a2a2a; /* thumb color | track color */
}
.sorttableouter .table-container .data-tableouter::-webkit-scrollbar {
  width: 12px; /* Width of the vertical scrollbar */
  height: 12px; /* Height of the horizontal scrollbar */
}
.sorttableouter .table-container .data-tableouter::-webkit-scrollbar-track {
  background: #2a2a2a; /* Dark background, slightly lighter than body */
  border-radius: 10px; /* Rounded corners for the track */
}
.sorttableouter .table-container .data-tableouter::-webkit-scrollbar-thumb {
  background-color: #555; /* Medium grey for the thumb */
  border-radius: 10px; /* Rounded corners for the thumb */
  border: 3px solid #2a2a2a; /* Border around the thumb for spacing */
}
.sorttableouter .table-container .data-tableouter::-webkit-scrollbar-thumb:hover {
  background-color: #777; /* Lighter grey on hover */
}
.sorttableouter .table-container .data-tableouter::-webkit-scrollbar-corner {
  background: #2a2a2a; /* Match the track background */
}
.sorttableouter .data-table {
  width: 100%;
  border-collapse: collapse;
}
.sorttableouter .data-table thead th {
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 100% */
  white-space: nowrap;
  padding-top: 24px;
  padding-bottom: 24px;
  background: rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  min-width: 240px;
  text-transform: uppercase;
}
.sorttableouter .data-table thead th:nth-child(1) {
  padding-left: 32px;
  min-width: 480px;
}
.sorttableouter .data-table thead th:last-child {
  padding-right: 32px;
}
.sorttableouter .data-table thead th.sortable {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.sorttableouter .data-table thead th.sortable.asc .sort-icon {
  rotate: 180deg;
}
.sorttableouter .sort-icon {
  display: inline-block;
  width: 16px;
  height: 19px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.sorttableouter .data-table tbody tr {
  border-bottom: 1px solid #151515;
  transition: background-color 0.2s ease;
}
.sorttableouter .data-table tbody tr:hover {
  background-color: #2a2a2a;
}
.sorttableouter .data-table tbody tr:last-child {
  border-bottom: none;
}
.sorttableouter .data-table tbody tr td {
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 100% */
  white-space: nowrap;
  padding-top: 24px;
  padding-bottom: 24px;
}
.sorttableouter .data-table tbody tr td:nth-child(1) {
  padding-left: 32px;
  min-width: 480px;
}
.sorttableouter .data-table tbody tr td:last-child {
  padding-right: 32px;
}
.sorttableouter .data-table tbody tr td .coupon-outer {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sorttableouter .data-table tbody tr td .coupon-tag {
  display: flex;
  padding: 4px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #000;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 171.429% */
  border-radius: 100px;
}
.sorttableouter .data-table tbody tr td .coupon-tag.green {
  background: #63e327;
}
.sorttableouter .data-table tbody tr td.firm-links .btn-sm {
  max-width: 130px;
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px; /* 100% */
  border-radius: 100px;
  background: var(--Primary-Color, #e37627);
}
.sorttableouter .table-footer-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  margin-top: 32px;
}
.sorttableouter .table-footer-pagination .pagination-controls {
  display: flex;
  height: 40px;
  padding: 0px 24px;
  align-items: center;
  gap: 16px;
  border-radius: 100px;
  background: #262626;
}
.sorttableouter .table-footer-pagination .pagination-controls .pagination-btn {
  width: 12px;
  height: 20px;
  aspect-ratio: 3/5;
  border: none;
  color: #f9e4d4;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  background-color: transparent;
}
.sorttableouter .table-footer-pagination .pagination-controls .pagination-btn:first-child {
  background: url(../images/pagination-left.svg) no-repeat 0 0;
}
.sorttableouter .table-footer-pagination .pagination-controls .pagination-btn:last-child {
  background: url(../images/pagination-right.svg) no-repeat 0 0;
}
.sorttableouter .table-footer-pagination .pagination-controls .pagination-btn.active {
  display: flex;
  padding: 8px 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 34px;
  height: 32px;
  border-radius: 100px;
  background: var(--Primary-Color, #e37627);
}
.sorttableouter .table-footer-pagination .rows-per-page {
  max-width: 95px;
  width: 100%;
}
.sorttableouter .table-footer-pagination .rows-per-page select {
  width: 100%;
  border: none;
  padding: 8px 24px;
  gap: 16px;
  color: #9f9f9f;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  border-radius: 100px;
  text-align: left;
  background: #262626 url(../images/angle-small-down.svg) no-repeat right 24px center;
  margin: 0;
}
.sorttableouter .table-footer-pagination .rows-per-page select option {
  color: #9f9f9f;
  text-align: left;
}
.sorttableouter .columnoptions {
  margin-bottom: 40px;
  display: none;
}
.sorttableouter .columnoptions.active {
  display: block;
}
.sorttableouter .columnoptions ul {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.sorttableouter .columnoptions ul li {
  display: flex;
  height: 40px;
  padding: 0px 24px;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  border-radius: 100px;
  background: #262626;
  position: relative;
}
.sorttableouter .columnoptions ul li input[type=checkbox] {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.sorttableouter .columnoptions ul li.active {
  background: var(--Primary-Color, #e37627);
}
.sorttableouter .columnoptions ul li.active .cross {
  display: block;
}
.sorttableouter .columnoptions ul li.active .tick {
  display: none;
}
.sorttableouter .columnoptions ul li .cross {
  display: none;
}
.sorttableouter .columnoptions ul li .tick {
  display: block;
}

.faqsec {
  padding: clamp(2.5rem, 6.938vw - 0.826rem, 7.5rem) 0;
}
.faqsec h2 {
  text-align: center;
  max-width: clamp(48.75rem, 41.667vw + 17.5rem, 67.5rem);
  margin: 0 auto 40px;
}
.faqsec .faq_box {
  width: 100%;
  padding: 0;
  margin: 0px;
  position: relative;
}
.faqsec .faq_box .faq_item {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease-in-out;
}
.faqsec .faq_box .faq_item ul li {
  position: relative;
  padding: 0 0 0 25px;
}
.faqsec .faq_box .faq_item ul li a {
  text-decoration: underline;
  color: white;
}
.faqsec .faq_box .faq_item ul li:before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: white;
  border-radius: 50px;
  position: absolute;
  left: 10px;
  top: 9px;
}
.faqsec .faq_box .faq_item ol li {
  position: relative;
  padding: 0 0 0 0;
}
.faqsec .faq_box .faq_item ol li a {
  text-decoration: underline;
  color: white;
}
.faqsec .faq_box .faq_item.main_active .faq_hd h5 {
  color: var(--White, #fff);
}
.faqsec .faq_box .faq_item.main_active .faq_cont {
  margin-top: -1.6875rem;
}
.faqsec .faq_box .faq_item.main_active .faq_cont p {
  color: #fff;
}
.faqsec .faq_box .faq_item:last-child {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.faqsec .faq_box .faq_item .faq_hd {
  padding: 24px;
  cursor: pointer;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 0px;
  padding-right: 55px;
}
.faqsec .faq_box .faq_item .faq_hd::before {
  content: "";
  background: url(../images/accordionarrow.svg) no-repeat 0 0;
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
  position: absolute;
  transition: all 0.3s ease-in-out;
  border: none;
  border-radius: 50%;
  right: 25px;
  top: 23px;
}
.faqsec .faq_box .faq_item .faq_hd.closed::before {
  transform: rotate(180deg);
}
.faqsec .faq_box .faq_item .faq_hd h5 {
  position: relative;
  color: #fff;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
  cursor: pointer;
  margin-bottom: 0;
}
.faqsec .faq_box .faq_item .faq_cont {
  display: none;
  padding: 1.6875rem 1.875rem;
  margin: 0;
  border-top: none;
}
.faqsec .faq_box .faq_item .faq_cont p {
  font-weight: 300;
  margin: 0;
}

.banner.innerbanner.tradingtool .banner-text {
  max-width: 820px;
}
.banner.innerbanner.tradingtool .banner-text h1 span {
  display: block;
}

.tools-main {
  padding-bottom: clamp(2.5rem, 6.938vw - 0.826rem, 7.5rem);
  position: relative;
  z-index: 1;
}
.tools-main:before {
  content: "";
  position: absolute;
  width: 330px;
  height: 280px;
  flex-shrink: 0;
  top: 70px;
  left: 5px;
  border-radius: 330px;
  background: var(--Primary-Color, #e37627);
  filter: blur(205px);
}
.tools-main .tools-main-row {
  display: flex;
  padding: 24px 32px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  margin-bottom: 40px;
  border-radius: 16px;
  border: 1px solid rgba(227, 118, 39, 0.32);
}
.tools-main .tools-main-row:last-child {
  margin-bottom: 0;
}
.tools-main .tools-main-row .tools-mainleft {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1000px;
}
.tools-main .tools-main-row .tools-mainleft img {
  width: 224px;
  flex: 1 0 224px;
  border-radius: 8px;
}
.tools-main .tools-main-row .tools-mainleft h4 {
  color: #fff;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 120% */
  margin-bottom: 8px;
}
.tools-main .tools-main-row .tools-mainleft p {
  margin-bottom: 16px;
}
.tools-main .tools-main-row .tools-mainleft .tags {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tools-main .tools-main-row .tools-mainleft .tags li {
  display: flex;
  padding: 4px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: rgba(227, 118, 39, 0.4);
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
}

.signupModal .modal-body {
  padding: 0;
}
.signupModal .btn-close {
  width: 32px;
  height: 32px;
  opacity: 1;
  position: absolute;
  right: 40px;
  padding: 0;
  z-index: 1;
}
.signupModal .modal-dialog {
  max-width: 789px;
  border-radius: 16px;
}
.signupModal .modal-dialog .modal-content {
  background: #000;
  box-shadow: 0px 0px 24px 0px rgba(227, 118, 39, 0.24);
  padding: 56px 40px;
}
.signupModal .modal-dialog .modal-content h4 {
  color: #e37627;
  font-family: Roboto;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 100% */
  margin-bottom: 16px;
  padding-right: 50px;
}
.signupModal .modal-dialog .modal-content p {
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 40px;
  padding-right: 50px;
}
.signupModal .modal-dialog .modal-content .inputrow .inputcontainer {
  width: 100%;
}
.signupModal .modal-dialog .modal-content .inputrow .inputcontainer label {
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  display: block;
  margin-bottom: 8px;
}
.signupModal .modal-dialog .modal-content .inputrow .inputcontainer input:not([type=submit]):not([type=radio]):not([type=checkbox]) {
  padding: 12px 24px;
  border-radius: 8px;
  background: #2b2b2b;
  color: #bdbdbd;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 24px;
}
.signupModal .modal-dialog .modal-content .inputrow .inputcontainer.submit {
  margin-top: 40px;
}
.signupModal .modal-dialog .modal-content .inputrow.w50 {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.signupModal .modal-dialog .modal-content .inputrow.w50 .inputcontainer {
  width: 50%;
}/*# sourceMappingURL=style.css.map */