@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", Arial, san-serif;
	font-size: 100%;
	line-height: 1.5;
	color: #161717;
	background: #fff;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	max-width: 100%;
	height: auto;
}
img.inline {
	vertical-align: middle;
}
h1, h2, h3, h4 {
	font-family: "Gilroy", Arial, san-serif;
	font-weight: 600;
	line-height: 1.25;
	margin-bottom: .25em;
}
h1 {
	font-size: 2.5em;
	margin-bottom: 1em;
}
h2 {
  font-size: 3em;
}
h3 {
  font-size: 1.375em;
	margin-bottom: .75em;
}
h4 {
	font-size: 1.25em;
	text-transform: uppercase;
}
h1 br {
	display: none;
}
p {
	margin-bottom: 10px;
}
p.large {
	font-size: 1.125em;
	font-weight: 500;
}
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;
}
ul li {
	position: relative;
	padding: 10px 25px;
}
ul li:before {
	content: "";
	display: inline-block;
	vertical-align: text-bottom;
	width: 15px;
	height: 15px;
	background: url(../images/bullet.png) center center/contain no-repeat;
	position: absolute;
	left: 0;
	right: 0;
	top: 16px;
}

/* Brand styles */

.btn {
	display: block;
	width: 100%;
	padding: 1.25em;
	color: #fff;
	background: linear-gradient(300deg, #ff6770 17.81%, #ff4b55 81.86%); /*	red */
	/* background: linear-gradient(300deg, #09C6F9 17.81%, #045DE9 81.86%);  blue */
	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 0 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;
	
}
.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: 1248px;
	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;
	align-items: center;
}
.col-2 > div, .col-3 > div, .col-4 > div {
	box-sizing: border-box;
}
 
@media (min-width: 1181px) {
  .col-2 > div {
    width: 50%;
  }
  .col-2 > div.wide {
    width: 65%;
  }
  .col-2 > div.narrow {
    width: 30%;
  }
  .col-3 > div {
    width: 32%;
  }
  .col-4 > div {
    width: 25%;
  }
  .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: 50%;
  }	
  .hidden-sm {
    display: none;
  }
}

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



/* Page Styles */

:target {
	scroll-margin-top: 30px;
	scroll-snap-margin-top: 30px;
}

#page-wrap {
	background: url(../images/page-bkgr.png) top center no-repeat;
}


#section-1 {
	min-height: 50vh;
	display: flex;
	padding-bottom: 140px;
}

.illustration img {
	display: block;
	margin: auto;
}

a.link {
	text-decoration: underline;
}

/* Desktop View */

@media (min-width: 1181px) {
	h1 br {
		display: inline;
	}
	section {
		padding: 40px 0;
	}
	.holder {
		padding-left: 80px;
	}
}


/* Small Desktop View */

@media (max-width:1180px) {
	h1 {
		font-size: 2.25em;
	}

}



@media (orientation:landscape) and (max-height:740px) {
	body {
		line-height: 1.25;
	}
	#section-1 {
		padding-top: 0;
	}

}

/* Mobile View */

@media (max-width:580px) {
	body {
		line-height: 1.25;
	}
	.container {
		padding-top: 30px;
	}
	.container:last-child, .header {
		padding-bottom: 30px;
	}
	#page-wrap {
		background: url(../images/page-bkgr-mob.png) center center/cover no-repeat;
	}
	#section-1 {
		padding-bottom: 20px;
	}
	h1 {
		font-size: 1.75em;
	}
	h2, h3 {
		font-size: 2.125em;
	}
	p.large {
		font-size: 1em;
	}
	.illustration img {
		max-width: 70%;
	}
}



/* 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;
	}
}


div.rw-custom, div.rw-custom span {
	color: #a2a2a2 !important;
}

.rw-custom img {
	display: none !important;
}

.country_at .rw-custom img {
	display: inline-block !important;
}