@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

html {
  scroll-behavior: smooth;
}

:root {
  --body-bg: #f6f6f6;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: var(--body-bg);
  font-family: "Jost", sans-serif;
}

img {
  width: 100%;
  height: auto;
}

a {
  color: var(--bs-body-color);
  text-decoration: none;
  transition: 0.4s ease-in-out;
}

a:hover {
  color: #00aaff;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

.top_bar i {
  color: #00aaff;
}

.section_padding {
  padding-top: 120px;
  position: relative;
}

.sec_heading_wrapper {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.position-relative {
  z-index: 1;
}

.row_gap {
  row-gap: 24px !important;
}

.vertical_align {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.btn_group {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* button css start */

.cust_btn {
  position: relative;
  width: 190px;
  height: 55px;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 2px;
  border-top: 0.5px solid rgb(0 170 255);
  border-left: 0.5px solid rgb(0 170 255);
  /* border-right: 0.5px solid transparent; */
  /* border-bottom: 0.5px solid transparent; */
  padding-left: 40px;
  transition: 0.5s;
  background: #00e3cd;
  color: #ffffff;
  font-weight: 600;
}

.cust_btn:hover {
  padding-left: 0px;
  padding-right: 40px;
  color: #ffffff;
  /* border-right: 0.5px solid rgb(0, 170, 255); */
  /* border-bottom: 0.5px solid rgb(0, 170, 255); */
  /* border-top: 0.5px solid transparent; */
  /* border-left: 0.5px solid transparent; */
}

.cust_btn span {
  position: absolute;
  left: 7px;
  width: 40px;
  height: 40px;
  background: #00aaff;
  border-radius: 100%;
  transition: 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-51%);
  color: #ffffff;
}

.cust_btn:hover span {
  left: calc(100% - 48px);
}

/* button css end */

/* top bar css start */

.top_bar {
  padding: 16px 0;
  background: black;
  overflow: hidden;
}

.top_bar_logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top_bar_cont {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top_bar_sc {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.callto,
.mailto {
  display: flex;
  align-items: center;
  gap: 5px;
}

.callto a,
.mailto a {
  color: white;
}

/* top bar css end */

/* navbar css start */

.navbar-brand {
  display: flex;
  align-items: center;
}

.nav_collapse {
  border-left: 1px solid #00aaff;
  padding-left: 20px;
}

.nav_bar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff00 !important;
  padding: 12px 0;
  transition: all 0.4s ease-in-out;
  transition-delay: 0.8ms;
  box-shadow: 0 0px 5px rgb(0 0 0 / 10%);
  /* overflow: hidden; */
}

.nav_bar .dropdown-menu {
  /* background: rgb(255 255 255 / 65%) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0px 5px rgb(0 0 0 / 10%);
    border: 0; */
}

.nav_blur_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: -1;
  background: rgb(255 255 255 / 65%);
}

.sk_nav {
  padding: 24px 0px;
}

.navbar-nav {
  align-items: center;
  transition: all 0.4s ease-in-out;
}

.nav-link {
  padding: 5px 15px;
  color: #425475;
}

.navbar-nav .nav-link.active {
  background: #00aaff;
  color: white;
  border-radius: 6px;
  padding: 5px 15px;
}

.nav_brand {
  opacity: 0;
  width: 0;
  margin: 0;
}

.nav_brand.scrolled {
  opacity: 1;
  width: 200px;
  margin-right: 20px;
}

.top_bar_logo .nav_brand {
  opacity: 1;
  width: 200px;
}

.nav_btn_wrapper {
  display: flex;
  gap: 12px;
}

.nav_bar .animated_button {
  padding: 6px 30px;
  font-size: 14px;
  /* box-shadow: 0 0 0 1px #00aaff; */
}

.nav_bar .animated_button:hover {
  box-shadow: 0 0 0 5px transparent;
}

/* navbar css end */

/* hero section css start */

.hero_section {
  /* padding-top: 55px; */
  position: relative;
  z-index: 1;
  /* height: 100vh; */
  padding: 80px 0 0;
}

.hero_section .container {
  /* overflow: hidden; */
}

.hero_section .mt_hero_img {
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

.bg_grad {
  width: 250px;
  height: 250px;
  position: absolute;
  border-radius: 100%;
  filter: blur(60px);
}

.grad1 {
  background: #00aaff38;
  left: 35%;
  bottom: 13%;
  z-index: -1;
}

.grad2 {
  background: #00e3cd38;
  right: 35%;
  bottom: 13%;
  z-index: -1;
}

.grad3 {
  background: #00e3cd38;
  left: 20%;
  bottom: 0;
  z-index: -1;
}

.grad4 {
  background: #00aaff38;
  right: 20%;
  bottom: 0;
  z-index: -1;
}

.grad5 {
  background: #00e3cd38;
  left: 25%;
  top: 20%;
  z-index: -1;
}

.grad6 {
  background: #00aaff30;
  right: 30%;
  top: 5%;
  z-index: -1;
}

.hero_content_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  /* margin-top: 100px; */
}

.hero_content_wra_in {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.sec_subhead {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin: 0 auto;
}

.sec_subhead_ic {
  background: #00aaff;
  color: #ffffff;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.sec_subhead_ti {
  background: #ececec;
  padding: 5px 15px;
  border-radius: 8px;
  font-weight: 500;
  /* color: #00aaff;  */
}

.sec_subhead_line {
  width: 25px;
  height: 3px;
  background: #ececec;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.sec_subhead_ti_wr {
  display: flex;
  align-items: center;
}

.hero_heading {
  font-size: 56px;
  text-align: center;
  text-transform: capitalize;
  font-weight: 600;
  margin: 0;
}

.hero_section .hero_heading {
  text-align: start;
}

.hero_section .hero_description {
  text-align: start;
  margin: 0;
}

.hero_section .hero_content_wra_in {
  align-items: flex-start;
}

.hero_description {
  font-size: 18px;
  text-align: center;
  /* margin: 0; */
}

.he_assets_wrapper {
  display: flex;
  align-items: center;
  margin: 0 0 12px;
}

.he_assets {
  width: 55px;
  height: 55px;
  margin-left: -14px;
  border-radius: 100%;
  border: 4px solid #f6f6f600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 4px 4px rgb(255 255 255 / 30%) inset;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgb(255 255 255 / 20%);
}

.he_assets:last-child {
  width: fit-content;
  border-radius: 40px;
  padding: 0 12px;
  font-size: 18px;
}

.he_assets:nth-child(1) {
  margin-left: -4px;
}

.he_img_wrapper {
  position: relative;
  margin-top: 20px;
}

.hero_man_img {
  max-width: 480px;
}

.he_me_info {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
  border-radius: 10px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: absolute;
  z-index: 1;
  background: rgb(255 255 255 / 40%);
}

.he_me_info1 {
  bottom: 20%;
  left: -30%;
}

.he_me_info2 {
  bottom: 35%;
  right: -25%;
}

/* .he_me_info3 {
    top: 40%;
    left: -14%;
} */
.he_me_info3 {
  top: 28%;
  left: -15%;
}

/* .he_me_info4 {
    top: 40%;
    right: -7%;
} */

.he_me_info4 {
  top: 30%;
  right: -20%;
}

.he_me_info5 {
  right: -25%;
  top: 15%;
}

.he_me_info6 {
  right: -50%;
  top: 52%;
}

.he_me_main_info p:first-child {
  font-size: 20px;
  font-weight: 500;
  color: #5a5a5a;
}

.he_me_main_info p:last-child {
  font-size: 18px;
  color: #5a5a5a;
}

.he_me_in_img {
  width: 40px;
}

/* hero section css end */

/* account type section css start */

.account_type_section {
  position: relative;
}

.sec_heading {
  font-size: 46px;
  text-align: center;
  text-transform: capitalize;
  font-weight: 600;
  margin: 0;
}

.ass_wrapper {
  position: relative;
}

.ass_wrapper .grad3 {
  bottom: -10%;
}

.ass_wrapper .grad4 {
  bottom: -10%;
}

.forex_chart {
  height: 470px;
  background: linear-gradient(165deg,
      #00e3cd26,
      transparent,
      transparent,
      #00aaff17);
  /* box-shadow: #00e3cd08 3px 3px 6px 0px inset, #00aaff0d -3px -3px 6px 1px inset; */
  position: relative;
  padding: 20px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.indices_chart {
  height: 470px;
  background: linear-gradient(345deg,
      #00e3cd26,
      transparent,
      transparent,
      #00aaff17);
  /* box-shadow: #00e3cd08 3px 3px 6px 0px inset, #00aaff0d -3px -3px 6px 1px inset; */
  position: relative;
  padding: 20px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.crypto_chart {
  height: 470px;
  background: linear-gradient(345deg,
      #00aaff17,
      transparent,
      transparent,
      #00e3cd26);
  /* box-shadow: #00e3cd08 3px 3px 6px 0px inset, #00aaff0d -3px -3px 6px 1px inset; */
  position: relative;
  padding: 20px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.commodities_chart {
  height: 470px;
  background: linear-gradient(165deg,
      #00aaff17,
      transparent,
      transparent,
      #00e3cd26);
  /* box-shadow: #00e3cd08 3px 3px 6px 0px inset, #00aaff0d -3px -3px 6px 1px inset; */
  position: relative;
  padding: 20px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.tradingview-widget-copyright {
  display: none;
}

.tv-widget-chart__nav {
  padding: 16px 0px 0;
}

.tv-widget-chart__container-wrappper {
  padding: 18px 0px 16px;
}

.account_type_home_2 {
  margin-bottom: 40px;
}

.ter_it {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ac_ty_info_row {
  row-gap: 8px !important;
}

.ter_it i {
  color: #00aaff;
}

.f_p {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
}

.acc_ty_ca_ti {
  color: #00aaff;
}

.plan {
  border-radius: 16px;
  padding: 15px;
  background: linear-gradient(135deg,
      #00e3cd26,
      transparent,
      transparent,
      #00aaff17);
  box-shadow: #00e3cd08 3px 3px 6px 0px inset, #00aaff0d -3px -3px 6px 1px inset;
  color: #697e91;
}

.plan strong {
  font-weight: 600;
  color: #425275;
}

.plan .inner {
  padding: 20px;
  background-color: #ffffff94;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.plan .pricing {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #00aaff29;
  border-radius: 99em 0 0 99em;
  display: flex;
  align-items: center;
  padding: 0.625em 0.75em;
  font-size: 1.25rem;
  font-weight: 600;
  color: #425475;
}

.plan .pricing small {
  color: #707a91;
  font-size: 0.75em;
  margin-left: 0.25em;
}

.plan .title {
  font-weight: 600;
  font-size: 1.25rem;
  color: #00aaff;
}

.plan .title+* {
  margin-top: 0.75rem;
}

.plan .info+* {
  margin-top: 1rem;
}

.plan .features {
  display: flex;
  flex-direction: column;
}

.plan .features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan .features li+* {
  margin-top: 0.75rem;
}

.plan .features .icon {
  background-color: #00aaff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 14px;
}

.plan .features .icon svg {
  width: 14px;
  height: 14px;
}

.plan .features+* {
  margin-top: 1.25rem;
}

.plan .action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.plan .button {
  background-color: #6558d3;
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
  text-align: center;
  border: 0;
  outline: 0;
  width: 100%;
  padding: 0.625em 0.75em;
  text-decoration: none;
}

.plan .button:hover,
.plan .button:focus {
  background-color: #4133b7;
}

.animated_button {
  position: relative;
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 9px 36px;
  border: none;
  font-size: 16px;
  border-radius: 100px;
  font-weight: 600;
  box-shadow: 0 0 0 2px #00aaff;
  /* box-shadow: 0px 2px 2px #00a8fc, 0px -2px 2px #00e3cd; */
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  color: #425475;
}

.animated_button svg {
  position: absolute;
  width: 20px;
  fill: #00e3cd;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated_button .arr-1 {
  right: 16px;
}

.animated_button .arr-2 {
  left: -25%;
}

.animated_button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #00e3cdbf, #fbfbfb, #00aaffbf);
  box-shadow: #00e3cd08 3px 3px 6px 0px inset, #00aaff0d -3px -3px 6px 1px inset;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  color: #425475;
}

.animated_button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated_button:hover {
  /* box-shadow: 0px 12px 0px transparent, 0px -12px 0px transparent; */
  box-shadow: 0 0 0 8px transparent;
  color: #425475;
}

.animated_button:hover .arr-1 {
  right: -25%;
}

.animated_button:hover .arr-2 {
  left: 16px;
}

.animated_button:hover .text {
  transform: translateX(10px);
}

.animated_button:hover svg {
  fill: #00aaff;
}

.animated_button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #00aaff;
}

.animated_button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

/* account type section css end */

.benefit_section {
  position: relative;
  /* background: linear-gradient(0deg, #00e3cd00,#00aaff29, #00e3cd00); */
}

.benefit_card {
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 20px;
  gap: 15px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgb(255 255 255 / 40%);
}

.be_ca_img {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.be_ca_ti {
  margin-bottom: 10px;
}

.be_ca_desc {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.5px;
}

/* .terminal_section {
    background: linear-gradient(180deg, #00aaff29, #00e3cd00);
} */

.terminal_section {
  position: relative;
}

.trading_ter_img {
  max-width: 800px;
  margin: 0 auto 80px;
}

.terminal_card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 10px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgb(255 255 255 / 40%);
  gap: 20px;
}

.ter_version {
  margin: 0;
}

.ter_ic {
  font-size: 45px;
  color: #00aaff;
  background-image: linear-gradient(132deg, #00aaff, #00e3cd);
  background-size: 100%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ter_op_ti {
  margin: 0;
}

.custom-col-5 {
  width: 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

/* @media (min-width: 768px) {
    .custom-col-5 {
      width: 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
  }
  @media (max-width: 576px) {
    .custom-col-5 {
      width: 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
  } */

.trading_steps_section {
  position: relative;
}

.trading_steps_section h3.te_title,
.your_section h3 {
  font-size: 22px;
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 5px;
}

.trading_steps_section p.te_text,
.your_section p {
  font-size: 18px;
}

.working_block_one {
  position: relative;
  display: block;
  text-align: center;
  padding: 20px 15px 0px;
}

.working_block_one .inner_box {
  position: relative;
  display: block;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: rgb(255 255 255 / 40%);
  border-radius: 10px;
  padding: 15px;
}

.icon_box {
  width: 90px;
  height: 85px;
  margin: 0 auto;
}

.working_block_one:before {
  position: absolute;
  content: "";
  border: 2px solid rgb(0 170 255 / 40%);
  border-radius: 10px;
  left: 0px;
  top: 0px;
  width: 100%;
  height: calc(100% - 40px);
}

.ar_down_box {
  width: 30px;
}

.working_block_one .ar_down_box {
  position: absolute;
  left: 50%;
  top: -113px;
  margin-left: -27px;
  width: 54px;
  height: 54px;
  line-height: 52px;
  text-align: center;
  border: 2px solid rgb(0, 170, 255);
  border-radius: 50%;
}

.working_block_one .ar_down_box:before {
  position: absolute;
  content: "";
  background: rgb(0 170 255 / 40%);
  left: 24px;
  top: 52px;
  width: 2px;
  height: 60px;
}

.working_block:first-child .working_block_one .ar_down_box:after {
  position: absolute;
  content: "";
  border: 2px solid rgb(0 170 255 / 40%);
  left: 24px;
  bottom: 52px;
  width: 100px;
  height: 60px;
  border-radius: 10px 0px 0px 0px;
  border-right: none;
  border-bottom: none;
}

.working_block:nth-child(2) .working_block_one .ar_down_box:after,
.working_block:nth-child(3) .working_block_one .ar_down_box:after {
  position: absolute;
  content: "";
  background: rgb(0 170 255 / 40%);
  left: 24px;
  bottom: 52px;
  width: 2px;
  height: 40px;
}

.working_block:last-child .working_block_one .ar_down_box:after {
  position: absolute;
  content: "";
  border: 2px solid rgb(0 170 255 / 40%);
  right: 24px;
  bottom: 52px;
  width: 100px;
  height: 60px;
  border-radius: 0px 10px 0px 0px;
  border-left: none;
  border-bottom: none;
}

.trading_steps_section .working_block:nth-child(2),
.trading_steps_section .working_block:nth-child(3) {
  margin-top: 80px;
}

.process_box {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgb(255 255 255 / 40%);
  padding: 50px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto 70px;
  box-shadow: 0px 6px 8px -8px rgb(0 0 0 / 10%);
  height: 400px;
}

.process_box img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.te_subtitle {
  background: #00aaff;
  color: white;
  border-radius: 6px;
  padding: 5px 15px;
  width: fit-content;
  margin: 0 auto 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.ar_down_box span {
  display: block;
  color: #00e3cd;
  transform: rotate(90deg);
  font-size: 25px;
}

.te_text {
  margin: 0;
  font-size: 18px;
}

.your_section {
  position: relative;
}

.he_me_card {
  background: rgb(255 255 255 / 40%);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.he_me_ca_img {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.he_me_card p {
  margin: 0;
  font-size: 18px;
  text-align: center;
}

.he_me_card h3,
.he_me_card h4 {
  margin: 0;
}

.payment_methods_slider .plan .pricing {
  font-size: 15px;
  padding: 5px 15px;
  display: none;
}

.payment_methods_slider .plan .inner {
  padding: 15px;
}

.payment_methods_slider .plan {
  padding: 10px;
}

.footer_section {
  position: relative;
  padding-bottom: 24px;
}

.footer_logo {
  width: 160px;
  display: block;
  /* padding: 20px 0; */
}

.footer_section i {
  color: #00aaff;
}

.footer_section .callto a,
.footer_section .mailto a {
  color: #212529;
}

.footer_section .callto,
.footer_section .mailto,
.footer_section .footer_sc {
  /* backdrop-filter: blur(15px); */
  /* -webkit-backdrop-filter: blur(15px); */
  /* background: rgb(255 255 255 / 50%); */
  /* padding: 20px 30px; */
  /* border-radius: 10px; */
  font-size: 18px;
  justify-content: center;
}

.footer_sc {
  display: flex;
  align-items: center;
  /* justify-content: flex-end; */
  gap: 12px;
}

.fo_co_pri {
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgb(255 255 255 / 50%);
  padding: 20px 30px;
  border-radius: 10px;
  margin-top: 40px;
}

.fo_warning_wrapper {
  /* margin: 40px 0 0px; */
}

.fo_warning_wrapper i {
  font-size: 12px;
}

.footer__widget .title,
.fo_warning_wrapper .title {
  margin-left: 0;
  margin-bottom: 14px;
}

.fo_li_row {
  width: 100%;
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.fo_li_col {
  width: 20%;
}

.footer_sc a {
  font-size: 16px;
  border-radius: 6px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_sc a i {
  color: white;
}

.facebook {
  background-color: #316ff6;
}

.linkedin {
  background-color: #0a66c2;
}

.youtube {
  background-color: #f60000;
}

.instagram {
  background-color: #e1306c;
}

.twitter {
  background-color: #000000;
}

.telegram {
  background-color: #28a7e8;
}

.copy {
  background-color: #cee9f7;
}

.ft_bo_li {
  display: flex;
  align-items: center;
  gap: 15px;
}

.vertical_divider {
  width: 2px;
  height: 25px;
  background: linear-gradient(135deg, #00e3cd, #00aaff);
  border-radius: 4px;
}

.footer_bottom_bar .vertical_divider {
  height: 40px;
}

.widget__links li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.widget__links li:last-child {
  margin-bottom: 0px;
}

.widget__links li i {
  font-size: 12px;
}

.fo_bo_bar_left {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
}

.fo_bo_bar_right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

.footer_bottom_bar {
  display: flex;
  align-items: center;
  padding: 26px 0;
  justify-content: space-between;
}

.fo_us_link_wra {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 40px 0 14px;
}

.footer_us_li {
  /* color: #00aaff; */
}

.img_18 {
  width: fit-content;
}

.blog_section {
  position: relative;
}

.blog_card {
  background: rgb(255 255 255 / 60%);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog_card img {
  /* border-top-left-radius: 12px; */
  /* border-top-right-radius: 12px; */
}

.bl_ti {
  font-size: 22px;
  line-height: 1.4;
  margin: 0;
}

.bl_me_in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.blog_card p {
  margin: 0;
}

.blog_card i {
  color: #00aaff;
}

.review_section {
  position: relative;
}

.see_more_wr {
  width: fit-content;
  margin: 60px auto 0;
}

.review_section .plan .animated_button {
  padding: 6px 30px;
  font-size: 14px;
}

.review_section .plan .pricing {
  padding: 10px;
  gap: 4px;
}

.review_section .plan .pricing i {
  color: #00aaff;
  font-size: 18px;
}

.review_section .plan .title {
  margin: 0px;
}

.re_us_img {
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 100%;
}

.review_section .plan .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.review_section .plan .info {
  margin: 0;
}

.review_section .plan .info+* {
  margin-top: 8px;
}

/* ========================================== */

.acc_ty_ta_co {
  border-radius: 16px;
  padding: 15px;
  background: linear-gradient(135deg,
      #00e3cd26,
      transparent,
      transparent,
      #00aaff17);
  box-shadow: #00e3cd08 3px 3px 6px 0px inset, #00aaff0d -3px -3px 6px 1px inset;
  color: #697e91;
}

.acc_ty_ta_co_in {
  padding: 15px;
  background-color: #ffffff94;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

table,
td,
th {
  /* border: 1px solid #ddd; */
  text-align: left;
}

table {
  border-collapse: separate;
  width: 100%;
  border-spacing: 10px;
}

th,
td {
  padding: 15px;
  text-align: center;
}

td {
  color: #425475;
}

th {
  background-color: #00aaff29;
  border-radius: 99em;
  color: #425475;
}

th:first-child {
  background-color: transparent;
  text-align: left;
  /* color: #00aaff; */
}

td:first-child {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  color: #697e91;
}

.account_spec_section tr:last-child td {
  padding-bottom: 0;
}

tr:nth-child(even) {
  background: linear-gradient(135deg, #00e3cc1a, transparent, #00aaff17);
}

tr:nth-child(odd) {
  background: linear-gradient(135deg, #00aaff17, transparent, #00e3cc1a);
}

tr:first-child {
  background: transparent;
}

.account_spec_section tr:last-child {
  background: transparent;
}

.acc_ty_ta_co_in .animated_button {
  padding: 6px 30px;
  font-size: 14px;
}

.faq_section {
  position: relative;
}

.faq {
  border-radius: 16px;
  padding: 10px;
  background: linear-gradient(135deg,
      #00e3cd26,
      transparent,
      transparent,
      #00aaff17);
  box-shadow: #00e3cd08 3px 3px 6px 0px inset, #00aaff0d -3px -3px 6px 1px inset;
  color: #697e91;
}

.faq_inn {
  background-color: #ffffff94;
  border-radius: 12px;
}

.faq_inn a {
  padding: 20px;
  display: block;
}

.faq_inn a h3 {
  margin: 0;
  font-size: 26px;
}

.faq_ques_active {
  color: #00aaff;
}

.faq_ans {
  padding: 0 20px 20px;
  margin: 0;
  font-size: 18px;
}

.faq_wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.why_us_section {
  position: relative;
}

.why_us_section .he_me_card h3 {
  margin: 0;
  /* min-height: 67px; */
  text-align: center;
  font-size: 24px;
}

/* .why_us_section .he_me_ca_img img {
    height: 100%;
} */
.why_us_section .he_me_card p {
  margin: 0;
  /* font-size: 16px; */
}

.why_us_section .he_me_card {
  gap: 12px;
  padding: 20px;
}

.account_spec_section {
  position: relative;
}

.swiper-3d .swiper-slide-shadow {
  background: none;
}

.account_type_he_sl .plan .inner {
  background: white;
}

.account_type_hero_section {
  position: relative;
  padding-top: 180px;
  padding-bottom: 180px;
}

.account_type_he_sl .plan {
  background: linear-gradient(135deg,
      #00e3cd35,
      transparent,
      transparent,
      #00aaff35);
  box-shadow: #00e3cd20 3px 3px 6px 0px inset, #00aaff20 -3px -3px 6px 1px inset;
}

.ac_he_sl_wra {
  max-width: 425px;
  margin: 0 auto;
  /* margin-left: 50px; */
}

.account_type_he_sl {
  padding-left: 50px;
}

.ac_he_img {
  margin-top: -210px;
  width: 115%;
}

.account_type_hero_section .hero_content_wra_in {
  /* margin-top: 125px; */
  align-items: flex-start;
}

.account_type_hero_section .hero_heading,
.account_type_hero_section .hero_description,
.account_type_hero_section .sec_heading {
  text-align: left;
}

.pay_sys_img {
  /* max-width: 250px; */
  /* margin: 15px; */
  background: linear-gradient(135deg,
      #00e3cd26,
      transparent,
      transparent,
      #00aaff17);
  box-shadow: #00e3cd08 3px 3px 6px 0px inset, #00aaff0d -3px -3px 6px 1px inset;
  padding: 15px 30px;
  border-radius: 12px 12px 0 0;
}

.pay_sys_img img {
  max-width: 200px;
  max-height: 100px;
  margin: 0 auto;
  display: block;
}

.pay_sys_card {
  background: none;
  box-shadow: #00e3cd15 3px 3px 6px 0px inset, #00aaff15 -3px -3px 6px 1px inset;
}

.pay_sys_card .inner {
  padding: 15px;
  border-radius: 0 0 12px 12px;
  background: #ffffffa6;
}

.pay_sys_card .animated_button {
  padding: 6px 30px;
  font-size: 14px;
  /* box-shadow: 0 0 0 1px #00aaff; */
}

.pay_sys_card .account_type_card_btns {
  margin-top: 22px;
}

.pay_sys_ca_bo {
  margin-top: 15px;
}

.Withdrawal_page_hero {
  padding: 145px 0 0;
  /* height: 100vh; */
  position: relative;
}

.Withdrawal_page_hero .he_me_ca_img {
  width: 80px;
  height: 80px;
}

.depo_with_me_section {
  position: relative;
}

.Withdrawal_page_hero .hero_content_wra_in {
  margin-bottom: 150px;
}

.special_offer_slider .plan .inner {
  padding: 0;
}

.sp_of_co {
  padding: 20px;
}

.special_offer_slider .animated_button {
  padding: 6px 30px;
  font-size: 14px;
}

.special_offer_slider .title {
  margin: 0;
}

.special_offer_section {
  position: relative;
}

.trading_platform_hero {
  position: relative;
  padding: 130px 0;
}

.trading_platform_hero .hero_heading,
.trading_platform_hero .hero_description {
  text-align: left;
}

.trading_platform_hero .hero_content_wra_in {
  align-items: flex-start;
}

.trading_platform_hero .row_gap {
  row-gap: 180px !important;
}

.mt_hero_img {
  width: 90%;
  margin: 0 auto;
}

.mt4_section {
  position: relative;
}

.mt4_section .he_me_card h3 {
  margin: 0;
  /* min-height: 67px; */
  text-align: center;
  font-size: 24px;
}

.about_mt_4 {
  padding: 200px 0;
  position: relative;
}

.ab_mt_co .sec_heading_wrapper {
  margin: 0;
}

.ab_mt_co {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ab_mt_co .sec_heading {
  text-align: start;
}

.ro_ch_s_wra {
  background-color: #00aaff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
}

.ro_ch_s_wra svg {
  width: 14px;
  height: 14px;
}

.ab_mt_ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.ab_mt_ul li:first-child {
  margin: 0;
}

.opacity_50 {
  opacity: .50;
}

.start_tading_cta {
  margin-top: 170px;
  padding: 30px;
  /* background: linear-gradient(135deg, #00e3cd26, transparent, transparent, #00aaff17); */
  box-shadow: 0px 6px 8px -8px rgb(0 0 0 / 10%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgb(255 255 255 / 40%);
  border-radius: 20px;
}

.start_tading_cta_btns {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  align-items: center;
}

.start_tading_cta .sec_heading {
  margin-bottom: 12px;
  text-align: left;
}

.start_tading_cta .animated_button {
  padding: 6px 30px;
  font-size: 14px;
  white-space: nowrap;
}

.st_tr_cta_img {
  margin-top: -105px;
}

.st_tr_cta_co {
  padding: 30px;
}

.contract_spec_section {
  position: relative;
}

.contract_spec_section td:first-child {
  font-size: 16px;
}

.contract_spec_hero {
  position: relative;
  padding: 120px 0 0;
}

.contract_spec_hero .hero_content_wra_in {
  align-items: flex-start;
}

.contract_spec_hero .hero_heading,
.contract_spec_hero .hero_description {
  text-align: left;
}

.contract_spec_hero .mt_hero_img {
  /* width: 70%; */
}

.contract_spec_section .nav-tabs {
  justify-content: center;
  margin-bottom: 24px;
  gap: 16px;
  border: 0;
}

.contract_spec_section .nav-item {
  border-radius: 8px;
  padding: 8px;
  background: linear-gradient(135deg,
      #00e3cd26,
      transparent,
      transparent,
      #00aaff17);
  box-shadow: #00e3cd08 3px 3px 6px 0px inset, #00aaff0d -3px -3px 6px 1px inset;
  color: #697e91;
}

.contract_spec_section .nav-tabs .nav-link {
  border: 0;
  border-radius: 8px;
  color: #425475;
}

.contract_spec_section .nav-tabs .nav-link:hover {
  border-color: transparent;
}

.con_spec_note {
  border-radius: 10px;
  padding: 20px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgb(255 255 255 / 40%);
  margin-top: 30px;
}

.cont_spec_note_ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cont_spec_note_ul li i {
  font-size: 14px;
  color: #00aaff;
  background-image: linear-gradient(132deg, #00aaff, #00e3cd);
  background-size: 100%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact_hero {
  position: relative;
  padding: 120px 0;
}

.about_hero {
  position: relative;
  padding: 100px 0;
}

.contact_hero .row_gap {
  row-gap: 160px !important;
}

.about_hero .row_gap {
  row-gap: 160px !important;
}

.contact_hero .ter_op_ti,
.about_hero .ter_op_ti {
  margin-bottom: 0.5rem;
}

.contact_hero .ter_ic,
.about_hero .ter_ic {
  font-size: 40px;
}

.contact_hero .hero_content_wra_in,
.about_hero .hero_content_wra_in {
  align-items: flex-start;
}

.contact_hero .hero_heading,
.contact_hero .hero_description,
.about_hero .hero_heading,
.about_hero .hero_description {
  text-align: left;
}

.contact_hero .mt_hero_img,
.about_hero .mt_hero_img {
  width: 80%;
}

.contact_section {
  position: relative;
  padding: 80px 0;
}

.cont_meta {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgb(255 255 255 / 40%);
  padding: 20px 10px;
  border-radius: 10px;
}

.cont_meta p {
  margin: 0;
  text-align: center;
}

.cont_com {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgb(255 255 255 / 60%);
  padding: 20px;
  border-radius: 10px;
}

.cont_meta h4 {
  margin: 0;
  text-align: center;
}

.cont_meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  gap: 10px;
}

.co_fo_in {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.cont_ics {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.cont_map {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.con_if {
  width: 100%;
  height: 320px;
  margin-top: 15px;
  filter: grayscale(10%) invert(90%) contrast(80%);
}

.cont_for input,
.cont_for textarea {
  background: transparent;
  border: none;
  outline: none;
  padding: 8px;
  box-shadow: 0px 6px 8px -8px rgb(0 0 0 / 10%);
}

.cont_map,
.cont_for {
  padding: 20px;
}

.con_fo_btn {
  margin-top: 20px;
}

.con_fo_btn .animated_button {
  padding: 6px 30px;
  font-size: 14px;
}

.fb,
.ig,
.li,
.pt,
.tw,
.rd,
.tle,
.wh,
.bt {
  width: 30px;
  height: 30px;
  font-size: 24px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fb {
  background: #5c7dc1;
}

.ig {
  background: #ed5186;
}

.li {
  background: #1182c1;
}

.pt {
  background: #f51f3f;
}

.tw {
  background: #00acee;
}

.cont_ics a {
  color: white;
}

.co_gradient {
  border-radius: 16px;
  padding: 15px;
  background: linear-gradient(135deg,
      #00e3cd26,
      transparent,
      transparent,
      #00aaff17);
  box-shadow: #00e3cd08 3px 3px 6px 0px inset, #00aaff0d -3px -3px 6px 1px inset;
  color: #697e91;
}

.co_faq_section {
  position: relative;
}

.co_faq_section .faq_inn a {
  padding: 10px 15px;
  display: block;
}

.faq_inn a h4 {
  margin: 0;
}

::placeholder {
  color: #697e9179;
}

.co_me_info {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 6px;
}

.co_me_i {
  font-size: 40px;
  color: #00aaff;
  background-image: linear-gradient(132deg, #00aaff, #00e3cd);
  background-size: 100%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}

.co_so_wra {
  /* margin-top: 20px; */
}

.row_gap .co_me_info:first-child {
  padding: 30px 0 8px;
}

.row_gap .co_me_info:last-child {
  padding: 8px 0 30px;
}

.live_chat_section .start_tading_cta {
  margin-top: 150px;
  margin-bottom: 100px;
  padding: 0;
}

.live_chat_section .st_tr_cta_img {
  margin-top: -180px;
}

.live_chat_section {
  position: relative;
}

.our_mi_vi_section {
  position: relative;
}

.ab_he_img_wra {
  position: relative;
}

.about_hero .he_me_info {
  /* flex-direction: column; */
  /* align-items: center; */
  /* text-align: center; */
  gap: 15px;
}

.about_hero .he_me_info1 {
  bottom: 10%;
  left: 0;
}

.about_hero .he_me_info3 {
  top: 40%;
  left: 2%;
}

.about_hero .he_me_info4 {
  top: 40%;
  right: 5%;
}

.about_hero .he_me_info2 {
  bottom: 10%;
  right: 0;
}

.about_hero .he_me_ca_img {
  width: 80px;
  height: 80px;
}

.faq_hero {
  position: relative;
  padding: 180px 0 80px;
}

.faq_hero .ter_op_ti {
  margin-bottom: 0.5rem;
}

.faq_hero .ter_ic {
  font-size: 40px;
}

.faq_hero .hero_content_wra_in {
  align-items: flex-start;
}

.faq_hero .hero_heading,
.faq_hero .hero_description {
  text-align: left;
}

.faq_hero .mt_hero_img {
  width: 80%;
}

.faq_main_section .faq_inn a {
  padding: 15px;
  display: block;
}

.faq_inn a h5 {
  margin: 0;
  font-size: 22px;
}

.faq_main_section .nav-tabs {
  justify-content: center;
  margin-bottom: 24px;
  gap: 16px;
  border: 0;
}

.faq_main_section .nav-item {
  border-radius: 8px;
  padding: 8px;
  background: linear-gradient(135deg,
      #00e3cd26,
      transparent,
      transparent,
      #00aaff17);
  box-shadow: #00e3cd08 3px 3px 6px 0px inset, #00aaff0d -3px -3px 6px 1px inset;
  color: #697e91;
}

.faq_main_section .nav-tabs .nav-link {
  border: 0;
  border-radius: 8px;
  color: #425475;
}

.faq_main_section .nav-tabs .nav-link:hover {
  border-color: transparent;
}

.faq_wrapper_main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  /* backdrop-filter: blur(15px); */
  /* -webkit-backdrop-filter: blur(15px); */
  /* background: rgb(255 255 255 / 50%); */
  /* padding: 30px; */
  /* border-radius: 10px; */
}

.faq_sidebar {
  display: flex;
  flex-direction: column;
  gap: 26px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgb(255 255 255 / 50%);
  padding: 30px 30px;
  border-radius: 10px;
}

.faq_main_section {
  position: relative;
}

.faq_main_section .faq_wrapper {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgb(255 255 255 / 50%);
  padding: 30px;
  border-radius: 10px;
}

.faq_sidebar a {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.faq_sidebar a i {
  color: #00aaff;
}

.faq_side_wra {
  position: sticky;
  top: 120px;
  border-radius: 16px;
  padding: 10px;
  background: linear-gradient(135deg,
      #00e3cd26,
      transparent,
      transparent,
      #00aaff17);
  box-shadow: #00e3cd08 3px 3px 6px 0px inset, #00aaff0d -3px -3px 6px 1px inset;
  color: #697e91;
}

.faq_title {
  color: #697e91;
}

.career_hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: 60px;
}

.career_hero .hero_content_wra_in {
  align-items: flex-start;
}

.career_hero .hero_heading,
.career_hero .hero_description {
  text-align: left;
}

.why_work_with_us {
  position: relative;
}

.why_work_with_us .he_me_card h3 {
  margin: 0;
  /* min-height: 67px; */
  text-align: center;
  font-size: 24px;
}

.why_work_with_us .he_me_card p {
  margin: 0;
  /* font-size: 16px; */
}

.job_post_menu .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-start;
  color: #212529;
}

.job_post_menu .nav-link i {
  color: #00aaff;
}

.job_post_menu .nav-link.active,
.job_post_menu .show>.nav-link {
  color: #697e91;
  background-color: #00aaff29;
}

.job_post_menu {
  gap: 12px;
}

.ins_step_wrapper {
  position: relative;
  padding: 70px 0px;
}

.ins_step_card {
  position: relative;
  box-shadow: 0px 0px 4px 4px rgb(255 255 255 / 5%) inset;
  padding: 24px;
  text-align: center;
  width: 85%;
  background: rgb(255 255 255 / 40%);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ins_step_wrapper::after {
  position: absolute;
  content: "";
  height: 95%;
  width: 5px;
  background: linear-gradient(135deg, #00e3cd, #00aaff);
  border-radius: 8px;
  left: 50%;
  top: -5px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 20px 0;
}

.ins_step_card::after {
  position: absolute;
  content: "";
  height: 5px;
  width: 20%;
  background: linear-gradient(135deg, #00e3cd, #00aaff);
  border-radius: 8px;
  right: -20%;
  top: 50%;
  transform: translate(0px, -50%);
  z-index: 1;
}

.ins_step_card::before {
  position: absolute;
  content: "";
  height: 35px;
  width: 35px;
  background: linear-gradient(135deg, #00e3cd, #00aaff);
  border-radius: 100%;
  right: -17px;
  top: 50%;
  transform: translate(0px, -50%);
  z-index: 2;
}

.ins_step_card.even::before {
  left: -17px;
}

.ins_step_card.even::after {
  left: -20%;
  background: linear-gradient(135deg, #00aaff, #00e3cd);
}

.ins_st_ca_desc {
  width: 75%;
  margin: 0 auto;
}

.trading_ins_sec_btn {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.ins_st_ca_title {
  margin-bottom: 8px;
}

.ins_st_count {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  right: -6px;
  z-index: 3;
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.ins_step_card.even .ins_st_count {
  left: -8px;
  right: unset;
}

.ins_step_card_img {
  width: 90px;
  height: 90px;
  margin: 0 auto 16px;
}

.ins_step_card_img img {
  height: 100%;
}

.our_rec_process {
  position: relative;
}

.apply_now_section {
  position: relative;
}

.file-input {
  display: none;
}

.custom-file-label {
  display: block;
  padding: 6px 12px;
  color: #697e91;
  background-color: #00aaff29;
  cursor: pointer;
  border-radius: 6px;
  margin-top: 5px;
}

.custom-file-label:hover {
  /* background-color: #45a049; */
}

.cv_input_wra {
  display: flex;
  align-items: center;
  gap: 12px;
}

select {
  background: transparent;
  border: none;
  outline: none;
  padding: 8px 0;
  box-shadow: 0px 6px 8px -8px rgb(0 0 0 / 10%);
  color: #697e91;
}

.partner_hero {
  position: relative;
  padding-bottom: 0;
}

.partner_hero .row_gap {
  row-gap: 160px !important;
}

.partner_hero .mt_hero_img {
  width: 90%;
}

.calc_btn {
  padding: 6px 30px;
  font-size: 14px;
  margin-top: 30px;
}

.calc_c_f_in {
  background: rgb(255 255 255 / 40%);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 15px;
  margin: 0;
}

.calc_c_f_in select,
.calc_c_f_in input {
  box-shadow: none;
  padding: 8px 0;
}

.min_h_99 {
  min-height: 99px;
}

.calc_c_f_in h6 {
  /* color: #697e91; */
}

.reg_rep_hero {
  position: relative;
  padding: 140px 0 0;
}

.reg_rep_hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100vh;
  background: url("../Assets/reg-rep.png") no-repeat center center/cover;
  opacity: 0.5;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.reg_rep_hero .hero_content_wra_in {
  margin-bottom: 170px;
}

.reg_rep_hero .he_me_ca_img {
  width: 70px;
  height: 70px;
}

.reg_rep_hero .he_me_card {
  gap: 18px;
  padding: 20px;
}

.info_section {
  position: relative;
  padding: 200px 0 200px;
}

.all_80x80 .he_me_ca_img {
  width: 80px;
  height: 80px;
  margin-bottom: 8px;
}

.iti {
  width: 100%;
  position: relative;
}

.iti__flag-container {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.iti__flag-container .iti__selected-flag {
  z-index: 1;
}

.iti input {
  padding-left: 60px;
  /* Adjust padding to fit the flag */
  width: 100%;
}

.live_chat_section .top_100 .st_tr_cta_img {
  margin-top: -100px;
}

.multi_level_section .plan .pricing {
  font-size: 1.5rem;
}

.multi_level_section .animated_button {
  padding: 6px 30px;
  font-size: 14px;
}

.ml_hero {
  position: relative;
  padding: 180px 0 85px;
}

.ml_hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: url("../Assets/32420\ \(1\).png") no-repeat center center/cover;
  opacity: 1;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.ml_hero .animated_button {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
}

.ml_hero .animated_button:hover {
  color: #425475;
}

.ml_hero .hero_heading,
.ml_hero .hero_description {
  text-align: left;
  color: white;
}

.ml_hero .hero_content_wra_in {
  align-items: flex-start;
}

.ml_hero .he_me_ca_img {
  width: 70px;
  height: 70px;
  margin-bottom: 8px;
}

.ml_he_row2 {
  margin-top: 220px;
}

.ml_hero .he_me_card h3,
.ml_hero .he_me_card h4 {
  color: white;
}

.ml_hero .he_me_card {
  background: rgb(255 255 255 / 15%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.blog_hero {
  /* background: black; */
  padding: 50px 0 0;
}

.blog_hero_sl2 {
  /* height: auto; */
  width: 100%;
  height: 775px;
  overflow: hidden;
}

.blog_hero_sl2 img {
  height: 100%;
  object-fit: cover;
}

.blog_hero_sl {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 15px;
}

.blog_hero_sl .swiper-slide {
  align-items: center;
  width: 25%;
  height: fit-content;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgb(255 255 255 / 60%);
  display: flex;
  gap: 14px;
  border-radius: 6px;
  overflow: hidden;
  padding: 10px;
  /* cursor: pointer; */
}

.blog_hero_sl .swiper-slide-thumb-active {
  background: rgb(255 255 255 / 100%);
}

.bl_hero_sl_wra {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.blog_hero_sl {
  position: absolute;
  bottom: 0;
}

.blog_hero_sl img {
  height: 100%;
}

.bl_he_head_wra .sec_heading {
  text-align: start;
  margin-bottom: 20px;
}

.blog_hero_sl .swiper-slide {}

.fe_lb_img {
  height: auto;
  width: 160px;
  position: relative;
}

.fe_lb_co .bl_me_in p {
  margin: 0;
  color: #212529;
}

.fe_lb_co .bl_me_in p i,
.bl_co_wra .bl_me_in p i {
  color: #00aaff;
}

.blog_hero_sl .swiper-wrapper {
  align-items: center;
}

.blog_hero_sl .swiper-slide-thumb-active .fe_lb_co h5 {
  color: #00aaff;
}

.blog_hero_sl2 .swiper-slide {
  position: relative;
}

.blog_hero_sl2 .bl_co_wra {
  position: absolute;
  background: #00000030;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  color: white;
  padding: 0 100px;
}

.bl_category {
  background: #00aaff;
  color: white;
  border-radius: 6px;
  padding: 4px 12px;
  width: fit-content;
}

.bl_category:hover {
  color: white;
}

.bl_co_wra .bl_me_in p {
  margin: 0;
}

.bl_co_wra .m_bl_ti {
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 600;
  margin: 10px 0;
  color: white;
}

.bl_au_img {
  width: 45px;
  height: 45px;
  border-radius: 100px;
  overflow: hidden;
}

.bl_author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bl_au_name {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
}

.bl_hero_sl_wra .bl_au_name {
  color: white;
}

.bl_img_wra {
  position: relative;
}

.blog_card .bl_category {
  position: absolute;
  font-size: 14px;
  top: 12px;
  left: 12px;
  border-radius: 4px;
  padding: 3px 9px;
}

.blog_card .bl_au_img {
  width: 35px;
  height: 35px;
}

.blog_card .bl_au_name {
  text-transform: none;
}

.blog_card .bl_author {
  gap: 6px;
}

.bl_co_wra .bl_me_in {
  justify-content: unset;
  gap: 40px;
}

.bl_co_wra_in {
  width: 100%;
  margin-top: -90px;
}

.fe_lb_img .bl_category {
  position: absolute;
  font-size: 14px;
  top: 6px;
  left: 6px;
  border-radius: 4px;
  padding: 2px 6px;
}

.all_bl_cat_wra .nav-tabs {
  margin-bottom: 30px;
  border-color: #b8e7f3;
  flex-wrap: wrap;
}

.all_bl_cat_wra .blog_card {
  padding: 15px;
}

.all_bl_cat_wra .nav-tabs .nav-item.show .nav-link,
.all_bl_cat_wra .nav-tabs .nav-link.active {
  color: #425475;
  background-color: #00aaff29;
  border: none;
  outline: none;
}

.all_bl_cat_wra .nav-tabs .nav-link {
  border: none;
  outline: none;
}

.all_bl_cat_wra .nav-tabs .nav-link:hover {
  color: #425475;
}

.swiper_pagination {
  width: fit-content !important;
  margin: 40px auto 0;
}

.swiper-pagination-bullet {
  background: #00aaff;
  width: var(--swiper-pagination-bullet-width,
      var(--swiper-pagination-bullet-size, 12px));
  height: var(--swiper-pagination-bullet-height,
      var(--swiper-pagination-bullet-size, 12px));
  border-radius: var(--swiper-pagination-bullet-border-radius, 100%);
}

.top_fe_bl {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.top_fe_bl .bl_co_wra {
  position: absolute;
  background: #00000040;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  padding: 35px;
}

.top_fe_bl .m_bl_ti a {
  color: white;
}

.m_bl_ti a {
  color: white;
}

.top_fe_bl .m_bl_ti a:hover {
  color: #00aaff;
}

.top_fe_bl .bl_co_wra_in {
  width: 100%;
  margin-top: unset;
}

.top_fe_bl .bl_au_name {
  color: white;
}

.top_f_sb {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgb(255 255 255 / 60%);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px;
}

.top_fe_bl .m_bl_ti {
  font-size: 32px;
}

.top_fe_bl .bl_au_img {
  width: 40px;
  height: 40px;
}

.top_fe_bl_side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.to_fe_bl_wra {
  background: rgb(255 255 255 / 60%);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px;
}

.blog_section .start_tading_cta {
  margin-top: 150px;
}

.bl_det_he_sec {
  width: 100%;
  height: 500px;
  position: relative;
  margin-bottom: 40px;
}

.bl_det_he_sec_img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  z-index: -1;
}

.bl_det_he_overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 50px;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 25%,
      rgb(0 0 0 / 80%) 100%);
}

.bl_det_he_sec .m_bl_ti a {
  color: white;
}

.bl_det_he_sec .m_bl_ti a:hover {
  color: #00aaff;
}

.bl_det_he_sec p {
  color: white;
}

.bl_det_he_sec .bl_au_name {
  color: white;
}

.bl_det_co img {
  width: 80%;
  display: block;
  margin: 40px auto;
}

.bl_det_co th:first-child {
  background-color: #00aaff29;
  color: #425475;
  text-align: center;
}

.bl_det_co table {
  margin: 20px 0;
}

.bl_det_st_sidebar {
  position: sticky;
  top: 110px;
}

.bl_det_st_sidebar h3 {
  margin-bottom: 16px;
}

.bl_det_st_sidebar .top_fe_bl_side {
  gap: 15px;
}

.bl_tags {
  border-top: 1px solid #b8e7f3;
  border-bottom: 1px solid #b8e7f3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
  margin-top: 30px;
}

.bl_tag {
  border: 1px solid #b8e7f3;
  padding: 4px 8px;
  border-radius: 6px;
}

.bl_det_co_wra {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.bl_sh_side {
  position: sticky;
  top: 110px;
}

.bl_det_st_sidebar .bl_img_wra {
  max-height: 200px;
  overflow: hidden;
}

.bl_det_st_sidebar {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.bl_det_st_sidebar .blog_card,
.bl_det_st_sidebar .top_f_sb {
  background: white;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
  color: white;
}

.swiper-button-next,
.swiper-button-prev {
  width: 30px;
  height: 30px;
  background: #00aaff;
  border-radius: 5px;
}

.swiper-button-prev {
  left: 24px;
}

.swiper-button-next {
  right: 24px;
}

.author_det {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  align-items: flex-start;
}

.b_det_auth_img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  overflow: hidden;
  flex: 0 0 auto;
  /* Prevents shrinking and growing */
}

.b_det_auth_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b_det_auth_det {
  flex: 1;
}

.bl_f_social {
  /* box-shadow: 0px 6px 8px -8px rgb(0 0 0 / 10%); */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgb(255 255 255 / 40%);
  border-radius: 20px;
  padding: 25px 30px;
  margin-top: 30px;
}

.blog_sc {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.blog_sc a {
  font-size: 16px;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog_sc a i {
  color: white;
}

.bl_sh_side .blog_sc {
  flex-direction: column;
}

.bl_newsletter {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: linear-gradient(135deg,
      #00e3cd26,
      transparent,
      transparent,
      #00aaff17);
  border-radius: 20px;
  padding: 25px 30px;
  margin-top: 30px;
}

.bl_newsletter .animated_button {
  padding: 6px 30px;
  font-size: 14px;
  flex: 0 0 auto;
}

.bl_newsletter input {
  background: transparent;
  border: none;
  outline: none;
  padding: 8px;
  box-shadow: 0px 6px 8px -8px rgb(0 0 0 / 30%);
  flex: 1;
}

.bl_newsletter form {
  display: flex;
  align-items: center;
}

.blog_det_section {
  position: relative;
}

.b_au_me_info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.b_au_me {
  padding: 4px 12px;
  background: #00aaff;
  color: white;
  border-radius: 6px;
}

.bl_auth_hero {
  padding: 40px 0 60px;
}

.blog_cate_sec {
  padding-top: 60px;
}

.bl_ca_h1 {
  margin-bottom: 16px;
  font-size: 36px;
}

.promotion_card .inner {
  padding: 0;
}

.promotion_card .animated_button {
  padding: 6px 30px;
  font-size: 14px;
}

.promotion_card .plan .title {
  margin: 0;
}

.account_type_slider .animated_button {
  padding: 6px 30px;
  font-size: 14px;
}

.all_promo_section {
  padding-top: 120px;
}

.all_pro_h1 {
  margin-bottom: 16px;
  font-size: 36px;
}

.webinar_hero {
  /* position: relative;
    background: url('../Assets/webinar-hero.png') no-repeat center center/cover; */
}

.webinar_section {
  position: relative;
}

.webinar_section .bl_img_wra {
  max-height: 200px;
  overflow: hidden;
}

.up_webinar {
  border-radius: 16px;
  padding: 10px;
  background: linear-gradient(135deg,
      #00e3cd26,
      transparent,
      transparent,
      #00aaff17);
  box-shadow: #00e3cd08 3px 3px 6px 0px inset, #00aaff0d -3px -3px 6px 1px inset;
  color: #697e91;
}

.up_web_inn {
  background: #ffffff94;
  border-radius: 12px;
  padding: 30px 15px;
}

.web_flag {
  width: 30px;
  height: auto;
}

.web_date {
  font-size: 24px;
  color: #00aaff;
  background-image: linear-gradient(132deg, #00aaff, #00e3cd);
  background-size: 100%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  font-weight: 600;
}

.web_auth {
  display: flex;
  align-items: center;
  gap: 8px;
}

.web_auth_name {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
}

.web_auth_i {
  font-size: 20px;
  color: #00aaff;
  background-image: linear-gradient(132deg, #00aaff, #00e3cd);
  background-size: 100%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}

.up_webinar .animated_button {
  padding: 5px 30px;
  font-size: 14px;
}

.wb_d_t {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-right: 2px solid #00aaff;
}

.web_lang {
  display: flex;
  align-items: center;
  gap: 8px;
}

.web_des_ul li {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.web_des_ul li i {
  color: #00aaff;
  background-image: linear-gradient(132deg, #00aaff, #00e3cd);
  background-size: 100%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}

.web_in_des {
  margin: 8px 0 0;
}

.web_des_a {
  font-size: 18px;
  color: #00aaff;
  display: block;
}

.web_au_la {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 8px 0;
}

.web_in_ti {
  margin: 0;
  color: #212529;
}

.web_cate {
  position: relative;
}

.web_cate .he_me_card h3 {
  margin: 0;
  /* min-height: 67px; */
  text-align: center;
  font-size: 24px;
}

.up_web_wra {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.webinar_embed {
  width: 100%;
  height: 600px;
}

.web_he_sec {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
  padding-top: 60px;
}

.web_he_co_wra {}

.web_me_in i {
  color: #00aaff;
  background-image: linear-gradient(132deg, #00aaff, #00e3cd);
  background-size: 100%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}

.web_me_in {
  display: flex;
  align-items: center;
  background: rgb(255 255 255);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  justify-content: space-between;
  padding: 10px 20px;
}

.web_de_ti {
  margin: 10px 0 20px;
}

.web_me {
  display: flex;
  align-items: center;
  gap: 40px;
}

.web_det_section .author_det {
  align-items: center;
}

.web_det_section .b_det_auth_img {
  width: 80px;
  height: 80px;
}

.webinar_hero {
  position: relative;
  padding: 120px 0;
}

.webinar_hero .ter_op_ti {
  margin-bottom: 0.5rem;
}

.webinar_hero .ter_ic {
  font-size: 40px;
}

.webinar_hero .hero_content_wra_in {
  align-items: flex-start;
}

.webinar_hero .hero_heading,
.webinar_hero .hero_description {
  text-align: left;
}

.webinar_hero .mt_hero_img {
  width: 80%;
}

.webinar_hero .row_gap {
  row-gap: 120px !important;
}

.webinar_hero .he_me_ca_img {
  width: 80px;
  height: 80px;
}

.webinar_hero .he_me_card {
  gap: 12px;
}

.ter_ic img {
  width: 70px;
  /* height: 70px; */
}

.demo_contest_hero .terminal_card {
  padding: 24px 24px;
}

.demo_co_ti {
  text-transform: uppercase;
}

.demo_counting {
  border-radius: 12px;
  padding: 8px;
  background: linear-gradient(135deg,
      #00e3cd26,
      transparent,
      transparent,
      #00aaff17);
  box-shadow: #00e3cd08 3px 3px 6px 0px inset, #00aaff0d -3px -3px 6px 1px inset;
  color: #697e91;
  text-align: center;
}

.demo_counting span {
  padding: 6px 12px;
  background-color: #ffffff94;
  border-radius: 8px;
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.de_co_cou {
  display: flex;
  align-items: center;
  gap: 16px;
}

.le_inp_wra {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 30px;
}

.le_inp_wra input {
  background: rgb(255 255 255 / 40%);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0;
  outline: 0;
  padding: 10px 15px;
}

.lb_sub_btn {
  background: none;
  border: 0;
  outline: 0;
  color: #00aaff;
  background-image: linear-gradient(132deg, #00aaff, #00e3cd);
  background-size: 100%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  font-size: 26px;
}

.co_pr_card h3 {
  margin: 0;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #00aaff;
  background: rgb(255 255 255 / 40%);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 15px;
  margin-top: 30px;
}

.bonus_phone_col img {
  width: fit-content;
  display: block;
  margin: 0 auto;
}

.bonus_phone_col {
  margin-top: 30px;
}

.dep_bo_sec .ab_mt_img {
  width: 90%;
  display: block;
  margin: 0 auto;
}

.dep_bo_sec {
  position: relative;
  padding: 140px 0 80px;
}

.dep_bo_sec .hero_content_wra_in {
  align-items: flex-start;
}

.dep_bo_sec .hero_heading,
.dep_bo_sec .hero_description {
  text-align: start;
}

.promo_ru_sec .con_spec_note {
  margin: 0;
  padding: 30px;
}

.promo_ru_sec .cont_spec_note_ul li {
  margin-bottom: 16px;
  font-size: 18px;
}

.promo_ru_sec .cont_spec_note_ul li:last-child {
  margin-bottom: 0;
}

.pricing span {
  display: flex;
  align-items: center;
}

.silver {
  color: #a7a5a5 !important;
}

.gold {
  color: #e7c306 !important;
}

.platinum {
  color: #c5c5c5 !important;
}

.vps_hero {
  width: 100%;
  height: 750px;
  position: relative;
}

.vps_hero_img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  z-index: -1;
}

.vps_he_overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgb(0 0 0 / 40%) 0%,
      rgb(0 0 0 / 40%) 25%,
      rgb(0 0 0 / 80%) 100%);
  display: flex;
  align-items: center;
  color: white;
}

.vps_hero .animated_button,
.nfp_hero .animated_button {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
}

.vps_hero .animated_button:hover,
.nfp_hero .animated_button:hover {
  color: #425475;
}

.vps_hero .hero_heading,
.nfp_hero .hero_heading {
  color: #00aaff;
  background-image: linear-gradient(132deg, #00aaff, #00e3cd);
  background-size: 100%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bronze {
  color: #db8732 !important;
}

.vps_op_sec .plan .inner {
  padding: 30px;
}

.vps_op_sec .animated_button {
  padding: 6px 30px;
  font-size: 14px;
}

.vps_op_sec .plan .title {
  font-size: 24px;
}

.vps_desc_sec {
  position: relative;
}

.vps_des_m_img {
  max-width: 500px;
}

.vps_co_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.vps_co_card img {
  width: 70px;
  height: 70px;
}

.vps_config_wra {
  background: rgb(255 255 255 / 75%);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 30px;
}

.list_text {
  text-align: center;
}

.vps_config {
  margin-top: -105px;
}

.trading_calc_sec .con_fo_btn {
  margin-top: 0;
}

.trading_calc_sec .co_fo_in {
  margin-bottom: 48px;
}

.trading_calc_sec .cont_for {
  padding: 36px;
}

.calc_result {
  border-radius: 16px;
  padding: 36px;
  background: linear-gradient(135deg,
      #00e3cd26,
      transparent,
      transparent,
      #00aaff17);
  box-shadow: #00e3cd08 3px 3px 6px 0px inset, #00aaff0d -3px -3px 6px 1px inset;
  color: #697e91;
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.calc_res_inp p {
  margin: 0;
}

.eco_ca_wid_wra {
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(135deg,
      #00e3cd26,
      transparent,
      transparent,
      #00aaff17);
  box-shadow: #00e3cd08 3px 3px 6px 0px inset, #00aaff0d -3px -3px 6px 1px inset;
  color: #697e91;
}

.eco_ca_wid_wra .tradingview-widget-container {
  height: 800px !important;
  background: #ffffff94;
  border-radius: 8px;
}

.eco_ca_wid_wra iframe {
  height: 100% !important;
}

.nfp_hero {
  position: relative;
  /* width: 100%; */
  /* height: 875px; */
}

.nfp_he_row2 {
  margin-top: 180px;
}

.nfp_hero .he_me_ca_img {
  width: 80px;
  height: 80px;
}

.nfp_hero .vps_he_overlay {
  padding: 160px 0 120px;
}

.nfp_hero .he_me_card {
  background: rgb(255 255 255 / 15%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.nfp_terms_content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: #ffffff94;
  border-radius: 8px;
  padding: 24px;
}

.nfp_terms_con_wra {
  border-radius: 16px;
  padding: 15px;
  background: linear-gradient(135deg,
      #00e3cd26,
      transparent,
      transparent,
      #00aaff17);
  box-shadow: #00e3cd08 3px 3px 6px 0px inset, #00aaff0d -3px -3px 6px 1px inset;
  color: #697e91;
}

.nfp_terms_content ul li {
  margin-top: 8px;
}

.nfp_terms_content ul li:first-child {
  margin-top: 0px;
}

.nfp_terms_content h4 {
  margin-bottom: 12px;
  color: #00aaff;
}

.co_fo_in_check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.co_ter_text {
  font-size: 14px;
  margin-top: 8px;
}

.co_ter_text a {
  color: #00aaff;
}

.claim_nfp_sec {
  position: relative;
}

.dropdown-menu {
  margin-top: 12px !important;
  width: max-content;
  border-radius: 16px;
  padding: 8px;
  background: linear-gradient(148deg, #a9fff7bf, #fbfbfb, #a6e1ffbf) !important;
  box-shadow: #00e3cd08 3px 3px 6px 0px inset, #00aaff0d -3px -3px 6px 1px inset !important;
  color: #697e91;
  border: 0;
}

.dr_menu_wra {
  background: rgb(255, 255, 255);
  /* padding: 15px 3px; */
  border-radius: 10px;
  width: 100%;
}

.menu_list_wra {
  /* padding: 15px 25px; */
  position: relative;
  width: 33.33333%;
  display: table-cell;
  border-right: 1px solid #b8e7f3;
}

.menu_list_wra:last-child {
  border: none;
}

.menu_list {
  border-bottom: 1px solid #b8e7f3;
}

.menu_list {
  border-bottom: 1px solid #b8e7f3;
  padding: 15px 25px;
}

.menu_list:last-child {
  border: none;
}

.menu_list_wra h6 {
  color: #00aaff;
  text-transform: uppercase;
  font-size: 14px;
  text-wrap: nowrap;
}

.menu_list_wra h6 a {
  color: #00aaff;
  text-decoration: underline;
}

.menu_list_wra ul li {
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-wrap: nowrap;
}

.menu_list_wra ul li:last-child {
  margin-bottom: 0px;
}

.menu_list_wra ul li a {
  color: #697e91;
}

.menu_list_wra ul li a:hover {
  color: #00aaff;
}

.draw_cc {
  display: flex;
  align-items: center;
  gap: 24px;
}

.draw_co img {
  width: 40px;
  height: 40px;
}

.draw_co {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pro_code {
  font-size: 32px;
  color: #00aaff;
  background-image: linear-gradient(132deg, #00aaff, #00e3cd);
  background-size: 100%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  padding: 0 12px;
  border: 1px dashed #00aaff;
  border-radius: 8px;
  cursor: pointer;
}

.draw_list_sec th:first-child {
  background-color: #00aaff29;
  text-align: center;
}

.draw_list_sec td:first-child {
  text-align: center;
}

.draw_list_sec .le_inp_wra input {
  min-width: 250px;
}

.our_mi_vi_section .draw_cc {
  margin-bottom: 10px;
  gap: 12px;
}

.vip_ste_card {
  border-radius: 10px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgb(255 255 255 / 40%);
  text-align: center;
  padding: 24px;
}

.vip_ste_ic {
  width: fit-content;
  margin: 0 auto;
  font-size: 60px;
  color: #00aaff;
  background-image: linear-gradient(132deg, #00aaff, #00e3cd);
  background-size: 100%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vip_ste_des {
  margin-bottom: 8px;
  font-size: 18px;
}

.text-balance {
  text-wrap: balance;
}

.radial-progress-container {
  display: flex;
  gap: 20px;
}

.radial-progress {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: conic-gradient(#bae6fe calc(var(--percentage) * 1%),
      #d6f8f6 calc(var(--percentage) * 1%));
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #4caf50;
  position: relative;
  margin: 0 auto 24px;
}

.radial-progress::before {
  content: "";
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
}

.percentage {
  position: relative;
  z-index: 1;
}

.fo_us_link_wra {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 40px 0 14px;
}

.fo_us_link_wra a {
  color: #212529;
  font-size: 16px;
}

.fo_us_link_wra a:hover {
  color: #00aaff;
}

.top_bar_sc .facebook,
.top_bar_sc .linkedin,
.top_bar_sc .youtube,
.top_bar_sc .instagram,
.top_bar_sc .twitter,
.top_bar_sc .telegram {
  background-color: unset;
  font-size: 18px;
}

.all_promo_section .sec_heading_wrapper {
  margin-bottom: 15px;
}

.top-arrow,
.bottom-arrow {
  position: relative;
}

.top-arrow {
  height: 121px;
}

.top-arrow img {
  max-width: 100%;
  width: auto;
  position: absolute;
  left: -70px;
  top: 0;
}

.bottom-arrow img {
  max-width: 100%;
  width: auto;
  position: absolute;
  right: -63px;
  top: -261px;
}

.middle-arrow {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
}

.middle-arrow img {
  position: absolute;
  width: auto;
  left: 0;
  top: 50%;
}

.all_promo_section .col-lg-3 {
  flex: 0 0 auto;
  width: calc(25% - 20px);
}

.promotion_card .plan p.info {
  font-size: 15px;
}

/* promotion page css start */

/* indices-css-end */

.indices_hero {
  position: relative;
  padding: 305px 0;
  background-color: black;
  color: white;
  z-index: 0;
  overflow: hidden;
}

.indices_hero .hero_content_wra_in {
  align-items: flex-start;
}

.indices_hero .hero_heading,
.indices_hero .hero_description {
  text-align: left;
}

.indices_hero .grad7 {
  background: #00aaff60;
  right: 5%;
  top: 5%;
  z-index: -1;
}

.indices_hero .grad8 {
  background: #00e3cc60;
  left: 5%;
  bottom: 5%;
  z-index: -1;
}

.border_bottom {
  border-bottom: 1px solid #2caaff40;
  position: relative;
  z-index: 999;
}

.indices_hero .text {
  color: white;
}

.indices_hero .bg_grad {
  width: 300px;
  height: 300px;
  filter: blur(100px);
}

.indices_hero .animated_button:hover .text {
  color: #425475;
}

.indices_section {
  /* margin: 120px 0; */
  padding: 350px 0;
  background-image: url("../images/indices-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* height: 850px; */
  display: flex;
  align-items: center;
  overflow-x: hidden;
  display: block;
}

.indices_wrapper img {
  height: 90px;
  width: auto;
}

.indices_wrapper .payment_methods_slider .plan .inner {
  padding: 20px;
}

.indices_phone_section {
  display: none;
  padding: 120px 0;
}

.indices_hero {
  background-image: url("../images/indices-hero.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.indices_hero_section {
  position: relative;
  padding-top: 120px;
  background-image: url("../images/indices-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

.indices_hero_image_wrapper {
  width: fit-content;
  display: block;
  margin: 100px auto 0;
}

.indices_hero_image_wrapper img {
  max-width: 990px;
}

.indices_hero_section .hero_description {
  max-width: 600px;
  margin-bottom: 20px;
}

.indices_hero_content_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stocks_slider .plan {
  padding: 10px;
}

.gradI1 {
  background: #00aaff5e;
  right: 15%;
  bottom: 0;
  z-index: -1;
  width: 400px;
  height: 400px;
  position: absolute;
  border-radius: 100%;
  filter: blur(60px);
}

/* .gradI2 {
    background: #00aaff38;
    left: 0%;
    top: 10%;
    z-index: -1;
    width: 200px;
    height: 200px;
    position: absolute;
    border-radius: 100%;
    filter: blur(60px);
} */
.gradI2 {
  background: #00e3cc5e;
  right: 30%;
  top: 10%;
  z-index: -1;
  width: 400px;
  height: 400px;
  position: absolute;
  border-radius: 100%;
  filter: blur(60px);
}

.h2_42px {
  font-size: 42px;
  text-transform: capitalize;
  font-weight: 600;
}

.device_section {
  margin: 120px 20px 0;
  position: relative;
  background: #2caaff0d;
  border-radius: 20px;
  padding: 180px 0;
}

.device_section .vertical_align {
  position: relative;
  z-index: 1;
}

.device_card_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.device_card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  border-radius: 10px;
  backdrop-filter: blur(15px);
  background: rgb(255 255 255 / 40%);
  gap: 20px;
}

.device_card .ter_ic {
  font-size: 34px;
}

.device_image {
  width: 90%;
  display: block;
  margin: 0 auto;
}

.more_instrument_sec_img img {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* Default styles */
.why_us_card_wrapper {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.custom_card {
  transition: width 0.4s ease, opacity 0.4s ease;
  cursor: pointer;
  width: 15%;
  height: 350px;
  /* Fixed height for consistency */
  /* Default thumb design */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg,
      #00e3cd26,
      transparent,
      transparent,
      #00aaff17);
  box-shadow: inset 3px 3px 6px 0 #00e3cd08, inset -3px -3px 6px 1px #00aaff0d;
  padding: 15px;
  border-radius: 16px;
  overflow: hidden;
  pointer-events: auto;
  /* Enable interaction by default */
}

.custom_card_inner {
  padding: 60px 20px;
  background-color: #ffffff94;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  overflow: hidden;
  /* Prevent overflow on hover */
}

.custom_card_thumb {
  transform: rotate(270deg);
  flex: 1;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 30px;
}

.custom_card_thumb i {
  font-size: 24px;
  color: #00aaff;
}

.custom_card_full {
  display: none;
  /* Initially hidden */
}

.custom_card.active .custom_card_full {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.custom_card.active .custom_card_thumb {
  display: none;
  /* Hide thumb when full design is active */
}

.custom_card:hover {
  width: 55%;
  /* Expand to full design on hover */
}

.custom_card_description p {
  margin: 0;
}

.device_button .animated_button {
  padding: 6px 30px;
  font-size: 14px;
  margin-top: 26px;
}

/* Responsive Design */

/* Below 1024px: Show full card design without thumb and disable hover effects */
@media (max-width: 1023px) {
  .why_us_card_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .custom_card {
    width: 100%;
    height: auto;
    pointer-events: none;
    /* Disable hover interaction on mobile */
  }

  .custom_card_thumb {
    display: none;
    /* Hide thumb design on small screens */
  }

  .custom_card_full {
    display: flex;
    /* Show full design on small screens */
  }
}

/* 1024px and above: Flex layout and enable hover effect */
@media (min-width: 1024px) {
  .why_us_card_wrapper {
    display: flex;
    gap: 24px;
  }

  .custom_card {
    width: 15%;
    height: 350px;
    /* Fixed height for larger screens */
    pointer-events: auto;
    /* Enable hover interaction on larger screens */
  }

  /* Active card */
  .custom_card.active {
    width: 55%;
  }

  .custom_card_description p {
    min-height: 50px;
  }
}

/* indices-css-end */

/* stocks-section-start */

.stocks_hero_section {
  background: #000000;
  height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  color: white;
}

.stocks_hero_image {
  background-image: url("../images/stocks-hero-bg.png");
}

.stocks_hero_section .animated_button {
  color: white;
}

.stocks_hero_section .animated_button:hover {
  color: #425475;
}

.stocks_hero_section .row_gap {
  row-gap: 60px !important;
}

.stocks_hero_section .hero_content_wra_in {
  align-items: flex-start;
}

.stocks_hero_section .hero_heading,
.stocks_hero_section .hero_description {
  text-align: left;
}

.more_instrument_section {
  margin: 0px 20px;
  position: relative;
  background: #2caaff0d;
  border-radius: 20px;
  padding: 100px 0;
  overflow: hidden;
}

.instruments_wrapper .he_assets {
  width: 40px;
  height: 40px;
}

.instruments_wrapper .he_assets:last-child {
  width: fit-content;
}

.instruments_wrapper {
  display: grid;
  grid-template-columns: auto auto;
  gap: 20px;
}

.instrument_card {
  background: rgb(255 255 255 / 40%);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  padding: 20px;
  border-radius: 10px;
}

.instrument_card p {
  margin: 0;
  display: none;
}

.instrument_card h5 {
  margin-bottom: 0;
}

.gradI1 {
  background: #00aaff5e;
  right: 15%;
  bottom: 0;
  z-index: -1;
  width: 400px;
  height: 400px;
  position: absolute;
  border-radius: 100%;
  filter: blur(60px);
}

/* .gradI2 {
    background: #00aaff38;
    left: 0%;
    top: 10%;
    z-index: -1;
    width: 200px;
    height: 200px;
    position: absolute;
    border-radius: 100%;
    filter: blur(60px);
} */
.gradI2 {
  background: #00e3cc5e;
  right: 30%;
  top: 10%;
  z-index: -1;
  width: 400px;
  height: 400px;
  position: absolute;
  border-radius: 100%;
  filter: blur(60px);
}

.device_card_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.device_card .ter_ic {
  font-size: 34px;
}

/* Default styles */
.why_us_card_wrapper {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.custom_card {
  transition: width 0.4s ease, opacity 0.4s ease;
  cursor: pointer;
  width: 15%;
  height: 350px;
  /* Fixed height for consistency */
  /* Default thumb design */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg,
      #00e3cd26,
      transparent,
      transparent,
      #00aaff17);
  box-shadow: inset 3px 3px 6px 0 #00e3cd08, inset -3px -3px 6px 1px #00aaff0d;
  padding: 15px;
  border-radius: 16px;
  overflow: hidden;
  /* To ensure the hover effect does not overflow */
}

.custom_card_inner {
  padding: 60px 20px;
  background-color: #ffffff94;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  overflow: hidden;
  /* Prevent overflow on hover */
}

.custom_card_thumb {
  transform: rotate(270deg);
  flex: 1;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 30px;
}

.custom_card_thumb i {
  font-size: 24px;
  color: #00aaff;
}

.custom_card_full {
  display: none;
  /* Initially hidden */
}

.custom_card.active .custom_card_full {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.custom_card.active .custom_card_thumb {
  display: none;
  /* Hide thumb when full design is active */
}

.custom_card:hover {
  width: 55%;
  /* Expand to full design on hover */
}

.custom_card_description p {
  margin: 0;
}

/* Responsive Design */

/* Below 1024px: Show full card design without thumb */
@media (max-width: 1023px) {
  .why_us_card_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .custom_card {
    width: 100%;
    height: auto;
    /* Let height adjust on small screens */
  }

  .custom_card_thumb {
    display: none;
    /* Hide thumb design on small screens */
  }

  .custom_card_full {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    /* Show full design on small screens */
  }
}

/* 1024px and above: Flex layout */
@media (min-width: 1024px) {
  .why_us_card_wrapper {
    display: flex;
    gap: 24px;
  }

  .custom_card {
    width: 15%;
    height: 350px;
    /* Fixed height for larger screens */
  }

  /* Active card */
  .custom_card.active {
    width: 55%;
  }

  .custom_card_description p {
    min-height: 50px;
  }
}

/* stocks-section-end */

.section_margin {
  margin-top: 120px;
}

.fit_content_image {
  width: fit-content;
  display: block;
  margin: 0 auto;
}

.cta_small_button .animated_button {
  padding: 6px 30px;
  font-size: 14px;
}

.device_button .animated_button {
  padding: 6px 30px;
  font-size: 14px;
  margin-top: 26px;
}

.sec_desc {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 20px;
}

/* Card Container */
.future_card {
  background: #181818;
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: -3px -3px 6px 0 rgba(255, 255, 255, 0.04),
    3px 3px 6px 0 rgba(0, 0, 0, 2);
}

.future_card:hover {
  transform: translateY(-8px);
}

/* Currency Icons Stack */

/* Card Content */
.card_content {
  text-align: left;
}

.card_title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.card_description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* CTA Button */
.cta_button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #00ffcc, #00b3ff);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta_button:hover {
  box-shadow: 0 8px 24px rgba(0, 255, 204, 0.4);
  color: white;
}

.instruments_section {
  margin-top: 200px;
  background: #181818;
  color: white;
  padding: 120px 0;
}

.future_card .he_assets {
  border: 4px solid #181818;
  box-shadow: 0px 0px 4px 4px rgb(102 102 102 / 30%) inset;
  background: rgb(143 141 141 / 20%);
}

.trading_platforms {
  position: relative;
  padding: 180px 0;
}

.trading_platforms .row_gap {
  row-gap: 180px !important;
}

.trading_platforms .hero_heading,
.trading_platforms .hero_description {
  text-align: left;
}

.trading_platforms .hero_content_wra_in {
  align-items: flex-start;
}

.stocks_hero .row {
  background: rgb(255 255 255 / 60%);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  padding: 30px;
  /* height: 750px; */
  margin-top: 40px;
}

.stocks_hero .hero_heading {
  text-align: start;
}

.stocks_hero .hero_description {
  text-align: start;
  margin: 0;
}

.stocks_hero .hero_content_wra_in {
  align-items: flex-start;
}

.stocks_section {
  /* margin: 120px 0; */
  padding: 200px 0;
  background-image: url("../images/apple-stocks.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 900px;
  display: flex;
  align-items: center;
  overflow-x: hidden;
}

.stocks_wrapper img {
  height: 90px;
  width: auto;
}

.stocks_wrapper .payment_methods_slider .plan .inner {
  padding: 20px;
}

.stocks_phone_section {
  display: none;
  padding: 120px 0;
}

/* promotion page css end */

/* oil-commodities-start */

.commodities_hero_overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgb(0 0 0 / 40%) 0%,
      rgb(0 0 0 / 40%) 25%,
      rgb(0 0 0 / 80%) 100%);
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0;
  height: 100vh;
}

.commodities_hero {
  width: 100%;
  /* height: 850px; */
  position: relative;
}

.commodities_widget {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.commodities_hero .hero_content_wra_in .hero_heading {
  max-width: 950px;
}

.commodities_hero .hero_content_wra_in .hero_description {
  max-width: 750px;
}

.commodities_topbar .top_bar {
  padding: 20px 0;
  background: #00000000;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}

.commodities_topbar .top_bar_logo {
  justify-content: flex-start;
}

.commodities_topbar .nav_btn_wrapper {
  justify-content: flex-end;
}

.commodities_topbar .animated_button {
  padding: 6px 30px;
  font-size: 14px;
  color: #00aaff;
}

.commodities_hero .animated_button {
  color: white;
}

.commodities_topbar .animated_button:hover,
.commodities_hero .animated_button:hover {
  color: #425475;
}

.commodities_explained_section {
  /* margin: 120px 20px 0px; */
  position: relative;
  /* background: #2caaff0d; */
  border-radius: 20px;
  /* padding: 100px 0; */
}

.commodities_explained_section img {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.commodities_explained_section .animated_button {
  padding: 6px 30px;
  font-size: 14px;
}

.commo_exp_step_icon {
  font-size: 40px;
  color: #00aaff;
  background-image: linear-gradient(132deg, #00aaff, #00e3cd);
  background-size: 100%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin-bottom: 8px;
}

.commodities_exp_steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.commo_exp_step {
  backdrop-filter: blur(15px);
  background: rgb(255 255 255 / 40%);
  padding: 20px;
  border-radius: 12px;
}

.commo_exp_step_content p {
  margin: 0;
}

.why_us_feature_ic {
  color: #2caaff;
  font-size: 18px;
}

.eco_ca_wid_wra_inner {
  background: #ffffff94;
  border-radius: 8px;
  padding: 10px;
  overflow: auto;
}

.eco_ca_wid_wra_inner th {
  white-space: nowrap;
}

.eco_ca_wid_wra_inner th:first-child {
  background-color: #00aaff29;
}

.eco_ca_wid_wra_inner tr:first-child {
  background: linear-gradient(135deg, #00aaff17, transparent, #00e3cc1a);
}

.instru_desc {
  font-size: 14px;
}

.table_instru_wra {
  display: flex;
  align-items: center;
  gap: 15px;
}

.instru_img img {
  width: 40px;
}

.device_card_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.device_card .ter_ic {
  font-size: 34px;
}

.oil1_hero_image {
  background-image: url("../images/oil-hero-opt.jpg");
}

/* oil-commodities-end */

/* gold-css-start */

.gold_hero {
  height: calc(100vh - 75px);
  display: flex;
  align-items: center;
  /* box-shadow: 0 6px 8px -8px rgba(0, 0, 0, .1); */
  position: relative;
}

.gold_hero .hero_content_wra_in {
  align-items: flex-start;
}

.gold_hero .hero_heading,
.gold_hero .hero_description {
  text-align: left;
}

.gold_hero_content_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.gold_hero .row_gap {
  row-gap: 120px !important;
}

.gold_hero_image img {
  width: fit-content;
  display: block;
  margin: 0 auto;
}

.oil_top_bar .top_bar {
  background: #f6f6f6;
}

.oil_top_bar .callto a,
.oil_top_bar .mailto a {
  color: #212529;
}

.oil_top_bar .top_bar i {
  color: #00aaff;
  background-image: linear-gradient(132deg, #00aaff, #00e3cd);
  background-size: 100%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* gold-css-ends */

/* metal-commodities-start */

.commodities_hero_overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgb(0 0 0 / 40%) 0%,
      rgb(0 0 0 / 40%) 25%,
      rgb(0 0 0 / 80%) 100%);
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0;
  height: 100vh;
}

.commodities_hero {
  width: 100%;
  /* height: 850px; */
  position: relative;
}

.commodities_widget {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.commodities_hero .hero_content_wra_in .hero_heading {
  max-width: 950px;
}

.commodities_hero .hero_content_wra_in .hero_description {
  max-width: 750px;
}

.commodities_topbar .top_bar {
  padding: 20px 0;
  background: #00000000;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}

.commodities_topbar .top_bar_logo {
  justify-content: flex-start;
}

.commodities_topbar .nav_btn_wrapper {
  justify-content: flex-end;
}

.commodities_topbar .animated_button {
  padding: 6px 30px;
  font-size: 14px;
  color: #00aaff;
}

.commodities_hero .animated_button {
  color: white;
}

.commodities_topbar .animated_button:hover,
.commodities_hero .animated_button:hover {
  color: #425475;
}

.commodities_explained_section {
  /* margin: 120px 20px 0px; */
  position: relative;
  /* background: #2caaff0d; */
  border-radius: 20px;
  /* padding: 100px 0; */
}

.commodities_explained_section img {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.commodities_explained_section .animated_button {
  padding: 6px 30px;
  font-size: 14px;
}

.commo_exp_step_icon {
  font-size: 40px;
  color: #00aaff;
  background-image: linear-gradient(132deg, #00aaff, #00e3cd);
  background-size: 100%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin-bottom: 8px;
}

.commodities_exp_steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.commo_exp_step {
  backdrop-filter: blur(15px);
  background: rgb(255 255 255 / 40%);
  padding: 20px;
  border-radius: 12px;
}

.commo_exp_step_content p {
  margin: 0;
}

.why_us_feature_ic {
  color: #2caaff;
  font-size: 18px;
}

.eco_ca_wid_wra_inner {
  background: #ffffff94;
  border-radius: 8px;
  padding: 10px;
  overflow: auto;
}

.eco_ca_wid_wra_inner th {
  white-space: nowrap;
}

.eco_ca_wid_wra_inner th:first-child {
  background-color: #00aaff29;
}

.eco_ca_wid_wra_inner tr:first-child {
  background: linear-gradient(135deg, #00aaff17, transparent, #00e3cc1a);
}

.instru_desc {
  font-size: 14px;
}

.table_instru_wra {
  display: flex;
  align-items: center;
  gap: 15px;
}

.instru_img img {
  width: 40px;
}

.device_card_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.device_card .ter_ic {
  font-size: 34px;
}

.choosen_metal_image {
  display: block;
  max-width: 700px;
  margin: 0 auto;
}

/* metal-commodities-end */

/* oil-page-start */

.oil_hero {
  background-image: url("../images/oil-hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* height: 850px; */
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  box-shadow: 0 6px 8px -8px rgba(0, 0, 0, 0.1);
}

.oil_hero .hero_content_wra_in {
  align-items: flex-start;
}

.oil_hero .hero_heading,
.oil_hero .hero_description {
  text-align: left;
}

.oil_hero_content_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.oil_hero .row_gap {
  row-gap: 120px !important;
}

.oil_hero_image img {
  /* width: 500px; */
  display: block;
  margin: 0 auto;
}

.oil_top_bar .top_bar {
  background: #f6f6f6;
}

.oil_top_bar .callto a,
.oil_top_bar .mailto a {
  color: #212529;
}

.oil_top_bar .top_bar i {
  color: #00aaff;
  background-image: linear-gradient(132deg, #00aaff, #00e3cd);
  background-size: 100%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* oil-page-end */

/* multi-assets-start */

.multi_assets_top_bar .top_bar {
  padding: 20px 0;
}

.multi_assets_top_bar .top_bar_logo {
  justify-content: flex-start;
}

.multi_assets_top_bar .nav_btn_wrapper {
  justify-content: flex-end;
}

.multi_assets_top_bar .animated_button {
  padding: 6px 30px;
  font-size: 14px;
  color: white;
}

.multi_assets_top_bar .animated_button:hover {
  color: #425475;
}

.multi_assets_hero {
  padding-top: 120px;
  position: relative;
}

.multi_assets_hero_image img {
  max-width: 800px;
  margin: 60px auto 0;
  display: block;
}

.multi_assets_hero .hero_description {
  max-width: 750px;
}

/* multi-assets-end */

/* born-to-trade-css-start */

.market_card .plan .inner {
  padding: 0;
}

.born_to_trade_hero_image img {
  width: fit-content;
  margin: 60px auto;
  display: block;
}

.born_to_trade_hero {
  background-image: url("../images/oil-hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 60px;
  padding-top: 120px;
  position: relative;
}

/* born-to-trade-css-start */

/* multi-assets-start */

.multi_assets_hero_bg {
  background-image: url("../images/gold-hero.png");
}

/* promotion-page-css-start */

.promotion_hero_sildes {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 700px;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 50px;
  position: relative;
  color: white;
  max-width: 1550px;
  margin: 50px auto 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 180px 0;
}

.promotion_hero_slider .slide1 {
  background-image: url("../images/promo-slide-nfp.png");
}

.promotion_hero_slider .slide2 {
  background-image: url("../images/Deposit-Bonus-Bg.png");
}

.promotion_slides_overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgb(0 0 0 / 40%) 0%,
      rgb(0 0 0 / 40%) 25%,
      rgb(0 0 0 / 80%) 100%);
  display: flex;
  align-items: center;
  color: white;
  position: absolute;
}

.promotion_slides_content_wrapper {
  position: relative;
  margin-top: -20px;
}

.promotion_hero_section .animated_button {
  color: white;
}

.promotion_hero_section .animated_button:hover {
  color: #425475;
}

.promotion_hero_features {
  background: hsl(0deg 0% 100% / 85%);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  padding: 20px;
  margin-top: -82px;
  position: relative;
  z-index: 10;
}

.promotion_hero_feature_card img {
  width: 70px;
  height: 70px;
}

.promotion_hero_feature_card .heading {
  margin: 5px 0 0;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.promotion_hero_feature_card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promotion_hero_feature_card .description {
  margin: 0;
  text-align: center;
}

.promotion_hero_section .hero_heading {
  text-align: left;
  margin-bottom: 8px;
}

.promotion_hero_section .hero_description {
  text-align: left;
  margin-bottom: 20px;
}

.apps_downloader {
  display: flex;
  align-items: center;
  gap: 20px;
}

.qr_codes {
  width: 120px;
  height: 120px;
}

.app_links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo_account_type_section .plan .features .icon {
  background: transparent;
}

.market_slider {
  padding-bottom: 60px;
}

.all_trading_platform_nav .nav {
  justify-content: center;
  margin-bottom: 60px;
  gap: 20px;
  border: none;
}

.platform_content_wrapper .ab_mt_ul {
  margin-bottom: 20px;
}

.trading_platform_image {
  width: 90%;
  margin: 0 auto;
}

.all_trading_platform {
  position: relative;
}

.start_trading_video_section {
  padding: 20px;
}

.start_trading_video_section_wrapper .modal-dialog {
  max-width: 1000px !important;
}

.start_trading_video_section_wrapper .modal-content {}

.new_trading_steps_section .sec_heading_wrapper {
  margin-bottom: 60px;
}

.all_trading_platform_nav .nav-tabs .nav-link {
  border-radius: 8px;
  padding: 8px;
  background: linear-gradient(135deg,
      #00e3cd26,
      transparent,
      transparent,
      #00aaff17);
  box-shadow: inset 3px 3px 6px 0 #00e3cd08, inset -3px -3px 6px 1px #00aaff0d;
  color: #697e91;
  border: none;
}

.all_trading_platform_nav .nav-tabs .nav-link span {
  display: block;
  padding: 5px 15px;
}

.all_trading_platform_nav .nav-tabs .nav-link.active span {
  border: 0;
  color: #425475;
  background: #ffffff;
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.trading_step_icon {
  width: 70px;
  height: 70px;
  margin-bottom: 8px;
}

.partner_program_slider {
  padding-bottom: 60px;
}

.awards_slider {
  padding-bottom: 60px;
}

.ac_he_sl_wra {
  max-width: 450px;
}

.account_type_he_sl {
  padding: 0 50px;
}

.account_type_he_sl .swiper-pagination {
  display: none;
}

.new_trading_steps_section_bg {
  background-image: url("../images/trading-steps-bg.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  /* padding: 250px; */
  height: 580px;
  max-width: 1550px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new_trading_steps_section_bg_gradient {
  background-image: url("../images/trading-steps-bg-gradient.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  /* Full width */
  border-radius: 30px;
}

.new_trading_steps_section {
  max-width: 1700px;
  margin: 0 auto;
  position: relative;
}

.new_trading_steps_wrapper .container {}

.new_trading_steps_wrapper {
  background: #f6f6f669;
  max-width: 1420px;
  margin: 0 auto;
  border-radius: 30px;
  backdrop-filter: blur(20px);
  margin-top: -120px;
  padding: 50px 0 0;
}

.play-animation {
  display: inline-block;
  height: 85px;
  width: 85px;
  text-align: center;
  line-height: 90px;
  color: #00aaff;
  border-radius: 50%;
  background: #fdefef;
  font-size: 60px;
  position: relative;
  transition: 0.2s;
}

.play-animation::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background-color: #00aaff;
  border-radius: 50%;
  animation: animate 1.7s ease-out infinite;
}

@keyframes animate {

  0%,
  30% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.play-animation:hover {
  background-color: #00e3cd;
  color: #ffffff;
}

.play-animation:hover::before {
  background-color: #00e3cd;
}

/* oil-second-page-css-start */

.oil2_hero {
  /* padding: 120px 0 0; */
  background: #030608;
  color: white;
}

.trade_oil_button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.oil2_hero .animated_button {
  color: white;
}

.oil2_hero .animated_button:hover {
  color: #425475;
}

.oil2_hero_image_phone {
  display: none;
}

.oil2_hero_image {
  display: block;
}

.oil2_top_bar .top_bar {
  padding: 20px 0;
  background: #f6f6f6;
}

.oil2_top_bar .callto a,
.oil2_top_bar .mailto a {
  color: #212529;
}

.oil2_hero .oil_hero_content_wrapper .hero_heading {
  text-align: left;
}

.oil2_hero .oil_hero_content_wrapper .hero_description {
  text-align: left;
}

.simple_button {
  background: #2caaff;
  color: white;
  padding: 10px 20px;
  border-radius: 9px;
  transition: .2s ease-in-out;
  display: block;
  width: fit-content;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.4px;
}

.simple_button:hover {
  background: #2d93d7;
  color: white;
}

.device_button .simple_button {
  margin-top: 26px;
}

/* oil-second-page-css-end */



/* zero-spread-page-css-start */


.zero_spread_hero .top_bar {
  background: none;
  position: absolute;
  width: 100%;
  z-index: 10;
  padding: 32px 0;
}

.zero_spread_hero .top_bar_logo {
  justify-content: flex-start;
}

.zero_spread_hero .nav_btn_wrapper {
  justify-content: flex-end;
}

.bg_picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zero_spread_hero>*:not(picture) {
  position: relative;
  z-index: 1;
}

.zero_spread_hero {
  position: relative;
  height: 750px;
  overflow: hidden;
  color: white;
  display: flex;
  flex-direction: column;
}

.zero_spread_hero .container {
  flex: 1 1 auto;
}

.zero_spread_hero .row.row_gap {
  height: 100%;
}

.zero_spread_hero .col-lg-6 {
  height: 100%;
  display: flex;
  align-items: center;
}

.zero_spread_hero .oil_hero_content_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.zero_spread_hero .hero_heading {
  text-align: left;
}

.zero_spread_hero .hero_description {
  text-align: left;
}


.home_page_features .he_me_ca_img {
  width: 60px;
  height: 60px;
}

.home_page_features h2 {
  margin: 5px 0 0;
  font-size: 18px;
}

.home_page_features h3 {
  font-size: 16px;
  color: #5a5a5a;
}

.home_page_features .no_padding {
  padding: 0 5px 10px;
}

.home_page_features {
  padding: 30px 0 0;
}

.our_spreads_section {
  background: #14559A;
  background: linear-gradient(330deg, rgba(20, 85, 154, 1) 0%, rgba(6, 44, 76, 1) 33%, rgba(3, 10, 11, 1) 100%);
  color: white;
  padding: 120px 0;
}

.our_spreads_image {
  max-width: 700px;
  display: block;
  margin: 0 auto 90px;
}

.hero_sub_heading {
  color: #33e3cd;
}

.attention_text span {
  color: #33e3cd;
}

.attention_text {
  text-align: center;
  margin: 60px 0 0;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.zero_spread_terminal .qr_codes {
  width: 80px;
  height: 80px;
}

.zero_spread_terminal .app_store {
  max-width: 100px;
}

.zero_spread_terminal .play_store {
  max-width: 100px;
}

.zs_row_wrapper {
  background: #eeeeee;
  border-radius: 8px;
  padding: 40px 20px;
}


/* zero-spread-page-css-end */




/* promotion-page-css-end */

@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .all_promo_section .sec_heading_wrapper {
    margin-bottom: 60px;
  }

  .top-arrow,
  .bottom-arrow,
  .middle-arrow {
    display: none;
  }

  .all_promo_section .col-lg-3 {
    width: 50%;
  }

  .footer_bottom_bar {
    flex-direction: column;
  }

  .section_padding {
    padding-top: 90px;
  }

  .callto {
    display: none;
  }

  .device_section {
    padding: 90px 0;
    margin-top: 90px;
  }

  .device_image {
    margin-bottom: 60px;
  }

  .stocks_hero_section {
    padding-top: 60px;
  }

  .stocks_hero_section .row_gap {
    row-gap: 40px !important;
  }

  .hero_heading {
    font-size: 46px;
  }

  .animated_button {
    padding: 6px 30px;
    font-size: 14px;
  }

  .oil_hero_image img {
    width: 500px;
  }

  .oil_hero {
    padding-top: 40px;
  }

  .oil_hero .row_gap {
    row-gap: 100px !important;
  }

  .gold_hero {
    height: auto;
    padding-top: 60px;
  }

  .gold_hero .row_gap {
    row-gap: 90px !important;
  }

  .gold_hero_image img {
    width: 60%;
  }

  .choose_oil_image {
    width: 70%;
    margin: 0 auto 20px;
    display: block;
  }

  .choosen_metal_image {
    max-width: 500px;
  }

  .working_block_one .ar_down_box {
    display: none;
  }

  .trading_steps_section .working_block:nth-child(2),
  .trading_steps_section .working_block:nth-child(3) {
    margin-top: 0;
  }

  .born_to_trade_hero_image img {
    width: 100%;
  }

  .born_to_trade_hero {
    padding-bottom: 20px;
  }

  .indices_section {
    display: none;
  }

  .indices_phone_section {
    display: block;
  }

  .stocks_section {
    display: none;
  }

  .stocks_phone_section {
    display: block;
  }

  .promotion_hero_sildes {
    height: 640px;
  }

  .account_type_hero_section .sec_heading,
  .account_type_hero_section .hero_description {
    text-align: center;
  }

  .account_type_hero_section .hero_content_wra_in {
    align-items: center;
  }

  .account_type_hero_section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .sec_heading {
    font-size: 42px;
  }

  .all_trading_platform_nav .nav {
    margin-bottom: 40px;
  }

  .platform_content_wrapper {
    margin-top: 26px;
  }

  .start_trading_video_section iframe {
    height: 450px;
  }

  .oil2_hero {
    padding: 90px 0;
  }

  .oil2_hero_image_phone {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
  }

  .oil2_hero_image {
    display: none;
  }

  .oil2_hero .oil_hero_content_wrapper {
    align-items: center;
  }

  .device_section .h2_42px {
    text-align: center;
  }

  .device_section .mb-4 p.m-0 {
    text-align: center;
  }

  .device_card_wrapper {
    justify-content: center;
  }

  .device_section .device_button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
  }

  .start_tading_cta .sec_heading {
    text-align: center;
  }

  .st_tr_cta_co {
    padding: 20px;
  }

  .start_tading_cta_btns {
    justify-content: center;
    gap: 15px;
  }

  .oil_pricing_section {
    text-align: center;
  }

  .start_tading_cta {
    margin-top: 140px;
  }

  .oil2_hero .oil_hero_content_wrapper .hero_heading {
    text-align: center;
  }

  .oil2_hero .oil_hero_content_wrapper .hero_description {
    text-align: center;
  }

  .oil2_top_bar .top_bar {
    background: #06080a;
    padding: 20px 0;
  }

  .oil2_top_bar .callto a,
  .oil2_top_bar .mailto a {
    color: white;
  }

  .zero_spread_hero {
    height: 500px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  .all_promo_section .sec_heading_wrapper {
    margin-bottom: 60px;
  }

  .top-arrow,
  .bottom-arrow,
  .middle-arrow {
    display: none;
  }

  .plan .title {
    font-size: 16px;
  }

  .promotion_card .plan p.info {
    font-size: 14px;
  }

  .sp_of_co {
    padding: 20px 13px;
  }

  .all_promo_section .col-lg-3 {
    width: 25%;
  }

  .device_image {
    width: 100%;
  }

  .choosen_metal_image {
    max-width: 650px;
  }

  .process_box {
    margin: 0 auto 40px;
  }

  .working_block_one .ar_down_box {
    display: none;
  }

  .trading_steps_section .working_block:nth-child(2),
  .trading_steps_section .working_block:nth-child(3) {
    margin-top: 0;
  }

  .born_to_trade_hero_image img {
    width: 100%;
  }

  .st_tr_cta_img {
    margin-top: 0;
  }

  .device_section {
    padding: 120px 0;
  }

  .hero_heading {
    font-size: 46px;
  }

  .zero_spread_hero {
    height: 600px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1460px) {
  .all_promo_section .container {
    max-width: 1070px;
  }

  .plan .title {
    font-size: 16px;
  }

  .promotion_card .plan p.info {
    font-size: 14px;
  }

  .bottom-arrow img {
    max-width: 45%;
    right: -52px;
    top: -220px;
  }
}

@media screen and (max-width: 767px) {

  .hero_heading,
  .sec_heading {
    font-size: 36px;
  }

  .participate_steps_sec .ins_step_card {
    margin-bottom: 20px;
    width: 100%;
  }

  .dep_bo_sec .ab_mt_img {
    margin: 60px auto 0;
  }

  .dep_bo_sec {
    padding: 50px 0 80px;
  }

  .ins_step_wrapper {
    padding: 20px 0 0;
  }

  .participate_steps_sec.section_padding {
    padding-top: 35px;
  }

  .top_bar_cont,
  .social-icon-area,
  .top-arrow,
  .bottom-arrow,
  .middle-arrow,
  .ins_st_count,
  .ins_step_wrapper::after,
  .ins_step_card::before,
  .ins_step_card::after {
    display: none;
  }

  .sec_heading_wrapper {
    margin-bottom: 30px;
  }

  .all_promo_section .col-lg-3 {
    width: 100%;
  }

  .footer_section .footer_bottom_bar {
    gap: 30px;
  }

  .footer_bottom_bar,
  .fo_bo_bar_left,
  .fo_bo_bar_right {
    flex-direction: column;
  }

  .footer_bottom_bar .vertical_divider {
    display: none;
  }

  .section_padding {
    padding-top: 60px;
  }

  .device_section {
    overflow: hidden;
    padding: 60px 10px;
    margin: 60px 0 0;
  }

  .device_image {
    margin-bottom: 40px;
  }

  .more_instrument_sec_img img {
    width: 65%;
    max-width: 350px;
    margin-top: 60px;
  }

  .more_instrument_section {
    padding: 60px 10px;
  }

  .grad1 {
    left: unset;
    right: 0%;
  }

  .grad3 {
    left: 0;
  }

  .grad5 {
    left: 0;
  }

  .gradI1 {
    width: 250px;
    height: 250px;
  }

  .gradI2 {
    width: 250px;
    height: 250px;
  }

  .h2_42px {
    font-size: 32px;
    margin-bottom: 12px;
  }

  /* .sec_heading {
    font-size: 32px;
  } */

  .animated_button {
    padding: 6px 30px;
    font-size: 14px;
  }

  .oil_hero .row_gap {
    row-gap: 90px !important;
  }

  .gold_hero {
    height: auto;
    padding-top: 60px;
  }

  .gold_hero .row_gap {
    row-gap: 90px !important;
  }

  .choose_oil_image {
    width: 70%;
    margin: 0 auto 20px;
    display: block;
  }

  .gold_hero_image img {
    width: 80%;
  }

  .sec_desc {
    margin-bottom: 10px;
  }

  .process_box {
    height: auto;
    margin: 0 auto 30px;
  }

  .working_block_one .ar_down_box {
    display: none;
  }

  .trading_steps_section .working_block:nth-child(2),
  .trading_steps_section .working_block:nth-child(3) {
    margin-top: 0;
  }

  .born_to_trade_hero_image img {
    width: 100%;
  }

  .born_to_trade_hero {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .born_to_trade_hero_image img {
    margin: 40px auto;
  }

  .indices_section {
    display: none;
  }

  .indices_phone_section {
    display: block;
  }

  .stocks_section {
    display: none;
  }

  .stocks_phone_section {
    display: block;
  }

  .account_type_he_sl {
    padding: 0 0 60px !important;
  }

  .account_type_he_sl .swiper-pagination {
    display: block !important;
  }

  .promotion_hero_sildes {
    height: auto;
  }

  .account_type_hero_section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .account_type_hero_section .sec_heading,
  .account_type_hero_section .hero_description {
    text-align: center;
  }

  .account_type_hero_section .hero_content_wra_in {
    align-items: center;
  }

  .all_trading_platform_nav .nav {
    margin-bottom: 30px;
  }

  .platform_content_wrapper {
    margin-top: 26px;
  }

  .start_trading_video_section {
    padding: 0;
  }

  .start_trading_video_section iframe {
    height: 400px;
  }

  .new_trading_steps_section .sec_heading_wrapper {
    margin-bottom: 30px;
  }

  .new_trading_steps_section {
    padding-top: 60px;
  }

  .oil1_hero_image {
    background-image: url("../images/oil-hero-phone.png");
  }

  .stocks_hero_image {
    background-image: url("../images/stock-hero-phone.png");
  }

  .oil2_hero {
    padding: 30px 0 60px;
  }

  .oil2_hero_image_phone {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
  }

  .oil2_hero_image {
    display: none;
  }

  .oil2_hero .oil_hero_content_wrapper {
    align-items: center;
  }

  .top_bar_logo .nav_brand {
    width: 180px;
  }

  .device_section .device_button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
  }

  .device_section .h2_42px {
    text-align: center;
  }

  .device_section .mb-4 p.m-0 {
    text-align: center;
  }

  .device_card_wrapper {
    justify-content: center;
  }

  .start_tading_cta .sec_heading {
    text-align: center;
  }

  .st_tr_cta_co {
    padding: 30px 0 0;
  }

  .start_tading_cta_btns {
    justify-content: center;
    gap: 15px;
  }

  .oil_pricing_section {
    text-align: center;
  }

  .device_card .ter_ic {
    font-size: 26px;
  }

  .device_card {
    padding: 5px 15px;
  }

  .start_tading_cta {
    margin-top: 140px;
  }

  .oil2_hero .oil_hero_content_wrapper .hero_heading {
    text-align: center;
  }

  .oil2_hero .oil_hero_content_wrapper .hero_description {
    text-align: center;
  }

  .oil2_top_bar .top_bar {
    background: #06080a;
    padding: 20px 0;
  }

  .oil2_top_bar .callto a,
  .oil2_top_bar .mailto a {
    color: white;
  }

  .zero_spread_hero .oil_hero_content_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 130px 0 60px;
  }

  .spread_hero_button {
    width: fit-content;
    margin: 0 auto;
  }

  .zero_spread_hero .hero_heading {
    text-align: center;
  }

  .zero_spread_hero .hero_description {
    text-align: center;
  }
  .simple_button {
    padding: 8px 20px;
    white-space: nowrap;
  }
  .hero_sub_heading {
    text-align: center;
  }
  .section_margin {
    margin-top: 60px;
  }
  .our_spreads_section {
    padding: 60px 0;
  }
  .our_spreads_image {
    margin: 0 auto 60px;
  }
}

@media (max-width: 499px) {
  .instruments_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
  }

  .instrument_card {
    flex: 1;
  }

  .start_tading_cta {
    padding: 0;
  }

  .st_tr_cta_co {
    padding: 20px;
  }

  .start_tading_cta_btns {
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
  }

  .start_trading_video_section iframe {
    height: 300px;
  }

  .start_trading_video_section_wrapper .modal-dialog {
    margin-left: auto;
    margin-right: auto;
  }

  .new_trading_steps_section_bg {
    height: 450px;
    border-top: 1px solid #2caaff29;
  }

  .start_trading_video_section_wrapper {
    margin-top: -140px;
  }

  .start_tading_cta {
    margin-top: 170px;
  }

  .pt_xs_0 {
    padding-top: 0;
  }
}