@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;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
abbr, acronym {
	border: 0;
}
iframe::-webkit-scrollbar {
	display: none;
}
html {
  scroll-behavior: smooth;
}


/* General styles */

body {
	font-family: "Gilroy", Verdana, san-serif;
	font-size: 100%;
	line-height: 1.5;
	color: #161717;
	background: #f8f8f8;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	max-width: 100%;
	height: auto;
}
img.inline {
	vertical-align: middle;
}
h1, h2, h3 {
	font-family: "Gilroy", Verdana, san-serif;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: .25em;
}
h1 {
	font-size: 1.6em;
}
h2 {
  font-size: 2.3em;
	margin-bottom: .5em;
	line-height: 1.1;
}
h3 {
  font-size: 2em;
}
h4 {
	font-size: 2em;
}
h1 br {
	display: none;
}
p {
	margin-bottom: 10px;
}
p.small {
  font-size: .7em;
  margin-top: 10px;
	text-align: center;
	margin-bottom: 35px;
}
span.small {
  font-size: .5em;
  font-weight: normal;
}
table p {
  margin-bottom: 0;
}
th, td {
  padding: 8px;
  text-align: center;
  font-size: .95em;
}
strong, b {
  font-weight: bold;
}
ul {
	padding-left: 30px;
}
[dir=rtl] ul {
	padding-left: 0;
	padding-right: 30px;
}
ul li {
	padding: 10px 0;
	list-style-type: disc;
}

/* Brand styles */

.btn {
	display: block;
	width: 100%;
	padding: .8em 1em 1em;
	color: #fff;
	background: linear-gradient(300deg, #ff6770 17.81%, #ff4b55 81.86%);
	font-size: 1em;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	font-weight: 400;
	transition: all .3s;
	box-sizing: border-box;
	border-radius: 8px;
	max-width: 13em;
	margin: 30px auto 0;
}
.btn:hover {
	background: #13121b;
	color: #fff;
}
.btn-small {
	margin-top: 0;
	margin-bottom: 10px;
	padding: 9px 15px;
	background: linear-gradient(300deg, #ff6770 17.81%, #ff4b55 81.86%);
	min-width: 150px;
	font-size: 1.125em;
}
.btn-small:hover {
	background: #13121b;
}
.markets-logo {
	display: inline-block;
	height: 20px;
    width: auto;
}
.logo-x { 
	width: 200px;
	display: block;
}
.circle {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.625em;
	font-weight: 700;
	line-height: 1;
}
.yellow {
	background-color: #fed86c;
}
.lilac {
	background-color: #cacdfc;
}
.green {
	background-color: #aee69d;
}
.turquoise {
	background-color: #87e1d7;
}

/* Embedded video */

.video-container {
	overflow: hidden;
	position: relative;
	width: 100%;
	margin-bottom: 0;
	margin-top: 40px;
}
.video-container iframe {
	width: 50%;
	height: 230px;
}


/* Layout styles */

.container {
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}
.container.narrow {
	width: 100%;
	max-width: 1150px;
	display: flex;
    flex-direction: column;
	align-items: center;
	margin: 40px auto 0px;
    max-width: 580px;
}
.investing-logo {
	margin-bottom: 28px;
	max-width: 280px;
}
.investing-title {
	max-width: 400px;
}

.container > div {
	box-sizing: border-box;
	width: 100%;
}
.col-2, .col-3, .col-4 {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.col-2 > div, .col-3 > div, .col-4 > div {
	box-sizing: border-box;
}
 
@media (min-width: 1181px) {
  .col-2 > div.wide {
    width: 50%;
  }
  .col-2 > div.narrow {
	display: flex;
    flex-direction: column;
	align-items: center;
	margin: 40px auto 0px;
    width: 50%;
  }
  .col-3 > div {
    width: 33%;
  }
  .col-4 > div {
    width: 25%;
  }
  .hidden-lg {
    display: none;
  }
}

@media (min-width: 581px) and (max-width: 1180px) {
  .col-2 > div {
	display: flex;
	flex-direction: column;
	align-items: center;
    width: 100%;
  }
  .col-3 > div {
    width: 33%;
  }
  .col-4 > div {
    width: 50%;
  }	
  .carousel-track {
    display: none;
  }
}

@media (max-width: 580px) {
  .col-2 > div {
    width: 100%;
  }
  .col-3 > div {
    width: 33%;
  }
  .col-4 > div {
    width: 25%;
  }	
}

/* Page Styles */

header {
	background-color: #fff;
    border-bottom: 1px solid #E0E0E0;
}

header .container {
	padding: 20px 0;
	align-items: center;
}

header a {
	max-width: 40%;
}

header img {
	max-height: 44px;
	max-width: 45%;
}

#section-1 .container {
	width: 100%;
	border-radius: 24px;
}


#leadform-form {
	max-width: 430px;
}

#leadform-form .form_wrapper {
	font-family: "Gilroy", Verdana, san-serif !important;
}

#leadform-form .form_wrapper .mid_wrapper .bonus_holder {
	margin-top: 10px !important;
}

#leadform-form .form_wrapper .mid_wrapper .external-auth.branded-sso .or-line {
	margin: 22px 0 10px !important;
}

#leadform-form .form_wrapper .mid_wrapper .external-auth.branded-sso .or-line:before, #leadform-form .form_wrapper .mid_wrapper .external-auth.branded-sso .or-line:after {
	border-bottom-color: #e8e8e8;
	width: 60px !important;
}

#leadform-form .form_wrapper .mid_wrapper .external-auth {
	margin-bottom: 10px !important;
}

#leadform-form .form_wrapper .mid_wrapper .external-auth.display-sso-icons .ext-buttons.ext-buttons-apple {
	background-image: url(../images/apple.png) !important;
	background-color: #fff;
	border: 1px solid #E6E6EF;
}
#leadform-form .form_wrapper .mid_wrapper .external-auth.display-sso-icons .ext-buttons.ext-buttons-goog {
	background-image: url(../images/google.png);
	background-color: #fff;
	border: 1px solid #E6E6EF;
}
#leadform-form .form_wrapper .mid_wrapper .external-auth.display-sso-icons .ext-buttons.ext-buttons-fb {
	background-image: url(../images/facebook.png)!important;
	background-color: #fff;
	border: 1px solid #E6E6EF;
}

#leadform-form .form_wrapper .mid_wrapper .form_holder .form_row .field_title {
	font-size: 20px !important;
	text-align: inherit !important;
	color: #494851 !important;
}

#leadform-form .form_wrapper .mid_wrapper .form_holder .form_row .field_input input {
	border: 1px solid #e6e6e6 !important;
	padding: 18px !important;
	border-radius: 8px !important;
	font-family: "Gilroy", Verdana, san-serif !important;
	font-size: 16px !important;
	color: #969696 !important;
	background-color: #fff;
}

#leadform-form .form_wrapper .mid_wrapper .form_holder .form_row .field_input input#telephone {
    padding-left: 40px !important;
}

#leadform-form .form_wrapper .mid_wrapper .form_holder .button {
	border-radius: 8px !important;
	padding: 18px !important;
	font-family: "Gilroy", Verdana, san-serif !important;
	font-weight: 600 !important;
}

#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;
}

.gdpr-disclosure a {
	font-family: "Gilroy", Verdana, san-serif !important;
	font-weight: 600 !important;
	color: #161717 !important;
}

.layer_text {
	margin: 0 auto !important;
}

.row-password2 .field_title {
	display: none;
}

/* Desktop View */

@media (min-width: 1181px) {
	h2 {
		margin-left: 30px;
	}
	#section-1 {
		padding: 0 0 60px;
	}
	ul {
		font-size: 1.125em;
	}
	ul li {
		padding: 10px 0;
	}
	#leadform-form {
		margin: 0px auto;
	}
}


/* Small Desktop View */

@media (max-width:1180px) {
	h2 {
		text-align: center;
	}
	#section-1 .container {
		margin-bottom: -50px;
	}
	#section-1 .container > .wide > div {
		max-width: 412px;
		margin: 0 auto;
	}
	#leadform-form {
		margin: 0 auto;
	}
	#leadform-form .form_wrapper .mid_wrapper .footer_holder {
		border-radius: 6px;
		box-sizing: border-box;
	}
	#leadform-form .form_wrapper .mid_wrapper .gdpr-disclosure, #leadform-form .form_wrapper .mid_wrapper .legal, #leadform-form .form_wrapper .mid_wrapper .legal span {
		margin-top: 0 !important;
	}
	.pdf_link{
		text-align: center;
	}
	.col-2 > div.narrow {
		display: flex;
        flex-direction: column;
        align-items: center;
		padding: 25px 30px;
		order: 2;
	}
	.col-2 > div.wide {
		order: 1;
	}
	#section-1 .container > .wide > div {
		max-width: 100% !important;
	}
	#leadform-form {
		max-width: 620px;
	}
	.carousel-dots span {
		width: 6px !important;
		height: 6px !important;
	}
	.carousel-dots {
		bottom: 14px !important;
	}
}

@media (max-width: 760px) {
	.col-2 > div.narrow {
		display: flex;
        flex-direction: column;
        align-items: center;
		padding: 25px 30px;
		order: 2;
	}
	.col-2 > div.wide {
		order: 1;
	}
	#section-1 .container > .wide > div {
		max-width: 100% !important;
	}
	#leadform-form {
		max-width: 620px;
	}
	.carousel-dots span {
		width: 6px !important;
		height: 6px !important;
	}
	.carousel-dots {
		bottom: 14px !important;
	}
}

/* Mobile View */

@media (max-width:580px) {
	header .container {
		padding: 20px 0;
	}
	h1 {
		font-size: 1.625em;
	}
	h2 {
		font-size: 2.125em;
	}
	h4 {
		font-size: 1.1em;
	}
	ul li {
		padding: 5px 0;
	}
	#leadform-form, #section-1 .container > .wide > div {
		max-width: 100%;
	}
/* 	.carousel-slides {
		width: 1125px !important;
	}
	.carousel-slides img {
		width: 375px !important;
	} */
	.investing-logo {
		margin-bottom: 30px;
		max-width: 180px;
	}
	#leadform-form .form_wrapper .mid_wrapper .form_holder .form_row .field_title {
		font-size: 18px !important;
	}
	#leadform-form .form_wrapper .mid_wrapper .form_holder .form_row .field_input input {
		padding: 14px !important;
	}
	#leadform-form .form_wrapper .mid_wrapper .form_holder .button {
		padding: 14px !important;
	}
	header {
		display: none !important;
	}
	.investing-title {
		max-width: 300px !important;
	}
}


/* Footer */

footer {
	background-color: #161717;
	color: #acafaf;
	padding-top: 30px;
	padding-bottom: 90px;
	border-radius: 24px 24px 0px 0px;
}

footer .container {
  font-size: .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;
}
[dir=rtl] .awards img.logo-footer {
	margin-right: 0;
	margin-left: 14px;
}

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

.disclaimer strong {
	color: #fff;
	font-family: "Gilroy", Verdana, san-serif !important;
	font-weight: 600 !important;
}

.rw-fixed {
	position: fixed;
	width: 100%;
	margin: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #e4e4e4;
	color: #3a424c;
	box-sizing: border-box;
	padding: 10px 0 8px;
	font-size: 14px;
	text-align: center;
	z-index: 1000;
}

.rw-fixed .container {
	padding: 0;
}

@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;
	}
	.awards br {
		display: none;
	}
}

@media (max-width: 580px) {
	.awards img.logo-footer {
		width: 190px;
	}
}

.pdf_link{
	font-size: 12px;
	margin-top: 20px;
}
  
:root{
	--modaleRegBtbg : linear-gradient(300deg, #ff6770 17.81%, #ff4b55 81.86%);
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 1920px;
}

.carousel-slides img {
    width: 640px;
    display: block;
}

.carousel-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-dots span {
    width: 12px;
    height: 12px;
    background-color: #D9D9D9;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-dots span.active {
    background-color: #fff;
}
