@charset "utf-8";
@media only screen and (max-width: 1023px) {}

@media only screen and (min-width: 1024px) {}

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

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

@font-face {
  font-family: 'Mulish';
  src: url('../fonts/subset-Mulish-SemiBold.woff2') format('woff2'), url('../fonts/subset-Mulish-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: 'Mulish';
  src: url('../fonts/subset-Mulish-ExtraBold.woff2') format('woff2'), url('../fonts/subset-Mulish-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mulish';
  src: url('../fonts/subset-Mulish-Black.woff2') format('woff2'), url('../fonts/subset-Mulish-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

.broker {
  font-size: 1.111111vw;
  --font: Mulish, -apple-system, "Open Sans", system-ui, "sans-serif";
  --white: #fff;
  --white0: rgba(255, 255, 255, 0);
  --white10: rgba(255, 255, 255, 0.1);
  --white50: rgba(255, 255, 255, 0.5);
  --white05: rgba(255, 255, 255, 0.05);
  --white06: rgba(255, 255, 255, 0.06);
  --black: #040307;
  --black0: #04030700;
  --dark: #0D0D11;
  --dark2: #1A1A1A;
  --dark3: #110E1B;
  --dark30: #1E1E2900;
  --dark330: #1E1E294D;
  --dark340: #1E1E2966;
  --bg-dark: #12101A;
  --gradient: linear-gradient(135deg, #E571FF 0%, #FF8937 100%);
  --gradient2: linear-gradient(38.61deg, #FCC4ED 0%, #FEA471 48.21%, #FF627E 100%);
  --light-dark: #1D1B26;
  --light-dark2: #1C1A24;
  --light-dark2-hover: #262430;
  --dark-gray: #484554;
  --gray: #676573;
  --gray2: #A29DBA;
  --gray3: #89859D;
  --gray250: #A29DBA80;
  --dark-gray: #37363E;
  --green: #1ACC81;
  --side: 20px;
  --side2: 20px;
  --vertical: 120px;
  --header: 60px;
}

@media only screen and (min-width: 1024px) {
  .broker {
    --header: 80px;
    --vertical: 180px;
  }
}

@media only screen and (min-width: 1223px) {
  .broker {
    --side: calc((100vw - 1183px) / 2);
  }
}

@media only screen and (min-width: 1320px) {
  .broker {
    --side2: calc((100vw - 1280px) / 2);
  }
}

.broker,
.broker_body {
  height: 100%;
  box-sizing: border-box;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
  scroll-behavior: smooth;
}

.broker_body {
  margin: 0;
  padding: 0;
  background: var(--black);
  font: 500 16px/1.5 var(--font);
  color: var(--gray);
  -webkit-text-size-adjust: none;
  display: flex;
  flex-direction: column;
}

.broker,
.broker *,
.broker *:before,
.broker *:after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.broker form,
.broker fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.broker input::-ms-clear {
  display: none;
}

.broker button::-moz-focus-inner {
  border: 0;
}

.broker textarea {
  resize: none;
}

.broker video {
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

.broker img,
.broker svg,
.broker picture {
  border: 0;
  outline: none;
  vertical-align: top;
}

.broker svg {
  fill: currentColor;
}

.broker a {
  outline: none;
  cursor: pointer;
  color: inherit;
}

.broker_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none !important;
  cursor: pointer;
  user-select: none;
  position: relative;
  backface-visibility: hidden;
  font: 600 14px/1.45 var(--font);
  padding: 0 15px;
  border: 0;
  outline: none;
  flex: 0 0 auto;
  max-width: 100%;
  -webkit-appearance: none;
  border-radius: 10px;
  height: 40px;
  min-width: 40px;
  transition-property: transform, opacity, color, background;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}

.broker_btn>* {
  position: relative;
}

.broker_btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: inherit;
  backface-visibility: hidden;
  transition: opacity 0.4s ease;
  background: var(--gradient);
  opacity: 0;
}

.broker_btn-simple {
  background: none;
  color: var(--white) !important;
}

.broker_btn-white {
  color: var(--dark) !important;
  background-color: var(--white);
}

.broker_btn-gray {
  color: var(--white);
  background-color: var(--light-dark);
}

@media (pointer:fine) {
  .broker_btn:hover {
    color: var(--white) !important;
  }

  .broker_btn:hover:before {
    opacity: 1;
  }
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.swiper-slide {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  width: 100%;
}

.broker_title {
  color: var(--white);
  margin: 0 0 10px 0;
}

@media only screen and (max-width: 1023px) {
  .broker_title {
    font-weight: 800;
    font-size: 40px;
    line-height: 50px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_title {
    font-weight: bold;
    font-size: 46px;
    line-height: 1.1;
  }
}

.broker_mainwrap {
  flex: 0 0 auto;
  width: 100%;
  min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 1024px) {
  .broker_mainwrap:before {
    content: '';
    position: absolute;
    pointer-events: none;
    width: 1400px;
    height: 1400px;
    top: 0;
    left: 50%;
    margin: -700px 0 0 -1290px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #B991E7 0%, #B991E700 50%);
    opacity: 0.25;
  }
}

.broker_header {
  flex: 0 0 auto;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 var(--side2);
  height: var(--header);
}

.broker_header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--black);
  transition: opacity 0.4s ease;
  opacity: 0;
}

.broker.broker_scrolled .broker_header:before {
  opacity: 1;
}

.broker_header>* {
  position: relative;
}

.broker_header-logo {
  flex: 0 0 auto;
}

.broker_header-logo img {
  height: 25px;
  width: auto;
}

.broker_header-dropdown {
  flex: 0 0 auto;
  position: relative;
  user-select: none;
}

@media only screen and (max-width: 579px) {
  .broker_header-dropdown {
    display: none;
  }
}

.broker_header-dropdown .broker_trigger:after {
  content: '';
  flex: 0 0 auto;
  background: url("../img/icons/chevron-down.svg") no-repeat 50% 50%/contain;
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease;
  transform: rotate(0deg);
  backface-visibility: hidden;
}

@media only screen and (min-width: 1024px) {
  .broker_header-dropdown .broker_trigger {
    background-color: var(--white10);
  }
}

.broker_header-dropdown.broker_open .broker_trigger:before {
  opacity: 1;
}

.broker_header-dropdown.broker_open .broker_trigger:after {
  transform: rotate(180deg);
}

.broker_header-dropdown .broker_popup,
.broker_header-dropdown .broker_popup li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.broker_header-dropdown .broker_popup {
  position: absolute;
  top: 100%;
  left: 0;
  width: 324px;
  background: var(--light-dark);
  border-radius: 20px;
  padding: 17px 10px;
  box-shadow: 0px 6px 22px rgba(93, 98, 109, 0.1);
  color: #A29DBA;
  margin-top: 10px;
  backface-visibility: hidden;
  transition-property: transform, opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  transform: translate3d(0, 0, 0);
  z-index: 20;
}

.broker_header-dropdown:not(.broker_open) .broker_popup {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 10px, 0);
}

.broker_header-dropdown li>* {
  display: block;
  position: relative;
  text-decoration: none !important;
  font: 600 14px/20px var(--font);
  color: var(--white50);
  transition: color 0.4s ease;
  padding: 15px 15px 15px 65px;
}

.broker_header-dropdown .broker_img {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, -50%, 0);
}

.broker_header-dropdown .broker_small {
  display: block;
  font-size: 12px;
  line-height: 17px;
  transition: color 0.4s ease;
  color: var(--gray250);
}

@media (pointer:fine) {
  .broker_header-dropdown li>a:hover {
    color: var(--white);
  }

  .broker_header-dropdown li>a:hover .broker_small {
    color: var(--gray2);
  }
}

.broker_header-dropdown li>*.broker_active {
  color: var(--white);
}

.broker_header-dropdown li>*.broker_active .broker_small {
  color: var(--gray2);
}

.broker_header-menu ul,
.broker_header-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media only screen and (min-width: 1024px) {
  .broker_toggle-menu {
    display: none;
  }

  .broker_header-menu {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    padding: 0 0 0 25px;
  }

  .broker_header-menu .broker_links {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px 30px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.45;
    color: var(--gray3);
    padding-right: 15px;
  }

  .broker_header-menu .broker_links a {
    text-decoration: none !important;
    transition: color 0.4s ease;
    color: var(--gray3);
  }

  @media (pointer:fine) {
    .broker_header-menu .broker_links a:hover {
      color: var(--white);
    }
  }

  .broker_header-menu .broker_links .broker_active {
    color: var(--white);
    cursor: default;
  }

  .broker_header-menu .broker_lang {
    user-select: none;
    flex: 0 0 auto;
    position: relative;
  }

  .broker_header-menu .broker_lang .broker_trigger {
    padding: 0;
    width: 40px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4;
  }

  .broker_header-menu .broker_lang.broker_open .broker_trigger:before {
    opacity: 1;
  }

  .broker_header-menu .broker_lang .broker_popup {
    display: grid;
    grid-template-columns: repeat(2, 130px);
    gap: 5px;
    position: absolute;
    z-index: 10;
    top: 100%;
    right: 0;
    padding: 10px;
    background: var(--light-dark);
    box-shadow: 0px 6px 22px rgba(93, 98, 109, 0.1);
    border-radius: 14px;
    margin-top: 10px;
    backface-visibility: hidden;
    transition-property: transform, opacity;
    transition-duration: 0.4s;
    transition-timing-function: ease;
    transform: translate3d(0, 0, 0);
  }

  .broker_header-menu .broker_lang:not(.broker_open) .broker_popup {
    pointer-events: none;
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }

  .broker_header-menu .broker_lang .broker_popup li>* {
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    color: var(--white);
    padding: 10px;
    border-radius: 10px;
    transition: background 0.4s ease;
  }

  @media (pointer:fine) {
    .broker_header-menu .broker_lang .broker_popup li>a:hover {
      background-color: var(--white10);
    }
  }

  .broker_header-menu .broker_lang .broker_popup li>.broker_active {
    background: var(--gradient);
  }

  .broker_header-menu .broker_btns {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 40px;
    position: relative;
  }

  .broker_header-menu .broker_btns:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    width: 1px;
    height: 15px;
    background: var(--dark-gray);
    transform: translate3d(-50%, -50%, 0);
  }

  .broker_header-menu .broker_only-mobile {
    display: none;
  }

  .broker_header-menu .broker_follow {
    display: none;
  }
}

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

  .broker_header-logo,
  .broker_header-dropdown,
  .broker_toggle-menu {
    z-index: 10;
  }

  .broker_toggle-menu>* {
    position: static;
  }

  .broker_toggle-menu>*:before,
  .broker_toggle-menu>*:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    border-radius: 1px;
    background: var(--white);
    transition: transform 0.4s ease;
  }

  .broker_toggle-menu>*:before {
    transform: translate3d(-50%, calc(-50% - 4px), 0);
  }

  .broker_toggle-menu>*:after {
    transform: translate3d(-50%, calc(-50% + 4px), 0);
  }

  .broker:has(.broker_header-menu.broker_open) {
    overflow: hidden;
  }

  .broker:has(.broker_header-menu.broker_open) .broker_toggle-menu:before {
    opacity: 1;
  }

  .broker:has(.broker_header-menu.broker_open) .broker_toggle-menu>*:before {
    transform: translate3d(-50%, -50%, 0) rotate(-135deg);
  }

  .broker:has(.broker_header-menu.broker_open) .broker_toggle-menu>*:after {
    transform: translate3d(-50%, -50%, 0) rotate(135deg);
  }

  .broker_header-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    background: var(--black);
    z-index: 9;
    padding: 0 var(--side) 40px var(--side);
    display: flex;
    flex-direction: column;
    gap: 30px;
    backface-visibility: hidden;
    transition: opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
  }

  .broker:has(.broker_header-menu.broker_open) .broker_header-menu {
    opacity: 1;
    pointer-events: all;
  }

  .broker_header-menu:before {
    content: '';
    display: block;
    position: sticky;
    top: 0;
    height: var(--header);
    background: var(--black);
    z-index: 20;
    flex: 0 0 auto;
    width: 100%;
    order: 1;
    margin-bottom: -10px;
  }

  .broker_header-menu>* {
    order: 3;
  }

  .broker_header-menu .broker_btns {
    order: 2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .broker_header-menu .broker_btns>* {
    flex: 1 1 auto;
  }

  .broker_header-menu .broker_btns .broker_btn {
    height: 55px;
    font-weight: bold;
    font-size: 16px;
    min-width: 300px;
  }

  .broker_header-menu .broker_btns .broker_btn-simple {
    background-color: var(--dark2);
  }

  .broker_header-menu .broker_links {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--white);
  }

  .broker_header-menu .broker_links a {
    transition: color 0.4s ease;
    text-decoration: none !important;
    color: var(--gray2);
  }

  @media (pointer:fine) {
    .broker_header-menu .broker_links a:hover {
      color: var(--white);
    }
  }

  .broker_header-menu .broker_links .broker_active {
    color: var(--white);
  }

  .broker_header-menu .broker_links .broker_only-mobile {
    margin-top: 10px;
  }

  .broker_header-menu .broker_lang .broker_trigger {
    display: none;
  }

  .broker_header-menu .broker_lang .broker_popup {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 30px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.45;
    color: var(--white);
  }

  .broker_header-menu .broker_lang .broker_popup a {
    transition: color 0.4s ease;
    text-decoration: none !important;
    color: var(--gray2);
  }

  @media (pointer:fine) {
    .broker_header-menu .broker_lang .broker_popup a:hover {
      color: var(--white);
    }
  }

  .broker_header-menu .broker_lang .broker_popup .broker_active {
    color: var(--white);
  }

  .broker_header-menu .broker_follow {
    color: var(--gray2);
  }

  .broker_header-menu .broker_follow .broker_title-mini {
    margin: 0 0 10px 0;
  }
}

.broker_follow {
  text-align: left;
}

.broker_follow .broker_title-mini {
  font: 600 12px/1 var(--font);
  text-transform: uppercase;
  margin: 0 0 10px 0;
  letter-spacing: 5%;
  color: inherit;
}

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

.broker_follow ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.broker_follow .broker_btn {
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 14px;
}

.broker_footer {
  flex: 0 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 100%);
  gap: 40px;
  padding: calc(160px - var(--vertical)) var(--side2) 40px var(--side2);
  color: var(--gray3);
}

.broker_footer-logo {
  margin-right: auto;
}

.broker_footer-logo img {
  vertical-align: top;
  height: 35px;
  width: auto;
}

.broker_footer .broker_follow .broker_title-mini {
  margin: 0 0 20px 0;
}

.broker_footer-menu {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.45;
}

.broker_footer-menu a,
.broker_footer-bottom a {
  display: inline-block;
  vertical-align: top;
  color: var(--white);
  text-decoration: none;
}

@media (pointer:fine) {

  .broker_footer-menu a,
  .broker_footer-bottom a {
    background: var(--gradient);
    transition: color 0.4s ease;
    text-decoration: none !important;
    -webkit-background-clip: text;
    background-clip: text;
  }

  .broker_footer-menu a:hover,
  .broker_footer-bottom a:hover {
    color: transparent;
  }
}

.broker_footer-menu ul,
.broker_footer-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.broker_footer-menu>ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.broker_footer-menu>ul>li {
  flex: 0 0 auto;
  max-width: 100%;
}

.broker_footer-menu>ul>li>ul {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(1, 100%);
}

.broker_footer-menu>ul>li:first-child>ul {
  grid-template-columns: 163px 1fr;
}

.broker_footer-menu>ul>li>ul>li {
  flex: 0 0 auto;
  width: 100%;
}

.broker_footer-menu .broker_title-mini,
.broker_footer .broker_follow .broker_title-mini {
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 5%;
  text-transform: uppercase;
  margin: 0 0 30px 0;
  color: var(--gray3);
}

.broker_footer-bottom {
  border-top: 1px solid var(--white10);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
}

.broker_footer-bottom ul,
.broker_footer-bottom li {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 1023px) {
  .broker_footer-bottom {
    margin-top: 30px;
    padding-top: 30px;
  }

  .broker_footer-bottom .broker_loss {
    color: var(--white);
    font-weight: bold;
    font-size: 16px;
    line-height: 1.45;
  }

  .broker_footer-bottom .broker_copy {
    font-weight: 500;
    font-size: 10px;
    line-height: 1.4;
    margin-top: 10px;
  }

  .broker_footer-bottom .broker_links {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_footer {
    grid-template-columns: 1fr auto;
    gap: 60px;
  }

  .broker_footer-logo {
    grid-column: 1/-1;
    order: 1;
  }

  .broker_footer-menu {
    order: 2;
  }

  .broker_footer-menu>ul:after {
    content: '';
  }

  .broker_footer .broker_follow {
    order: 3;
  }

  .broker_footer-bottom {
    order: 4;
    grid-column: 1/-1;
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    padding-top: 40px;
  }

  .broker_footer-bottom>*:nth-child(1) {
    flex: 1;
  }

  .broker_footer-bottom>*:nth-child(2) {
    flex: 0 0 auto;
    max-width: 33.333%;
    text-align: center;
  }

  .broker_footer-bottom>*:nth-child(3) {
    flex: 1;
    text-align: right;
  }
}

.broker_content {
  position: relative;
  flex: 1 0 auto;
  width: 100%;
  padding-bottom: var(--vertical);
}

.broker_hero {
  padding: 0 var(--side);
  text-align: center;
  margin-bottom: calc(var(--vertical) * -1);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
}

.broker_hero .broker_action {
  background: var(--dark3);
  border: 1px solid var(--white10);
  border-radius: 100px;
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  text-decoration: none !important;
}

.broker_hero .broker_action .broker_grad {
  display: inline-block;
  vertical-align: top;
  background: var(--gradient2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.broker_hero .broker_action .broker_grad span {
  color: var(--white);
}

.broker_hero .broker_action .broker_btn {
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  height: 28px;
  border-radius: 14px;
  padding: 0 10px;
  gap: 4px;
  margin: 0 -10px 0 0;
}

.broker_hero .broker_action .broker_btn:after {
  content: '';
  flex: 0 0 auto;
  position: relative;
  width: 16px;
  height: 16px;
  background: url("../img/icons/chevron-right.svg") no-repeat 50% 50%/contain;
  margin: 0 -6px 0 0;
}

.broker_hero .broker_title {
  margin-left: auto;
  margin-right: auto;
}

.broker_hero .broker_title._shortened {
  max-width: 11em;
}

.broker_hero .broker_exch ul,
.broker_hero .broker_exch li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.broker_hero .broker_exch img {
  display: block;
  height: 24px;
  width: auto;
}

.broker_hero .broker_exch {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  flex: 0 0 auto;
  max-width: 100%;
}

.broker_hero .broker_exch>* {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.broker_hero .broker_exch ul {
  display: flex;
  align-items: center;
  gap: 9px;
}

.broker_hero .broker_exch .broker_soon {
  color: var(--dark-gray);
  flex-direction: row-reverse;
}

.broker_hero .broker_exch .broker_soon ul {
  padding: 6px;
  position: relative;
}

.broker_hero .broker_exch .broker_soon ul:before,
.broker_hero .broker_exch .broker_soon ul:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  border: 1px solid var(--dark-gray);
  max-width: 40%;
  width: 30px;
  border-radius: 10px;
}

.broker_hero .broker_exch .broker_soon ul:before {
  left: 0;
  border-right-width: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.broker_hero .broker_exch .broker_soon ul:after {
  right: 0;
  border-left-width: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.broker_hero .broker_exch .broker_soon img {
  filter: grayscale(100%);
}

.broker_hero .broker_exch {
  display: none;
}

.broker_hero .broker_features-list,
.broker_hero .broker_features-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.broker_hero .broker_features-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--white);
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
}

.broker_hero .broker_features-list li {
  flex: 0 0 auto;
  position: relative;
  padding: 7px 7px 7px 37px;
  background: var(--white06);
  border: 1px solid var(--white06);
  border-radius: 12px;
}

.broker_hero .broker_features-list img {
  height: 24px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}

.broker_hero .broker_text+.broker_btn {
  display: inline-flex;
  vertical-align: top;
  width: auto;
  margin-top: 20px;
}

.broker_hero .broker_stat,
.broker_hero .broker_stat li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.broker_hero .broker_stat {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.broker_hero .broker_stat strong {
  display: block;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.2;
  margin: -0.1em 0 calc(5px - 0.1em) 0;
  background: linear-gradient(137.39deg, #FFFFFF 40.03%, #9A9AA2 104.08%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.broker_hero .broker_stat li {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.broker_hero .broker_stat li>* {
  display: block;
  backface-visibility: hidden;
  transition-property: transform, opacity;
  transition-duration: 0.8s, 0.4s;
  transition-timing-function: ease;
  transform: translate3d(0, 0, 0);
}

.broker_hero .broker_stat li:nth-child(1)>*:nth-child(1) {
  transition-delay: 0s;
}

.broker_hero .broker_stat li:nth-child(1)>*:nth-child(2) {
  transition-delay: 0.1s;
}

.broker_hero .broker_stat li:nth-child(2)>*:nth-child(1) {
  transition-delay: 0.2s;
}

.broker_hero .broker_stat li:nth-child(2)>*:nth-child(2) {
  transition-delay: 0.3s;
}

.broker_hero .broker_stat li:nth-child(3)>*:nth-child(1) {
  transition-delay: 0.4s;
}

.broker_hero .broker_stat li:nth-child(3)>*:nth-child(2) {
  transition-delay: 0.5s;
}

.broker_hero .broker_stat li:nth-child(4)>*:nth-child(1) {
  transition-delay: 0.6s;
}

.broker_hero .broker_stat li:nth-child(4)>*:nth-child(2) {
  transition-delay: 0.7s;
}

.broker_hero .broker_image {
  position: relative;
  margin: 50px auto 0 auto;
  border-radius: 30px;
  max-width: 1100px;
  width: 100%;
  background: var(--bg-dark);
  padding: 10px;
}

.broker_hero .broker_image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

@media only screen and (max-width: 479px) {
  .broker_hero .broker_image {
    border-radius: 10px;
    padding: 4px;
  }

  .broker_hero .broker_image img {
    border-radius: 6px;
  }
}

.broker_hero .broker_image:before,
.broker_hero .broker_image:after {
  content: '';
  z-index: 1;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}

.broker_hero .broker_image:before {
  border: 1px solid #FFFFFF1F;
  border-radius: inherit;
  top: 0;
}

.broker_hero .broker_image:after {
  height: 43%;
  background: linear-gradient(to bottom, var(--black0) 0%, var(--black) 100%);
}

@media only screen and (max-width: 1023px) {
  .broker_hero {
    padding-top: calc(var(--header) + 30px);
    font-weight: 600;
    font-size: 17px;
    line-height: 25px;
    margin-bottom: calc(60px - var(--vertical));
  }

  .broker_hero .broker_action {
    margin-bottom: 10px;
    font-size: 14px;
    padding: 7px 12px;
  }

  .broker_hero .broker_action .broker_btn {
    display: none;
  }

  .broker_hero .broker_text {
    margin-bottom: 10px;
  }

  .broker_hero .broker_features-list {
    gap: 6px;
    margin: 10px 0;
  }

  .broker_hero .broker_text+.broker_btn {
    min-width: 270px;
  }

  .broker_hero .broker_stat {
    margin-top: 40px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_hero {
    padding-top: calc(var(--header) + 60px);
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
  }

  .broker_hero .broker_wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 0 0 auto;
    width: 100%;
    text-align: left;
  }

  .broker_hero .broker_wrap-text {
    flex: 1 1 auto;
    margin-right: auto;
  }

  .broker_hero .broker_action {
    margin-bottom: 16px;
    font-size: 16px;
    padding: 7px 19px;
  }

  .broker_hero .broker_title {
    font-weight: bold;
    font-size: 64px;
    line-height: 1;
    margin-bottom: 16px;
    max-width: 12em;
    text-wrap: balance;
  }

  .broker_hero .broker_features-list {
    gap: 18px 0;
    margin: 8px 0;
    overflow: hidden;
    margin-right: -18px;
  }

  .broker_hero .broker_wrap .broker_title {
    margin-left: 0;
  }

  .broker_hero .broker_wrap .broker_features-list {
    margin-left: 0;
    justify-content: flex-start;
  }

  .broker_hero .broker_features-list li {
    margin-right: 18px;
  }

  .broker_hero .broker_wrap .broker_features-list li:before {
    content: ',';
    position: absolute;
    top: 0;
    left: -18px;
    width: 18px;
    text-align: center;
    color: var(--gray);
    margin-top: 8px;
    font-weight: bold;
  }

  .broker_hero .broker_text+.broker_btn {
    min-width: 200px;
  }

  .broker_hero .broker_stat {
    flex: 0 0 auto;
    text-align: right;
    overflow: hidden;
  }

  .broker_hero:not(.broker_ready) .broker_stat li>* {
    pointer-events: none;
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.broker_feature {
  padding: var(--vertical) var(--side) 0 var(--side);
  font-weight: 600;
  font-size: 17px;
  line-height: 25px;
}

.broker_feature .broker_head .broker_btn {
  display: inline-flex;
  vertical-align: top;
  min-width: 129px;
}

.broker_feature .broker_title {
  font-weight: 800;
  margin: 0;
}

.broker_feature .broker_title img {
  display: block;
  width: auto;
}

.broker_feature .broker_text strong {
  font-weight: inherit;
  color: var(--white);
}

@media only screen and (max-width: 1023px) {
  .broker_feature {
    --vertical: 80px;
  }

  .broker_feature .broker_head {
    margin-bottom: 24px;
  }

  .broker_feature .broker_title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 6px;
  }

  .broker_feature .broker_title img {
    height: 40px;
    margin-bottom: 20px;
  }

  .broker_feature .broker_head .broker_btn {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_feature {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .broker_feature+.broker_feature {
    padding-top: var(--vertical);
  }

  .broker_feature:has(.broker_app-image) {
    margin-top: 40px;
  }

  .broker_feature .broker_head {
    flex: 0 0 auto;
    width: 379px;
    max-width: 336px;
    margin-top: 20px;
  }

  .broker_feature .broker_rest {
    flex: 0 0 auto;
    width: calc(100% - 379px);
  }

  .broker_feature .broker_title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 10px;
  }

  .broker_feature .broker_title img {
    height: 50px;
    margin-bottom: 30px;
  }

  .broker_feature .broker_head .broker_btn {
    margin-top: 24px;
  }
}

.broker_terminal-slides {
  position: relative;
  border-radius: 20px;
  backface-visibility: hidden;
  overflow: hidden;
  transform: translateZ(0);
}

@media only screen and (max-width: 479px) {
  .broker_terminal-slides {
    border-radius: 8px;
  }
}

.broker_terminal-slides:after {
  content: '';
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  border: 1px solid transparent;
  background: linear-gradient(to bottom, var(--white10) 0%, var(--white0) 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  border-radius: inherit;
}

.broker_terminal-slides img {
  width: 100%;
  height: auto;
  display: block;
}

.broker_terminal-slides-nav {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
}

.broker_terminal-slides-nav .broker_link {
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  gap: 5px;
  position: relative;
  color: var(--white);
  cursor: pointer;
  user-select: none;
  text-decoration: none !important;
}

.broker_terminal-slides-nav .broker_link:before,
.broker_terminal-slides-nav .broker_link:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  border-radius: 1px;
  background: var(--white);
}

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

  .broker_terminal-slides-nav .broker_link:before,
  .broker_terminal-slides-nav .broker_link:after {
    display: none;
  }
}

.broker_terminal-slides-nav .broker_link:before {
  opacity: 0.2;
}

.broker_terminal-slides-nav .broker_link:after {
  transition: transform 0.2s ease;
  transform: scale(0, 1);
  transform-origin: 0 50%;
}

.broker_terminal-slides-nav .broker_link.broker_active:after {
  transition-duration: 4.8s;
  transition-timing-function: linear;
  transform: scale(1);
}

.broker_terminal-slides-nav .broker_link img {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  max-width: 16px;
  max-height: 16px;
}

@media only screen and (max-width: 1023px) {
  .broker_terminal-slides-nav {
    margin-top: 10px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_terminal-slides-nav {
    margin-top: 18px;
    text-align: center;
  }
}

.broker_journal-slides .swiper-slide {
  height: auto !important;
  display: flex;
  flex-direction: column;
}

.broker_journal-slides .swiper-slide>* {
  flex: 1 0 auto;
  width: 100%;
}

.broker_journal-slides .broker_bg {
  position: relative;
  background: var(--dark340);
  backface-visibility: hidden;
  overflow: hidden;
  transform: translateZ(0);
  border-radius: 25px;
}

.broker_journal-slides .broker_bg:after {
  content: '';
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  border: 1px solid transparent;
  background: linear-gradient(to bottom, var(--white10) 0%, var(--white0) 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  border-radius: inherit;
}

.broker_journal-slides .broker_bg img {
  display: block;
  width: 100%;
  height: auto;
}

.broker_journal-slides .broker_bg .broker_text {
  font-weight: 600;
  color: var(--white);
  position: relative;
  font-size: 14.5px;
  line-height: 21px;
  margin: -45px 0 0 0;
  padding: 0 24px 24px 24px;
}

@media only screen and (max-width: 1023px) {
  .broker_journal-slides {
    width: auto !important;
    margin: 0 calc(var(--side) * -1) !important;
    padding: 0 calc(var(--side) - 10px) !important;
  }

  .broker_journal-slides .swiper-slide {
    width: calc(100% - 20px);
    padding: 0 10px;
    max-width: 355px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_journal-slides .swiper-wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (min-width: 1180px) {
  .broker_journal-slides .broker_bg {
    border-radius: 30px;
  }

  .broker_journal-slides .broker_bg .broker_text {
    font-size: 17px;
    line-height: 25px;
    margin: -55px 0 0 0;
    padding: 0 30px 30px 37px;
  }
}

.broker_risk-image {
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: 0px 13.303px 16.6287px rgba(0, 0, 0, 0.25);
  background: var(--dark330) url("../img/risk-manager/bg.webp") no-repeat 50% 50%/cover;
  border-radius: 20px;
  z-index: 1;
  padding-top: 30px;
}

.broker_risk-image:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 27%;
  background: linear-gradient(180deg, rgba(14, 13, 19, 0) 0%, #0C0B11 100%);
  z-index: 3;
}

.broker_risk-image:after {
  content: '';
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  border: 1px solid transparent;
  background: linear-gradient(to bottom, var(--white10) 0%, var(--white0) 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  border-radius: inherit;
}

.broker_risk-image img {
  width: 62.19%;
  position: relative;
  margin: 0 auto;
  z-index: 1;
  display: block;
  border: 1px solid var(--white05);
  border-radius: 30px 30px 0 0;
  box-shadow: 57.5582px 90.7648px 59.034px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 479px) {
  .broker_risk-image {
    border-radius: 12px;
  }

  .broker_risk-image img {
    border-radius: 15px;
  }
}

.broker_app-image img {
  display: block;
  margin: 0 auto;
  position: relative;
  height: auto;
  filter: drop-shadow(0px 0px 159.107px #000000);
}

@media only screen and (max-width: 1023px) {
  .broker_app-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 350/225;
    background: var(--dark330);
    border-radius: 20px;
    box-shadow: 0px 8.3061px 10.3826px rgba(0, 0, 0, 0.25);
  }

  @media only screen and (max-width: 479px) {
    .broker_app-image {
      border-radius: 12px;
    }
  }

  .broker_app-image:after {
    content: '';
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 5;
    border: 1px solid transparent;
    background: linear-gradient(to bottom, var(--white10) 0%, var(--white0) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    border-radius: inherit;
  }

  .broker_app-image img {
    width: 48.44%;
    transform: translate3d(0, 10%, 0);
  }
}

@media only screen and (min-width: 1024px) {
  .broker_app-image {
    position: relative;
  }

  .broker_app-image:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    margin: -2px 0;
    background: linear-gradient(to right, var(--white0) 0%, var(--white) 50%, var(--white0) 100%);
  }

  .broker_app-image img {
    width: 33.3%;
  }
}

.broker_security {
  position: relative;
  padding: var(--vertical) var(--side) 0 var(--side);
  overflow: hidden;
}

.broker_security:before,
.broker_security:after {
  content: '';
  position: absolute;
  pointer-events: none;
  top: calc((100% - var(--vertical)) / 2 + var(--vertical));
  width: 1200px;
  height: 900px;
  max-height: 100%;
  background: radial-gradient(ellipse at center, #0085FF 0%, #0085FF00 50%);
  opacity: 0.2;
  transform: translate3d(-50%, -50%, 0);
}

.broker_security .broker_image {
  display: block;
  height: auto;
  filter: drop-shadow(0px 20.2532px 253.165px rgba(16, 40, 99, 1));
}

.broker_security .broker_list,
.broker_security .broker_list li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.broker_security .broker_list {
  font-weight: 600;
  font-size: 17px;
  line-height: 25px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px 24px;
}

.broker_security .broker_list li {
  padding-left: 34px;
  position: relative;
  flex: 0 0 auto;
  max-width: 100%;
}

.broker_security .broker_list li img {
  position: absolute;
  top: 2px;
  left: 0;
  height: 21px;
  width: auto;
}

.broker_security .broker_list li.broker_li-support {
  margin-right: auto;
  background: var(--green) url("../img/icons/support.svg") no-repeat 14px 50%/auto 21px;
  padding: 10px 20px 10px 48px;
  border-radius: 50px;
  margin-top: 28px;
}

.broker_security .broker_list .broker_gray {
  color: var(--gray);
}

@media only screen and (max-width: 1023px) {
  .broker_security {
    font-size: 14px;
    line-height: 20px;
  }

  .broker_security:before {
    left: -547px;
  }

  .broker_security:after {
    left: calc(100% + 227px);
    margin-top: -100px;
  }

  .broker_security .broker_image {
    width: 100%;
    max-width: 230px;
    margin: -45px 0 -8px -28px;
  }

  .broker_security .broker_list {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_security {
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 58px;
    margin-bottom: 58px;
  }

  @media only screen and (min-width: 1089px) {
    .broker_security {
      --side: calc((100vw - 1049px) / 2);
    }
  }

  .broker_security:before {
    left: -123px;
  }

  .broker_security:after {
    left: calc(100% + 123px);
  }

  .broker_security .broker_image {
    flex: 0 0 auto;
    width: calc(100% - 462px);
    max-width: 474px;
    margin: -120px -40px;
    position: relative;
    top: -15px;
  }

  .broker_security .broker_descr {
    flex: 0 0 auto;
    width: 462px;
  }

  .broker_security .broker_list {
    margin-top: 40px;
  }
}

.broker_solutions {
  padding: var(--vertical) var(--side) 0 var(--side);
}

.broker_solutions .swiper-slide {
  height: auto !important;
  display: flex;
  flex-direction: column;
}

.broker_solutions .broker_bg {
  flex: 1 0 auto;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  position: relative;
  border-radius: 30px;
  background: radial-gradient(50.08% 107.81% at 0% 0%, rgba(185, 145, 231, 0.05) 0%, rgba(185, 145, 231, 0) 100%)
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */
    , var(--dark330);
}

.broker_solutions .broker_bg:after {
  content: '';
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid transparent;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  border-radius: inherit;
}

.broker_solutions .swiper-slide:nth-child(3n - 2) .broker_bg:after {
  background: linear-gradient(to bottom, var(--white10) 0%, var(--white0) 100%) border-box;
}

.broker_solutions .swiper-slide:nth-child(3n - 1) .broker_bg:after {
  background: linear-gradient(to bottom, var(--white0) 0%, var(--white10) 50%, var(--white0) 100%) border-box;
}

.broker_solutions .swiper-slide:nth-child(3n) .broker_bg:after {
  background: linear-gradient(to bottom, var(--white0) 0%, var(--white10) 100%) border-box;
}

.broker_solutions .broker_bg.broker_soon {
  background: none;
}

.broker_solutions .broker_bg.broker_soon:after {
  -webkit-mask: none;
  mask: none;
  border: 1px solid var(--white10);
  background: none !important;
}

.broker_solutions .broker_bg img {
  position: absolute;
  height: 26px;
  width: auto;
}

.broker_solutions .broker_bg .broker_title-small {
  color: var(--white);
  margin: 0 0 10px 0;
}

.broker_solutions .broker_bg .broker_label-soon {
  display: inline-block;
  vertical-align: middle;
  margin: -3px -10px -3px 0;
  position: relative;
  top: -1px;
  left: 7px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  padding: 4px 12px 6px 12px;
  background: var(--white10);
  border-radius: 20px;
  color: var(--white);
}

@media only screen and (max-width: 1023px) {
  .broker_solutions .broker_head {
    margin: 0 0 24px 0;
    font-size: 14px;
    line-height: 20px;
  }

  .broker_solutions .broker_head .broker_btn {
    display: none;
  }

  .broker_solutions-slides {
    width: auto !important;
    margin: 0 calc(var(--side) * -1) !important;
    padding: 0 calc(var(--side) - 10px) !important;
  }

  .broker_solutions-slides .swiper-slide {
    width: calc(100% - 20px);
    padding: 0 10px;
    max-width: 353px;
  }

  /*remove if slider*/
  .broker_solutions-slides .swiper-wrapper {
    flex-wrap: wrap;
    gap: 20px 0;
  }

  .broker_solutions-slides .swiper-slide {
    width: 50%;
    max-width: none;
  }

  @media only screen and (max-width: 739px) {
    .broker_solutions-slides .swiper-slide {
      width: 100%;
    }
  }

  /*end remove if slider*/
  .broker_solutions .broker_bg {
    padding: 123px 24px 30px 24px;
  }

  .broker_solutions .broker_bg img {
    top: 30px;
    left: 24px;
  }

  .broker_solutions .broker_bg .broker_title-small {
    font-size: 17px;
    line-height: 25px;
    font-weight: 600;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_solutions .broker_head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin: 0 0 50px 0;
  }

  .broker_solutions .broker_head .broker_btn {
    min-width: 183px;
  }

  .broker_solutions-slides {
    width: auto !important;
    margin: 0 calc(var(--side2) - var(--side)) !important;
  }

  .broker_solutions-slides .swiper-wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  }

  .broker_solutions .broker_bg {
    padding: 102px 30px 30px 30px;
  }

  .broker_solutions .broker_bg img {
    top: 35px;
    left: 34px;
  }

  .broker_solutions .broker_bg .broker_title-small {
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
  }
}

.broker_solutions .broker_look {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--light-dark2) url("../img/icons/image-gradient.svg") no-repeat 6px 50%/auto 20px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.45;
  padding: 6px 31px;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  transition: background 0.4s ease;
}

.broker_solutions .broker_look:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 16px;
  background: url("../img/icons/chevron-right.svg") no-repeat 50% 50%/contain;
  margin: -8px 0;
  transition: opacity 0.4s ease;
  opacity: 0.35;
}

@media (pointer:fine) {
  .broker_solutions .broker_look:hover {
    background-color: var(--light-dark2-hover);
  }

  .broker_solutions .broker_look:hover:after {
    opacity: 1;
  }
}

.broker_solutions .broker_look span {
  display: inline-block;
  vertical-align: top;
  background: var(--gradient2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.broker_solutions-gallery {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.4s ease;
}

.broker_solutions-gallery:not(.broker_open) {
  opacity: 0;
}

.broker_solutions-gallery:not(.broker_open),
.broker_solutions-gallery:not(.broker_open) * {
  pointer-events: none !important;
}

.broker_solutions-gallery .broker_fader {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--black);
  opacity: 0.8;
  cursor: zoom-out;
}

.broker_solutions-gallery .swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.broker_solutions-gallery .swiper-wrapper {
  height: 100% !important;
  pointer-events: none;
}

.broker_solutions-gallery .swiper-slide {
  height: auto !important;
  width: 100% !important;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  padding: 65px var(--side);
}

.broker_solutions-gallery .broker_descr {
  flex: 0 0 auto;
  width: 100%;
  margin: 0 auto;
  max-width: 390px;
  pointer-events: auto;
  height: 75px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--gray);
}

.broker_solutions-gallery .broker_descr .broker_title-small {
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  color: var(--white);
  margin: 0 0 5px 0;
}

@media only screen and (max-width: 1023px) {
  .broker_solutions-gallery .broker_descr .broker_title-small {
    font-size: 17px;
    line-height: 25px;
    font-weight: 600;
  }
}

.broker_solutions-gallery .broker_image {
  position: relative;
  flex: 1 0 auto;
  width: 100%;
}

.broker_solutions-gallery .broker_image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 30px;
  border: 10px solid var(--bg-dark);
  outline: 1px solid #FFFFFF1F;
  outline-offset: -1px;
  pointer-events: auto;
}

@media only screen and (max-width: 479px) {
  .broker_solutions-gallery .broker_image img {
    border-radius: 10px;
    border-width: 4px;
  }
}

.broker_solutions-gallery-prev,
.broker_solutions-gallery-next {
  position: absolute;
  z-index: 5;
  pointer-events: auto;
  top: 65px;
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 15px;
}

.broker_solutions-gallery-prev.swiper-button-disabled,
.broker_solutions-gallery-next.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.broker_solutions-gallery-prev:after,
.broker_solutions-gallery-next:after {
  content: '';
  flex: 0 0 auto;
  background: url("../img/icons/chevron-right.svg") no-repeat 50% 50%/contain;
  width: 20px;
  height: 20px;
  position: relative;
}

.broker_solutions-gallery-prev:after {
  transform: scale(-1, 1);
}

.broker_solutions-gallery-prev {
  left: calc(50% - 265px);
}

.broker_solutions-gallery-next {
  left: calc(50% + 215px);
}

@media only screen and (max-width: 570px) {
  .broker_solutions-gallery .broker_descr {
    padding: 0 60px;
    max-width: none;
  }

  .broker_solutions-gallery-prev {
    left: var(--side);
  }

  .broker_solutions-gallery-next {
    left: auto;
    right: var(--side);
  }
}

.broker_start {
  padding: var(--vertical) var(--side) 0 var(--side);
}

.broker_start-slides {
  font-size: 14px;
  line-height: 20px;
  counter-reset: st;
}

.broker_start-slides .broker_title-small {
  color: var(--white);
  margin: 0 0 8px 0;
}

.broker_start-slides .broker_title-small:before {
  content: counter(st)'. ';
  counter-increment: st;
  margin-right: 0.3em;
}

.broker_start-slides img {
  display: block;
  width: auto;
  margin: 0 0 20px 0;
}

@media only screen and (max-width: 1023px) {
  .broker_start .broker_head {
    margin: 0 0 30px 0;
  }

  .broker_start-slides {
    width: auto !important;
    margin: 0 calc(var(--side) * -1) !important;
    padding: 0 calc(var(--side) - 20px) !important;
  }

  .broker_start-slides .swiper-slide {
    width: auto;
    padding: 0 20px;
    max-width: 100%;
  }

  /*remove if slider*/
  .broker_start-slides .swiper-wrapper {
    flex-wrap: wrap;
    gap: 40px 0;
  }

  .broker_start-slides .swiper-slide {
    width: 50%;
  }

  @media only screen and (max-width: 639px) {
    .broker_start-slides .swiper-slide {
      width: 100%;
    }
  }

  /*end remove if slider*/
  .broker_start-slides img {
    height: 70px;
  }

  .broker_start-slides .broker_title-small {
    font-weight: 600;
    font-size: 17px;
    line-height: 25px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_start {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .broker_start .broker_head {
    margin: 0 0 50px 0;
  }

  .broker_start-slides {
    width: auto !important;
    margin: 0 calc(var(--side) * -1) !important;
    padding: 0 calc(var(--side) - 25px) !important;
  }

  .broker_start-slides .swiper-slide {
    width: 25%;
    padding: 0 25px;
    max-width: 302px;
  }

  .broker_start-slides img {
    height: 120px;
  }

  .broker_start-slides .broker_title-small {
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
  }
}

.broker_community {
  padding: var(--vertical) var(--side) 0 var(--side);
}

.broker_community .broker_review {
  flex: 1 0 auto;
  width: 100%;
  border: 1px solid var(--white10);
  border-radius: 30px;
  font: 500 14px/20px var(--font);
  display: block;
  padding: 31px;
  margin: 0;
  color: var(--gray);
}

.broker_community .broker_review .broker_top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px 0;
}

.broker_community .broker_review .broker_avatar {
  flex: 0 0 auto;
  background: var(--white10);
  border-radius: 10px;
  width: 30px;
  height: 30px;
}

.broker_community .broker_review .broker_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.broker_community .broker_review .broker_name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--white);
}

.broker_community .broker_review .broker_from {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.broker_community .broker_review .broker_from img {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  max-width: 16px;
  max-height: 16px;
}

.broker_community-slides {
  width: auto !important;
  margin: 20px calc(var(--side) * -1) 0 calc(var(--side) * -1) !important;
  padding: 0 10px !important;
}

.broker_community-slides .swiper-wrapper {
  transition-timing-function: linear !important;
}

.broker_community-slides .swiper-slide {
  width: auto;
  display: flex;
  flex-direction: column;
  height: auto !important;
  padding: 0 10px;
  max-width: calc(100% - 20px);
}

@media only screen and (max-width: 1023px) {
  .broker_community .broker_head {
    margin: 0 0 30px 0;
  }

  .broker_community .broker_head .broker_follow {
    margin: 15px 0 0 0;
  }

  .broker_community-slides .swiper-slide {
    width: 320px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_community .broker_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin: 0 0 50px 0;
  }

  .broker_community .broker_head .broker_follow {
    flex: 0 0 auto;
  }

  .broker_community-slides .swiper-slide {
    width: 434px;
  }
}

.broker_profits {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: var(--gray2);
  position: relative;
  padding: var(--vertical) var(--side);
  overflow: hidden;
  margin-bottom: calc(var(--vertical) * -1);
}

.broker_profits:before {
  content: '';
  position: absolute;
  pointer-events: none;
  top: 50%;
  left: 50%;
  width: 1200px;
  height: 900px;
  background: radial-gradient(ellipse at center, #909FEE 0%, #0085FF00 50%);
  opacity: 0.15;
  transform: translate3d(-50%, -50%, 0);
}

.broker_profits:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, var(--black) 0%, var(--black0) calc(var(--vertical) / 2), var(--black0) calc(100% - var(--vertical) / 2), var(--black) 100%);
}

.broker_profits>* {
  position: relative;
}

.broker_profits .broker_title {
  margin-left: auto;
  margin-right: auto;
  max-width: 14.65em;
}

.broker_profits .broker_btn {
  display: inline-flex;
  vertical-align: top;
  min-width: 183px;
}

@media only screen and (max-width: 1023px) {
  .broker_profits {
    --vertical: 137px;
  }

  .broker_profits .broker_title {
    font-size: 30px;
    line-height: 40px;
  }

  .broker_profits .broker_btn {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_profits {
    --vertical: 197px;
    background: url("../img/profits/bg.svg") no-repeat calc(50% - 10px) calc(50% - 20px)/auto 338px;
  }

  .broker_profits .broker_title {
    font-size: 56px;
  }

  .broker_profits .broker_btn {
    margin-top: 40px;
  }
}

.broker_faq {
  padding: var(--vertical) var(--side) 0 var(--side);
  position: relative;
}

.broker_faq .broker_title:last-child {
  margin-bottom: 0;
}

.broker_faq .broker_list {
  font-weight: 600;
  line-height: 1.4;
}

.broker_faq .broker_list,
.broker_faq .broker_title-small,
.broker_faq .broker_text {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.broker_faq .broker_title-small {
  cursor: pointer;
  user-select: none;
  color: var(--white);
  font: inherit;
  gap: 10px;
  display: flex;
  align-items: center;
}

.broker_faq .broker_title-small:not(:first-child) {
  margin-top: 25px;
}

.broker_faq .broker_title-small .broker_btn {
  align-self: flex-start;
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  margin-left: auto;
}

.broker_faq .broker_title-small .broker_btn:after {
  content: '';
  flex: 0 0 auto;
  background: url("../img/icons/chevron-down.svg") no-repeat 50% 50%/contain;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.4s ease;
  transform: rotate(0deg);
}

@media (pointer:fine) {
  .broker_faq .broker_title-small:hover .broker_btn:before {
    opacity: 1;
  }
}

.broker_faq .broker_title-small.broker_open .broker_btn:before {
  opacity: 1;
}

.broker_faq .broker_title-small.broker_open .broker_btn:after {
  transform: rotate(180deg);
}

.broker_faq .broker_text {
  color: var(--gray2);
  --height: 0;
  transition-property: height, opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  height: 0;
  opacity: 0;
  overflow: hidden;
  backface-visibility: hidden;
}

.broker_faq .broker_title-small.broker_open+.broker_text {
  height: var(--height);
  opacity: 1;
}

.broker_faq .broker_text p,
.broker_faq .broker_text ul,
.broker_faq .broker_text ol {
  margin: 1.4em 0;
  padding: 0;
}

.broker_faq .broker_text ul,
.broker_faq .broker_text ol,
.broker_faq .broker_text li {
  list-style: none;
  padding: 0;
}

.broker_faq .broker_text p+ol,
.broker_faq .broker_text p+ul {
  margin-top: -1.4em;
}

.broker_faq .broker_text>*>*:first-child {
  margin-top: 0;
}

.broker_faq .broker_text>*>*:last-child {
  margin-bottom: 0;
}

.broker_faq .broker_text li {
  margin: 0;
  padding-left: 1.5em;
}

.broker_faq .broker_text li:before {
  display: inline-block;
  vertical-align: top;
  min-width: 1.5em;
  margin-left: -1.5em;
  text-align: center;
}

.broker_faq .broker_text ul>li:before {
  content: '•';
}

.broker_faq .broker_text ol {
  counter-reset: ol;
}

.broker_faq .broker_text ol>li:before {
  content: counter(ol)'.';
  counter-increment: ol;
}

.broker_faq .broker_text>* {
  padding: 10px 0 0 0;
}

.broker_faq .broker_table table {
  border-collapse: collapse;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  text-align: inherit;
  outline: none;
}

.broker_faq .broker_table th,
.broker_faq .broker_table td {
  border: 0;
  text-align: left;
  vertical-align: middle;
  height: 48px;
  font: inherit;
  color: inherit;
}

.broker_faq .broker_table th:first-child,
.broker_faq .broker_table td:first-child {
  padding-left: 15px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.broker_faq .broker_table th:last-child,
.broker_faq .broker_table td:last-child {
  padding-right: 15px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.broker_faq .broker_table th,
.broker_faq .broker_table tr:nth-child(even) td {
  background: var(--bg-dark);
}

.broker_faq .broker_table .broker_center {
  text-align: center;
}

.broker_faq .broker_table .broker_right {
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .broker_faq .broker_table .broker_hide-mob {
    display: none;
  }
}

.broker_faq .broker_text a:not(.broker_btn) {
  text-decoration: none !important;
  color: var(--white);
}

@media (pointer:fine) {
  .broker_faq .broker_text a:not(.broker_btn) {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    transition: color 0.4s ease;
  }

  .broker_faq .broker_text a:not(.broker_btn):hover {
    color: transparent;
  }
}

.broker_faq .broker_text .broker_white {
  color: var(--white);
}

@media only screen and (max-width: 1023px) {
  .broker_faq .broker_head {
    margin: 0 0 24px 0;
  }

  .broker_faq .broker_title br {
    display: none;
  }

  .broker_faq .broker_list {
    font-size: 17px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_faq {
    display: flex;
    align-items: flex-start;
    margin-top: 30px;
  }

  .broker_faq .broker_head {
    flex: 0 0 auto;
    width: 415px;
    padding-right: 40px;
  }

  .broker_faq .broker_list {
    flex: 0 0 auto;
    width: calc(100% - 415px);
    font-size: 20px;
  }
}

.broker_anchor {
  display: block;
  position: relative;
  top: calc(var(--header) * -1 - 40px);
}

.broker_app-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.broker_app-link {
  position: relative;
  flex: 0 0 auto;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  background: var(--white);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  color: var(--gray);
  padding: 13px 13px 11px 52px;
  border-radius: 15px;
  min-width: 152px;
}

.broker_app-link img {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.broker_app-link .broker_big {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: var(--black);
  margin-top: 1px;
}

.broker_page-about {
  padding: 0 var(--side);
  position: relative;
}

.broker_page-about+.broker_faq {
  margin-top: 0;
}

@media only screen and (max-width: 1023px) {
  .broker_page-about {
    --vertical: 80px;
  }

  .broker_page-about {
    padding-top: calc(var(--header) + 40px);
  }
}

@media only screen and (min-width: 1024px) {
  .broker_page-about {
    --vertical: 120px;
  }

  .broker_page-about {
    padding-top: calc(var(--header) + 60px);
  }
}

.broker_page-about .broker_page-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 5%, #000 95%, rgba(0, 0, 0, 0) 100%);
}

.broker_page-about .broker_page-bg>* {
  position: absolute;
  pointer-events: none;
  width: 1400px;
  height: 1400px;
  background: radial-gradient(ellipse at center, #B991E7 0%, #B991E700 50%);
  transform: translate3d(-50%, -50%, 0);
  opacity: 0.1;
}

.broker_page-about .broker_page-bg-traders-journal .broker_pos1 {
  top: 25%;
  left: 50%;
  opacity: 0.15;
}

.broker_page-about .broker_page-bg-traders-journal .broker_pos2 {
  top: 43%;
  left: 75%;
}

.broker_page-about .broker_page-bg-traders-journal .broker_pos3 {
  top: 87%;
  left: 50%;
}

.broker_page-about .broker_page-bg-risk-manager .broker_pos1 {
  top: 66%;
  left: 75%;
}

.broker_page-about .broker_page-bg-risk-manager .broker_pos2 {
  top: 87%;
  left: 50%;
}

.broker_page-about .broker_page-bg-risk-manager:after {
  content: '';
  position: absolute;
  pointer-events: none;
  top: 87%;
  left: 50%;
  width: 1100px;
  height: 1100px;
  background: radial-gradient(ellipse at center, #B991E7 0%, #B991E700 50%);
  transform: translate3d(-50%, -50%, 0);
  opacity: 0.1;
}

.broker_page-about .broker_title {
  margin-top: var(--vertical);
  margin-bottom: 10px;
  display: inline-block;
  vertical-align: top;
}

.broker_page-about .broker_title.broker_h1 {
  font-weight: 600;
  line-height: 1;
  margin-top: 0;
}

@media only screen and (max-width: 479px) {
  .broker_page-about .broker_title.broker_h1 br {
    display: none;
  }
}

.broker_page-about .broker_title.broker_h2 {
  margin-top: 60px;
  font-weight: 800;
}

.broker_page-about .broker_title.broker_grad,
.broker_page-about .broker_title .broker_grad {
  background: var(--gradient2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.broker_page-about .broker_title .broker_grad {
  display: inline-block;
  vertical-align: top;
  padding: 0.2em 0;
  margin: -0.2em 0;
}

.broker_page-about .broker_title.broker_grad span,
.broker_page-about .broker_title .broker_grad span {
  color: var(--white);
}

@media only screen and (max-width: 1023px) {
  .broker_page-about .broker_title {
    font-size: 32px;
  }

  .broker_page-about .broker_title.broker_h1 {
    line-height: 1;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_page-about .broker_title {
    font-size: 46px;
    line-height: 1.1;
  }

  .broker_page-about .broker_title.broker_h1 {
    margin-bottom: 15px;
    font-size: 64px;
  }

  .broker_page-about .broker_title.broker_h2 {
    font-size: 40px;
    line-height: 50px;
  }
}

.broker_page-about .broker_link-back {
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  border: 1px solid var(--white10);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.3;
  color: var(--white);
  position: relative;
  padding: 12px 16px 12px 50px;
  background: var(--dark3);
  border-radius: 100px;
}

@media only screen and (max-width: 1023px) {
  .broker_page-about .broker_link-back {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_page-about .broker_link-back {
    margin-bottom: 15px;
  }
}

.broker_page-about .broker_link-back .broker_arrow {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: 8px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--light-dark2-hover);
}

.broker_page-about .broker_link-back .broker_arrow:before,
.broker_page-about .broker_link-back .broker_arrow:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
}

.broker_page-about .broker_link-back .broker_arrow:before {
  backface-visibility: hidden;
  transition: opacity 0.4s ease;
  background: var(--gradient);
  opacity: 0;
}

@media (pointer:fine) {
  .broker_page-about .broker_link-back:hover .broker_arrow:before {
    opacity: 1;
  }
}

.broker_page-about .broker_link-back .broker_arrow:after {
  background: url("../img/icons/chevron-left.svg") no-repeat 50% 50%/16px auto;
}

@media only screen and (max-width: 1023px) {
  .broker_page-about .broker_top-descr {
    font-weight: 600;
    font-size: 17px;
    line-height: 25px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_page-about .broker_top-descr {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
  }
}

.broker_page-about .broker_capabilities,
.broker_page-about .broker_capabilities li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.broker_page-about .broker_capabilities {
  font-weight: 600;
  font-size: 17px;
  line-height: 25px;
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 15px 0;
  margin-top: 20px;
}

.broker_page-about .broker_capabilities+.broker_h2 {
  margin-top: var(--vertical);
}

.broker_page-about .broker_capabilities li {
  position: relative;
  padding-left: 34px;
  flex: 0 0 auto;
  max-width: 100%;
  width: 100%;
}

@media only screen and (min-width: 1024px) {
  .broker_page-about .broker_capabilities:has(li:nth-child(3)) li {
    width: auto;
  }

  .broker_page-about .broker_capabilities:has(li:nth-child(3)) li:not(:last-child):after {
    content: '/';
    display: inline-block;
    vertical-align: top;
    width: 40px;
    text-align: center;
    font-weight: 600;
    color: var(--gray);
  }
}

.broker_page-about .broker_capabilities img {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0.5px;
  left: 0;
  object-fit: contain;
  object-position: center;
}

.broker_page-about .broker_wide-image {
  background: var(--bg-dark);
  display: block;
  border-radius: 30px;
  border: 1px solid #FFFFFF1F;
  padding: 10px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

@media only screen and (max-width: 1023px) {
  .broker_page-about .broker_wide-image {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_page-about .broker_wide-image {
    margin-top: 60px;
  }
}

.broker_page-about .broker_wide-image.broker_with-gradient:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 43%;
  background: linear-gradient(to bottom, var(--black0) 0%, var(--black) 100%);
  margin: -2px;
}

.broker_page-about .broker_wide-image img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

@media only screen and (max-width: 479px) {
  .broker_page-about .broker_wide-image {
    border-radius: 10px;
    padding: 3px;
  }

  .broker_page-about .broker_wide-image img {
    border-radius: 7px;
  }
}

.broker_page-about .broker_screens-slider-thumbs {
  font-weight: 600;
  font-size: 17px;
  line-height: 25px;
  margin: 20px calc(var(--side) * -1) 30px calc(var(--side) * -1);
  padding: 0 calc(var(--side) - var(--gap) / 2);
}

@media only screen and (max-width: 479px) {
  .broker_page-about .broker_screens-slider-thumbs {
    --gap: 14px;
  }
}

@media only screen and (min-width: 480px) {
  .broker_page-about .broker_screens-slider-thumbs {
    --gap: 40px;
  }

  .broker_page-about .broker_screens-slider-thumbs .swiper-slide:not(:last-child):after {
    content: '/';
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    width: var(--gap);
    text-align: center;
    font-weight: bold;
    color: var(--gray);
    transform: translate3d(50%, 0, 0);
  }
}

.broker_page-about .broker_screens-slider-thumbs .swiper-slide {
  width: auto;
  padding: 0 calc(var(--gap) / 2) 6px calc(var(--gap) / 2 + 29px);
  cursor: pointer;
  position: relative;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.4s ease;
}

.broker_page-about .broker_screens-slider-thumbs .swiper-slide.swiper-slide-thumb-active {
  color: var(--white);
}

.broker_page-about .broker_screens-slider-thumbs .swiper-slide .line:before,
.broker_page-about .broker_screens-slider-thumbs .swiper-slide .line:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  bottom: 0;
  background: var(--white);
  margin: 0 calc(var(--gap) / 2);
}

.broker_page-about .broker_screens-slider-thumbs .swiper-slide .line:before {
  opacity: 0.2;
}

.broker_page-about .broker_screens-slider-thumbs .swiper-slide .line:after {
  transition: transform 0.2s ease;
  transform: scale(0, 1);
  transform-origin: 0 50%;
}

.broker_page-about .broker_screens-slider-thumbs .swiper-slide.swiper-slide-thumb-active .line:after {
  transition-duration: 4.8s;
  transition-timing-function: linear;
  transform: scale(1);
}

.broker_page-about .broker_screens-slider-thumbs img {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0.5px;
  left: calc(var(--gap) / 2);
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

.broker_page-about .broker_screens-slider-thumbs .swiper-slide.swiper-slide-thumb-active img {
  opacity: 1;
}

.broker_page-about .broker_screens-slider {
  margin: 0 calc(var(--side) * -1);
  overflow: hidden;
}

@media only screen and (max-width: 1023px) {
  .broker_page-about .broker_screens-slider {
    --gap: 12px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_page-about .broker_screens-slider {
    --gap: 30px;
  }
}

.broker_page-about .broker_screens-slider .swiper {
  width: calc(100% - var(--side) * 2 + var(--gap));
  margin: 0 auto;
  max-width: calc(1100px + var(--gap));
  overflow: visible !important;
}

.broker_page-about .broker_screens-slider .swiper-slide {
  padding: 0 calc(var(--gap) / 2);
  width: 100%;
}

.broker_page-about .broker_screens-slider .broker_wide-image {
  margin: 0;
}

.broker_page-about .broker_about-summary {
  margin: 0 calc(var(--side) * -1);
  padding: 0 var(--side);
  font-weight: 600;
  font-size: 17px;
  line-height: 25px;
  color: var(--white);
}

@media only screen and (max-width: 1023px) {
  .broker_page-about .broker_about-summary {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_page-about .broker_about-summary {
    margin-top: 60px;
  }
}

.broker_page-about .broker_about-summary .broker_title-small {
  font-weight: 800;
  font-size: 25px;
  line-height: 33px;
  color: var(--white);
  margin: 0 0 30px 0;
}

.broker_page-about .broker_about-summary ul,
.broker_page-about .broker_about-summary li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.broker_page-about .broker_about-summary ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.broker_page-about .broker_about-summary li {
  position: relative;
  padding-left: 15px;
}

.broker_page-about .broker_about-summary li:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--gradient2) 50% 100%/100% 200%;
}

.broker_page-about .broker_about-summary .broker_image-wrap {
  margin: 0 0 33px 0;
}

@media only screen and (min-width: 768px) {
  .broker_page-about .broker_about-summary {
    display: flex;
    align-items: flex-start;
    gap: 60px;
  }

  .broker_page-about .broker_about-summary .broker_text {
    flex: 0 0 auto;
    width: 380px;
    order: 1;
  }

  .broker_page-about .broker_about-summary .broker_image-wrap {
    flex: 0 0 auto;
    width: calc(100% - 440px + var(--side));
    overflow: hidden;
    order: 2;
    margin: 0;
  }

  .broker_page-about .broker_about-summary .broker_wide-image {
    width: calc(100vw - var(--side) * 2);
    max-width: 1100px;
    margin: 0 !important;
  }
}

.broker_page-about .broker_about-trades {
  margin: 0 calc(var(--side) * -1);
  padding: 0 var(--side);
  font-weight: 600;
  font-size: 17px;
  line-height: 25px;
  color: var(--white);
}

@media only screen and (max-width: 1023px) {
  .broker_page-about .broker_about-trades {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_page-about .broker_about-trades {
    margin-top: 60px;
  }
}

.broker_page-about .broker_about-trades .broker_title-small {
  font-weight: 800;
  font-size: 25px;
  line-height: 33px;
  color: var(--white);
  margin: 0 0 30px 0;
}

.broker_page-about .broker_about-trades ul,
.broker_page-about .broker_about-trades li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.broker_page-about .broker_about-trades ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.broker_page-about .broker_about-trades li {
  flex: 0 0 auto;
  width: 100%;
}

.broker_page-about .broker_about-trades li img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--dark330);
  border: 1px solid var(--white05);
  border-radius: 30px;
  margin: 10px 0 0 0;
}

.broker_page-about .broker_about-trades .broker_image-wrap {
  margin: 0 0 33px 0;
}

@media only screen and (max-width: 479px) {
  .broker_page-about .broker_about-trades .broker_image {
    border-radius: 10px;
    padding: 3px;
  }

  .broker_page-about .broker_about-trades .broker_image img {
    border-radius: 7px;
  }
}

@media only screen and (min-width: 768px) {
  .broker_page-about .broker_about-trades {
    display: flex;
    align-items: flex-start;
    gap: 60px;
  }

  .broker_page-about .broker_about-trades .broker_text {
    flex: 0 0 auto;
    width: 380px;
    order: 1;
  }

  .broker_page-about .broker_about-trades .broker_image-wrap {
    flex: 0 0 auto;
    width: calc(100% - 440px + var(--side));
    overflow: hidden;
    order: 2;
    margin: 0;
    position: sticky;
    top: var(--header);
  }

  .broker_page-about .broker_about-trades .broker_wide-image {
    width: calc(100vw - var(--side) * 2);
    max-width: 1100px;
    margin: 0 !important;
  }
}

@media only screen and (max-width: 1023px) {
  .broker_page-about .broker_about-dashboard .broker_wide-image:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_page-about .broker_about-dashboard .broker_wide-image:not(:last-child) {
    margin-bottom: 60px;
  }
}

.broker_page-about .broker_about-dashboard .broker_descr {
  color: var(--white);
  font-weight: 600;
  font-size: 17px;
  line-height: 25px;
}

@media only screen and (max-width: 1023px) {
  .broker_page-about .broker_about-dashboard .swiper {
    --gap: 12px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_page-about .broker_about-dashboard .swiper {
    --gap: 30px;
  }
}

.broker_page-about .broker_about-dashboard .swiper {
  margin: 30px calc(var(--side) * -1) 0 calc(var(--side) * -1);
  /*padding: 0 calc(var(--side) - var(--gap) / 2);*/
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-wrap: balance;
}

.broker_page-about .broker_about-dashboard .swiper-wrapper {
  transition-timing-function: linear !important;
}

.broker_page-about .broker_about-dashboard .swiper-slide {
  width: 100%;
  padding: 0 calc(var(--gap) / 2);
  max-width: 410px;
}

.broker_page-about .broker_about-dashboard .swiper img {
  display: block;
  width: 100%;
  height: auto;
  background: #100F16;
  border: 1px solid var(--white05);
  border-radius: 30px;
  margin: 0 0 10px 0;
}

.broker_page-about .broker_about-dashboard .broker_title-small {
  color: var(--white);
  font-weight: 600;
  font-size: 17px;
  line-height: 25px;
  margin: 0 0 5px 0;
}

.broker_cta {
  text-align: center;
  padding: var(--vertical) 0;
  margin-bottom: calc(var(--vertical) * -1);
}

.broker_cta .title {
  margin: 0 0 30px 0;
  background: var(--gradient2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media only screen and (max-width: 1023px) {
  .broker_cta .title {
    font-weight: 800;
    font-size: 40px;
    line-height: 50px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_cta .title {
    font-size: 64px;
    line-height: 1.09;
  }
}

.broker_cta .broker_btn {
  display: inline-flex;
  vertical-align: top;
  height: 55px;
  padding: 0 53px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 15px;
}

.broker_page-about .broker_screen-settings,
.broker_page-about .broker_screen-settings li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.broker_page-about .broker_screen-settings {
  font-weight: 600;
  font-size: 17px;
  line-height: 25px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  color: var(--white);
  position: relative;
  margin-top: calc(min((100vw - var(--side) * 2), 1100px) * -0.22);
}

.broker_page-about .broker_screen-settings li {
  flex: 0 0 auto;
  width: 100%;
  max-width: 380px;
}

.broker_page-about .broker_screen-settings img {
  display: block;
  width: 100%;
  height: auto;
  background: linear-gradient(to bottom, var(--dark330) 0%, var(--dark330) 100%), var(--black);
  border: 1px solid var(--white05);
  border-radius: 30px;
  margin: 0 0 10px 0;
}

.broker_page-about .broker_about-settings,
.broker_page-about .broker_about-settings li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.broker_page-about .broker_about-settings {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-wrap: balance;
  display: grid;
  flex-wrap: wrap;
  gap: 0 30px;
}

.broker_page-about .broker_about-settings .broker_text,
.broker_page-about .broker_about-settings .broker_image {
  margin: 0 auto;
  max-width: 575px;
  width: 100%;
}

.broker_page-about .broker_about-settings .broker_image img {
  display: block;
  border-radius: 30px;
  width: 100%;
  height: auto;
  background: var(--bg-dark);
  border: 1px solid var(--white05);
}

.broker_page-about .broker_about-settings .broker_title-small {
  color: var(--white);
  font-weight: 600;
  font-size: 17px;
  line-height: 25px;
  margin: 0 0 10px 0;
}

.broker_page-about .broker_about-settings .broker_legend,
.broker_page-about .broker_about-settings .broker_legend li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.broker_page-about .broker_about-settings .broker_legend {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  gap: 10px;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  color: var(--white);
}

.broker_page-about .broker_about-settings .broker_legend li {
  flex: 0 0 auto;
  position: relative;
  background: var(--bg-dark);
  border: 1px solid var(--white05);
  border-radius: 16px;
  padding: 9px 11px 9px 31px;
}

.broker_page-about .broker_about-settings .broker_legend .broker_pic {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translate3d(-50%, -50%, 0);
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.broker_page-about .broker_about-settings .broker_legend .broker_circle {
  background: #0071E3;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0px 0px 24px rgba(0, 64, 129, 0.64);
  border-radius: 50%;
}

.broker_page-about .broker_about-settings .broker_legend .broker_square {
  background: #F97052;
  box-shadow: 0px 0px 24px rgba(136, 37, 15, 0.64);
  border-radius: 2px;
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  width: 12px;
  height: 12px;
}

@media only screen and (max-width: 1023px) {
  .broker_page-about .broker_about-settings {
    margin-top: 30px;
    grid-row-gap: 30px;
  }

  .broker_page-about .broker_about-settings .broker_image {
    margin-top: -20px;
  }
}

@media only screen and (min-width: 1024px) {
  .broker_page-about .broker_about-settings {
    margin-top: 60px;
    grid-template-columns: repeat(2, 1fr);
  }

  .broker_page-about .broker_about-settings .broker_text {
    order: 1;
  }

  .broker_page-about .broker_about-settings .broker_image {
    order: 2;
    margin-top: 10px;
  }
}

.cashback form,
.cashback fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.cashback_input {
  font: bold 18px/1.45 var(--font);
  color: var(--white);
  outline: none;
  text-align: left;
  -webkit-appearance: none;
  box-shadow: none;
  border: 1px solid transparent;
  background: var(--light-dark);
  margin: 0;
  padding: 16px 19px;
  border-radius: 16px;
  width: 100%;
  display: block;
}
.cashback_input_error {
  margin-top: 2px;
  font-size: 14px;
  color: #ff3f56;
}
.cashback_input::-webkit-input-placeholder {
  opacity: 1;
  color: var(--grey);
}
.cashback_input::-moz-placeholder {
  opacity: 1;
  color: var(--grey);
}
.cashback_input:-ms-input-placeholder {
  opacity: 1;
  color: var(--grey);
}
.cashback_input:focus::-webkit-input-placeholder {
  opacity: 0.5 !important;
}
.cashback_input:focus::-moz-placeholder {
  opacity: 0.5 !important;
}
.cashback_input:focus:-ms-input-placeholder {
  opacity: 0.5 !important;
}
.cashback_input::-ms-clear {
  display: none;
}
.cashback button::-moz-focus-inner {
  border: 0;
}
textarea.cashback_input {
  resize: none;
}
.mfp-hide {
  display: none !important;
}
.cashback img,
.cashback svg,
.cashback picture {
  border: 0;
  vertical-align: top;
}
.cashback a {
  text-decoration: underline;
  outline: none;
  cursor: pointer;
}
.cashback strong {
  font-weight: bold;
}
.cashback ol,
.cashback ul,
.cashback li {
  list-style: none;
}
.cashback_btn {
  flex: 0 0 auto;
  max-width: 100%;
  -webkit-appearance: none;
  cursor: pointer;
  user-select: none;
  text-decoration: none !important;
  text-align: center;
  border: 0;
  outline: none;
  margin: 0;
  padding: 0 15px;
  font: bold 16px/1.45 var(--font);
  transition-property: color;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  position: relative;
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  height: 55px;
}
.cashback_btn:active {
  transition: none;
  opacity: 0.7;
}
.cashback_btn > * {
  position: relative;
  z-index: 2;
}
@media (pointer: fine) {
  .cashback_btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    border-radius: inherit;
    opacity: 0;
    background: var(--grad-orange);
    transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform: scale(-1, -1);
  }
  .cashback_btn:hover {
    color: var(--white) !important;
  }
  .cashback_btn:hover:before {
    opacity: 1;
  }
}
.cashback_btn-small {
  font-weight: 600;
  font-size: 14px;
  height: 40px;
  border-radius: 12px;
}
.cashback_btn-white {
  color: var(--black);
  background: var(--white);
}
.cashback_btn-dark {
  color: var(--white);
  background: var(--black);
}
.cashback_btn-grad {
  color: var(--white) !important;
  background: var(--gradient);
}
.cashback_btn-grey {
  color: var(--white) !important;
  background: #12101a;
}

.cashback span[data-text] {
  display: inline-block;
  vertical-align: top;
}

.cashback_h1,
.cashback_h2 {
  color: var(--white);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 20px 0;
}
.cashback_h3 {
  color: var(--white);
}
.cashback_mainwrap {
  flex: 0 0 auto;
  width: 100%;
  min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.cashback_content {
  flex: 1 0 auto;
}
.cashback_header,
.cashback_footer {
  flex: 0 0 auto;
}
.cashback_container {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  flex: 0 0 auto;
  width: 100%;
  margin: 0 auto;
  max-width: 1320px;
}
.cashback_header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--black);
  height: 60px;
}
.cashback_header .cashback_container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
}

.cashback_contact a {
  text-decoration: none !important;
}
.cashback_contact *[data-text]:after {
  background-image: var(--grad-orange-rev);
  margin-bottom: 127px;
}
.cashback_contacts {
  padding-top: 80px;
  padding-bottom: 70px;
}
.cashback_contacts .cashback_btn-grey {
  background-color: #1d192c;
}
.cashback_contacts h1,
.cashback_contacts .cashback_h1 {
  font-weight: bold;
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 30px 0;
}
.cashback_contacts h2,
.cashback_contacts .cashback_h2 {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.3;
  margin: 30px 0;
}
.cashback_contacts h3,
.cashback_contacts .cashback_h3 {
  color: var(--grey);
  font-weight: bold;
  font-size: 14px;
  line-height: 1.45;
  margin: 30px 0 15px 0;
}
.cashback_contacts .cashback_address {
  color: var(--white);
  font-weight: bold;
  font-size: 24px;
  line-height: 1.3;
  max-width: 23em;
}
.cashback_contacts-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}
.cashback_contacts-links .cashback_btn {
  font-weight: 600;
  font-size: 14px;
  height: 50px;
  border-radius: 13px;
  padding: 0 15px;
  gap: 0 15px;
  flex: 1 1 auto;
}
.cashback_contacts-links .cashback_btn svg {
  fill: var(--white);
  flex: 0 0 auto;
}
.cashback_contacts .cashback_right {
  margin-top: 40px;
}
.link {
  display: inline-block;
  vertical-align: top;
  text-decoration: none !important;
  color: var(--white);
  transition: all 0.2s;
}

.link:hover {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: var(--grad-orange);
}
.gradient-text {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: var(--grad-orange);
}

.gradient-text-second {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: var(--grad-orange-second);
}
@media (pointer: fine) {
  .cashback_btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    border-radius: inherit;
    opacity: 0;
    background: var(--gradient);
    transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform: scale(-1, -1);
  }
  .cashback_btn:hover {
    color: var(--white) !important;
  }
  .cashback_btn:hover:before {
    opacity: 1;
  }
}
.cashback_btn-small {
  font-weight: 600;
  font-size: 14px;
  height: 40px;
  border-radius: 12px;
}
.cashback_btn-white {
  color: var(--black);
  background: var(--white);
}
.cashback_btn-dark {
  color: var(--white);
  background: var(--black);
}
.cashback_btn-grad {
  color: var(--white);
  background: var(--gradient);
}
.cashback_btn-grey {
  color: var(--white);
  background: #12101a;
}

.cashback span[data-text] {
  display: inline-block;
  vertical-align: top;
}
