@charset "UTF-8";

/* CSS reset */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
}

html {
  scroll-behavior: smooth;
}

/* General styles */


body {
  font-family: "Gilroy", Arial, san-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #fff !important;
  background: #000 !important;
}

a {
  color: inherit !important;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}


h1,
h2,
h3,
h4 {
  font-family: "Gilroy", Arial, san-serif;
  font-weight: 600 !important;
  /*	line-height: 1;*/
  margin-bottom: 0.5em !important;
}

.container h1 {
  font-size: 4em;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 12px;
}

.container h2 {
  font-size: 2.3em;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 300;
  margin-bottom: 1em;
}

.container h3 {
  font-size: 1.375em;
}

p {
  font-size: 1em;
  margin-bottom: 1em;
}

th,
td {
  padding: 16px 20px;
  vertical-align: middle;
}

strong,
b {
  font-weight: bold;
}

/* Brand styles */

.container .btn-wrap .btn {
  display: block;
  width: fit-content;
  padding: 1em 2.75em;
  color: #000;
  background: linear-gradient(109.43deg, #f4cc99 2.45%, #ddb475 100%);
  /* background: #7E66E6; purple */
  /* background: linear-gradient(300deg, #ff6770 17.81%, #ff4b55 81.86%); 	red */
  /* background: linear-gradient(300deg, #09C6F9 17.81%, #045DE9 81.86%);  blue */
  font-size: 1.125em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-sizing: border-box;
  border-radius: 8px;
  /*	max-width: 16em;
	margin: 50px auto 0;*/
}

.btn {
  display: block !important;
  width: fit-content !important;
  padding: 1em 2.75em !important;
  color: #000 !important;
  background: linear-gradient(109.43deg, #f4cc99 2.45%, #ddb475 100%) !important;
  /* background: #7E66E6; purple */
  /* background: linear-gradient(300deg, #ff6770 17.81%, #ff4b55 81.86%); 	red */
  /* background: linear-gradient(300deg, #09C6F9 17.81%, #045DE9 81.86%);  blue */
  font-size: 1.125em !important;
  line-height: 1 !important;
  text-align: center !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: all 0.3s !important;
  box-sizing: border-box !important;
  border-radius: 8px !important;
  /*	max-width: 16em;
	margin: 50px auto 0;*/
}

/* Layout styles */

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 20px 0;
}


.container>div {
  box-sizing: border-box;
  /*	width: 100%;*/
}

.col-2,
.col-3,
.col-4 {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  /*	align-items: center;*/
}

.col-2>div,
.col-3>div,
.col-4>div {
  box-sizing: border-box;
}

@media (min-width: 1181px) {
  .col-2>div {
    width: 49%;
  }

  .col-2>div.wide {
    width: 55%;
  }

  .col-2>div.narrow {
    width: 35%;
  }

  .col-3>div {
    width: 32%;
  }

  .col-4>div {
    width: 23%;
  }

  .hidden-lg {
    display: none;
  }
}

@media (min-width: 581px) and (max-width: 1180px) {
  .col-2>div {
    width: 100%;
  }

  .col-3>div {
    width: 100%;
  }

  .col-4>div {
    width: 49%;
  }

  .hidden-sm {
    display: none;
  }
}

@media (max-width: 580px) {
  .col-2>div {
    width: 100%;
  }

  .col-3>div {
    width: 100%;
  }

  .col-4>div {
    width: 100%;
  }

  .hidden-sm {
    display: none;
  }
}

/* Page Styles */

:target {
  scroll-margin-top: 30px;
  scroll-snap-margin-top: 30px;
}

.live-chat-wrap {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
}

.mid-wrap {
  background: url(../images/mid-bkgr.png) center center / 100% auto no-repeat;
}


#section-1 {
  background: url(../images/page-bkgr.jpg) center top no-repeat;
  padding-bottom: 700px;
}

@media (min-width: 1921px) {
  #section-1 {
    background-size: 100% auto;
    background-position: center 4%;
    padding-bottom: 43vw;
    margin-bottom: -8vw;
  }
}

@media (max-width: 580px) {
  #section-1 {
    background: url(../images/page-bkgr-mob.jpg) center calc(50% + 7vw) / 100% auto no-repeat;
    padding-bottom: 120vw;
    margin-bottom: -35vw;
  }
}

.container h1 {
  color: #f3d1a8;
  text-shadow: 0px 0px 24px #000000;
  position: relative;
  margin: 80px auto;
  font-size: 3.5rem !important;
}

.container h1 span {
  font-weight: 300;
}

h1::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 189px;
  height: 51px;
  background: #ffffff;
  mix-blend-mode: overlay;
  filter: blur(20px);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

.container h2 {
  color: #f3d1a8;
}

.container h2::before,
.container h2::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: #f3d1a8;
  vertical-align: middle;
}

.container h2::before {
  margin-right: 30px;
}

.container h2::after {
  margin-left: 30px;
}

@media (max-width: 1180px) {
  .container h2 {
    margin-bottom: 0;
  }

  .container h2::after {
    display: block;
    margin: 30px auto 0;
  }

  .container h2::before {
    display: none;
  }
}

@media (max-width: 580px) {
  .container h1 {
    font-size: 1.5em;
    letter-spacing: 5px;
    margin: 40px auto;
  }

  .container h2 {
    font-size: 2.125em;
    letter-spacing: initial;
  }

  .container h3 {
    font-size: 1em;
  }
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.highlights img {
  vertical-align: text-bottom;
  margin: 0 8px;
}

.highlights span {
  font-size: 1.625em;
  font-weight: 500;
  color: #f3d1a8;
}

@media (max-width: 580px) {
  .highlights {
    gap: 20px;
  }

  .highlights img {
    width: 14px;
    height: 14px;
  }

  .highlights span {
    font-size: 1em;
  }
}

.btn-wrap {
  margin: 50px auto 20px;
  position: relative;
}

.btn-wrap span {
  position: absolute;
  top: -12px;
  right: -12px;
  padding: 3px 10px;
  background: linear-gradient(315deg, #bb9dfb 0%, #66a0ff 100%);
  border-radius: 8px;
  color: #fff;
  font-size: 0.875em;
  font-weight: 300;
}


@media (max-width: 580px) {
  .btn-wrap {
    margin: 0;
  }

  .btn {
    width: 100%;
  }
}

.tnc-link {
  text-decoration: underline;
}

.box {
  border: 1px solid #f3d1a8;
  border-radius: 8px;
  padding: 24px 16px;
}

#section-2 .box {
  background: radial-gradient(ellipse farthest-corner at bottom right,
      rgba(81, 69, 55, 1) 0%,
      rgba(0, 0, 0, 1) 50%);
  position: relative;
  text-align: center;
}

#section-2 .box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 5px;
  top: 5px;
  border: 1px solid #f3d1a8;
  border-radius: 8px;
}

#section-2 .box img {
  margin: 12px 12px 30px;
}

#section-2 .box p {
  margin-bottom: 0.25em;
}

#section-2 .box span {
  font-size: 1.375em;
  color: #f3d1a8;
}

@media (max-width: 1180px) {
  #section-2 .box {
    margin-bottom: 16px;
  }
}

@media (max-width: 580px) {
  #section-2 .box {
    text-align: initial;
    animation-delay: 0s;
  }

  #section-2 .box::after {
    left: 3px;
    top: 3px;
  }

  #section-2 .box img {
    float: left;
    margin: 0 32px 0 16px;
  }

  #section-2 .box span {
    font-size: 1em;
  }
}

.tables-wrap td {
  text-align: right;
}

.table-basic {
  background: #000;
}

.table-silver {
  background: #222;
}

.table-gold {
  background: linear-gradient(323.76deg, #f4cc99 13.19%, #b07f32 88.71%);
}

.table-platinum {
  background: linear-gradient(315deg, #bb9dfb 0%, #66a0ff 100%);
}

.tables-wrap h3 {
  margin-bottom: 0;
  color: #fff;
}

.tables-wrap h3 img {
  vertical-align: middle;
}

span.tooltip {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/question-white.svg) center center / contain no-repeat;
  vertical-align: middle;
  margin-left: 16px;
  margin-top: 3px;
  position: absolute;
}

.tooltip .tooltiptext {
  visibility: hidden;
  opacity: 0;
  width: 180px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
  border-radius: 8px;
  padding: 8px;
  position: absolute;
  left: calc(-50% - 82px);
  bottom: 25px;
  z-index: 1;
  transition: all 0.3s;
}

.tooltip .tooltiptext:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(0, 0, 0, 0);
  border-top-color: #000000;
  border-width: 8px;
  margin-left: -8px;
}

@media (min-width: 1181px) {

  th,
  td {
    padding: 20px;
  }

  th {
    padding-left: 40px;
  }

  .tables-wrap {
    border: 1px solid #f3d1a8;
    border-radius: 8px;
    display: flex;
    margin: 80px 0;
  }

  .tables-wrap .table-basic {
    flex-grow: 1;
    border-radius: 8px 0 0 8px;
  }

  .tables-wrap .table-platinum {
    border-radius: 0 8px 8px 0;
  }

  .tables-wrap th {
    color: #f3d1a8;
    width: 100%;
  }

  .tables-wrap td {
    text-align: center;
    min-width: 150px;
  }

  .table-basic td {
    color: #969696;
  }

  .table-silver td {
    color: #e6e6ef;
  }

  .table-basic h3 {
    margin-left: auto;
    width: 150px;
  }

  span.tooltip {
    background: url(../images/question.svg) center center / contain no-repeat;
  }

  .tooltip .tooltiptext {
    width: 260px;
    padding: 16px;
    left: 25px;
    top: -25px;
    bottom: auto;
  }
}

@media (max-width: 1180px) {
  .tables-wrap table {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #f3d1a8;
    border-collapse: separate;
    margin-bottom: 16px;
  }

  .tables-wrap thead td {
    text-align: center;
  }
}

@media (min-width: 1351px) {
  .tables-wrap td {
    min-width: 170px;
  }

  .table-basic h3 {
    width: 170px;
  }
}

@media (min-width: 1423px) {
  .tables-wrap td {
    min-width: 190px;
  }

  .table-basic h3 {
    width: 190px;
  }
}

#section-3 .box {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #222222;
  margin-bottom: 16px;
}

#section-3 .box div:first-child {
  flex-shrink: 0;
}

#section-3 .box img {
  width: 55px;
  height: 55px;
}

#section-3 .box h3 {
  color: #f3d1a8;
  margin-bottom: 0;
}

#section-3 .box p {
  margin-bottom: 0;
}

@media (min-width: 1181px) {
  #section-3 .box {
    padding-left: 73px;
    padding-right: 36px;
    min-height: 116px;
  }
}

@media (max-width: 580px) {
  #section-3 .box {
    padding: 20px;
    align-items: flex-start;
    animation-delay: 0s;
  }
}

@media (min-width: 581px) {
  #section-4 {
    padding: 40px 0;
  }
}

.steps {
  text-align: center;
  justify-content: center;
}

.steps>div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.steps img {
  margin-bottom: 40px;
}

.steps .btn {
  margin-top: 20px;
}

@media (min-width: 1181px) {
  .steps {
    padding: 40px 0;
    flex-direction: row;
  }

  .steps>div {
    width: 21%;
  }

  .steps>div.arrow {
    width: 19%;
    background: url(https://www.markets.com/promo/marketsclub-fsc/en/images/arrow.png) 0 55px / contain no-repeat;
  }
}

@media (max-width: 580px) {
  .steps>div {
    animation-delay: 0s !important;
  }

  .steps img {
    margin-bottom: 20px;
  }
}

.accordion h3 {
  color: #f3d1a8;
  padding: 40px 80px 26px 20px;
  position: relative;
}

.accordion h3 span {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 20px;
  background: url(../images/dropdown.svg) center center / contain no-repeat;
  transition: all 0.3s;
}

.ui-icon-triangle-1-e {
  transform: rotate(-90deg);
}

.ui-accordion-header-collapsed {
  cursor: pointer;
}

.accordion h3:not(:first-child) {
  border-top-width: 1px;
  border-top-style: solid;
  border-image: linear-gradient(to bottom,
      rgba(243, 209, 168, 0.4) 0%,
      rgba(0, 0, 0, 0.4) 50%) 1;
}


@media (max-width: 580px) {
  .accordion {
    margin-top: 20px;
  }
}

@media (max-width: 580px) {
  .accordion h3 {
    padding: 30px 60px 16px 0;
  }

  .accordion div {
    padding: 8px 0 20px;
  }
}

#section-5 .col-3 {
  justify-content: space-around;
  border-top-width: 1px;
  border-top-style: solid;
  border-image: linear-gradient(to bottom,
      rgba(243, 209, 168, 0.4) 0%,
      rgba(0, 0, 0, 0.4) 50%) 1;
  margin-top: -10px;
  padding-top: 40px;
}

#section-5 .col-3>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

#section-5 .col-3 img {
  margin-bottom: 40px;
}

@media (min-width: 1181px) {
  #section-5 .col-3 {
    padding-top: 110px;
  }

  #section-5 .col-3>div {
    width: 20%;
  }
}

@media (max-width: 580px) {
  #section-5 .col-3>div {
    animation-delay: 0s !important;
  }

  #section-5 .col-3 img {
    margin-bottom: 20px;
  }
}

#section-6 {
  padding: 60px 0 200px;
  background: url(https://www.markets.com/promo/marketsclub-fsc/en/images/section-6.png) center bottom / 100% auto no-repeat;
}

#section-6 .container {
  background: #0a1b2b url(img/club/section-6-container.png) center center / cover no-repeat;
  border: 1px solid #f3d1a8;
  border-radius: 8px;
  padding: 50px 40px;
  align-items: center;
  overflow: hidden;
}

.login-wrapper {
  padding: 40px;
  box-sizing: border-box;
  background-color: #fff;
  color: #000;
  border-radius: 8px;
  position: relative;
}

@media (max-width: 580px) {
  #section-6 {
    padding: 20px 0 100px;
    background-size: 200% auto;
  }

  #section-6 .container {
    padding: 18px 18px 65px;
  }

  .login-wrapper {
    padding: 20px;
  }

  .login-wrapper h3 {
    font-size: 1.5em;
  }
}

#leadform-form .form_wrapper {
  font-family: "Gilroy", Arial, san-serif !important;
}

#leadform-form .form_wrapper .mid_wrapper .external-auth.branded-sso {
  width: 100%;
}

#leadform-form .form_wrapper .mid_wrapper .external-auth {
  margin-bottom: 10px !important;
}

#leadform-form .form_wrapper .mid_wrapper .external-auth .external-auth-content {
  display: flex;
  justify-content: center;
}

#leadform-form .form_wrapper .mid_wrapper .external-auth.display-sso-icons .ext-buttons {
  border-radius: 50%;
  margin: 0 13px;
  font-size: 0;
  border: 1px solid rgb(230, 230, 239);
  width: 32px;
  height: 32px;
  flex: initial;
}

#leadform-form .form_wrapper .mid_wrapper .external-auth.display-sso-icons .ext-buttons.ext-buttons-apple {
  background: url(https://www.markets.com/promo/marketsclub-fsc/en/images/apple.svg) center center/16px 16px no-repeat !important;
}

#leadform-form .form_wrapper .mid_wrapper .external-auth.display-sso-icons .ext-buttons.ext-buttons-goog {
  background: url(https://www.markets.com/promo/marketsclub-fsc/en/images/google.svg) center center/16px 16px no-repeat !important;
}

#leadform-form .form_wrapper .mid_wrapper .external-auth.display-sso-icons .ext-buttons.ext-buttons-fb {
  background: url(https://www.markets.com/promo/marketsclub-fsc/en/images/facebook.svg) center center/16px 16px no-repeat !important;
}

#leadform-form .form_wrapper .mid_wrapper .form_holder .form_row .field_title {
  font-size: 14px !important;
  text-align: initial;
}

#leadform-form .form_wrapper .mid_wrapper .form_holder .form_row .field_input {
  display: flex;
}

#leadform-form .form_wrapper .mid_wrapper .form_holder .form_row .field_input input {
  border: 1px solid #d0d1d1 !important;
  padding: 15px !important;
  border-radius: 8px !important;
  font-family: "Gilroy", Arial, san-serif !important;
  font-size: 16px !important;
  color: #aaa !important;
  background-color: #fff;
  margin-bottom: 10px;
  display: flex;
  flex: 1 1 auto;
  color: #999;
  outline: 0;
  width: 100%;
  background: 0;
}


#leadform-form .form_wrapper .mid_wrapper .form_holder .button {
  background: #13121b !important;
  border-radius: 8px !important;
  padding: 15px !important;
  font-family: "Gilroy", Arial, san-serif !important;
  margin-bottom: 20px !important;
  color: white;
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
  border-radius: 30px;
  margin: 7px 0;
  align-self: flex-end;
  box-sizing: border-box;
  clear: both;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}

#leadform-form .form_wrapper .mid_wrapper .gdpr-disclosure,
#leadform-form .form_wrapper .mid_wrapper .legal,
#leadform-form .form_wrapper .mid_wrapper .legal span {
  font-size: 12px !important;
  color: #8a8b8b !important;
}

#leadform-form .form_wrapper .mid_wrapper .gdpr-disclosure {
  text-align: initial;
  line-height: 14px;
  font-weight: 300;
  width: 100%;
  margin-top: 10px;
}

.gdpr-disclosure a {
  font-family: "Gilroy", Arial, san-serif !important;
  color: #161717 !important;
}

/* Footer */

footer {
  background-color: #161717;
  color: #acafaf;
  padding-top: 30px;
  padding-bottom: 90px;
  border-radius: 24px 24px 0px 0px;
  margin-top: -25px;
}

footer .container {
  font-size: 0.75em;
}

footer a {
  color: #09c6f9;
}

footer p {
  margin-bottom: 10px;
}

.awards {
  padding-bottom: 20px;
}

.awards img {
  display: inline-block;
  margin: 15px 10px;
  vertical-align: middle;
}

.awards img.logo-footer {
  margin-right: 14px;
  margin-left: 0;
}

.disclaimer strong {
  color: #fff;
  font-family: "Gilroy", Arial, san-serif !important;
  font-weight: 700;
}

@media (min-width: 1181px) {
  footer {
    padding-top: 50px;
  }

  footer .col-2>div.wide {
    width: 65%;
  }

  footer .col-2>div.narrow {
    width: 25%;
  }

  .disclaimer .title {
    font-size: 14px;
  }

  .awards img {
    margin: 10px 20px;
  }
}

@media (max-width: 580px) {
  .awards img.logo-footer {
    width: 190px;
  }
}

@media (min-width: 581px) {

  #page-wrap .rw-inline,
  #page-wrap .rw-custom {
    font-size: 14px !important;
    text-align: center !important;
    color: white;
  }
}

.markets-depth-semi {
  border-radius: 40px;
  background: linear-gradient(315deg, #bb9dfb 0%, #66a0ff 100%);
  padding: 0 16px;
  color: white;
  display: inline-block;
  margin-left: 12px;
}

.markets-depth-dropdown-mobile-br {
  display: none;
}

.table-silver tr,
.table-gold tr,
.table-platinum tr {
  position: relative;
}

.table-basic .row-market-depth th:first-child {
  padding-right: 0;
  display: flex;
  align-items: center;
}

.row-market-depth-container {
  display: flex;
  align-items: center;
  position: relative;
  margin-right: -90px;
}

@media (max-width: 1180px) {
  .markets-depth-toggle-button {
    margin-right: 0px;
    margin-left: 12px;
  }

  .table-basic .row-market-depth {
    display: none;
  }
}