.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

@media (min-width: 768px) {
  .text-md-center {
    text-align: center;
  }
  .text-md-right {
    text-align: right;
  }
  .text-md-left {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .text-lg-center {
    text-align: center;
  }
  .text-lg-right {
    text-align: right;
  }
  .text-lg-left {
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .text-xl-center {
    text-align: center;
  }
  .text-xl-right {
    text-align: right;
  }
  .text-xl-left {
    text-align: left;
  }
}
.basic-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 991px) {
  .basic-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.google-signin {
  position: relative;
  width: -moz-min-content;
  width: min-content;
}
.google-signin .googleSignInButton__loading-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  width: 100%;
  background-color: #05d189;
  border-radius: 1em;
  overflow: hidden;
  z-index: 10;
  display: none;
}
.google-signin .googleSignInButton__loading-bar.active {
  display: block;
}
.google-signin .googleSignInButton__loading-bar::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3333333333), rgba(230, 230, 230, 0.891));
  animation: loading-animation 1.3s infinite;
  border-radius: 0 0 4px 4px;
}

@keyframes loading-animation {
  0% {
    left: -50%;
  }
  100% {
    left: 150%;
  }
}
@keyframes status-blink-fill {
  0%, 100% {
    fill: #4D7466;
  }
  50% {
    fill: #99B3AA;
  }
}
.z-index-2 {
  z-index: 2;
}

body.preload * {
  animation-duration: 0s !important;
  transition: background-color 0s, opacity 0s, color 0s, width 0s, height 0s, padding 0s, margin 0s !important;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 19px 0;
  z-index: 99;
  transition: 300ms all;
  animation: smoothScroll;
}
header .menu-container .btns-wrapper {
  display: none;
}
@media (min-width: 768px) {
  header {
    padding: 18px 0 12px;
  }
}
header.fixed {
  border-bottom: 0.2px solid #212B36;
  background: #FFF;
  box-shadow: 0px 2px 12px 0px rgba(33, 43, 54, 0.1);
  z-index: 10;
}
@media (min-width: 991px) {
  header.fixed .menu-container .btns-wrapper {
    display: flex;
  }
}
header.fixed .container {
  align-items: center;
}
header.fixed .container .dropdown__main-link {
  color: #212B36;
}
header.fixed .container .dropdown:hover .dropdown__main-link {
  color: #02A169;
}
@media (min-width: 991px) {
  header.fixed .regulated-wrapper .regulated-line {
    color: white;
  }
  header.fixed .regulated-wrapper .btn {
    display: block;
  }
}
header .regulated-wrapper {
  padding-bottom: 1.5rem;
}
header a.logo {
  line-height: 1;
  width: 200px;
  margin-right: 0;
}
header .switchmarkets-logo {
  -o-object-fit: contain;
     object-fit: contain;
}
header .regulated-wrapper .btn {
  display: none;
}
@media (max-width: 1199px) {
  header .container {
    align-items: center;
  }
}
header .icon-bar {
  transition: all 0.2s;
  display: block;
  width: 24px;
  height: 3px;
  opacity: 1;
  background-color: white;
  transition: transform 250ms ease-in-out;
}
header .icon-bar.middle-bar {
  margin: 5px 0;
}
header .toggle-nav, header .navbar.sidebar {
  display: none;
}
@media (max-width: 1199px) {
  header {
    /**
     * Submenu
     -----------------------------*/
  }
  header .navbar.sidebar .ul-nav-wrapper {
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: calc(100vh - 40px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: calc(100% - 1rem);
    margin: 4.5rem auto 0.5rem;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
  }
  header .navbar.sidebar .ul-nav-wrapper::-webkit-scrollbar {
    display: none;
  }
  header .toggle-nav {
    padding: 0 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    background: transparent;
    border: none;
    outline: none;
    z-index: 101;
    transition: transform 150ms ease-in-out;
  }
  header .toggle-nav.active {
    position: fixed;
    top: 25px;
    right: 7px;
  }
  header .toggle-nav.active .top-bar {
    transform: rotate(45deg);
    transform-origin: -2% 10%;
  }
  header .toggle-nav.active .middle-bar {
    opacity: 0;
  }
  header .toggle-nav.active .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 7% 90%;
  }
  header .toggle-nav.active .icon-bar {
    background-color: #212B36;
  }
  header .navbar.sidebar {
    display: block;
    position: fixed;
    top: 0;
    z-index: 15;
    width: 100%;
    min-height: 100vh;
    height: 100vh; /* Fallback for browsers that do not support Custom Properties */
    overflow: hidden;
    background: #fff;
    margin: 0 auto;
    line-height: 2.5;
    right: -100%;
    transition: all 350ms ease-in-out;
  }
  header .navbar.sidebar li.navbar-nav__item a::after {
    display: none;
  }
  header .navbar.sidebar a {
    opacity: 1;
  }
  header .navbar.sidebar a:hover {
    color: #00F198;
  }
  header .navbar.sidebar .navbar-nav {
    transform: translateX(50px);
    opacity: 0;
    /*transition: all 250ms ease-in-out;
    transition-delay: 150ms;*/
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item {
    opacity: 0;
    transform: translateX(25%);
    /*transition-delay: .35s;
    transition: all 200ms ease-in-out;*/
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(1) {
    transition-delay: 20ms;
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(2) {
    transition-delay: 40ms;
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(3) {
    transition-delay: 80ms;
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(4) {
    transition-delay: 120ms;
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(5) {
    transition-delay: 140ms;
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(6) {
    transition-delay: 160ms;
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(7) {
    transition-delay: 180ms;
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(8) {
    transition-delay: 200ms;
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(9) {
    transition-delay: 220ms;
  }
  header .navbar.sidebar .navbar-nav .navbar-nav__item:nth-child(10) {
    transition-delay: 240ms;
  }
  header .navbar.sidebar.active {
    right: 0;
    z-index: 100;
  }
  header .navbar.sidebar.active .navbar-nav {
    transform: translateX(0);
    opacity: 1;
    max-height: 90vh;
  }
  header .navbar.sidebar.active .navbar-nav__item {
    transform: translateX(0);
    opacity: 1;
  }
  header .navbar.sidebar ul.navbar-nav li.navbar-nav__item {
    display: block;
    margin-left: 0;
  }
  header .navbar.sidebar .btn {
    max-width: 400px;
    margin: 0 auto;
    width: calc(100% - 1rem);
    margin-bottom: 12px;
  }
  header .navbar.sidebar .btn:hover {
    color: #212B36;
  }
  header .accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
  }
  header .client-login {
    margin: 0 auto;
    max-width: 1000px;
    padding: 20px 0 12px 16px;
  }
  header .client-login a {
    color: #fff;
  }
  header .accordion .link {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    position: relative;
    font-weight: 500;
    padding: 1rem;
    color: #212B36;
    border-top: 0.5px solid rgba(33, 43, 54, 0.3);
  }
  header .accordion .link .icon {
    font-size: 0.85rem;
    line-height: 0;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    transform: rotate(-90deg);
    position: absolute;
    right: 15px;
  }
  header .accordion .link.open {
    color: #04d189;
  }
  header .accordion .link.open .icon {
    transform: rotate(0deg);
  }
  header .accordion li:last-child .link {
    border-bottom: 0;
    font-size: 1rem;
  }
  header ul.submenu {
    display: none;
    margin-top: 5px;
    margin-bottom: 1rem;
    padding: 0;
  }
  header ul.submenu .title {
    color: rgba(33, 43, 54, 0.4);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
    margin-top: 14px;
  }
  header ul.submenu a {
    display: block;
    text-decoration: none;
    color: #d9d9d9;
    margin-bottom: 1.5rem;
    transition: all 0.25s ease;
  }
}
header .navbar-nav {
  list-style: none;
  position: relative;
  width: 100%;
  line-height: 1;
  margin: 0;
  max-height: 100%;
}
header .navbar-nav li.navbar-nav__item {
  display: inline-block;
}
header .navbar-nav li.navbar-nav__item a {
  position: relative;
  font-family: inherit;
  font-weight: 400;
  color: #212B36;
  text-decoration: none;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
header .navbar-nav li.navbar-nav__item a:not(.btn)::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  right: 0;
  background: #1991ff;
  visibility: hidden;
  border-radius: 5px;
  transform: scaleX(0);
  transition: 0.25s linear;
  margin-right: 0;
  margin-bottom: -0.5rem;
}
header .navbar-nav li.navbar-nav__item a:not(.btn):hover::after {
  visibility: visible;
  transform: scaleX(1);
}
header .menu {
  display: none;
}
header .menu > ul > li.dropdown > ul {
  display: none;
  grid-template-columns: 2.25fr 1fr 1fr 1fr;
  grid-gap: 1rem;
  -webkit-backdrop-filter: saturate(180%) blur(5px);
          backdrop-filter: saturate(180%) blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.98);
  padding: 1.5rem 0;
  margin-top: 10px;
  position: absolute;
  z-index: 99;
  right: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
  transform: translateY(0);
  transition: all 250ms ease-in-out;
}
header .menu > ul > li.dropdown > ul.company {
  grid-template-columns: 4fr 1fr 1fr;
}
header .menu > ul > li.dropdown > ul.active {
  pointer-events: all;
  transform: translateY(1rem);
  opacity: 1;
}
header .menu > ul > li.dropdown > ul.active::after {
  content: " ";
  position: absolute;
  width: 100%;
  right: 0;
  left: 0;
  bottom: 0;
  height: 4px;
  background-image: linear-gradient(to right, #040c48 1%, #00589c 51%, #04d189);
}
header .menu {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  text-align: right;
}
header .menu .apply-after::after {
  content: " ";
  background: linear-gradient(to right, #040c48 1%, #00589c 51%, #04d189);
  position: absolute;
  bottom: -1px;
  height: 4px;
  width: 100%;
}
header .menu .logo {
  display: flex;
  height: 42px;
  margin-top: -7px;
}
header .menu > ul > li.dropdown:hover a {
  opacity: 1;
}
header .menu > ul > li.dropdown:hover > ul {
  display: grid;
  pointer-events: all;
  transform: translateY(28px);
  opacity: 1;
  visibility: visible;
  padding: 32px 38px;
  border-radius: 4px;
  border: 1px solid rgba(33, 43, 54, 0.2);
  background: #FFF;
}
header .menu > ul > li.dropdown:hover > ul a {
  color: #777;
  width: -moz-max-content;
  width: max-content;
  border-radius: 4px;
  padding: 8px 12px;
  display: flex;
}
header .menu > ul > li.dropdown:hover > ul a:hover {
  background: rgba(4, 209, 137, 0.1490196078);
  color: #212B36;
}
header .menu > ul > li.dropdown:hover > ul a.btn {
  color: black;
}
header .menu > ul > li.dropdown i {
  font-size: 10px;
  margin-left: 5px;
}
header .menu > ul > li.dropdown ul {
  width: -moz-fit-content;
  width: fit-content;
  left: 0;
}
header .menu-container {
  margin: 0;
  width: 100%;
}
@media (max-width: 1200px) {
  header .menu-container {
    height: 40px;
  }
}
header .menu img {
  max-width: 100%;
  height: auto;
}
header .menu > ul {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-grow: 1;
}
header .menu > ul > li {
  position: relative;
  padding: 1rem 2rem 1rem 1rem;
}
@media (min-width: 1200px) {
  header .menu > ul > li {
    padding: 0.8rem 1rem 0.8rem 0.8rem;
  }
}
header .menu > ul > li:last-child {
  padding: 1rem 0 1rem 1rem;
}
header .menu > ul > li span {
  text-align: left;
}
header .menu > ul > li p {
  text-align: left;
}
header .menu > ul > li > a {
  position: relative;
  text-decoration: none;
  display: block;
  color: white;
  opacity: 1;
  font-family: inherit;
  font-weight: 500;
  transition: all 200ms ease-in-out;
}
header .menu > ul > li > a:hover {
  color: #04d189;
  opacity: 1;
}
header .menu > ul > li > ul > li:not(.align-items-start) {
  margin: 0;
  list-style: none;
  float: left;
  color: #212b36;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header .menu > ul > li > ul > li:not(.align-items-start):first-child {
  padding-right: 40px;
  border-right: 1px solid rgba(33, 43, 54, 0.15);
  margin-right: 20px;
}
header .menu > ul > li > ul > li.align-items-start {
  color: #212b36;
  flex-direction: column;
}
header .menu > ul > li > ul > li a {
  color: #777;
  display: block;
  border-bottom: 1px solid #ccc;
}
header .menu > ul > li > ul > li a:hover:not(.btn) {
  color: #00a268;
}
header .menu > ul > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  box-sizing: border-box;
}
header .menu > ul > li > ul > li > ul > li {
  width: 100%;
  text-align: left;
  margin-bottom: 0;
}
header .menu > ul > li > ul > li > ul > li a {
  border: 0;
  font-size: 16px;
  transition: all 200ms ease-in-out;
}
header .menu > ul > li > ul.normal-sub {
  width: 300px;
  left: auto;
}
header .menu > ul > li > ul.normal-sub > li {
  width: 100%;
}
header .menu > ul > li > ul.normal-sub > li a {
  border: 0;
  width: 100%;
}
@media (max-width: 1199px) {
  header .menu {
    display: none;
  }
}
header input[type=radio] {
  display: none;
}
header .menu > ul > li.dropdown:hover, header .menu > ul > li.dropdown.open {
  opacity: 1;
}

.dropdown:hover .dropdown__main-link::before {
  width: 100%;
}
.dropdown:hover .dropdown__main-link .dropdown__main-link__chevron {
  transform: rotate(-180deg);
}
.dropdown:hover .dropdown__main-link {
  color: #04D189;
}
.dropdown__main-link {
  position: relative;
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
.dropdown__main-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #02A169;
  transition: width 0.3s ease-in-out;
}
.dropdown__main-link .dropdown__main-link__chevron {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}
.dropdown__hover-solution {
  height: 40px;
  position: absolute;
  width: 100%;
}
.dropdown__title {
  color: rgba(33, 43, 54, 0.6);
  margin-bottom: 14px !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
}
.dropdown__item {
  color: #212B36;
  font-size: 16px;
  font-weight: 400;
}
.dropdown__icon {
  margin-right: 6px;
}

.nav-bar__btns .icon-chevron-down {
  display: inline-block;
  transform: rotate(-90deg);
  font-size: 11px;
  margin-bottom: 3px;
}
.nav-bar__btns__client-login {
  color: #fff;
  position: relative;
}
.nav-bar__btns__client-login::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #02A169;
  transition: width 0.3s ease-in-out;
}
.nav-bar__btns__client-login:hover {
  color: #04D189;
}
.nav-bar__btns__client-login:hover::before {
  width: 100%;
}

.switchmarkets-logo {
  position: absolute;
  top: 5px;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .switchmarkets-logo {
    top: -2px;
  }
}
@media (min-width: 1200px) {
  .switchmarkets-logo {
    top: 5px;
  }
}

.logo-white {
  opacity: 1;
  pointer-events: auto;
}

.nav-bar.fixed .logo-white {
  opacity: 0;
}
.nav-bar.fixed .logo-colored {
  opacity: 1;
}
.nav-bar.fixed .nav-bar__btns__client-login {
  color: #212b36;
}
.nav-bar.fixed .nav-bar__btns__client-login:hover {
  color: #02A169;
}
.nav-bar.fixed .icon-bar {
  background-color: #212B36;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: baseline;
  grid-gap: 0.5rem;
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid.grid-wrap {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 991px) {
  .form-grid.grid-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

select::-ms-expand {
  display: none;
}

label {
  margin-bottom: 4px;
  color: inherit;
}

input[type=text],
input[type=email],
input[type=number],
input[type=date] {
  border-radius: 3px;
  border: solid 1px #c4cdd5;
  background-color: #ffffff;
  padding: 0.5rem;
  outline: none;
  width: 100%;
  height: 36px;
  font-size: 0.875rem;
}
input[type=text][readonly=true],
input[type=email][readonly=true],
input[type=number][readonly=true],
input[type=date][readonly=true] {
  background-color: #adadad;
  border-color: #666666;
  cursor: not-allowed;
}

input[type=checkbox] {
  height: 12px;
  width: 40px;
  margin-right: 8px;
  border-radius: 1px;
}
input[type=checkbox].agreement {
  margin-top: 3px;
}

label.radio-label {
  position: relative;
  cursor: pointer;
  margin-left: 12px;
}
label.radio-label [type=radio]:checked,
label.radio-label [type=radio]:not(:checked) {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  line-height: 20px;
  font-size: 0.875rem;
  display: inline-block;
  color: #666;
  left: -12px;
}
label.radio-label [type=radio]:checked::before,
label.radio-label [type=radio]:not(:checked)::before {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}
label.radio-label [type=radio]:checked::after,
label.radio-label [type=radio]:not(:checked)::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #04d189;
  position: absolute;
  top: 1px;
  left: 1px;
  border-radius: 100%;
  transition: all 0.2s ease;
}
label.radio-label [type=radio]:not(:checked)::after {
  opacity: 0;
  transform: scale(0);
}
label.radio-label [type=radio]:checked::after {
  opacity: 1;
  transform: scale(1);
}

.phone-select-wrapper {
  border: 1px solid #c4cdd5;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  border-radius: 3px;
}
.phone-select-wrapper input {
  background-color: white;
  border: none;
  border-radius: 0 3px 3px 0;
  width: 100%;
}
.phone-select-wrapper select {
  display: block;
  border: none;
  border-radius: 3px 0 0 3px;
  border-right: 1px solid #c4cdd5;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  padding-left: 5px;
  padding-right: 16px;
  font-size: 12px;
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6'%3E%3Cpath fill='%23637381' fill-rule='nonzero' d='M0 .017L5.483 5.5 10.966.017z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center right;
  background-position-x: 90%;
  background-size: 11px;
  cursor: pointer;
}

.select {
  margin-top: 4px;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}
.select svg {
  position: absolute;
  right: 12px;
  top: calc(50% - 4px);
  width: 11px;
  height: 11px;
  stroke-width: 2px;
  stroke: #637381;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  fill: #637381;
}
.select select {
  -webkit-appearance: none;
  padding: 7px 40px 7px 12px;
  width: 100%;
  height: 36px;
  border: 1px solid #c4cdd5;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  transition: all 150ms ease;
}
.select select option[value=""][disabled] {
  display: none;
}
.select select:focus {
  outline: none;
  border-color: #07f;
  box-shadow: 0 0 0 2px rgba(0, 119, 255, 0.2);
}
.select select:hover + svg {
  stroke: #07f;
}
.select select:required:invalid {
  color: #5a667f;
}
.select option {
  color: #223254;
}

input:focus,
textarea:focus {
  outline: none;
  border: 1px solid #1991ff !important;
}

textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: #949494;
  opacity: 0.7;
  text-align: left;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

textarea::-moz-placeholder,
input::-moz-placeholder {
  color: #949494;
  opacity: 0.7;
  text-align: left;
  -moz-transition: all 200ms linear;
  transition: all 200ms linear;
}

textarea:-moz-placeholder,
input:-moz-placeholder {
  color: #949494;
  opacity: 0.7;
  text-align: left;
  -moz-transition: all 200ms linear;
  transition: all 200ms linear;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  opacity: 0.7;
  text-align: left;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

textarea:focus:-ms-input-placeholder,
input:focus:-ms-input-placeholder {
  opacity: 0;
  text-align: left;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

textarea:focus::-moz-placeholder,
input:focus::-moz-placeholder {
  opacity: 0;
  text-align: left;
  -moz-transition: all 200ms linear;
  transition: all 200ms linear;
}

textarea:focus:-moz-placeholder,
input:focus:-moz-placeholder {
  opacity: 0;
  text-align: left;
  -moz-transition: all 200ms linear;
  transition: all 200ms linear;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
  opacity: 0;
  text-align: left;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.agreement a {
  text-decoration: underline;
}

/* Popup */
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  opacity: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow-y: auto;
}
.overlay_hidden {
  display: none;
}
.overlay_active {
  transition: opacity 500ms;
  opacity: 1;
  z-index: 100;
}

.overlay.open {
  visibility: visible;
  opacity: 1;
  z-index: 100;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.popup {
  margin: 1rem auto;
  border-radius: 5px;
  width: 90%;
  max-width: 385px;
  transition: all 0.5s ease-in-out;
  z-index: 99;
  background: #0F0F0F;
  color: #fff;
  padding: 40px 16px;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
  position: relative;
  overflow-y: scroll;
}
.popup.popup-light {
  background: #fff;
  color: #212b36;
  padding: 40px 24px;
  max-width: 750px;
}
@media (max-width: 414px) and (max-height: 736px) {
  .popup.popup-light {
    height: auto;
  }
}
@media (min-width: 768px) {
  .popup.popup-light {
    padding: 40px 60px;
  }
}
.popup::-webkit-scrollbar {
  display: none;
}
.popup a {
  color: inherit;
  text-decoration: underline;
  transition: all 200ms ease-in-out;
}
.popup a:hover {
  opacity: 0.8;
}
.popup .popup-form {
  max-width: 570px;
  margin: 0 auto;
  overflow: hidden auto;
  border-radius: 4px;
  color: white;
}
.popup .popup-form form {
  padding: 0.5rem 1rem 1.5rem 1rem;
  max-width: 524px;
  margin: 0 auto;
}
.popup .popup-form label, .popup .popup-form .label {
  color: white;
}
.popup .header {
  text-align: center;
}
.popup h2 {
  text-transform: capitalize;
}
.popup h3 {
  color: white;
  font-size: 1.5rem;
  font-family: inherit;
  margin-bottom: 1.5rem;
}
.popup h4 {
  font-size: 1.2rem;
}
.popup #step2 {
  padding: 4rem 1rem;
}
@media (min-width: 768px) {
  .popup #step2 {
    padding: 2rem 1rem;
  }
}
.popup .close {
  position: absolute;
  top: 8px;
  right: 0.5rem;
  transition: all 200ms;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  color: rgb(0, 0, 0);
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup .content {
  height: auto;
}
.popup .content p {
  font-weight: 300;
}

@media screen and (max-width: 700px) {
  .box {
    width: 70%;
  }
  .popup {
    width: 95%;
    overflow: hidden auto;
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
  }
  .popup::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
  }
  .popup .popup-form .header {
    padding: 1.5rem 1.5rem 1rem 1rem;
  }
  .popup .popup-form .header h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .popup h4 {
    font-size: 1rem;
  }
  .popup .terms {
    font-size: 0.75rem;
  }
}
@media (max-width: 414px) and (max-height: 736px) {
  .popup {
    height: 95%;
  }
}
.input-button-inside {
  display: grid;
  grid-template-columns: 1fr;
  background: none;
  padding: 0;
  border-radius: 3px;
  border: none;
  width: 100%;
  max-width: 400px;
}
.input-button-inside input {
  display: inline-block;
  height: 40px;
  border: none;
}
.input-button-inside input:focus {
  border: 1px solid #04d189 !important;
}
.input-button-inside input::-moz-placeholder {
  text-align: center;
}
.input-button-inside input::placeholder {
  text-align: center;
}
.input-button-inside .btn-green {
  margin-top: 8px;
}

.pop-up-top {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
}

.pop-up-hero {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.pop-up-hero .pop-up-dots {
  position: absolute;
  left: 0;
  top: -20px;
  opacity: 0.2;
}
.pop-up-hero .pop-up-speech {
  width: 300px;
  z-index: 2;
}
.pop-up-hero .pop-up-speech h2 {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 44.75px;
  font-weight: 900;
  line-height: 44.75px;
  text-align: left;
}
.pop-up-hero .pop-up-speech img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pop-up-hero .pop-up-speech-bg {
  position: absolute;
  width: 300px;
  top: -47px;
  right: 17px;
}

#exit-popup .card-wrapper {
  color: #fff;
}
#exit-popup .card-wrapper .price-card {
  border: none;
}
#exit-popup .card-wrapper .price-card:hover {
  box-shadow: 0 0 24px -3px #04d189;
}
#exit-popup .card-wrapper .price-card .price--header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 36.12%, rgba(0, 0, 0, 0.4) 82.95%), linear-gradient(135deg, #040C48 1.44%, rgba(0, 88, 156, 0.85) 50.56%, #009F68 100%), linear-gradient(140deg, #2C7BFD 14.35%, #183F80 96.97%);
}

.social-signin {
  position: relative;
  text-align: center;
  margin-bottom: 16px;
}
.social-signin .social-buttons-wrapper {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 16px;
}
.social-signin .facebookButton {
  flex: 1 1 100%;
}
.social-signin .social-separator__text {
  color: inherit;
  padding: 0 10px;
  margin: 16px auto;
  display: inline;
  text-align: center;
}
.social-signin .social-separator__text::after, .social-signin .social-separator__text::before {
  content: "";
  position: absolute;
  bottom: 11px;
  width: calc(50% - 70px);
  height: 1px;
  background: currentColor;
}
.social-signin .social-separator__text::after {
  right: 0;
}
.social-signin .social-separator__text::before {
  left: 0;
}

* {
  padding: 0;
  margin: 0;
}

*,
::after,
::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-size: 1rem;
  line-height: 1.5;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0;
  font-weight: 400;
  color: #212b36;
  overflow-x: hidden;
}
@media (max-width: 990px) {
  body.menu-open {
    overflow: hidden;
  }
}

input,
select,
textarea,
button,
input:-webkit-autofill::first-line {
  font-family: inherit;
}

.order-n1 {
  order: -1;
}

@media (min-width: 768px) {
  .order-md-2 {
    order: 2;
  }
}
@media (min-width: 991px) {
  .order-lg-2 {
    order: 2;
  }
}
#pageWrap {
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  overflow-x: hidden;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}
#pageWrap::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
}

.subheading {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}

h1,
.h1 {
  font-size: 2.2rem;
  line-height: 1.25;
  letter-spacing: -1px;
}
@media (min-width: 460px) {
  h1,
  .h1 {
    font-size: 2.45rem;
  }
}
@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 2.65rem;
    line-height: 1.4;
  }
}

h2,
.h2 {
  font-size: 1.75rem;
  line-height: 1.4;
}
h2.has-icon,
.h2.has-icon {
  line-height: 1;
}

.h2-smaller {
  font-size: 1.132rem;
}
@media (min-width: 1024px) {
  .h2-smaller {
    font-size: 1.625rem;
  }
}

h3,
.h3 {
  font-size: 1.5rem;
}

h6,
.h6 {
  font-size: 1rem;
}

.lead-text {
  font-size: 18px;
  line-height: 150%;
}

.overflow-hidden {
  overflow: hidden;
}

.btn {
  position: relative;
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  min-width: 98px;
  padding: 0.6rem 0.9rem;
  font-size: 0.8rem;
  line-height: 1.2;
  color: #fff;
  border: 2px solid transparent;
  border-radius: 2px;
  will-change: background-color, color, background-image, border-color;
  transition: color 0.25s ease-out, background-color 0.25s ease-out, background-image 0.25s ease-out, border-color 0.25s ease-out;
}
.btn .icon-chevron-down {
  display: inline-block;
  transform: rotate(-90deg);
  font-size: 11px;
  margin-bottom: 3px;
}
.btn .icon.icon-spinner {
  height: 14px;
  width: 14px;
  display: inline-block;
  margin-left: 5px;
}
@media (min-width: 414px) {
  .btn {
    font-size: 0.875rem;
  }
}
.btn.btn-lg {
  padding: 10px 27px;
}
.btn.btn-xl {
  border-radius: 3px;
  padding: 0.5rem 0.7rem;
}
@media (min-width: 414px) {
  .btn.btn-xl {
    font-size: 0.95rem;
    padding: 0.6rem 0.9rem;
  }
}
@media (min-width: 768px) {
  .btn.btn-xl {
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem;
  }
}
.btn.btn-wide {
  min-width: 167px;
  width: 100%;
}
@media (min-width: 768px) {
  .btn.btn-wide {
    width: auto;
    min-width: 240px;
  }
}
.btn.btn-ex-wide {
  width: 100%;
}
@media (min-width: 768px) {
  .btn.btn-ex-wide {
    width: auto;
    min-width: 167px;
    max-width: 320px;
  }
}
@media (max-width: 767px) {
  .btn.centered-mobile {
    margin: 0 auto;
    display: block;
    max-width: 200px;
  }
}
@media (min-width: 768px) {
  .btn.centered {
    margin: 0 auto;
    display: block;
    max-width: 200px;
  }
}
.btn.btn-fluid {
  width: 100%;
}
@media (min-width: 768px) {
  .btn.btn-fluid {
    width: auto;
    max-width: 320px;
  }
}
.btn.btn-border-green {
  border: 2px solid #009762;
  color: #212b36;
}
.btn.btn-border-green:hover:not(.active) {
  color: #02A169;
}
.btn.btn-border-green.active {
  border: solid 2px #02A169;
  background: #04d189;
}
.btn.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: 15px;
  width: 100%;
  max-width: 200px;
}
.btn.btn-price {
  position: relative;
  z-index: 1;
  color: white;
  border-radius: 3px;
  background: linear-gradient(101deg, #040c48 1%, #1e67c5 52%, #1991ff 99%);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.9rem;
  margin-top: 1.2rem;
  overflow: hidden;
}
.btn.btn-price.btn-pro {
  background-image: linear-gradient(134deg, #040c48 0%, #00589c 18%, #04d189 100%);
}
.btn.btn-price::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  opacity: 0;
  border-radius: 4px;
  transform: translateX(-100%);
  background: linear-gradient(95deg, #040c48 1%, #040c48 51%, #040c48);
  transition: all 250ms ease-in-out;
  will-change: transform, opacity;
  z-index: -1;
}
.btn.btn-price:hover::before {
  transform: translate(0);
  opacity: 1;
}
.btn.btn-dark-blue {
  background: #040c48;
}
.btn.btn-dark-blue:hover {
  background: #2f3774;
}
.btn.btn-green {
  color: #212b36;
  border: solid 2px #02A169;
  background-image: linear-gradient(179deg, #04d189 0%, #04d189 52%, #04d189 100%);
  z-index: 1;
}
.btn.btn-green::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(179deg, #00f198 0%, #19ba80 52%, #007c50 100%);
  z-index: -1;
  transition: opacity 250ms linear;
  opacity: 0;
}
.btn.btn-green:hover::before {
  opacity: 1;
}
.btn.btn-green-outline {
  color: #212b36;
  border: solid 2px #02A169;
  background: transparent;
  z-index: 1;
}
.btn.btn-green-outline::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(179deg, #00f198 0%, #19ba80 52%, #007c50 100%);
  z-index: -1;
  transition: opacity 250ms linear;
  opacity: 0;
}
.btn.btn-green-outline:hover::before {
  opacity: 1;
}
.btn.btn-blue {
  color: #fff;
  border: solid 2px #1991ff;
  background: #1991ff;
  z-index: 1;
}
.btn.btn-blue::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(25, 145, 255);
  background: linear-gradient(180deg, rgb(25, 145, 255) 0%, rgb(26, 112, 191) 100%);
  z-index: -1;
  transition: opacity 250ms linear;
  opacity: 0;
}
.btn.btn-blue:hover::before {
  opacity: 1;
}
.btn.btn-white {
  color: #212b36;
  border: solid 1px #e4e4e4;
  background-color: #ffffff;
}
.btn.btn-white:hover {
  background-color: #e4e4e4;
}
.btn.btn-white.btn-border-green {
  border: 2px solid #009762;
}
.btn.btn-white.btn-border-green:hover {
  background: #04d189;
  color: white;
}
.btn.btn-blue-solid {
  color: #fff;
  border: none;
  background-image: linear-gradient(101deg, #040c48 1%, #1e67c5 52%, #1991ff 99%);
  z-index: 1;
}
.btn.btn-blue-solid::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(101deg, #1991ff 1%, #1e67c5 52%, #040c48 99%);
  z-index: -1;
  transition: opacity 250ms linear;
  opacity: 0;
}
.btn.btn-blue-solid:hover::before {
  opacity: 1;
}
.btn.btn-blue-outline {
  color: #1991ff;
  border: 2px solid #1991ff;
}
.btn.btn-blue-outline:hover {
  color: white;
  background-color: #212b36;
}
.btn.btn-blue-outline {
  color: #1991ff;
  border: 2px solid #1991ff;
}
.btn.btn-blue-outline:hover {
  background-color: #1991ff;
  color: white;
}
.btn.btn-white-outline {
  color: white;
  background-image: linear-gradient(179deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 52%, rgba(255, 255, 255, 0) 100%);
  border: solid 2px white;
}
.btn.btn-white-outline::before {
  position: absolute;
  content: " ";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(179deg, #ffffff 0%, #ffffff 52%, #e6e6e6 100%);
  z-index: -1;
  transition: opacity 250ms linear;
  opacity: 0;
}
.btn.btn-white-outline:hover {
  color: #212b36;
  z-index: 1;
}
.btn.btn-white-outline:hover::before {
  opacity: 1;
}
.btn.facebookButton, .btn.appleButton {
  display: flex;
  align-items: center;
  gap: 3px;
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.rotating {
  animation: rotating 1s linear infinite;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

@media (min-width: 768px) {
  .flex-md-column {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .flex-lg-column {
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .flex-xl-column {
    flex-direction: column;
  }
}
.flex-row {
  flex-direction: row;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row;
  }
}
.flex-gap-8 {
  gap: 8px;
}

.flex-gap-16 {
  gap: 16px;
}

.flex-gap-20 {
  gap: 20px;
}

.flex-gap-24 {
  gap: 24px;
}

.flex-gap-32 {
  gap: 32px;
}

.flex-gap-40 {
  gap: 40px;
}

.ml-auto {
  margin-left: auto !important;
}

.font-weight-light {
  font-weight: 300;
}

.font-weight-normal {
  font-weight: 400;
}

.font-weight-medium {
  font-weight: 500;
}

.font-weight-bold {
  font-weight: 600;
}

.font-weight-extra-bold {
  font-weight: 700;
}

p {
  line-height: 1.4;
  margin: 0;
}

.text-small {
  font-size: 0.91rem;
  letter-spacing: 0;
}

.text-xs {
  font-size: 0.75rem;
}

.text-md {
  font-size: 1.25rem;
}

.text-lg {
  font-size: 1.5rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-05 {
  margin-top: 0.5rem;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-05 {
  margin-bottom: 0.5rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mr-05 {
  margin-right: 0.5rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mr-2 {
  margin-right: 2rem;
}

.ml-05 {
  margin-left: 0.5rem;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-2 {
  margin-left: 2rem;
}

.ml-3 {
  margin-left: 3rem;
}

.ml-4 {
  margin-left: 4rem;
}

.mt-2_5 {
  margin-top: 2.5rem;
}

.mt-1_5 {
  margin-top: 1.5rem !important;
}

.mb-1_5 {
  margin-bottom: 1.5rem !important;
}

@media (min-width: 768px) {
  .mt-md-0 {
    margin-top: 0;
  }
}
.p-0 {
  padding: 0;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pr-1 {
  padding-right: 1rem;
}

.pl-1 {
  padding-left: 1rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pt-7 {
  padding-top: 7rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pt-8 {
  padding-top: 8rem;
}

.pb-8 {
  padding-bottom: 8rem;
}

.pt-10 {
  padding-top: 10rem;
}

.order-2 {
  order: 2;
}

@media (min-width: 768px) {
  .order-md-n1 {
    order: -1;
  }
}
.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.opacity {
  opacity: 0.5;
}

.icon {
  line-height: 0;
}

a .icon-arrow-down {
  color: #212b36;
  opacity: 0.15;
}

img {
  max-width: 100%;
}

.rounded {
  border-radius: 4px;
}

@media (min-width: 768px) {
  .d-md-flex {
    display: flex;
  }
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
  .pt-md-0 {
    padding-top: 0;
  }
  .pr-md-1 {
    padding-right: 1rem;
  }
}
@media (min-width: 991px) {
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .pt-lg-0 {
    padding-top: 0;
  }
  .pb-lg-0 {
    padding-bottom: 0;
  }
  .pb-lg-3 {
    padding-bottom: 3rem;
  }
  .pb-lg-4 {
    padding-bottom: 4rem;
  }
  .pt-lg-4 {
    padding-top: 4rem;
  }
  .pt-lg-5 {
    padding-top: 5rem;
  }
  .pt-lg-6 {
    padding-top: 6rem;
  }
  .pb-lg-6 {
    padding-bottom: 6rem;
  }
  .pt-lg-7 {
    padding-top: 7rem;
  }
  .pb-lg-7 {
    padding-bottom: 7rem;
  }
  .pt-lg-8 {
    padding-top: 8rem;
  }
  .pb-lg-8 {
    padding-bottom: 8rem;
  }
  .pt-lg-10 {
    padding-top: 10rem;
  }
}
@media (min-width: 991px) {
  .d-lg-none {
    display: none;
  }
  .d-lg-flex {
    display: flex;
  }
  .d-lg-inline-block {
    display: inline-block;
  }
  .d-lg-block {
    display: block;
  }
  .flex-lg-row {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .d-xl-flex {
    display: flex;
  }
}
.bg-white {
  background-color: white;
}

.bg-light {
  background-color: #fbfbfb;
}

.bg-light-blue {
  background-color: #f0f8ff;
}

.bg-dark-blue {
  background-color: #040c48;
}

.bg-gray {
  background-color: #E9EEF3;
}

.bg-gradient-blue-green {
  background-image: linear-gradient(111deg, #040c48 1%, #00589c 51%, #04d189);
}

.text-blue {
  color: #1991ff;
}

.text-grey {
  color: #637381;
}

.text-green {
  color: #04d189;
}

.text-dark-blue {
  color: #00589c;
}

.text-dark-green {
  color: #02A169;
}

.text-light-grey {
  color: #949494;
}

.text-white {
  color: white;
}

.text-itallic {
  font-style: italic;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
  color: #1991ff;
}

.error-message {
  background: #fbeae5;
  border-radius: 3px;
  color: #bb0710 !important;
  border: 1px solid #de3617;
  text-align: left;
  padding: 0.5rem;
}

.success-message {
  background: rgb(234, 248, 243);
  border-radius: 3px;
  color: #00a268;
  border: 1px solid #00a268;
  text-align: left;
  padding: 0.5rem;
}

.link-underline-hover {
  border-bottom: 1px solid transparent;
  transition: all 150ms ease-in-out;
}
.link-underline-hover:hover {
  border-bottom: 1px solid #1991ff;
}

.columns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  align-items: center;
  grid-gap: 2rem;
}
.columns-grid.grid-sm {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
@media (min-width: 768px) {
  .columns-grid.grid-lg {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
}
.columns-grid.sm-gap {
  grid-gap: 1rem;
}
.columns-grid.no-gap {
  grid-gap: 0;
}
@media (min-width: 991px) {
  .columns-grid.no-gap-lg {
    grid-gap: 0;
  }
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-baseline {
  align-items: baseline;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-start {
  justify-content: start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-between {
  justify-content: space-between;
}

@media (min-width: 768px) {
  .align-items-md-center {
    align-items: center;
  }
  .align-items-md-start {
    align-items: flex-start;
  }
  .align-items-md-end {
    align-items: flex-end;
  }
  .align-items-md-baseline {
    align-items: baseline;
  }
  .justify-content-md-center {
    justify-content: center;
  }
  .justify-content-md-start {
    justify-content: start;
  }
  .justify-content-md-end {
    justify-content: flex-end;
  }
  .justify-content-md-around {
    justify-content: space-around;
  }
  .justify-content-md-between {
    justify-content: space-between;
  }
}
@media (min-width: 991px) {
  .align-items-lg-center {
    align-items: center;
  }
  .align-items-lg-start {
    align-items: flex-start;
  }
  .align-items-lg-end {
    align-items: flex-end;
  }
  .align-items-lg-baseline {
    align-items: baseline;
  }
  .justify-content-lg-center {
    justify-content: center;
  }
  .justify-content-lg-start {
    justify-content: start;
  }
  .justify-content-lg-end {
    justify-content: flex-end;
  }
  .justify-content-lg-around {
    justify-content: space-around;
  }
  .justify-content-lg-between {
    justify-content: space-between;
  }
}
.animate-scroll {
  opacity: 0;
  transform: translateY(4em);
  transition: transform 1s 0.25s cubic-bezier(0, 1, 0.3, 1), opacity 0.3s 0.25s ease-out;
  will-change: transform, opacity;
}
.animate-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.border-right {
  border-right: 1px solid #979797;
}

.container {
  width: 100%;
  padding-right: 15px !important;
  padding-left: 15px !important;
  margin-right: auto;
  margin-left: auto;
}
.container.container-md {
  max-width: 991px;
}
.container.container-sm {
  max-width: 768px;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    min-width: 720px;
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1300px) {
  .container {
    max-width: 1240px;
  }
}

.margin-auto {
  margin: auto;
}

.w-80 {
  width: 80%;
}

.w-90 {
  width: 90%;
}

.w-100 {
  width: 100%;
}

.h-100vh {
  height: 100%;
  min-height: 100vh;
}

@media (min-width: 991px) {
  .w-lg-80 {
    width: 80%;
  }
  .h-lg-100vh {
    height: 100%;
    min-height: 100vh;
  }
  .mb-lg-0 {
    margin-bottom: 0;
  }
}
.h-100 {
  height: 100%;
}

.video-player {
  border: none;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .switchmarkets-logo {
    max-width: 140px;
    height: auto;
  }
}
#internal-hero-content {
  padding-top: 8rem;
}
@media (min-width: 768px) {
  #internal-hero-content {
    padding-top: 9rem;
  }
}

.hero {
  height: 100%;
}

.hero.homepage header {
  position: relative;
  animation: smoothScrollDown 500ms forwards;
}
.hero.homepage header.fixed {
  position: fixed;
  animation: smoothScroll 500ms forwards;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes smoothScrollDown {
  0% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
  }
}
.cookie-consent {
  visibility: hidden;
  opacity: 0;
  padding: 4px;
  position: fixed;
  width: auto;
  left: 0;
  bottom: 15px;
  z-index: 9999;
  background: #040c48;
  color: #fff;
  border-radius: 0;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: bottom 0.3s ease;
}
@media (min-width: 768px) {
  .cookie-consent {
    padding: 16px;
    width: 345px;
    left: 15px;
    bottom: 15px;
  }
}
@media (max-width: 767px) {
  .cookie-consent.has-promo-ribbon {
    bottom: 100px;
    padding: 0 0 30px 0;
  }
}
.cookie-consent.show {
  display: flex;
  visibility: visible;
  opacity: 1;
  z-index: 999;
}
.cookie-consent__content {
  padding: 24px;
}
.cookie-consent__content__title {
  margin-top: 12px;
  font-weight: 500;
}
.cookie-consent__content__text {
  margin-top: 8px;
  font-size: 12px;
  margin-bottom: 0;
}
.cookie-consent__buttons {
  padding: 24px 0;
  border-top: 1px solid #e5e5e5;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.cookie-consent__buttons .btn-deny {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

input,
select {
  font-size: 0.8rem;
  font-weight: 400;
}

/*** iPhone and iOS Form Input Zoom Fixes ***/
/* Fix Input Zoom on devices older than iPhone 5: */
@media screen and (device-aspect-ratio: 2/3) {
  select,
  textarea,
  input[type=text],
  input[type=password],
  input[type=datetime],
  input[type=datetime-local],
  input[type=date],
  input[type=month],
  input[type=time],
  input[type=week],
  input[type=number],
  input[type=email],
  input[type=url] {
    font-size: 16px;
  }
}
/* Fix Input Zoom on iPhone 5, 5C, 5S, iPod Touch 5g */
@media screen and (device-aspect-ratio: 40/71) {
  select,
  textarea,
  input[type=text],
  input[type=password],
  input[type=datetime],
  input[type=datetime-local],
  input[type=date],
  input[type=month],
  input[type=time],
  input[type=week],
  input[type=number],
  input[type=email],
  input[type=url] {
    font-size: 0.8rem;
  }
}
/* Fix Input Zoom on iPhone 6, iPhone 6s, iPhone 7  */
@media screen and (device-aspect-ratio: 375/667) {
  select,
  textarea,
  input[type=text],
  input[type=password],
  input[type=datetime],
  input[type=datetime-local],
  input[type=date],
  input[type=month],
  input[type=time],
  input[type=week],
  input[type=number],
  input[type=email],
  input[type=tel],
  input[type=url] {
    font-size: 0.8rem;
  }
}
/* Fix Input Zoom on iPhone 6 Plus, iPhone 6s Plus, iPhone 7 Plus, iPhone 8, iPhone X, XS, XS Max  */
@media screen and (device-aspect-ratio: 9/16) {
  select,
  textarea,
  input[type=text],
  input[type=password],
  input[type=datetime],
  input[type=datetime-local],
  input[type=date],
  input[type=month],
  input[type=time],
  input[type=week],
  input[type=number],
  input[type=email],
  input[type=tel],
  input[type=url] {
    font-size: 0.8rem;
  }
}
.website-selector {
  background-color: #050639;
}
.website-selector .select select {
  background: transparent;
  color: #c4cdd5;
}

@media (max-width: 767px) {
  body.has-bf-ribbon #pageWrap > section:last-of-type,
  body.has-bf-ribbon #pageWrap > div:last-of-type {
    padding-bottom: 150px !important;
  }
}

footer {
  padding-top: 3rem;
  padding-bottom: 1rem;
  transition: padding-bottom 0.3s ease;
}
@media (max-width: 767px) {
  footer.has-promo-ribbon {
    padding-bottom: 120px;
  }
}
footer .twitter-icon {
  color: white;
}
footer .twitter-icon:hover {
  color: #1da1f2;
}
@media (min-width: 1200px) {
  footer .footer-offers {
    min-width: 150px;
  }
}
footer .facebook-icon {
  color: white;
}
footer .facebook-icon:hover {
  color: #4267b2;
}
footer .instagram-icon {
  color: white;
}
footer .instagram-icon:hover {
  color: #e1306c;
}
footer .logo {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  footer .logo {
    margin-bottom: 0;
  }
}
@media (max-width: 384px) {
  footer .btn-green {
    margin-bottom: 1rem;
  }
}
footer a {
  color: #bfbfbf;
  transition: all 200ms ease-in-out;
}
footer a:hover {
  color: white;
}
footer .columns-grid.grid-sm {
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  text-align: left;
  grid-template-rows: 1fr 1fr;
}
footer .footer-container-wrapper {
  flex-direction: column;
  text-align: center;
  padding-bottom: 3rem;
}
@media (min-width: 991px) {
  footer .footer-container-wrapper {
    flex-direction: row;
  }
}
footer .footer-container-wrapper .logo-wrapper {
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  footer .footer-container-wrapper .logo-wrapper {
    margin-right: 2rem;
  }
}
footer .footer-social {
  order: 8;
  max-width: 140px;
}
@media (min-width: 526px) {
  footer .footer-social {
    order: 7;
  }
}
footer .footer-tools {
  grid-row: auto;
  grid-column: 1/3;
  order: 7;
  gap: 10px;
}
@media (min-width: 526px) {
  footer .footer-tools {
    order: 8;
    grid-column: 1/5;
  }
}
@media (min-width: 768px) {
  footer .footer-tools {
    grid-column: 1/6;
  }
}
@media (min-width: 992px) {
  footer .footer-tools {
    grid-row: 2/3;
    grid-column: 1/8;
  }
}
footer .footer-tools-title {
  flex: 1 1 100%;
}
footer .footer-tools a {
  flex: 1 1 50%;
}
@media (min-width: 768px) {
  footer .footer-tools a {
    flex: 0 1 33%;
  }
}
@media (min-width: 992px) {
  footer .footer-tools a {
    flex: 1 1 25%;
  }
}
footer .base-footer {
  background-color: #01062d;
  padding: 1.5rem 0;
  color: white;
  font-size: 0.75rem;
}
footer .base-footer a {
  color: white;
  text-decoration: underline;
}
footer .base-footer a:hover {
  color: #1991ff;
}
footer .base-footer .footer-links {
  text-decoration: none;
}
@media (max-width: 767px) {
  footer .base-footer span:first-child {
    margin-bottom: 1rem;
  }
}

.bounce-animation {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
.up-trade {
  color: #04d189 !important;
}

.down-trade {
  color: #e02b2b !important;
}

.grecaptcha-badge {
  opacity: 0;
}

.xmas-discount {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #2C2C2C;
}
@media (min-width: 992px) {
  .xmas-discount {
    font-size: 22px;
  }
}
.xmas-discount .strike {
  position: relative;
  width: 85px;
}
.xmas-discount .strike::after {
  position: absolute;
  top: 7px;
  left: 0;
  content: "";
  width: 85px;
  height: 6px;
  opacity: 0.7;
  background-color: #FF3225;
}

.institutional-active .strike {
  position: relative;
  width: 85px;
}
.institutional-active .strike::after {
  position: absolute;
  top: 7px;
  left: 0;
  content: "";
  width: 62px;
  height: 6px;
  opacity: 0.7;
  background-color: #FF3225;
}

/* Vimeo player */
.vimeo-player {
  position: relative;
  width: 100%;
}
.vimeo-player::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.vimeo-player__inner {
  position: absolute;
  inset: 0 0 0 0;
  cursor: pointer;
}
.vimeo-player__inner[data-placeholder]:hover::after {
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 1;
}
.vimeo-player__inner[data-placeholder]::after {
  content: "";
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 78 78'%3e%3ccircle cx='39' cy='39' r='38.5' stroke='white'/%3e%3cpath d='M51 39.5 32 50V29l19 10.5Z' fill='white'/%3e%3c/svg%3e") center no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  border: 2px solid #fff;
  border-radius: 50%;
  transform-origin: center;
  transition: all 0.25s ease;
}
.vimeo-player__inner img {
  max-width: unset;
}
.vimeo-player__inner iframe, .vimeo-player__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 1px);
}

.trustpilot-widget {
  position: relative;
  left: -30px;
}
.trustpilot-widget.centered {
  display: flex;
  justify-content: center;
}

.sm-image-bg {
  position: relative;
}
.sm-image-bg__image {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.sm-image-bg__pulse {
  position: absolute;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 209, 137, 0.4) 0%, rgba(4, 209, 137, 0) 70%);
  animation: pulse-gradient 3s ease-in-out infinite;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.sm-image-bg__pulse--1 {
  top: 38%;
  left: 34%;
  animation-delay: 0s;
}
.sm-image-bg__pulse--2 {
  top: 70%;
  left: 50%;
  animation-delay: 0.6s;
}
.sm-image-bg__pulse--3 {
  top: 92%;
  left: 62%;
  animation-delay: 1.2s;
}
.sm-image-bg__pulse--4 {
  top: 8%;
  left: 94%;
  animation-delay: 1.8s;
}
.sm-image-bg__pulse--5 {
  top: 57%;
  left: 97%;
  animation-delay: 2.4s;
}
.sm-image-bg__section-container {
  position: relative;
  z-index: 2;
}

@keyframes pulse-gradient {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  30% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.75;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.75;
  }
  80% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
}
.sm-gradient-blue-bg {
  background: linear-gradient(308deg, rgba(0, 0, 0, 0.85) 74.64%, rgba(0, 0, 0, 0) 100%), linear-gradient(135deg, #040C48 18.67%, rgba(0, 88, 156, 0.85) 61.25%, #04D189 96.66%);
}

.pricing-section {
  background-color: #fbfbfb;
}

.pricing-toggle-container.regular-active .institutional-active {
  display: none;
}
.pricing-toggle-container.institutional-active .regular-active {
  display: none;
}

.price-card {
  width: 100%;
  max-width: 314px;
  border: solid 1px #8173bc;
  overflow: hidden;
  border-radius: 3px;
  margin: 0 auto 2rem;
  transition: all 200ms ease-in-out;
}
.price-card:hover {
  box-shadow: 0 0 24px 10px #e1e1e1;
}
@media (min-width: 768px) {
  .price-card {
    margin: 0 auto 1rem;
  }
}
.price-card .price--header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 155px;
  color: white;
  background-image: linear-gradient(116deg, #040c48 1%, #00589c 51%, #04d189);
}
.price-card .price--header .title {
  font-size: 2.625rem;
  font-weight: 500;
}
.price-card .price--header .opacity {
  opacity: 0.8;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.price-card .price--header .icon-header {
  position: absolute;
  bottom: 0;
  margin-bottom: -1.5rem;
  right: 0;
  margin-right: 1rem;
}
.price-card__number {
  font-size: 150px;
  line-height: 1;
  color: #1e67c5;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) and (-webkit-text-fill-color: transparent) {
  .price-card__number {
    background-image: linear-gradient(62.85deg, #040c48 0%, #1e67c5 52.56%, #1991ff 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.price-card.standard .price--header {
  background-image: linear-gradient(114deg, #040c48 1%, #1e67c5 52%, #1991ff 99%);
}
.price-card.pro .price--header {
  background-image: linear-gradient(-45deg, #04d189 0%, #0fc5a4 30%, #1991ff 100%);
}
.price-card.cent .price--header {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 36.12%, rgba(0, 0, 0, 0.4) 82.95%), linear-gradient(132deg, #040C48 5.01%, rgba(0, 88, 156, 0.85) 52.35%, #009F68 100%);
}
.price-card.cent .btn-price {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 36.12%, rgba(0, 0, 0, 0.4) 82.95%), linear-gradient(132deg, #040C48 5.01%, rgba(0, 88, 156, 0.85) 52.35%, #009F68 100%);
}
.price-card .price-body {
  padding: 1.5rem 1rem;
  background: white;
}
.price-card .currencies {
  color: #637381;
  font-size: 0.875rem;
}
.price-card .border-bottom {
  border-bottom: 2px solid #f1f1f1;
  width: 80%;
  margin: auto;
  line-height: 2.4;
}
.price-card .border-top {
  border-top: 1px solid #f1f1f1;
  width: 80%;
  margin: auto;
  line-height: 2.4;
  padding-top: 0.5rem;
}
.price-card .border-top.small-lineheight {
  line-height: 1.4;
}
.price-card .pt-03 {
  padding-top: 0.3rem;
}
.price-card .list-items-wrapper {
  border-top: 1px solid #f1f1f1;
  width: 80%;
  margin: auto;
}

.price-acc-toggle {
  display: flex;
  align-items: center;
  padding: 0.25rem;
  border-radius: 8px;
  background: white;
  box-shadow: 0 0 24px 2px rgba(13, 37, 62, 0.1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.price-acc-toggle__input {
  display: none !important;
}
.price-acc-toggle__label {
  padding: 0.5rem 1rem !important;
  margin: 0 !important;
  font-size: 1.125rem !important;
  color: #949494;
  border: 1px solid transparent;
  border-radius: 8px !important;
  transition: all 250ms ease;
}
.price-acc-toggle__label::before, .price-acc-toggle__label::after {
  display: none !important;
}
.price-acc-toggle__input:checked + .price-acc-toggle__label {
  background-color: #fff;
  border-color: #8173bc;
}

.currency-card {
  border-radius: 3.2px;
  box-shadow: 0 0 48px 8px rgba(13, 37, 62, 0.1);
}
.currency-card.dark-card {
  min-width: 270px;
  padding: 8px 0;
}
.currency-card.top {
  padding-top: 1rem;
  padding-bottom: 0;
}
@media (max-width: 360px) {
  .currency-card {
    width: calc(100% + 15px);
    margin-left: -7px;
  }
}
.currency-card .trade-numb {
  font-size: 0.82rem;
  text-align: center;
}
@media (min-width: 576px) {
  .currency-card .trade-numb {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .currency-card .trade-numb {
    font-size: 1.125rem;
  }
}
.currency-card .symbol {
  display: grid;
  justify-self: start;
  grid-template-columns: 1fr;
}
@media (min-width: 400px) {
  .currency-card .symbol {
    grid-template-columns: 40px 1fr;
  }
  .currency-card .symbol img {
    flex: 1 1 33px;
  }
}
@media (min-width: 768px) {
  .currency-card .symbol {
    align-items: center;
  }
}
.currency-card .h2 {
  font-size: 1rem;
  font-weight: 300;
}
@media (min-width: 768px) {
  .currency-card .h2 {
    font-size: 1.125rem;
  }
}
.currency-card .data-img {
  display: none;
}
@media (min-width: 768px) {
  .currency-card .data-img {
    display: inline-block;
  }
}
.currency-card .data-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.currency-card .trade-numb-down-up {
  font-size: 0.875rem;
  display: none;
  align-items: center;
  justify-content: flex-end;
  grid-column: 2/3;
  grid-row: 1/4;
}
@media (min-width: 525px) {
  .currency-card .trade-numb-down-up {
    display: flex;
  }
}
.currency-card .icon {
  font-size: 0.6rem;
  margin-left: 0.4rem;
}
.currency-card .top-spacers {
  display: none;
}
@media (min-width: 525px) {
  .currency-card .top-spacers.first {
    display: block;
  }
}
@media (min-width: 768px) {
  .currency-card .top-spacers {
    display: block;
  }
}
.currency-card .column-head {
  font-size: 0.82rem;
  color: #637381;
}
.currency-card .wrapper {
  align-items: center;
  border-bottom: solid 1px rgba(0, 0, 0, 0.06);
  display: grid;
  justify-items: center;
  padding: 0px 1rem;
  grid-template-columns: auto 65px 65px 55px 10px;
}
@media (min-width: 330px) {
  .currency-card .wrapper {
    grid-template-columns: auto 75px 75px 55px 10px;
  }
}
@media (min-width: 525px) {
  .currency-card .wrapper {
    grid-template-columns: minmax(125px, auto) 1fr 1fr 1fr 1fr 10px;
  }
}
@media (min-width: 768px) {
  .currency-card .wrapper {
    grid-template-columns: 140px 75px 70px auto auto 75px 100px;
  }
}
@media (min-width: 992px) {
  .currency-card .wrapper {
    grid-template-columns: 150px 75px 100px auto auto 75px 100px;
  }
}
@media (min-width: 1200px) {
  .currency-card .wrapper {
    grid-template-columns: 130px 75px 45px auto auto 75px 100px;
  }
}
.currency-card .bid,
.currency-card .ask,
.currency-card .spread {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .currency-card .bid,
  .currency-card .ask,
  .currency-card .spread {
    flex-direction: column;
  }
}
.currency-card .btn {
  display: none;
}
@media (min-width: 768px) {
  .currency-card .btn {
    display: block;
    color: #fff;
  }
}
.currency-card .link {
  transform: rotate(-90deg);
  color: #04d189;
}
@media (min-width: 768px) {
  .currency-card .link {
    display: none;
  }
}

.bids-cards-info {
  margin-top: 2rem;
}
@media (max-width: 359px) {
  .bids-cards-info {
    margin-top: 2rem;
  }
}
@media (min-width: 991px) and (min-height: 850px) {
  .bids-cards-info {
    margin-top: 3rem;
  }
}
@media (min-height: 1024px) {
  .bids-cards-info {
    margin-top: 1.5rem;
  }
}

.bids-cards-wrapper {
  margin-top: 1rem;
  align-items: baseline;
  grid-gap: 0;
  background-color: transparent;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 24px 7px rgba(13, 37, 62, 0.1);
  background-image: linear-gradient(112deg, rgba(0, 0, 0, 0.27) 5%, rgba(0, 0, 0, 0.2) 86%);
  border-radius: 4px;
}
@media (min-width: 768px) {
  .bids-cards-wrapper {
    margin-top: 2.5rem;
  }
}
@media (min-width: 991px) {
  .bids-cards-wrapper {
    margin-top: 0.5rem;
  }
}

.desktop-bids-cards--wrapper {
  display: grid;
  grid-template-columns: 1fr;
  align-items: baseline;
  grid-gap: 0;
}

.accordion {
  max-width: 1000px;
  margin: 3rem auto;
}

.accordion-item {
  background-color: #fff;
  border-radius: 2px;
  border-bottom: 1px solid rgba(36, 39, 44, 0.05);
  height: auto;
}

.accordion-item-header h3 {
  padding: 0.5rem 1rem 0.5rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  color: #24272c;
  font-size: 0.875rem;
  justify-content: space-between;
  transition: all 200ms ease-in-out;
  width: 100%;
}
@media (min-width: 768px) {
  .accordion-item-header h3 {
    font-size: 1rem;
  }
}
.accordion-item-header .icon {
  font-size: 14px;
  opacity: 0.7;
  transition: all 200ms ease-in-out;
  margin-left: 1rem;
}
.accordion-item-header:hover:not(.active) {
  color: #1991ff;
}
.accordion-item-header.active {
  background: #f4f4f4;
}
.accordion-item-header.active .icon {
  transform: rotate(-180deg);
}

.accordion-item-body {
  color: #2b2b2b;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
  padding: 1rem;
  line-height: 1.4;
  text-align: left;
}

.why-trade-with-sm-section {
  padding: 96px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-trade-with-sm-section__bg-image {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .why-trade-with-sm-section {
    padding: 160px 0;
  }
}
.why-trade-with-sm-section .why-trade-with-sm {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 40px;
  z-index: 2;
}
@media (min-width: 992px) {
  .why-trade-with-sm-section .why-trade-with-sm {
    gap: 48px;
  }
}
@media (min-width: 992px) {
  .why-trade-with-sm-section .why-trade-with-sm__title {
    text-align: center;
  }
}
.why-trade-with-sm-section .why-trade-with-sm__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: start;
}
@media (min-width: 576px) {
  .why-trade-with-sm-section .why-trade-with-sm__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .why-trade-with-sm-section .why-trade-with-sm__cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
.why-trade-with-sm-section .why-trade-with-sm__card {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  border-radius: 6.367px;
  background: #2A4760;
}
.why-trade-with-sm-section .why-trade-with-sm__card__title {
  margin: 12px 0;
  font-size: 22px;
}
.why-trade-with-sm-section .why-trade-with-sm__card__text {
  font-weight: 300;
}

[class^=tooltip] {
  position: relative;
  line-height: 2;
}

[class^=tooltip]:after {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  content: attr(data-tooltip);
  padding: 6px 10px;
  top: -0.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: #000;
  color: #fff;
  white-space: pre-wrap;
  z-index: 2;
  border-radius: 4px;
  transition: opacity 0.2s cubic-bezier(0.64, 0.09, 0.08, 1), transform 0.2s cubic-bezier(0.64, 0.09, 0.08, 1);
  font-size: 0.75rem;
  line-height: 1.4;
  width: 150px;
}

[class^=tooltip]:hover:after {
  display: block;
  opacity: 1;
  visibility: visible;
}

* {
  box-sizing: border-box;
}

.tooltip--left:after {
  top: -4px;
  left: 0;
  transform: translateX(-112%) translateY(0);
}

.tooltip--left:hover:after {
  transform: translateX(-110%) translateY(0);
}

.tooltip--right:after {
  top: -4px;
  left: 100%;
  transform: translateX(12%) translateY(0);
}

.tooltip--right:hover:after {
  transform: translateX(10%) translateY(0);
}

.tooltip--triangle:before {
  content: "";
  width: 0;
  height: 0;
  border-left: solid 8px transparent;
  border-right: solid 8px transparent;
  border-top: solid 8px #000;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transform: translateX(-50%) translateY(-70%);
  top: 0;
  left: 50%;
  transition: opacity 0.2s cubic-bezier(0.64, 0.09, 0.08, 1), transform 0.2s cubic-bezier(0.64, 0.09, 0.08, 1);
  z-index: 999;
}

.tooltip--triangle:hover:before {
  display: block;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1024px) {
  [class^=tooltip]:after {
    transform: translateX(-80%) translateY(-100%);
  }
}

.faq-section {
  padding: 96px 0;
  /* Horizontal Line State */
}
@media (min-width: 992px) {
  .faq-section {
    padding: 160px 0;
  }
}
.faq-section .accordion-container {
  max-width: 1000px;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .faq-section .accordion-container {
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }
}
.faq-section .accordion-column {
  display: flex;
  flex-direction: column;
  gap: 0 1rem;
}
.faq-section .accordion-item {
  background-color: #fff;
  border-radius: 2px;
  border-bottom: 1px solid rgba(36, 39, 44, 0.05);
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-section .accordion-item__header__title {
  padding: 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: 400;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  color: #212B36;
  font-size: 16px;
}
.faq-section .accordion-item__header__title .faq-number {
  font-weight: 400;
  font-size: 18px;
  margin-right: 0.75rem;
  color: #212B36;
  min-width: 2rem;
  text-align: center;
}
.faq-section .accordion-item__header .icon {
  font-size: 14px;
  opacity: 0.7;
  transition: transform 200ms ease-in-out;
  margin-left: auto;
}
.faq-section .accordion-item__header:hover:not(.active) {
  color: #007BFF;
}
.faq-section .accordion-item__header.active {
  background: #f4f4f4;
}
.faq-section .accordion-item__header.active .icon {
  transform: rotate(-180deg);
}
.faq-section .accordion-item.active .accordion-item__header__title {
  font-weight: 700;
}
.faq-section .accordion-item.active .accordion-item__header__title .faq-number {
  font-weight: 700;
}
.faq-section .accordion-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-section .accordion-item__body-content {
  padding: 1rem;
  line-height: 1.4;
  text-align: left;
}
.faq-section .accordion-item__cross {
  width: 17px;
  height: 17px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  margin-left: auto;
  flex-shrink: 0; /* Prevents shrinking */
}
.faq-section .accordion-item__cross::before,
.faq-section .accordion-item__cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px; /* Thinner line */
  background-color: black;
  transition: transform 0.3s ease;
}
.faq-section .accordion-item__cross::before {
  transform: translate(-50%, -50%);
}
.faq-section .accordion-item__cross::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-section .accordion-item__cross.active::before {
  transform: translate(-50%, -50%);
}
.faq-section .accordion-item__cross.active::after {
  transform: translate(-50%, -50%) rotate(0);
}

.earn-interest-on-free-capital-section {
  padding: 96px 0;
}
@media (min-width: 992px) {
  .earn-interest-on-free-capital-section {
    padding: 160px 0;
  }
}
.earn-interest-on-free-capital-section .earn-interest-on-free-capital {
  position: relative;
}
@media (min-width: 576px) {
  .earn-interest-on-free-capital-section .earn-interest-on-free-capital {
    color: #fff;
    background: linear-gradient(298deg, rgba(0, 0, 0, 0.85) -0.05%, rgba(0, 0, 0, 0) 100%), linear-gradient(135deg, #040C48 18.67%, rgba(0, 88, 156, 0.85) 61.25%, #04D189 96.66%);
    padding: 72px 80px;
  }
}
@media (min-width: 576px) and (min-width: 1200px) {
  .earn-interest-on-free-capital-section .earn-interest-on-free-capital {
    min-height: 410px;
  }
}
.earn-interest-on-free-capital-section .earn-interest-on-free-capital__title {
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  .earn-interest-on-free-capital-section .earn-interest-on-free-capital__title {
    margin-bottom: 16px;
  }
}
.earn-interest-on-free-capital-section .earn-interest-on-free-capital__subtitle {
  margin-bottom: 24px;
}
.earn-interest-on-free-capital-section .earn-interest-on-free-capital__btn--learn {
  color: #02A169;
  border: solid 1px #02A169;
}
.earn-interest-on-free-capital-section .earn-interest-on-free-capital__btn--learn:hover {
  color: #212B36;
  background-image: linear-gradient(179deg, #04d189 0%, #04d189 52%, #04d189 100%);
}
@media (min-width: 576px) {
  .earn-interest-on-free-capital-section .earn-interest-on-free-capital__btn--learn {
    border: solid 1px #fff;
    color: #fff;
  }
  .earn-interest-on-free-capital-section .earn-interest-on-free-capital__btn--learn:hover {
    color: #212B36;
    background: #fff;
  }
}
.earn-interest-on-free-capital-section .earn-interest-on-free-capital__images {
  margin: 20px auto 0;
}
@media (min-width: 576px) {
  .earn-interest-on-free-capital-section .earn-interest-on-free-capital__images {
    display: none;
  }
}
@media (min-width: 992px) {
  .earn-interest-on-free-capital-section .earn-interest-on-free-capital__images {
    display: block;
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .earn-interest-on-free-capital-section .earn-interest-on-free-capital__images {
    position: absolute;
    right: -50px;
    top: -55px;
  }
}
.earn-interest-on-free-capital-section .earn-interest-on-free-capital__images__cards {
  position: absolute;
  bottom: -2px;
  width: 100%;
}
.earn-interest-on-free-capital-section .earn-interest-on-free-capital__images__cards.hidden {
  opacity: 0;
  transform: translateY(100px);
  visibility: hidden;
}
.earn-interest-on-free-capital-section .earn-interest-on-free-capital__images__cards.slide-in {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.earn-interest-on-free-capital-section .earn-interest-on-free-capital__images__phone {
  max-width: 350px;
}
@media (min-width: 1200px) {
  .earn-interest-on-free-capital-section .earn-interest-on-free-capital__images__phone {
    max-width: 435px;
  }
}
.earn-interest-on-free-capital-section .earn-interest-on-free-capital__images__stats {
  max-width: 350px;
}
@media (min-width: 1200px) {
  .earn-interest-on-free-capital-section .earn-interest-on-free-capital__images__stats {
    max-width: 420px;
  }
}
.earn-interest-on-free-capital-section .earn-interest-on-free-capital__images__stats--1 {
  margin-bottom: -20px;
}
.earn-interest-on-free-capital-section .earn-interest-on-free-capital__slider {
  margin-top: 40px;
}
@media (min-width: 992px) {
  .earn-interest-on-free-capital-section .earn-interest-on-free-capital__slider {
    margin-top: 80px;
  }
}
.earn-interest-on-free-capital-section .earn-interest-on-free-capital__slider__title {
  color: rgba(33, 43, 54, 0.6);
  margin-bottom: 32px;
  text-align: center;
}
.earn-interest-on-free-capital-section .earn-interest-on-free-capital__slider__card {
  max-width: 193px;
}
.earn-interest-on-free-capital-section .earn-interest-on-free-capital__slider .splide__pagination {
  bottom: -1.8em;
}
.earn-interest-on-free-capital-section .earn-interest-on-free-capital__slider .splide__pagination__page.is-active {
  background: #04D189;
}
@media (min-width: 992px) {
  .earn-interest-on-free-capital-section .earn-interest-on-free-capital__slider .splide__pagination__page.is-active {
    display: none;
  }
}
@media (min-width: 768px) {
  .earn-interest-on-free-capital-section .btn-wide {
    max-width: 240px !important;
  }
}

.earn-interest-on-free-capital__popup {
  position: relative;
  background: #fff;
  color: #000;
  border-radius: 8px;
  padding: 40px 30px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 90%;
}
@media (min-width: 768px) {
  .earn-interest-on-free-capital__popup {
    padding: 40px 50px;
    max-width: 700px;
  }
}
@media (min-width: 1200px) {
  .earn-interest-on-free-capital__popup {
    padding: 40px 50px;
  }
}

.popup__close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  border: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  color: #333;
}
.popup__close-btn:hover {
  color: #000;
}

.earn-interest-on-free-capital__popup__title {
  font-weight: 600;
  margin: 6px 0;
}
.earn-interest-on-free-capital__popup__copy {
  margin-bottom: 6px;
}

.learn-more-popup__scroll-btn {
  display: inline-block;
  padding: 8px 0;
  text-align: center; /* Centers the text inside */
  background-color: transparent;
  border: none;
  font: inherit;
  cursor: pointer;
  color: #212B36;
  font-weight: 600;
}
.learn-more-popup .accordion {
  border: 1px solid #EDEEEE;
  margin: 12px 0 24px;
}
.learn-more-popup .accordion__title {
  margin-bottom: 0;
  transition-duration: 0.2s;
  font-weight: 700;
  font-size: 16px;
}
.learn-more-popup .accordion .accordion-item-header.active {
  background: #F2FFF6;
}
.learn-more-popup .accordion .accordion-item-header.active + .accordion-item-body {
  background: #F2FFF6;
}

.three-easy-steps-section {
  padding: 96px 0;
  position: relative;
}
@media (min-width: 992px) {
  .three-easy-steps-section {
    padding: 160px 0;
  }
}
.three-easy-steps-section .three-easy-steps {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 40px;
  z-index: 2;
}
@media (min-width: 992px) {
  .three-easy-steps-section .three-easy-steps {
    gap: 48px;
  }
}
@media (min-width: 992px) {
  .three-easy-steps-section .three-easy-steps__title {
    text-align: center;
  }
}
.three-easy-steps-section .three-easy-steps__subtitle {
  font-size: 18px;
  color: #212B36;
  margin-top: 8px;
  font-weight: 400;
}
.three-easy-steps-section .three-easy-steps__subtext {
  color: #656C74;
  margin-left: auto;
  margin-right: auto;
}
.three-easy-steps-section .three-easy-steps__card {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: center;
  position: relative;
  background: #fff;
  z-index: 1;
}
@media (min-width: 992px) {
  .three-easy-steps-section .three-easy-steps__card {
    max-width: 250px;
    padding: 0 10px 0 20px;
  }
}
.three-easy-steps-section .three-easy-steps__card__number {
  margin-bottom: 16px;
  margin-left: -6px;
  width: 48px;
  height: 56px;
}
.three-easy-steps-section .three-easy-steps__card__title {
  margin-bottom: 12px;
  font-size: 20px;
  align-items: center;
}
@media (max-width: 992px) {
  .three-easy-steps-section .three-easy-steps__card__title {
    align-items: center;
  }
}
.three-easy-steps-section .three-easy-steps__card__title__text {
  font-size: 20px;
}
.three-easy-steps-section .three-easy-steps__card__text {
  font-weight: 300;
}
@media (max-width: 992px) {
  .three-easy-steps-section .three-easy-steps__card__icon {
    width: 40px;
    margin-left: 15px;
  }
}

.three-easy-steps__cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  justify-content: center;
  justify-items: start;
  text-align: start;
  width: 100%;
  position: relative;
  /* Line between Point 1 and Point 2 */
  /* Keyframes for the first arrow animation */
  /* Keyframes for the second arrow animation */
}
@media (min-width: 992px) {
  .three-easy-steps__cards {
    grid-template-columns: repeat(3, minmax(0, 250px));
    justify-content: space-between;
  }
}
@media (min-width: 1300px) {
  .three-easy-steps__cards {
    /* Line between Point 2 and Point 3 */
  }
  .three-easy-steps__cards::before {
    content: "";
    position: absolute;
    top: 57%;
    left: 0;
    width: calc(50% - 125px); /* Line spans from Point 1 to Point 2 */
    height: 2px;
    background: linear-gradient(113deg, #04D189 -15.14%, #00589C 54.59%);
    z-index: 1; /* Below the arrow */
  }
  .three-easy-steps__cards::after {
    content: "";
    position: absolute;
    top: 57%;
    left: calc(50% + 125px); /* Start from the middle of Point 2 */
    width: calc(50% - 365px); /* Line spans from Point 2 to Point 3 */
    height: 2px;
    background: linear-gradient(113deg, #04D189 -15.14%, #00589C 54.59%);
    z-index: 1; /* Below the arrow */
  }
}
.three-easy-steps__cards .svg-anim {
  display: none;
}
@media (min-width: 1300px) {
  .three-easy-steps__cards .svg-anim {
    display: block;
    position: absolute;
    top: calc(57% - 15px);
    width: 30px;
    height: 30px;
    z-index: 2;
    opacity: 0;
  }
  .three-easy-steps__cards .svg-anim--first {
    left: 20%; /* Start at Point 1 */
    animation: moveToSecondPoint 4s linear infinite;
  }
  .three-easy-steps__cards .svg-anim--second {
    left: calc(50% + 130px);
    animation-fill-mode: forwards;
    animation: moveToThirdPoint 4s linear infinite 2s;
  }
}
@keyframes moveToSecondPoint {
  0% {
    left: 20%;
    opacity: 0; /* Arrow is visible at the start */
  }
  5% {
    opacity: 1; /* Arrow fades in shortly after start */
  }
  50% {
    left: calc(50% - 150px);
    opacity: 1; /* Arrow reaches Point 2 */
  }
  51% {
    opacity: 0; /* Arrow fades out immediately after reaching Point 2 */
  }
  100% {
    left: 20%;
    opacity: 0; /* Arrow remains hidden at the start during the delay */
  }
}
@keyframes moveToThirdPoint {
  0% {
    left: calc(50% + 130px);
    opacity: 0; /* Arrow starts hidden */
  }
  10% {
    opacity: 1; /* Arrow fades in shortly after start */
  }
  50% {
    left: 78%;
    opacity: 1; /* Arrow reaches Point 3 */
  }
  51% {
    opacity: 0; /* Arrow fades out immediately after reaching Point 3 */
  }
  100% {
    left: calc(50% + 130px);
    opacity: 0; /* Arrow remains hidden at the start during the delay */
  }
}

.trade-global-markets-section {
  padding: 96px 0;
  position: relative;
}
@media (min-width: 992px) {
  .trade-global-markets-section {
    padding: 160px 0;
  }
}
.trade-global-markets-section .trade-global-markets {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 40px;
  z-index: 2;
}
@media (min-width: 992px) {
  .trade-global-markets-section .trade-global-markets {
    gap: 48px;
    flex-direction: row;
  }
}
.trade-global-markets-section .trade-global-markets__btn--mobile {
  display: block;
}
@media (min-width: 992px) {
  .trade-global-markets-section .trade-global-markets__btn--mobile {
    display: none;
  }
}
.trade-global-markets-section .trade-global-markets__btn--desktop {
  display: none;
}
@media (min-width: 992px) {
  .trade-global-markets-section .trade-global-markets__btn--desktop {
    margin-top: 24px;
    display: block;
  }
}
@media (min-width: 768px) {
  .trade-global-markets-section .trade-global-markets__title {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .trade-global-markets-section .trade-global-markets__title {
    text-align: start;
  }
}
.trade-global-markets-section .trade-global-markets__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  justify-content: center;
  justify-items: start;
  text-align: start;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .trade-global-markets-section .trade-global-markets__cards {
    grid-template-columns: repeat(3, minmax(0, 200px));
  }
}
@media (min-width: 992px) {
  .trade-global-markets-section .trade-global-markets__cards {
    width: 60%;
    grid-template-columns: repeat(3, minmax(0, 200px));
    justify-content: end;
  }
}
@media (min-width: 768px) {
  .trade-global-markets-section .trade-global-markets__cards .trade-global-markets__card:nth-child(1) {
    grid-column: 1;
    grid-row: 1/3;
    height: 260px;
    top: 80px;
  }
}
@media (min-width: 768px) {
  .trade-global-markets-section .trade-global-markets__cards .trade-global-markets__card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    height: 200px;
  }
}
@media (min-width: 768px) {
  .trade-global-markets-section .trade-global-markets__cards .trade-global-markets__card:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    height: 200px;
  }
}
.trade-global-markets-section .trade-global-markets__cards .trade-global-markets__card:nth-child(3) .trade-global-markets__card__lottie {
  top: 17px;
}
@media (min-width: 768px) {
  .trade-global-markets-section .trade-global-markets__cards .trade-global-markets__card:nth-child(3) .trade-global-markets__card__lottie {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    left: auto;
    top: auto;
  }
}
@media (min-width: 768px) {
  .trade-global-markets-section .trade-global-markets__cards .trade-global-markets__card:nth-child(4) {
    grid-column: 3;
    grid-row: 1;
    min-width: 220px;
    height: 160px;
    margin-left: 7px;
  }
}
@media (min-width: 768px) {
  .trade-global-markets-section .trade-global-markets__cards .trade-global-markets__card:nth-child(4) {
    margin-left: 40px;
  }
}
@media (min-width: 1200px) {
  .trade-global-markets-section .trade-global-markets__cards .trade-global-markets__card:nth-child(4) {
    margin-left: 20px;
  }
}
@media (min-width: 768px) {
  .trade-global-markets-section .trade-global-markets__cards .trade-global-markets__card:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
    min-width: 220px;
    height: 180px;
    top: -40px;
    margin-left: 7px;
  }
}
@media (min-width: 768px) {
  .trade-global-markets-section .trade-global-markets__cards .trade-global-markets__card:nth-child(5) {
    margin-left: 40px;
  }
}
@media (min-width: 1200px) {
  .trade-global-markets-section .trade-global-markets__cards .trade-global-markets__card:nth-child(5) {
    margin-left: 20px;
  }
}
.trade-global-markets-section .trade-global-markets__cards__dots {
  display: none;
}
@media (min-width: 768px) {
  .trade-global-markets-section .trade-global-markets__cards__dots {
    display: block;
    position: absolute;
    left: 110px;
    top: 20px;
  }
}
@media (min-width: 1200px) {
  .trade-global-markets-section .trade-global-markets__cards__dots {
    left: 170px;
  }
}
@media (min-width: 1300px) {
  .trade-global-markets-section .trade-global-markets__cards__dots {
    left: 230px;
  }
}
.trade-global-markets-section .trade-global-markets__card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: center;
  position: relative;
  border-radius: 6.367px;
  background: #2A4760;
  z-index: 1;
  padding: 20px 16px;
}
@media (min-width: 768px) {
  .trade-global-markets-section .trade-global-markets__card {
    padding: 24px;
    max-width: 200px;
  }
}
.trade-global-markets-section .trade-global-markets__card__title {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .trade-global-markets-section .trade-global-markets__card__title {
    margin-left: 38px;
  }
}
.trade-global-markets-section .trade-global-markets__card__text {
  font-weight: 300;
}
.trade-global-markets-section .trade-global-markets__card__lottie {
  position: absolute;
  left: 12px;
  top: 14px;
  width: 33px;
  height: 33px;
}
@media (min-width: 768px) {
  .trade-global-markets-section .trade-global-markets__card__lottie {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    left: auto;
    top: auto;
  }
}

.fast-simple-funding-section {
  padding: 0 0 280px;
  position: relative;
}
@media (min-width: 768px) {
  .fast-simple-funding-section {
    padding: 80px 0 280px;
  }
}
.fast-simple-funding-section .fast-simple-funding {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 40px;
  z-index: 2;
}
@media (min-width: 992px) {
  .fast-simple-funding-section .fast-simple-funding {
    flex-direction: row;
  }
}
.fast-simple-funding-section .fast-simple-funding__cards {
  position: relative;
  left: -180px;
  top: -170px;
}
@media (min-width: 768px) {
  .fast-simple-funding-section .fast-simple-funding__cards {
    left: -350px;
    top: 0;
  }
}
@media (min-width: 991px) {
  .fast-simple-funding-section .fast-simple-funding__cards {
    top: 510px;
  }
}
@media (min-width: 992px) {
  .fast-simple-funding-section .fast-simple-funding__cards {
    left: 0;
    width: 70%;
    top: 0;
  }
}
@media (min-width: 1200px) {
  .fast-simple-funding-section .fast-simple-funding__cards {
    width: 50%;
  }
}
.fast-simple-funding-section .fast-simple-funding__card {
  position: absolute;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.fast-simple-funding-section .fast-simple-funding__card.slide-up {
  opacity: 1;
  transform: translateY(-20px);
}
.fast-simple-funding-section .fast-simple-funding__card.bounce-back {
  transform: translateY(0);
  transition: transform 0.5s ease-in-out;
}
.fast-simple-funding-section .fast-simple-funding__card--1 {
  z-index: 3;
  width: 362px;
}
@media (min-width: 768px) {
  .fast-simple-funding-section .fast-simple-funding__card--1 {
    width: 410px;
  }
}
@media (min-width: 992px) {
  .fast-simple-funding-section .fast-simple-funding__card--1 {
    width: 402px;
  }
}
@media (min-width: 1200px) {
  .fast-simple-funding-section .fast-simple-funding__card--1 {
    width: 442px;
  }
}
.fast-simple-funding-section .fast-simple-funding__card--2 {
  z-index: 2;
  width: 342px;
  top: -75px;
  left: 10px;
}
@media (min-width: 768px) {
  .fast-simple-funding-section .fast-simple-funding__card--2 {
    width: 382px;
    top: -85px;
    left: 10px;
  }
}
@media (min-width: 992px) {
  .fast-simple-funding-section .fast-simple-funding__card--2 {
    width: 382px;
    top: -85px;
  }
}
@media (min-width: 1200px) {
  .fast-simple-funding-section .fast-simple-funding__card--2 {
    width: 422px;
  }
}
.fast-simple-funding-section .fast-simple-funding__card--3 {
  z-index: 1;
  width: 322px;
  top: -140px;
  left: 26px;
}
@media (min-width: 768px) {
  .fast-simple-funding-section .fast-simple-funding__card--3 {
    width: 362px;
    top: -160px;
    left: 25px;
  }
}
@media (min-width: 992px) {
  .fast-simple-funding-section .fast-simple-funding__card--3 {
    width: 362px;
    top: -160px;
  }
}
@media (min-width: 1200px) {
  .fast-simple-funding-section .fast-simple-funding__card--3 {
    width: 402px;
  }
}
.fast-simple-funding-section .fast-simple-funding__text-wrapper {
  margin-bottom: 180px;
}
@media (min-width: 992px) {
  .fast-simple-funding-section .fast-simple-funding__text-wrapper {
    width: 63%;
  }
}
@media (min-width: 992px) {
  .fast-simple-funding-section .fast-simple-funding__text-wrapper {
    margin-bottom: 0;
  }
}
.fast-simple-funding-section .fast-simple-funding__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  flex-direction: column;
}
@media (min-width: 768px) {
  .fast-simple-funding-section .fast-simple-funding__list {
    flex-direction: row;
  }
}
.fast-simple-funding-section .fast-simple-funding__list__point {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
}
.fast-simple-funding-section .fast-simple-funding__list__point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .fast-simple-funding-section .fast-simple-funding__list {
    flex-direction: row;
    justify-content: flex-start;
  }
}
.fast-simple-funding-section .fast-simple-funding__btns {
  margin-top: 14px;
  flex-direction: column;
  position: relative;
  bottom: -400px;
}
@media (min-width: 768px) {
  .fast-simple-funding-section .fast-simple-funding__btns {
    flex-direction: row;
    bottom: 0;
  }
}
@media (min-width: 992px) {
  .fast-simple-funding-section .fast-simple-funding__btns {
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .fast-simple-funding-section .fast-simple-funding__btns {
    flex-direction: row;
  }
}
.fast-simple-funding-section .fast-simple-funding__btns .btn {
  max-width: none !important;
}
@media (min-width: 768px) {
  .fast-simple-funding-section .fast-simple-funding__btns .btn {
    max-width: 255px !important;
  }
}
.fast-simple-funding-section .fast-simple-funding__btns__green {
  border-radius: 4px;
  border: 2px solid #02A169;
  color: #04D189;
  z-index: 1;
}
.fast-simple-funding-section .fast-simple-funding__btns__green:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(179deg, #00F198 0%, #19BA80 52%, #007C50 100%);
  z-index: -1;
  transition: opacity 250ms linear;
  opacity: 0;
}
.fast-simple-funding-section .fast-simple-funding__btns__green:hover:before {
  opacity: 1;
}
.fast-simple-funding-section .fast-simple-funding__btns__green:hover {
  color: #212b36;
  border: solid 2px #02a169;
  background-image: linear-gradient(179deg, #04d189 0%, #04d189 52%, #04d189 100%);
}
.fast-simple-funding-section .fast-simple-funding__line-container {
  position: absolute;
  right: -380px;
}
@media (max-width: 576px) {
  .fast-simple-funding-section .fast-simple-funding__line-container {
    display: none;
  }
}
@media (min-width: 768px) {
  .fast-simple-funding-section .fast-simple-funding__line-container {
    right: -427px;
    top: 1px;
  }
}
@media (min-width: 992px) {
  .fast-simple-funding-section .fast-simple-funding__line-container {
    right: 48px;
    top: 1px;
  }
}
@media (min-width: 1200px) {
  .fast-simple-funding-section .fast-simple-funding__line-container {
    right: 15px;
    top: 1px;
  }
}
@media (min-width: 1300px) {
  .fast-simple-funding-section .fast-simple-funding__line-container {
    right: 57px;
    top: 1px;
  }
}
.fast-simple-funding-section .fast-simple-funding__line {
  width: 25px;
  height: 1px;
  background-color: #fff;
  z-index: 3;
  position: absolute;
}
.fast-simple-funding-section .fast-simple-funding__line--top {
  top: -9px;
  transform: rotate(-73deg);
  display: inline-block;
  left: -31px;
}
.fast-simple-funding-section .fast-simple-funding__line--middle {
  top: -2px;
  transform: rotate(-33deg);
  display: inline-block;
  left: -17px;
}
.fast-simple-funding-section .fast-simple-funding__line--bottom {
  top: 20px;
  left: -16px;
  transform: rotate(29deg);
}

.text-left-banner {
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: end;
  height: 450px;
  margin-top: 80px;
}
@media (min-width: 576px) {
  .text-left-banner {
    height: auto;
    min-height: 420px;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .text-left-banner {
    padding: 100px 15px;
  }
}
.text-left-banner__bg-image {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.text-left-banner__bg-image-alt {
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (min-width: 576px) {
  .text-left-banner__bg-image-alt {
    display: block;
  }
}
.text-left-banner__text {
  z-index: 2;
  position: relative;
  color: #fff;
}
@media (min-width: 576px) {
  .text-left-banner__text {
    width: 330px;
  }
}
.text-left-banner .sub-cta a {
  color: #04D189;
}

.customer-reviews {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 0;
}
.customer-reviews .bg-img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.customer-reviews .container-reviews {
  padding: 80px 15px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: #fff;
}
@media (min-width: 768px) {
  .customer-reviews .container-reviews {
    flex-direction: row;
    padding: 80px 45px;
  }
}
@media (min-width: 1200px) {
  .customer-reviews .container-reviews {
    padding: 100px 115px;
    flex-direction: row;
  }
}
.customer-reviews .container-reviews .quote-mark {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
  width: 42px;
  height: 48px;
  left: 0;
  top: 0;
  margin-top: -24px;
  margin-left: -14px;
}
@media (min-width: 768px) {
  .customer-reviews .container-reviews .quote-mark {
    margin-top: -5%;
  }
}
.customer-reviews .container-reviews .trust-pilot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .customer-reviews .container-reviews .trust-pilot {
    margin-right: 24px;
    margin-bottom: 0;
  }
}
.customer-reviews .container-reviews .trust-pilot h2 {
  margin: 12px 0;
}
.customer-reviews .container-reviews .trust-pilot .trustpilot-widget {
  margin-top: 0 !important;
  left: 0;
  margin-left: -35px;
}
.customer-reviews .container-reviews .carousel-container .carousel-text {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(14.5px);
          backdrop-filter: blur(14.5px);
  padding: 24px 16px 20px 16px;
  gap: 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.customer-reviews .container-reviews .carousel-container .carousel-text .title {
  font-size: 18px;
  font-weight: 700;
}
.customer-reviews .container-reviews .carousel-container .carousel-text .info {
  font-size: 16px;
  font-weight: 300;
}
.customer-reviews .container-reviews .carousel-container .splide__pagination {
  bottom: -1.5em;
}
@media (min-width: 768px) {
  .customer-reviews .container-reviews .carousel-container .splide__list {
    align-items: center;
  }
}
.customer-reviews .triangle {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 50px solid #121F55;
  transform: rotate(180deg);
  right: -5%;
  position: relative;
  top: -2px;
  z-index: 3;
  display: none;
}
@media (min-width: 992px) {
  .customer-reviews .triangle {
    display: block;
  }
}
.customer-reviews .btn.btn-xl {
  font-size: 1.1rem;
  padding: 0.8rem 4.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .customer-reviews .btn.btn-xl {
    width: auto;
  }
}

.mt5-chart-phone-section {
  padding-top: 40px;
  overflow: hidden;
}
.mt5-chart-phone-section .container-optimize {
  flex-direction: column;
  position: relative;
  bottom: -7px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .mt5-chart-phone-section .container-optimize {
    flex-direction: row;
  }
}
.mt5-chart-phone-section .container-optimize__btn {
  margin-top: 16px !important;
}
@media (min-width: 576px) {
  .mt5-chart-phone-section .container-optimize__btn {
    margin-right: 16px !important;
  }
}
.mt5-chart-phone-section .container-optimize__btn:first-of-type {
  margin-right: 0 !important;
}
@media (min-width: 576px) {
  .mt5-chart-phone-section .container-optimize__btn:first-of-type {
    margin-right: 16px !important;
  }
}
.mt5-chart-phone-section .container-optimize__logos {
  gap: 20px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .mt5-chart-phone-section .container-optimize__logos {
    margin-bottom: 8px;
  }
}
.mt5-chart-phone-section .container-optimize .left-text {
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .mt5-chart-phone-section .container-optimize .left-text .left-text--mobile-title {
    display: none;
  }
}
.mt5-chart-phone-section .container-optimize .left-text .left-text--title {
  display: none;
  text-transform: capitalize;
}
@media (min-width: 576px) {
  .mt5-chart-phone-section .container-optimize .left-text .left-text--title {
    display: block;
  }
}
.mt5-chart-phone-section .container-optimize .optimize-img {
  order: -1;
  position: relative;
}
@media (min-width: 992px) {
  .mt5-chart-phone-section .container-optimize .optimize-img {
    order: 1;
  }
}
.mt5-chart-phone-section .container-optimize .optimize-img img {
  max-width: 400px;
}
@media (min-width: 992px) {
  .mt5-chart-phone-section .container-optimize .optimize-img img {
    max-width: 500px;
  }
}
.mt5-chart-phone-section .container-optimize .optimize-img .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(2, 0, 36);
  background: linear-gradient(90deg, rgba(2, 0, 36, 0) 86%, rgb(255, 255, 255) 100%, rgb(0, 212, 255) 100%);
}
@media (max-width: 576px) {
  .mt5-chart-phone-section .btn-container {
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .mt5-chart-phone-section .left-text {
    max-width: 420px;
  }
}
.mt5-chart-phone-section .left-text h2 {
  text-align: left;
  margin-left: 0;
  margin-bottom: 8px;
}
.mt5-chart-phone-section .left-text .btn {
  margin-top: 24px;
}
.mt5-chart-phone-section .left-text .btn-white-outline {
  margin-top: 0;
}
@media (min-width: 576px) {
  .mt5-chart-phone-section .left-text .btn-white-outline {
    margin-top: 24px;
  }
}
.mt5-chart-phone-section .left-text .btn-white {
  margin-top: 0;
}
@media (min-width: 576px) {
  .mt5-chart-phone-section .left-text .btn-white {
    margin-top: 24px;
  }
}
.mt5-chart-phone-section .left-text .choose-platform-alt {
  margin: 16px 0 0;
}
.mt5-chart-phone-section .left-text .choose-platform-alt p {
  margin-right: 12px;
}
.mt5-chart-phone-section .left-text .choose-platform-alt img {
  margin: 0 6px;
  height: 24px;
  width: 24px;
}

.your-money {
  position: relative;
  text-align: left;
}
@media (min-width: 768px) {
  .your-money {
    text-align: center;
  }
}
.your-money p {
  max-width: 700px;
  margin: 0 auto 16px;
}
.your-money .checkpoints-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .your-money .checkpoints-list {
    justify-content: center;
  }
}
.your-money .checkpoints-list li {
  font-weight: 600;
}

.continuous-carousel.continuous-carousel-payment-gateway-logos {
  bottom: 24px;
}
.continuous-carousel.continuous-carousel-payment-gateway-logos .logo-slider {
  grid-column: span 12;
  width: 100%;
  height: 50px;
  overflow: hidden;
  position: relative;
}
@keyframes running-line-techs {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--tech-track-width)));
  }
}
.continuous-carousel.continuous-carousel-payment-gateway-logos .logo-slider__track {
  animation: running-line-techs 28s linear infinite;
  display: flex;
  align-items: center;
}
.continuous-carousel.continuous-carousel-payment-gateway-logos .logo-slider__slide {
  margin: 0 20px;
  text-align: center;
}
.continuous-carousel.continuous-carousel-payment-gateway-logos .logo-slider__slide img {
  display: block;
}
@media (min-width: 1024px) {
  .continuous-carousel.continuous-carousel-payment-gateway-logos {
    bottom: 64px;
  }
}
.continuous-carousel.continuous-carousel-payment-gateway-logos .logo-slider__slide {
  transform: scale(0.8);
}
@media (min-width: 1024px) {
  .continuous-carousel.continuous-carousel-payment-gateway-logos .logo-slider__slide {
    transform: scale(1);
  }
}
.continuous-carousel.continuous-carousel-payment-gateway-logos .logo-slider::before, .continuous-carousel.continuous-carousel-payment-gateway-logos .logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100px;
  width: 40px;
  filter: blur(2px);
  z-index: 2;
}
.continuous-carousel.continuous-carousel-payment-gateway-logos .logo-slider::before {
  left: -15px;
  background: linear-gradient(280deg, rgba(255, 255, 255, 0) -26.42%, #ffffff 58.77%, #ffffff 155.56%);
}
.continuous-carousel.continuous-carousel-payment-gateway-logos .logo-slider::after {
  right: -15px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) -26.42%, #ffffff 58.77%, #ffffff 155.56%);
}

.light-fast-trade {
  padding: 96px 0;
  position: relative;
  color: white;
}
@media (max-width: 359px) {
  .light-fast-trade h2 {
    font-size: 1.25rem !important;
  }
  .light-fast-trade p {
    font-size: 0.85rem !important;
  }
}
@media (min-width: 840px) and (max-width: 992px) {
  .light-fast-trade {
    padding-bottom: 150px;
  }
}
.light-fast-trade__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 24px;
}
.light-fast-trade__list__point {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
}
.light-fast-trade__list__point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .light-fast-trade {
    padding: 160px 0;
  }
  .light-fast-trade__list {
    flex-direction: row;
    justify-content: center;
  }
}

.light-fast-trade .container {
  max-width: 740px;
}

.light-fast-trade .numb {
  font-size: 2.625rem;
  font-weight: 600;
}

.light-fast-trade .graph-trading {
  margin-bottom: -5rem;
  z-index: 10;
  width: 100%;
  max-width: 680px;
}

@media (min-width: 414px) {
  .light-fast-trade .graph-trading {
    margin-bottom: -9rem;
  }
}
.light-fast-trade img.filter {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.balloon-wrapper .balloon-img-wrapper::after {
  content: " ";
  width: 26px;
  height: 26px;
  background-color: #04d189;
  border: 1px solid #69ffca;
  border-radius: 100px;
  margin: 0.5rem auto 0;
  display: block;
  box-shadow: 0 0 0 rgba(4, 209, 137, 0.4);
  will-change: box-shadow;
  animation: pulse 800ms infinite;
}
.balloon-wrapper .card {
  display: flex;
  flex-direction: column;
  padding: 5px 22px 4px 23px;
  margin-top: 1rem;
  margin-bottom: -1.5rem;
  border-radius: 3.2px;
  box-shadow: 0 0 24px 2px rgba(13, 37, 62, 0.1);
  background-color: #ffffff;
}
.balloon-wrapper .card .title {
  color: #acacac;
  font-size: 0.875rem;
}
.balloon-wrapper .card .number {
  color: black;
  font-size: 1.5rem;
  font-weight: 500;
}

.algo-trading-section {
  max-width: 900px;
  margin: auto;
  grid-gap: 0rem;
  text-align: center;
}
.algo-trading-section .columns-grid {
  grid-gap: 1rem;
}

.lighting-animation-wrapper {
  margin-top: 48px;
  margin-bottom: 70px;
}

.balloon-wrapper .balloon-img-wrapper::after {
  content: " ";
  width: 26px;
  height: 26px;
  background-color: #04d189;
  border: 2px solid white;
  border-radius: 100px;
  margin: 0 auto;
  display: block;
}
.balloon-wrapper .card {
  display: flex;
  flex-direction: column;
  padding: 5px 22px 4px 23px;
  margin-top: 0.25rem;
  margin-bottom: -1.5rem;
  border-radius: 3.2px;
  box-shadow: 0 0 24px 2px rgba(13, 37, 62, 0.1);
  background: rgba(255, 255, 255, 0.2);
}
@media (min-width: 991px) {
  .balloon-wrapper .card {
    margin-top: 0.5rem;
  }
}
.balloon-wrapper .card .title {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  font-weight: 700;
}
.balloon-wrapper .card .number {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
}

.lighting {
  position: relative;
  flex: 1;
  height: 4px;
  overflow: hidden;
  margin: 0px -56px;
  top: 11px;
}
.lighting .bar-animation {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(4, 209, 137, 0.5), transparent);
  transform: translateY(-50%) translateX(-100%);
  animation: moveLine 0.8s linear infinite;
}

@keyframes moveLine {
  0% {
    transform: translateY(-50%) translateX(-100%);
  }
  100% {
    transform: translateY(-50%) translateX(100%);
  }
}

.multi-lingual-support-section {
  position: relative;
  padding: 96px 0;
}
@media (min-width: 992px) {
  .multi-lingual-support-section {
    padding: 160px 0;
  }
}
.multi-lingual-support-section__container {
  border-radius: 8px;
  background: #FFF;
  position: relative;
  z-index: 3;
}
.multi-lingual-support-section .multi-lingual-support {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 40px;
  z-index: 2;
}
@media (min-width: 992px) {
  .multi-lingual-support-section .multi-lingual-support {
    gap: 48px;
    flex-direction: row;
  }
}
.multi-lingual-support-section .multi-lingual-support__btn {
  margin-top: 24px;
  display: block;
}
@media (min-width: 768px) {
  .multi-lingual-support-section .multi-lingual-support__container {
    align-items: center;
  }
}
@media (min-width: 992px) {
  .multi-lingual-support-section .multi-lingual-support__container {
    align-items: start;
  }
}
.multi-lingual-support-section .multi-lingual-support__title {
  margin-bottom: 12px;
}
.multi-lingual-support-section .multi-lingual-support__img {
  width: 100%;
}
@media (min-width: 768px) {
  .multi-lingual-support-section .multi-lingual-support__img {
    width: 70%;
  }
}
@media (min-width: 992px) {
  .multi-lingual-support-section .multi-lingual-support__img {
    width: 100%;
  }
}
.multi-lingual-support-section .multi-lingual-support__speech {
  margin-right: 6px;
}

@keyframes beam-fly {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.section_algobuilder_action {
  background-color: var(--color-brand-blue-300);
  background-image: linear-gradient(122deg, #040C48 24.67%, #040C48 59.48%, #04D189 88.42%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: var(--spacing-xxl);
  width: 100%;
  position: relative;
}
.section_algobuilder_action::after {
  content: "";
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.71) 6.56%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.section_algobuilder_action .conteiner {
  z-index: 1;
  margin: 40px;
}
.section_algobuilder_action .conteiner .highlight_content .logos {
  margin: 8px 0;
}
.section_algobuilder_action .conteiner .highlight_content .logos .sponsor_txt {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}
.section_algobuilder_action .conteiner .highlight_content .title h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 36.4px;
}
.section_algobuilder_action .conteiner .highlight_content .title .title_highlight {
  color: #04D189;
}
.section_algobuilder_action .conteiner .highlight_content .description {
  margin: 0 auto;
}
.section_algobuilder_action .conteiner .highlight_content .description p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner {
  display: flex;
  position: relative;
  margin: 0 auto;
  justify-content: center;
  gap: 40px;
  max-width: 1240px;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column {
  flex: 1 1 100%;
}
@media (min-width: 991px) {
  .section_algobuilder_action .conteiner .two-cols .columns-conteiner .column {
    flex: 0 0 calc(50% - 16px);
  }
}
@media (min-width: 1024px) {
  .section_algobuilder_action .conteiner .two-cols .columns-conteiner .column {
    flex: 0 0 calc(50% - 24px);
  }
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .card-list {
  text-align: left;
  border-width: 1px 1px 1px 1px;
  border-style: solid;
  border-color: rgba(238, 242, 246, 0.5019607843);
  border-radius: 8px;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .card-list li {
  padding: 21px;
  border-width: 1px 1px 1px 1px;
  border-color: rgba(238, 242, 246, 0.5019607843);
  border-style: solid;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .card-list li:first-child {
  border-radius: 8px 8px 0 0;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .card-list li:last-child {
  border-radius: 0 0 8px 8px;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .card-list .card .header h4 {
  font-weight: 700;
  font-size: 16px;
  margin: 10px 0;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .card-list .card .header h4 img {
  position: relative;
  margin-right: 5px;
  top: 2px;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .card-list .card .title h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .expand-app-card .expand-app-slides {
  display: none;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .expand-app-card .expand-app-slides.active {
  display: block;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .expand-app-item {
  cursor: pointer;
  position: relative;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .expand-app-item.active {
  background-color: rgba(42, 71, 96, 0.4);
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .expand-app-item.active .header h4 {
  color: #04D189;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .expand-app-item.active .header h4 img {
  filter: invert(43%) sepia(96%) saturate(1237%) hue-rotate(88deg) brightness(128%) contrast(119%);
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .expand-app-item.active .progress {
  width: 100%;
  height: 3px;
  position: absolute;
  transform-origin: top right;
  overflow: hidden;
  bottom: 0;
  left: 0;
}
.section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .expand-app-item.active .progress::after {
  animation: beam-fly 10s linear infinite;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(122deg, #040C48 24.67%, #040C48 59.48%, #04D189 88.42%);
  border-radius: var(--border-radius);
  transform: translateX(-100%);
}
@media (min-width: 800px) {
  .section_algobuilder_action .conteiner .two-cols .columns-conteiner .column .expand-app-item .expand-app-card__img {
    display: none;
  }
}
@media screen and (max-width: 810px) {
  .section_algobuilder_action .conteiner .two-cols .columns-conteiner .image_column {
    display: none;
  }
  .section_algobuilder_action .conteiner .two-cols .columns-conteiner .expand-app-item .expand-app-card__img {
    display: none;
  }
  .section_algobuilder_action .conteiner .two-cols .columns-conteiner .expand-app-item .expand-app-card__img.active {
    margin-top: 10px;
    display: block;
  }
  .section_algobuilder_action .conteiner .two-cols .columns-conteiner .expand-app-item .content {
    display: none;
  }
  .section_algobuilder_action .conteiner .two-cols .columns-conteiner .expand-app-item.active .content {
    display: block;
  }
}
.section_algobuilder_action .conteiner .two-cols .flex-column {
  width: 100%;
  text-align: left;
}
@media (min-width: 768px) {
  .section_algobuilder_action .conteiner .two-cols .flex-column {
    width: 320px;
    text-align: center;
  }
}

.ai-trading-agent-section {
  padding: 96px 0 96px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ai-trading-agent-section .ai-trading-agent {
  position: relative;
  z-index: 2;
  justify-content: space-between;
  align-items: center;
}
.ai-trading-agent-section .ai-trading-agent__text {
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .ai-trading-agent-section .ai-trading-agent__text {
    max-width: 350px;
  }
}
@media (min-width: 992px) {
  .ai-trading-agent-section .ai-trading-agent__text {
    max-width: 340px;
  }
}
.ai-trading-agent-section .ai-trading-agent__list {
  margin: 0 0 0 15px;
}
@media (min-width: 768px) {
  .ai-trading-agent-section .ai-trading-agent__container {
    width: 100%;
    justify-content: end;
  }
}
@media (min-width: 992px) {
  .ai-trading-agent-section .ai-trading-agent__container {
    width: 350px;
  }
}
@media (min-width: 1200px) {
  .ai-trading-agent-section .ai-trading-agent__container {
    width: 100%;
  }
}
.ai-trading-agent-section .ai-trading-agent__chat {
  position: relative;
}
.ai-trading-agent-section .ai-trading-agent__chat__ipad {
  height: 570px;
  width: 470px;
}
.ai-trading-agent-section .ai-trading-agent__chat__glare {
  position: absolute;
  z-index: 3;
  right: -8%;
  top: -18%;
  max-width: 190px;
}
.ai-trading-agent-section .ai-trading-agent__questions {
  position: absolute;
  left: -240px;
  top: 100px;
}
@media (min-width: 992px) {
  .ai-trading-agent-section .ai-trading-agent__questions {
    left: -180px;
    top: 60px;
  }
}
@media (min-width: 1200px) {
  .ai-trading-agent-section .ai-trading-agent__questions {
    left: -240px;
    top: 100px;
  }
}
.ai-trading-agent-section .ai-trading-agent__questions__question {
  background: #0B1823;
  color: #929292;
  border-radius: 6.367px 6.367px 0 6.367px;
  display: flex;
  width: 270px;
  padding: 16px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .ai-trading-agent-section .ai-trading-agent__questions__question {
    font-size: 13px;
    width: 210px;
  }
}
@media (min-width: 1200px) {
  .ai-trading-agent-section .ai-trading-agent__questions__question {
    font-size: 16px;
    width: 270px;
  }
}
.ai-trading-agent-section .ai-trading-agent__questions__question--2 {
  margin-left: -10px;
}
.ai-trading-agent-section .ai-trading-agent__questions__question--3 {
  margin-left: -20px;
}
.ai-trading-agent-section .ai-trading-agent__questions__question .text-green {
  margin-top: 3px;
  margin-right: 7px;
  color: #116e4e;
}
.ai-trading-agent-section .ai-trading-agent__questions .progress {
  width: 100%;
  height: 3px;
  position: absolute;
  transform-origin: top right;
  overflow: hidden;
  bottom: 0;
  left: 0;
}
.ai-trading-agent-section .ai-trading-agent__questions .progress--2 {
  left: -10px;
}
.ai-trading-agent-section .ai-trading-agent__questions .progress--3 {
  left: -20px;
}
.ai-trading-agent-section .ai-trading-agent__questions .progress::after {
  animation: beam-fly 10s linear infinite;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(122deg, #040C48 24.67%, #040C48 59.48%, #04D189 88.42%);
  border-radius: var(--border-radius);
  transform: translateX(-100%);
}
.ai-trading-agent-section .ai-trading-agent__responses {
  position: absolute;
  height: 85%;
  overflow: hidden;
}
.ai-trading-agent-section .ai-trading-agent__response {
  border-radius: 8px;
  position: relative;
}
.ai-trading-agent-section .ai-trading-agent__response--user {
  position: absolute;
  top: 465px;
  right: 35px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  background: linear-gradient(106deg, #040C48 -4.09%, rgba(0, 88, 156, 0.85) 50.72%, #009F68 94.95%);
  -webkit-backdrop-filter: blur(12.8px);
          backdrop-filter: blur(12.8px);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  width: 60%;
  height: 0;
}
.ai-trading-agent-section .ai-trading-agent__response--user p {
  font-size: 14px;
}
@media (min-width: 992px) {
  .ai-trading-agent-section .ai-trading-agent__response--user p {
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  .ai-trading-agent-section .ai-trading-agent__response--user p {
    font-size: 14px;
  }
}
.ai-trading-agent-section .ai-trading-agent__response--ai {
  top: 465px;
  font-weight: 600;
  line-height: 24px;
  border-radius: 8px;
  border: 1px solid #040C48;
  background: linear-gradient(106deg, rgba(4, 12, 72, 0.05) -4.09%, rgba(0, 88, 156, 0.04) 50.72%, rgba(0, 159, 104, 0.05) 94.95%), rgba(42, 71, 96, 0.1);
  -webkit-backdrop-filter: blur(12.8000001907px);
          backdrop-filter: blur(12.8000001907px);
  right: -73px;
  width: 70%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(60px);
  height: 0;
}
@media (min-width: 1200px) {
  .ai-trading-agent-section .ai-trading-agent__response--ai {
    right: -108px;
  }
}
.ai-trading-agent-section .ai-trading-agent__response--ai p {
  font-size: 14px;
}
@media (min-width: 992px) {
  .ai-trading-agent-section .ai-trading-agent__response--ai p {
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  .ai-trading-agent-section .ai-trading-agent__response--ai p {
    font-size: 14px;
  }
}
.ai-trading-agent-section .ai-trading-agent__response--ai li {
  font-size: 14px;
}
@media (min-width: 992px) {
  .ai-trading-agent-section .ai-trading-agent__response--ai li {
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  .ai-trading-agent-section .ai-trading-agent__response--ai li {
    font-size: 14px;
  }
}
.ai-trading-agent-section .ai-trading-agent__response--ai--3 {
  top: 455px;
}
@media (min-width: 992px) {
  .ai-trading-agent-section .ai-trading-agent__response--ai--3 {
    top: 470px;
  }
}
@media (min-width: 1200px) {
  .ai-trading-agent-section .ai-trading-agent__response--ai--3 {
    top: 460px;
  }
}
.ai-trading-agent-section .ai-trading-agent__ai-symbol {
  position: absolute;
  left: -37px;
  width: 30px;
}
.ai-trading-agent-section .ai-trading-agent__ai-list {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 18px;
}
.ai-trading-agent-section .ai-trading-agent .question-arrive {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-100px);
  height: -moz-fit-content;
  height: fit-content;
  padding: 16px;
}
.ai-trading-agent-section .ai-trading-agent .question-responded {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-435px);
  height: -moz-fit-content;
  height: fit-content;
  padding: 16px;
}
@media (min-width: 992px) {
  .ai-trading-agent-section .ai-trading-agent .question-responded {
    padding: 11px;
  }
}
@media (min-width: 1200px) {
  .ai-trading-agent-section .ai-trading-agent .question-responded {
    padding: 16px;
  }
}
.ai-trading-agent-section .ai-trading-agent .answer-responded {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-330px);
  height: -moz-fit-content;
  height: fit-content;
  padding: 16px;
}
@media (min-width: 992px) {
  .ai-trading-agent-section .ai-trading-agent .answer-responded {
    transform: translateY(-350px);
    padding: 11px;
  }
}
@media (min-width: 1200px) {
  .ai-trading-agent-section .ai-trading-agent .answer-responded {
    transform: translateY(-330px);
    padding: 16px;
  }
}
.ai-trading-agent-section .ai-trading-agent__carousel {
  border-radius: 8px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), #0B1823;
  padding: 0 16px 24px 16px;
  position: relative;
  max-width: 380px;
}
.ai-trading-agent-section .ai-trading-agent__carousel__bg {
  width: 100%;
  height: 600px;
}
@media (min-width: 392px) {
  .ai-trading-agent-section .ai-trading-agent__carousel__bg {
    height: auto;
  }
}
.ai-trading-agent-section .ai-trading-agent__carousel__question {
  padding: 16px;
  border-radius: 8px;
  background: linear-gradient(106deg, #040C48 -4.09%, rgba(0, 88, 156, 0.85) 50.72%, #009F68 94.95%);
  -webkit-backdrop-filter: blur(12.8000001907px);
          backdrop-filter: blur(12.8000001907px);
  margin-bottom: 30px;
  position: absolute;
  top: 115px;
  width: 65%;
  right: 30px;
  font-weight: 400;
  font-size: 13px;
}
@media (min-width: 384px) {
  .ai-trading-agent-section .ai-trading-agent__carousel__question {
    top: 95px;
  }
}
@media (min-width: 576px) {
  .ai-trading-agent-section .ai-trading-agent__carousel__question {
    font-size: 14px;
  }
}
.ai-trading-agent-section .ai-trading-agent__carousel__answer {
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #040C48;
  background: linear-gradient(106deg, rgba(4, 12, 72, 0.05) -4.09%, rgba(0, 88, 156, 0.04) 50.72%, rgba(0, 159, 104, 0.05) 94.95%), rgba(42, 71, 96, 0.1);
  -webkit-backdrop-filter: blur(12.8000001907px);
          backdrop-filter: blur(12.8000001907px);
  position: absolute;
  top: 205px;
  width: 75%;
  right: 30px;
  font-weight: 400;
  font-size: 13px;
}
@media (min-width: 384px) {
  .ai-trading-agent-section .ai-trading-agent__carousel__answer {
    top: 185px;
  }
}
@media (min-width: 576px) {
  .ai-trading-agent-section .ai-trading-agent__carousel__answer {
    font-size: 14px;
  }
}
.ai-trading-agent-section .ai-trading-agent__carousel__answer--3 {
  top: 225px;
}
@media (min-width: 384px) {
  .ai-trading-agent-section .ai-trading-agent__carousel__answer--3 {
    top: 205px;
  }
}
@media (min-width: 397px) {
  .ai-trading-agent-section .ai-trading-agent__carousel__answer--3 {
    top: 185px;
  }
}
.ai-trading-agent-section .ai-trading-agent__carousel__answers {
  margin-left: 15px;
}
@media (min-width: 392px) {
  .ai-trading-agent-section .ai-trading-agent__carousel__answers li {
    margin: 5px 0;
  }
}
.ai-trading-agent-section .ai-trading-agent__carousel__prompt {
  padding: 16px 0 19px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.ai-trading-agent-section .ai-trading-agent__carousel__ai-symbol {
  position: absolute;
  left: -36px;
  top: 5px;
}
@media (min-width: 400px) {
  .ai-trading-agent-section .ai-trading-agent__carousel__ai-symbol {
    left: -40px;
  }
}
.ai-trading-agent-section .splide__pagination {
  bottom: -27px;
}
.ai-trading-agent-section .splide__pagination__page {
  background: transparent;
  border: solid 1px #04D189;
}
.ai-trading-agent-section .splide__pagination__page.is-active {
  background: #04D189;
  transform: scale(1);
}

.ai-trading-agent__questions__question.active {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%), #0B1823;
  color: #fff;
}
.ai-trading-agent__questions__question.active .text-green {
  color: #04d189;
}

@keyframes beam-fly {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.table-tabs-wrapper {
  background: transparent;
}
@media (min-width: 768px) {
  .table-tabs-wrapper {
    border: none;
  }
}
@media (min-width: 1200px) {
  .table-tabs-wrapper {
    width: 700px;
  }
}
@media (min-width: 1300px) {
  .table-tabs-wrapper {
    min-width: 750px;
  }
}
.table-tabs-wrapper .account-type-selector {
  display: none;
}
@media (min-width: 768px) {
  .table-tabs-wrapper .account-type-selector {
    margin: 0 20px 20px;
  }
}
@media (min-width: 768px) {
  .table-tabs-wrapper .account-type-selector.trading-conditions {
    margin: 0 auto 20px;
  }
}
@media (min-width: 1200px) {
  .table-tabs-wrapper .account-type-selector.trading-conditions {
    margin: 0 20px 20px;
  }
}
.table-tabs-wrapper .account-type-selector .account-type {
  padding: 5px 10px;
  cursor: pointer;
}
.table-tabs-wrapper .account-type-selector .account-type.active {
  border-bottom: 1px solid #04D189;
}
.table-tabs-wrapper .table-wrapper {
  border-radius: 4px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.06) 100%), linear-gradient(103deg, rgba(0, 0, 0, 0.27) 5%, rgba(0, 0, 0, 0.2) 86%);
  box-shadow: 0px 0px 24px 7px rgba(13, 37, 62, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media (min-width: 768px) {
  .table-tabs-wrapper .table-wrapper {
    min-height: 540px;
  }
}
.table-tabs-wrapper .header-tabs {
  padding: 8px 10px 0;
  margin: 0;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  border: none;
  transition: 0.2s ease;
}
.table-tabs-wrapper .header-tabs.scroll {
  overflow: auto;
}
.table-tabs-wrapper .header-tabs.collapsed {
  height: 0;
  overflow: hidden;
  padding: 0;
}
.table-tabs-wrapper .header-tabs .filters-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) {
  .table-tabs-wrapper .header-tabs .filters-container {
    flex-direction: row;
    gap: 0;
  }
}
@media (min-width: 992px) {
  .table-tabs-wrapper .header-tabs .filters-container.trading-conditions {
    flex-direction: column;
    gap: 10px;
  }
}
@media (min-width: 1200px) {
  .table-tabs-wrapper .header-tabs .filters-container.trading-conditions {
    flex-direction: row;
    gap: 0;
  }
}
.table-tabs-wrapper .header-tabs .sorting-container {
  display: none;
}
@media (min-width: 768px) {
  .table-tabs-wrapper .header-tabs .sorting-container {
    width: auto;
  }
}
@media (min-width: 768px) {
  .table-tabs-wrapper .header-tabs .sorting-container.trading-conditions {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .table-tabs-wrapper .header-tabs .sorting-container.trading-conditions {
    width: auto;
  }
}
.table-tabs-wrapper .header-tabs .sorting-container .mt4-mt5-toggle {
  border-radius: 6px;
  border: 1px solid #E6E6EF;
  background: #FFF;
  padding: 5px;
  display: flex;
  gap: 8px;
  width: 100%;
  font-size: 14px;
}
@media (min-width: 768px) {
  .table-tabs-wrapper .header-tabs .sorting-container .mt4-mt5-toggle {
    width: auto;
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .table-tabs-wrapper .header-tabs .sorting-container .mt4-mt5-toggle.trading-conditions {
    width: 100%;
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .table-tabs-wrapper .header-tabs .sorting-container .mt4-mt5-toggle.trading-conditions {
    width: auto;
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .table-tabs-wrapper .header-tabs .sorting-container .mt4-mt5-toggle.trading-conditions .mt4-mt5-toggle__switch {
    flex: 1 1 50%;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .table-tabs-wrapper .header-tabs .sorting-container .mt4-mt5-toggle.trading-conditions .mt4-mt5-toggle__switch {
    flex: none;
    text-align: left;
  }
}
.table-tabs-wrapper .header-tabs .sorting-container .mt4-mt5-toggle__switch {
  border-radius: 6px;
  border: 1px solid #E6E6EF;
  background: #F6F6F6;
  padding: 2px 8px;
  cursor: pointer;
  flex: 1 1 50%;
  text-align: center;
}
@media (min-width: 768px) {
  .table-tabs-wrapper .header-tabs .sorting-container .mt4-mt5-toggle__switch {
    flex: none;
    text-align: left;
  }
}
.table-tabs-wrapper .header-tabs .sorting-container .mt4-mt5-toggle__switch.active {
  border: 1px solid #04D189;
  background: #04D189;
  color: #fff;
}
.table-tabs-wrapper .header-tabs .sorting-container .sort-filter {
  border-radius: 6px;
  border: 1px solid #E6E6EF;
  background: #FFF;
  padding: 8px 11px;
  position: relative;
}
.table-tabs-wrapper .header-tabs .sorting-container .sort-filter__toggle {
  display: flex;
  align-items: center;
  gap: 9px;
}
.table-tabs-wrapper .header-tabs .sorting-container .sort-filter__dropdown {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  position: absolute;
  top: 42px;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  padding: 5px;
}
.table-tabs-wrapper .header-tabs .sorting-container .sort-filter__dropdown.show {
  max-height: 200px;
}
.table-tabs-wrapper .header-tabs .search-container {
  position: relative;
}
.table-tabs-wrapper .header-tabs .search-container .search-label {
  position: absolute;
  top: 8px;
  left: 12px;
  z-index: 0;
  margin-bottom: 0;
}
.table-tabs-wrapper .header-tabs .search-container .search-input {
  border-radius: 6px;
  border: 1px solid #212B36;
  background: transparent;
  min-width: 350px;
  padding: 8px 11px;
  z-index: 0;
  position: relative;
  font-size: 16px;
}
.table-tabs-wrapper .header-tabs .instrument-filters {
  display: flex;
  overflow: auto;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .table-tabs-wrapper .header-tabs .instrument-filters {
    padding-bottom: 0;
  }
}
.table-tabs-wrapper .header-tabs .instrument-filters.hide {
  display: none;
}
.table-tabs-wrapper .header-tabs .instrument-type {
  color: #637381;
  border-radius: 8px;
  min-height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  margin: 0.25rem 0.5rem 0.25rem 0;
  font-size: 0.875rem;
  cursor: pointer;
  text-align: center;
}
.table-tabs-wrapper .header-tabs .instrument-type.active {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.table-tabs-wrapper .header-tabs .instrument-type.disabled {
  opacity: 0;
  position: absolute;
  z-index: -10;
}
.table-tabs-wrapper .mt4-mt5-table-tab {
  display: none;
}
.table-tabs-wrapper .mt4-mt5-table-tab.active {
  display: block;
}
.table-tabs-wrapper .mt4-mt5-table-tab .spreadsTable {
  width: 100% !important;
  max-width: 100%;
  table-layout: auto;
}
.table-tabs-wrapper .mt4-mt5-table-tab .spreadsTable .thead-load {
  color: #637381;
  font-weight: 600;
  font-size: 13.1px;
}
.table-tabs-wrapper .mt4-mt5-table-tab .spreadsTable.dataTable {
  table-layout: auto;
}
.table-tabs-wrapper .table-tab {
  border-radius: 0 0 16px 16px;
  opacity: 0;
  transition: opacity 800ms ease-in-out, transform 600ms ease-in-out;
  max-height: 0;
}
.table-tabs-wrapper .table-tab.active {
  opacity: 1;
  max-height: 100%;
}
.table-tabs-wrapper .table-tab .initMsg {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  padding: 0 6px;
  font-size: 13px;
  height: 40px;
}
.table-tabs-wrapper .table-tab .dt-container .dt-layout-row:first-child .dt-layout-cell {
  padding: 0;
}
@media (min-width: 768px) {
  .table-tabs-wrapper .table-tab .dt-container .dt-layout-row:first-child .dt-layout-cell {
    padding: 0;
  }
}
.table-tabs-wrapper .table-tab .dt-container .dt-layout-row:first-child .dt-layout-cell.dt-end {
  padding-right: 1rem;
}
.table-tabs-wrapper .table-tab .dt-container .dt-layout-row:first-child .dt-layout-cell.dt-start {
  padding-left: 1rem;
}
.table-tabs-wrapper .table-tab .dt-container .dt-layout-row:last-child .dt-layout-cell {
  padding: 5px 0 10px 5px;
}
@media (min-width: 768px) {
  .table-tabs-wrapper .table-tab .dt-container .dt-layout-row:last-child .dt-layout-cell {
    padding: 0 0 5px;
  }
}
.table-tabs-wrapper .table-tab .dt-container .dt-layout-row:last-child .dt-layout-cell.dt-end {
  padding-right: 10px;
}
.table-tabs-wrapper .table-tab .dt-container .dt-layout-row:last-child .dt-layout-cell.dt-start {
  padding-left: 10px;
}
.table-tabs-wrapper .table-tab .dt-container .dt-search {
  position: relative;
  margin-bottom: 16px;
}
.table-tabs-wrapper .table-tab .dt-container .dt-search label {
  position: absolute;
  opacity: 0;
}
.table-tabs-wrapper .table-tab .dt-container .dt-search input {
  width: 100%;
  border-radius: 6px;
  padding-left: 12px;
}
@media (min-width: 768px) {
  .table-tabs-wrapper .table-tab .dt-container .dt-search input {
    width: 100%;
    margin-left: 8px;
    min-width: 270px;
  }
}
.table-tabs-wrapper .table-tab .dt-container .dt-info {
  font-size: 14px;
}
.table-tabs-wrapper .table-tab .dt-container .dt-paging {
  display: flex;
  justify-content: flex-end;
}
.table-tabs-wrapper .table-tab .dt-container .dt-paging-button {
  border: none;
}
@media (max-width: 768px) {
  .table-tabs-wrapper .table-tab .dt-container .dt-paging-button {
    padding: 4px 6px;
    font-size: 11px;
  }
}
.table-tabs-wrapper .table-tab .dt-container .dt-paging-button.disabled {
  opacity: 0;
}
.table-tabs-wrapper .table-tab .dt-container .dt-paging-button.current {
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
  border-radius: 8px;
}
.table-tabs-wrapper .table-tab .dt-container .dt-paging-button.current:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
}
.table-tabs-wrapper .table-tab .dt-container .dt-paging-button:hover {
  background: none;
  color: #fff !important;
  border: none;
}
.table-tabs-wrapper .table-tab .responsive-table thead th {
  white-space: nowrap;
  color: #637381;
  font-weight: 600;
  font-size: 13.1px;
}
@media (max-width: 767px) {
  .table-tabs-wrapper .table-tab .responsive-table thead th {
    text-align: center;
  }
}
.table-tabs-wrapper .table-tab .responsive-table tbody tr {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
}
@media (min-width: 768px) {
  .table-tabs-wrapper .table-tab .responsive-table tbody tr {
    border-right: none;
    border-left: none;
  }
}
.table-tabs-wrapper .table-tab .responsive-table tbody tr:nth-of-type(odd) {
  background: transparent;
}
.table-tabs-wrapper .table-tab .responsive-table tbody tr td.pulse-up,
.table-tabs-wrapper .table-tab .responsive-table tbody tr td.pulse-down {
  background-color: rgba(0, 255, 0, 0.05);
  position: relative;
  z-index: 1;
}
.table-tabs-wrapper .table-tab .responsive-table tbody tr td.pulse-down {
  background-color: rgba(255, 0, 0, 0.05);
}
.table-tabs-wrapper .table-tab .responsive-table tbody tr .daily-change-wrapper {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  gap: 1px;
}
.table-tabs-wrapper .table-tab .responsive-table tbody tr .spread {
  font-size: 14px;
  font-weight: 300;
}
.table-tabs-wrapper .table-tab .responsive-table tbody tr .price {
  color: #04d189;
}
.table-tabs-wrapper .table-tab.markets .dt-search {
  display: none;
}

.mt4-mt5-hero-table .table-tab .responsive-table tbody tr:nth-of-type(2n + 1) {
  background: none;
}

.dtfc-fixed-start {
  background: none !important;
}

.dt-column-order {
  display: none;
}

.trade-graph {
  max-width: 45px;
  margin-left: 8px;
  display: none;
}
@media (min-width: 992px) {
  .trade-graph {
    display: inline;
  }
}

.dt-column-title {
  color: #637381;
  font-weight: 600;
  font-size: 13.1px;
}

.trade-now-btn {
  display: flex;
  padding: 7px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 2px solid #04d189;
  color: #fff !important;
  transition: 0.2s ease;
  font-size: 14px;
  min-width: 80px;
}
.trade-now-btn:hover {
  background: #04d189;
  color: #000 !important;
}

.icon-container {
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .icon-container {
    font-size: 15px;
  }
}
.icon-container .icon-and-append-con {
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.icon-container .icon-and-append-con .ticker-symbol,
.icon-container .icon-and-append-con .append-to-top-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.icon-container .icon-and-append-con .ticker-symbol {
  opacity: 1;
  pointer-events: auto;
}
.icon-container .icon-and-append-con .append-to-top-btn {
  opacity: 0;
  background: #04D189;
  color: #fff !important;
  border: none;
  border-radius: 6px;
  font-size: 22px;
  margin: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: flex;
}

.thead-load tr:hover {
  background: transparent !important;
  -webkit-backdrop-filter: none !important;
          backdrop-filter: none !important;
}

.dt-search {
  display: none;
}

.dataTable th,
.dataTable td {
  text-align: center !important;
}
@media (min-width: 768px) {
  .dataTable th,
  .dataTable td {
    text-align: left !important;
  }
}

.table-wrapper {
  padding: 5px 10px;
  font-size: 15px;
}
@media (min-width: 768px) {
  .table-wrapper {
    font-size: 16px;
  }
}
.table-wrapper__search {
  display: flex;
  padding: 5px 0;
  border-bottom: 1px solid rgba(99, 115, 129, 0.5);
  width: 97%;
  left: 11px;
  position: relative;
  height: 100%;
}
.table-wrapper input {
  background: transparent;
  border: none;
  box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #637381;
}
.table-wrapper input:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
.table-wrapper input::-moz-focus-inner {
  border: 0;
}
.table-wrapper input input::-moz-placeholder {
  color: #637381;
}
.table-wrapper input input::placeholder {
  color: #637381;
}
.table-wrapper input input::-webkit-input-placeholder {
  color: #637381;
}
.table-wrapper input input:-moz-placeholder {
  color: #637381;
  opacity: 1;
}

.tooltip--triangle {
  position: relative;
  z-index: 10000;
  margin-left: 6px;
  bottom: -2px;
  display: none;
}
@media (min-width: 768px) {
  .tooltip--triangle {
    display: inline;
  }
}
.tooltip--triangle__svg {
  width: 12px;
}

.tooltip--triangle[data-tooltip]::after {
  background: #2E3639;
  top: -4px;
}

.tooltip--triangle[data-tooltip]::before {
  border-top: solid 8px #2E3639;
}

.dt-scroll-head {
  overflow: scroll !important;
}
@media (min-width: 768px) {
  .dt-scroll-head {
    overflow: visible !important;
  }
}

.mobile-only-spread {
  color: #04d189;
}
@media (min-width: 768px) {
  .mobile-only-spread {
    display: none;
  }
}

.dt-type-numeric {
  position: relative;
  white-space: nowrap;
}

.fall-back-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 12px;
  outline: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  position: relative;
  top: -2px;
  z-index: -1;
}

@media (min-width: 576px) and (hover: hover) and (pointer: fine) {
  tr.js-instrument:hover,
  tr.js-instrument.hovered {
    background: rgba(255, 255, 255, 0.2) !important;
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    transition: 0.2s ease;
  }
  tr.js-instrument:hover .icon-and-append-con .ticker-symbol,
  tr.js-instrument.hovered .icon-and-append-con .ticker-symbol {
    opacity: 0;
    pointer-events: none;
  }
  tr.js-instrument:hover .icon-and-append-con .append-to-top-btn,
  tr.js-instrument.hovered .icon-and-append-con .append-to-top-btn {
    opacity: 1;
    pointer-events: auto;
    color: #fff;
    outline: solid 2px #04d189;
  }
}
.trade-now-btn.hovered {
  background: #04d189;
  color: #000 !important;
}

.trend-up-triangle {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid #04d189;
  margin-left: 4px;
  margin-bottom: 3px;
  display: none;
}
@media (min-width: 576px) {
  .trend-up-triangle {
    display: inline-block;
  }
}

.trend-down-triangle {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #e02b2b;
  margin-left: 4px;
  margin-bottom: 1px;
  display: none;
}
@media (min-width: 576px) {
  .trend-down-triangle {
    display: inline-block;
  }
}

.two-line-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  position: relative;
}

/* On hover, remove the clamp so the full text is visible */
.two-line-ellipsis:hover {
  -webkit-line-clamp: unset;
  white-space: normal;
  max-height: none;
}

.div.dt-container div.dt-layout-row.dt-layout-table div.dt-layout-cell {
  padding: 0;
}

.responsive-table:not(.dataTable) .preload-icon-container {
  display: flex;
}
.responsive-table:not(.dataTable) .preload-icon-container img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
@keyframes glow {
  0% {
    background-position: -200% 0; /* Start from left */
  }
  100% {
    background-position: 200% 0; /* End at right */
  }
}
.responsive-table:not(.dataTable) .preload-inner {
  position: relative;
}
.responsive-table:not(.dataTable) .preload-load::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  height: 28px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #09262C, #072E2A, rgba(255, 255, 255, 0));
  background-size: 400% 100%;
  animation: glow 2s linear infinite;
}
@media (min-width: 768px) {
  .responsive-table:not(.dataTable) .preload-load::before {
    width: 85%;
  }
}
@media (min-width: 768px) {
  .responsive-table:not(.dataTable) .preload-load--change {
    width: 80px;
    display: block;
  }
}
.responsive-table:not(.dataTable) .preload-symbol-row td {
  padding: 7px 10px;
}
.responsive-table:not(.dataTable) .preload-symbol-row td:first-child {
  padding-left: 8px;
}
.responsive-table:not(.dataTable) .th-preload {
  padding: 12px 10px 10px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.responsive-table:not(.dataTable) .th-preload--ticker {
  width: 20%;
  padding-left: 8px;
}
.responsive-table:not(.dataTable) .th-preload--market {
  width: 17%;
}
@media (max-width: 768px) {
  .responsive-table:not(.dataTable) .th-preload--market {
    display: none;
  }
}
.responsive-table:not(.dataTable) .th-preload--action {
  width: 12%;
}
@media (max-width: 768px) {
  .responsive-table:not(.dataTable) .th-preload--action {
    display: none;
  }
}
.responsive-table:not(.dataTable) .th-preload--change {
  padding-left: 8px;
}
.responsive-table:not(.dataTable) .th-preload--price {
  padding-left: 3px;
}
.responsive-table:not(.dataTable) .th-preload--spread {
  width: 13%;
}
.responsive-table:not(.dataTable) .preload-inner {
  padding: 10px;
}
.responsive-table:not(.dataTable) .preload-market {
  font-size: 14px;
}
@media (max-width: 768px) {
  .responsive-table:not(.dataTable) .preload-market {
    display: none;
  }
}
.responsive-table:not(.dataTable) .preload-market--inner {
  display: block;
  width: 109px;
}
@media (max-width: 768px) {
  .responsive-table:not(.dataTable) .preload-action {
    display: none;
  }
}

/*
IF RE-GENERATING CRITICAL CSS - .data-wrapper and mt5 hero table STYLES NEEDED TO BE ADDED MANUALLY
*/
.h-100vh {
  min-height: 100vh;
  /*@media (max-width: 414px) and (max-height: 736px) {
    min-height: calc(100vh + 3rem);
  }

  @media (max-width: 560px) and (max-height: 700px) {
    min-height: calc(100vh + 5rem);
  }*/
}
@media (max-width: 767px) and (min-height: 801px) {
  .h-100vh {
    min-height: 90vh;
  }
}
@media (max-width: 413px) and (max-height: 699px) {
  .h-100vh {
    min-height: calc(100vh + 3rem);
  }
}
@media (min-width: 991px) and (min-height: 700px) {
  .h-100vh {
    min-height: calc(100vh + 5rem);
  }
}
@media (max-height: 600px) {
  .h-100vh {
    min-height: calc(100vh + 11rem);
  }
}
@media (min-height: 799px) {
  .h-100vh {
    min-height: 89vh;
  }
}

@media (min-width: 991px) {
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
}
img {
  height: auto;
}

.hero {
  position: relative;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  color: white;
}
.hero__title {
  font-size: 36px !important;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 48px !important;
  }
}
@media (min-width: 1200px) {
  .hero__title {
    max-width: 372px;
  }
}
.hero__subtitle {
  font-size: 20px;
  font-weight: 500;
  max-width: 360px;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .hero__subtitle {
    max-width: 450px;
  }
}
@media (min-width: 1200px) {
  .hero__subtitle {
    max-width: 360px;
  }
}
.hero--htt-cpm .btn-hero {
  font-size: 1.1rem;
  padding: 0.8rem 1.2rem;
  width: 100%;
}
.hero--htt-cpm .btn-hero.btn-green {
  margin-right: 0;
}
@media (min-width: 768px) {
  .hero--htt-cpm .btn-hero.btn-green {
    width: auto;
    margin-right: 16px;
  }
}
.hero--htt-cpm .htt-cpm-menu__text {
  font-size: 14px;
}
@media (min-width: 768px) {
  .hero--htt-cpm .htt-cpm-menu__text {
    margin-right: 16px;
  }
}
.hero--htt-cpm .htt-cpm-menu__text .icon {
  display: flex;
  align-items: center;
  line-height: 0;
  font-size: 18px;
  margin-right: 4px;
}
.hero__asterisk-info {
  color: #B8C4CA;
  margin-top: -12px;
  display: block;
}
.hero .desktop-bids-cards--wrapper {
  display: grid;
  grid-template-columns: 1fr;
  align-items: baseline;
  grid-gap: 0;
}
.hero.homepage header {
  position: relative;
  will-change: position;
  animation: smoothScrollDown 500ms forwards;
}
.hero.homepage header.fixed {
  position: fixed;
  animation: smoothScroll 500ms forwards;
}
.hero .tp-wrapper-mobile {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1rem;
  align-items: center;
  justify-content: center;
}
.hero .tp-wrapper-mobile .arrow-wrapper {
  text-align: center;
}
@media (min-width: 991px) {
  .hero .tp-wrapper-mobile {
    display: none;
  }
}
.hero .tp-wrapper {
  display: none;
}
@media (min-width: 991px) {
  .hero .tp-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.hero .tp-wrapper.fixed {
  position: absolute;
  bottom: 0;
  margin-bottom: 3rem;
}
.hero .border-right {
  border-right: 0;
}
.hero .data-wrapper {
  width: 100%;
  position: absolute;
  margin-top: 0;
  bottom: 0;
  padding: 1rem 0 0.5rem;
  background: rgba(0, 0, 0, 0.25);
}
@media (max-width: 370px) {
  .hero .data-wrapper {
    padding: 0 0 0.5rem;
  }
}
.hero .data-wrapper .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}
@media (min-width: 991px) {
  .hero .data-wrapper {
    margin-top: 0;
  }
}
.hero .data-wrapper .item {
  padding: 0 0.25rem;
}
@media (min-width: 768px) {
  .hero .data-wrapper .item {
    padding: 0 0.65rem;
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: space-around;
  }
}
.hero .data-wrapper .item:not(:last-child) {
  border-right: 1px solid #828282;
}
.hero .data-wrapper .item:not(:first-child) {
  font-size: 1.25rem;
}
.hero .data-wrapper .item__numb {
  font-weight: 500;
  font-size: 16px;
  text-align: left;
}
.hero .data-wrapper .item__numb__asterisk {
  margin-left: 6px;
}
@media (min-width: 768px) {
  .hero .data-wrapper .item__numb__asterisk {
    font-size: 22px;
    margin-left: 6px;
    margin-top: -9px;
  }
}
@media (min-width: 992px) {
  .hero .data-wrapper .item__numb__asterisk {
    font-size: 48px;
    margin-top: -9px;
  }
}
@media (min-width: 768px) {
  .hero .data-wrapper .item__numb {
    font-size: 1.5rem;
  }
}
@media (min-width: 991px) {
  .hero .data-wrapper .item__numb {
    font-size: 38px;
  }
}
.hero .data-wrapper .item__text {
  text-align: left;
  order: 2;
  font-size: 10px;
}
@media (min-width: 768px) {
  .hero .data-wrapper .item__text {
    font-size: 0.875rem;
    margin-right: 0.5rem;
    order: 0;
  }
}
@media (min-width: 991px) {
  .hero .data-wrapper .item {
    border-right: 0 !important;
  }
  .hero .data-wrapper .item:not(:first-child)::before {
    content: " ";
    border-left: 1px solid #828282;
    display: block;
    height: 46px;
    margin-right: 1rem;
  }
}
.hero .icon-check {
  font-size: 1rem;
}
.hero .divider {
  height: 54px;
  width: 1px;
  background: #979797;
}
.hero .content {
  width: 100%;
  border-right: 0;
  z-index: 1;
}
@media (min-width: 991px) {
  .hero .content {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hero .content {
    border-right: 0;
    margin-bottom: 3rem;
  }
  .hero .content .border-right {
    border-right: 0;
    padding-bottom: 3rem;
    border-bottom: 1px solid #979797;
  }
}
@media (min-width: 1200px) {
  .hero .content {
    grid-template-columns: 1fr 1.5fr;
    grid-gap: 30px;
    margin-top: 0;
  }
}

.full-height-hero {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 359px) {
  .full-height-hero {
    padding-top: 1rem;
  }
}
@media (max-width: 767px) {
  .full-height-hero {
    padding-bottom: 10rem;
  }
}
@media (min-width: 768px) {
  .full-height-hero {
    padding-top: 3rem;
    padding-bottom: 8rem;
  }
}
.full-height-hero ul li {
  font-size: 17px;
  margin-bottom: 0.5rem;
}
.full-height-hero .buttons-wrapper {
  margin-top: 1.5rem;
}
@media (max-width: 359px) {
  .full-height-hero .buttons-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 1.5rem;
  }
}
.full-height-hero .btn-green {
  margin-right: 1rem;
}
@media (max-width: 359px) {
  .full-height-hero .btn-green {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
@media (min-width: 991px) {
  .full-height-hero {
    justify-content: space-evenly;
    min-height: calc(100vh - 88px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1120px) and (orientation: landscape) {
  .full-height-hero {
    padding-top: 3rem;
    min-height: calc(100vh + 6rem);
    justify-content: flex-start;
  }
}
@media (min-height: 1200px) {
  .full-height-hero {
    min-height: 80vh;
  }
}
@media (min-height: 1600px) {
  .full-height-hero {
    min-height: 60vh;
  }
}
@media (min-height: 1920px) {
  .full-height-hero {
    min-height: 45vh;
  }
}

@media (min-width: 991px) and (min-height: 850px) {
  .full-height-hero.h-100vh.cookie-visible-viewport {
    justify-content: center;
    min-height: calc(100vh - 86px);
    padding-top: 3rem;
  }
}
@media (min-height: 1200px) {
  .full-height-hero.h-100vh.cookie-visible-viewport {
    min-height: 1000px;
  }
}
.hero-filter {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.7)), linear-gradient(123deg, #040c48 1%, rgba(0, 88, 156, 0.85) 51%, #04d189);
  z-index: 1;
  opacity: 0.3;
}

#myVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

#metatrader-wrapper {
  max-width: 1700px;
  margin: 0 auto;
}

.devices-wrapper {
  margin: auto;
  position: relative;
}
@media (min-width: 991px) {
  .devices-wrapper .text-block {
    max-width: 600px;
    margin: 0 auto;
    margin-right: 0;
  }
}
.devices-wrapper .shape-bg {
  margin-top: 0;
  order: 0;
  position: relative;
}
@media (min-width: 1300px) and (max-width: 1700px) {
  .devices-wrapper .shape-bg {
    visibility: hidden;
  }
}
.devices-wrapper .shape-bg .shape-img {
  float: right;
}
@media (min-width: 1701px) {
  .devices-wrapper .shape-bg .shape-img {
    margin-bottom: -2.1rem;
    border-radius: 8px;
  }
}
.devices-wrapper .shape-bg img.devices {
  width: 100%;
  text-align: right;
  padding-left: 1.5rem;
  position: absolute;
  bottom: 0;
  margin-bottom: -8px;
}
@media (min-width: 991px) {
  .devices-wrapper .shape-bg img.devices {
    width: auto;
    max-width: 700px;
    margin-bottom: -3.5rem;
  }
}

.shape-big-screen {
  display: none;
}
@media (min-width: 1300px) and (max-width: 1700px) {
  .shape-big-screen {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1701px) {
  .shape-big-screen {
    display: none;
  }
}

.devices-big-screen {
  display: none;
}
@media (min-width: 1300px) and (max-width: 1700px) {
  .devices-big-screen {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1701px) {
  .devices-big-screen {
    display: none;
  }
}

.edu-hub .grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.5rem;
}
@media (min-width: 768px) {
  .edu-hub .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .edu-hub .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.edu-hub .article-card {
  border-radius: 8px;
  box-shadow: 0px 4px 23px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .edu-hub .article-card:nth-child(3) {
    grid-column: 1/3;
    max-width: 333px;
    justify-self: center;
  }
}
@media (min-width: 992px) {
  .edu-hub .article-card:nth-child(3) {
    grid-column: 3/4;
    max-width: 100%;
  }
}
.edu-hub .article-card-img {
  border-radius: 8px 8px 0 0;
  width: 100%;
}
.edu-hub .article-card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  color: #212b36;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  padding: 0 1rem;
}
.edu-hub .article-card-intro {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #637381;
  margin-bottom: 2rem;
  padding: 0 1rem;
}
.edu-hub .article-card-link {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  text-align: right;
  color: #212b36;
  margin: 0 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.edu-hub .article-card-link .underline {
  text-decoration: underline;
}
.edu-hub .btn-green {
  margin: 0 auto;
  display: block;
  width: 200px;
}

.full-height-hero {
  position: relative;
  z-index: 2;
}
.full-height-hero__btn {
  padding: 11px;
  width: 100%;
  max-width: 183px;
  border-radius: 5px;
}
.full-height-hero__btn .icon-chevron-down {
  display: inline-block;
  transform: rotate(-90deg);
  font-size: 11px;
  margin-bottom: 3px;
}

.google-signin {
  width: 100%;
}
.google-signin .googleSignInButton {
  width: 100%;
  max-width: 183px;
}

h2,
.h2 {
  font-size: 28px;
  line-height: 130%;
  font-weight: 700;
}

.btn.btn-wide {
  font-size: 16px;
  min-width: 240px;
  padding: 14px 20px;
  font-weight: 500;
  width: 100%;
}
@media (min-width: 768px) {
  .btn.btn-wide {
    max-width: 240px;
  }
}
@media (min-width: 1300px) {
  .btn.btn-wide {
    max-width: 340px;
  }
}
.btn.btn-wide .icon-chevron-down {
  display: inline-block;
  transform: rotate(-90deg);
  font-size: 11px;
  margin-bottom: 3px;
}

h3 {
  font-size: 24px;
  line-height: 120%;
}

p {
  font-size: 16px;
}

.text-left-banner {
  margin-top: 0;
}
.text-left-banner__text {
  width: 100%;
  max-width: 360px;
}
.text-left-banner__text__copy {
  font-size: 18px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .text-left-banner__text__copy {
    font-size: 24px;
    font-weight: 600;
  }
}
.text-left-banner .btn-green {
  font-size: 16px;
  min-width: 240px;
  padding: 14px 20px;
  font-weight: 600;
  width: 100%;
}
@media (min-width: 768px) {
  .text-left-banner .btn-green {
    max-width: 240px;
  }
}

.continuous-carousel-payment-gateway-logos {
  padding: 10px 0;
  border: 1px solid rgba(33, 43, 54, 0.25);
}

.mt5-chart-phone-section .container-optimize__alt-order {
  order: -2;
  margin-bottom: 30px;
  gap: 6px;
}
@media (min-width: 992px) {
  .mt5-chart-phone-section .container-optimize__alt-order {
    display: none;
  }
}
.mt5-chart-phone-section .container-optimize__alt-order__text {
  display: none;
}
@media (min-width: 992px) {
  .mt5-chart-phone-section .container-optimize__alt-order__text {
    display: block;
  }
}
.mt5-chart-phone-section .container-optimize .left-text {
  width: 100%;
  max-width: 500px;
}
.mt5-chart-phone-section .container-optimize .left-text .btn-container {
  flex-direction: column;
  justify-content: start;
}
@media (min-width: 576px) {
  .mt5-chart-phone-section .container-optimize .left-text .btn-container {
    flex-direction: row;
  }
}
.mt5-chart-phone-section .container-optimize__btn {
  border-radius: 4px;
  border: 2px solid #02A169;
  color: #02a169;
  z-index: 1;
  margin-top: 16px !important;
}
.mt5-chart-phone-section .container-optimize__btn:first-of-type {
  margin-right: 16px;
}
@media (max-width: 576px) {
  .mt5-chart-phone-section .container-optimize__btn:first-of-type {
    margin-top: 16px !important;
  }
}
.mt5-chart-phone-section .container-optimize__btn:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(179deg, #00F198 0%, #19BA80 52%, #007C50 100%);
  z-index: -1;
  transition: opacity 250ms linear;
  opacity: 0;
}
.mt5-chart-phone-section .container-optimize__btn:hover:before {
  opacity: 1;
}
.mt5-chart-phone-section .container-optimize__btn:hover {
  color: #212b36;
  border: solid 2px #02a169;
  background-image: linear-gradient(179deg, #04d189 0%, #04d189 52%, #04d189 100%);
}
.mt5-chart-phone-section .container-optimize .optimize-img {
  position: relative;
}
.mt5-chart-phone-section .container-optimize .optimize-img__img {
  max-width: 420px;
}
.mt5-chart-phone-section .container-optimize .optimize-img .gradient-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mt5-chart-phone-section {
  padding-top: 80px;
}
@media (min-width: 992px) {
  .mt5-chart-phone-section {
    padding-top: 140px;
  }
}

.customer-reviews {
  padding-top: 0;
}
@media (min-width: 992px) {
  .customer-reviews {
    padding-bottom: 160px;
  }
}
.customer-reviews .container-reviews {
  flex-direction: column;
  padding: 80px 45px 30px;
}
@media (min-width: 992px) {
  .customer-reviews .container-reviews {
    flex-direction: row;
  }
}
.customer-reviews .container-reviews .trust-pilot {
  margin-bottom: 0;
}
.customer-reviews .container-reviews .carousel-container .carousel-text {
  border-radius: 4px;
  border: 1px solid rgba(4, 209, 137, 0.2);
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(14.5px);
          backdrop-filter: blur(14.5px);
  min-height: 190px;
}
.customer-reviews .triangle {
  display: none;
}

.footer-legal p {
  font-size: 12px;
}/*# sourceMappingURL=home.css.map */