@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

/*/news -articles/*/
/* Banner image */
.news-banner-img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
}


/* Article card */
.article-card {
  text-decoration: none;
  display: block;
  overflow: hidden;
  padding: 0;
  transition: transform 300ms, box-shadow 300ms;
  height: 100%;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(232, 93, 43, 0.15);
}

/* Image placeholder area */
.article-img-wrap {
  width: 100%;
  background: #252525;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.article-img-wrap img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.article-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

/* Article text */
.article-body {
  padding: 16px 18px 20px;
}

.article-title {
  font-size: 14px;
  color: #E2E2E2;
  line-height: 1.5;
  margin-bottom: 8px;
}

.article-date {
  color: #B7B7B7;
}

/* Separator line between rows (matching reference) */
.col-lg-4:nth-child(3) .article-card {
  border-bottom: 1px solid #393939;
}

/* Pagination */
.news-pagination {
  padding: 20px 0 10px;
}

.page-link {
  display: inline-block;
  padding: 6px 14px;
  margin: 0 3px;
  border-radius: 8px;
  font-size: 14px;
  color: #B7B7B7;
  border: 1px solid #393939;
  background: transparent;
  transition: all 200ms;
  text-decoration: none;
}

.page-link:hover,
.page-link.active {
  background: linear-gradient(116deg,
      rgba(230, 79, 25, 1) 0%,
      rgba(65, 22, 7, 1) 18%,
      rgba(194, 66, 21, 1) 39%,
      rgba(230, 79, 25, 1) 56%,
      rgba(87, 30, 9, 1) 73%,
      rgb(17 5 1) 100%);
  border-color: #E85D2B;
  color: #fff;
}

@media (max-width: 767px) {
  .article-img-wrap {
    min-height: 140px;
  }

  .news-filter {
    justify-content: flex-start;
  }
}

/* Bonus tier cards */
.bonus-card {
  padding: 28px 24px;
  min-height: 240px;
  height: 100%;
}

.bonus-featured {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(232, 93, 43, 0.25);
}

.bonus-note {
  max-width: 760px;
  margin: 0 auto;
}

/* Benefit icon wrap */
.bonus-icon-wrap {
  background: linear-gradient(116deg,
      rgba(230, 79, 25, 1) 0%,
      rgba(65, 22, 7, 1) 18%,
      rgba(194, 66, 21, 1) 39%,
      rgba(230, 79, 25, 1) 56%,
      rgba(87, 30, 9, 1) 73%,
      rgb(17 5 1) 100%);
  padding: 14px;
  border-radius: 10px;
  min-width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item {
  padding: 20px 25px;
}

.step-holder {
  padding: 25px;
  min-height: 260px;
}

@media (max-width: 991px) {
  .bonus-featured {
    transform: none;
  }
}

@media (max-width: 767px) {
  .step-holder {
    min-height: unset;
  }
}



.education-menu {
  width: 500px;
  display: flex;
  gap: 40px;
  padding: 20px;
}

.education-menu>li {
  list-style: none;
  flex: 1;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Shared Partner Page Styles Ã¢â€â‚¬Ã¢â€â‚¬ */

/* Hero SVG */
.partner-hero-svg {
  width: 100%;
  max-width: 380px;
}

/* Highlight pills (4-up grid in banner) */
.highlight-pill {
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}

.highlight-pill svg {
  display: block;
  margin: 0 auto 6px;
}

/* Benefit card icon wrap */
.partner-icon-wrap {
  background: linear-gradient(116deg,
      rgba(230, 79, 25, 1) 0%,
      rgba(65, 22, 7, 1) 18%,
      rgba(194, 66, 21, 1) 39%,
      rgba(230, 79, 25, 1) 56%,
      rgba(87, 30, 9, 1) 73%,
      rgb(17 5 1) 100%);
  padding: 14px;
  border-radius: 10px;
  min-width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Benefit card row */
.why-item {
  padding: 20px 25px;
}

/* Step card */
.step-holder {
  padding: 25px;
  min-height: 280px;
}

/* Responsive */
@media (max-width: 991px) {
  .partner-hero-svg {
    max-width: 260px;
  }
}

@media (max-width: 767px) {
  .highlight-pill {
    min-height: 80px;
  }

  .step-holder {
    min-height: unset;
  }
}

/**/
.pip .container {
  margin-top: 50px;
}


.btn-border {
  padding: 8px 28px;
  text-align: center;
  color: #fff;
  border-radius: 30px;
  border: 1px solid #E85D2B;
  background: transparent;
  display: inline-block;
  transition: all .2s;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.btn-border:hover {
  background: rgba(232, 93, 43, .12);
  color: #E85D2B;
  border-color: #E85D2B;
}

.btn-border.active {
  background: rgba(232, 93, 43, .12);
  border-color: #E85D2B;
  color: #E85D2B;
}

.d-flex {
  display: flex;
}

.m-t-25 {
  margin-top: 25px !important;
}

/**/
body {

  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #E2E2E2;
  background: #050505;
}

input:focus,
button:focus,
a:focus {
  outline: none !important;
  box-shadow: none !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter Tight", sans-serif;
  font-style: normal;
  color: #F0F7FB;
  font-weight: 400;
}

h1 {
  font-size: 90px;
  line-height: 105px;
}

h2 {
  font-size: 55px;
  line-height: 65px;
}

h3 {
  font-size: 45px;
  line-height: 60px;
}

h4 {
  font-size: 35px;
  line-height: 45px;
}

h5 {
  font-size: 25px;
  line-height: 35px;
}

h6 {
  font-size: 20px;
  line-height: 25px;
}

b,
strong {
  font-weight: 500;
}

a {
  color: #F0F7FB;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: #fff;
}

img {
  max-width: 100%;
}

.f-size-11 {
  font-size: 11px;
}

.f-size-12 {
  font-size: 12px;
}

.f-size-14 {
  font-size: 14px;
}

.f-size-16 {
  font-size: 16px;
}

.f-size-18 {
  font-size: 18px;
}

.f-size-30 {
  font-size: 30px;
}

.f-weight-100 {
  font-weight: 100 !important;
}

.f-weight-200 {
  font-weight: 200 !important;
}

.f-weight-300 {
  font-weight: 300 !important;
}

.f-weight-400 {
  font-weight: 400 !important;
}

.f-weight-500 {
  font-weight: 500 !important;
}

.f-weight-600 {
  font-weight: 600 !important;
}

.f-weight-700 {
  font-weight: 700 !important;
}

.f-weight-800 {
  font-weight: 800 !important;
}

.f-weight-900 {
  font-weight: 900;
}

.f-weight-bold {
  font-weight: bold;
}

.m-t-5 {
  margin-top: 5px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.p-l-25 {
  padding-left: 25px !important;
}

.m-r-25 {
  margin-right: 25px !important;
}

.p-r-25 {
  padding-right: 25px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.m-t-35 {
  margin-top: 35px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

.m-b-35 {
  margin-bottom: 35px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

.m-l-35 {
  margin-left: 35px !important;
}

.p-l-35 {
  padding-left: 35px !important;
}

.m-r-35 {
  margin-right: 35px !important;
}

.p-r-35 {
  padding-right: 35px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.m-r-40 {
  margin-right: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.m-r-45 {
  margin-right: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.m-t-50 {
  margin-top: 50px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.m-b-50 {
  margin-bottom: 50px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.m-l-50 {
  margin-left: 50px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.m-r-50 {
  margin-right: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.b-r-6 {
  border-radius: 6px !important;
}

.b-r-10 {
  border-radius: 10px !important;
}

.b-r-15 {
  border-radius: 15px !important;
}

.b-r-20 {
  border-radius: 20px !important;
}

.b-r-25 {
  border-radius: 25px !important;
}

.b-r-30 {
  border-radius: 30px !important;
}

.r-100-p {
  border-radius: 100%;
}

.btn-fill,
.signals-holder:hover .btn-border {
  padding: 12px 20px;
  text-align: center;
  color: #fff;
  border-radius: 15px;
  border: 1px solid #B83F14;
  background: #E64F19;
  background: linear-gradient(116deg, rgba(230, 79, 25, 1) 0%, rgba(65, 22, 7, 1) 18%, rgba(194, 66, 21, 1) 39%, rgba(230, 79, 25, 1) 56%, rgba(87, 30, 9, 1) 73%, rgb(17 5 1) 100%);
  min-width: 180px;
}

.btn-border {
  padding: 10px 20px 7px;
  text-align: center;
  color: #fff;
  border-radius: 15px;
  border: 1px solid #E85D2B;
}

.header-center li.nav-item {
  /*border-right: 1px solid #B7B7B7;*/
  border-right: none;
}

.item-gradient {
  background: #E64F19;
  background: linear-gradient(116deg, rgba(230, 79, 25, 1) 0%, rgba(65, 22, 7, 1) 18%, rgba(194, 66, 21, 1) 39%, rgba(230, 79, 25, 1) 56%, rgba(87, 30, 9, 1) 73%, rgba(65, 22, 7, 1) 100%);

}

.btn-secondary {
  color: #fff;
  background-color: transparent;
  border-color: #4E4E4E;
  border-radius: 15px;
  padding: 11px;
}

header.site-header {
  padding: 30px 0;
}

.cust-w-300 {
  width: 300px;
}

.m-t-80 {
  margin-top: 80px;
}

.color-green {
  color: #34C759;
}

.banner-left {
  width: 40%;
}

.banner-right {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 90px;
}

.glass-item {
  border: 1px solid rgb(229 176 167 / 54%);
  border-radius: 25px;
  backdrop-filter: blur(9px);
  padding: 12px 20px;
  justify-content: space-between;
  align-items: center;
}

.banner-right .glass-item {
  width: 85%;
}

.trade-img img {
  margin-left: -13px;
}

.banner-right .banner-trade {
  width: 55%;
  margin-top: 40px;
}

.banner-center {
  display: block;
  margin-top: -30px;
}

.home-banner {
  background-repeat: no-repeat;
  background-position: center;
  padding: 85px 0;
}

.navbar-dark .navbar-nav .nav-link {
  color: #FBFBFB;
}

.site-section {
  padding: 60px 0;
}

.color-gray {
  color: #B7B7B7;
}

.gradient-box {
  background: #1a1a1a;
  background: linear-gradient(198deg, rgba(230, 79, 25, 0.3) 0%, rgba(30, 30, 30, 1) 40%, rgba(20, 20, 20, 1) 100%);
  box-shadow: inset 0px 2px 4px rgba(230, 79, 25, 0.4);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.enhance-item {
  padding: 25px;
  text-align: center;
}

.enhance-item img,
.record-item img,
.pro-trader-item img,
.status-item img,
.benefit-item img {
  background: #C04215;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.enhance-item:hover img {
  animation-name: rotate;
  animation: animName 2s linear infinite;

}

@keyframes animName {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes bounce {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
}

.platforms-item .platform-img {
  position: relative;
  bottom: 0;
  transition: all 300ms;
}

.platforms-item:hover .platform-img {
  bottom: 8px;
}

.nav-tabs {
  border-bottom: none;
  justify-content: center;
  margin-bottom: 40px;
}

.nav-tabs .nav-link {
  border: 1px solid #505050;
  background: #121212;
  padding: 18px 18px;
  color: #fff;
  border-radius: 15px;
  margin: 10px;
}

.instruments li.nav-item {
  border-right: 0;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: #505050;
  isolation: isolate;
}

.nav-link:focus,
.nav-link:hover {
  color: #ffffff;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #ffff;
  background-color: #4f4f4f;
  border-color: #919191;
}

.table-head {
  padding: 10px 20px 7px;
  color: #fff;
  border-radius: 15px;
  /* border: 1px solid #B83F14; */
  background: #E64F19;
  background: linear-gradient(116deg, rgba(230, 79, 25, 1) 0%, rgba(65, 22, 7, 1) 18%, rgba(194, 66, 21, 1) 39%, rgba(230, 79, 25, 1) 56%, rgba(87, 30, 9, 1) 73%, rgba(65, 22, 7, 1) 100%);
  font-weight: 400 !important;
  box-shadow: inset 0px 2px 4px 0px #E64F19;
}

.table>:not(caption)>*>* {
  font-weight: 400;
}

.table {
  color: #ffffff;
}

.tbody tr {
  border: none;
}

.table>:not(caption)>*>* {
  box-shadow: none;
  border: none !important;
  padding: 10px;
}

.table>:not(:first-child) {
  border-top: none;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  padding: 18px 15px !important;
}

.table-gap {
  padding: 8px 15px !important;
}

table .gradient-box {
  background: #1a1a1a;
  background: linear-gradient(182deg, rgba(230, 79, 25, 0.3) 0%, rgba(30, 30, 30, 1) 40%, rgba(20, 20, 20, 1) 100%);
  box-shadow: inset 0px 2px 4px rgba(230, 79, 25, 0.4);
  vertical-align: middle;
}

.platform-img {
  background: #D24E1F;
  padding: 10px;
  border-radius: 10px;
}

.platforms-item a {
  color: #E85D2B;
}

.gray-gradient-box {
  background: #303030;
  background: linear-gradient(180deg, rgb(48 48 48 / 42%) 24%, rgb(81 81 81 / 48%) 50%, rgb(48 48 48 / 43%) 76%);
  padding: 25px;
  border-radius: 15px;
  box-shadow: inset 0px 2px 4px #2C2C2C;
  transition: 300ms all;
}

.text-left {
  text-align: left;
}

.tick-items img {
  background: #E85D2B;
  padding: 6px;
  border-radius: 6px;
  position: relative;
  top: 3px;
}

.tick-items li {
  line-height: 40px;
}

.pro-tag {
  background: #DD5525;
  font-size: 15px;
  padding: 3px 15px;
  border-radius: 9px;
}

.partners {
  background: #DD5525;
  padding: 30px 0 10px;
}

.rating .star-item img {
  max-width: 20px;
}

.rating img {
  max-width: 38px;
}

.s-icon {
  max-width: 50px;
}

.community .item {
  display: flex;
  flex-direction: column;
  transition: all 300ms;
  margin-top: 0 !important;
}

.community .item:hover {
  display: flex;
  flex-direction: column-reverse;
}

.item:hover .community-item,
.item:hover .name-holder {
  background: #E64F19;
  background: linear-gradient(198deg, rgba(230, 79, 25, 0.54) 0%, rgba(15, 15, 15, 1) 18%, rgba(15, 15, 15, 1) 65%);
  box-shadow: inset 0px 2px 4px #C04215;
  padding: 25px;
  border-radius: 15px;
}

.social-media li {
  list-style: none;
  display: inline-block;
  margin: 10px;
}

.social-media li a {
  background: #303030;
  background: linear-gradient(180deg, rgb(48 48 48 / 42%) 24%, rgb(81 81 81 / 48%) 50%, rgb(48 48 48 / 43%) 76%);
  padding: 10px;
  border-radius: 10px;
  box-shadow: inset 0px 2px 4px #2C2C2C;
  display: block;
}

.m-r-0 {
  margin-right: 0 I !important;
}

footer.site-footer {
  padding: 60px 0;
}

.grid-col-5 {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
}

.footer-center {
  margin: 20px 0;
}

.footer-center li {
  line-height: 35px;
}

section.site-section.awards.gray-gradient-box {
  border-radius: 0;
}

footer.site-footer {
  padding: 90px 0 40px;
}

.platforms .container {
  max-width: 1020px;
}

.table .box-style {
  background: hsla(85, 74%, 8%, 1);
  background: linear-gradient(90deg, hsla(85, 74%, 8%, 1) 0%, hsla(83, 85%, 13%, 1) 50%, hsla(85, 74%, 8%, 1) 100%);
  background: -moz-linear-gradient(90deg, hsla(85, 74%, 8%, 1) 0%, hsla(83, 85%, 13%, 1) 50%, hsla(85, 74%, 8%, 1) 100%);
  background: -webkit-linear-gradient(90deg, hsla(85, 74%, 8%, 1) 0%, hsla(83, 85%, 13%, 1) 50%, hsla(85, 74%, 8%, 1) 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#162205", endColorstr="#283E05", GradientType=1);
}

table tr.gradient-box:hover td a {

  padding: 10px 20px 7px;
  text-align: center;
  color: #fff;
  border-radius: 15px;
  border: 1px solid #B83F14;
  background: #E64F19;
  background: linear-gradient(116deg, rgba(230, 79, 25, 1) 0%, rgba(65, 22, 7, 1) 18%, rgba(194, 66, 21, 1) 39%, rgba(230, 79, 25, 1) 56%, rgba(87, 30, 9, 1) 73%, rgba(65, 22, 7, 1) 100%);
}

.account-item img {
  margin-bottom: 10px;
}

.platforms-item {
  min-height: 220px;
}

section.site-section.accounts {
  padding: 60px 0 90px;
}

section.site-section.community {
  padding: 75px 0;
}

li.nav-item:last-child {
  border-right: none;
}

.help {
  border-radius: 100%;
  padding: 15px;
  position: fixed;
  right: 0;
  top: 50%;
}

.site-header .dropdown {
  position: initial;
}

.navbar {
  position: initial;
}

.site-header .container {
  position: relative;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  width: 100%;
}

.navbar-expand-lg .navbar-nav .small-menu .dropdown-menu {
  width: 260px;
  flex-wrap: wrap;
  left: 0;
}

ul.dropdown-menu.gray-gradient-box.row.show,
.navbar .nav-item:hover>ul.dropdown-menu.gray-gradient-box.row {
  display: flex;
  background: #303030;
  background: linear-gradient(180deg, rgb(23 21 21) 24%, rgb(0 0 0 / 99%) 50%, rgb(0 0 0) 76%);
  padding: 25px;
  border-radius: 15px;
  box-shadow: inset 0px 2px 4px #2C2C2C;
  margin-top: 20px;
}

/* Invisible bridge for hover */
.navbar .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
}

.small-menu ul.dropdown-menu.gray-gradient-box.row.show,
.navbar .nav-item.small-menu:hover>ul.dropdown-menu.gray-gradient-box.row {
  width: 260px;
  padding: 13px 5px;
  display: flex;
  margin-top: 20px;
}

.drop-img {
  color: #fff;
}

.dropdown-menu a {
  line-height: 32px;
  color: #fff;
}

.dropdown-menu ul {
  padding-left: 0;
  list-style: none;
}

.dropdown-menu p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 23px;
}

.header-right .gradient-box {
  padding: 5px;
}

.nav-link {
  padding: 0px;
}

.small-menu ul.dropdown-menu.gradient-box.row.show,
.navbar .nav-item.small-menu:hover>ul.dropdown-menu.gradient-box.row {
  width: 260px;
  padding: 15px 0px;
  display: flex;
  margin-top: 20px;
}

.dropdown-menu h6 {
  border-bottom: 1px solid #353535;
  padding-bottom: 5px;
  font-size: 14px;
  line-height: 25px;
  color: #e75521;
  margin-bottom: 14px;
}

.ball {
  -webkit-animation-name: bounce;
  -webkit-animation-duration: 1s;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: cubic-bezier(.5, 0.05, 1, .5);
  -webkit-animation-iteration-count: infinite;
}


.tab-holder .nav-tabs .nav-link {
  padding: 5px 18px;

}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  background-color: #d94b18;
}

.account-item {
  position: relative;
  transition: all 300ms;
  bottom: 0;
}

.account-item:hover {
  bottom: 15px;
}

.table {
  border-radius: 15px;
  overflow: hidden;
}

body::selection {
  color: #000;
  background-color: #E85D2B;
}

/* table tbody tr:hover {
    background: linear-gradient(182deg, rgb(0 0 0 / 54%) 0%, rgba(15, 15, 15, 1) 18%, rgba(15, 15, 15, 1) 65%);
    box-shadow: inset 0px 2px 4px #494444;

} */
td.table-gap {
  background: transparent;
  box-shadow: none;
  border: none !important;
}

.site-footer a:hover {
  color: #E85D2B;
}

.inner-banner {
  padding-top: 50px;
}

.country-holder .m-m-14 {
  margin-left: -14px;
}

.color-orange {
  color: #E85D2B;
}

.why-item img {
  background: #E85D2B;
  padding: 15px;
  border-radius: 10px;
  margin-right: 15px;
}

.why-item {
  padding: 20px 25px;
}

.orange-gradient {
  background: #C14215;
  background: linear-gradient(180deg, rgba(193, 66, 21, 1) 0%, rgba(232, 93, 43, 1) 66%, rgba(230, 79, 25, 1) 81%, rgba(193, 66, 21, 1) 100%);
  padding: 20px;
}

span.step-number {
  background: #fff;
  padding: 4px 20px;
  border-radius: 5px;
  color: #dd5525;
}

.btn-link img {
  background: #E85D2B;
  padding: 8px;
  border-radius: 10px;
}

.doc-holder img {
  max-width: 30px;
  margin-right: 5px;
}

.promotions .container {
  max-width: 900px;
}

.border-right {
  border-right: 1px solid #E85D2B;
}

.border-bottm-gray {
  border-bottom: 1px solid #303030;
  padding: 10px 0;
  margin-bottom: 10px;
}

.hover-fill:hover {
  background: #E64F19;
  background: linear-gradient(116deg, rgba(230, 79, 25, 1) 0%, rgba(65, 22, 7, 1) 18%, rgba(194, 66, 21, 1) 39%, rgba(230, 79, 25, 1) 56%, rgba(87, 30, 9, 1) 73%, rgba(65, 22, 7, 1) 100%);
}

.education-holder {
  border: 1px solid #3F3F3F;
  padding: 10px 10px 20px;
  border-radius: 10px;
}

.education-holder:hover {
  border: 1px solid #E85A27;
  border-radius: 10px;
  box-shadow: inset 0px 2px 4px #E85A27;
}

.item-text {
  padding: 15px;
}

.tag-orange {
  background: #C14215;
  background: linear-gradient(180deg, rgba(193, 66, 21, 1) 0%, rgba(232, 93, 43, 1) 66%, rgba(230, 79, 25, 1) 81%, rgba(193, 66, 21, 1) 100%);
  padding: 4px 15px;
  border-radius: 10px;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 14px;
}

span.number {
  background: #E75A27;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.container-sm {
  max-width: 1130px;
}

img.next-icon {
  position: absolute;
  right: 0;
  top: 73px;
}

.p-b-0 {
  padding-bottom: 0;
}

span.round {
  display: flex;
  background: #FF3B30;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  margin-top: 2px;
}

.footer-menu-holder h6 {
  text-transform: uppercase;
}

.form-item {
  padding: 15px 25px;
  border: none;
  margin-top: 10px;
  background: #303030;
  background: linear-gradient(180deg, rgb(23 23 23 / 29%) 24%, rgb(40 39 39) 50%, rgb(23 23 23) 76%);
  border-radius: 15px;
  box-shadow: inset 0px 2px 4px #2C2C2C;
  border: 1px solid #393939;
  color: #fff;
}

.p-l-adg {
  padding-left: 75px;
}

.cust-select {
  background: transparent;
  color: #fff;
  border: none;
  top: 51px;
  left: 25px;
}

option {
  color: #222;
}

.field-holder {
  margin-bottom: 20px;
}

.contact-address img {
  margin-top: -12px;
}

.btn-white-fill {
  background: #fff;
  color: #e15827 !important;
  padding: 12px 29px;
  border-radius: 15px;
  text-align: center;
}

.btn-white-border {
  border: 1px solid #fff;
  padding: 12px 29px;
  border-radius: 15px;
  text-align: center;
}

.contact-img img {
  position: absolute;
  top: 4px;
}

.execution .container {
  padding: 45px;
  overflow: hidden;
}

.banner-tag {
  position: initial !important;
}

.text-holder {
  max-width: 1040px;
  margin: 0 auto;
  margin-top: 30px;
}

button.hide-pass {
  background: transparent;
  border: none;
  right: 15px;
  position: absolute;
  top: 47px;
}

.checkbox-login {
  display: block;
  position: relative;
  padding-left: 29px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-login input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #eee;
  border-radius: 5px;
}

.checkbox-login:hover input~.checkmark {
  background-color: #ccc;
}

.checkbox-login input:checked~.checkmark {
  background-color: #E85B29;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-login input:checked~.checkmark:after {
  display: block;
}

.checkbox-login .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.login-desc-holder {
  background: url(../img/login-bg.png) no-repeat;
  background-position: bottom center;
}

/* element.style {
    height: 100vh;
} */
.login-desc-holder {
  height: 100vh;
}

.login-desc-holder img {
  max-width: 43%;
  margin-top: 70px;
}

.login-holder {
  padding: 30px 0;
}

.radio-holder {
  display: block;
  position: relative;
  padding-left: 27px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio-holder input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-holder .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #CB5327;
}

/* .radio-holder:hover input~.checkmark {
  background-color: #ccc;
} */

.radio-holder input:checked~.checkmark {
  background-color: #171717;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-holder input:checked~.checkmark:after {
  display: block;
}

.radio-holder .checkmark:after {
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E65D2B;
}

.calculator .form-item,
.range-count {
  box-shadow: inset 0px 2px 4px #2C2C2C;
  border: 1px solid #393939;
  color: #fff;
  box-shadow: inset 0px 2px 4px #2C2C2C;
  border: 1px solid #393939;
  color: #fff;
  background: #3B3B3B;
  background: linear-gradient(90deg, rgb(29 29 29) 0%, rgb(32 32 32) 100%);
}

.radio-item-holder div {
  width: 49%;
}

.m-r-4p {
  margin-right: 4%;
}

.radio-item-holder .radio-holder {
  margin-bottom: 0;
}

.column-2 {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.m-t-170 {
  margin-top: 170px;
}

.item-two img {
  max-width: 60px;
}

.text-right {
  text-align: right;
}

.form-range {
  height: 7px;
}

/* .form-range {
  background: hsla(135, 59%, 49%, 1);
  background: linear-gradient(360deg, hsla(135, 59%, 49%, 1) 0%, hsla(48, 100%, 50%, 1) 50%, hsla(3, 100%, 59%, 1) 100%);
  background: -moz-linear-gradient(360deg, hsla(135, 59%, 49%, 1) 0%, hsla(48, 100%, 50%, 1) 50%, hsla(3, 100%, 59%, 1) 100%);
  background: -webkit-linear-gradient(360deg, hsla(135, 59%, 49%, 1) 0%, hsla(48, 100%, 50%, 1) 50%, hsla(3, 100%, 59%, 1) 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#34C759", endColorstr="#FFCC00", GradientType=1);
} */

.form-range::-webkit-slider-thumb {
  background: gray;
}

.form-range::-moz-range-thumb {
  background: gray;
}

.form-range::-ms-thumb {
  background: gray;
}

-webkit-slider-thumb:active {
  background-color: red;
}

-webkit-slider-thumb,
.custom-range:focus::-webkit-slider-thumb,
.custom-range:focus::-moz-range-thumb,
.custom-range:focus::-ms-thumb {
  box-shadow: red;
}

.form-label {
  margin-bottom: .5rem;
}

.round-red,
.round-green {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  position: relative;
  top: 5px;
}

.round-red {
  background: #FF3B30;
  margin: 0 6px;

}

.round-green {
  background: #34C759;
  margin: 0 6px;

}

.range-holder {
  width: 100%;
}

.new-gray-gradient-box {
  box-shadow: inset 0px 2px 4px #2C2C2C;
  border: 1px solid #393939;
  color: #fff;
  background: #3B3B3B;
  background: linear-gradient(90deg, rgb(29 29 29) 0%, rgb(32 32 32) 100%);
  border-radius: 10px;
}

.item-box.new-gray-gradient-box {
  padding: 10px;
}

.p-l-0 {
  padding-left: 0;
}

.per-holder {
  width: 94%;
  height: 10px;
  display: block;
  background: #2E2E30;
  border-radius: 30px;
  overflow: hidden;
}

.green-item {
  display: block;
  height: 10px;
  width: 60%;
  background: #34C759;
}

.text-count {
  position: relative;
  top: -3px;
}

.signals-holder:hover {
  background: #E64F19;
  background: linear-gradient(198deg, rgba(230, 79, 25, 0.54) 0%, rgba(15, 15, 15, 1) 18%, rgba(15, 15, 15, 1) 65%);
  box-shadow: inset 0px 2px 4px #C04215;

}

.record-item {
  text-align: center;
}

.short-dec {
  color: #B7B7B7;
  max-width: 880px;
  margin: 0 auto;
}

.pro-bg {
  background: url(../img/pro-bg.png) bottom left no-repeat;
  background-position: 0 0;
}

.table-tick {
  background: #E64F19;
  padding: 7px;
  border-radius: 7px;
}

.professional-img img {
  position: absolute;
  top: -40px;
}

.professional .container {
  padding: 46px;
  overflow: hidden;
}

.side-article img {
  max-width: 120px;
}

.float-item {
  margin-top: -219px;
  padding-left: 15px;
}

.minutes-img {
  background: url(../img/minutes.svg) center;
}

.minute-item::before {
  content: "";
  height: 30px;
  width: 2px;
  background: #E64F19;
  display: block;
  position: absolute;
  bottom: -34px;
  left: 30px;
}

.minute-item:last-child:before {
  display: none;
}

.pip .container {
  padding: 54px 20px;
  overflow: visible;
}

.pip-img {
  top: 60px;
  margin-right: 25px;
}

.pip-img img {
  position: absolute;
  top: -75px;
  max-width: 304px;
}

.about-banner {
  background: url(../img/about-banner-bg.png) bottom center;
  min-height: 540px;
}

.about-header {
  padding: 30px 0;
  position: absolute;
  width: 100%;
}

.round-holder {
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.round-holder {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.investors-item {
  margin-left: -147px;
}

.market-item {
  min-height: 160px;
}

.award-item-holder {
  border-bottom: 1px solid #303030;
  padding: 15px 0;
}

.award-item-holder:last-child {
  border-bottom: none;
}

.accordion-item,
.accordion-button:not(.collapsed) {
  background-color: transparent;
  border: none;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 25px;
  color: #ffffff !important;
  text-align: left;
  padding: 15px;
}

.accordion-item .accordion-button {
  border-radius: 15px !important;
  padding: 15px 15px 15px 50px;
}

.accordion-item .accordion-collapse {
  padding: 15px !important;
  border-radius: 15px !important;
  margin-top: 15px;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../img/minus.svg);
}

.accordion-button {
  position: relative;
  display: flex;
  width: 100%;
  color: #212529;
  text-align: left;
}

.accordion-button::after {
  margin-left: 0;
  background-image: url(../img/plus.svg);
  filter: brightness(3.5);
  position: absolute;
  left: 13px;
  padding-left: 0;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../img/minus.svg);
}

.accordion-collapse {
  border-radius: 0 0 15px 15px;
}

.range-count {
  padding: 15px;
  box-shadow: none;
  border: none;
  border-radius: 15px;
}

.min-w-300 {
  min-width: 300px;
}

.range .gray-gradient-box {
  padding: 40px;
}

.about.contact-help .help {
  top: -80px;
}

.dropdown img {
  max-width: 20px;
}

.dropdown .drop-img img {
  max-width: 100px;
}

.one {
  margin-left: 101px;
}

.investors-item img {
  max-width: 45px;
}

.form-range::-webkit-slider-thumb {
  background-color: #34C759;
  /* Color of the slider thumb for Chrome, Safari, Opera, Edge */
  border: 2px solid #fff;
  background-color: #fff;
}

.form-range::-moz-range-thumb {
  background-color: #34C759;
  /* Color of the slider thumb for Firefox */
  margin-top: -12px;
  background-color: #fff;
}

.form-range::-webkit-slider-runnable-track {
  background: hsla(135, 59%, 49%, 1);
  background: linear-gradient(360deg, hsla(135, 59%, 49%, 1) 0%, hsla(48, 100%, 50%, 1) 50%, hsla(3, 100%, 59%, 1) 100%);
  background: -moz-linear-gradient(360deg, hsla(135, 59%, 49%, 1) 0%, hsla(48, 100%, 50%, 1) 50%, hsla(3, 100%, 59%, 1) 100%);
  background: -webkit-linear-gradient(360deg, hsla(135, 59%, 49%, 1) 0%, hsla(48, 100%, 50%, 1) 50%, hsla(3, 100%, 59%, 1) 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#34C759", endColorstr="#FFCC00", GradientType=1);
}

.form-range::-moz-range-track {
  background: hsla(135, 59%, 49%, 1);
  background: linear-gradient(360deg, hsla(135, 59%, 49%, 1) 0%, hsla(48, 100%, 50%, 1) 50%, hsla(3, 100%, 59%, 1) 100%);
  background: -moz-linear-gradient(360deg, hsla(135, 59%, 49%, 1) 0%, hsla(48, 100%, 50%, 1) 50%, hsla(3, 100%, 59%, 1) 100%);
  background: -webkit-linear-gradient(360deg, hsla(135, 59%, 49%, 1) 0%, hsla(48, 100%, 50%, 1) 50%, hsla(3, 100%, 59%, 1) 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#34C759", endColorstr="#FFCC00", GradientType=1);
}

/* Optional: Change the focus/active color */
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #34C759;

}


.range-slider .form-range::-webkit-slider-thumb {
  background-color: #DC5525;
  /* Color of the slider thumb for Chrome, Safari, Opera, Edge */
  border: 2px solid #fff;
}

.range-slider .form-range::-moz-range-thumb {
  background-color: #DC5525;
  /* Color of the slider thumb for Firefox */
  margin-top: -12px;
}

.range-slider .form-range::-webkit-slider-runnable-track {
  background: #1e1e21;
}

.range-slider .form-range::-moz-range-track {
  background: #1e1e21;
}

/* Optional: Change the focus/active color */
.range-slider .form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #DC5525;
  background: #fff;

}

.site-header .btn-fill {
  min-width: 160px;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: transparent;
}

section.site-section.enhance {
  padding-top: 90px;
}

img.m-l-10 {
  display: none;
}

.footer-logo-holder img {
  max-width: 200px;
}

.step-holder {
  min-height: 190px;
}

header.site-header {
  position: fixed;
  width: 100%;
  z-index: 999;
  transition: all 300ms;
}

header.site-header.header-scroll {
  background: #050505;
  padding: 20px 0;
}

.minute-item ::before {
  display: none !important;
}

/* .minute-item {
  margin-bottom: 5px !important;
} */

.inner-banner {
  padding-top: 145px;
}

.header-center li.nav-item {
  border-right: none;
  padding: 0 10px;
}

.header-center li.nav-item a {
  position: relative;
}

/* .header-center .dropdown-toggle::after {
  /* display: none !important; 
} */

.help {
  position: fixed;
  top: 85%;
  z-index: 999;
}

.site-banner .float-item {
  margin-top: 0;
}

.home-banner .container {
  padding-top: 40px;
}

.container-600 {
  max-width: 600px;
}

.phone .form-item {
  padding-left: 100px;
}

select.location-select {
  position: absolute;
  top: 51px;
  padding-left: 15px;
  background: transparent;
  color: #fff;
  border: none;
}

.phone .form-item {
  padding-left: 75px;
}

.upload {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.upload__input {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 9999;
}

.upload__btn {
  border: none;
  color: #E85D2B;
  background-color: white;
  padding: 8px 20px 8px 32px;
  font-size: 16px;
  font-weight: bold;
  background-position: 8px 8px;
  background-repeat: no-repeat;
  cursor: pointer;
  position: relative;
  z-index: 9999;
  background: transparent;
}

.m-t-90 {
  margin-top: 90px !important;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}

.core .minute-item::before {
  display: none
}

.p-t-0 {
  padding-top: 0;
}

.site-banner.inner-banner .nav-tabs {
  margin-bottom: 0;
}

.pip-2 .pip-img {
  margin: 0;
}

.pip-2 .pip-img img {
  max-width: 430px;
}


.calculator .minute-item::before {
  display: none;
}

.btn-swap {
  border: none !important;
  color: #fff !important;
}

.core .session-icon-wrap {
  background: linear-gradient(116deg, rgba(230, 79, 25, 1) 0%, rgba(65, 22, 7, 1) 18%, rgba(194, 66, 21, 1) 39%, rgba(230, 79, 25, 1) 56%, rgba(87, 30, 9, 1) 73%, rgb(17 5 1) 100%);
  padding: 7px;
  border-radius: 10px;
  width: 59px;
  height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.core .session-icon-wrap img {
  filter: invert(1);
  width: 30px !important;
  background: transparent;
  margin-right: 0;
  padding: 0;
  border-radius: 0;
}

.minute-item-holder h6 {
  font-size: 17px;
}


@media (max-width: 1400px) {

  .banner-right .banner-trade {
    width: 100%;
    margin-top: 40px;
  }

  .investors-item {
    margin-left: -97px;
  }

  .enhance-item {
    min-height: 270px;
  }

  .account-item {
    min-height: 640px;
  }

  .community-item {
    min-height: 240px;
  }

  .award-holder {
    min-height: 210px;
  }

  .tick-items li {
    font-size: 14px;
    line-height: 30px;
  }

}

@media (max-width: 1200px) {

  .investors-item {
    margin-left: -47px;
  }

  .side-article .m-r-10 {
    font-size: 14px;
  }

  .banner-right .glass-item {
    width: 100%;
    margin-right: 0 !important;
  }

  .banner-left img {
    margin-right: 20px !important;
    max-width: 30px;
  }

  .banner-right h5 {
    font-size: 20px;
  }

  .enhance-item {
    min-height: 300px;
  }

  .header-center li.nav-item {
    padding: 0 0px;
  }

  .btn-outline-custom {
    padding: 4px 20px !important;
  }

  .site-header .btn-fill {
    padding: 4px 20px !important;
    min-width: 102px;
  }

  .item-box.new-gray-gradient-box {
    min-height: 127px;
    font-size: 13px;
  }

  .item-box.new-gray-gradient-box p {
    font-size: 13px;
  }

  .why-item {
    min-height: 150px;
  }

  .highlight-pill {
    min-height: 130px;
  }
}

@media (max-width: 992px) {

  .item-box.new-gray-gradient-box {
    min-height: initial;
    margin-bottom: 15px;
  }

  .one {
    margin-left: 0;
  }

  .float-item {
    margin-top: 0;
    margin-bottom: 35px;
  }

  .banner-left {
    width: 100%;
    text-align: center;
  }

  .banner-right .glass-item {
    width: 100%;
    margin-right: 0 !important;
    margin-top: 0;
  }

  .banner-right {
    width: 100%;
    margin-top: 0;
  }

  .home-banner .container {
    flex-direction: column;
  }

  .banner-center {
    margin-top: 30px;
    margin-bottom: 25px;
  }

  .home-banner {
    padding: 25px 0;
  }

  .platforms .container {
    max-width: 720px;
  }

  .social-media li {
    margin: 0px;
  }

  .grid-col-5 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }

  .banner-left .m-t-80 {
    margin-top: 40px;
    justify-content: space-between;
  }

  .navbar-collapse {
    position: absolute;
    right: 0;
    top: 52px;
    z-index: 99;
    background: #303030;
    background: linear-gradient(180deg, rgb(23 21 21) 24%, rgb(0 0 0 / 99%) 50%, rgb(0 0 0) 76%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: inset 0px 2px 4px #2C2C2C;
    padding: 15px;
    border-radius: 15px;
    width: 100%;
  }

  li.nav-item {
    border-right: none;
    line-height: 15px;
  }

  .header-center {
    position: initial;
  }

  li.nav-item {
    line-height: 32px;
  }

  .dropdown-menu {
    padding: 5px;
  }

  ul.dropdown-menu.gray-gradient-box.row.show,
  .navbar .nav-item:hover>ul.dropdown-menu.gray-gradient-box.row {

    padding: 15px 5px;
    width: 100% !important;
  }

  .promotions-holder {
    text-align: center;
  }

  .promotions-img {
    margin-bottom: 25px;
  }

  .color-orange {
    margin-bottom: 15px;
    display: block;
  }

  img.next-icon {
    display: none;
  }

  .border-right {
    border-right: none;
  }

  .contact-img img {
    position: initial;
  }

  .investors-item {
    margin-left: 0;
  }

  .pip-img {
    top: -20px;
  }

  .pip-img img {
    position: initial;
    top: -265px;
    max-width: 475px;
  }

  .professional-img img {
    position: initial;
  }

  .site-header .btn-fill {
    min-width: initial;
  }

  .tick-items li {
    text-align: center;
  }

  .account-item {
    min-height: initial;
  }

  .header-right .btn-fill {
    padding: 4px 20px 6px;
  }

  .header-left img {
    max-width: 110px;
  }

  .header-center li.nav-item {
    border-bottom: 1px solid #3e3e3e;
    padding: 3px;
    height: initial;
    /*border-right: 0;*/
    border-right: none;
  }

  .header-center li.nav-item a {
    top: initial;
  }

  .step-holder {
    min-height: initial;
  }

  .minute-item::before {
    height: 58px;
  }

  .minute-item img {
    position: relative;
  }

  header.site-header {
    padding: 30px 0;
    position: fixed;
    width: 100%;
  }

  section.site-banner {
    padding-top: 130px;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    width: 100%;
  }

  .cust-w-300 {
    text-align: left;
  }

  .navbar-toggler {
    padding: 3px;
  }

  .navbar-toggler-icon {
    width: 25px;
    height: 25px;

  }

  .item-box.new-gray-gradient-box p {
    font-size: initial;
  }

  .bonus-featured,
  .bonus-card {
    text-align: center;
  }

  .enhance-item,
  .platforms-item {
    min-height: initial;
  }
}

@media (max-width: 550px) {

  .grid-col-5 {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-top ul {
    padding-left: 0;
  }

  .banner-left .m-t-80 {
    flex-direction: column;
    align-items: center;
  }

  .investors-item {
    display: flex;
    justify-content: center;
  }

  .btn-fill,
  .signals-holder:hover .btn-border {
    padding: 5px 20px;
  }

  .header-right a {
    font-size: 12px;
  }

  .pip-2 a {
    display: block;
    margin: 15px 0 !important;
  }

  .execution a {
    display: block;
    margin-bottom: 15px;
    margin-right: 0 !important;
  }
}

/* --- Custom Client Requests --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

/* Header dropdown hover CSS (hooks added above to existing show classes) */
/* .navbar .dropdown-toggle::after {
   display: none !important;
} */

/* Mega menu adjustments */
@media (min-width: 992px) {
  .trading-dropdown {
    max-width: 1080px !important;
    left: 0 !important;
  }

  .education-dropdown {
    width: 600px !important;
    
  }
}

/* Dropdown items shouldn't wrap awkwardly */
.dropdown-menu li a {
  white-space: nowrap;
}

/* Trading background for banners */
.trading-bg {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.7) 0%, rgba(5, 5, 5, 0.9) 100%), url('../img/banner-bg.png') !important;
  background-size: cover !important;
  background-position: center !important;
}

.poppins-heading {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
}

/* --- Apple Watch Carousel Styling --- */
.watch-holder {
    width: 314px;
    height: 381px;
    background: url(../img/watch.png) no-repeat center;
    padding: 47px 40px;
}

.watch-holder .owl-carousel .owl-dots.disabled, 
.watch-holder .owl-carousel .owl-nav.disabled {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
 
.watch-holder button.owl-next, 
.watch-holder .owl-prev {
    width: 45px;
    height: 45px;
    display: inline-block;
    background: #1b1b1b url(../img/watch-arrow-right.svg) no-repeat center !important;
    padding: 10px;
    border-radius: 100%;
    box-shadow: inset 0px 2px 4px #2C2C2C !important;
    margin: 10px;
    text-indent: -100px;
    overflow: hidden;
}

.watch-holder .owl-prev {
    transform: rotate(180deg);
}

/* Flash Animations for Price Updates */
.price-flash {
  transition: background-color 0.8s ease;
}
.price-value, .sell-value, .buy-value {
  transition: color 0.3s ease;
}
tr.price-flash.price-up,
.glass-item.price-flash.price-up {
  background-color: rgba(52, 199, 89, 0.12) !important;
  box-shadow: inset 0 0 10px rgba(52, 199, 89, 0.18);
}
.price-flash.price-up .price-value,
.price-flash.price-up .sell-value,
.price-flash.price-up .buy-value {
  color: #34C759 !important;
}
tr.price-flash.price-down,
.glass-item.price-flash.price-down {
  background-color: rgba(255, 59, 48, 0.12) !important;
  box-shadow: inset 0 0 10px rgba(255, 59, 48, 0.18);
}
.price-flash.price-down .price-value,
.price-flash.price-down .sell-value,
.price-flash.price-down .buy-value {
  color: #FF3B30 !important;
}