* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/*Color*/
:root {
  --black: #000000;
  --white: #ffffff;
  --DarkGray: #B8B8BB;
  --light-base-color: #6B757E;
  --color-gradient-1: #D601A6;
  --color-gradient-2: #09B7FC;
  --button-radius-border-width: 3px;
  --border-width-2: 2px;
  --border-button-radius: 40px;
  --border-radius-20: 20px;
  --box-radius-border-width: 3px;
  --border-box-radius: 20px;
}

body {
  background-color: #12131d;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  /* overflow-x: hidden; */
}

html[data-theme=light] body {
  background-color: var(--white);
  color: var(--black);
}

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

p {
  font-weight: 400;
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-vertical {
  writing-mode: vertical-rl;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.align-center {
  align-items: center;
}

.whiteText {
  color: var(--white);
}

.noBg {
  background: none !important;
}

.noBorder {
  border: none !important;
}

.paddingT0 {
  padding-top: 0 !important;
}

.gap20 {
  gap: 20px;
}

.gap28 {
  gap: 28px;
}

ul.listPadding0 li {
  padding: 0 !important;
}

.padding_b0i {
  padding-bottom: 0 !important;
}

a.btn {text-align: center; display: inline-block;}
button.btn, a.btn {
  background: #252D38; line-height: 1.1;
  padding: 24px 33px 24px 33px;
  color: var(--white);
  transition: .3s all;
  border: none;
  outline: none;
  border-radius: 30px;
  text-transform: uppercase;
  cursor: pointer; text-decoration: none;
}

a.btn:hover,
button.btn:hover {
  background: #364253;
}

.play_action {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: url(../images/play.svg) no-repeat;
  background-position: center center;
  background-size: contain;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}

.play_action:hover {
  opacity: 0.7;
}

.ott_row {
  display: flex;
}

.ott_col-1 {
  width: 8.33333333%;
}

.ott_col-2 {
  width: 16.66666667%;
}

.ott_col-3 {
  width: 25%;
}

.ott_col-4 {
  width: 33.33333333%;
}

.ott_col-5 {
  width: 41.66666667%;
}

.ott_col-6 {
  width: 50%;
}

.ott_col-7 {
  width: 58.33333333%;
}

.ott_col-8 {
  width: 66.66666667%;
}

.ott_col-9 {
  width: 75%;
}

.ott_col-10 {
  width: 83.33333333%;
}

.ott_col-11 {
  width: 91.66666667%;
}

.ott_col-12 {
  width: 100%;
}

.line_separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
}

.line_0{background: transparent;}

html[data-theme=light] .line_separator {
  background: rgba(0, 0, 0, 0.1);
}


.radius_check_list {
  list-style-type: none;
  padding-top: 25px;
}

.radius_check_list li {
  position: relative;
  padding: 6px 0 6px 30px;
  background-image: url(../images/check.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 15px;
}

@media screen and (min-width: 992px){
 .div-table {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 70px;
  background-color: rgba(255, 255, 255, 0.04);
}

.div-table-row {display: grid; grid-template-columns: 234px 295px 220px auto; gap: 10px; align-items: center;}
.div-table-row.table-headRow .div-table-col {
  padding-top: 34px;
  padding-bottom: 34px;
  color: var(--DarkGray);
}

.div-table-col {
  padding: 10px;
}

.div-table-mobHead {padding-left: 50px;}
.cpaRowLabel{display: none;}
.div-table-col.div-table-col-2 {padding-right: 50px;}
/* .div-table-col.div-table-col-4 {padding-right: 50px;} */

.div-table .div-table-col p {
  font-size: 14px;
  padding: 10px 0;
  color: var(--white);
}

.div-table>.div-table-row:nth-child(even) {background-color: rgba(255, 255, 255, 0.03);}
.box_radius.box_radius_content h3 {font-size: 30px;}

.inner_content {display: grid; grid-template-columns: 29% 1fr; gap: 50px;}
.get_started_section.partnerships_started_section {padding: 120px 0 105px 0;}
.introducing-broker-partner-type p{padding: 20px 0;}
.introducing-broker_boxes .ott_row .ott_col-6 {display: flex;}
}

.caption_btn {
  background: linear-gradient(99.18deg, rgba(214, 1, 166, 0.1) -7.11%, rgba(9, 183, 252, 0.1) 118.92%);
  display: inline-block;
  padding: 25px 34px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
}

.caption_btn span {
  background: linear-gradient(98.45deg, #D600A6 -2.01%, #00BEFF 103.87%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-left: 25px;
  padding-right: 25px;
}

.blur_box {
  width: 508px;
  height: 508px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .06;
  position: absolute;
}

.blur_box.blur_1 {
  background: #00BEFF;
  right: 0;
  width: 230px;
  height: 432px;
  border-radius: 100% 0 0 100%/50% 0 0 50%;
  margin-top: 150px;
  z-index: 1;
}

.blur_box.blur_2 {
  background: #00BEFF;
  left: 0;
  width: 612px;
  height: 1080px;
  border-radius: 0 100% 100% 0/0 50% 50% 0;
  top: 18%;
  z-index: 1;
}

.blur_box.blur_3 {
  background: #D600A6;
  right: 0;
  width: 550px;
  height: 918px;
  top: 25%;
  border-radius: 100% 0 0 100%/50% 0 0 50%;
  z-index: 1;
}

.blur_box.blur_4 {
  background: #D600A6;
  left: 0;
  width: 450px;
  height: 920px;
  top: 65%;
  border-radius: 0 100% 100% 0/0 50% 50% 0;
  z-index: 1;
}

.blur_box.blur_5 {
  background: #00BEFF;
  width: 446px;
  height: 916px;
  border-radius: 100% 0 0 100%/50% 0 0 50%;
  right: 0;
  z-index: 1;
  margin-top: -200px;
}

.blur_boxLeft {
  border-radius: 0 100% 100% 0/0 50% 50% 0;
}

.blur_boxright {
  border-radius: 100% 0 0 100%/50% 0 0 50%;
}

.indexBG .blur_box1 {
  width: 610px;
  height: 1076px;
  background: var(--color-gradient-2);
  filter: blur(150px);
  left: 0;
  top: 800px;
}

.indexBG .blur_box2 {
  width: 610px;
  height: 918px;
  background: var(--color-gradient-1);
  filter: blur(150px);
  right: 0;
  top: 1910px;
  z-index: 1;
}

.indexBG .blur_box3 {
  width: 610px;
  height: 918px;
  background: var(--color-gradient-1);
  filter: blur(150px);
  left: 0;
  top: 3090px;
}

.indexBG .blur_box4 {
  width: 610px;
  height: 918px;
  background: var(--color-gradient-2);
  filter: blur(150px);
  right: 0;
  top: 5000px;
}

.indexBG .blur_box5 {
  width: 402px;
  height: 508px;
  background: var(--color-gradient-1);
  filter: blur(150px);
  left: 0;
  bottom: 250px;
  opacity: .07;
}

html[data-theme=light] .indexBG .blur_box1 {
  height: 600px;
  top: 1000px;
}

html[data-theme=light] .indexBG .blur_box2 {
  top: 1300px;
  width: 451px;
  height: 440px;
  background: rgba(111, 93, 210, 1);
  opacity: 0.2;
  filter: blur(100px);
}

html[data-theme=light] .indexBG .blur_box3 {
  opacity: 0;
}

html[data-theme=light] .indexBG .blur_box4 {
  width: 532px;
  height: 515px;
  top: 5440px;
  opacity: 1;
  border-radius: 100%;
  right: 50px;
  background: #E9F7FF;
  filter: blur(125px);
}

html[data-theme=light] .indexBG .blur_box5 {
  bottom: 0;
  height: 420px;
  border-radius: 434px;
  z-index: 2;
  opacity: 0.6;
  background: rgba(111, 93, 210, 0.40);
  filter: blur(125px);
}

/*Grid*/
 .grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 17px;
}

.grid .grid_item {
  border-radius: 20px;
  text-decoration: none;
  position: relative;
}
.grid .grid_item .grid_icon {
  width: 90px;
  margin-bottom: 40px;
  position: relative;
}

.grid .grid_item .grid_icon .grid_iconInner{
position: relative; display: inline-block;
}



.grid .grid_item .grid_icon img {
  position: relative; z-index: 1;
}

.we_are_here_section .grid .grid_item .grid_icon .grid_iconInner .grid_icon_blur{width: 90%; left: 5%; height: 90%; top: 5%; border-radius: 50%;}

.grid .grid_item h3 {
  font-size: 25px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding-bottom: 15px;
  color: var(--white);
}

.grid .grid_item p {
  color: var(--DarkGray);
  font-size: 16px;
  line-height: 1.54;
}

.grid .grid_item ul {
  color: var(--DarkGray);
  font-size: 16px;
  line-height: 1.54;
  padding-left: 27px;
  padding-top: 12px;
} 

html[data-theme=light] .grid .grid_item {
  background: #FAF9FA;
  border: 1px solid #E9E9E9;
}

html[data-theme=light] .grid .grid_item h3 {
  color: var(--black);
}

html[data-theme=light] .grid .grid_item p {
  color: #6B757E;
}

/*Grid 2*/
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  text-align: left;
  margin-top: 58px;
}

.grid2 .grid2_item {
  border-radius: 20px;
  padding: 28px 49px;
  background: linear-gradient(140.99deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0) 100%);
  /* border: 2px solid rgba(255, 255, 255, 0); */
  text-decoration: none;
  position: relative;
}

.grid2 .grid2_item:before{
  content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 2px solid transparent;
    background: linear-gradient(300deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
} 

.grid2.four_grid_oneRow {
  gap: 20px; grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid2.four_grid_oneRow .grid2_item {
  padding: 28px 25px; background: linear-gradient(141deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.00) 100%);
}

.grid2 .grid2_item h2 {
  font-size: 44px;
  line-height: 1.3;
  padding-top: 2px;
  font-weight: 600;
}

.grid2 .grid2_item p {
  padding: 0;
}

.grid2 .grid2_item .grid_icon img {
  max-height: 65px;
}

.grid2 .grid2_item h3 {
  font-size: 27px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding-bottom: 15px;
  color: var(--white);
}

.grid2 .grid2_item p {
  color: var(--DarkGray);
  font-size: 16px;
  line-height: 1.54;
}



.grid .grid_item {width: calc(33.33% - 20px); padding: 60px 41px; background: linear-gradient(140.99deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0) 100%);}
.trade_index_section .grid .grid_item {background: linear-gradient(140.99deg, #1E202A 0%, #131925 100%);}
.we_are_here_section .grid .grid_item {background: linear-gradient(141deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.00) 100%);}
.trading_section .grid .grid_item {background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.00) 100%); padding: 50px 40px 122px 40px;}
.everything_you_need .grid .grid_item {background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.00) 100%);}  
.get_started_section .grid .grid_item {width: calc(33.33% - 24px); background: linear-gradient(135deg, #22222D 0%, #13141E 100%);}

/*Header*/
.navWrap {
  display: flex;
  justify-content: space-between;
}

.logo {
  position: relative;
  display: flex;
  margin-top: 33px;
  margin-bottom: 32px;
}

.logo a {
  display: inline-block;
  line-height: 0;
  position: relative;
}

.logo a:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(156deg, rgba(214, 0, 166, 0.20) 0%, rgba(0, 190, 255, 0.20) 100%);
  filter: blur(20px);
}

.logo a img {
  position: relative;
}

.logo .light-theme-logo {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  opacity: 0;
}

.navWrap{height: 105px;}

.navWrap nav {
  display: flex;
  align-items: center;
  gap: 41px;
  justify-content: space-between;
}

.navWrap nav a {color: var(--white);}

ul.ottNav {
  display: flex;
  list-style-type: none;
  gap: 35px;
}

/* ul.ottNav li{position: relative;} */
ul.ottNav li {
  transition: all 0.3s ease-in-out;
}

ul.ottNav li a {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.3px;
  display: inline-block;
  padding-top: 43px;
  padding-bottom: 42px;
}

/* ul.ottNav li a .dropdown-icon */
.dropdown-icon {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 5px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  transform: rotate(-45deg);
  transform-origin: left;
}

ul.credentialNav{display: flex; list-style-type: none; gap: 30px; align-items: center;}
header ul.credentialNav{border-left: 2px solid rgba(255, 255, 255, 0.16); padding-left: 40px;}

ul.credentialNav li a {
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

ul.credentialNav li a svg {
  margin-right: 10px;
}

.lodaing_banner{min-height: 100vh;}

.page_bannerBG {
  padding-top: 220px;
  background-color: var(--black);
  min-height: 99vh;
}

ul.ottNav ul.sub_menu {
  position: absolute;
  background-color: var(--white);
  list-style-type: none;
  width: 180px;
  display: none;
  background: #12131D;
  /*border: 1px solid rgba(107, 117, 126, 0.20); border-radius: 8px; overflow: hidden;*/
}

ul.ottNav ul.sub_menus li+li {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

ul.ottNav ul.sub_menu li a {
  display: block;
  padding: 13px 15px;
  color: var(--white);
  font-weight: 400;
}

ul.ottNav ul.sub_menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.submenu-container {
  position: absolute;
  z-index: -1;
  background-color: #12131D;
  transition: all 0.2s linear;
  width: calc(100vw - 50px);
  z-index: 10;
  padding: 82px 0 75px 0;
  margin-left: calc(-50vw + 25px);
  /*top: 73px;*/
  left: 50%;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-2em);
  z-index: -1;
  transition: all 0.2s ease-in-out 0s, visibility 0s linear 0.2s, z-index 0s linear 0.01s;
}

.submenu-container .container {
  max-width: 1180px;
}

.submenu-container .ott_row .ott_col-6 {
  padding-right: 20px;
}

.submenu-container .ott_row .ott_col-3 {
  padding-left: 25px;
}

.submenu-container .button_radius_wrap a {
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

.submenu-container h3 {
  font-size: 25px;
  padding-bottom: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
  max-width: 400px;
}

.submenu-container h5 {
  font-size: 16px;
  padding-bottom: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625;
}

.submenu-container ul.menu-sublist {
  list-style-type: none;
}

.submenu-container ul.menu-sublist a {
  color: var(--DarkGray);
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.85;
  padding-top: 4px;
  padding-bottom: 4px;
}

.submenu-container ul.menu-sublist a:hover {
  color: var(--white);
}



footer .submenu-container {
  background-color: #292a33;
  z-index: 1;
}

ul.ottNav > li.active .submenu-container {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

ul.ottNav > li.active ul.sub_menu {
  visibility: visible;
  opacity: 1;
}

/*Mobile Nav*/
.mobileNavHeader {
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  width: calc(100% + 60px);
  margin-left: -30px;
  padding: 12px 30px 8px 30px;
  cursor: pointer;
}

.navWrapMobile {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 280px;
  background-color: #0D0D14;
  padding: 0 30px;
  height: 100vh;
  transform: translateX(-100%);
  transition: all .3s linear;
  overflow-y: auto;
  opacity: 0;
}

.navWrapMobile.navMobileOpen {
  transform: translateX(0%);
  opacity: 1;
}

.navWrapMobile ul {
  list-style: none;
}

.navWrapMobile .mob_subMenu {
  display: none;
  padding-bottom: 10px;
}

.ottNavMobile>li.expanded .mob_subMenu {
  display: block;
}

.navWrapMobile .mob_subMenu h5 {
  font-weight: 300;
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 4px;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navWrapMobile .mob_subMenu>h5:first-child {
  padding-top: 0;
}

.navWrapMobile ul li a {
  color: var(--DarkGray);
  text-decoration: none;
}

.navWrapMobile ul li a:hover {
  color: var(--white);
}

.ottNavMobile>li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.navWrapMobile .ottNavMobile>li>a {
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
}

.ottNavMobile ul li a {
  font-weight: 400;
  display: inline-block;
  padding: 3px 0;
}

.navWrapMobile ul .MenuToggleIcon {
  position: absolute;
  right: 0;
  top: 14px;
  font-style: normal;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.MenuToggleIcon:before,
.MenuToggleIcon:after {
  content: "";
  position: absolute;
  top: 40%;
  right: 0;
  margin: 0 0 -8px;
  background: #ffffff;
  border-radius: 2px;
}

.MenuToggleIcon:before {
  right: 8px;
  width: 2px;
  height: 15px;
  transition: all 300ms;
  margin-top: -7.5px;
  background: #ffffff;
}

.MenuToggleIcon:after {
  right: 1px;
  width: 16px;
  height: 3px;
  margin-top: -1.5px;
  background: #ffffff;
}

.expanded .MenuToggleIcon:before {
  height: 0;
  margin-top: 0;
}


html[data-theme=light] .submenu-container {
  background: white;
}

html[data-theme=light] .submenu-container ul.menu-sublist a {
  color: #6B757E;
}

html[data-theme=light] .submenu-container ul.menu-sublist a:hover {
  color: #000000;
}

.menu-toggler {
  display: flex;
  height: 100%;
  cursor: pointer;
  padding: 0 10vw;
  padding-left: 1rem;
  background-color: #666;
}

.mobileMenu {
  position: relative; line-height: 0.5;
  cursor: pointer;
}

@media(min-width: 992px) {
  header {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
    top: 0;
    min-height: 85px;
  }
  
  .horizontalMob,
  .navWrapMobile,
  .mobileMenu {
    display: none;
  }
  .page_bannerImg{position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow: hidden;}

  .trading_section:after {
    content: '';
    position: absolute;
    width: 675px;
    height: 804px;
    border-radius: 0 100% 100% 0/0 50% 50% 0;
    background: rgba(111, 93, 210, 0.20);
    filter: blur(100px);
    opacity: 0;
    top: -400px;
  }

  .everything_you_need .section_title h3{font-size: 40px;}
  .partnerFulbg .button_radius span {font-size: 18px;}

  .hideLarge{display: none !important;}

  .we_are_here_section .grid .grid_item .grid_icon {margin-bottom: 22px;}

  /* .grid .grid_item .grid_icon:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    background: linear-gradient(96.08deg, #D600A6 -7.69%, #00BEFF 100.88%);
    opacity: 0.5;
    filter: blur(75px);
  } */
  }

  
/*Light Thme Header*/
html[data-theme=light] header {
  border-bottom: 1px solid rgba(107, 117, 126, 0.20);
}

html[data-theme=light] .navWrap .logo .light-theme-logo {
  opacity: 1;
}

html[data-theme=light] .navWrap .logo .dark-theme-logo {
  visibility: hidden;
}

html[data-theme=light] .navWrap nav a {
  color: var(--light-base-color);
}

html[data-theme=light] .navWrap .logo a:before {
  opacity: 0;
}

html[data-theme=light] .navWrap nav ul.credentialNav>li>a:hover,
html[data-theme=light] .navWrap nav .ottNav>li>a:hover {
  color: var(--black);
}

html[data-theme=light] ul.ottNav ul li a {
  color: var(--white);
}

html[data-theme=light] ul.credentialNav {
  border-left-color: #6B757E29;
}

html[data-theme=light] ul.credentialNav li a svg path {
  fill: var(--light-base-color);
}

html[data-theme=light] ul.credentialNav li a:hover svg path {
  fill: var(--black);
}

/*End Header*/

/*theme switch*/
.theme-switch-wrapper {
  display: flex;
  align-items: center;
}

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

.theme-switch input {
  display: none;
}

.switch_slider {
  background-color: var(--white);
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
}

html[data-theme=light] .switch_slider {
  background-color: var(--light-base-color);
}

.switch_slider:before {
  background-color: var(--black);
  bottom: 3px;
  content: "";
  height: 8px;
  left: 3px;
  position: absolute;
  transition: 0.4s;
  width: 7px;
}

html[data-theme=light] .switch_slider

/*, .theme-switch-wrapper input:checked + .switch_slider*/
  {
  background-color: var(--light-base-color);
}

html[data-theme=light] .switch_slider:before

/*, input:checked + .switch_slider:before*/
  {
  transform: translateX(10px);
  background-color: var(--white);
}

.switch_slider.round {
  border-radius: 20px;
}

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

/*End theme switch*/

/*Radius Box*/
.box_radius {
  /*display: inline-block; text-decoration: none; 
  background: linear-gradient(to right, var(--color-gradient-1), var(--color-gradient-2)),
    linear-gradient(to right, var(--color-gradient-1), var(--color-gradient-2));
  background-position: var(--border-radius-20) 0, var(--border-radius-20) 100%;
  background-repeat: no-repeat;
  background-size: calc(100% - var(--border-radius-20) - var(--border-radius-20))
    var(--border-width-2);
  border-radius: var(--border-radius-20);
  border: none; overflow: hidden; background-color: rgba(255, 255, 255, 0.06); width: 100%;*/
  color: var(--white);
  min-width: 220px;
  position: relative;
  text-align: center;
}

/*.box_radius:before, .box_radius:after {content: ""; display: block; position: absolute; width: var(--border-radius-20); top: 0; bottom: 0;}
  
.box_radius:before {left: 0; border: var(--border-width-2) solid var(--color-gradient-1); border-top-left-radius: var(--border-radius-20); border-bottom-left-radius: var(--border-radius-20); border-right-color: transparent;}
.box_radius:after {right: 0; border: var(--border-width-2) solid var(--color-gradient-2); border-top-right-radius: var(--border-radius-20);
  border-bottom-right-radius: var(--border-radius-20); border-left-color: transparent;  }*/

.box_radius:before {
  
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  background: linear-gradient(0deg, #09B7FC, #D601A6) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
    mask-composite: exclude;}

.box_radius .radius_check_list {
  font-size: 20px;
  padding-top: 0;
}

.box_radius .radius_check_list li {
  margin-top: 10px;
  margin-bottom: 10px;
}

/*Button*/
.button_radius_wrap {
  display: flex;
  gap: 20px;
  padding: 20px 0;
}

.button_radius {
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  min-width: 150px;
  position: relative;
  text-align: center;
  /* background: linear-gradient(to right, var(--color-gradient-1), var(--color-gradient-2)),
    linear-gradient(to right, var(--color-gradient-1), var(--color-gradient-2));
  background-position: var(--border-button-radius) 0, var(--border-button-radius) 100%; */
  /* background-repeat: no-repeat; */
  /* background-size: calc(100% - var(--border-button-radius) - var(--border-button-radius)) var(--button-radius-border-width); */
  /* border-radius: var(--border-button-radius); */
  /* border: none; */
  transition: .2s background-image;
  overflow: hidden;
}

.button_radius:before{content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 40px;
  border: 3px solid transparent; transition: .3s ease-out;
  background: linear-gradient(-90deg,#09B7FC,#D601A6) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;}

  .button_radius span:before{content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 40px; z-index: -1; opacity: 0;
    border: 3px solid transparent; transition: .3s ease-out;
    background: linear-gradient(-90deg,#09B7FC,#D601A6) border-box;}

  .button_radius:hover{border-radius: 40px;}
  .button_radius:hover span:before{opacity: 1;}


/* .button_radius:before,
.button_radius:after {
  content: "";
  display: block;
  position: absolute;
  width: var(--border-button-radius);
  top: 0;
  bottom: 0;
}

.button_radius:before {
  left: 0;
  border: var(--button-radius-border-width) solid var(--color-gradient-1);
  border-top-left-radius: var(--border-button-radius);
  border-bottom-left-radius: var(--border-button-radius);
  border-right-color: transparent;
}

.button_radius:after {
  right: 0;
  border: var(--button-radius-border-width) solid var(--color-gradient-2);
  border-top-right-radius: var(--border-button-radius);
  border-bottom-right-radius: var(--border-button-radius);
  border-left-color: transparent;
} */

.button_radius span {
  display: block;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 500;
  margin: 3px;
  text-transform: uppercase;
}

/* .button_radius:hover, */
.button_radius.active {
  background: linear-gradient(140deg, var(--c1, #D601A6), var(--c2, #09B7FC) 51%, var(--c1, #D601A6)) var(--x, 0)/ 200%;
}
.button_radius.active span:before{display: none;}

.button_radius.active{
  /* transition:background-image 0.5s ; */
  transition: 0.5s;
  border-radius: var(--border-button-radius);
}

.button_radius.active:hover {
  /* background-position: 100% 0; */
  /* background: linear-gradient(140deg, #09B7FC 0%, #D601A6 200%); */
  --x: 100%;
}

.button_radius:hover:before,
.button_radius:hover:after {
  visibility: hidden;
}

.button_radius.active:before,
.button_radius.active:after {
  display: none;
}

.section_title {
  position: relative;
}

a.section_title {
  color: inherit;
  text-decoration: none;
}

.section_title h4 {
  font-size: 22px;
  font-weight: 600;
  color: #00BEFF;
  padding-bottom: 30px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

.section_title h4 span {
  background-color: rgba(0, 191, 255, 0.06);
  display: inline-block;
  padding: 5px 10px;
}

.section_title h5 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: #00BEFF;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

.section_title h5 span {
  background-color: rgba(0, 191, 255, 0.06);
  display: inline-block;
  padding: 5px 12px;
}

.section_title h1 {
  font-size: 80px;
  font-weight: 600;
  line-height: 1.15;
  padding-bottom: 20px;
}

.section_title h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.3;
  padding-bottom: 30px;
}

.section_title h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
  padding-bottom: 15px;
}

.section_title p {
  font-size: 20px;
  line-height: 1.5;
  color: var(--DarkGray);
  padding-top: 3px !important;
}

.section_title.sectionTitleMed h2 {line-height: 1.25;}

.section_title.sectionTitleMed p {
  font-size: 18px;
}

.trade_with_the_best_section .section_title h2 {
  padding-bottom: 16px;
}

.trade_with_the_best_section .section_title p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.66;
}

html[data-theme=light] .trade_with_the_best_section .section_title p {
  color: #6B757E;
}

/*Banner Section*/
.page_banner {position: relative; padding-top: 204px; z-index: 3;
  /* background-color: lightgray; */
}

.page_banner_overly {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  background: linear-gradient(90deg, #12131D 37.53%, rgba(18, 19, 29, 0) 251.74%);
}

.page_banner_overly:before {
  display: block;
  content: '';
  width: 100%;
  height: 207px;
  position: absolute;
  z-index: 1;
  top: 0;
  background: linear-gradient(180deg, #12131D 0%, rgba(18, 19, 29, 0) 100%);
}

.page_banner_overly:after {
  display: block;
  content: '';
  width: 100%;
  height: 203px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  background: linear-gradient(0deg, #12131D 0%, rgba(18, 19, 29, 0.00) 100%);
}


.page_bannerImg img{width: 100%; min-height: 100%; object-fit: cover; height: inherit;}

.page_banner .section_title {
  padding-right: 10px;
}

.page_banner .section_title h5 {
  padding-bottom: 16px;
}

.page_hero .section_title h2 {
  font-size: 80px;
  line-height: 1.16;
  padding-bottom: 23px;
}

.page_hero .section_title p,
.page_banner .section_title p {line-height: 163.636%; line-height: 160%;}

.page_banner .button_radius_wrap {
  margin-top: 40px;
}

html[data-theme=light] .page_banner_overly {
  background: linear-gradient(72.12deg, #F5F7FA 42.36%, rgba(245, 247, 250, 0) 74.18%);
}

html[data-theme=light] .page_banner_overly:before {
  height: 246px;
  background: linear-gradient(180deg, #F5F7FA 27.64%, rgba(245, 247, 250, 0) 100%);
}

html[data-theme=light] .page_banner_overly:after {
  background: linear-gradient(0deg, #F5F7FA 0%, rgba(245, 247, 250, 0.00) 100%);
}

html[data-theme=light] .page_banner .section_title p {
  color: #6B757E;
}

html[data-theme=light] .button_radius {
  color: var(--black);
}

html[data-theme=light] .button_radius.active {
  color: var(--white);
}

html[data-theme=light] .button_radius:hover {color: var(--white);}
.ott_panelList {position: relative; z-index: 2; padding: 160px 0 56px 0;}

.ott_panelList ul {
  display: flex;
  list-style-type: none;
  gap: 50px;
}

.ott_panelList ul li {
  display: flex;
  gap: 18px;
  align-items: center;
}

.ott_panelList ul li+li {
  border-left: 1px solid #3F3F3F;
  padding-left: 50px;
}

.ott_panelList .ott_panel_title {
  font-size: 35px;
  font-weight: 300;
  line-height: 1.1;
}

.ott_panelList p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--DarkGray);
}

html[data-theme=light] .ott_panelList {
  background: linear-gradient(0deg, #F5F7FA 0%, rgba(245, 247, 250, 0) 100%);
}

html[data-theme=light] .ott_panelList p {
  color: #6B757E;
}

html[data-theme=light] .ott_panelList ul li+li {
  border-color: rgba(107, 117, 126, 0.3);
}

.ott_panelBox_wrap {
  background: linear-gradient(180deg, #12131D 0%, rgba(18, 19, 29, 0) 100%);
  padding: 10px 0 50px 0;
  position: relative;
}

.ott_panelBox {
  background: #191A24;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding-left: 35px;
  padding-right: 35px;
  border: 1px solid rgba(25, 26, 36, 1);
  border-radius: 10px;
}

.ott_panelBox li {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  gap: 15px;
  align-items: center;
  position: relative;
}

.ott_panelBox li+li {
  padding-left: 50px;
}

.ott_panelBox li+li:before {
  content: '';
  display: block;
  width: 1px;
  background: #3F3F3F;
  height: 42px;
  position: absolute;
  left: 0;
}

.ott_panelBoxIcom {
  background: #FFFFFF0D;
  width: 66px;
  height: 66px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ott_panelBox li p {
  font-size: 18px;
  line-height: 1.25;
  color: var(--DarkGray);
}

.trade_index_section {
  padding-top: 100px;
  padding-bottom: 50px;
  position: relative;
}

.trade_index_section:before {
  content: '';
  display: block;
  width: 498px;
  height: 498px;
  left: -77px;
  top: -100px;
  border-radius: 100%;
  position: absolute;
  background: rgba(111, 93, 210, 0.20);
  filter: blur(125px);
  opacity: 0;
}

.trade_index_section:after {
  content: '';
  display: block;
  width: 1004px;
  height: 987px;
  right: 0;
  bottom: 0;
  border-radius: 100% 0 0 100%/50% 0 0 50%;
  position: absolute;
  filter: blur(125px);
  opacity: 0;
  background: rgba(92, 109, 218, 0.12);
}

.trade_index_section .ott_row {
  align-items: center;
  margin-bottom: 61px;
}

.trade_index_section h3 {
  padding-top: 2px;
  padding-bottom: 20px;
  font-size: 35px;
  line-height: 1.42857;
}

.trade_index_section p {
  font-size: 17px;
  line-height: 1.47 !important;
  padding-right: 35px !important;
}

.trade_index_section .grid {
  text-align: center;
}

.trade_index_section .grid .grid_item img{width: 100%;}
.trade_index_section .grid .grid_item h3 {padding-bottom: 42px; position: relative; z-index: 2;}

.text_placeholder {
  position: absolute;
  left: 5px;
  right: 5px;
  top: 36px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.025);
  font-size: 40px;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) -234.17%, rgba(255, 255, 255, 0) 73.33%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}

.iframeWrap{position: relative; margin-bottom: 10px; border-radius: 8px; background: rgba(48, 186, 81, 0.05);}
.iframeWrap .gradientBorder{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;   border: 2px solid transparent;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.11808473389355745) 50%, rgba(255,255,255,0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;}
  .iframeWrap .gradientBorder + div{}
  /* .iframeWrap .gradientBorder + div{border-radius: 8px; overflow: hidden; } */

/* .iframeWrap>div{border: 1px solid #fffcfc5e; margin-bottom: 10px; border-radius: 8px; overflow: hidden;} */

/* html[data-theme=light] .home_bg_top{background: #FFFFFF;} */
html[data-theme=light] .ott_panelBox_wrap {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, #FFFFFF 48.96%, rgba(255, 255, 255, 0) 100%);
}

html[data-theme=light] .ott_panelBox {
  background: var(--white);
  border-color: rgba(233, 233, 233, 1);
}

html[data-theme=light] .serviceott_panelBoxList li p {
  color: #6B757E;
}

html[data-theme=light] .ott_panelBox li+li:before {
  background: rgba(63, 63, 63, 0.2);
}

html[data-theme=light] .trade_index_section p {
  color: #6B757E;
}

html[data-theme=light] .text_placeholder {
  color: rgb(0 0 0 / 4%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) -386.16%, rgba(0, 0, 0, 0) 100%);
}

html[data-theme=light] .ott_panelBoxIcom {
  background-color: #FAF6FA;
}

html[data-theme=light] .trade_index_section:before,
html[data-theme=light] .trade_index_section:after {
  opacity: 1;
}

.account_type_section {
  padding: 68px 0;
  position: relative;
}

.account_type_section .blur_box {
  width: 1076px;
  height: 1076px;
  background: #00BEFF;
  left: -450px;
  top: -550px;
  opacity: .07;
}

.planRowGroup {
  position: relative;
  margin-top: 50px;
  margin-bottom: 40px;
}

.planRowGroup h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.23;
}

.col4Bg {
  width: 282px;
  height: 100%;
  z-index: -1;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.col4Bg:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(136deg, rgba(214, 0, 166, 0.30) 0%, rgba(0, 190, 255, 0.30) 100%);
  filter: blur(60px);
  border-radius: 20px;
}

.col4Bg:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(173.83deg, #00BEFF -48.44%, #D600A6 150.5%);
  position: absolute;
  top: 0;
  border-radius: 20px;
}

.planRow {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.planRowHead .planCol {
  border-bottom: none !important;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-border-top-left-radius: 20px;
  -webkit-border-top-right-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-topright: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.planRow>.planCol:nth-child(2),
.planRow>.planCol:nth-child(3) {
  background-color: #1c1c26;
}

.planRowHead>.planCol:nth-child(2),
.planRowHead>.planCol:nth-child(3) {
  background-color: #282935;
}

.planRowHead>.planCol:last-child {
  background-color: rgba(255, 255, 255, 0.15);
}

.planRowHead>.planCol:after {
  display: none !important;
}

.planRow .planCol {
  width: 280px;
  position: relative;
  display: flex;
  align-items: center;
}

.planRow>.planCol:after {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: -20px;
  background-color: rgba(255, 255, 255, .1);
  width: calc(100% + 20px);
}

.planRow>.planCol:first-child:after {
  left: 0;
  width: 100%;
}

.planRow>.planCol:first-child {
  width: 240px;
}

.planRow>.planCol+.planCol {
  padding-left: 45px;
  padding-right: 45px;
}

.planRow.planFootRow>.planCol {
  padding-top: 48px;
  padding-bottom: 48px;
  -webkit-border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-bottomright: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.planRow.planFootRow>.planCol:after {
  display: none !important;
}

.planRow.planFootRow>.planCol:last-child button.btn {
  background: rgba(225, 225, 225, 0.20);
}

.planRow.planFootRow>.planCol:last-child button.btn:hover {
  background: rgba(225, 225, 225, 0.30);
}

.planItem {
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.planRow .planCol.noborder {
  border-bottom: none;
}

.planRowGroup p {
  padding: 25px 0 !important;
  line-height: 1.285 !important;
  font-size: 20px;
  font-weight: 500;
}

.planRow>.planCol:first-child p {
  color: var(--DarkGray);
}

.planRowGroup p small {
  line-height: 1.2;
  display: inline-block;
  font-size: 15px;
}

html[data-theme=light] .col4Bg:before {
  opacity: .5;
}

html[data-theme=light] .planRow>.planCol:nth-child(2),
html[data-theme=light] .planRow>.planCol:nth-child(3) {
  background-color: #FFFFFF;
}

html[data-theme=light] .planRowHead>.planCol:nth-child(2),
html[data-theme=light] .planRowHead>.planCol:nth-child(3) {
  background: #2829350D;
}

html[data-theme=light] .planRow>.planCol:after {
  background: #6B757E4D;
}

html[data-theme=light] .planRow>.planCol:last-child {
  color: var(--white);
}

html[data-theme=light] .planRow>.planCol:first-child p {
  color: #6B757E;
}

@media screen and (min-width: 992px){
.account_grid {display: grid; display: inline-grid; margin-top: 50px;
  grid-template-columns:230px 1fr 1fr 1fr; gap: 20px; width: 100%;}

.subgridWrap {display: grid; grid-auto-rows: 1fr; grid-template-rows:87px 108px 80px 1fr 1fr 1fr 1fr 1fr 1fr 1fr 158px;}

.Pricingplan{background-color: #1c1c26;}
.subgridWrap3{background-color: #1c1c26;}
.Pricingplan, .recomendedPlan{border-radius: 20px;}
.recomendedPlan{background: linear-gradient(173.83deg, #00BEFF -48.44%, #D600A6 150.5%); position: relative;}
.recomendedPlan:before{content: ''; display: block; position: absolute; z-index: -1; 
  width: 100%; height: 100%; background: linear-gradient(136deg, rgba(214, 0, 166, 0.30) 0%, rgba(0, 190, 255, 0.30) 100%);
  filter: blur(60px); border-radius: 20px;}

.sub_gridItem {padding: 20px 35px; display: flex; align-items: center; position: relative;}
.sub_gridItem:before{content: ''; display: block; height: 1px; position: absolute; left: -10px; right: -10px; bottom: 0; background-color: rgba(255, 255, 255, 0.15);}
.sub_gridItem.noBorder:before{display: none;}
.colHead{background-color: #282935; border-bottom: none; padding-top: 20px;
  padding-bottom: 20px;
  -webkit-border-top-left-radius: 20px;
  -webkit-border-top-right-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-topright: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;}
.colHead h3{font-size: 35px; font-weight: 700; line-height: 1.23;}

.recomendedPlan .colHead{background-color: rgba(255, 255, 255, 0.15);}
.sub_gridItem.colFoot{display: flex; align-items: center; border-bottom: none;}
.sub_gridItem.colHead:before, .sub_gridItem.colFoot:before{display: none;}
.PricingplanLabel .sub_gridItem{padding-left: 0;}
.PricingplanLabel .sub_gridItem:before{left: 0;}
.recomendedPlan .sub_gridItem:before{right: 0;}
.PricingplanLabel p{color: var(--DarkGray);}
.account_grid p{padding: 4px 0 !important; line-height: 1.285 !important; font-size: 18px; font-weight: 500;}
.account_grid p small{line-height: 1.2; display: inline-block; font-size: 15px;}

.PricingRowLabel{display: none;}

.grid .grid_item .grid_icon .grid_iconInner .grid_icon_blur{display: block; position: absolute; width: 100%; height: 100%; 
  background: linear-gradient(96.08deg, #D600A6 -7.69%, #00BEFF 100.88%); opacity: 0.5; filter: blur(75px); z-index: -1;}

.trade_index_section .grid .grid_item{padding-bottom: 12px;}
}

.we_are_here_section {
  padding: 90px 0 155px 0;
  position: relative;
}

.we_are_here_section:before {
  content: '';
  display: block;
  position: absolute;
  width: 433px;
  height: 640px;
  left: 0px;
  top: -350px;
  border-radius: 0 100% 100% 0/0 50% 50% 0;
  opacity: 0;
  background: rgba(0, 67, 198, 0.30);
  filter: blur(125px);
}

.we_are_here_section:after {
  content: '';
  display: block;
  position: absolute;
  width: 433px;
  height: 617px;
  right: 0px;
  top: 0px;
  opacity: 0;
  border-radius: 100% 0 0 100%/50% 0 0 50%;
  background: rgba(0, 67, 198, 0.30);
  filter: blur(100px);
}

.we_are_here_section .we_are_hereBlur2 {
  left: -450px;
  top: inherit;
  bottom: -200px;
}

.we_are_here_section .ott_row {
  align-items: center;
}

.we_are_here_section p {
  color: var(--DarkGray);
  font-size: 17px;
  line-height: 1.47 !important;
}

.we_are_here_section .grid {
  text-align: center;
  margin-top: 70px;
}

.we_are_here_section .grid .grid_item {
  position: relative;
  padding-bottom: 5px;
}

.we_are_here_section .grid .grid_item .grid_icon {width: 100%; position: relative;}

/* .we_are_here_section .grid .grid_item .grid_icon:before {
  left: calc(50% - 70px);
  max-width: 170px;
  height: 131px;
} */

.we_are_here_section .grid .grid_item .grid_icon img {
  max-height: inherit;
}

.we_are_here_section .grid .grid_item h3 {font-size: 20px; padding-bottom: 45px; position: relative; z-index: 1;}

html[data-theme=light] .we_are_here_section:before {
  opacity: 0.4;
}

html[data-theme=light] .we_are_here_section:after {
  opacity: 0.4;
}

html[data-theme=light] .we_are_here_section .we_are_hereBlur2 {
  z-index: 1;
  opacity: .03;
}

html[data-theme=light] .we_are_here_section p {
  color: #6B757E;
}

.trading_section {
  background: #161723;
  padding: 65px 0 104px 0;
  position: relative;
}

.trading_section:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 200px;
  top: 0;
}

.trading_section .ott_row {
  gap: 70px;
  align-items: flex-end;
  margin-bottom: 83px;
}

.trading_section .section_title h5 {
  padding-bottom: 15px;
}

.trading_section .section_title h2 {
  padding-bottom: 10px;
}

.trading_section p {
  color: var(--DarkGray);
  font-size: 18px;
  line-height: 1.5 !important;
}

.trading_section .button_radius_wrap {
  margin-top: 30px;
}

.trading_section .grid .grid_item h3 {
  font-size: 22px;
  padding-bottom: 2px;
}


.trading_section .grid .grid_item .grid_icon {
  margin-bottom: 10px;
  position: relative;
  min-height: 100px;
}

.trading_section .grid .button_radius {
  margin-top: 43px;
  position: absolute;
  bottom: 30px;
}

.tradingImg {
  position: relative;
}

.tradingImg:before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  z-index: -1;
  border-radius: 578.764px;
  opacity: 0.1;
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(146deg, #D600A6 0%, #00BEFF 100%);
  filter: blur(75px);
}


html[data-theme=light] .trading_section {
  background: transparent;
}

html[data-theme=light] .trading_section:after {
  opacity: .6;
}

html[data-theme=light] .trading_section .grid .button_radius {
  color: var(--white);
}

html[data-theme=light] .trading_section:before {
  background: linear-gradient(180deg, #ffffff 0%, rgba(18, 19, 29, 0) 100%);
}

.get_started_section {
  min-height: 500px;
  padding: 148px 0 112px 0;
  position: relative;
}

.get_started_section:after {
  content: '';
  width: 549px;
  height: 535px;
  position: absolute;
  background: rgba(0, 67, 198, 0.15);
  filter: blur(125px);
  opacity: 0;
  right: 0;
  bottom: -20px;
}
.inner_content .inner_content_main .term-item:first-child h3{
  padding-top: 0;
}
@media screen and (min-width: 1201px){
.page_banner .section_title p {font-size: 22px;}
.trading_section .section_title h2 {
    font-size: 52px;
    line-height: 1.44;
  }
  .get_started_section .section_title h2 {
    line-height: 1;
    transform: rotate(180deg);
    padding: 0;
    font-size: 54px;
    writing-mode: vertical-rl;
  }
  .get_started_section .grid{margin-left: 30px;}

  .trading_section .button_radius_wrap .button_radius {width: 176px;}
  .trading_section .button_radius_wrap .button_radius span {padding: 16px 25px;}

  .small_button_radius.button_radius {width: 155px;}
  .small_button_radius.button_radius span {padding: 15px 25px;}
  .facts_section.ctraderOtherPage p {font-size: 19px; line-height: 1.79;}

.inner_content .inner_content_main ul, .inner_content .inner_content_main ol {font-size: 18px;}
.inner_content .inner_content_main h3 {padding-top: 72px;}
.who_we_are_section.program_partner_work p {font-size: 18px;}
.CPA_reward_structure_section p {font-size: 18px;}
.who_we_are_section.program_partner_work .section_title h3 {font-size: 35px;}
.introducing-broker-partner-type p {font-size: 20px;}
.introducing-broker-next-gen-portal p {font-size: 22px;}

.CPA_reward_structure_section h3 {font-size: 35px;}
.introducing-broker-next-gen-portal .section_title h3 {font-size: 40px;}

}

.get_started_section .section_title h5 {
  padding-bottom: 15px;
}

.get_started_section .grid {
  gap: 35px;
}

.get_started_section .grid .grid_item {
  padding: 50px 30px 40px 30px;
}

.get_started_section .grid .grid_item .grid_icon {
  margin-bottom: 22px;
  min-height: 90px;
  position: relative;
}

.get_started_section .grid .grid_item .grid_icon .number_placeholder {
  position: absolute; 
  font-size: 100px;
  font-weight: 600;
  line-height: 1;
  left: 32px;
  top: -10px;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none;
  background: linear-gradient(151.68deg, rgba(255, 255, 255, 0.2) -70.89%, rgba(255, 255, 255, 0) 71.62%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}

.get_started_section.partnerships_started_section {
  background: rgba(255, 255, 255, 0.02);
}

.get_started_section.partnerships_started_section .grid .grid_item {
  background: rgba(255, 255, 255, 0.02);
  background: linear-gradient(141deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.title_placeholder {
  font-size: 100px;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 20px;
  position: relative;
}

.title_placeholder:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  max-width: 104px;
  height: 100%;
  flex-shrink: 0;
  background: linear-gradient(96deg, #D600A6 -7.69%, #00BEFF 100.88%);
  opacity: 0.3;
  filter: blur(75px);
}

.title_placeholder span {
  background: linear-gradient(151.68deg, rgba(255, 255, 255, 0.2) -70.89%, rgba(255, 255, 255, 0) 71.62%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(270deg, rgb(255 255 255 / 0%) 50%, rgb(255 255 255 / 7%) 100%);
  display: inherit;
}

.get_started_section.partnerships_started_section h2 {
  font-size: 44px;
}

.get_started_section .grid .grid_item h3 {
  font-size: 20px;
  padding-bottom: 0px;
}

.get_started_section .grid .grid_item p {
  font-size: 14px;
}

.get_started_section .grid .grid_item p span {
  color: var(--color-gradient-2);
}

html[data-theme=light] .get_started_section:after {
  opacity: 1;
}

html[data-theme=light] .get_started_section .grid .grid_item .grid_icon .number_placeholder {
  color: rgb(0 0 0 / 4%);
  background: linear-gradient(151.68deg, rgba(0, 0, 0, 0.2) -24.13%, rgba(0, 0, 0, 0) 71.62%);
}

.everything_you_need {
  padding: 100px 0 80px 0;
  position: relative;
}

.everything_you_need:before {
  content: '';
  display: block;
  position: absolute;
  top: 50px;
  background: rgba(111, 93, 210, 0.30);
  width: 365px;
  height: 374px;
  filter: blur(125px);
  opacity: 0;
}

.everything_you_need:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -200px;
  background: #BFD5FF;
  width: 365px;
  height: 374px;
  filter: blur(125px);
  opacity: 0;
}

.everything_you_need .section_title h3 {
  padding-bottom: 74px;
}

.everything_you_need .grid .grid_item {
  padding-bottom: 40px;
}

.everything_you_need .grid .grid_item .grid_icon {
  min-height: 90px;
  margin-bottom: 20px;
}

.everything_you_need .grid .grid_item h3 {
  padding-bottom: 5px;
}

.everything_you_need .blur_box {
  right: 0;
  opacity: 0;
  width: 350px;
  top: -145px;
  border-radius: 100% 0 0 100%/50% 0 0 50%;
  background: rgba(111, 93, 210, 0.30);
  filter: blur(125px);
}

.OTT-Markets-simply {
  position: relative;
  min-height: 755px;
  display: flex;
  align-items: center;
  padding: 100px 0 81px 0;
  z-index: 2;
}

.OTT-Markets-simply .Full_bg {
  background-repeat: no-repeat;
  background-size: 62%;
  background-position: left center;
}

.OTT-Markets-simply .Full_bg .full_bgTP{
  background: linear-gradient(270.01deg, #11121F 33.61%, rgba(18, 19, 29, 0) 137.62%);
  opacity: 1;
  position: relative;
  z-index: 1;
}

.OTT-Markets-simply .Full_bg:after {
  content: '';
  background: linear-gradient(283.45deg, #11121F 0%, rgba(17, 18, 31, 0) 165.35%);
  width: 100%;
  top: 0;
  position: absolute;
  height: 100%;
}

.OTT-Markets-simply .Full_bg .Full_bgInner {
  width: 62%;
  height: 100%;
  position: absolute;
  top: 0;
  background: left bottom;
}

.OTT-Markets-simply_contnt {
  width: 100%;
  max-width: 662px;
  margin-left: auto;
}

.OTT-Markets-simply .section_title h4 {
  padding-bottom: 16px;
}

.OTT-Markets-simply .section_title h2 {
  line-height: 1.25;
  padding-bottom: 16px;
}

.OTT-Markets-simply_contnt p {
  font-size: 17px;
  line-height: 1.59;
  padding-bottom: 15px;
  color: var(--DarkGray);
  line-height: 1.25;
}

.OTT-Markets-simply_contnt .button_radius_wrap {
  justify-content: flex-start;
  margin-top: 30px;
}

.full_bg_with_text_center {
  display: flex;
  align-items: flex-end;
  text-align: center;
  height: 605px;
  padding-bottom: 115px;
  overflow: hidden;
  position: relative;
  color: var(--white);
}

.Full_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.Full_bg span.full_bgTP{
  content: '';
  display: block;
  background: rgba(18, 19, 29, 1);
  height: 100%;
  width: 100%;
  opacity: .8;
  position: relative;
  z-index: 1;
}

.full_bg_with_text_center .section_title h2 {
  padding-top: 5px;
  font-size: 55px;
  padding-bottom: 34px;
}

.full_bg_with_text_center .button_radius span {
  padding: 19px 32px;
}

.full_bg_with_text_center.partnerFulbg {
  align-items: center;
}

.partnerFulbg .Full_bg:before {
  opacity: .9;
}

.partnerFulbg .section_title h2 {
  font-size: 70px;
}

.full_bg_with_text_center.full_bg_large .section_title {
  padding-bottom: 8px;
}

.full_bg_with_text_center.full_bg_large .section_title h2 {
  font-size: 80px;
  padding-top: 10px;
}

.full_bg_with_text_center.full_bg_large .button_radius span {
  font-size: 18px;
  padding: 19px 37px;
}

html[data-theme=light] .everything_you_need .blur_box {
  opacity: .5;
}

html[data-theme=light] .everything_you_need:before,
html[data-theme=light] .everything_you_need:after {
  opacity: 1;
}

html[data-theme=light] .OTT-Markets-simply .section_title h2 {
  color: var(--white);
}

html[data-theme=light] .OTT-Markets-simply .button_radius,
html[data-theme=light] .full_bg_with_text_center .button_radius {
  color: var(--white);
}

@media(min-width: 992px) {
.page_hero {aspect-ratio: auto 1 / .36; display: flex; align-items: center; min-height: 520px;}
.page_hero.pantner_hero {aspect-ratio: auto 1 / .49; min-height: 625px;}
.page_hero.trading_hero {aspect-ratio: auto 1 / .49; min-height: 625px;}
.help-centers-banner{aspect-ratio: auto 1 / .38;}
.help-centers-banner .page_hero_overly{background: linear-gradient(85deg, #12131D 38.53%, rgba(18, 19, 29, 0.00) 99.15%);}
.page_heroContent{width: 100%; padding-top: 120px;}
}

/*Inner Page*/
.page_hero {position: relative; background: #12131d; max-width: 100%;}
.page_hero:before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 207px;
  background: linear-gradient(180deg, #12131D 0%, rgba(18, 19, 29, 0) 100%);
}

.page_hero:after {
  content: '';
  background: linear-gradient(0deg, #12131D 0%, rgba(18, 19, 29, 0) 100%);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 160px;
}

.page_heroImg{position: absolute; top: 0; text-align: right; left: 0; right: 0; bottom: 0; overflow: hidden;}
.page_heroImg img{width: auto; height: 100%; object-fit: cover;}

.page_hero_overly {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  background: linear-gradient(85.77deg, #12131D 24.93%, rgba(18, 19, 29, 0) 99.46%);
}

.page_hero .page_heroBg {
  position: absolute;
  width: 81%;
  height: 100%;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
}


html[data-theme=light] .page_hero {
  background: var(--white);
}

html[data-theme=light] .page_hero:after {
  background: linear-gradient(0deg, #F5F7FA 0%, rgba(245, 247, 250, 0) 100%);
}

html[data-theme=light] .page_hero:before {
  background: linear-gradient(180deg, #F5F7FA 27.64%, rgba(245, 247, 250, 0) 100%)
}

html[data-theme=light] .page_hero_overly {
  background: linear-gradient(85.77deg, #ffffff 29.93%, rgba(18, 19, 29, 0) 99.46%);
}

html[data-theme=light] .inner_content h3 {
  color: var(--black);
}

html[data-theme=light] .page_hero .section_title p {
  color: rgba(107, 117, 126, 1);
}

.inner_content_wrap {
  position: relative;
  padding: 120px 0;
}

/* .inner_content_wrap:after,  */
.inner_content_wrap .inner_contentBottomBG{
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  height: 288px;
  width: 100%;
  background: linear-gradient(360deg, #12131D 0%, rgba(18, 19, 29, 0) 100%);
}

.bg_dotted_pattern {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: 150px;
  overflow: hidden;
  width: 100%;
}

.bg_dotted_pattern:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: 193px;
  width: 100%;
  background: linear-gradient(180deg, #12131D 0%, rgba(18, 19, 29, 0) 100%);
}

.bg_dotted_patternOverly {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.94;
  background: #12131d;
}

.bg_dotted_pattern>.bg_dotted_item {
  line-height: 0;
  position: relative;
  z-index: -1;
}

.bg_dotted_pattern>.bg_dotted_item img {
  opacity: 0.06;
  width: 100%;
  height: auto;
}

.bg_dotted_pattern>.bg_dotted_item+.bg_dotted_item:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: 193px;
  width: 100%;
  background: linear-gradient(180deg, #12131D 0%, rgba(18, 19, 29, 0) 100%);
}

.bg_dotted_pattern>.bg_dotted_item:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  height: 288px;
  width: 100%;
  background: linear-gradient(360deg, #12131D 0%, rgba(18, 19, 29, 0) 100%);
}

.inner_content_wrap.indexBG {
  padding: 20px 0;
}

html[data-theme=light] .bg_dotted_patternOverly {
  background: #ffffff;
  opacity: 0.85;
}

html[data-theme=light] .bg_dotted_pattern>.bg_dotted_item img {
  opacity: 0.03;
}

html[data-theme=light] .indexBG .bg_dotted_pattern>.bg_dotted_item img {
  opacity: 0.01;
}

.inner_content_wrap p {
  padding: 10px 0;
  line-height: 1.58;
}

.inner_content {
  color: var(--DarkGray);
  padding: 25px 0;
}

ul.anchor_nav {
  list-style-type: none;
  background: linear-gradient(148.72deg, #1E202A 0%, #131925 100%);
  padding: 35px 52px;
  position: sticky;
  top: 0;
  font-size: 20px;
  font-weight: 500;
}

ul.anchor_nav li {
  padding: 15px 0;
}

ul.anchor_nav li a {
  color: var(--DarkGray);
  text-decoration: none;
  cursor: pointer;
}

ul.anchor_nav li a.active,
ul.anchor_nav li a:hover {
  color: var(--white);
}


.inner_content h3 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
  padding-bottom: 20px;
  color: var(--white);
}

.inner_content p {
  font-size: 18px;
  font-weight: 400;
  padding: 14px 0;
}

.inner_content p a {
  color: var(--white);
  font-weight: 400;
}

.inner_content .inner_content_main ul,
.inner_content .inner_content_main ol {
  padding-left: 20px;
}

.inner_content .inner_content_main>h3:first-child {
  padding-top: 0;
}

.inner_content .inner_content_main ul,
.inner_content .inner_content_main ol {
  font-weight: 400;
  padding-top: 2px;
}

.inner_content .inner_content_main ul li,
.inner_content .inner_content_main ol li {
  padding: 13px 0;
}

.inner_content .inner_content_main ol ul {
  list-style-type: disc;
}

.inner_content .inner_content_main h5 {
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  padding: 13px 0;
}

.inner_content .inner_content_main ul.listPadding0 {
  padding-top: 12px;
  padding-bottom: 12px;
}

html[data-theme=light] .inner_content_wrap:after {
  background: linear-gradient(360deg, #ffffff 0%, rgba(18, 19, 29, 0) 100%);
}

html[data-theme=light] .bg_dotted_pattern:before {
  background: linear-gradient(180deg, #ffffff 0%, rgba(18, 19, 29, 0) 100%);
}

html[data-theme=light] .bg_dotted_pattern>.bg_dotted_item:after {
  background: linear-gradient(360deg, #ffffff 0%, rgba(18, 19, 29, 0) 100%);
}

html[data-theme=light] .bg_dotted_pattern>.bg_dotted_item+.bg_dotted_item:before {
  background: linear-gradient(180deg, #ffffff 0%, rgba(18, 19, 29, 0) 100%);
}

html[data-theme=light] ul.anchor_nav {
  background: rgba(246, 248, 251, 1);
}

html[data-theme=light] ul.anchor_nav li a {
  color: rgba(107, 117, 126, 1);
}

html[data-theme=light] ul.anchor_nav li a.active,
html[data-theme=light] ul.anchor_nav li a:hover {
  color: var(--black);
}

html[data-theme=light] .inner_content .inner_content_main h5 {
  color: var(--black);
}

html[data-theme=light] .inner_content {
  color: rgba(107, 117, 126, 1);
}

/*Partner*/
.page_hero.pantner_hero:after {
  display: none;
}

.page_hero.pantner_hero .page_heroBg {
  opacity: .8;
}

.page_hero.pantner_hero .page_heroBg .page_hero_overly {
  left: -19vw;
}

.page_hero.pantner_hero .button_radius_wrap {
  margin-top: 30px;
}

.pantner_hero .page_heroImg img{
  opacity: 0.75;
}

.horizontal_ancor_navWrap {
  background: #0F1018;
  padding: 33px 0;
  border: 1px solid transparent;
}

.horizontal_ancor_navWrap.space-aroundItem .horizontal_ancor_nav {
  justify-content: space-around;
}

.horizontalMob{justify-content: space-between; color: #B8B8BB; font-size: 14px; font-weight: 500;}
.horzanNavMob{cursor: pointer;}

.horizontal_ancor_nav {
  display: flex;
  list-style: none;
  justify-content: space-between;
  gap: 20px;
  font-size: 18px;
}

.horizontal_ancor_nav li a {
  color: var(--DarkGray);
  /* text-transform: uppercase; */
  text-decoration: none;
  transition: .5s all;
  font-weight: 300;
}

.horizontal_ancor_nav li a.active,
.horizontal_ancor_nav li a:hover {
  background: linear-gradient(90deg, #D600A6 -2.01%, #00BEFF 103.87%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}

.horizontal_ancor_nav li a.active {
  font-weight: 600;
}

html[data-theme=light] .horizontal_ancor_navWrap {
  background: var(--white);
  border-color: #EEEEEE;
}

html[data-theme=light] .horizontal_ancor_nav li a {
  color: var(--light-base-color);
}

html[data-theme=light] .grid2 .grid2_item p,
html[data-theme=light] .introducing-broker-partner-type p,
html[data-theme=light] .introducing-broker-program p {
  color: var(--light-base-color);
}
.introducing-broker-program {padding: 91px 0 124px 0; position: relative; background-color: rgb(255 255 255 / 2%);}
.introducing-broker-program.features_section {padding-top: 115px; position: relative;}
.introducing-broker-program.features_section:before {
  content: '';
  background: rgba(0, 190, 255, 0.07);
  right: 0;
  top: -450px;
  width: 500px;
  height: 914px;
  border-radius: 100% 0 0 100%/50% 0 0 50%;
  z-index: 1;
  filter: blur(100px);
  position: absolute;
}

.introducing-broker-program.features_section:after {
  content: '';
  background: rgba(0, 190, 255, 0.07);
  left: 0;
  top: 150px;
  width: 100px;
  height: 374px;
  border-radius: 0 100% 100% 0/0 50% 50% 0;
  z-index: 1;
  filter: blur(100px);
  position: absolute;
  opacity: 0;
}

.introducing-broker-program.features_section h2 {
  padding-bottom: 8px;
}

.introducing-broker-program p {
  color: var(--DarkGray);
}

.introducing-broker-program .section_title h3 {
  padding-bottom: 12px;
}

.introducing-broker-program .radius_check_list li {
  background-size: 10px;
  padding-left: 25px;
}

.broker-programImg {
  padding-left: 60px;
}

.introducing-broker-partner-type {
  padding: 108px 0;
  text-align: center;
}

.introducing-broker-partner-type p {
  color: var(--DarkGray);
  line-height: 2;
}

.introducing-broker-partner-type .section_title h2 {
  line-height: 1.5; padding-bottom: 0px;
}

html[data-theme=light] .introducing-broker-program.features_section:after {
  opacity: 1;
}

html[data-theme=light] .introducing-broker-program.features_section {
  border-top-color: rgba(255, 255, 255, 0.25);
}

.videoBox {
  overflow: hidden;
  padding: 0px;
  line-height: 0; border-radius: 20px;
  margin-top: 40px;
}

.videoBox video {
  width: 100%;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: -1;
}

.videoBox .videoBoxInner {
  position: relative;
  z-index: -1;
}

.videoBox .videoBoxInner:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgb(0 0 0 / 50%);
  top: 0;
  left: 0;
  z-index: 1;
}

.videoBox .play_action {
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
}

.introducing-broker-key-benefits {
  text-align: center;
  padding: 122px 0;
  background: rgb(255 16 16 / 3%);
}

.introducing-broker-key-benefits .grid2 .grid2_item{background: linear-gradient(141deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.00) 100%);}

.introducing-broker-next-gen-portal {
  padding: 120px 0 90px 0;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
}

.introducing-broker-next-gen-portal .ott_row {
  align-items: center;
  gap: 40px
}

.introducing-broker-next-gen-portal .section_title h3 {
  padding-bottom: 10px;
}

.introducing-broker-next-gen-portal p {
  color: var(--DarkGray);
}

.inner_content_wrap.programPageBg {padding-top: 0; padding-bottom: 0;}
.partner-program_become-partner {text-align: center; padding-top: 91px; padding-bottom: 112px;}

.programPageBg .grid2 {
  margin-top: 56px;
}

.programPageBg .grid2 .grid2_item p {
  font-size: 14px;
}

.programPageBg .grid2 .grid2_item>p:first-child {
  font-size: 16px;
}

.introducing-broker_boxes {
  background: rgba(255, 255, 255, 0.02);
  padding: 120px 0;
}

.box_radius.box_radius_content {
  padding: 45px 60px 45px 60px;
  text-align: left;
}

.box_radius.box_radius_content h5 {
  font-size: 12px;
  font-weight: 600;
  color: #00BEFF;
  padding-bottom: 10px; position: relative;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

.box_radius.box_radius_content h5 span {
  background-color: rgba(0, 191, 255, 0.06);
  display: inline-block;
  padding: 5px 10px;
}

.box_radius.box_radius_content h3 {font-weight: 600; padding-bottom: 8px; line-height: 1.5; position: relative;}
.introducing-broker_boxes .button_radius_wrap {
  padding-bottom: 0;
}

.box_radius.box_radius_content p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.66; position: relative;
}

.equalheight [class^=ott_col-] {
  display: flex;
}

.ott_row_flex_auto [class^=ott_col-] {
  flex: auto;
  width: auto;
}

html[data-theme=light] .grid2 .grid2_item {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.00) 100%);
}

html[data-theme=light] .introducing-broker-next-gen-portal p {
  color: var(--light-base-color);
}

html[data-theme=light] .box_radius.box_radius_content {
  background-color: var(--white);
  color: var(--light-base-color);
}

html[data-theme=light] .box_radius.box_radius_content h3 {
  color: var(--black);
}

html[data-theme=light] .partnerships_started_section .title_placeholder {
  background: linear-gradient(130deg, rgba(0, 0, 0, 0.20) 15.10%, rgba(0, 0, 0, 0.00) 100%);
}

html[data-theme=light] .get_started_section.partnerships_started_section .grid .grid_item {
  background-color: var(--white);
}

.partner_type_section {
  padding: 119px 0 122px 0;
  background-color: rgba(255, 255, 255, 0.02);
  position: relative;
  z-index: 1;
}

.partner_type_section .section_title {
  padding-bottom: 54px;
}

.programPageBg+.full_bg_with_text_center+footer {
  position: relative;
}

.programPageBg+.full_bg_with_text_center+footer:before {
  content: '';
  display: block;
  background: rgba(0, 190, 255, 0.07);
  position: absolute;
  top: 0px;
  right: 0;
  width: 440px;
  height: 500px;
  border-radius: 100% 0 0 100%/50% 0 0 50%;
  filter: blur(150px);
}

.why_partner_us_section {
  padding: 108px 0 100px 0;
  position: relative;
}

.why_partner_us_section:before {
  content: '';
  display: block;
  background: rgba(214, 0, 166, 0.07);
  position: absolute;
  top: -300px;
  right: 0;
  width: 460px;
  height: 918px;
  border-radius: 100% 0 0 100%/50% 0 0 50%;
  filter: blur(150px);
}

.why_partner_us_section:after {
  content: '';
  display: block;
  background: rgba(214, 0, 166, 0.07);
  position: absolute;
  top: 300px;
  left: 0;
  width: 460px;
  height: 918px;
  border-radius: 100% 0 0 100%/50% 0 0 50%;
  filter: blur(150px);
}

.why_partner_us_section .section_title {
  text-align: center;
  padding-bottom: 70px;
}

.why_partner_us_section .section_title p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.why_partner_us_section .grid .grid_item {
  background: linear-gradient(141deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.00) 100%);
}

.why_partner_us_section .grid .grid_item h3 {
  font-size: 18px;
  padding-bottom: 10px;
}

.partner-program_started_section {
  background-color: rgba(255, 255, 255, 0.02);
  padding: 120px 0;
}

.partner-program_started_section h2 {
  font-size: 44px;
}

.who_we_are_section {
  background-color: rgba(255, 255, 255, 0.02);
  padding: 120px 0 115px 0;
  position: relative;
}

.who_we_are_section .section_title h5 {
  padding-bottom: 14px;
}

.who_we_are_section .section_title h2 {
  padding-bottom: 8px;
}

.who_we_are_section .ott_row {
  gap: 50px;
}

.who_we_are_section .ott_row .ott_col-5 {
  width: 524px;
}
.who_we_are_section .ott_row .ott_col-5 img{opacity: 0.6;}

.who_we_are_section .ott_row .ott_col-7 {
  width: 595px;
}

.who_we_are_section p {
  font-size: 17px;
  color: var(--DarkGray);
}

.who_we_are_section.program_partner_work {padding: 110px 0 105px 0; border-bottom: none;}

.who_we_are_section.program_partner_work .ott_row {
  gap: 78px;
  align-items: center;
}

.who_we_are_section.program_partner_work .ott_row .ott_col-5 {
  width: 600px;
}

.who_we_are_section.program_partner_work .ott_row .ott_col-7 {
  width: 490px;
}

html[data-theme=light] .who_we_are_section.program_partner_work {
  border-top-color: rgba(0, 0, 0, 0.1);
}

.program_partner_work.ctrader_benefits .section_title h2 {
  padding-bottom: 8px;
}


html[data-theme=light] .program_partner_work.ctrader_benefits p {
  color: #6B757E;
}

.CPA_reward_structure_section {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 110px 0;
  position: relative;
}

.CPA_reward_structure_section h3 {
  font-weight: 600;
  padding-bottom: 4px;
}

.CPA_reward_structure_section p {
  color: var(--DarkGray);
  padding: 16px 0;
  line-height: 1.77;
}

.greater_incom_section {
  background-color: transparent;
  position: relative;
  z-index: 1;
  padding: 110px 0;
}

.greater_incom_section .section_title {
  padding-bottom: 70px;
  text-align: center;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.page_hero.trading_hero .page_heroBg {
  opacity: 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
}

.page_hero.trading_hero .button_radius_wrap {
  margin-top: 30px;
}

.facts_sectionWrap {
  position: relative;
  padding-bottom: 102px;
}

/* .facts_sectionWrap:after {
  content: '';
  display: block;
  width: 978px;
  height: 978px;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 150px;
  border-radius: 50%;
  background: rgba(92, 109, 218, 0.12);
  filter: blur(125px);
} */

.facts_section {
  display: flex; align-items: center;
  flex-wrap: wrap;
  gap: 48px;
}

.facts_section .facts_sectionLeft {width: 29%;}
.facts_section .facts_sectionLeft .ott_well {padding: 43px 40px;}
.facts_section .facts_sectionLeft .button_radius {display: block;}
.facts_section .facts_sectionMain {
  padding: 0; width: calc(71% - 48px);
}

.ott_well {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 43px;
}

.ott_well h2 {font-size: 70px; font-weight: 600; line-height: 1.18; padding-bottom: 20px;}
.factsLogo {padding-top: 17px;}
.factsLogo .factLogo2{display: none;}
.factsLogo+h2 {padding-bottom: 22px; margin-top: -20px;}

.ott_well .radius_check_list li {
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.ott_well .radius_check_list li+li:before {
  content: '';
  display: block;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  width: calc(100% + 80px);
  position: absolute;
  left: -40px;
  top: 0;
}

.ott_well .radius_check_list {
  padding-bottom: 53px;
}

.ott_well .button_radius {
  margin-bottom: 4px;
}

.facts_sectionMainImg {
  padding-left: 26px;
}
.ctrader_androidPage .facts_sectionMainImg{padding-left: 0; padding-bottom: 25px;}


.ctrader-web_factsImg {
  padding-bottom: 62px;
  padding-top: 30px;
}

.facts_sectionMainImg.ctrader-web_factsImg span:after {
  bottom: 0;
}

.facts_sectionMainImg span {
  display: inline-block;
  position: relative;
}
.facts_sectionMainImg span span.factsImgGlow{
  display: block;
  /* content: ''; */
  position: absolute;
  bottom: 20px;
  z-index: -1;
  width: 100%;
  height: 51px;
  border-radius: 370px;
  background: #000;
  filter: blur(50px);
}

.facts_section p {
  font-size: 18px;
  line-height: 1.833;
  padding: 16px 0;
  color: var(--DarkGray);
}

.ctrader-iosFactImg {
  padding-bottom: 20px;
}

html[data-theme=light] .facts_sectionWrap:after {
  opacity: 1;
}

html[data-theme=light] .factsLogo>img:nth-child(1) {
  display: none;
}

html[data-theme=dark] .factsLogo>img:nth-child(2) {
  display: none;
}

html[data-theme=light] .facts_sectionMainImg span:after {
  opacity: 0.15;
  height: 100%;
  background: linear-gradient(146deg, #D600A6 0%, #00BEFF 100%);
  filter: blur(55px);
}

html[data-theme=light] .ott_well {
  background-color: rgba(0, 0, 0, 0.03);
}

html[data-theme=light] .ctraderBG .facts_sectionWrap .ott_well {
  background-color: rgba(0, 0, 0, 0.03);
}

html[data-theme=light] .ott_well .radius_check_list li+li:before {
  background-color: rgba(0, 0, 0, 0.05);
}

html[data-theme=light] .facts_section p,
html[data-theme=light] .ctrader_fair_transparent p {
  color: var(--light-base-color);
}

html[data-theme=light] .ctrader_fair_transparent .ott_well p {
  color: var(--black);
}

.trade_with_the_best_section {
  background-color: rgba(255, 255, 255, 0.02);
  padding: 120px 0 60px 0;
  position: relative;
}

.trade_with_the_best_section:before {
  content: '';
  border-radius: 1076px;
  background: rgba(214, 0, 166, 0.07);
  filter: blur(150px);
  width: 470px;
  height: 918px;
  position: absolute;
  display: block;
  top: -550px;
}

.trade_with_the_best_section:after {
  content: '';
  border-radius: 50%;
  background: #E9F7FF;
  ;
  filter: blur(125px);
  width: 532px;
  height: 532px;
  position: absolute;
  display: block;
  bottom: -270px;
  left: calc(50% - 260px);
  opacity: 0;
}

.trade_with_the_best_section .section_title {
  margin-bottom: 65px;
}

.trade_with_the_best_section .button_radius_wrap {
  margin-top: 59px;
}

html[data-theme=light] .trade_with_the_best_section:after {
  opacity: 0;
}

html[data-theme=light] .trade_with_the_best_section {
  background: rgba(0, 0, 0, 0.02);
}

html[data-theme=light] .trade_with_the_best_section:before {
  background: rgba(111, 93, 210, 0.20);
  filter: blur(100px);
  opacity: .6;
}

.trade_with_the_best_section .grid .grid_item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.00) 100%);
  padding: 48px 25px 40px 25px;
}

.trade_with_the_best_section .grid .grid_item .grid_icon {
  min-height: 90px;
  width: auto;
  margin-bottom: 28px;
  display: inline-block;
}

.trade_with_the_best_section .grid .grid_item h3 {
  padding-bottom: 4px;
}

.ctrader-android-serious-trader {
  padding: 110px 0;
  position: relative;
}

.ctrader-android-serious-trader:before {
  content: '';
  border-radius: 1076px;
  background: rgba(214, 0, 166, 0.07);
  filter: blur(150px);
  width: 470px;
  height: 508px;
  position: absolute;
  display: block;
  top: -100px;
}

.ctrader-android-serious-trader .section_title {
  padding-bottom: 70px;
  position: relative;
}

.ctrader-android-serious-trader .section_title h2 {
  padding-bottom: 18px;
}

.ctrader-android-serious-trader .section_title h5 {
  padding-bottom: 16px;
}

.ctrader-android-serious-trader .section_title p {
  font-size: 18px;
}

.ctrader-android-serious-trader .section_title:after {
  content: '';
  border-radius: 50%;
  background: rgba(0, 67, 198, 0.15);
  filter: blur(125px);
  width: 549px;
  height: 553px;
  position: absolute;
  right: 0;
  display: block;
  top: -250px;
  opacity: 0;
}

.tutorial_video_item .video_details{display: block !important;}

html[data-theme=light] .ctrader-android-serious-trader .section_title:after {
  opacity: 1;
}

html[data-theme=light] .ctrader-android-serious-trader:before {
  top: 320px;
  width: 234px;
  height: 420px;
  border-radius: 0 100% 100% 0/0 50% 50% 0;
  background: rgba(111, 93, 210, 0.40);
}

html[data-theme=light] .ctrader-android-serious-trader .section_title p {
  color: #6B757E;
}

span.glow {
  display: inline-block;
  position: relative;
}

span.glow span {
  position: absolute;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background: linear-gradient(96deg, #D600A6 -7.69%, #00BEFF 100.88%);
  filter: blur(68px);
}

.About_cTrader {
  padding: 115px 0;
  background-color: rgba(255, 255, 255, 0.02);
  position: relative;
}

.About_cTrader .ott_row {
  gap: 90px;
}

.About_cTrader .ott_row .ott_col-5 {
  width: 465px;
}

.About_cTrader .ott_row .ott_col-7 {
  width: 610px;
}

.About_cTrader p {
  color: var(--DarkGray);
}

.About_cTrader .section_title h2 {
  padding-bottom: 10px;
}

.ctrader_fair_transparent {
  background-color: rgba(255, 255, 255, 0.02);
  padding: 120px 0 74px 0;
  position: relative;
}

.ctrader_fair_transparent:before {
  content: '';
  border-radius: 1076px;
  background: rgba(0, 190, 255, 0.07);
  filter: blur(150px);
  width: 610px;
  height: 1076px;
  position: absolute;
  display: block;
  top: 0;
}

.ctrader_fair_transparent .ott_row {
  gap: 90px
}

.ctrader_fair_transparent .ott_row .ott_col-9 {
  width: 800px;
}

.ctrader_fair_transparent .section_title h2 {
  padding-bottom: 15px;
}

.ctrader_fair_transparent p {
  font-size: 18px;
  line-height: 1.66;
}

.ctrader_fair_transparent .ott_well {
  padding: 32px 35px 30px 35px;
  margin-bottom: 20px;
}

.ctrader_fair_transparent .ott_well h3 {
  font-weight: 600;
}

.ctrader_fair_transparent .ott_well p {
  font-size: 12px;
  font-weight: 300;
}

.ctrader_fair_transparent .ott_well p a {
  color: inherit;
}

.ctrader_fair_transparent .line_separator {
  margin: 72px 0 78px 0;
  position: relative;
}

.ctrader_fair_transparent .line_separator:after {
  content: '';
  border-radius: 50%;
  background: rgba(111, 93, 210, 0.25);
  filter: blur(100px);
  width: 440px;
  height: 440px;
  position: absolute;
  display: block;
  right: 100px;
  top: -280px;
  opacity: 0;
}

html[data-theme=light] .ctrader_fair_transparent .line_separator:after {
  opacity: 1;
}

.ctrader_scalping_hedging_allowed {
  padding: 110px 0;
  position: relative;
}

.ctrader_scalping_hedging_allowed:before {
  content: '';
  background: rgba(214, 0, 166, 0.07);
  right: 0;
  top: 100px;
  width: 600px;
  height: 918px;
  border-radius: 100% 0 0 100%/50% 0 0 50%;
  z-index: 1;
  filter: blur(100px);
  position: absolute;
}

.ctrader_scalping_hedging_allowed .ott_row {
  gap: 60px;
}

.ctrader_scalping_hedging_allowed .ott_row .ott_col-6 {
  display: flex;
}

.ctrader_scalping_hedging_allowed .box_radius h3 {
  padding-bottom: 18px;
}

.ctrader_automatically_protect {
  padding-top: 120px;
}

.ctrader_automatically_protect .ott_row {
  align-items: center;
  flex-wrap: wrap;
  gap: 10px
}

.ctrader_automatically_protect .ott_row .ott_col-5 {width: 47%;}

.ctrader_automatically_protect .ott_row .ott_col-7 {width: calc(53% - 10px);}

.ctrader_automatically_protect .section_title h2 {
  padding-bottom: 8px;
}

.ctrader_automatically_protect p {
  font-weight: 400;
  font-size: 16px;
  color: var(--DarkGray);
  line-height: 1.87;
}

.ctrader_automatically_protect p+p {
  padding-top: 20px;
}

.ctraderWebBG .trade_with_the_best_section:before {
  background: rgba(0, 190, 255, 0.07);
  top: 75px;
  height: 1076px;
}

.ctraderWebBG .About_cTrader:before {
  content: '';
  border-radius: 0 100% 100% 0/0 50% 50% 0;
  background: rgba(214, 0, 166, 0.07);
  filter: blur(125px);
  width: 432px;
  height: 918px;
  position: absolute;
  left: 0;
  display: block;
  top: -240px;
}

.ctraderWebBG .ctrader-android-serious-trader:before {
  right: 0;
  top: -300px;
  width: 700px;
  height: 918px;
  border-radius: 100% 0 0 100%/50% 0 0 50%;
}

.ctraderWebBG+.full_bg_with_text_center+footer:after {
  content: '';
  border-radius: 0 100% 100% 0/0 50% 50% 0;
  background: rgba(0, 190, 255, 0.07);
  filter: blur(125px); width: 435px; height: 638px;
  position: absolute; right: 0; bottom: 0; display: block;
  top: 140px;}

.faqWrap{position: relative; z-index: 2;}

html[data-theme=light] .ctraderBG .ott_well {
  background-color: var(--white);
}

html[data-theme=light] .ctrader_scalping_hedging_allowed:before {
  background: rgba(0, 67, 198, 0.30);
  opacity: 0.4;
}

html[data-theme=light] .ctrader_scalping_hedging_allowed p {color: #6B757E;}

@media(min-width: 768px) {
  .About_cTrader p {font-size: 16px;}
  .About_cTrader .radius_check_list {font-size: 20px;}
  .account_type_section .section_title h3 {font-size: 40px; line-height: 1.25; padding-top: 2px; padding-bottom: 30px;}

.we_are_here_section .section_title h3 {font-size: 40px; padding-bottom: 19px; line-height: 1.25;}
.full_bg_with_text_center.partnerFulbg {padding-bottom: 0;}

.partner_type_section .box_radius.box_radius_content {padding: 60px 60px 40px 60px;}
.partner_type_section .button_radius_wrap {margin-top: 20px;}
.why_partner_us_section .grid .grid_item .grid_icon {min-height: 90px; margin-bottom: 15px;}
.who_we_are_section .button_radius_wrap{margin-top: 30px;}
.ctrader_fair_transparent .ott_well h3 {font-size: 20px;}
.partner_type_section .section_title h2 {padding-bottom: 26px;}
.partner_type_section .box_radius_content p{padding: 12px 0;}
.page_hero.pp_hero .section_title h1 {white-space: nowrap;}
.inner_content_wrap.programPageBg .bg_dotted_pattern{margin-top: 91px;}

.CPA_reward_structure_section .caption_btn {position: absolute; right: 0; top: calc(50% - 35px);}
.introducing-broker_boxes .button_radius_wrap {margin-top: 20px;}

.trading_section .grid .grid_item p {font-size: 14px;}
.trade_index_section .grid .grid_item h3 {font-size: 22px;}
.trade_with_the_best_section .grid .grid_item p {font-size: 14px;}

.program_partner_work.ctrader_benefits p {font-size: 15px;}

.programPageBg .grid2 .grid2_item {padding: 27px 26px 26px 26px;}
}

/*Fooer*/
footer {
  font-family: 'Poppins', sans-serif;
  color: var(--DarkGray);
  background-color: #12131d;
  position: relative;
}
footer>.container:first-child{z-index: 3;}

footer h5 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.63;
  color: var(--white);
  padding-bottom: 20px;
}

footer p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.63;
}

footer p strong {
  color: var(--white);
  font-weight: 500;
}

.foot_row {
  display: flex;
  justify-content: space-between;
  padding-top: 52px;
  padding-bottom: 48px;
  border-top: 1px solid rgba(225, 225, 225, 0.1);
}

.foot_links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.foot_links li a {
  color: var(--DarkGray);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.63;
}

.foot_links li a:hover {
  color: var(--white);
}

.footer_detail {
  border-top: 1px solid rgba(225, 225, 225, 0.1);
  padding-top: 52px;
  padding-bottom: 48px;
}

.copyright {
  border-top: 1px solid rgba(225, 225, 225, 0.1);
  gap:20px;
  padding-top: 52px;
  padding-bottom: 29px;
  display: flex;
  justify-content: space-between;
}

ul.copyrightNav {
  display: flex;
  list-style: none;
  gap: 30px;
}

ul.copyrightNav li+li:before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 14px;
  ;
  border-left: 1px solid var(--DarkGray);
  opacity: .35;
  padding-left: 32px;
}

ul.copyrightNav li a {
  color: var(--DarkGray);
  text-decoration: none;
  display: inline-block;
  line-height: 1.5;
  font-size: 16px;
}

ul.copyrightNav li a:hover {
  color: var(--white);
}

@media(min-width: 1281px) {
  footer .container {
    max-width: 1280px;
  }

  footer .navWrap {
    padding-bottom: 12px;
    padding-top: 31px;
    padding-left: 55px;
    padding-right: 55px;
  }

  footer .navWrap .logo {
    margin-left: -6px;
  }

  .foot_row {
    padding-left: 50px;
    padding-right: 50px;
  }

  .footer_detail {
    padding-left: 50px;
    padding-right: 50px;
  }

  .copyright {
    padding-left: 50px;
    padding-right: 50px;
  }
}


.accordionWrap .radius_check_list{padding-left: 0; list-style-type: none; padding-top: 3px;}
.accordionWrap .radius_check_list li a{color: #ffffff; text-decoration: none;}


/*Light Theme footer*/
html[data-theme=light] footer {
  color: var(--light-base-color);
  background-color: var(--white);
}

html[data-theme=light] footer .navWrap nav a {
  color: var(--black);
}

html[data-theme=light] footer ul.credentialNav li a svg path {
  fill: var(--black);
}

html[data-theme=light] footer .switch_slider {
  background-color: var(--black);
}

html[data-theme=light] footer h5,
html[data-theme=light] footer p strong {
  color: var(--black);
}

html[data-theme=light] .footer_detail,
html[data-theme=light] .copyright,
html[data-theme=light] .foot_row {
  border-top-color: #0000001A;
}

html[data-theme=light] .foot_links li a {
  color: var(--light-base-color);
}

html[data-theme=light] .foot_links li a:hover {
  color: var(--black);
}

html[data-theme=light] ul.copyrightNav li a {
  color: var(--light-base-color);
}

html[data-theme=light] ul.copyrightNav li a:hover {
  color: var(--black);
}

/*End Footer*/


/*lang*/
/* .gtranslate_wrapper .gt_float_switcher .gt-selected{background-color:transparent !important ;} */
.gtranslate_MngWrap{position: relative;}
.gtranslate_Mng{position: absolute; min-width: 120px; margin-top: -12px;}

.gtranslate_MngWrap .gt_float_switcher .gt_options{max-width: 100% !important;}
.gtranslate_MngWrap .gt_float_switcher .gt-selected .gt-current-lang{padding: 8px 10px !important;}
.gtranslate_MngWrap .gt_float_switcher{font-size: 12px !important;}