:root {
  --blue50: #e3f2fd;
  --blue100: #bbdefb;
  --blue200: #90caf9;
  --blue300: #64b5f6;
  --blue400: #42a5f5;
  --blue500: #2196f3;
  --blue600: #1e88e5;
  --blue700: #1976d2;
  --blue800: #1565c0;
  --blue900: #0d47a1;
  --bluea100: #82b1ff;
  --bluea200: #448aff;
  --bluea400: #2979ff;
  --bluea700: #2962ff;
  --white: #fff;
  --grey50: #fafafa;
  --grey100: #f5f5f5;
  --grey200: #eeeeee;
  --grey300: #e0e0e0;
  --grey400: #bdbdbd;
  --grey500: #9e9e9e;
  --grey600: #757575;
  --grey700: #616161;
  --grey800: #424242;
  --grey900: #212121;
  --red50: #ffebee;
  --red100: #ffcdd2;
  --red200: #ef9a9a;
  --red300: #e57373;
  --red400: #ef5350;
  --red500: #f44336;
  --red600: #e53935;
  --red700: #d32f2f;
  --red800: #c62828;
  --red900: #b71c1c;
  --reda100: #ff8a80;
  --redea200: #ff5252;
  --reda400: #ff1744;
  --reda700: #d50000;
  --green: #1FD09B;
  --darkgreen: #00B27D; }

.border-radius-small {
  border-radius: 8px; }

.border-radius-medium {
  border-radius: 16px; }

.box-shadow-medium {
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2); }

.grey-200 {
  background: var(--grey200) !important; }

.blue-50 {
  background: var(--blue50) !important; }

.blue-100 {
  background: var(--blue100) !important; }

.blue-200 {
  background: var(--blue200) !important; }

.blue-300 {
  background: var(--blue300) !important; }

.blue-400 {
  background: var(--blue400) !important; }

.blue-500 {
  background: var(--blue500) !important; }

.blue-600 {
  background: var(--blue600) !important; }

.blue-700 {
  background: var(--blue700) !important; }

.blue-800 {
  background: var(--blue800) !important; }

.blue-900 {
  background: var(--blue900) !important; }

.blue-6 {
  background: rgba(33, 150, 243, 0.06) !important; }

.blue-12 {
  background: rgba(33, 150, 243, 0.12) !important; }

.blue-18 {
  background: rgba(33, 150, 243, 0.18) !important; }

.blue-24 {
  background: rgba(33, 150, 243, 0.24) !important; }

.blue-5 {
  background: rgba(30, 136, 229, 0.05) !important; }

.blue-10 {
  background: rgba(30, 136, 229, 0.1) !important; }

.blue-15 {
  background: rgba(30, 136, 229, 0.15) !important; }

.blue-20 {
  background: rgba(30, 136, 229, 0.2) !important; }

.blue-25 {
  background: rgba(30, 136, 229, 0.25) !important; }

.blue-30 {
  background: rgba(30, 136, 229, 0.3) !important; }

.blue-35 {
  background: rgba(30, 136, 229, 0.35) !important; }

.blue-40 {
  background: rgba(30, 136, 229, 0.4) !important; }

.blue-45 {
  background: rgba(30, 136, 229, 0.45) !important; }

.blue-50 {
  background: rgba(30, 136, 229, 0.5) !important; }

.grey-50 {
  background: var(--grey50) !important; }

.grey-100 {
  background: var(--grey100) !important; }

.mt-minus-5 {
  margin-top: -55px; }

.text-green-android {
  color: #74D200 !important; }

.text-blue {
  color: var(--blue500) !important; }

.text-grey {
  color: var(--grey600) !important; }

.text-grey-900 {
  color: var(--grey900) !important; }

.text-red {
  color: var(--red500); }

.text-bold {
  font-family: "Roboto-Bold" !important; }

.btn-lg {
  border-radius: 4px; }
  .btn-lg.btn-round {
    border-radius: 24px; }

.btn-red {
  background: var(--red400);
  color: #fff; }
  .btn-red:hover, .btn-red:focus, .btn-red:active {
    background: var(--red700);
    color: #fff; }

.btn-red-blue {
  background: var(--red400);
  color: #fff; }
  .btn-red-blue:hover, .btn-red-blue:focus, .btn-red-blue:active {
    background: var(--blue600);
    color: #fff; }

.btn-red-green {
  background: var(--red400);
  color: #fff; }
  .btn-red-green:hover, .btn-red-green:focus, .btn-red-green:active {
    background: var(--green);
    color: #fff; }

.btn-green {
  background: var(--green);
  color: #fff; }
  .btn-green:hover, .btn-green:focus, .btn-green:active {
    background: var(--blue600);
    color: #fff; }

.btn-orange {
  background: #FF9544;
  color: #fff; }
  .btn-orange:hover, .btn-orange:focus, .btn-orange:active {
    background: var(--blue500);
    color: #fff; }

.btn-white-green-bordered {
  background: #fff;
  color: var(--grey500);
  border-color: var(--grey500); }
  .btn-white-green-bordered:hover, .btn-white-green-bordered:focus, .btn-white-green-bordered:active {
    background: var(--green);
    border-color: var(--green);
    color: #fff; }

.btn-border-blue-green {
  background: none;
  color: var(--blue500);
  border-color: var(--blue500); }
  .btn-border-blue-green:hover, .btn-border-blue-green:focus, .btn-border-blue-green:active {
    background: var(--green);
    border-color: var(--green);
    color: #fff; }

.btn-white-green {
  background: var(--white);
  color: var(--grey900);
  border-color: var(--white); }
  .btn-white-green:hover, .btn-white-green:focus, .btn-white-green:active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white); }

.btn-border-lg-blue-green {
  background: none;
  color: var(--white);
  border-width: 2px;
  border-color: var(--white); }
  .btn-border-lg-blue-green:hover, .btn-border-lg-blue-green:focus, .btn-border-lg-blue-green:active {
    background: var(--green);
    border-color: var(--green);
    color: #fff; }

.checked {
  padding: 0;
  margin: 15px 0;
  list-style: none; }
  .checked li {
    padding: 5px 0 5px 25px;
    background: url("../images/check.svg") no-repeat left 9px;
    background-size: auto 14px; }

.numbers-blue-round {
  list-style: none;
  padding: 0;
  counter-reset: listCounter; }
  .numbers-blue-round li {
    padding: 5px 0 5px 50px;
    margin: 10px 0;
    position: relative; }
  .numbers-blue-round li:before {
    position: absolute;
    left: 0;
    top: 0;
    counter-increment: listCounter;
    content: counter(listCounter);
    color: white;
    background: var(--blue600);
    display: inline-block;
    text-align: center;
    line-height: 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%; }

.table td, .table th {
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

.table-blue-header tr {
  display: flex;
  align-items: stretch; }
  .table-blue-header tr th {
    flex: 1;
    background: var(--blue500);
    color: var(--white);
    padding: 16px; }
    .table-blue-header tr th:first-child {
      border-radius: 8px 0 0 0; }
    .table-blue-header tr th:last-child {
      border-radius: 0 8px 0 0; }
    .table-blue-header tr th:nth-child(2) {
      background: var(--blue600); }
  .table-blue-header tr td {
    flex: 1;
    padding: 15px;
    background: var(--grey100);
    display: flex;
    align-items: center;
    justify-content: center; }
    .table-blue-header tr td:nth-child(2) {
      background: var(--grey200); }
  .table-blue-header tr + tr td {
    border-top: 1px solid rgba(0, 0, 0, 0.2); }
  .table-blue-header tr:last-child td:first-child {
    border-radius: 0 0 0 8px; }
  .table-blue-header tr:last-child td:last-child {
    border-radius: 0 0 8px 0; }

.form-control-underline {
  border: 0;
  border-radius: 0;
  box-shadow: 0 1px 0 var(--grey300); }
  .form-control-underline:focus, .form-control-underline:active {
    outline: none;
    box-shadow: 0 1px 0 var(--grey700); }

.card-block {
  display: flex;
  align-items: stretch;
  margin: 60px 0;
  background: var(--grey50);
  border-radius: 16px; }
  .card-block .image {
    width: 50%;
    border-radius: 16px;
    overflow: hidden;
    object-fit: cover; }
    .card-block .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .card-block .description {
    width: 50%;
    padding: 60px;
    align-content: center;
    justify-content: center;
    display: flex;
    flex-direction: column; }
    .card-block .description .heading {
      color: var(--blue500); }
  .card-block.image-left .image {
    order: 0; }
  .card-block.image-left .description {
    order: 1; }
  .card-block.image-right .image {
    order: 1; }
  .card-block.image-right .description {
    order: 0; }
  .card-block.card-blue {
    border-radius: 16px;
    background: var(--blue600);
    color: var(--white); }
    .card-block.card-blue .description {
      padding: 60px; }
      .card-block.card-blue .description .heading {
        color: var(--white); }

@font-face {
  font-family: 'Roboto-Regular';
  src: url("../fonts/Roboto-Regular.eot");
  src: url("../fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Regular.svg#Roboto-Regular") format("svg"), url("../fonts/Roboto-Regular.ttf") format("truetype"), url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Roboto-Italic';
  src: url("../fonts/Roboto-Italic.eot");
  src: url("../fonts/Roboto-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Italic.svg#Roboto-Italic") format("svg"), url("../fonts/Roboto-Italic.ttf") format("truetype"), url("../fonts/Roboto-Italic.woff") format("woff"), url("../fonts/Roboto-Italic.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Roboto-Black';
  src: url("../fonts/Roboto-Black.eot");
  src: url("../fonts/Roboto-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Black.svg#Roboto-Black") format("svg"), url("../fonts/Roboto-Black.ttf") format("truetype"), url("../fonts/Roboto-Black.woff") format("woff"), url("../fonts/Roboto-Black.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Roboto-Bold';
  src: url("../fonts/Roboto-Bold.eot");
  src: url("../fonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Bold.svg#Roboto-Bold") format("svg"), url("../fonts/Roboto-Bold.ttf") format("truetype"), url("../fonts/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Akrobat-Regular';
  src: url("../fonts/Akrobat-Regular.eot");
  src: url("../fonts/Akrobat-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Akrobat-Regular.svg#Akrobat-Regular") format("svg"), url("../fonts/Akrobat-Regular.ttf") format("truetype"), url("../fonts/Akrobat-Regular.woff") format("woff"), url("../fonts/Akrobat-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'icons';
  src: url("../fonts/icons.eot?mnd66p");
  src: url("../fonts/icons.eot?mnd66p#iefix") format("embedded-opentype"), url("../fonts/icons.ttf?mnd66p") format("truetype"), url("../fonts/icons.woff?mnd66p") format("woff"), url("../fonts/icons.svg?mnd66p#icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block; }
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icons' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-positions:before {
  content: "\e946"; }

.icon-profit-levels:before {
  content: "\e947"; }

.icon-scenary:before {
  content: "\e948"; }

.icon-tech-indicators:before {
  content: "\e949"; }

.icon-trsignals:before {
  content: "\e94a"; }

.icon-min-leverage:before {
  content: "\e942"; }

.icon-info:before {
  content: "\e943"; }

.icon-account-currency:before {
  content: "\e944"; }

.icon-trading-instrument:before {
  content: "\e945"; }

.icon-commodities:before {
  content: "\e941"; }

.icon-world:before {
  content: "\e93b"; }

.icon-employees:before {
  content: "\e93c"; }

.icon-fast-execution:before {
  content: "\e93d"; }

.icon-minus:before {
  content: "\e93e"; }

.icon-plus:before {
  content: "\e93f"; }

.icon-search:before {
  content: "\e940"; }

.icon-allpips:before {
  content: "\e92e"; }

.icon-no-fees:before {
  content: "\e92f"; }

.icon-cloud-vps:before {
  content: "\e930"; }

.icon-market-execution:before {
  content: "\e931"; }

.icon-trading-robot:before {
  content: "\e932"; }

.icon-deposit-bonus:before {
  content: "\e933"; }

.icon-instruments-setings:before {
  content: "\e934"; }

.icon-leverage:before {
  content: "\e935"; }

.icon-currancies:before {
  content: "\e936"; }

.icon-lot-size:before {
  content: "\e937"; }

.icon-no-comission:before {
  content: "\e938"; }

.icon-min-deposit:before {
  content: "\e939"; }

.icon-min-spread:before {
  content: "\e93a"; }

.icon-guide:before {
  content: "\e929"; }

.icon-manage-accounts:before {
  content: "\e92a"; }

.icon-monitoring:before {
  content: "\e92b"; }

.icon-operations-client:before {
  content: "\e92c"; }

.icon-quotes-news:before {
  content: "\e92d"; }

.icon-mt4:before {
  content: "\e928"; }

.icon-download:before {
  content: "\e91a"; }

.icon-x24:before {
  content: "\e91b"; }

.icon-account-control:before {
  content: "\e91c"; }

.icon-analytical-objects:before {
  content: "\e91d"; }

.icon-analyze-markets:before {
  content: "\e91e"; }

.icon-bars-types:before {
  content: "\e91f"; }

.icon-ineractive-symbol-chart:before {
  content: "\e920"; }

.icon-make-trades:before {
  content: "\e921"; }

.icon-manage-account:before {
  content: "\e922"; }

.icon-orders:before {
  content: "\e923"; }

.icon-technical-indicators:before {
  content: "\e924"; }

.icon-timeframes:before {
  content: "\e925"; }

.icon-trades-history:before {
  content: "\e926"; }

.icon-whatclist-alerts:before {
  content: "\e927"; }

.icon-callback:before {
  content: "\e917"; }

.icon-live-chat:before {
  content: "\e918"; }

.icon-contact-email:before {
  content: "\e919"; }

.icon-arrow-back:before {
  content: "\e916"; }

.icon-forex:before {
  content: "\e90d"; }

.icon-time:before {
  content: "\e90e"; }

.icon-shares:before {
  content: "\e90f"; }

.icon-crypto:before {
  content: "\e910"; }

.icon-metals:before {
  content: "\e911"; }

.icon-indices:before {
  content: "\e912"; }

.icon-contract-details:before {
  content: "\e913"; }

.icon-swaps:before {
  content: "\e914"; }

.icon-spreads:before {
  content: "\e915"; }

.icon-Layer-2:before {
  content: "\e90c"; }

.icon-phone:before {
  content: "\e90a"; }

.icon-email:before {
  content: "\e90b"; }

.icon-android:before {
  content: "\e900"; }

.icon-apple:before {
  content: "\e901"; }

.icon-arrow-down:before {
  content: "\e902"; }

.icon-close:before {
  content: "\e903"; }

.icon-login:before {
  content: "\e904"; }

.icon-menu:before {
  content: "\e905"; }

.icon-multiterminal:before {
  content: "\e906"; }

.icon-readmore:before {
  content: "\e907"; }

.icon-webtrader:before {
  content: "\e908"; }

.icon-windows:before {
  content: "\e909"; }

html, body {
  font-family: 'Roboto-Regular';
  height: 100%;
  min-height: 100%;
  position: relative; }

body {
  position: relative; }

a {
  color: var(--blue500);
  transition: all ease 0.3s; }
  a:hover {
    color: var(--blue800); }

.alert {
  border: none;
  border-radius: 8px;
  padding: 20px;
  position: relative; }
  .alert.alert-info {
    background: var(--blue600);
    color: var(--white); }
    .alert.alert-info a {
      color: var(--white);
      text-decoration: underline; }
  .alert.has-icon {
    padding-left: 70px; }
    .alert.has-icon.user-guide::before {
      font-family: 'icons';
      content: "\e929";
      font-size: 30px;
      display: block;
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      position: absolute;
      left: 20px;
      top: 15px; }

.btn {
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 4px; }
  .btn span {
    margin-right: 10px; }

.btn-lg {
  font-size: 16px;
  padding: 12px 24px; }

.btn-primary-light {
  background: none;
  border: 1px solid var(--blue500);
  color: var(--blue500);
  transition: all ease 0.3s; }
  .btn-primary-light:hover, .btn-primary-light:focus, .btn-primary-light:active {
    background: var(--blue500);
    color: var(--white);
    box-shadow: none;
    outline: none; }

.btn-primary {
  background: var(--blue500);
  color: var(--white);
  border: 1px solid var(--blue500);
  transition: all ease 0.3s; }
  .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: var(--blue800);
    color: var(--white);
    box-shadow: none;
    outline: none; }

.btn-white-light {
  background: none;
  border: 1px solid var(--white);
  color: var(--white);
  transition: all ease 0.3s; }
  .btn-white-light:hover, .btn-white-light:focus, .btn-white-light:active {
    background: var(--white);
    color: var(--blue500);
    box-shadow: none;
    outline: none; }

.btn-grey-blue {
  background: var(--grey400);
  color: var(--white);
  border: 1px solid var(--grey400);
  transition: all ease 0.3s; }
  .btn-grey-blue:hover, .btn-grey-blue:focus, .btn-grey-blue:active {
    background: var(--blue500);
    color: var(--white);
    border: 1px solid var(--blue500);
    box-shadow: none;
    outline: none; }

.btn-green {
  background: var(--green);
  color: var(--white);
  border: 1px solid var(--green);
  transition: all ease 0.3s; }
  .btn-green:hover, .btn-green:focus, .btn-green:active {
    background: var(--darkgreen);
    color: var(--white);
    border: 1px solid var(--darkgreen);
    box-shadow: none;
    outline: none; }

.btn-red {
  background: var(--red600);
  color: var(--white);
  border: 1px solid var(--red600);
  transition: all ease 0.3s; }
  .btn-red:hover, .btn-red:focus, .btn-red:active {
    background: var(--green);
    color: var(--white);
    border: 1px solid var(--green);
    box-shadow: none;
    outline: none; }

.bg-blue {
  background: var(--blue500) !important;
  color: var(--white) !important; }

.bg-red {
  background: var(--red400) !important;
  color: var(--white) !important; }

.bg-green {
  background: var(--green) !important;
  color: var(--white) !important; }

.bg-purple {
  background: #4C21F3 !important;
  color: var(--white) !important; }

.bg-orange {
  background: #ff4800 !important;
  color: var(--white) !important; }

.bg-mint {
  background: #00C1A3 !important;
  color: var(--white) !important; }

.bg-light-grey {
  background: var(--grey100) !important;
  color: var(--grey900) !important; }

.border-radius-8 {
  border-radius: 8px !important; }

.border-radius-16 {
  border-radius: 16px !important; }

.circle-blue {
  counter-reset: myCounter;
  padding: 0; }
  .circle-blue li {
    list-style: none;
    padding-left: 46px;
    position: relative;
    padding-top: 3px; }
    .circle-blue li + li {
      margin-top: 15px; }
    .circle-blue li:before {
      counter-increment: myCounter;
      content: counter(myCounter);
      color: var(--white);
      background: var(--blue600);
      display: inline-block;
      text-align: center;
      line-height: 30px;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      position: absolute;
      left: 0;
      top: 0; }

.circle-red {
  counter-reset: myCounter;
  padding: 0; }
  .circle-red li {
    list-style: none;
    padding-left: 46px;
    position: relative;
    padding-top: 3px; }
    .circle-red li + li {
      margin-top: 15px; }
    .circle-red li:before {
      counter-increment: myCounter;
      content: counter(myCounter);
      color: var(--white);
      background: var(--red400);
      display: inline-block;
      text-align: center;
      line-height: 30px;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      position: absolute;
      left: 0;
      top: 0; }

.list-columns-2 {
  column-count: 2;
  column-gap: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 40px; }

.img-rounded {
  border-radius: 16px; }

.notification {
  position: relative; }
  .notification .close {
    font-size: 18px;
    color: #fff;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    display: block;
    width: 36px;
    height: 36px;
    background: url("../images/close-icon.svg") no-repeat center;
    background-size: 40% auto; }
    .notification .close:hover, .notification .close:active, .notification .close:focus {
      outline: none;
      box-shadow: none;
      opacity: 1 !important; }
  .notification .messages-container .messages {
    font-size: 14px;
    padding: 15px 65px 15px 65px; }
    .notification .messages-container .messages.error {
      background: rgba(239, 83, 80, 0.8) url("../images/warning-icon.svg") no-repeat 15px 15px;
      background-size: auto 30px;
      color: #fff; }
    .notification .messages-container .messages.success {
      background: rgba(17, 211, 141, 0.8) url("../images/success.png") no-repeat 15px 15px;
      background-size: auto 34px;
      color: #fff; }
    .notification .messages-container .messages h2 {
      font-size: 18px;
      margin-bottom: 5px;
      font-weight: 900; }

.callout {
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px; }
  .callout.callout-dark-green {
    border-left: 8px solid #006F44; }

.h1 {
  font-size: 40px; }

.h2 {
  font-size: 32px; }

.h3 {
  font-size: 28px; }

.h4 {
  font-size: 24px; }

.h5 {
  font-size: 20px; }

.h6 {
  font-size: 16px; }

.wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100%;
  background: #fff; }
  .wrapper .top-side {
    width: 100%;
    align-self: flex-start; }
  .wrapper .footer {
    width: 100%;
    align-self: flex-end; }

.lang-select {
  margin-right: 30px; }
  .lang-select .form-group {
    margin: 0; }
    .lang-select .form-group .form-control {
      border: none;
      -moz-appearance: none;
      -webkit-appearance: none;
      appearance: none;
      background: #fff url("../images/select-arrow-down.svg") no-repeat right center;
      outline: none; }
      .lang-select .form-group .form-control:hover, .lang-select .form-group .form-control:focus, .lang-select .form-group .form-control:active {
        outline: none;
        box-shadow: none; }

.header-navbar {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  min-width: 100%;
  top: 0; }
  .header-navbar .navbar-top {
    width: 100%;
    background: var(--white); }
    .header-navbar .navbar-top .navbar-brand {
      padding: 15px 0; }
      .header-navbar .navbar-top .navbar-brand img {
        height: 50px;
        width: auto; }
    .header-navbar .navbar-top .navbar-right {
      display: flex;
      align-items: center; }
      .header-navbar .navbar-top .navbar-right .lang-select {
        margin-right: 30px; }
        .header-navbar .navbar-top .navbar-right .lang-select .form-group {
          margin: 0; }
          .header-navbar .navbar-top .navbar-right .lang-select .form-group .form-control {
            border: none;
            -moz-appearance: none;
            -webkit-appearance: none;
            appearance: none;
            background: #fff url("../images/select-arrow-down.svg") no-repeat right center;
            outline: none; }
            .header-navbar .navbar-top .navbar-right .lang-select .form-group .form-control:hover, .header-navbar .navbar-top .navbar-right .lang-select .form-group .form-control:focus, .header-navbar .navbar-top .navbar-right .lang-select .form-group .form-control:active {
              outline: none;
              box-shadow: none; }
      .header-navbar .navbar-top .navbar-right .login-btn {
        margin-right: 10px; }
  .header-navbar .navbar-bottom {
    width: 100%;
    background: var(--white); }
    .header-navbar .navbar-bottom .navbar-brand {
      display: none; }
    .header-navbar .navbar-bottom .navbar-menu li a {
      color: var(--grey700);
      padding-left: 20px;
      padding-right: 20px; }
      .header-navbar .navbar-bottom .navbar-menu li a::after {
        display: none; }
    .header-navbar .navbar-bottom .navbar-menu li.active > a {
      color: var(--white);
      background: var(--blue500); }
    .header-navbar .navbar-bottom .navbar-menu li.show > a {
      background: var(--blue600);
      color: #fff; }
    .header-navbar .navbar-bottom .navbar-menu li.dropdown ul {
      background: var(--blue600);
      padding: 0;
      border: 0;
      border-radius: 0;
      margin-top: 0px; }
      .header-navbar .navbar-bottom .navbar-menu li.dropdown ul li a {
        color: var(--white);
        font-size: 14px !important;
        padding: 10px 16px; }
        .header-navbar .navbar-bottom .navbar-menu li.dropdown ul li a:hover, .header-navbar .navbar-bottom .navbar-menu li.dropdown ul li a:active, .header-navbar .navbar-bottom .navbar-menu li.dropdown ul li a:focus {
          background: var(--blue700); }
  .header-navbar .navbar-sub {
    width: 100%;
    background: var(--blue500); }
    .header-navbar .navbar-sub .navbar-nav li a {
      color: var(--blue100);
      font-size: 14px;
      padding: 8px 16px;
      transition: all ease 0.3s; }
      .header-navbar .navbar-sub .navbar-nav li a:hover, .header-navbar .navbar-sub .navbar-nav li a:focus, .header-navbar .navbar-sub .navbar-nav li a:active {
        color: #fff;
        background: none; }
    .header-navbar .navbar-sub .navbar-nav li.active a {
      color: #fff; }

.fixed-navbar {
  padding-top: 157px; }
  .fixed-navbar .header-navbar {
    z-index: 1000;
    position: fixed;
    top: 0px;
    animation: 0.5s ease fixedNavbar; }
@keyframes fixedNavbar {
  0% {
    top: -100px; }
  100% {
    top: 0px; } }
    .fixed-navbar .header-navbar .navbar-top {
      display: none; }
    .fixed-navbar .header-navbar .navbar-bottom .navbar-brand {
      display: block;
      padding: 10px 10px 10px 0; }
      .fixed-navbar .header-navbar .navbar-bottom .navbar-brand img {
        height: 50px;
        width: auto;
        margin: 0; }
    .fixed-navbar .header-navbar .navbar-bottom .navbar-menu li a {
      height: 70px;
      display: flex;
      align-items: center; }
    .fixed-navbar .header-navbar .navbar-sub {
      display: none !important; }

.slider .carousel-item {
  height: 600px;
  padding: 60px 0; }
  .slider .carousel-item .item-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
    .slider .carousel-item .item-bg .bg {
      width: 100%;
      height: 100%;
      background-position: center;
      position: relative;
      background-size: auto 100%; }
  .slider .carousel-item .slider-text {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 80px; }
    .slider .carousel-item .slider-text .h1 {
      font-size: 64px;
      font-weight: 900;
      margin-bottom: 30px; }
    .slider .carousel-item .slider-text .h3 {
      font-size: 24px;
      font-weight: 900;
      margin-bottom: 30px; }
    .slider .carousel-item .slider-text .btn-lg {
      padding: 16px 32px;
      font-size: 16px; }
  .slider .carousel-item .slider-image {
    align-items: center;
    display: flex; }
.slider .carousel-indicators {
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto 80px auto;
  max-width: 1140px; }
  .slider .carousel-indicators li {
    display: block;
    width: 50px;
    height: 50px;
    max-width: 50px;
    max-height: 50px;
    flex: 1;
    margin: 0 8px;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    border: none; }
    .slider .carousel-indicators li img {
      object-fit: cover;
      position: absolute;
      display: block;
      height: 100%; }
    .slider .carousel-indicators li.active {
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); }
.slider .article-image {
  background: var(--blue700); }
  .slider .article-image img {
    width: 100%;
    height: auto; }

.bennefits .bennefits-items {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  margin-top: -40px; }
  .bennefits .bennefits-items .item {
    padding: 30px 15px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .bennefits .bennefits-items .item .number {
      margin-right: 10px;
      text-transform: uppercase;
      font-family: 'Akrobat-Regular';
      color: var(--blue500);
      font-size: 42px;
      line-height: 1; }
    .bennefits .bennefits-items .item .description {
      font-size: 12px;
      color: var(--grey400);
      text-transform: uppercase; }

.advantages {
  padding: 60px 0; }
  .advantages .heading {
    text-transform: uppercase;
    font-size: 30px;
    color: var(--blue500);
    font-weight: 900;
    margin: 0 0 60px 0; }
  .advantages .advantages-items {
    display: grid;
    grid-gap: 120px;
    grid-template-columns: repeat(3, 1fr); }
    .advantages .advantages-items .item {
      display: flex;
      flex-direction: column;
      text-align: center; }
      .advantages .advantages-items .item .icon {
        max-height: 120px;
        margin-bottom: 15px; }
      .advantages .advantages-items .item .title {
        font-size: 16px;
        color: var(--blue500);
        margin0: 0 0 15px 0;
        font-weight: 900; }
      .advantages .advantages-items .item .description {
        font-size: 14px;
        margin-bottom: 0; }

.platforms {
  background: var(--blue600);
  color: #fff;
  padding: 100px 0; }
  .platforms .heading {
    font-weight: 900;
    margin: 0 0 15px 0; }
  .platforms .description {
    font-size: 18px;
    margin-bottom: 60px; }
  .platforms .platforms-items {
    margin-bottom: 60px; }
    .platforms .platforms-items .title {
      font-size: 18px;
      margin: 0 0 15px 0;
      margin-bottom: 15px; }
    .platforms .platforms-items .items {
      list-style: none;
      padding: 0;
      column-count: 2;
      column-gap: 30px; }
      .platforms .platforms-items .items .item {
        font-size: 14px;
        padding: 5px 0; }
        .platforms .platforms-items .items .item span {
          margin-right: 5px; }
        .platforms .platforms-items .items .item .btn-sm {
          font-size: 12px;
          line-height: 1;
          padding: 5px 10px;
          margin-left: 5px;
          border-radius: 4px; }

.trade-now {
  padding: 100px 0; }
  .trade-now .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; }
    .trade-now .text .heading {
      font-weight: 900;
      margin-bottom: 15px; }
    .trade-now .text .description {
      font-size: 18px;
      margin-bottom: 40px;
      font-weight: 900; }
    .trade-now .text .btn {
      margin-top: 40px; }

.account-types {
  background: var(--grey50);
  padding: 100px 0; }
  .account-types .heading {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 30px 0;
    text-align: center; }
  .account-types .account-types-items {
    margin-bottom: 30px; }
    .account-types .account-types-items .owl-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%; }
      .account-types .account-types-items .owl-dots .owl-dot span {
        width: 8px;
        height: 8px;
        display: block;
        background: var(--grey300);
        border-radius: 50%;
        margin: 0 8px; }
      .account-types .account-types-items .owl-dots .owl-dot:focus, .account-types .account-types-items .owl-dots .owl-dot:active, .account-types .account-types-items .owl-dots .owl-dot:active {
        outline: none;
        box-shadow: none; }
      .account-types .account-types-items .owl-dots .owl-dot.active span {
        background: var(--blue500); }
    .account-types .account-types-items .item {
      min-height: 500px;
      background: var(--white);
      border-radius: 14px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
      margin: 15px 10px 15px 10px;
      padding: 30px;
      text-align: center;
      position: relative;
      transition: all ease 0.3s; }
      .account-types .account-types-items .item:hover {
        margin: 5px 10px 25px 10px;
        box-shadow: 0 15px 10px rgba(0, 0, 0, 0.1); }
      .account-types .account-types-items .item .account-link {
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        z-index: 10;
        top: 0;
        left: 0; }
      .account-types .account-types-items .item .label {
        position: absolute;
        display: block;
        padding: 8px 16px;
        border-radius: 0 14px 0 14px;
        background: var(--grey500);
        font-size: 12px;
        line-height: 1;
        top: 0;
        left: auto;
        right: 0; }
      .account-types .account-types-items .item .title {
        font-size: 16px;
        font-weight: 900;
        margin: 15px 0;
        text-transform: uppercase; }
      .account-types .account-types-items .item .item-block {
        padding: 10px 0; }
        .account-types .account-types-items .item .item-block + .item-block {
          border-top: 1px solid var(--grey100); }
        .account-types .account-types-items .item .item-block .block-label {
          font-size: 12px;
          color: var(--grey500); }
        .account-types .account-types-items .item .item-block .block-value {
          font-size: 14px; }
  .account-types .text-center {
    display: flex;
    flex-direction: column;
    align-items: center; }
    .account-types .text-center .all-accounts {
      margin-bottom: 15px;
      text-decoration: underline;
      font-size: 14px; }

.traders-support {
  padding: 100px 0; }
  .traders-support .heading {
    font-size: 36px;
    text-align: center;
    margin: 0 0 60px 0;
    font-weight: 900; }
  .traders-support .traders-support-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 60px; }
    .traders-support .traders-support-items .item {
      display: flex;
      flex-direction: column;
      align-items: center; }
      .traders-support .traders-support-items .item .icon {
        height: 120px;
        margin-bottom: 15px; }
      .traders-support .traders-support-items .item .title {
        font-weight: 900;
        font-size: 18px;
        margin-bottom: 10px; }
      .traders-support .traders-support-items .item .checked {
        margin: 0 0 10px 0;
        font-size: 14px;
        color: var(--grey600); }
        .traders-support .traders-support-items .item .checked li {
          padding: 5px 0 5px 25px;
          background: url("../images/check.svg") no-repeat left 9px;
          background-size: auto 12px; }

.payment-options {
  padding: 80px;
  background: var(--grey100);
  text-align: center; }
  .payment-options .heading {
    font-size: 36px;
    margin: 0 0 15px 0;
    font-weight: 900;
    text-align: center; }
  .payment-options .description {
    text-align: center;
    margin-bottom: 30px; }
  .payment-options .payment-items {
    display: flex;
    justify-content: space-between; }
    .payment-options .payment-items img {
      padding: 0 15px; }

.footer {
  color: var(--white);
  background: var(--grey900);
  padding: 30px 0; }
  .footer .footer-top {
    display: flex;
    justify-content: space-between;
    grid-column-gap: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--grey800); }
    .footer .footer-top .footer-menu {
      padding-top: 15px;
      padding-right: 30px; }
      .footer .footer-top .footer-menu .menu {
        list-style: none;
        padding: 0;
        margin: 0;
        column-count: 2;
        column-gap: 40px;
        column-fill: balance; }
        .footer .footer-top .footer-menu .menu li {
          margin: 0;
          margin-bottom: 10px; }
          .footer .footer-top .footer-menu .menu li a {
            color: var(--white);
            font-size: 12px;
            display: block;
            padding: 0;
            transition: all ease 0.3s; }
            .footer .footer-top .footer-menu .menu li a:hover, .footer .footer-top .footer-menu .menu li a:focus, .footer .footer-top .footer-menu .menu li a:active {
              color: var(--blue500); }
    .footer .footer-top .footer-contacts {
      padding-top: 15px;
      padding-right: 30px;
      display: flex;
      align-items: center; }
      .footer .footer-top .footer-contacts ul {
        list-style: none;
        padding: 0;
        margin: 0; }
        .footer .footer-top .footer-contacts ul li a {
          color: var(--white);
          display: flex;
          line-height: 1;
          align-items: center;
          padding: 8px 0;
          transition: all ease 0.3s; }
          .footer .footer-top .footer-contacts ul li a:hover, .footer .footer-top .footer-contacts ul li a:focus, .footer .footer-top .footer-contacts ul li a:active {
            text-decoration: none;
            color: var(--blue500); }
          .footer .footer-top .footer-contacts ul li a span {
            width: 30px;
            text-align: center; }
    .footer .footer-top .footer-logo {
      display: flex;
      padding-top: 15px;
      align-items: center; }
      .footer .footer-top .footer-logo img {
        height: 50px;
        width: auto; }
  .footer .footer-bottom .disclamer {
    font-size: 11px;
    color: var(--grey600);
    margin-bottom: 30px; }
    .footer .footer-bottom .disclamer p {
      margin-bottom: 5px; }
  .footer .footer-bottom .copyright {
    text-align: center;
    font-size: 14px;
    color: var(--white); }

.breadcrumbs .breadcrumb {
  background: none;
  font-size: 14px;
  border-bottom: 1px solid var(--grey200);
  padding: 0;
  border-radius: 0; }
  .breadcrumbs .breadcrumb li {
    display: flex;
    align-items: center; }
    .breadcrumbs .breadcrumb li.active span {
      color: var(--blue500);
      box-shadow: 0 1px 0 var(--blue500); }
    .breadcrumbs .breadcrumb li a, .breadcrumbs .breadcrumb li span {
      padding-top: 10px;
      padding-bottom: 10px; }
    .breadcrumbs .breadcrumb li a {
      color: var(--grey500);
      text-decoration: none; }
      .breadcrumbs .breadcrumb li a:hover, .breadcrumbs .breadcrumb li a:focus, .breadcrumbs .breadcrumb li a:active {
        color: var(--grey900);
        text-decoration: none; }

.top-wide-banner {
  margin-top: 40px; }
  .top-wide-banner a {
    display: block;
    border-radius: 4px;
    overflow: hidden; }
  .top-wide-banner img {
    width: 100%;
    height: auto; }

.content {
  padding-top: 15px;
  padding-bottom: 30px; }
  .content .heading {
    color: var(--grey900);
    text-transform: none;
    margin-bottom: 30px; }

.article {
  margin-bottom: 30px; }
  .article .article-info .date {
    display: inline-block;
    padding: 5px 10px;
    font-size: 14px;
    color: #fff;
    background: var(--blue500);
    border-radius: 4px;
    line-height: 1.2;
    margin-bottom: 10px; }
  .article .heading h3, .article .heading h1 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 0;
    margin-top: 0; }
  .article .article-image {
    height: 300px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 4px; }
    .article .article-image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }

.tags {
  margin-bottom: 30px; }
  .tags ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    list-style: none;
    padding: 0; }
    .tags ul li a {
      margin: 5px 8px 5px 0;
      line-height: 1.2;
      font-size: 12px;
      padding: 5px 10px;
      border-radius: 4px; }

.related-articles {
  margin-bottom: 30px; }
  .related-articles .heading {
    border-bottom: 3px solid var(--grey200); }
    .related-articles .heading h3 {
      box-shadow: 0 3px 0 var(--blue500);
      line-height: 1.2;
      display: inline-block;
      padding-bottom: 15px;
      margin: 0;
      font-size: 18px;
      font-weight: 900; }
  .related-articles .articles-items .item {
    display: flex;
    align-items: flex-start; }
    .related-articles .articles-items .item + .item {
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid var(--grey100); }
    .related-articles .articles-items .item .image {
      min-width: 120px;
      min-height: 90px;
      max-height: 90px;
      max-width: 120px;
      margin-right: 15px;
      overflow: hidden;
      border-radius: 4px;
      background: var(--grey200); }
      .related-articles .articles-items .item .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        margin: 0; }
    .related-articles .articles-items .item .info .title a {
      font-size: 18px;
      font-weight: 900;
      color: var(--blue500);
      transition: all ease 0.3s; }
      .related-articles .articles-items .item .info .title a:hover {
        color: var(--blue800); }
    .related-articles .articles-items .item .info .date {
      margin-bottom: 5px; }
      .related-articles .articles-items .item .info .date span {
        display: inline-block;
        font-size: 12px;
        line-height: 1;
        padding: 5px 10px;
        color: var(--grey500);
        background: var(--grey100);
        border-radius: 4px; }
    .related-articles .articles-items .item .info .description {
      font-size: 12px; }

.right-sidebar {
  padding-top: 15px; }
  .right-sidebar .moduletable {
    margin-bottom: 40px; }
    .right-sidebar .moduletable .heading {
      border-bottom: 3px solid var(--grey200); }
      .right-sidebar .moduletable .heading h3 {
        font-size: 18px;
        font-weight: 900;
        box-shadow: 0 3px 0 var(--blue500);
        margin: 0;
        padding: 0 0 15px 0;
        display: inline-block; }
  .right-sidebar .related-articles .related-item + .related-item {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--grey200); }
  .right-sidebar .related-articles .related-item a {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    color: var(--grey900); }
    .right-sidebar .related-articles .related-item a:hover {
      color: var(--blue500); }
    .right-sidebar .related-articles .related-item a .image {
      height: 70px;
      width: 70px;
      min-height: 70px;
      min-width: 70px;
      margin-right: 15px;
      overflow: hidden;
      position: relative;
      display: block;
      border-radius: 4px; }
      .right-sidebar .related-articles .related-item a .image img {
        object-fit: cover;
        width: 100%;
        height: 100%; }
    .right-sidebar .related-articles .related-item a .title {
      font-size: 14px;
      line-height: 1.2; }
  .right-sidebar .banner a {
    display: block;
    border-radius: 4px;
    overflow: hidden; }
  .right-sidebar .banner img {
    width: 100%;
    height: auto; }
  .right-sidebar .right-articles .item a {
    display: grid;
    grid-template-areas: "image date" "image title";
    grid-column-gap: 15px;
    grid-row-gap: 5px;
    justify-content: start; }
    .right-sidebar .right-articles .item a .image {
      grid-area: image;
      height: 60px;
      width: 60px;
      border-radius: 4px;
      overflow: hidden; }
      .right-sidebar .right-articles .item a .image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .right-sidebar .right-articles .item a .date {
      grid-area: date;
      line-height: 1; }
      .right-sidebar .right-articles .item a .date span {
        line-height: 1;
        display: inline-block;
        padding: 5px;
        border-radius: 4px;
        background: var(--grey200);
        color: var(--grey500);
        font-size: 12px; }
    .right-sidebar .right-articles .item a .title {
      grid-area: title;
      line-height: 1.2;
      font-size: 14px;
      font-weight: 900; }
  .right-sidebar .right-articles .item + .item {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid var(--grey200); }

.blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px; }
  .blog .blog-item .image {
    margin-bottom: 15px; }
    .blog .blog-item .image a {
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-radius: 4px;
      display: block;
      position: relative; }
      .blog .blog-item .image a::before {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 60px;
        font-family: 'icons';
        content: "\e907";
        background: rgba(33, 150, 243, 0.8);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: all ease 0.3s;
        padding-top: 30px; }
      .blog .blog-item .image a:hover::before {
        opacity: 1;
        padding-top: 0px;
        transition: all ease 0.3s; }
      .blog .blog-item .image a img {
        object-fit: cover;
        width: 100%;
        height: 100%; }
  .blog .blog-item .date {
    font-size: 12px;
    color: var(--grey500);
    margin-bottom: 15px; }
  .blog .blog-item .title {
    font-size: 18px;
    font-weight: 900;
    color: var(--blue500);
    margin-bottom: 15px; }
    .blog .blog-item .title a {
      color: var(--blue500);
      transition: all ease 0.3s; }
      .blog .blog-item .title a:hover {
        color: var(--blue700); }
  .blog .blog-item .description {
    font-size: 14px; }

.trade-with-us {
  background: var(--grey100);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: stretch; }
  .trade-with-us .image {
    margin-bottom: 30px; }
  .trade-with-us .title {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 900; }
  .trade-with-us .btn {
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 16px; }
    .trade-with-us .btn + .btn {
      margin-top: 10px; }

.registration {
  background: var(--blue800) url("../images/register-bg.jpg") no-repeat center;
  background-size: cover; }
  .registration .logo {
    margin-top: 15px; }
  .registration .content .heading {
    color: var(--white); }
  .registration .footer {
    color: var(--white);
    background: none;
    padding: 15px 0; }
  .registration .form-container .nav-tabs {
    background: var(--grey200);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    border-bottom: 0; }
    .registration .form-container .nav-tabs .nav-link {
      padding: 15px;
      font-size: 18px;
      color: var(--grey600);
      border-radius: 16px 16px 0 0;
      border: 0; }
      .registration .form-container .nav-tabs .nav-link.active {
        color: var(--blue500); }
  .registration .form-container .tab-content {
    background: var(--white);
    padding: 40px;
    border-radius: 0 0 16px 16px; }

.registration-form h5 {
  text-transform: capitalize; }
.registration-form .input-field {
  position: relative;
  margin-bottom: 30px; }
  .registration-form .input-field label {
    display: flex;
    align-items: center;
    position: absolute;
    height: 38px;
    line-height: 1;
    margin: 0;
    top: 0;
    transition: all ease 0.3s;
    font-size: 16px;
    color: var(--grey900);
    z-index: 1; }
  .registration-form .input-field .input-control, .registration-form .input-field .empty {
    border: 1px solid var(--white);
    border: 0;
    border-radius: 0;
    box-shadow: 0 1px 0 var(--grey300);
    padding-left: 0;
    padding-right: 180px;
    position: relative;
    margin: 0;
    background: none;
    font-weight: 900; }
    .registration-form .input-field .input-control:focus + label, .registration-form .input-field .input-control.fill + label, .registration-form .input-field .empty:focus + label, .registration-form .input-field .empty.fill + label {
      top: -20px;
      transition: all ease 0.3s;
      font-size: 12px;
      color: var(--blue500);
      z-index: 1; }
  .registration-form .input-field .form-help-text {
    position: absolute;
    height: 38px;
    display: none;
    align-items: center;
    text-align: right;
    top: 0;
    left: auto;
    right: 38px;
    bottom: 0;
    margin: 0;
    color: var(--grey400); }
    .registration-form .input-field .form-help-text.text-red {
      color: var(--red500); }
  .registration-form .input-field select {
    z-index: 0;
    border: 1px solid var(--white) !important;
    border-radius: 0;
    box-shadow: 0 1px 0 var(--grey300);
    padding-left: 0;
    padding-right: 180px;
    position: relative;
    margin: 0;
    background: var(--white) url("../images/arrow-dropdown.svg") no-repeat;
    background-position: calc(100% - 28px) center;
    background-size: 10px auto;
    font-weight: 900;
    appearance: none; }
    .registration-form .input-field select:focus, .registration-form .input-field select.fill {
      border: 1px solid var(--white) !important; }
      .registration-form .input-field select:focus + label, .registration-form .input-field select.fill + label {
        top: -20px;
        transition: all ease 0.3s;
        font-size: 12px;
        color: var(--blue500);
        border-color: transparent;
        z-index: 3; }
  .registration-form .input-field .btn-help {
    display: block;
    position: absolute;
    z-index: 10;
    top: 0;
    left: auto;
    right: 0;
    width: 38px;
    height: 38px;
    background: var(--white);
    box-shadow: 0;
    border-radius: 0;
    margin-left: auto;
    margin-right: 0; }
    .registration-form .input-field .btn-help:hover, .registration-form .input-field .btn-help:focus, .registration-form .input-field .btn-help:active {
      box-shadow: none; }
    .registration-form .input-field .btn-help.info {
      background: url("../images/icon-info.svg") no-repeat center; }
  .registration-form .input-field .strength {
    margin-top: 5px; }
    .registration-form .input-field .strength span {
      background: #DFFFCD;
      color: #2C930C;
      display: inline-block;
      margin-right: 5px;
      border-radius: 4px;
      font-size: 12px;
      line-height: 1;
      padding: 4px 8px; }
      .registration-form .input-field .strength span.red {
        background: var(--red100);
        color: var(--red900); }
  .registration-form .input-field.has-error .form-help-text {
    display: flex; }
  .registration-form .input-field.has-error .input-control {
    box-shadow: 0 1px 0 var(--red500); }
  .registration-form .input-field.select-container small.form-help-text.text-red {
    right: 68px !important; }
.registration-form .input-phone {
  position: relative;
  margin-bottom: 30px; }
  .registration-form .input-phone .iti {
    width: 100%; }
  .registration-form .input-phone .iti__selected-flag {
    background: none;
    border: none; }
    .registration-form .input-phone .iti__selected-flag:hover, .registration-form .input-phone .iti__selected-flag:focus, .registration-form .input-phone .iti__selected-flag:active {
      background: none !important;
      border: none;
      outline: none; }
  .registration-form .input-phone label {
    display: flex;
    align-items: center;
    position: absolute;
    height: 38px;
    line-height: 1;
    margin: 0;
    top: 0;
    transition: all ease 0.3s;
    font-size: 16px;
    color: var(--grey900);
    z-index: 1;
    top: -20px;
    transition: all ease 0.3s;
    font-size: 12px;
    color: var(--blue500);
    z-index: 3; }
  .registration-form .input-phone input, .registration-form .input-phone .empty {
    border: 1px solid var(--white);
    z-index: 2;
    border: 0;
    border-radius: 0;
    box-shadow: 0 1px 0 var(--grey300);
    padding-left: 0;
    padding-right: 180px;
    position: relative;
    margin: 0;
    background: none;
    font-weight: 900;
    font-family: 'Roboto-Bold'; }
    .registration-form .input-phone input::placeholder, .registration-form .input-phone .empty::placeholder {
      color: var(--grey900);
      font-family: 'Roboto-Bold'; }
  .registration-form .input-phone .form-help-text {
    position: absolute;
    height: 38px;
    display: none;
    align-items: center;
    text-align: right;
    top: 0;
    left: auto;
    right: 38px;
    bottom: 0;
    margin: 0;
    color: var(--grey400); }
    .registration-form .input-phone .form-help-text.text-red {
      color: var(--red500); }
  .registration-form .input-phone .btn-help {
    display: block;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 38px;
    height: 38px;
    background: var(--white);
    box-shadow: 0;
    border-radius: 0;
    margin-left: auto;
    margin-right: 0; }
    .registration-form .input-phone .btn-help:hover, .registration-form .input-phone .btn-help:focus, .registration-form .input-phone .btn-help:active {
      box-shadow: none; }
    .registration-form .input-phone .btn-help.info {
      background: url("../images/icon-info.svg") no-repeat center; }
  .registration-form .input-phone.has-error .form-help-text {
    display: flex; }
.registration-form .pin-group {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; }
  .registration-form .pin-group button {
    width: 120px;
    margin-right: 10px; }
    .registration-form .pin-group button.btn-help {
      display: block;
      position: absolute;
      z-index: 10;
      top: 0;
      left: auto;
      right: 0;
      width: 38px;
      height: 38px;
      background: var(--white);
      box-shadow: 0;
      border-radius: 0;
      margin-left: auto;
      margin-right: 0;
      background: url(../images/icon-info.svg) no-repeat center; }
  .registration-form .pin-group input {
    width: 120px;
    text-align: center;
    font-size: 1rem; }
  .registration-form .pin-group.has-error input {
    box-shadow: 0 1px 0 var(--red500); }
.registration-form .form-check {
  padding-left: 0;
  position: relative; }
  .registration-form .form-check label {
    font-size: 11px;
    color: var(--grey500); }
  .registration-form .form-check input {
    position: absolute;
    z-index: -1;
    opacity: 0; }
    .registration-form .form-check input + label {
      display: inline-flex;
      align-items: flex-start;
      user-select: none; }
      .registration-form .form-check input + label::before {
        content: '';
        display: inline-block;
        width: 30px;
        height: 30px;
        flex-shrink: 0;
        flex-grow: 0;
        background: var(--grey300);
        margin-top: -5px;
        margin-right: 5px;
        background: url("../images/check-default.svg") no-repeat center;
        background-size: 100% 100%; }
    .registration-form .form-check input:checked + label::before {
      border-color: #0b76ef;
      background: url("../images/check-checked.svg") no-repeat center;
      background-size: 100% 100%; }
  .registration-form .form-check .btn-help {
    display: block;
    position: absolute;
    z-index: 10;
    top: 0;
    left: auto;
    right: 0;
    width: 38px;
    height: 38px;
    background: var(--white);
    box-shadow: 0;
    border-radius: 0;
    margin-left: auto;
    margin-right: 0; }
    .registration-form .form-check .btn-help:hover, .registration-form .form-check .btn-help:focus, .registration-form .form-check .btn-help:active {
      box-shadow: none; }
    .registration-form .form-check .btn-help.info {
      background: url("../images/icon-info.svg") no-repeat center; }

.verify-email h3 {
  font-size: 24px;
  font-family: 'Roboto-Bold'; }
.verify-email h4 {
  font-size: 18px;
  font-family: 'Roboto-Bold';
  margin-bottom: 15px; }
.verify-email p {
  line-height: 1.2; }
.verify-email .small {
  margin-bottom: 8px; }

.demo-registration-description {
  padding-right: 60px; }

.demo-features .item {
  align-items: center;
  display: flex;
  width: 100%;
  padding: 5px 0; }
  .demo-features .item .icon {
    height: 48px;
    width: auto;
    margin-right: 20px; }

.demo-registration-form {
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  margin-top: -60px; }

.login-form {
  padding: 40px;
  background: var(--white);
  border-radius: 16px; }
  .login-form .heading-image {
    max-width: 300px;
    width: auto; }
  .login-form .title {
    font-size: 24px;
    font-weight: 900; }

.contact-us .sub-heading {
  font-weight: bold;
  margin-bottom: 40px; }
.contact-us .contacts-items .contact-link {
  background: var(--grey100);
  color: var(--grey900);
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-decoration: none;
  transition: all ease 0.5s;
  box-shadow: 0 0 0 var(--grey50); }
  .contact-us .contacts-items .contact-link span {
    font-size: 16px;
    font-weight: 500;
    color: var(--blue500);
    transition: all ease 0.8s; }
  .contact-us .contacts-items .contact-link:hover {
    background: var(--blue600);
    color: #fff;
    box-shadow: 0 15px 30px var(--grey300); }
    .contact-us .contacts-items .contact-link:hover span {
      color: #fff; }
.contact-us .online-contacts {
  padding: 80px;
  background: var(--grey200);
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18); }
  .contact-us .online-contacts h2 {
    font-size: 30px;
    margin-bottom: 40px; }
  .contact-us .online-contacts .online-contacts-items a {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    color: var(--grey900);
    padding: 40px;
    background: none;
    border: 1px solid var(--grey500);
    border-radius: 8px; }
    .contact-us .online-contacts .online-contacts-items a span {
      font-size: 70px;
      margin-bottom: 20px; }
    .contact-us .online-contacts .online-contacts-items a:hover {
      text-decoration: none;
      background: var(--blue600);
      color: #fff;
      border-color: var(--blue600); }

.feedback {
  padding: 60px 0;
  background: var(--grey100); }
  .feedback .heading {
    margin-bottom: 30px; }
  .feedback .feedback-form .form-row .column-left {
    padding-right: 60px; }
  .feedback .feedback-form label {
    font-size: 12px;
    color: var(--blue600); }
  .feedback .feedback-form input.form-control-lg {
    height: 48px; }
  .feedback .feedback-form textarea {
    resize: none; }
  .feedback .feedback-form .form-control-lg {
    border-radius: 8px;
    border: transparent;
    box-shadow: 0 0 15px var(--grey300);
    color: var(--grey900);
    font-weight: 900;
    font-size: 16px; }
    .feedback .feedback-form .form-control-lg:focus {
      box-shadow: 0 0 15px var(--grey400); }
  .feedback .feedback-form .form-group.is-invalid label {
    color: var(--red500); }
  .feedback .feedback-form .form-group.is-invalid .form-control-lg {
    box-shadow: 0 0 15px var(--red200); }

.tabs-contract-details .tab-pane {
  box-shadow: none !important; }
.tabs-contract-details .nav-pills {
  padding: 4px;
  border-radius: 8px;
  background: var(--grey100); }
  .tabs-contract-details .nav-pills .nav-link {
    padding: 15px 8px;
    text-transform: uppercase; }
    .tabs-contract-details .nav-pills .nav-link.active {
      background: var(--blue600); }

.trading-forex tr td {
  font-size: 14px; }

.trading-forex .fx-pairs .table .flags-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1.3;
  color: var(--grey600); }
  .trading-forex .fx-pairs .table .flags-wrapper p {
    font-size: 14px;
    text-align: center; }

.trading-forex .fx-pairs .table.trading-tools tbody tr .description-icon {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .trading-forex .fx-pairs .table.trading-tools tbody tr .description-icon img {
    height: 30px; }
  .trading-forex .fx-pairs .table.trading-tools tbody tr .description-icon p {
    margin-top: 5px;
    font-size: 14px; }

.trading-forex .fx-pairs .table.trading-tools thead tr th {
  font-size: 16px; }
.trading-forex .fx-pairs .table.trading-tools tbody tr td {
  font-size: 14px; }

.trading-forex .fx-pairs .table .flags-wrapper img:last-child {
  margin-right: 0px;
  margin-left: 0px; }

.heading-block .button {
  height: 60px;
  width: auto; }
  .heading-block .button img {
    height: 100%;
    width: auto; }
  .heading-block .button.btn-download {
    background: var(--red500);
    color: var(--white);
    padding: 15px 24px;
    border-radius: 8px;
    line-height: 1;
    text-transform: uppercase;
    display: flex;
    align-items: center; }
    .heading-block .button.btn-download:hover {
      text-decoration: none;
      background: var(--green); }

.mt4-features .mt4-features-items {
  background: var(--grey200);
  border-radius: 16px; }
  .mt4-features .mt4-features-items .item {
    text-align: center;
    font-size: 14px;
    padding: 50px 80px; }
    .mt4-features .mt4-features-items .item span {
      margin-bottom: 15px;
      font-size: 86px;
      color: var(--blue500); }

.system-requirements .buttons a img {
  height: 50px;
  width: auto; }

.powerful-platform {
  padding: 60px 0; }
  .powerful-platform .platform-items span {
    font-size: 80px; }

.multiterminal-features .mt4-features-items {
  background: var(--grey200);
  border-radius: 16px; }
  .multiterminal-features .mt4-features-items .item {
    font-size: 14px;
    padding: 50px 80px;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap; }
    .multiterminal-features .mt4-features-items .item span {
      font-size: 70px;
      color: var(--blue500); }

.trading-tools .flags-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .trading-tools .flags-wrapper img {
    margin: 0 auto 5px auto !important; }

.trading-forex .fx-pairs .table.trading-tools tbody tr .description-icon {
  display: flex;
  flex-direction: column !important;
  align-items: center;
  justify-content: center; }
  .trading-forex .fx-pairs .table.trading-tools tbody tr .description-icon span {
    margin: 0 auto 5px auto !important; }

.trading-forex .fx-pairs .table.trading-tools tbody tr td {
  height: auto !important;
  min-height: 68px; }

.partner-form-container {
  padding: 40px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1); }
  .partner-form-container .btn-light {
    border: 0 !important;
    background: none !important;
    border: none !important;
    padding-left: 0; }
    .partner-form-container .btn-light:hover, .partner-form-container .btn-light:active, .partner-form-container .btn-light:focus {
      border: 0 !important;
      background: none !important;
      border: none !important; }
  .partner-form-container .btn-light:not(:disabled):not(.disabled).active, .partner-form-container .btn-light:not(:disabled):not(.disabled):active, .partner-form-container .show > .btn-light.dropdown-toggle {
    border: 0 !important;
    background: none !important;
    outline: none !important;
    box-shadow: none !important; }
  .partner-form-container .input-field .input-control {
    padding-right: 15px; }
  .partner-form-container .form-group.filled label {
    top: -20px;
    transition: all ease 0.3s;
    font-size: 12px;
    color: var(--blue500);
    z-index: 3; }
  .partner-form-container .filter-option-inner-inner {
    font-weight: bold;
    color: var(--grey800); }
  .partner-form-container .bs-placeholder .filter-option-inner-inner {
    color: var(--grey400);
    font-weight: normal;
    font-size: 0; }
  .partner-form-container .bootstrap-select {
    z-index: 5; }

.registration-form .form-check .input-btn.yes + label {
  background: var(--white);
  position: relative;
  border: 1px solid var(--grey300);
  border-radius: 8px;
  font-size: 14px;
  display: block;
  padding: 10px 20px; }
  .registration-form .form-check .input-btn.yes + label::before {
    display: none; }
.registration-form .form-check .input-btn.yes:checked + label {
  background: var(--green);
  border: 1px solid var(--green);
  color: var(--white); }
.registration-form .form-check .input-btn.no + label {
  background: var(--white);
  position: relative;
  border: 1px solid var(--grey300);
  border-radius: 8px;
  font-size: 14px;
  display: block;
  padding: 10px 20px; }
  .registration-form .form-check .input-btn.no + label::before {
    display: none; }
.registration-form .form-check .input-btn.no:checked + label {
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--white); }
.registration-form .dropdown-item {
  background: var(--white) url("../images/check-bg.svg") no-repeat center;
  background-position: calc(100% - 10px) center;
  background-size: 18px auto; }
.registration-form .dropdown-item.active, .registration-form .dropdown-item:active {
  color: var(--grey800); }

.partner-registration {
  background: var(--blue800) url("../images/partners-registration-bg.jpg") no-repeat center;
  background-size: cover; }
  .partner-registration .article-body .heading {
    color: var(--white); }

.glossary-container .accordion .accordion-section {
  display: grid;
  grid-template-columns: 1fr 6fr;
  padding: 30px;
  grid-gap: 30px;
  background: var(--grey50);
  align-items: start;
  border-radius: 16px; }
  .glossary-container .accordion .accordion-section.section-clear {
    display: block; }
  .glossary-container .accordion .accordion-section + .accordion-section {
    margin-top: 30px; }
  .glossary-container .accordion .accordion-section .letter {
    font-size: 80px;
    display: block;
    text-align: center;
    color: var(--blue600);
    align-self: start;
    line-height: 1; }
  .glossary-container .accordion .accordion-section .accordion-item .collapse-title {
    position: relative;
    cursor: pointer;
    color: var(--grey500);
    display: flex;
    padding: 5px 0; }
    .glossary-container .accordion .accordion-section .accordion-item .collapse-title::before {
      display: block;
      width: 10px;
      height: 2px;
      content: "";
      background: var(--grey500);
      position: absolute;
      left: auto;
      right: 0;
      top: 15px;
      border-radius: 1px; }
    .glossary-container .accordion .accordion-section .accordion-item .collapse-title::after {
      display: block;
      width: 10px;
      height: 2px;
      content: "";
      background: var(--grey500);
      position: absolute;
      left: auto;
      right: 0;
      top: 15px;
      transform: rotate(90deg);
      transition: all ease 0.3s;
      border-radius: 1px; }
    .glossary-container .accordion .accordion-section .accordion-item .collapse-title:hover {
      color: var(--grey800); }
  .glossary-container .accordion .accordion-section .accordion-item .collapse-details {
    margin: 5px 0;
    background: var(--white);
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 8px;
    font-size: 14px; }
  .glossary-container .accordion .accordion-section .accordion-item.open .collapse-title {
    color: var(--blue600);
    font-weight: bold; }
    .glossary-container .accordion .accordion-section .accordion-item.open .collapse-title::before {
      background: var(--grey500); }
    .glossary-container .accordion .accordion-section .accordion-item.open .collapse-title::after {
      background: var(--grey500);
      transform: rotate(0deg);
      transition: all ease 0.3s; }

.nav-glossary-container {
  top: 80px; }
  .nav-glossary-container .nav-glossary {
    flex-direction: column;
    align-items: center; }
    .nav-glossary-container .nav-glossary li a {
      display: block;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      text-align: center;
      line-height: 36px;
      padding: 0; }
      .nav-glossary-container .nav-glossary li a:hover {
        text-decoration: none; }
      .nav-glossary-container .nav-glossary li a.active {
        background: var(--blue500);
        color: var(--white); }

.page-header {
  background-color: var(--blue700);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--white);
  padding: 100px 0; }
  .page-header .heading {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 30px; }
  .page-header .description {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 30px; }
  .page-header.vps-header {
    background-image: url("../images/vps/vps-bg.jpg"); }
  .page-header.why-we {
    background-image: url("../images/why/why-header-bg.jpg"); }
  .page-header.refer-a-friend {
    background-image: url("../img/refer-a-friend/refer-a-friend-lg.jpg"); }

.server-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px; }
  .server-types .item {
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    text-align: center;
    z-index: 1;
    margin-top: 0px;
    transition: all ease 0.3s;
    position: relative;
    align-self: start; }
    .server-types .item:hover {
      box-shadow: 0 20px 60px var(--blue200);
      z-index: 2;
      margin-top: -15px; }
    .server-types .item .item-icon {
      height: 80px;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%; }
      .server-types .item .item-icon img {
        max-height: 100%;
        height: auto;
        width: auto; }
    .server-types .item .item-title {
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 30px;
      color: var(--grey800);
      text-transform: uppercase; }
    .server-types .item .item-fields {
      margin-bottom: 30px; }
      .server-types .item .item-fields .item-field {
        padding: 15px 0; }
        .server-types .item .item-fields .item-field + .item-field {
          border-top: 1px solid var(--grey200); }
        .server-types .item .item-fields .item-field .field-label {
          font-size: 12px;
          color: var(--grey500); }
        .server-types .item .item-fields .item-field .field-value {
          font-size: 16px;
          font-weight: 900;
          color: var(--grey800); }

.vps-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 30px; }
  .vps-features .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; }
    .vps-features .item span {
      font-size: 70px;
      color: var(--blue600);
      margin-bottom: 30px; }
    .vps-features .item p {
      margin-bottom: 0;
      font-weight: 900; }

.our-features {
  margin-bottom: 30px; }
  .our-features .item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px; }
    .our-features .item span {
      font-size: 80px;
      color: var(--grey800);
      margin-bottom: 15px; }
    .our-features .item .value {
      font-size: 32px;
      color: var(--blue500);
      font-weight: 900;
      margin-bottom: 5px; }
    .our-features .item .title {
      text-transform: uppercase;
      font-size: 16px;
      font-weight: 900;
      margin-bottom: 0; }

.partners-header {
  background: #2196F3 url("../images/partners/partners-header.jpg") no-repeat center;
  background-size: cover; }

.partnership-types .item {
  padding: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 16px;
  min-height: 100%; }
  .partnership-types .item.bg-blue {
    box-shadow: 0 10px 30px rgba(44, 155, 243, 0.6); }
  .partnership-types .item.bg-red {
    box-shadow: 0 10px 30px rgba(239, 83, 80, 0.6); }
  .partnership-types .item.bg-green {
    box-shadow: 0 10px 30px rgba(17, 211, 141, 0.6); }
  .partnership-types .item .icon {
    width: 100%;
    width: 160px;
    height: 160px;
    background: var(--white);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 15px; }
    .partnership-types .item .icon img {
      height: 100px; }
  .partnership-types .item .title {
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px; }
  .partnership-types .item .profit {
    width: 100%;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3; }
  .partnership-types .item .description {
    width: 100%;
    margin-bottom: 30px; }
  .partnership-types .item .btn {
    left: auto;
    right: 0;
    bottom: 0;
    top: auto; }

.partnership-bennefits .col-12 {
  margin-bottom: 30px; }
.partnership-bennefits .item {
  padding: 30px;
  border-radius: 16px;
  min-height: 100%;
  background: var(--grey100);
  position: relative;
  display: grid;
  grid-template-areas: "icon title" "icon description";
  grid-template-columns: 1fr 4fr;
  grid-column-gap: 30px; }
  .partnership-bennefits .item .icon {
    grid-area: icon;
    text-align: center; }
    .partnership-bennefits .item .icon img {
      max-width: 100%;
      width: auto;
      height: 80px; }
  .partnership-bennefits .item .title {
    grid-area: title;
    font-size: 18px;
    font-weight: 900;
    color: var(--blue600);
    margin-bottom: 15px; }
  .partnership-bennefits .item .description {
    grid-area: description; }

.how-to-begin {
  text-align: center;
  background: var(--grey800) url("../images/partners/simple.jpg") no-repeat center;
  background-size: cover;
  color: var(--white);
  padding: 60px 0; }
  .how-to-begin .how-to-begin-items .item {
    padding: 60px;
    text-align: center; }
    .how-to-begin .how-to-begin-items .item .icon {
      text-align: center;
      margin-bottom: 30px; }
      .how-to-begin .how-to-begin-items .item .icon img {
        height: 80px; }
    .how-to-begin .how-to-begin-items .item .title {
      font-size: 18px;
      font-weight: 900;
      margin-bottom: 15px;
      line-height: 1.3; }
    .how-to-begin .how-to-begin-items .item .description {
      font-size: 14px; }

.trading-calculator-header {
  background: var(--blue700) url("../images/trading-calculator/trading-calculator-header-xl.jpg") no-repeat center;
  background-size: cover; }

.calculator-container {
  border-radius: 16px;
  background: var(--blue600); }
  .calculator-container .form-header {
    background: var(--grey100);
    border-radius: 16px 16px 0 0;
    padding: 30px; }
  .calculator-container .form-body {
    background: var(--grey100);
    border-radius: 0 0 16px 16px;
    padding: 0 30px; }
    .calculator-container .form-body .field {
      padding: 0 15px 40px 15px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center; }
      .calculator-container .form-body .field .icon {
        font-size: 60px;
        display: block;
        margin-bottom: 15px;
        color: var(--blue500); }
      .calculator-container .form-body .field select {
        appearance: none;
        background: #fff url(../images/select-arrow-down.svg) no-repeat calc(100% - 8px) center;
        color: var(--grey800); }
      .calculator-container .form-body .field .form-control {
        width: 100px;
        border: none;
        border-radius: 8px;
        font-weight: 900; }
  .calculator-container .form-footer {
    padding: 30px; }
    .calculator-container .form-footer .field {
      color: #fff;
      padding: 0px 15px;
      display: flex; }
      .calculator-container .form-footer .field + .field {
        border-left: 1px solid var(--blue100); }
      .calculator-container .form-footer .field .form-group {
        display: flex;
        flex-direction: column;
        align-items: center; }
      .calculator-container .form-footer .field .form-control {
        background: none;
        color: var(--white);
        border: none;
        padding: 0;
        font-size: 36px;
        line-height: 1;
        height: auto;
        text-align: center; }
        .calculator-container .form-footer .field .form-control:focus, .calculator-container .form-footer .field .form-control:active {
          box-shadow: none;
          outline: none;
          border: none; }

.notification .messages-container .messages.success, .notification .messages-container .messages.status {
  background: rgba(17, 211, 141, 0.8) url("../images/success.png") no-repeat 15px 15px;
  background-size: auto 34px;
  color: #fff; }

.loader-container {
  background: rgba(8, 30, 80, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000; }
  .loader-container .loader {
    width: 150px;
    height: 150px;
    padding-top: 15px;
    display: flex;
    align-content: center;
    justify-content: center; }
    .loader-container .loader .bar {
      width: 9px;
      height: 9px;
      background: var(--blue100);
      margin-left: 2px;
      margin-right: 2px;
      position: relative;
      animation-duration: 2s;
      animation-name: bar;
      animation-iteration-count: infinite;
      animation-timing-function: ease-in-out; }
      .loader-container .loader .bar:nth-child(1) {
        height: 24px;
        margin-top: 66px;
        animation-delay: 0s;
        background: var(--blue100); }
      .loader-container .loader .bar:nth-child(2) {
        height: 36px;
        margin-top: 42px;
        animation-delay: 0.1s;
        background: var(--blue200); }
      .loader-container .loader .bar:nth-child(3) {
        height: 46px;
        margin-top: 56px;
        animation-delay: 0.2s;
        background: var(--blue300); }
      .loader-container .loader .bar:nth-child(4) {
        height: 65px;
        margin-top: 60px;
        animation-delay: 0.3s;
        background: var(--blue400); }
      .loader-container .loader .bar:nth-child(5) {
        height: 77px;
        margin-top: 25px;
        animation-delay: 0.4s;
        background: var(--blue500); }
@keyframes bar {
  0% {
    top: 0px; }
  50% {
    top: -30px; }
  100% {
    top: 0px; } }
.swap-free {
  background-color: #017649;
  background-image: url("../images/account-swap-free/slider-xl.jpg");
  color: var(--white); }
  .swap-free .description {
    font-size: 18px; }

.features.dark-green {
  background: #006F44;
  color: #fff; }
.features .features-item {
  text-align: center;
  padding: 60px; }
  .features .features-item span {
    font-size: 80px;
    margin-bottom: 15px;
    display: inline-block; }
  .features .features-item p {
    margin-bottom: 0; }

.ornament-bg {
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin: 15px 0;
  background: var(--white) url("../images/account-swap-free/islamic-ornament.png");
  background-attachment: local; }

.accordion-faq .card {
  border: 1px solid var(--grey200);
  background: var(--grey100);
  border-radius: 8px !important;
  padding: 0; }
  .accordion-faq .card + .card {
    margin-top: 15px; }
  .accordion-faq .card .card-header {
    border: none;
    background: none;
    padding: 0; }
    .accordion-faq .card .card-header h2 .btn {
      padding: 15px 30px;
      font-size: 18px;
      font-weight: 700;
      color: var(--grey900);
      box-shadow: none;
      text-decoration: none; }
      .accordion-faq .card .card-header h2 .btn:hover, .accordion-faq .card .card-header h2 .btn:focus, .accordion-faq .card .card-header h2 .btn:active {
        box-shadow: none;
        text-decoration: none; }
  .accordion-faq .card .card-body {
    background: none;
    border: none;
    padding: 0 30px 30px 30px;
    color: var(--grey600); }

.accounts-compare-table tr {
  display: grid;
  grid-column-gap: 16px;
  grid-template-columns: repeat(5, 1fr); }
  .accounts-compare-table tr td {
    background: var(--grey100);
    padding: 15px;
    font-size: 14px;
    position: relative;
    text-align: center;
    border-bottom: 1px solid var(--grey300); }
    .accounts-compare-table tr td:first-child {
      background: var(--white);
      font-weight: 700;
      text-align: left; }
    .accounts-compare-table tr td .label {
      border-radius: 0px 16px 0 16px;
      padding: 6px 16px;
      font-size: 12px;
      display: inline-block;
      position: absolute;
      top: 0;
      right: 0; }
  .accounts-compare-table tr:nth-child(1) td {
    border-radius: 16px 16px 0 0;
    border-bottom: 0;
    padding-bottom: 0; }
  .accounts-compare-table tr:last-child td {
    border-radius: 0 0 16px 16px;
    border-bottom: 0; }
  .accounts-compare-table tr:nth-child(2) td {
    font-weight: 700;
    text-transform: uppercase; }

.security-funds {
  background: var(--blue700) url("../images/fund-security.jpg") no-repeat center;
  background-size: cover; }

.thading-signals-header img {
  margin-bottom: -80px; }
.thading-signals-header .btn {
  margin-bottom: 0; }

.trading-tools-container {
  margin: 60px 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 15px; }
  .trading-tools-container .item {
    background: var(--blue600);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    text-align: center; }
    .trading-tools-container .item span {
      margin-bottom: 20px;
      font-size: 70px; }

.steps {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .steps .step {
    width: 22%; }
    .steps .step img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 50%;
      box-shadow: 0 0 0 10px var(--grey100), 0 0 0 11px var(--grey300);
      margin-bottom: 30px; }
    .steps .step .descr {
      text-align: center;
      font-size: 18px;
      font-weight: bold; }
    .steps .step .number {
      display: block;
      width: 48px;
      height: 48px;
      display: flex;
      position: relative;
      background: var(--blue600);
      box-shadow: 0 0 0 8px var(--white);
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: bold;
      color: var(--white);
      margin-top: -80px;
      margin-bottom: 30px; }
  .steps .arrow {
    width: 12%; }
    .steps .arrow.up {
      margin-top: -150px; }
    .steps .arrow.down {
      margin-top: 30px; }
    .steps .arrow img {
      width: 100%;
      height: auto; }

.blog-category .item {
  padding: 40px 0; }
  .blog-category .item + .item {
    border-top: 1px solid var(--grey200); }
  .blog-category .item .heading {
    margin-bottom: 15px; }
  .blog-category .item .image {
    height: 300px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 4px; }
    .blog-category .item .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .blog-category .item .description {
    margin-bottom: 15px; }

.grey-section {
  background: var(--grey100);
  padding: 80px 0; }

@media (max-width: 1199.98px) {
  .slider .carousel-item {
    height: 500px;
    padding: 60px 0; }
    .slider .carousel-item .item-bg .bg-xl {
      display: none; }
    .slider .carousel-item .slider-text {
      padding-bottom: 60px; }
      .slider .carousel-item .slider-text .h1 {
        font-size: 50px; }
      .slider .carousel-item .slider-text .h3 {
        font-size: 20px; }
  .slider .carousel-indicators {
    max-width: 960px;
    margin-bottom: 60px; }

  .advantages .advantages-items {
    display: grid;
    grid-gap: 100px;
    grid-template-columns: repeat(3, 1fr); }
    .advantages .advantages-items .item .icon {
      max-height: 100px; }
    .advantages .advantages-items .item .title {
      font-size: 18px; }
    .advantages .advantages-items .item .description {
      font-size: 14px; }

  .platforms {
    padding: 100px 0; }
    .platforms .description {
      font-size: 16px;
      margin-bottom: 40px; }
    .platforms .platforms-items {
      margin-bottom: 40px; }
      .platforms .platforms-items .title {
        font-size: 16px;
        margin: 0 0 10px 0; }
      .platforms .platforms-items .items {
        list-style: none;
        padding: 0;
        column-count: 2;
        column-gap: 10px; }
        .platforms .platforms-items .items .item {
          font-size: 12px;
          padding: 5px 0; }
          .platforms .platforms-items .items .item span {
            margin-right: 5px; }
          .platforms .platforms-items .items .item .btn-sm {
            font-size: 11px;
            padding: 5px 10px; }

  .traders-support .traders-support-items {
    grid-column-gap: 30px; }
    .traders-support .traders-support-items .item .checked {
      font-size: 12px; }
      .traders-support .traders-support-items .item .checked li {
        background: url("../images/check.svg") no-repeat left 6px;
        background-size: auto 12px; }

  .payment-options {
    padding: 80px 0;
    background: var(--grey100);
    text-align: center; }
    .payment-options .heading {
      font-size: 30px;
      margin: 0 0 15px 0;
      font-weight: 900;
      text-align: center; }
    .payment-options .description {
      text-align: center;
      margin-bottom: 30px;
      font-size: 14px; }
    .payment-options .payment-items {
      display: flex;
      justify-content: space-between; }
      .payment-options .payment-items img {
        padding: 0 15px;
        max-width: 115px;
        max-height: 30px; }

  .blog {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px; }
    .blog .blog-item .image {
      margin-bottom: 10px; }
      .blog .blog-item .image a {
        height: 200px; }
        .blog .blog-item .image a::before {
          font-size: 60px; }
    .blog .blog-item .date {
      margin-bottom: 10px;
      line-height: 1; }
    .blog .blog-item .title {
      font-size: 16px;
      margin-bottom: 10px; }
    .blog .blog-item .description {
      font-size: 14px; }

  .article {
    margin-bottom: 30px; }
    .article .heading {
      margin-bottom: 15px; }
      .article .heading h3, .article .heading h1 {
        font-size: 28px; }
    .article .article-image {
      margin-bottom: 20px; }

  .related-articles .articles-items .item .image {
    min-width: 150px;
    max-width: 150px;
    min-height: 110px;
    max-height: 110px; }
  .related-articles .articles-items .item .info .title a {
    font-size: 16px;
    margin-bottom: 5px; }
  .related-articles .articles-items .item .info .date {
    margin-bottom: 5px; }
  .related-articles .articles-items .item .info .description {
    font-size: 12px; }

  .login-form .heading-image {
    max-width: 200px; }
  .login-form .title {
    font-size: 18px;
    font-weight: 900; }

  .contact-us .sub-heading {
    font-size: 20px;
    margin-bottom: 30px; }
  .contact-us .contacts-items .contact-link {
    font-size: 16px; }
    .contact-us .contacts-items .contact-link span {
      font-size: 14px; }
  .contact-us .online-contacts {
    padding: 50px; }
    .contact-us .online-contacts h2 {
      font-size: 24px;
      margin-bottom: 40px; }
    .contact-us .online-contacts .online-contacts-items a span {
      font-size: 60px;
      margin-bottom: 15px; }

  .platform-items span {
    font-size: 70px; }

  .page-header {
    padding: 80px 0; }
    .page-header .heading {
      font-size: 60px;
      margin-bottom: 20px; }
    .page-header .description {
      font-size: 24px;
      margin-bottom: 30px; }

  .our-features .item {
    padding: 30px; }
    .our-features .item span {
      font-size: 70px;
      margin-bottom: 15px; }
    .our-features .item .value {
      font-size: 24px;
      margin-bottom: 5px; }
    .our-features .item .title {
      font-size: 16px;
      text-align: center; }

  .partners-header .heading {
    font-size: 38px; }

  .partnership-types .item .icon {
    width: 100%;
    width: 120px;
    height: 120px; }
    .partnership-types .item .icon img {
      height: 80px; }
  .partnership-types .item .title {
    font-size: 18px;
    margin-bottom: 5px; }
  .partnership-types .item .profit {
    font-size: 24px;
    margin-bottom: 15px; }
  .partnership-types .item .description {
    font-size: 14px;
    margin-bottom: 30px; }

  .how-to-begin .how-to-begin-items .item {
    padding: 40px; }

  .trading-calculator-header .heading {
    font-size: 42px; }
  .trading-calculator-header .description {
    font-size: 18px; }
  .trading-calculator-header ol {
    font-size: 14px; }

  .swap-free {
    background-image: url("../images/account-swap-free/islamic-account-lg.jpg"); }
    .swap-free .heading {
      font-size: 40px; }
    .swap-free .description {
      font-size: 16px; }

  .features .features-item {
    padding: 40px; }
    .features .features-item span {
      font-size: 70px; }

  .trading-tools-container {
    font-size: 14px; } }
@media (max-width: 991.98px) {
  .header-navbar {
    z-index: 900; }
    .header-navbar .navbar-top .navbar-toggler:hover, .header-navbar .navbar-top .navbar-toggler:focus, .header-navbar .navbar-top .navbar-toggler:active {
      outline: 0;
      border: 0;
      box-shadow: 0;
      color: var(--blue500); }
    .header-navbar .navbar-top .navbar-brand img {
      height: 40px; }
    .header-navbar .navbar-bottom {
      transition: all ease 0.3s;
      z-index: 1000;
      width: 100%;
      position: fixed;
      background: rgba(0, 0, 0, 0.8);
      min-width: 100%;
      min-height: 100vh;
      max-height: 100vh;
      top: 0;
      overflow-x: hidden; }
      .header-navbar .navbar-bottom .container {
        padding: 0px;
        margin: 0;
        background: var(--white);
        min-height: 100vh;
        width: 80%;
        margin-left: 20%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        animation-name: slideoutleft;
        animation-duration: 0.5s;
        animation-fill-mode: forwards; }
      .header-navbar .navbar-bottom.open {
        transition: all ease 0.3s;
        display: block;
        z-index: 1000;
        width: 100%;
        position: fixed;
        background: rgba(0, 0, 0, 0.8);
        min-width: 100%;
        min-height: 100vh;
        max-height: 100vh;
        top: 0;
        overflow-x: hidden; }
        .header-navbar .navbar-bottom.open .container {
          padding: 0px;
          margin: 0;
          background: var(--white);
          min-height: 100vh;
          width: 80%;
          margin-left: 20%;
          display: flex;
          flex-direction: column;
          align-items: stretch;
          justify-content: flex-start;
          animation-name: slideinleft;
          animation-duration: 0.5s;
          animation-fill-mode: forwards; }
  @keyframes slideinleft {
    from {
      width: 80%;
      margin-left: 100%; }
    to {
      width: 80%;
      margin-left: 20%; } }
  @keyframes slideoutleft {
    from {
      width: 80%;
      margin-left: 20%; }
    to {
      width: 80%;
      margin-left: 100%; } }
  @keyframes fadeOut {
    0% {
      opacity: 1; }
    99% {
      opacity: 0; }
    100% {
      display: none !important; } }
      .header-navbar .navbar-bottom .top-slide-navbar-block {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 30px; }
      .header-navbar .navbar-bottom .navbar-menu {
        width: 100%; }
        .header-navbar .navbar-bottom .navbar-menu li a {
          padding: 15px 30px;
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
          font-size: 18px; }
        .header-navbar .navbar-bottom .navbar-menu li.dropdown ul li a {
          padding: 10px 30px; }
      .header-navbar .navbar-bottom .bottom-slide-navbar-block {
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 30px; }
        .header-navbar .navbar-bottom .bottom-slide-navbar-block a {
          padding: 15px; }
          .header-navbar .navbar-bottom .bottom-slide-navbar-block a + a {
            margin-top: 15px; }

  .fixed-navbar {
    padding-top: 80px; }
    .fixed-navbar .header-navbar .navbar-top {
      display: block; }
    .fixed-navbar .header-navbar .navbar-bottom .navbar-brand {
      display: none; }
      .fixed-navbar .header-navbar .navbar-bottom .navbar-brand img {
        height: 40px; }
    .fixed-navbar .header-navbar .navbar-bottom .navbar-menu li a {
      height: 48px; }

  .slider .carousel-item {
    height: 400px;
    padding: 40px 0 60px 0; }
    .slider .carousel-item .slider-text {
      padding-bottom: 60px; }
      .slider .carousel-item .slider-text .h1 {
        font-size: 36px;
        margin-bottom: 15px; }
      .slider .carousel-item .slider-text .h2 {
        font-size: 18px;
        margin-bottom: 15px; }
  .slider .carousel-indicators {
    max-width: 720px;
    margin-bottom: 70px; }
    .slider .carousel-indicators li {
      height: 40px;
      width: 40px;
      max-height: 40px;
      max-width: 40px; }

  .bennefits .bennefits-items {
    grid-template-columns: repeat(5, 1fr); }
    .bennefits .bennefits-items .item {
      padding: 30px 15px;
      flex-direction: column; }
      .bennefits .bennefits-items .item .number {
        margin-right: 0px;
        font-size: 42px;
        margin-bottom: 10px;
        display: block; }
      .bennefits .bennefits-items .item .description {
        font-size: 12px;
        line-height: 1.2;
        text-align: center; }

  .advantages .advantages-items {
    grid-gap: 60px; }
    .advantages .advantages-items .item .icon {
      max-height: 100px; }
    .advantages .advantages-items .item .title {
      font-size: 14px; }
    .advantages .advantages-items .item .description {
      font-size: 12px; }

  .platforms {
    padding: 80px 0; }
    .platforms .text {
      order: 1;
      display: flex;
      flex-direction: column;
      align-items: center; }
    .platforms .image {
      order: 0;
      text-align: center;
      margin-bottom: 30px; }
      .platforms .image img {
        max-height: 300px; }
    .platforms .heading {
      text-align: center; }
    .platforms .description {
      font-size: 16px;
      margin-bottom: 40px;
      text-align: center; }
    .platforms .platforms-items {
      margin-bottom: 40px;
      text-align: left; }
      .platforms .platforms-items .title {
        font-size: 18px;
        margin: 0 0 15px 0;
        text-align: center; }
      .platforms .platforms-items .items {
        list-style: none;
        padding: 0;
        column-count: 2;
        column-gap: 20px; }
        .platforms .platforms-items .items .item {
          font-size: 14px;
          padding: 8px 0; }
          .platforms .platforms-items .items .item span {
            margin-right: 5px; }
          .platforms .platforms-items .items .item .btn-sm {
            font-size: 12px;
            padding: 5px 10px; }

  .traders-support {
    padding: 60px 0; }
    .traders-support .heading {
      font-size: 30px;
      margin: 0 0 40px 0; }
    .traders-support .traders-support-items {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 60px; }
      .traders-support .traders-support-items .item {
        display: grid;
        grid-template-areas: "icon title" "icon list" "icon link";
        grid-column-gap: 15px;
        grid-template-columns: 1fr 3fr;
        align-items: start; }
        .traders-support .traders-support-items .item .icon {
          grid-area: icon;
          height: auto;
          margin-bottom: 0; }
        .traders-support .traders-support-items .item .title {
          grid-area: title;
          font-weight: 900;
          font-size: 18px;
          margin-bottom: 8px; }
        .traders-support .traders-support-items .item .checked {
          grid-area: list;
          margin: 0 0 8px 0;
          font-size: 12px;
          color: var(--grey600); }
          .traders-support .traders-support-items .item .checked li {
            padding: 3px 0 3px 25px;
            background: url("../images/check.svg") no-repeat left 6px;
            background-size: auto 12px; }
        .traders-support .traders-support-items .item .link {
          grid-area: link; }

  .payment-options {
    padding: 60px 0; }
    .payment-options .heading {
      font-size: 24px;
      margin: 0 0 15px 0; }
    .payment-options .description {
      text-align: center;
      margin-bottom: 30px;
      font-size: 14px; }
    .payment-options .payment-items {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      justify-content: center; }
      .payment-options .payment-items img {
        padding: 0 20px;
        margin: 15px 0;
        min-width: 20%;
        min-height: 40px;
        max-height: auto;
        max-width: auto; }

  .account-types .account-types-items .owl-dots .owl-dot.active span {
    background: var(--blue500); }
  .account-types .account-types-items .item {
    min-height: 540px; }

  .footer .footer-top {
    display: grid;
    grid-template-areas: "footer-menu footer-logo" "footer-menu footer-contacts";
    grid-column-gap: 30px;
    border-bottom: 1px solid var(--grey800); }
    .footer .footer-top .footer-menu {
      grid-area: footer-menu; }
    .footer .footer-top .footer-contacts {
      padding-right: 0px; }

  .right-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px; }
    .right-sidebar .moduletable .heading h3 {
      padding-top: 0; }
    .right-sidebar .related-articles .related-item + .related-item {
      padding-top: 15px;
      margin-top: 15px; }
    .right-sidebar .related-articles .related-item a .image {
      height: 50px;
      width: 50px;
      min-height: 50px;
      min-width: 50px; }

  .demo-registration-description {
    order: 2;
    padding-right: 15px; }
    .demo-registration-description h4 {
      font-size: 24px; }
    .demo-registration-description h5 {
      font-size: 18px; }
    .demo-registration-description p {
      line-height: 1.2;
      font-size: 14px; }

  .demo-features {
    margin-bottom: 30px; }
    .demo-features .item .icon {
      height: 40px;
      margin-right: 15px; }

  .demo-registration-form {
    padding: 30px;
    margin-top: 0px;
    margin-bottom: 30px; }
    .demo-registration-form h3 {
      font-size: 24px; }

  .contact-us .sub-heading {
    font-size: 18px;
    margin-bottom: 30px; }
  .contact-us .contacts-items .contact-link {
    font-size: 16px; }
    .contact-us .contacts-items .contact-link span {
      font-size: 14px; }
  .contact-us .online-contacts {
    padding: 50px; }
    .contact-us .online-contacts h2 {
      font-size: 20px;
      margin-bottom: 40px; }
    .contact-us .online-contacts .online-contacts-items a span {
      font-size: 60px;
      margin-bottom: 15px; }

  .heading-block .buttons {
    justify-content: center;
    display: flex; }
  .heading-block .button {
    height: 40px; }
    .heading-block .button.btn-download {
      padding: 10px 24px;
      border-radius: 6px;
      font-size: 14px; }

  .mt4-features .mt4-features-items .item {
    text-align: center;
    font-size: 14px;
    padding: 40px 40px; }
    .mt4-features .mt4-features-items .item span {
      margin-bottom: 15px;
      font-size: 70px; }

  .glossary-container .accordion .accordion-section {
    grid-template-columns: 1fr 8fr; }
    .glossary-container .accordion .accordion-section + .accordion-section {
      margin-top: 15px; }
    .glossary-container .accordion .accordion-section .letter {
      font-size: 80px; }
    .glossary-container .accordion .accordion-section .accordion-item .collapse-title {
      font-size: 14px;
      padding: 5px 0; }
    .glossary-container .accordion .accordion-section .accordion-item .collapse-details {
      padding: 15px;
      font-size: 13px; }

  .nav-glossary-container {
    top: 80px; }

  .page-header {
    padding: 60px 0; }
    .page-header .heading {
      font-size: 40px;
      margin-bottom: 15px; }
    .page-header .description {
      font-size: 18px;
      margin-bottom: 20px; }

  .server-types {
    grid-gap: 15px; }
    .server-types .item {
      padding: 30px; }
      .server-types .item .item-icon {
        height: 60px;
        margin-bottom: 15px; }
      .server-types .item .item-title {
        font-size: 18px;
        margin-bottom: 15px; }
      .server-types .item .item-fields {
        margin-bottom: 15px; }
        .server-types .item .item-fields .item-field {
          padding: 10px 0; }
          .server-types .item .item-fields .item-field .field-label {
            font-size: 12px; }
          .server-types .item .item-fields .item-field .field-value {
            font-size: 14px; }

  .vps-features .item span {
    font-size: 50px; }
  .vps-features .item p {
    font-size: 14px; }

  .about-company p {
    font-size: 14px; }

  .our-features .item {
    padding: 20px; }
    .our-features .item span {
      font-size: 70px;
      margin-bottom: 15px; }
    .our-features .item .value {
      font-size: 18px;
      margin-bottom: 5px; }
    .our-features .item .title {
      font-size: 14px;
      text-align: center; }

  .partnership-types .item {
    padding: 30px; }
    .partnership-types .item .icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px; }
      .partnership-types .item .icon img {
        height: 60px; }
    .partnership-types .item .title {
      font-size: 16px;
      margin-bottom: 5px; }
    .partnership-types .item .profit {
      font-size: 18px;
      margin-bottom: 15px; }
    .partnership-types .item .description {
      font-size: 14px;
      margin-bottom: 20px; }

  .partnership-bennefits .item {
    grid-template-columns: 1fr 3fr;
    grid-column-gap: 30px; }
    .partnership-bennefits .item .icon img {
      max-width: 100%;
      width: auto;
      height: 80px; }
    .partnership-bennefits .item .title {
      font-size: 16px;
      margin-bottom: 5px; }
    .partnership-bennefits .item .description {
      font-size: 14px; }

  .how-to-begin {
    padding: 60px 0; }
    .how-to-begin .how-to-begin-items {
      margin-bottom: 30px; }
      .how-to-begin .how-to-begin-items .item {
        padding: 20px;
        text-align: center; }
        .how-to-begin .how-to-begin-items .item .icon {
          text-align: center;
          margin-bottom: 30px; }
          .how-to-begin .how-to-begin-items .item .icon img {
            height: 60px; }
        .how-to-begin .how-to-begin-items .item .title {
          font-size: 18px;
          font-weight: 900;
          margin-bottom: 15px;
          line-height: 1.3; }
        .how-to-begin .how-to-begin-items .item .description {
          font-size: 12px; }

  .trading-calculator-header .heading {
    font-size: 36px; }
  .trading-calculator-header .description {
    font-size: 16px; }
  .trading-calculator-header ol {
    font-size: 12px; }

  .calculator-container .form-header {
    padding: 30px; }
  .calculator-container .form-body {
    padding: 0 30px; }
    .calculator-container .form-body .field {
      padding: 0 15px 40px 15px; }
      .calculator-container .form-body .field .icon {
        font-size: 40px; }
      .calculator-container .form-body .field label {
        font-size: 14px;
        margin-bottom: 15px; }
      .calculator-container .form-body .field .form-control {
        font-size: 14px; }
  .calculator-container .form-footer {
    padding: 30px; }
    .calculator-container .form-footer .field label {
      font-size: 14px; }
    .calculator-container .form-footer .field .form-control {
      font-size: 28px; }

  .swap-free {
    background-image: url("../images/account-swap-free/islamic-account-md.jpg"); }
    .swap-free .heading {
      font-size: 36px; }
    .swap-free .description {
      font-size: 14px; }

  .features .features-item {
    padding: 40px; }
    .features .features-item span {
      font-size: 70px; }

  .h1 {
    font-size: 30px; }

  .h2 {
    font-size: 28px; }

  .h3 {
    font-size: 24px; }

  .thading-signals-header img {
    margin-bottom: -40px; }
  .thading-signals-header .btn {
    margin-bottom: 0; }

  .trading-tools-container {
    margin: 40px 0;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
    font-size: 12px; }
    .trading-tools-container .item {
      border-radius: 16px;
      padding: 30px 20px;
      text-align: center; }
      .trading-tools-container .item span {
        margin-bottom: 20px;
        font-size: 40px; }

  .steps .step .descr {
    font-size: 14px; }

  .card-block {
    margin: 60px 0;
    flex-direction: column; }
    .card-block .image {
      width: 100%; }
    .card-block .description {
      width: 100%;
      padding-left: 0px;
      padding-top: 40px; }
    .card-block.card-blue .description {
      padding: 40px; } }
@media (max-width: 767.98px) {
  .bennefits .bennefits-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 15px; }
    .bennefits .bennefits-items .item {
      padding: 15px 15px;
      max-width: 50%;
      flex-direction: column; }
      .bennefits .bennefits-items .item .number {
        margin-right: 0px;
        font-size: 42px;
        margin-bottom: 10px;
        display: block; }
      .bennefits .bennefits-items .item .description {
        font-size: 12px;
        line-height: 1.2;
        text-align: center; }

  .slider .carousel-item {
    height: 300px;
    padding: 30px 0 50px 0; }
    .slider .carousel-item .slider-text {
      padding-bottom: 0;
      order: 1;
      display: flex;
      flex-direction: column; }
      .slider .carousel-item .slider-text .h1 {
        font-size: 30px;
        margin-bottom: 15px; }
      .slider .carousel-item .slider-text .h3 {
        font-size: 16px;
        margin-bottom: 15px; }
    .slider .carousel-item .slider-image {
      order: 0; }
  .slider .carousel-indicators {
    display: none; }

  .contact-us .sub-heading {
    font-size: 16px; }
  .contact-us .online-contacts {
    padding: 40px; }
    .contact-us .online-contacts h2 {
      font-size: 16px;
      margin-bottom: 30px; }
    .contact-us .online-contacts .online-contacts-items a {
      font-size: 14px;
      text-align: center;
      padding: 20px; }
      .contact-us .online-contacts .online-contacts-items a span {
        font-size: 40px;
        margin-bottom: 15px; }

  .feedback {
    background: var(--grey100); }
    .feedback .feedback-form .form-row .column-left {
      padding-right: 0px; }

  .glossary-container .accordion .accordion-section {
    padding: 20px;
    grid-template-columns: 1fr;
    grid-gap: 15px; }
    .glossary-container .accordion .accordion-section + .accordion-section {
      margin-top: 15px; }
    .glossary-container .accordion .accordion-section .letter {
      font-size: 60px;
      text-align: left; }
    .glossary-container .accordion .accordion-section .accordion-item .collapse-title {
      font-size: 14px;
      padding: 5px 0; }
    .glossary-container .accordion .accordion-section .accordion-item .collapse-details {
      padding: 15px;
      font-size: 13px; }

  .nav-glossary-container {
    top: 80px; }

  .page-header {
    padding: 60px 0; }
    .page-header .heading {
      font-size: 24px;
      margin-bottom: 20px; }
    .page-header .description {
      font-size: 18px;
      margin-bottom: 30px; }
    .page-header.refer-a-friend {
      position: relative; }
      .page-header.refer-a-friend::after {
        display: block;
        content: "";
        background: rgba(0, 0, 0, 0.3);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 1; }
      .page-header.refer-a-friend .container {
        z-index: 2;
        position: relative;
        text-align: center; }

  .partnership-types .col-12 {
    margin-bottom: 15px; }
  .partnership-types .item {
    padding: 40px; }
    .partnership-types .item .icon {
      width: 120px;
      height: 120px;
      margin-bottom: 15px; }
      .partnership-types .item .icon img {
        height: 80px; }
    .partnership-types .item .title {
      font-size: 18px;
      margin-bottom: 5px; }
    .partnership-types .item .profit {
      font-size: 30px;
      margin-bottom: 15px; }
    .partnership-types .item .description {
      font-size: 14px;
      margin-bottom: 20px; }

  .partnership-bennefits .col-12 {
    margin-bottom: 15px; }
  .partnership-bennefits .item .description {
    font-size: 14px; }

  .how-to-begin {
    padding: 40px 0; }
    .how-to-begin h2 {
      font-size: 24px; }
    .how-to-begin .how-to-begin-items {
      margin-bottom: 30px; }
      .how-to-begin .how-to-begin-items .item {
        padding: 30px;
        text-align: center; }
        .how-to-begin .how-to-begin-items .item .icon {
          text-align: center;
          margin-bottom: 30px; }
          .how-to-begin .how-to-begin-items .item .icon img {
            height: 70px; }
        .how-to-begin .how-to-begin-items .item .title {
          font-size: 18px;
          font-weight: 900;
          margin-bottom: 15px;
          line-height: 1.3; }
        .how-to-begin .how-to-begin-items .item .description {
          font-size: 14px; }

  .trading-calculator-header {
    background: var(--blue700) url("../images/trading-calculator/trading-calculator-header-xs.jpg") no-repeat center; }
    .trading-calculator-header .heading {
      text-align: center;
      font-size: 36px; }
    .trading-calculator-header .description {
      text-align: center;
      font-size: 16px; }
    .trading-calculator-header ol {
      font-size: 14px; }

  .calculator-container .form-header {
    padding: 15px; }
    .calculator-container .form-header .title {
      font-size: 24px; }
    .calculator-container .form-header hr {
      margin-bottom: 0px; }
  .calculator-container .form-body {
    padding: 0 30px 15px 30px; }
    .calculator-container .form-body .field {
      padding: 10px 0;
      flex-direction: row; }
      .calculator-container .form-body .field .icon {
        font-size: 30px;
        margin-right: 10px;
        width: 40px; }
      .calculator-container .form-body .field label {
        font-size: 14px;
        margin-bottom: 0px; }
      .calculator-container .form-body .field .form-control {
        font-size: 14px;
        margin: auto 0 auto auto; }
  .calculator-container .form-footer {
    padding: 15px; }
    .calculator-container .form-footer .field {
      padding: 15px; }
      .calculator-container .form-footer .field + .field {
        border: 0; }
      .calculator-container .form-footer .field .form-group {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        margin: 0; }
      .calculator-container .form-footer .field label {
        font-size: 14px;
        width: 60%;
        margin-bottom: 0; }
      .calculator-container .form-footer .field .form-control {
        width: 50%;
        font-size: 18px;
        text-align: right; }

  .swap-free {
    background-image: url("../images/account-swap-free/islamic-account-xs.jpg");
    background-size: contain;
    background-position: center top;
    padding-top: 250px;
    text-align: center; }
    .swap-free .heading {
      font-size: 24px; }
    .swap-free .description {
      font-size: 14px; }

  .features {
    padding: 15px 0; }
    .features .features-item {
      text-align: left;
      padding: 15px 30px;
      display: flex;
      align-items: center; }
      .features .features-item span {
        font-size: 40px;
        margin-right: 15px;
        width: 60px;
        margin-bottom: 0; }

  .h1 {
    font-size: 28px; }

  .h2 {
    font-size: 24px; }

  .h3 {
    font-size: 18px; }

  .callout {
    margin-bottom: 15px; }

  .thading-signals-header img {
    margin-bottom: -00px; }
  .thading-signals-header .btn {
    margin-bottom: 0; }

  .trading-tools-container {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
    font-size: 16px; }
    .trading-tools-container .item {
      background: var(--blue600);
      color: var(--white);
      border-radius: 16px;
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 30px;
      text-align: center; }
      .trading-tools-container .item span {
        margin-bottom: 0;
        margin-right: 15px;
        font-size: 40px;
        width: 50px; }

  .steps {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; }
    .steps .step {
      width: 100%;
      position: relative;
      display: flex;
      align-items: center;
      position: relative;
      padding: 30px 0;
      border-bottom: 1px solid var(--grey300); }
      .steps .step:last-child {
        border-bottom: none; }
      .steps .step img {
        width: 100px;
        height: auto;
        display: block;
        border-radius: 50%;
        box-shadow: 0 0 0 5px var(--grey100), 0 0 0 6px var(--grey300);
        margin-bottom: 0;
        margin-right: 30px; }
      .steps .step .descr {
        text-align: left;
        font-size: 18px;
        font-weight: bold; }
      .steps .step .number {
        width: 42px;
        height: 42px;
        display: flex;
        min-height: 42px;
        min-width: 42px;
        background: var(--blue600);
        box-shadow: 0 0 0 4px var(--white);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: bold;
        color: var(--white);
        top: 0px;
        margin-bottom: 0;
        bottom: 0;
        margin-top: 15px;
        position: absolute; }
    .steps .arrow {
      display: none;
      width: 100%;
      padding: 15px;
      text-align: center; }
      .steps .arrow.up {
        margin-top: 0; }
      .steps .arrow.down {
        margin-top: 0; }
      .steps .arrow img {
        width: auto;
        height: 40px; }

  .blog-category .item {
    padding: 30px 0; }
    .blog-category .item .heading {
      margin-bottom: 15px; }
    .blog-category .item .image {
      height: 150px;
      margin-bottom: 15px;
      border-radius: 4px; }
    .blog-category .item .description {
      margin-bottom: 15px; }
    .blog-category .item .buttons {
      text-align: center; }

  .card-block {
    margin: 30px 0;
    flex-direction: column; }
    .card-block .image {
      width: 100%; }
    .card-block .description {
      width: 100%;
      padding: 30px; }
    .card-block.image-right .image {
      order: 0; }
    .card-block.image-right .description {
      order: 1; }
    .card-block.card-blue .description {
      padding: 30px;
      font-size: 14px; }
      .card-block.card-blue .description .heading {
        font-size: 24px; }

  .grey-section {
    background: var(--grey100);
    padding: 40px 0; }
    .grey-section .h3 {
      font-size: 24px;
      margin-bottom: 24px;
      text-align: center; } }
@media (max-width: 575.98px) {
  .list-columns-2 {
    display: block;
    column-count: 1; }

  .slider .carousel-item {
    height: 450px;
    padding: 240px 0 50px 0; }
    .slider .carousel-item .slider-text {
      padding-bottom: 0;
      order: 1;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center; }
      .slider .carousel-item .slider-text .h1 {
        font-size: 30px;
        margin-bottom: 15px; }
      .slider .carousel-item .slider-text .h3 {
        font-size: 16px;
        margin-bottom: 15px; }
    .slider .carousel-item .slider-image {
      order: 0; }
  .slider .carousel-indicators {
    display: none; }

  .advantages {
    padding: 40px 0; }
    .advantages .heading {
      margin-bottom: 30px;
      font-size: 24px; }
    .advantages .advantages-items {
      grid-gap: 30px;
      grid-template-columns: 1fr; }
      .advantages .advantages-items .item {
        display: grid;
        grid-template-areas: "icon title" "icon descr";
        grid-template-columns: 1fr 3fr;
        text-align: left;
        align-items: center;
        grid-row-gap: 5px;
        grid-column-gap: 15px; }
        .advantages .advantages-items .item .icon {
          grid-area: icon;
          max-height: 80px;
          margin-bottom: 0; }
        .advantages .advantages-items .item .title {
          font-size: 18px;
          grid-area: title;
          margin-bottom: 0px;
          display: flex;
          align-content: flex-end; }
        .advantages .advantages-items .item .description {
          font-size: 12px;
          grid-area: descr;
          display: flex;
          align-items: flex-start; }

  .platforms {
    padding: 40px 0; }
    .platforms .text {
      order: 1;
      display: flex;
      flex-direction: column;
      align-items: center; }
    .platforms .image {
      margin-bottom: 15px; }
      .platforms .image img {
        max-height: 200px; }
    .platforms .heading {
      text-align: center;
      font-size: 24px;
      margin-bottom: 10px; }
    .platforms .description {
      font-size: 14px;
      margin-bottom: 40px;
      text-align: center; }
    .platforms .platforms-items {
      margin-bottom: 20px;
      text-align: left; }
      .platforms .platforms-items .title {
        font-size: 18px;
        margin: 0 0 10px 0;
        text-align: center; }
      .platforms .platforms-items .items {
        list-style: none;
        padding: 0;
        column-count: 1;
        column-gap: 00px; }
        .platforms .platforms-items .items .item {
          font-size: 14px;
          padding: 10px 0; }
          .platforms .platforms-items .items .item span {
            margin-right: 5px; }
          .platforms .platforms-items .items .item .btn-sm {
            font-size: 12px;
            padding: 5px 10px; }

  .trade-now {
    padding: 40px 0; }
    .trade-now .text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
      .trade-now .text .heading {
        font-weight: 900;
        margin-bottom: 15px;
        text-align: center; }
      .trade-now .text .description {
        font-size: 18px;
        margin-bottom: 40px;
        font-weight: 900;
        text-align: center; }
      .trade-now .text .btn {
        margin-top: 15px; }
    .trade-now .image {
      text-align: center; }
      .trade-now .image img {
        height: 200px;
        width: auto; }

  .account-types {
    padding: 40px 0; }
    .account-types .account-types-items {
      margin: 0 -15px 30px -15px; }
      .account-types .account-types-items .owl-item.active .item {
        margin: 5px 10px 25px 10px;
        box-shadow: 0 15px 10px rgba(0, 0, 0, 0.1); }

  .traders-support {
    padding: 30px 0; }
    .traders-support .heading {
      font-size: 24px;
      margin: 0 0 30px 0; }
    .traders-support .traders-support-items {
      grid-template-columns: repeat(1, 1fr);
      grid-gap: 40px; }
      .traders-support .traders-support-items .item {
        grid-column-gap: 15px; }
        .traders-support .traders-support-items .item .title {
          font-size: 18px;
          margin-bottom: 8px; }
        .traders-support .traders-support-items .item .checked {
          font-size: 14px; }
          .traders-support .traders-support-items .item .checked li {
            background: url("../images/check.svg") no-repeat left 5px;
            background-size: auto 12px; }
        .traders-support .traders-support-items .item .link {
          grid-area: link; }

  .payment-options {
    padding: 30px 0; }
    .payment-options .heading {
      font-size: 24px;
      margin: 0 0 10px 0; }
    .payment-options .description {
      text-align: center;
      margin-bottom: 15px;
      font-size: 14px; }
    .payment-options .payment-items {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      justify-content: center; }
      .payment-options .payment-items img {
        padding: 0 20px;
        margin: 15px 0;
        min-width: 20%;
        min-height: 40px;
        max-height: auto;
        max-width: auto; }

  .footer .footer-top {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--grey800); }
    .footer .footer-top .footer-menu {
      width: 100%;
      padding-right: 0;
      grid-area: footer-menu; }
      .footer .footer-top .footer-menu .menu {
        grid-gap: 30px; }
    .footer .footer-top .footer-contacts {
      width: 100%;
      padding-right: 0px;
      text-align: center;
      justify-content: center;
      border-top: 1px solid var(--grey800);
      margin-top: 30px;
      padding-top: 30px; }
      .footer .footer-top .footer-contacts ul li a {
        font-size: 16px; }
    .footer .footer-top .footer-logo {
      width: 100%;
      justify-content: center;
      margin-top: 10px; }
      .footer .footer-top .footer-logo img {
        height: 50px;
        width: auto; }

  .blog {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0; }
    .blog .blog-item + .blog-item {
      padding-top: 30px;
      margin-top: 30px;
      border-top: 1px solid var(--grey200); }
    .blog .blog-item .image {
      margin-bottom: 15px; }
      .blog .blog-item .image a {
        height: 200px; }
        .blog .blog-item .image a::before {
          font-size: 60px; }
    .blog .blog-item .date {
      margin-bottom: 10px;
      line-height: 1; }
    .blog .blog-item .title {
      font-size: 16px;
      margin-bottom: 10px; }
    .blog .blog-item .description {
      font-size: 14px; }

  .right-sidebar {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0; }
    .right-sidebar .moduletable .heading h3 {
      padding-top: 0; }
    .right-sidebar .related-articles {
      margin-bottom: 0; }
      .right-sidebar .related-articles .related-item + .related-item {
        padding-top: 15px;
        margin-top: 15px; }
      .right-sidebar .related-articles .related-item a .image {
        height: 50px;
        width: 50px;
        min-height: 50px;
        min-width: 50px; }

  .article {
    margin-bottom: 30px; }
    .article .article-info .date {
      font-size: 12px; }
    .article .heading {
      margin-bottom: 15px; }
      .article .heading h3, .article .heading h1 {
        font-size: 24px; }
    .article .article-image {
      margin-bottom: 20px;
      height: 200px; }

  .related-articles .articles-items .item .image {
    min-width: 120px;
    max-width: 120px;
    min-height: 80px;
    max-height: 80px; }
  .related-articles .articles-items .item .info .title {
    margin-bottom: 5px; }
    .related-articles .articles-items .item .info .title a {
      font-size: 16px;
      margin-bottom: 5px;
      line-height: 1.2; }
  .related-articles .articles-items .item .info .date {
    margin-bottom: 5px; }
  .related-articles .articles-items .item .info .description {
    font-size: 12px;
    display: none; }

  .registration .logo img {
    height: 40px; }
  .registration .content .heading h3 {
    font-size: 24px; }
  .registration .form-container .nav-tabs .nav-link {
    padding: 15px 8px;
    font-size: 15px; }
  .registration .form-container .tab-content {
    padding: 25px; }

  .registration-form h5 {
    font-size: 16px; }
  .registration-form .input-field {
    position: relative;
    margin-bottom: 30px; }
    .registration-form .input-field .input-control, .registration-form .input-field .empty {
      padding-right: 50px; }
    .registration-form .input-field .form-help-text {
      z-index: 10;
      text-shadow: 0 0 10px var(--white);
      justify-content: flex-end;
      position: relative;
      margin-bottom: 0;
      margin-top: 5px;
      height: auto;
      right: 0; }
  .registration-form .input-phone .form-help-text {
    top: 30px;
    right: 0px;
    margin-top: 5px;
    position: relative;
    justify-content: flex-end;
    height: auto;
    top: 0; }
  .registration-form .pin-group {
    flex-wrap: wrap; }
    .registration-form .pin-group small {
      width: 100%;
      text-align: center;
      margin-top: 10px; }

  .registration-form .input-field.select-container small.form-help-text.text-red {
    right: 0 !important; }

  .verify-email img {
    height: 120px; }
  .verify-email h3 {
    font-size: 20px;
    font-family: 'Roboto-Bold'; }
  .verify-email h4 {
    font-size: 16px;
    font-family: 'Roboto-Bold';
    margin-bottom: 15px; }
  .verify-email p {
    line-height: 1.2;
    font-size: 14px; }
  .verify-email .small {
    margin-bottom: 8px;
    font-size: 11px; }

  .contact-us .online-contacts {
    padding: 40px; }
    .contact-us .online-contacts h2 {
      font-size: 16px;
      margin-bottom: 20px; }
    .contact-us .online-contacts .online-contacts-items a {
      font-size: 18px;
      text-align: center;
      padding: 20px;
      flex-direction: row;
      justify-content: center; }
      .contact-us .online-contacts .online-contacts-items a span {
        font-size: 30px;
        margin-bottom: 0;
        margin-right: 15px; }

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

  .mt4-features .mt4-features-items {
    border-radius: 0; }
    .mt4-features .mt4-features-items .item {
      text-align: center;
      font-size: 14px;
      padding: 30px 30px; }
      .mt4-features .mt4-features-items .item span {
        margin-bottom: 15px;
        font-size: 60px; }

  .multiterminal-features .mt4-features-items {
    background: var(--grey200);
    border-radius: 0; }
    .multiterminal-features .mt4-features-items .item {
      padding: 30px; }
      .multiterminal-features .mt4-features-items .item span {
        font-size: 60px;
        color: var(--blue500); }

  .partner-form-container {
    padding: 30px;
    background: var(--white);
    border-radius: 16px; }
    .partner-form-container .form-heading {
      font-size: 18px; }
    .partner-form-container .form-subheading {
      font-size: 16px; }
    .partner-form-container .plan-check {
      flex-direction: column; }
      .partner-form-container .plan-check .form-check {
        padding: 5px 0; }
    .partner-form-container .partnership-experience {
      flex-wrap: wrap !important;
      margin-bottom: 40px !important; }
      .partner-form-container .partnership-experience .label {
        width: 100%;
        text-align: center; }
    .partner-form-container .btn-light {
      border: 0 !important;
      background: none !important;
      border: none !important;
      padding-left: 0; }
      .partner-form-container .btn-light:hover, .partner-form-container .btn-light:active, .partner-form-container .btn-light:focus {
        border: 0 !important;
        background: none !important;
        border: none !important; }
    .partner-form-container .btn-light:not(:disabled):not(.disabled).active, .partner-form-container .btn-light:not(:disabled):not(.disabled):active, .partner-form-container .show > .btn-light.dropdown-toggle {
      border: 0 !important;
      background: none !important;
      outline: none !important;
      box-shadow: none !important; }
    .partner-form-container .input-field .input-control {
      padding-right: 15px; }
    .partner-form-container .registration-form .input-field .form-help-text {
      position: relative;
      margin: 0;
      right: 0;
      margin-top: 5px;
      position: relative;
      text-align: right;
      justify-content: flex-end; }
    .partner-form-container .form-group.filled label {
      top: -20px;
      transition: all ease 0.3s;
      font-size: 12px;
      color: var(--blue500);
      z-index: 3; }
    .partner-form-container .filter-option-inner-inner {
      font-weight: bold;
      color: var(--grey800); }
    .partner-form-container .bs-placeholder .filter-option-inner-inner {
      color: var(--grey400);
      font-weight: normal;
      font-size: 0; }

  .server-types {
    grid-gap: 15px;
    grid-template-columns: 1fr; }
    .server-types .item {
      padding: 30px; }
      .server-types .item .item-icon {
        height: 80px;
        margin-bottom: 15px; }
      .server-types .item .item-title {
        font-size: 20px;
        margin-bottom: 15px; }
        .server-types .item .item-title br {
          display: none; }
      .server-types .item .item-fields {
        margin-bottom: 15px; }
        .server-types .item .item-fields .item-field {
          padding: 15px 0; }
          .server-types .item .item-fields .item-field .field-label {
            font-size: 12px; }
          .server-types .item .item-fields .item-field .field-value {
            font-size: 16px; }

  .vps-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
    .vps-features .item {
      width: calc(33.3% - 30px);
      margin-bottom: 15px; }
      .vps-features .item span {
        font-size: 40px;
        margin-bottom: 15px; }
      .vps-features .item p {
        font-size: 14px; }

  .accounts-compare-table tr {
    display: grid;
    grid-column-gap: 6px;
    grid-template-columns: repeat(5, 1fr); }
    .accounts-compare-table tr td {
      background: var(--grey100);
      padding: 5px;
      font-size: 11px;
      word-break: break-all; }
      .accounts-compare-table tr td:first-child {
        font-size: 11px;
        word-wrap: break-word;
        word-break: break-all; }
      .accounts-compare-table tr td a {
        font-size: 12px;
        padding: 8px; }
      .accounts-compare-table tr td .label {
        border-radius: 0px 16px 0 16px;
        padding: 3px 6px;
        font-size: 11px;
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0; }
    .accounts-compare-table tr:nth-child(2) td {
      font-size: 8px; } }
