:root {
  --theme-fill: #290034;
  --ui-card-box-fill: #14141f;
  --alt-bg: #380f43;
  --theme-accent-primary: #e74c3c;
  --main-hover: #ff7262;
  --ui-secondary-alt: #b52d1f;
  --text-content: #e8e6e3;
  --soft-copy: #9a9a9a;
  --ui-accent-color: #ff6b6b;
  --promo-cta-grad-top-area: #e74c3c;
  --theme-bonus-btn-grad-bottom: color-mix(in srgb, #e74c3c, #000 20%);
  --duospin-border-line: #2a2a3e;
  --theme-blend: linear-gradient(160deg,  #e74c3c 0%, #b52d1f 100%);
  --theme-glow: rgba(255,255,255,0.1);
  --duospin-glow-deep: rgba(255,255,255,0.2);
  --heading-font: 'Montserrat','Helvetica Neue',Arial,sans-serif;
  --content-typeface: 'Montserrat','Helvetica Neue',Arial,sans-serif;
  --block-spacing: 6rem 2rem;
  --panel-inset: 2.2rem;
  --ui-spacing: 2rem;
  --theme-radius: 14px;
  --radius-card-box: 20px;
  --sheen-background: #14141f;
  --sheen-border: #2a2a3e;
  --frosted-shade: 0 2px 12px rgba(0, 0, 0, 0.3);
  --theme-text-btn: #fff;
  --width-sidebar: 248px;
  --copy-highlight: #fff
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%
}
body {
  font-family: var(--content-typeface);
  background: var(--theme-fill);
  color: var(--text-content);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 64px
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  line-height: 1.15
}
a {
  color: var(--theme-accent-primary);
  text-decoration: none;
  transition: color .25s
}
a:hover {
  color: var(--main-hover)
}
@keyframes shimmer {
  0% {
    background-position: 200% center
  }
  100% {
    background-position: -200% center
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(-6px)
  }
}
@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 15px var(--theme-glow)
  }
  50% {
    box-shadow: 0 0 28px var(--duospin-glow-deep)
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
.header-burger-open span:first-child {
  transform: translateY(7px) rotate(45deg)
}
.header-burger-open span:nth-child(2) {
  opacity: 0
}
.header-burger-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}
@media (max-width:768px) {
  .header-nav-open {
    display: flex!important
  }
}
.widget-region-area.secondary-alt-grid {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--width-sidebar,64px);
  overflow-y: auto;
  z-index: 10;
  flex-shrink: 0
}
.side-panel-primary {
  position: relative;
  height: 100%;
  overflow-y: auto
}
.main-site-footer-upper-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem
}
.site-footer-brand {
  display: flex;
  align-items: center;
  gap: .5rem
}
.main-page-footer-brand {
  height: 30px;
  width: auto
}
.page-footer-navbar-area {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap
}
.page-footer-navbar-area a {
  font-size: .82rem;
  color: var(--soft-copy);
  text-decoration: none;
  transition: color .2s
}
.page-footer-navbar-area a:hover {
  color: var(--theme-accent-primary);
  text-decoration: underline;
  text-underline-offset: 2px
}
.colophon-bottom-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
  padding-top: .6rem
}
@media (max-width:480px) {
  :root {
    --block-spacing: 1.8rem 0.8rem;
    --panel-inset: 0.9rem;
    --ui-spacing: 0.6rem
  }
  h1 {
    font-size: 1.4rem!important
  }
  h2 {
    font-size: 1.15rem!important
  }
}
@media (max-width:768px) {
  :root {
    --block-spacing: 2.5rem 1rem;
    --panel-inset: 1.2rem
  }
}
@media (min-width:769px) and (max-width:1024px) {
  :root {
    --block-spacing: 3.5rem 1.5rem;
    --panel-inset: 1.5rem
  }
}
header {
  background-color: var(--theme-fill);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: 64px;
  font-family: var(--heading-font)
}
.header-shell-container {
  display: flex;
  justify-content: space-between;
  padding: 0 35px 0 20px;
  height: 100%;
  align-items: center
}
.header-shell-container a {
  color: var(--text-content);
  text-decoration: none
}
.header-shell-container a:hover {
  color: unset
}
.page-header-start {
  display: flex;
  align-items: center;
  gap: 40px
}
.site-emblem-container-area img {
  max-height: 36px;
  width: auto;
  max-width: 200px;
  object-fit: contain
}
.toggle-holder-block {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--alt-bg);
  padding: 5px 10px;
  border-radius: 1000px;
  border: 1px solid var(--duospin-border-line)
}
.toggle-holder-block > a,
.toggle-holder-block div {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--soft-copy)
}
.site-picker-left-side {
  background: var(--theme-accent-primary);
  color: #fff!important;
  padding: 3px 8px;
  border-radius: 1000px
}
.site-header-menu-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 600
}
.site-header-menu-list a {
  color: var(--soft-copy)
}
.site-header-menu-list a:hover {
  color: var(--text-content)
}
.page-header-right-side-area {
  display: flex;
  align-items: center;
  gap: 15px
}
.main-missions-action-grid {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  background: var(--ui-accent-color);
  color: var(--copy-highlight,#fff);
  padding: 2px 8px;
  border-radius: 8px;
  box-shadow: 0 0 16px var(--theme-glow)
}
.main-missions-action-grid img {
  width: 18px;
  height: 18px
}
.site-topbar-button-buttons {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700
}
.site-topbar-button-buttons a {
  padding: 10px 12px;
  border-radius: 1000px;
  line-height: normal
}
.sign-in-cta-grid {
  border: 1px solid var(--duospin-border-line);
  color: var(--text-content)
}
.sign-in-cta-grid:hover {
  background-color: var(--alt-bg)
}
.register-btn-container {
  position: relative
}
.join-button {
  background: var(--theme-accent-primary);
  border: 1px solid var(--theme-accent-primary);
  color: var(--theme-text-btn,#fff)
}
.join-button:hover {
  filter: brightness(1.15)
}
.menu-btn-button-panel {
  background: 0 0;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center
}
.menu-btn-button-panel img {
  filter: invert(1)
}
.offcanvas-block {
  position: fixed;
  top: 0;
  left: -100%;
  width: 90%;
  height: 100vh;
  background: var(--theme-fill);
  z-index: 10000;
  transition: left .3s;
  display: flex;
  flex-direction: column
}
.offcanvas-block.open {
  left: 0
}
.offcanvas-close-wrapper {
  background: 0 0;
  border: none;
  padding: 10px;
  color: var(--text-content);
  cursor: pointer
}
.offcanvas-close-wrapper:hover {
  background: 0 0
}
.site-offcanvas-masthead {
  display: flex;
  justify-content: flex-end
}
.offcanvas-content-holder {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px
}
.offcanvas-content-holder .site-header-menu-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px
}
.offcanvas-content-holder .site-header-menu-list a {
  font-size: 16px;
  padding: 12px 0;
  display: block
}
.offcanvas-backdrop-holder {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 9999
}
.offcanvas-backdrop-holder.show {
  opacity: 1;
  pointer-events: all
}
@media (max-width:1124px) {
  .page-header-navigation-wrapper,
  .toggle-holder-block {
    display: none
  }
  .offcanvas-block .page-header-navigation-wrapper,
  .offcanvas-block .toggle-holder-block {
    display: flex;
    max-width: fit-content
  }
  .offcanvas-block .site-header-menu-list {
    flex-direction: column;
    align-items: flex-start;
    font-size: 12px;
    gap: 15px
  }
  .offcanvas-block .toggle-holder-block {
    font-size: 12px
  }
}
@media (min-width:1125px) {
  .menu-btn-button-panel,
  .offcanvas-backdrop-holder,
  .offcanvas-block {
    display: none
  }
}
@media (max-width:768px) {
  .main-header-search,
  .main-missions-action-grid {
    display: none
  }
  .header-shell-container {
    padding: 0 20px
  }
  .page-header-start {
    gap: 10px
  }
  .page-header-right-side-area {
    flex-shrink: 0
  }
  .site-emblem-container-area {
    max-width: 80px;
    min-width: 0;
    flex-shrink: 1
  }
  .site-emblem-container-area img {
    max-width: 100%
  }
}
.toggle-holder-block > a {
  text-decoration: none;
  color: inherit;
  cursor: pointer
}
#secondary.side-column-full {
  width: 248px;
  min-width: 248px;
  background: var(--alt-bg);
  border-right: 1px solid rgba(128,128,128,.18)
}
.side-column-full .side-panel-primary {
  padding: 80px 20px 20px;
  border-radius: 0;
  background: 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0
}
.side-column-full .side-column-hr {
  width: 100%;
  height: 1px;
  border: 0;
  margin: 10px 0;
  background: rgba(128,128,128,.18)
}
.sidebar-full-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-bottom: 4px
}
.sidebar-full-symbol img {
  object-fit: contain
}
.main-aside-expanded-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%
}
.sidebar-full-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  width: 100%;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--soft-copy);
  text-decoration: none;
  transition: .2s
}
.sidebar-full-item:hover {
  background: rgba(255,255,255,.1);
  color: var(--text-content)
}
.sidebar-full-item img {
  object-fit: contain;
  flex-shrink: 0
}
.main-aside-expanded-nav .side-column-hr {
  width: 100%;
  margin: 6px 0
}
.main-header-surface-bottom-area,
.main-header-surface-bottom-area *,
.page-header-background,
.page-header-background * {
  font-family: var(--heading-font)!important
}
.page-header-background {
  background: url(../images/header-bg.png) 0 0/cover no-repeat;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden
}
.main-site-header-surface-inner-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 12%;
  padding-bottom: 50px
}
.main-site-header-surface-inner-wrap br {
  display: none
}
.page-header-bg-name-wrapper {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--ui-accent-color)
}
.header-surface-deposit-holder {
  font-size: 105px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-content)
}
.topbar-bg-offer {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-content);
  margin-bottom: 20px
}
.main-page-header-surface-button {
  background: var(--theme-accent-primary);
  color: var(--theme-text-btn,#fff);
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700
}
.main-page-header-surface-button:hover {
  background: var(--main-hover);
  transform: translateY(-2px)
}
.site-header-bg-action-content-body {
  display: flex;
  flex-direction: column;
  align-items: center
}
.main-header-surface-bottom-area {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  background: var(--alt-bg);
  padding: 8px 0;
  margin-bottom: 24px;
  position: relative
}
.main-header-surface-bottom-area::after,
.main-header-surface-bottom-area::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 1;
  pointer-events: none
}
.main-header-surface-bottom-area::before {
  left: 0;
  background: linear-gradient(to right,var(--theme-fill),transparent)
}
.main-header-surface-bottom-area::after {
  right: 0;
  background: linear-gradient(to left,var(--theme-fill),transparent)
}
.main-header-surface-bottom-area p {
  display: none
}
.main-page-header-surface-bottom {
  text-align: center;
  margin: 0 26px
}
.main-page-header-surface-bottom .small-inner {
  font-size: 11px;
  color: var(--soft-copy);
  font-weight: 700
}
.main-page-header-surface-bottom .big-main {
  font-size: 15px;
  font-weight: 700;
  color: #fff
}
@media (max-width:768px) {
  .page-header-background {
    background-image: url(../images/header-bg-mobile.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1/1;
    padding: 0;
    margin-left: -20px;
    margin-right: -20px;
    width: auto;
    max-width: none;
    border-radius: 0;
    overflow: visible;
    position: relative;
    margin-bottom: 100px
  }
  .page-header-background .main-site-header-surface-inner-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -93px;
    padding: 0 16px;
    gap: 4px
  }
  .main-site-header-surface-inner-wrap > a {
    display: block;
    width: 100%
  }
  .page-header-bg-name-wrapper {
    font-size: 13px;
    margin-bottom: 4px
  }
  .header-surface-deposit-holder {
    font-size: 42px;
    line-height: 1.1
  }
  .topbar-bg-offer {
    font-size: 15px;
    margin-bottom: 16px
  }
  .main-page-header-surface-button {
    padding: 19px 32px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,.35)
  }
  .masthead-surface-action-main-area {
    font-size: 20px
  }
  .main-header-background-action-description {
    font-size: 11px
  }
  .main-header-surface-bottom-area {
    background: var(--alt-bg);
    gap: 10px;
    padding: 8px 15px
  }
  .big-main {
    font-size: 14px
  }
}
.main-site-header-surface-inner-wrap > a {
  display: inline-block;
  width: auto
}
.main-page-header-surface-button {
  text-transform: capitalize;
  border-radius: 1000px!important;
  padding: 8px 53px!important;
  width: auto!important;
  box-shadow: none;
  transition: .5s
}
.site-header-bg-action-content-body {
  display: flex;
  flex-direction: column;
  letter-spacing: 0
}
.masthead-surface-action-main-area {
  font-size: 18px!important;
  font-weight: 700;
  line-height: 1.6
}
.main-header-background-action-description {
  opacity: .8;
  text-transform: none;
  line-height: 1.6;
  font-weight: 500;
  font-size: 10px!important
}
.banking-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 20px 24px;
  margin: 24px auto;
  max-width: 1100px;
  background: 0 0
}
.banking-methods img {
  width: 72px;
  height: 56px;
  object-fit: fill;
  flex-shrink: 0;
  opacity: .9;
  transition: opacity .2s,transform .2s;
  filter: grayscale(10%)
}
.banking-methods img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px)
}
@media (max-width:768px) {
  .banking-methods {
    gap: 14px 20px;
    padding: 16px
  }
  .banking-methods img {
    width: 56px;
    height: 44px
  }
}
.site-main-area-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 20px 60px
}
.main-region {
  font-size: 15px;
  line-height: 1.8;
  color: var(--soft-copy)
}
.main-region p {
  margin-bottom: 1rem
}
.main-region strong {
  color: var(--text-content)
}
.main-region a:not(.primary-cta-inner):not(.application-banner-cta-wrapper):not([class*="-button"]) {
  color: var(--theme-accent-primary);
  text-decoration: underline
}
.main-region a:not(.primary-cta-inner):not(.application-banner-cta-wrapper):not([class*="-button"]):hover {
  color: var(--ui-accent-color)
}
@media (max-width:768px) {
  .site-main-area-section {
    padding: 5rem 15px 30px
  }
  .main-region {
    font-size: 14px
  }
  .app-banner-shell-section,
  .site-main-area-section > .app-banner-shell-section {
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
    max-width: none
  }
  .main-application-banner-mobile img,
  .mobile-banner {
    border-radius: 0;
    width: 100%;
    max-width: 100%
  }
}
.region-service {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  padding: 30px 0;
  max-width: 1400px;
  margin: 0 auto
}
.site-block-help {
  background: color-mix(in srgb,var(--ui-secondary-alt,#0f3460) 50%,transparent);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-content);
  min-height: 138px;
  backdrop-filter: blur(2px)
}
.name-care {
  display: flex;
  align-items: flex-start;
  gap: 10px
}
.name-care img {
  width: 33px;
  height: 33px;
  flex-shrink: 0
}
.site-headline-help-copy {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.22;
  color: var(--text-content)
}
.care-description-row {
  color: var(--soft-copy);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0
}
@media (max-width:1024px) {
  .region-service {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 16px
  }
}
.app-banner-shell-section {
  margin: 32px auto;
  max-width: 800px
}
.mobile-banner {
  display: flex;
  align-items: stretch;
  background: var(--ui-card-box-fill,var(--alt-bg));
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  position: relative;
  border: 1px solid var(--duospin-border-line);
  box-shadow: 0 4px 18px rgba(0,0,0,.18)
}
.app-promo-banner-content-body {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px
}
.app-promo-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid var(--duospin-border-line);
  background: var(--alt-bg);
  align-self: flex-start
}
.application-banner-label-image-panel {
  border-radius: 6px;
  height: 28px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  background: 0 0
}
.site-app-promo-banner-text-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0
}
.mobile-banner-text-name {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-content);
  letter-spacing: .2px
}
.mobile-banner-tag-rate {
  display: flex;
  gap: 1px
}
.mobile-banner-tag-rate img {
  width: 12px;
  height: 12px
}
.mobile-banner-tag-rate .site-star-half-group {
  opacity: .85
}
.mobile-banner-text-verify {
  background: #069815;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 2px;
  text-transform: none;
  letter-spacing: .3px;
  align-self: center;
  white-space: nowrap
}
.application-banner-headline-group {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--text-content);
  font-family: var(--heading-font);
  margin: 0
}
.main-application-banner-description-row {
  color: var(--soft-copy);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  margin: 0
}
.main-app-banner-cta-wrapper {
  margin-top: 4px
}
.main-app-banner-cta-wrapper .primary-cta-inner {
  margin: 0;
  display: inline-block
}
.app-banner-image-holder {
  flex: 0 0 38%;
  align-self: stretch;
  overflow: hidden;
  position: relative;
  padding: 16px;
  box-sizing: border-box
}
.application-banner-image {
  position: absolute;
  inset: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 8px
}
.main-application-banner-mobile {
  display: none
}
.main-application-banner-mobile img {
  max-width: 100%;
  height: auto;
  max-height: 280px;
  display: block;
  border-radius: 12px
}
@media (max-width:768px) {
  .mobile-banner {
    flex-direction: column;
    min-height: unset
  }
  .app-banner-image-holder {
    display: none
  }
  .main-application-banner-mobile {
    display: flex;
    justify-content: center;
    padding: 16px 16px 0
  }
  .main-application-banner-mobile img {
    max-width: 320px
  }
  .app-promo-banner-content-body {
    padding: 20px 20px 24px;
    gap: 12px
  }
  .application-banner-headline-group {
    font-size: 20px
  }
  .main-app-banner-cta-wrapper .primary-cta-inner {
    width: 100%;
    text-align: center;
    justify-content: center
  }
}
.primary-cta-inner {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(180deg,var(--theme-accent-primary) 0,var(--dark-primary,#8d3300) 98.74%);
  color: var(--theme-text-btn,var(--text-content));
  padding: 12px 56px;
  margin: 30px auto;
  display: block;
  max-width: fit-content;
  border-radius: 15px;
  text-decoration: none
}
.primary-cta-inner:hover {
  background: linear-gradient(180deg,var(--theme-accent-primary) 0,var(--theme-accent-primary) 98.74%);
  color: var(--theme-text-btn,var(--text-content))
}
.main-updated-date-panel {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--alt-bg);
  margin: 30px auto;
  border-radius: 10px;
  border-left: 5px solid var(--theme-accent-primary);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  padding: 18px 30px;
  color: var(--text-content);
  max-width: 1240px
}
@media (max-width:768px) {
  .main-updated-date-panel {
    font-size: 16px;
    padding: 14px 20px;
    margin: 20px 15px
  }
}
.main-site-colophon.site-footer-grid {
  background: var(--page-footer-fill,var(--alt-bg,#060e2a));
  color: var(--theme-text-page-footer,#fff);
  font-family: Montserrat,system-ui,sans-serif;
  padding: 0;
  margin-top: 60px
}
.main-site-colophon.site-footer-grid .colophon-bottom-area,
.main-site-colophon.site-footer-grid .main-site-footer-upper-group {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 40px;
  box-sizing: border-box
}
.main-site-colophon.site-footer-grid .main-site-footer-upper-group {
  display: grid;
  grid-template-columns: minmax(220px,297px) minmax(120px,1fr) minmax(180px,1fr) minmax(220px,297px);
  gap: 24px;
  align-items: start;
  padding-top: 28px;
  padding-bottom: 28px
}
.main-site-colophon.site-footer-grid .site-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px
}
.main-site-colophon.site-footer-grid .main-page-footer-brand {
  width: 135px;
  height: 34px;
  object-fit: contain;
  object-position: left center
}
.main-site-colophon.site-footer-grid .site-footer-follow-caption {
  font-weight: 600;
  font-size: 14px;
  line-height: 26px
}
.main-site-colophon.site-footer-grid .site-footer-socials-panel {
  display: flex;
  gap: 4px
}
.main-site-colophon.site-footer-grid .footer-share-box {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: var(--theme-footer-socials-background,#444a5f);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .18s
}
.main-site-colophon.site-footer-grid .footer-share-box:hover {
  background: var(--ui-accent-color,#5a6178)
}
.main-site-colophon.site-footer-grid .footer-share-box img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1)
}
.main-site-colophon.site-footer-grid .site-footer-brand-mark-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  margin-top: 8px
}
.main-site-colophon.site-footer-grid .page-footer-navbar-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 7px
}
.main-site-colophon.site-footer-grid .page-footer-navbar-area a {
  color: var(--ui-link-page-footer,#9296a2);
  font-size: 12px;
  font-weight: 600;
  line-height: 22.29px;
  text-decoration: none
}
.main-site-colophon.site-footer-grid .page-footer-navbar-area a:hover {
  color: var(--theme-text-page-footer,#fff)
}
.main-site-colophon.site-footer-grid .page-footer-support {
  display: flex;
  flex-direction: column;
  gap: 12px
}
.main-site-colophon.site-footer-grid .page-footer-support .page-footer-assist-title {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  line-height: 1.2
}
.main-site-colophon.site-footer-grid .page-footer-support p {
  color: var(--theme-text-page-footer,#b1b4bc);
  font-size: 14px;
  line-height: 26px;
  margin: 0;
  font-weight: 600
}
.main-site-colophon.site-footer-grid .site-footer-contact-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-text-page-footer,#fff);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none
}
.main-site-colophon.site-footer-grid .site-footer-contact-box img {
  width: 18px;
  height: 15px;
  filter: brightness(0) invert(1);
  opacity: .85
}
.main-site-colophon.site-footer-grid .site-footer-banking-band-block {
  background: var(--footer-methods-bg,#0f0f0f);
  padding: 14px 40px
}
.main-site-colophon.site-footer-grid .site-footer-banking {
  max-width: 1225px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}
.main-site-colophon.site-footer-grid .site-footer-banking img {
  width: 100px;
  height: 50px;
  object-fit: fill;
  flex-shrink: 0
}
.main-site-colophon.site-footer-grid .colophon-bottom-area {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  padding-top: 24px;
  padding-bottom: 24px
}
.main-site-colophon.site-footer-grid .site-footer-bottom-area-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start
}
.main-site-colophon.site-footer-grid .site-footer-license {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-legal-page-footer,#869dee);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer
}
.main-site-colophon.site-footer-grid .site-footer-license .page-footer-indicator {
  width: 10px;
  height: 10px;
  flex-shrink: 0
}
.main-site-colophon.site-footer-grid .site-footer-license-row {
  display: inline-flex;
  align-items: center;
  gap: 12px
}
.main-site-colophon.site-footer-grid .main-page-footer-certification-chip {
  height: 46px;
  width: auto;
  object-fit: contain
}
.main-site-colophon.site-footer-grid .site-footer-lang-select-holder {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--theme-footer-socials-background,#444a5f);
  border: none;
  border-radius: 22px;
  padding: 8px 12px 8px 16px;
  color: var(--theme-text-page-footer,#fff);
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  text-transform: capitalize;
  cursor: pointer;
  min-width: 88px;
  justify-content: space-between
}
.main-site-colophon.site-footer-grid .site-footer-lang-select-holder img {
  width: 12px;
  height: 12px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1)
}
.main-site-colophon.site-footer-grid .main-colophon-notice {
  color: var(--theme-text-page-footer,#a2a5af);
  font-size: 12px;
  font-weight: 400;
  line-height: 22.29px;
  margin: 0;
  text-align: right;
  align-self: end
}
@media (max-width:960px) {
  .main-site-colophon.site-footer-grid .main-site-footer-upper-group {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
  .main-site-colophon.site-footer-grid .site-footer-banking {
    gap: 24px
  }
  .main-site-colophon.site-footer-grid .colophon-bottom-area {
    grid-template-columns: 1fr
  }
  .main-site-colophon.site-footer-grid .main-colophon-notice {
    text-align: left
  }
}
@media (max-width:600px) {
  .main-site-colophon.site-footer-grid .main-site-footer-upper-group {
    grid-template-columns: 1fr;
    padding: 24px 20px
  }
  .main-site-colophon.site-footer-grid .main-page-footer-brand {
    object-position: center
  }
  .main-site-colophon.site-footer-grid .site-footer-banking-band-block {
    padding: 12px 20px
  }
  .main-site-colophon.site-footer-grid .site-footer-banking {
    justify-content: center;
    gap: 16px
  }
  .main-site-colophon.site-footer-grid .site-footer-banking img {
    width: 70px;
    height: 35px
  }
  .main-site-colophon.site-footer-grid .colophon-bottom-area {
    padding: 20px;
    gap: 18px
  }
  .main-site-colophon.site-footer-grid .main-site-footer-upper-group,
  .main-site-colophon.site-footer-grid .page-footer-support,
  .main-site-colophon.site-footer-grid .site-footer-bottom-area-left,
  .main-site-colophon.site-footer-grid .site-footer-brand {
    text-align: center;
    align-items: center;
    justify-content: center
  }
  .main-site-colophon.site-footer-grid .site-footer-banking,
  .main-site-colophon.site-footer-grid .site-footer-socials-panel {
    justify-content: center;
    flex-wrap: wrap
  }
  .main-site-colophon.site-footer-grid .page-footer-navbar-area {
    align-items: center
  }
  .main-site-colophon.site-footer-grid .site-footer-contact-box {
    justify-content: center
  }
  .main-site-colophon.site-footer-grid .main-colophon-notice {
    text-align: center
  }
}
.main-site-colophon .page-footer-navbar-area:not(:has(a)) {
  display: none
}
.main-site-colophon .colophon-navigation-accent-primary,
.main-site-colophon .page-footer-menu-legal {
  text-align: left
}
.main-site-colophon.site-footer-grid .page-footer-navbar-area:not(:has(a)) {
  display: none
}
@media (min-width:961px) {
  .main-site-colophon.site-footer-grid .main-site-footer-upper-group:has(.colophon-navigation-accent-primary a):not(:has(.page-footer-menu-legal a)),
  .main-site-colophon.site-footer-grid .main-site-footer-upper-group:not(:has(.colophon-navigation-accent-primary a)):has(.page-footer-menu-legal a) {
    grid-template-columns: minmax(220px,297px) minmax(120px,1fr) minmax(220px,297px)
  }
  .main-site-colophon.site-footer-grid .main-site-footer-upper-group:not(:has(.page-footer-navbar-area a)) {
    grid-template-columns: 1fr auto
  }
}
.site-layout-panel {
  position: relative;
  display: block;
  min-height: calc(100vh - 64px)
}
.site-inner {
  flex: 1;
  min-width: 0;
  padding-top: 0
}
.site-inner .site-main-area-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px
}
.main-faq-section-block,
.mobile-banner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto
}
.main-site-colophon[class] {
  padding-left: var(--width-sidebar,0)
}
.main-site-colophon[class] .colophon-bottom-area,
.main-site-colophon[class] .main-site-footer-upper-group {
  padding-left: 20px;
  padding-right: 20px
}
@media (max-width:921px) {
  #secondary {
    display: none
  }
  .main-site-colophon[class] {
    padding-left: 0
  }
}
.call-to-action-center {
  text-align: center;
  margin: 30px 0;
  clear: both
}
.call-to-action-center .primary-cta-inner,
.call-to-action-center a.primary-cta-inner {
  display: inline-block
}
.primary-cta-inner.application-banner-cta-wrapper {
  padding: 8px 32px;
  font-size: 14px;
  border-radius: 24px;
  margin: 0
}
.main-faq-section-block h2 {
  font-family: var(--heading-font);
  color: var(--text-content);
  margin: 2.5rem 0 1rem;
  padding: 0;
  line-height: 1.3;
  clear: both
}
.main-region li {
  padding: .3rem 0;
  line-height: 1.7
}
.main-region table {
  font-size: .92rem
}
.main-region table th {
  background: var(--theme-accent-primary);
  color: var(--theme-text-btn,#fff);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600
}
.main-region table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08)
}
.main-region table tr:nth-child(2n) td {
  background: rgba(255,255,255,.03)
}
.site-layout-panel > .widget-region-area.secondary-alt-grid {
  position: fixed;
  left: 0;
  top: 64px;
  bottom: 0;
  width: var(--width-sidebar,64px);
  overflow-y: auto;
  z-index: 10
}
.site-layout-panel > .site-inner {
  margin-left: var(--width-sidebar,64px);
  min-width: 0;
  overflow-x: clip
}
@media (min-width:993px) {
  .site-inner .site-main-area-section {
    padding-left: 20px
  }
  .site-layout-panel > .widget-region-area.secondary-alt-grid {
    max-width: var(--width-sidebar,80px)
  }
}
@media (max-width:992px) {
  .site-layout-panel > .widget-region-area.secondary-alt-grid {
    display: none
  }
  .site-layout-panel > .site-inner {
    margin-left: 0
  }
}
.page-header-background {
  position: relative;
  z-index: 1
}
.main-site-header-surface-inner-wrap {
  position: relative;
  z-index: 2
}
.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  clear: both
}
@media (max-width:768px) {
  .call-to-action-center {
    display: block;
    margin: 30px auto
  }
  .legal-main-wrap .table-scroll > table,
  .main-region .table-scroll > table {
    width: auto;
    min-width: 100%
  }
}
.sidebar-full-symbol img {
  width: 64px;
  height: 64px;
  object-fit: contain
}
.sidebar-full-item img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.side-column-full .side-panel-primary {
  padding-top: 20px!important
}
.toggle-holder-block img {
  width: 14px;
  height: 14px;
  object-fit: contain
}
.main-header-search img {
  width: 18px;
  height: 18px;
  object-fit: contain
}
.menu-btn-button-panel img {
  width: 24px;
  height: 24px;
  object-fit: contain
}
.legal-headline-box {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: .3rem;
  color: var(--text-content);
  line-height: 1.15;
  letter-spacing: -.02em
}
.legal-main-wrap {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--soft-copy);
  max-width: 860px
}
.legal-main-wrap p {
  margin-bottom: 1.1rem
}
.legal-main-wrap strong {
  color: var(--text-content)
}
.legal-main-wrap a {
  color: var(--theme-accent-primary);
  text-decoration: underline;
  text-underline-offset: 2px
}
.legal-main-wrap a:hover {
  color: var(--main-hover,var(--ui-accent-color))
}
.legal-main-wrap article em {
  color: var(--soft-copy);
  font-style: italic
}
img {
  max-width: 100%;
  height: auto
}
.inner-img-block {
  max-width: 30%;
  height: auto;
  object-fit: cover
}
.content-img-left-side-container {
  float: left;
  margin: .75rem 1.8rem 1rem 0
}
.inner-img-end {
  float: right;
  margin: .75rem 0 1rem 1.8rem
}
.main-region h2,
.main-region h3,
.main-region table {
  clear: both
}
.main-content-clear {
  clear: both;
  display: block;
  height: 0
}
@media (max-width:768px) {
  .legal-headline-box {
    font-size: 1.6rem
  }
  .legal-main-wrap h1 {
    font-size: 1.5rem
  }
  .legal-main-wrap h2 {
    font-size: 1.2rem
  }
  .content-img-left-side-container,
  .inner-img-block,
  .inner-img-end {
    float: none!important;
    display: block;
    max-width: 100%!important;
    width: 100%!important;
    margin: 1rem auto
  }
}
.legal-main-wrap h1,
.legal-main-wrap h2,
.legal-main-wrap h3,
.main-region h1,
.main-region h2,
.main-region h3 {
  font-family: var(--heading-font);
  color: var(--text-content);
  border-bottom: 2px solid color-mix(in srgb,var(--theme-accent-primary) 30%,transparent);
  padding-bottom: .3em
}
.legal-main-wrap h1,
.main-region h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 2.5rem;
  margin-bottom: .75rem
}
.legal-main-wrap h2,
.main-region h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: .6rem
}
.legal-main-wrap h3,
.main-region h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: .5rem
}
.legal-main-wrap ul,
.main-region ul {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0
}
.legal-main-wrap ul li,
.main-region ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .6rem
}
.legal-main-wrap ul li::before,
.main-region ul li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--ui-accent-color)
}
.legal-main-wrap ol,
.main-region ol {
  list-style: none;
  padding-left: 0;
  margin: .75rem 0;
  counter-reset: ol-counter
}
.legal-main-wrap ol li,
.main-region ol li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: .6rem;
  counter-increment: ol-counter
}
.legal-main-wrap ol li::before,
.main-region ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--theme-accent-primary);
  font-weight: 600
}
.legal-main-wrap table,
.main-region table {
  display: table;
  width: 100%;
  max-width: 100%;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--ui-card-box-fill,rgba(255,255,255,.03));
  border: 1px solid var(--duospin-border-line,rgba(255,255,255,.08));
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,.18);
  margin: 1.5rem 0;
  color: var(--soft-copy,#c9ccd6);
  font-family: var(--content-typeface, 'Montserrat', system-ui, sans-serif)
}
.legal-main-wrap table thead tr:first-child th:first-child,
.main-region table thead tr:first-child th:first-child {
  border-top-left-radius: 10px
}
.legal-main-wrap table thead tr:first-child th:last-child,
.main-region table thead tr:first-child th:last-child {
  border-top-right-radius: 10px
}
.legal-main-wrap table tbody tr:last-child td:first-child,
.main-region table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px
}
.legal-main-wrap table tbody tr:last-child td:last-child,
.main-region table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px
}
.legal-main-wrap table thead tr,
.main-region table thead tr {
  background: var(--alt-bg,rgba(255,255,255,.06))
}
.legal-main-wrap table thead th,
.main-region table thead th {
  font-weight: 700;
  color: var(--text-content,#fff);
  text-align: left;
  padding: 14px 20px;
  border-right: 1px solid var(--duospin-border-line,rgba(255,255,255,.12));
  font-size: .875rem;
  background: 0 0;
  letter-spacing: .2px
}
.legal-main-wrap table thead th:last-child,
.main-region table thead th:last-child {
  border-right: none
}
.legal-main-wrap table tbody tr:nth-child(odd),
.main-region table tbody tr:nth-child(odd) {
  background: 0 0
}
.legal-main-wrap table tbody tr:nth-child(2n),
.main-region table tbody tr:nth-child(2n) {
  background: var(--alt-bg,rgba(255,255,255,.03))
}
.legal-main-wrap table tbody td,
.main-region table tbody td {
  padding: 14px 20px;
  border-right: 1px solid var(--duospin-border-line,rgba(255,255,255,.06));
  border-bottom: 1px solid var(--duospin-border-line,rgba(255,255,255,.06));
  color: var(--soft-copy,#c9ccd6);
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.6
}
.legal-main-wrap table tbody td:last-child,
.main-region table tbody td:last-child {
  border-right: none
}
.legal-main-wrap table tbody tr:last-child td,
.main-region table tbody tr:last-child td {
  border-bottom: none
}
.site-faqs-numbered {
  margin: 30px auto;
  counter-reset: faq-num
}
.site-faqs-numbered h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-content)
}
.site-faqs-numbered .faqs-unit {
  counter-increment: faq-num;
  position: relative;
  padding: 20px 0 20px 64px;
  border-bottom: 1px solid var(--duospin-border-line)
}
.site-faqs-numbered .faqs-unit:first-child {
  border-top: 1px solid var(--duospin-border-line)
}
.site-faqs-numbered .faqs-unit:last-child {
  border-bottom: none
}
.site-faqs-numbered .faqs-unit::before {
  content: counter(faq-num,decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 20px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--theme-accent-primary);
  line-height: 1;
  font-family: var(--heading-font)
}
.site-faqs-numbered .faq-question-item-row {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-content);
  margin: 0 0 8px;
  line-height: 1.4
}
.site-faqs-numbered .faqs-reply p {
  font-size: 14px;
  color: var(--soft-copy);
  line-height: 1.7;
  margin: 0
}
@media (max-width:600px) {
  .legal-main-wrap table tbody td,
  .legal-main-wrap table thead th,
  .main-region table tbody td,
  .main-region table thead th {
    padding: 10px 12px;
    font-size: .8rem
  }
  .site-faqs-numbered .faqs-unit {
    padding-left: 48px
  }
  .site-faqs-numbered .faqs-unit::before {
    font-size: 1.2rem
  }
}
.main-region h2 {
  border: none;
  border-bottom: none
}
.legal-main-wrap ol li,
.legal-main-wrap ul li,
.main-region ol li,
.main-region ul li {
  border-bottom: none
}
.main-region {
  max-width: 1200px;
  margin: 0 auto
}
[data-slot=content-image-1]:not(a):not(button) {
  max-width: 40%!important
}
[data-slot=app-content-image-1]:not(a):not(button) {
  max-width: 35%!important
}
[data-slot=app-content-image-2]:not(a):not(button) {
  max-width: 20%!important
}
[data-slot=espana-content-image-1]:not(a):not(button) {
  max-width: 45%!important
}
@media (max-width:768px) {
  [data-slot=app-content-image-1]:not(a):not(button),
  [data-slot=app-content-image-2]:not(a):not(button),
  [data-slot=content-image-1]:not(a):not(button),
  [data-slot=espana-content-image-1]:not(a):not(button) {
    max-width: 100%!important
  }
}
.mobile-banner {
  background-color: #381043!important;
  background-blend-mode: multiply!important
}
.site-block-help {
  background-color: #381043!important;
  background-blend-mode: normal!important
}
.page-header-bg-name-wrapper {
  color: #fff!important
}
.header-surface-deposit-holder,
.topbar-bg-offer {
  color: #fee73e!important
}
.main-page-header-surface-button {
  background: #9d1510!important
}