* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --main-bg-color: #000;
  --basic-text-color: #fff;
  --header-bg-color: #212121;
  --accent-color: #03BFF1;
  --btn-bg: #2974EE;
  --btn-hover: #2b89cd;
  --ui-gradient: linear-gradient(90deg, #00C2F3 0%, #4764AF 100%);
  --font-primary: "Inter";
  --font-secondary: "Inter";
  --box-border-radius: 24px;
  --footer-bg: #212121;
}
html,
body {
  min-height: 100vh;
  overflow-x: hidden !important;
  font-family: var(--font-primary), "Segoe UI", Tahoma, Geneva, Verdana,
    sans-serif;
  font-weight: 400;
  scroll-behavior: smooth;
  background-color: var(--main-bg-color);
  color: var(--basic-text-color);
}
.main-wrapper {
  display: flex;
  flex-direction: column;
}
.main {
  flex: 1 1 auto;
  position: relative;
}
ul li {
  list-style: none;
}
ol li {
  list-style-type: decimal;
  list-style-position: inside;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  font-family: inherit;
}
input,
textarea {
  outline: none;
  font-family: inherit;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.section-heading {
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 144.444%;
}
.section-text {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
}
.card-heading {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 128.571%;
  letter-spacing: -0.28px;
}
.card-text {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: -0.16px;
}
.text-white {
  color: #fff;
}
.text-accent {
  color: var(--accent-color);
}
.text-strong {
  font-weight: 700;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.uppercase {
  text-transform: uppercase;
}
.mt-05 {
  margin-top: 0.5rem;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-25 {
  margin-top: 2.5rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mt-35 {
  margin-top: 3.5rem;
}
.mt-4 {
  margin-top: 4rem;
}
.mt-5 {
  margin-top: 5rem;
}

/*==== GRID ===============================*/
.flex {
  display: flex;
}
.center {
  align-items: center;
}
.start {
  align-items: flex-start;
}
.end {
  align-items: flex-end;
}
.just-center {
  justify-content: center;
}
.just-between {
  justify-content: space-between;
}
.just-evenly {
  justify-content: space-evenly;
}
.just-start {
  justify-content: flex-start;
}
.just-end {
  justify-content: flex-end;
}
.column {
  flex-direction: column;
}
.wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.gap-1 {
  gap: 1rem;
}
.gap-2 {
    gap: 2rem;
}

.centred {
  margin-left: auto;
  margin-right: auto;
}
.full-w {
  width: 100% !important;
}
.full-w-img {
  width: 100%;
  height: auto;
}
.tab-only {
  display: none;
}

@media screen and (max-width: 1199px) {
  .tab-only {
    display: block;
  }
  .md-column {
    flex-direction: column;
  }
  .md-column-reverse {
    flex-direction: column-reverse;
  }
  .md-flex-center {
    align-items: center;
  }
  .md-flex-wrap {
    flex-wrap: wrap;
  }
  .md-just-center {
    justify-content: center;
  }
  .md-w-100 {
    width: 100% !important;
  }
  .md-centred {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .md-mt-2 {
    margin-top: 2rem;
  }
  .md-mt-25 {
    margin-top: 2.5rem;
  }
  .md-mb-1 {
    margin-bottom: 1rem;
  }
  .md-text-center {
    text-align: center;
  }
  .md-d-block {
    display: block;
  }
  .md-grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .md-grid-cols-2 {
      grid-template-columns: repeat(2, 1fr);
  }
  .md-grid-cols-3 {
      grid-template-columns: repeat(3, 1fr);
  }
  .md-grid-cols-4 {
      grid-template-columns: repeat(4, 1fr);
  }
  .md-gap-1 {
      gap: 1rem;
  }
  .md-gap-2 {
      gap: 2rem;
  }
}

@media screen and (max-width: 599px) {
  .mob-only {
    display: block;
  }
  .sm-column {
    flex-direction: column;
  }
  .sm-flex-center {
    align-items: center;
  }
  .sm-w-100 {
    width: 100% !important;
  }
  .sm-centred {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .sm-mt-1 {
    margin-top: 1rem;
  }
  .sm-mt-2 {
    margin-top: 2rem;
  }
  .sm-mb-1 {
    margin-bottom: 1rem;
  }
  .sm-text-center {
    text-align: center;
  }
  .sm-grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .sm-grid-cols-2 {
      grid-template-columns: repeat(2, 1fr);
  }
  .sm-grid-cols-3 {
      grid-template-columns: repeat(3, 1fr);
  }
  .sm-grid-cols-4 {
      grid-template-columns: repeat(4, 1fr);
  }
  .sm-gap-1 {
      gap: 1rem;
  }
  .sm-gap-2 {
      gap: 2rem;
  }
}

/* BUTTON */
.btn {
  display: block;
  padding: 20px;
  min-height: 64px;
  background: var(--ui-gradient);
  color: #fff;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0px 11px 22px 0px rgba(0, 0, 0, 0.11), 0px 4.237px 7.007px 0px rgba(0, 0, 0, 0.07), 0px 0.896px 1.793px 0px rgba(0, 0, 0, 0.04);
  border: 0;
  border-radius: 55px;
  transition: all ease 0.2s;
}
.btn:hover {
  background: var(--btn-hover);
}
.btn:active {
  transform: scale(0.98);
}





/* HEADER */
.header {
  background-color: var(--header-bg-color);
  padding: 1.5rem 0;
}
.logo-img {
  cursor: pointer;
  aspect-ratio: 114 / 56;
  height: auto;
}
.nav-list li {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.16px;
  margin: 0 0 0 1.8rem;
}
.nav-list li a {
  color: #fff;
  transition: all ease 0.2s;
}
.nav-list li:hover a {
  color: var(--accent-color);
}
.header .btn {
  min-height: 48px;
}
.mob-only {
  display: none;
}



/* HERO */
.hero-section {
  background: #fff;
  padding: 10rem 0 2.6rem 0;
  position: relative;
  overflow: hidden;
}
.article-section {
  padding: 6rem 0 6rem 0;
}
.hero-section .bg-gradient {
  position: absolute;
  width: 85.5%;
  height: 1058px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0%, #FFF 83.26%);
  z-index: 3;
  top: 0;
  left: 0;
}
.hero-section .container {
  position: relative;
  z-index: 5;
}
.hero-section .text-part {
  width: 56.62%;
  max-width: 770px;
}
.main-heading {
  font-size: 2.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 118.182%;
}
.hero-section .text-part .section-text {
  color: #434343;
}
.hero-section .text-part .btn {
  width: 206px;
}
.hero-section .img-part {
  width: 38.9%;
  max-width: 529px;
}





/* BROKERS */
.brokers-section {
  padding: 2rem 0;
}
.brokers-section .cards-wrapper {
  border-radius: var(--box-border-radius);
  background: #212121;
  overflow: hidden;
  border: 1px solid #515151;
}
.card {
  padding: 2rem;
  border-bottom: 1px solid #515151;
}
.card:last-child {
  border-bottom: none;
}
.card .logo-wrapper {
  width: 100%;
  max-width: 268px;
  gap: 12px;
}
.card .logo-wrapper .broker-logo {
  width: 100%;
  max-width: 268px;
  height: auto;
}
.card .logo-wrapper .descr {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.12px;
}

.card .deposit-wrapper {
  width: 100%;
  max-width: 264px;
  gap: 1rem;
}
.card .deposit-wrapper .deposit-item {
  padding: 12px;
  border-radius: 20px;
  background: #000;
}
.card .deposit-wrapper .deposit-item p {
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.16px;
}
.card .deposit-wrapper .deposit-item h4 {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.24px;
}

.card .features-list {
  width: 100%;
  max-width: 310px;
  gap: 1rem;
}
.card .features-list li {
  height: 24px;
  padding-left: 2rem;
  
  
  background: url('../images/list.svg') no-repeat 0 0 / 24px;
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.16px;
}

.card .btn-wrapper {
  width: 100%;
  max-width: 250px;
  gap: 20px;
}
.payment-methods-row {
  gap: 8px;
}


/* FAQ */

.faq__section {
	background: var(--primary-color);
	padding: 70px;
}

.faq__title {
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	line-height: 60px;
	margin: 0 0 40px;
}

.faq__item {
	width: 100%;
	overflow: hidden;
	margin-top: 20px;
	border: 1px solid #F3F3F3;
	border-radius: 24px;
	background: #fff;
	box-shadow: -15px 15px 0px 0px rgba(0,0,0,0.46);
}

.faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: transparent;
	font-size: 28px;
	cursor: pointer;
	font-style: normal;
	font-weight: 700;
	line-height: 36px;
	padding: 30px;
	width: 100%;
	text-align: left;
	transition: all ease 0.2s;
}

.faq__question:after {
	content: '';
	float: right;
	flex-shrink: 0;
	margin-left: 5px;
	font-size: 2.8rem;
	font-weight: 200;
	background: url(../img/arrow.svg) no-repeat center center;
	background-color: var(--primary-color);
	border-radius: 12px;
	transition: all ease 0.2s;
	width: 48px;
	height: 48px;
	transform: rotateZ(180deg);
	box-shadow: 5px -5px 0px 0px rgba(153,153,153,1);
}

.faq__question.active:after {
	font-size: 2.8rem;
	font-weight: 200;
	transform: rotateZ(0deg);
}

.faq__content {
	padding: 0;
	background-color: transparent;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	border-top: none;
}

.faq__content p {
	padding: 0 30px 30px 30px;
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
}




/* PORTFOLIO */
.portfolio-section {
  padding: 4rem 0 6rem 0;
}
.portfolio-section .section-heading {
  position: relative;
}
.portfolio-section .section-heading span {
  display: inline-block;
  width: 62%;
  position: relative;
  z-index: 8;
  background: var(--main-bg-color);
  padding-right: 1rem;
}
.portfolio-section .section-heading::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  background: #04BDF0;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.portfolio-list li {
  margin-bottom: 1rem;
  font-size: 16px;
  font-style: normal;
  line-height: 175%;
  padding-left: 2rem;
  display: flex;
  align-items: center;
  position: relative;
}
.portfolio-list li::before {
  content: '';
  width: 1rem;
  height: 1rem;
  display: inline-block;
  border-radius: 50px;
  background: #05BCEF;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.portfolio-list li:last-child {
  margin-bottom: 0;
}






/* FOOTER */
.footer {
  background: var(--footer-bg);
  padding: 4rem 0;
}
.footer-link {
  display: inline-block;
}
.policies .footer-link {
  margin-left: 2rem;
}
.policies .footer-link:first-child {
  margin-left: 0;
}
.footer .col-001 {
  width: 30%;
  max-width: 400px;
}
.footer .col-002 {
  width: 50%;
  max-width: 606px;
}
.footer .col-003 {
  width: 16%;
  max-width: 88px;
}
.footer p {
  color: #FFFFFB;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.16px;
}
.footer .location {
  text-decoration: underline;
}
.footer .navigation ul li {
  margin-right: 2.2rem;
  margin-left: 0;
}
.footer .navigation ul li:last-child {
  margin-right: 0;
}


/* COOKIES DISCLAIMER */
.cookie-bar {
  background: #FAFAFA !important;
  border: 2px solid #bdbcbc !important;
  color: #535353 !important;
  border-radius: 1.2rem !important;
  box-shadow: 0px 16px 25px 0px rgba(0, 0, 0, 0.08), 0px 6.163px 7.963px 0px rgba(0, 0, 0, 0.05), 0px 1.304px 2.037px 0px rgba(0, 0, 0, 0.03) !important;
}
#cookie-bar-btn {
  background: var(--accent-color) !important;
  border-radius: 44px !important;
}






/* MEDIA */
@media screen and (max-width: 1699px) {
  .container {
    max-width: 1220px;
  }
  .btn {
    padding: 1rem;
    min-height: 56px;
  }
  .main-heading {
    font-size: 3.2rem;
  }
  .card .logo-wrapper {
    max-width: 228px;
  }
  .faq-section {
    padding: 5rem 0;
  }
  .section-heading {
    font-size: 2.4rem;
  }
  .card-heading {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1199px) {
  .mob-only {
    display: block;
  }
  .navigation {
    display: none;
  }
  .mob-menu {
    position: fixed;
    top: 0;
    right: -100%;
    background: var(--ui-gradient);
    backdrop-filter: blur(3px);
    min-height: 100vh;
    width: 55%;
    min-width: 280px;
    z-index: 55;
    padding: 5rem 2rem 2rem;
    border-left: 1px solid #777377;
    transition: all ease 0.5s;
  }
  .mob-menu .nav-list {
    flex-direction: column;
    align-items: flex-end;
  }
  .mob-menu .nav-list li {
    margin: 1rem 0;
    text-align: right;
  }
  .mob-menu .nav-list li a {
    color: #fff;
    font-size: 1.2rem;
  }
  .menu-close-img {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  .nav-underlay {
    display: block;
    position: fixed;
    z-index: -3;
    opacity: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: all ease 0.4s;
  }
  .nav-underlay.active {
    z-index: 54;
    opacity: 1;
  }
  .card {
    padding: 1.8rem 1.2rem;
  }
  .faq-item {
    padding: 1.4rem 1.2rem;
    border-radius: 1.2rem;
  }
  .faq-item .card-heading::after {
    width: 2.4rem;
    min-width: 2.4rem;
    height: 2.4rem;
    background: var(--accent-color) url(../img/chevron-down.png) no-repeat center / 1rem;
  }
  .section-heading {
    font-size: 2.2rem;
  }
  .footer .col-001 {
    width: 48%;
  }
  .footer {
    padding: 2.5rem 0;
  }
  .footer .navigation {
    display: block;
  }
}

@media screen and (max-width: 599px) {
  .menu-btn-img {
    width: 24px;
    height: 24px;
  }
  .logo-img {
    width: 6rem;
  }
  .hero-section,
  .article-section {
    padding: 4rem 0 4rem 0;
  }
  .main-heading {
    font-size: 2.2rem;
  }
  .card .logo-wrapper,
  .card .deposit-wrapper,
  .card .features-list,
  .card .btn-wrapper {
    max-width: unset;
  }
  .about-section {
    padding: 0 0 4rem 0;
  }
  .faq-section {
    padding: 4rem 0;
  }
  .section-heading {
    font-size: 1.75rem;
  }
  .portfolio-section .section-heading span {
    width: 82%;
  }
  .faq-item {
    padding: 1.2rem 1rem;
    border-radius: 1rem;
  }
  .card-heading {
    font-size: 1.2rem;
  }
  .footer .col-001,
  .footer .col-002,
  .footer .col-003 {
    width: 100%;
    max-width: unset;
  }
}
