@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;
}


:root {
  --white: #FFF;
	--purple: #635af0;
  --black: #13121b;
  --grey: #969696;
	--grad-blue: linear-gradient(270deg, #09C6F9 0%, #045DE9 100%);
	--grad-purple: linear-gradient(134deg, #8AB9FF 23.17%, #B8B8FF 100%);
  --animate-delay: 0.25s;
}


/* Box sizing rules */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* General styles */ 

body {
	font-family: "Gilroy", Arial, san-serif;
	font-size: 100%;
	line-height: 1.35;
	color: var(--white, #FFF);
	background: var(--black, #13121B);
}
a {
	color: inherit;
	text-decoration: none;
}
img.il {
	max-width: 100%;
	height: auto;
}
img.inline {
	vertical-align: middle;
}
h1, h2, h3, h4 {
	font-weight: 600;
	margin-bottom: .5em;
}
h1 {
	font-size: 2.5em;
}
h2 {
	font-size: 2.5em;
	text-align: center;
}
h3 {
	font-size: 2.5em;
	margin-bottom: 1em;
}
h4 {
	font-size: 1.375em;
}
hr {
	border: 0 none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.20);
	margin: 32px 0;
}
p {
	margin-bottom: 10px;
}
p.small {
  font-size: .85em;
  margin-top: 10px;
	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;
}
sup {
	font-size: .6em;
	vertical-align: text-top;
}
ul {
	margin-bottom: 20px;
}
ul li {
	position: relative;
	padding: 8px 0;
	list-style: disc inside;
	text-align: initial;
}

/*
ul li::before {
	content: "";
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-right: 5px;
	background: url(../images/bullet.svg) center center / contain no-repeat;
	position: absolute;
	left: 0;
	right: 0;
	top: 10px;
}
*/


/* Brand styles */

.btn {
	display: inline-block;
	width: fit-content;
	padding: 1em 2.5em;
	background: var(--grad-blue, linear-gradient(270deg, #09C6F9 0%, #045DE9 100%));
	color: var(--white, #FFF);
	font-family: "Gilroy", Arial, san-serif;
	font-size: 1.125em;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	font-weight: 600;
	transition: all .3s;
	box-sizing: border-box;
	border-radius: 8px;
	outline: 0 none;
	border: 0 none;
	cursor: pointer;
/*	max-width: 16em;
	margin: 50px auto 0;*/
}
.btn:hover {
	opacity: .9;
}
.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;
	max-width: 55%;
	height: auto;
}
.logo-x { 
	width: 200px;
	display: block;
}

/* Layout styles */

section {
	padding: 20px 0;
}

.container {
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	padding: 20px 0;
}
.container.narrow {
	width: 100%;
	max-width: 1150px;
}

.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) {
	section {
		padding: 40px 0;
	}
  .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-lg {
    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 */

.coin {
  animation: float 2s 1s infinite alternate;
}
.coin-container-1 .coin, .coin-container-5 .coin, .coin-container-7 .coin {
	animation-name: float2;
}
.coin-container-3 .coin {
	animation-name: float3;
}
@keyframes float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
  }
}
@keyframes float2 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-8px);
  }
}
@keyframes float3 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-36px);
  }
}

[class^="coin-container"] {
	position: absolute;
	z-index: 3;
}

.coin-container-1 {
	top: 40%;
	left: 110%;
}
.coin-container-2 {
	top: 72%;
	left: -48%;
}
.coin-container-3 {
	top: -2%;
	left: 56%;
}
.coin-container-4 {
	top: 25%;
	left: 76%;
}
.coin-container-5 {
	top: 65%;
	left: 5%;
}
.coin-container-6 {
	bottom: 5%;
	left: -5%;
}
.coin-container-7 {
	bottom: 0;
	left: 8%;
}
@media (max-width:1180px) {
	.coin-container-6 .coin, .coin-container-7 .coin {
		width: 65%;
		height: auto;
	}
	.coin-container-6 {
		bottom: 15%;
		left: -10%;
	}
	.coin-container-7 {
		bottom: -2%;
		left: auto;
		right: -5%;
	}
}
@media (max-width:580px) {
	.coin {
		animation: none;
		width: 65%;
		height: auto;
	}
	.coin-container-4 .coin {
		width: 110%;
	}
	.coin-container-1 {
		top: 36%;
		left: auto;
		right: -17%;
	}
	.coin-container-2 {
		top: 62%;
		left: -4%;
	}
	.coin-container-3 {
		top: -1%;
		left: 8%;
	}
	.coin-container-4 {
		top: 34%;
		left: 76%;
	}
	.coin-container-5 {
		top: 85%;
		left: 5%;
	}
	.coin-container-6 {
		bottom: 10%;
		left: -25%;
		transform: scale(.65);
	}
	.coin-container-7 {
		bottom: -3%;
		right: -16%;
		transform: scale(.65);
	}
}

.text-grad {
	background: var(--grad-purple, linear-gradient(134deg, #8AB9FF 23.17%, #B8B8FF 100%));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
.text-large {
	font-size: 40px;
	font-weight: 600;
}
.text-larger {
	font-size: 60px;
	font-weight: 600;
}
.large {
	text-align: center;
	font-weight: 600;
	font-size: 1.375em;
}
.cta-link {
	font-size: 1.125em;
	font-weight: 500;
	text-decoration: underline;
}
div.cta-wrap {
/*	width: fit-content;*/
	margin: 20px auto 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.rw-custom {
	font-size: 0.875em;
	margin-top: 16px;
}
@media (max-width:580px) {
	.rw-custom {
		font-size: 0.75em;
	}
	.large {
		font-size: 1em;
	}
	.page-wrap .large {
		text-align: initial;
	}
	.text-large, .text-larger {
		font-size: 34px;
		line-height: 1;
	}
	div.cta-wrap {
		margin: 0 auto;
		align-items: flex-start;
	}
}

.page-wrap {
	overflow: hidden;
}

.pill {
	border: 1px solid #fff;
	border-radius: 35px;
	padding: .35em 1.35em;
	width: fit-content;
	margin: 62px auto 32px;
	font-weight: 600;
	font-size: .75em;
}
h1 {
	margin-bottom: 1.5em;
}
.hero-container {
	position: relative;
	width: 100%;
	height: 100%;
}

@media (min-width: 1181px) {
	#section-1 {
		padding-bottom: 170px;
	}
	.hero {
		position: absolute;
		bottom: -220px;
		left: -180px;
		z-index: 1;
	}
}
@media (min-width: 581px) {
	#section-1 {
		background: url(../images/section-1.png) center top / cover no-repeat;
		padding-top: 18px;
		margin-bottom: -50px;
	}
	.pill {
		margin-top: 130px;
		margin-left: 0;
		font-size: 1.375em;
	}
	#section-1 .cta-wrap {
		flex-direction: row;
	}
	#section-1 .btn {
		font-size: 1.375em;
		padding: 1em 3.75em;
	}
	h1 span.text-grad {
		font-size: 1.5em;
	}
	#section-1 .btn {
		margin-right: 25px;
	}
}
@media (max-width:580px) {
	#section-1 {
		background: url(../images/section-1-mob.png) center top / cover no-repeat;
	}
	.hero {
		width: 130%;
		height: auto;
		margin-left: -15%;
    margin-bottom: -30%;
	}
	.tnc-link {
		margin: 20px auto 0;
		display: block;
		width: fit-content;
		font-size: 1em;
	}
	#section-1 .rw-custom {
		text-align: center;
	}
	#section-1 .rw-custom.es-disclaimer {
		margin-bottom: 50px;
	}
}

.mid-wrap {
	border-radius: 48px 48px 0px 0px;
	background: #000 url(../images/mid-wrap.png) center bottom / 100% auto no-repeat;
	position: relative;
	z-index: 2;
	padding: 54px 0;
}

.box {
	border-radius: 24px;
	padding: 42px 42px 50px;
	background-position: center;
	background-size: 100% 100%;
}
.box-1 {
	background-image: url(../images/box-1.png);
}
.box-2 {
	background-image: url(../images/box-2.png);
}
.box h2::before {
	content: "";
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	margin-bottom: -5px;
}
.box-1 h2::before {
	background: url(../images/sparkles.svg) center center / contain no-repeat;
}
.box-2 h2::before {
	background: url(../images/percent.svg) center center / contain no-repeat;
}
.box .text-larger {
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
}
.box .il {
	margin: 30px auto 50px;
	display: block;
}
.tags {
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
	width:80%;
	margin-left:auto;
	margin-right:auto;
}
.tags span {
	border-radius: 8px;
	border: 2px solid rgba(255, 255, 255, 0.20);
	padding: 9px 12px;
}
.table {
	max-width: 360px;
	margin: 20px auto 40px;
}
.table > div {
	padding: 1px 0;
}
.table > div:not(:last-child) {
	border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.table span:first-child {
	text-align: right;
	width: 31%;
	margin-right: 22%;
	display: inline-table;
}
.table span:last-child {
	text-align: left;
	width: 47%;
}
div.plus-sign {
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.80);
	backdrop-filter: blur(6px);
	width: 56px;
	height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #161717;
	font-size: 3em;
}
button.cta-link {
	background: transparent;
	color: #fff;
	border: 0 none;
	outline: 0 none;
	cursor: pointer;
	padding: 0;
	margin: 0 auto 40px;
	width: fit-content;
	font-family: "Gilroy", Arial, san-serif;
}
button.cta-link::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 8px;
	vertical-align: middle;
	background: url(../images/information.svg) center center / contain no-repeat;
}
@media (min-width: 1181px) {
	#section-2 .col-2 {
		position: relative;
	}
	div.plus-sign {
		width: 82px;
		height: 82px;
		position: absolute;
		top: calc(50% - 41px);
		left: calc(50% - 41px);
		z-index: 2;
	}
}
@media (max-width:1180px) {
	.plus-sign {
		margin-left: calc(50% - 28px);
    margin-top: -15px;
    margin-bottom: -15px;
		position: relative;
		z-index: 2;
	}
}
@media (max-width:580px) {
	.box {
		padding: 42px 24px;
	}
	.box hr {
		margin: 24px 0;
	}
	div.box h2 {
		position: relative;
		padding-left: 36px;
	}
	.box h2::before {
		position: absolute;
		left: 0;
		top: 10px;
		width: 24px;
		height: 24px;
	}
	div.box p.large {
		text-align: center;
	}
}

#section-3 .col-2 {
	background: url(../images/section-3.png) right top no-repeat;
}
.box-small {
	border-radius: 12px;
	padding: 30px 36px;
	background: url(../images/box-small.png) center center / 100% 100% no-repeat;
	backdrop-filter: blur(6px);
	display: flex;
	gap: 5%;
	align-items: center;
	margin-bottom: 8px;
}
.box-small p {
	width: 59%;
}
.box-small p.large {
	width: 36%;
	text-align: initial;
}
.box-small p.large::after {
	content: "";
	display: block;
	width: 1px;
	height: calc(100% - 60px);
	background: #3E4054;
	position: absolute;
	top: 30px;
	left: 39%;
}
@media (min-width: 581px) {
	#section-3 .rw-custom {
		text-align: center;
	}
	.box-small {
		min-width: 560px;
	}
}
@media (max-width: 580px) {
	#section-3 .col-2 {
		background: url(../images/section-3.png) right bottom / 100% auto no-repeat;
	}
	.box-small {
		padding: 20px;
	}
	.box-small p, .box-small p.large {
		text-align: center;
	}
	.box-small p {
		width: 55%;
	}
	.box-small p.large {
		width: 40%;
	}
	.box-small p.large::after {
		left: 43%;
	}
	#section-3 .il {
		margin-top: 40px;
	}
}

#section-4 {
	background: url(../images/section-4.png) center center / 100% auto no-repeat;
}
div.il-3-container {
	margin: 60px auto -60px;
	width: fit-content;
	position: relative;
	z-index: 1;
}
.box-icon {
	padding: 33px 24px 156px;
	background: url(../images/box-icon.png) center center / 100% 100% no-repeat;
	border-radius: 12px;
	position: relative;
	margin-bottom: 2%;
}
.box-icon p {
	margin-bottom: 0;
}
.icon {
	position: absolute;
	bottom: 0;
	right: 30px;
}
@media (min-width: 581px) {
	#section-4 div.cta-wrap {
		margin: 50px auto;
	}
}
@media (max-width: 580px) {
	#section-4 {
		background: url(../images/section-4-mob.png) center 21% / 100% auto no-repeat;
	}
	div.il-3-container {
		margin: 100px auto 40px;
	}
	div.il-3-container img.il {
		display: block;
		width: 150%;
		max-width: unset;
		margin-left: -33%;
	}
	.box-icon {
		background: url(../images/box-icon-mob.png) center center / 100% 100% no-repeat;
		margin-bottom: 10px;
		padding: 24px 140px 24px 32px;
		min-height: 100px;
		display: flex;
    align-items: center;
		overflow: hidden;
	}
	.icon {
		transform-origin: bottom;
    transform: scale(.75);
		bottom: -5px;
		right: 15px;
	}
}



/* Mobile View */

@media (max-width:580px) {
	.btn {
		margin: 20px auto 0;
		width: 100%;
	}
	h1, h2, h3 {
		font-size: 2.125em;
	}
	h1 {
		text-align: center;
	}
	.page-wrap h2 {
		text-align: initial;
	}
	.mid-wrap {
		background-image: url(../images/mid-wrap-mob.png);
	}
}




/* 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: .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", Arial, san-serif !important;
	font-weight: 700;
}

.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;
		height: auto;
	}
}



.modal {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 10;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  transition: all 250ms;
	overflow-x: hidden;
}
.modal-close-button {
  position: absolute;
  z-index: 3;
  top: -20px;
  right: -20px;
  background: url(../images/popup-close.svg);
  background-size: contain;
  width: 40px;
  height: 40px;
  border: none;
	border-radius: 50%;
	backdrop-filter: blur(10px);
	cursor: pointer;
}
.modal-show {
  opacity: 1;
  visibility: visible;
  transition: all 500ms;
}
.modal-content {
  border-radius: 12px;
  text-align: center;
  position: relative;
  width: 90%;
  max-width: 1240px;
  height: auto;
  margin: auto;
  padding: 50px;
  background: url(../images/popup.png) center center / 100% 100% no-repeat;
}
@media (max-width: 580px) {
	.modal-content {
		padding: 20px;
	}
}


[data-modal-case] .modal-content {
	background: linear-gradient(134deg, rgba(138, 185, 255, 0.96) 23.17%, rgba(184, 184, 255, 0.96) 100%);
	color: #fff;
}
[data-modal-case] div.block-center {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
[data-modal-case] .col-2 {
	position: relative;
}
[data-modal-case] .border {
	display: flex;
	padding: 16px;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.20);
	margin-bottom: 32px;
}
[data-modal-case] .pill {
	font-size: 1em;
}
@media (min-width: 1181px) {
	[data-modal-case] div.border {
		width: 46%;
	}
	[data-modal-case] .plus-sign-modal {
		position: absolute;
		width: 50px;
		height: 50px;
		text-align: center;
		font-size: 40px;
		top: calc(50% - 34px);
		left: calc(50% - 25px);
	}
}
@media (max-width: 1180px) {
	[data-modal-case] .plus-sign-modal {
		margin-top: -16px;
    margin-bottom: 10px;
	}
}
@media (max-width: 580px) {
	[data-modal-case] h2 {
		font-size: 16px;
	}
	[data-modal-case] hr {
		margin: 10px 0;
	}
	[data-modal-case] p {
		font-size: 12px;
	}
	[data-modal-case] ul li {
		font-size: 12px;
		padding: 2px 0;
	}
	[data-modal-case] .border {
		gap: 5px;
		margin-bottom: 10px;
		padding: 8px;
	}
	[data-modal-case] .text-large {
		font-size: 16px;
	}
	[data-modal-case] .pill {
		line-height: 2.5;
	}
	[data-modal-case] .plus-sign-modal {
		margin-top: -10px;
    margin-bottom: 0px;
	}
}

[data-modal-success] .modal-content {
	padding-top: 0;
}
[data-modal-success] h2::before {
	content: "";
	display: block;
	width: 100%;
	height: 360px;
	background: url(../images/success.png) center top no-repeat;
}
[data-modal-success] .btn {
	margin-top: 40px;
	margin-bottom: 20px;
}
@media (max-width: 580px) {
	[data-modal-success] h2::before {
		transform: scale(.75);
		transform-origin: top;
		width: 140%;
    height: 330px;
    margin-left: -20%;
		margin-bottom: -45px;
	}
}

.pdf-wrapper{
	position: fixed;
	top: 0; left: 0;
	height: 100vh; 
	width: 100vw;
	background: #fff;
	z-index: 500;
	bottom: 0;
	display: flex;
	align-items: flex-end;
	visibility: hidden;
  }
  .pdf-wrapper .modal-body{
	width: 100%; box-sizing: border-box; height: calc(100vh - 30px);
  }
  .pdf-wrapper .pdf-frame iframe{
	width: 100%; border: none; height: calc(100vh - 30px);
  }
  .pdf-wrapper .modal-header{
	position: absolute; top: 0; left: 0; width: 100%;
	display: flex; justify-content: flex-end; box-sizing: border-box; padding-right: 6px; align-items: center;
  }
  .pdf-wrapper .modal-header .icon-close {
	height: 30px; width: 30px;
	background: url(../../../pdfjs/web/images/icon-close-light.svg) no-repeat center center;
	background-size: 18px;
	cursor: pointer; 
  }
  .noscroll{
	height: 100%; width: 100%; overflow: hidden;
  }

  .mid-wrap h2{
	font-size:1.8em;
  }
  
  .modal .btn.cta_chat{
	display: none;
  }