:root {
  --heading2-larger-fs: 4.2rem;
  --totalRate-fs: 1.6rem;
  --calculator-fs: 1.1rem;
}

@media (max-width: 1024px) {
  :root {
    --heading2-larger-fs: 3.6rem;
  }
}

@media (max-width: 768px) {
  :root {
    --heading2-larger-fs: 3.4rem;
    --totalRate-fs: 1.4rem;
    --calculator-fs: 1rem;
  }
}

@media (max-width: 480px) {
  :root {
    --heading2-larger-fs: 3.2rem;
    --totalRate-fs: 1.3rem;
  }
}

body {
  overflow-x: hidden !important;
}

* {
  box-sizing: border-box;
}

.navSection.primary .rootLink {
  color: var(--DarkBlue50) !important;
}

.paper-logo::before {
  background-image: url(../img/paperlogofinal.svg);
  width: 160px;
  top: 6px;
}

.rootLink .menu-arrow {
  content: url("../img/down-arrow-dark.svg") !important;
}

.globalNav .navSection.mobile .rootLink {
  color: #47525d !important;
}

.paperxb-background {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background: linear-gradient(180deg, #fff 0%, #9cc8e7 100%);
}

.globe {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%);
  bottom: 33%;
  width: 100vw;
}

.landing.pxb {
  background: transparent !important;
}

.landing.pxb .landing-container::before {
  content: none;
}

.landing.pxb .landing-container {
  flex-direction: column;
  color: #133f5d;
  padding-top: 12rem;
  padding-bottom: 22rem;
}

.landing.pxb,
.landing.pxb h1 {
  text-align: center;
}

.landing-container .landing-text {
  max-width: 650px;
}

.landing-text .notes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding-top: 1.5rem;
}

.landing-text .notes p {
  font-size: var(--footer-fs);
  padding-bottom: 0;
}

.landing-text .notes .bi-logo {
  width: 82px;
  height: 15px;
}

.coin {
  position: absolute;
  width: 250px;
  transform: translate(-50%, -50%);
  left: 10%;
  top: 0;
}

.benefit.pxb .benefit-wrapper {
  background: #fff;
  color: #133f5d;
  border-radius: 16px;
  padding: 2rem 2rem 2.5rem;
  position: relative;

  max-width: 1120px;
  margin: auto;
  top: 10rem;

  z-index: 2;
}

.benefit.pxb h2 {
  max-width: 500px;
  margin: auto;
  padding-bottom: 0;
}

.benefit .benefit-content {
  padding-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
}

.benefit .benefit-card {
  width: 250px;
  height: 320px;
  background: #fff;
  border: 1.5px solid var(--Blue20, #cae2f2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
}

.benefit-card .animation-container {
  height: 42px;
  width: 42px;
}

.benefit-card .animation-container#icon-coin svg,
.benefit-card .animation-container#icon-card svg {
  width: 34px !important;
  height: 34px !important;
}

.benefit-card .animation-container#icon-shield svg {
  width: 40px !important;
  height: 40px !important;
}

.benefit .benefit-card h3 {
  font-size: var(--subheading-fs);
  padding-top: 1rem;
}

.benefit .benefit-card p {
  font-size: var(--small-text-fs);
  padding-bottom: 0;
}

.benefit .benefit-card:last-child p {
  padding-bottom: 0.8rem;
}

.calculator.pxb .calculator-wrapper {
  background: #fff;
  color: #133f5d;
  border-radius: 16px;
  padding: 2rem 2rem 2.5rem;
  position: relative;

  max-width: 1120px;
  margin: 3rem auto 0;
  top: 10rem;
  box-shadow: 2px 15px 30px rgba(19, 63, 93, 0.1);
}

.calculator.pxb h2 {
  font-size: var(--heading2-larger-fs);
  text-align: left;
  padding-bottom: 0.5rem;
  line-height: 1.2;
}

.calculator.pxb .flex-container {
  justify-content: space-between;
  align-items: flex-start;
}

.calculator-copy .text-bolder {
  font-weight: 900;
}

.calculator-content {
  width: 50%;
  max-width: 480px;
  border: 1px solid #f5f5f5;
  padding: 10px 20px;
  border-radius: 8px;
}

.calculator-content,
.calculator-content .form-control {
  font-size: var(--calculator-fs);
}

.calculator-content .form-control {
  height: 50px;
  border-radius: 5px;
  border: 0.8px solid var(--DarkGrey30, #9aa6b0);
  background: #fff;
  color: var(--DarkBlue50);
}

.calculator-content .custom-dropdown {
  position: relative;
}

.calculator-content .dropdown-selected {
  padding: 10px;
  border-radius: 5px;
  border: 0.8px solid #9aa6b0;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-dropdown .arrow img {
  width: 12px;
  height: 10px;
  margin-right: 5px;
  transition: transform 0.3s ease;
}

.custom-dropdown.active .arrow img {
  transform: rotate(180deg);
}

.calculator-content .dropdown-options {
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #9cc8e7 #f0f0f0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 1000;
}

.calculator-content .dropdown-options li {
  padding: 8px;
  cursor: pointer;
}

.calculator-content .dropdown-options li:hover {
  background-color: #f1f1f1;
}

.calculator-content .custom-dropdown.active .dropdown-options {
  display: block;
}

.calculator-content .flag-icon {
  width: 28px;
}

.calculator-content .dropdown-selected div span,
.calculator-content .dropdown-options li span {
  margin-left: 8px;
}

.calculator-content .notes {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calculator-content .notes p {
  padding: 0;
  color: #6b7d8c;
  font-size: var(--small-text-fs);
}

.calculator-content .notes p.notes-info {
  font-size: var(--footer-fs);
  color: var(--DarkBlue50);
}

#totalAmount {
  color: var(--DarkBlue40);
  padding-top: 3px;
}

#totalAmount div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 7px;
  line-height: 1.2;
}

#totalAmount .amountResult {
  font-weight: bold;
}

#totalAmount .exchangeRate.total {
  color: var(--DarkBlue50);
  font-weight: bold;
  font-size: var(--totalRate-fs);
}

#totalAmount .strike-through {
  margin-right: 5px;
  margin-top: 0;
  text-decoration-line: line-through;
  font-weight: normal;
}

.promo-card {
  display: flex;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 7px;
  background: var(--Blue20);
  margin: 1.5rem 0 2rem;
  font-weight: bold;
}

.promo-card img {
  width: 32px;
}

.promo-card-content .more-info {
  padding-top: 0;
  font-size: var(--calculator-fs);
}

.promo-card-content p {
  line-height: 1.2;
  font-size: var(--calculator-fs);
}

.calculator.pxb .cta .paper-button {
  width: 100%;
  padding: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.calculator.pxb .cta {
  padding: 1.5rem 0 1rem;
}

.comparison {
  color: #133f5d;
}

.comparison .paper-container {
  padding-top: 16rem;
}

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

.comparison-content {
  display: flex;
  justify-content: center;
}

.comparison-card.first {
  width: 230px;
  border-radius: 16px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background: #4195d5;
  color: #fff;
  min-height: 240px;
  margin: auto;
  margin-top: 6rem;
  padding-left: 2rem;
  box-shadow: 0px 0px 45px 22px #133f5d1a;
}

.comparison-card-content-title {
  font-size: var(--small-text-fs);
  font-weight: bold;
  border-bottom: 1px solid #fff;
  padding-left: 1rem;
  height: 62px;
  display: flex;
  align-items: center;
}

.comparison-card-content-title:first-child,
.comparison-card-content-list:nth-child(2) {
  height: 72px;
}

.comparison-card-content-title:last-child {
  border-bottom: none;
}

.ccc-title-mobile {
  display: none;
}

.comparison-card:not(.first) {
  width: 450px;
  min-height: 450px;
  border-radius: 16px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
}

.comparison-card .comparison-card-content {
  border-radius: 20px;
  margin-top: 1.2rem;
  height: 98%;
  padding: 1.5rem 0 2.5rem;
  text-align: center;
}

.comparison-card.second {
  background: #859cab;
}

.comparison-card.second .comparison-card-content {
  background: #f8f9fa;
  box-shadow: 0px 0px 45px 22px #133f5d1a;
}

.comparison-card.third {
  background: linear-gradient(
    91deg,
    #4195d5 -21.11%,
    #224e6f 38.21%,
    #93c854 91.01%
  );
  background-size: 200% 200%;
  animation: auroraAnimation 4s infinite alternate ease-in-out;
  font-weight: bold;
}

.comparison-card.third {
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

.comparison-card.third.active {
  transform: scale(1.05);
}

.comparison-card.third .comparison-card-content {
  border: 1.5px solid #4195d5;
  background: #fff;
  position: relative;
  box-shadow: none;
  transition: box-shadow 0.1s ease-in-out;
}

.comparison-card.third .comparison-card-content.active {
  box-shadow: 0px 5px 40px 8px rgb(19 77 98 / 70%);
}

.comparison-card-content-list {
  font-size: var(--table-header-fs);
  height: 62px;
  border-bottom: 1px solid #eceff1;
  margin-right: 1.5rem;

  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-card-content-list:first-child {
  height: 46px;
  border-bottom: 1px solid #133f5d;
  margin-inline: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.comparison-card-content-list:last-child {
  border-bottom: none;
  padding-top: 1rem;
}

.comparison-card-content-list:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comparison-card-content-list .notes {
  font-size: var(--footer-fs);
  font-weight: normal;
  display: block;
}

.comparison-card.third .comparison-card-content-list {
  margin-inline: 1rem;
}

.step {
  background: #f7fbfd;
  color: #133f5d;
}

.step .flex-container {
    gap: 2rem;
}

.step .header h2 {
  text-align: left;
  padding-bottom: 2rem;
}

.step .step-lists {
  position: relative;
  padding-left: 2.5rem;
}

.progress-bar {
  width: 1px;
  height: 100%;
  background: #6fafdc;
  position: absolute;
  left: -6px;
  top: 0;
  border-radius: 4px;
}

.progress-active {
  width: 7px;
  height: 3rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #4195d5 0%, #93c854 100%);
  border-radius: 4px;
  transition: height 0.4s ease-in-out;
}

.progress-container {
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 4px;
}

.step .step-list {
  font-size: var(--table-header-fs);
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  counter-increment: step-counter;
  cursor: pointer;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.step-list::before {
  content: counter(step-counter) ". ";
  margin-right: 10px;
}

.step-text {
  flex: 1;
  max-width: 400px;
}

.step .step-illustration {
  width: 50%;
}

.step-list.active {
  opacity: 1;
  font-weight: bold;
}

.step-list-img {
  display: none;
  border-radius: 15px;
  background: linear-gradient(144deg, #4195d5 10.96%, #224e6f 89.04%);
  width: 550px;
  height: 480px;
  justify-content: center;
  align-self: center;
  position: relative;
}

.step-list-img div {
  width: 100%;
  position: relative;
  max-width: none;
  transition: max-width 0.5s ease, left 0.5s ease;
}

.step-list-img.active {
  display: flex;
}

.step-list-img[data-step="1"] div {
  max-width: 450px;
}

.step-list-img[data-step="2"] div {
  max-width: 500px;
  left: 2rem;
}

.step-list-img[data-step="3"] div {
  max-width: 440px;
}

.step-list-img[data-step="4"] div {
  max-width: 440px;
}

.step-list-img[data-step="5"] div {
  max-width: 440px;
}

.step-list-img[data-step="6"] div {
  max-width: 440px;
  left: 0.5rem;
}

.step-list-img[data-step="7"] div {
  max-width: 440px;
  left: 1rem;
}

.mobile-step-list-img {
  display: none;
}

.step-list-img .paper-aurora.blue {
  position: absolute;
  width: 300px;
  top: -1rem;
  left: -1rem;
}

.step-list-img .paper-aurora.green {
  position: absolute;
  width: 300px;
  bottom: 0;
  right: 0;
}

.faq {
  color: #133f5d;
}

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

.faq .faq-illustration {
  width: 40%;
}

.faq .faq-illustration h2 {
  text-align: left;
  padding-bottom: 0;
}

/* .faq .faq-img #faq-animate {
    position: absolute;
    top: -3.5rem;
    left: -4rem;
} */

.faq .faq-img {
  position: relative;
}

.faq .kurs-container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.kurs {
  position: absolute;
  max-width: 150px;
  opacity: 0;
  transform: scale(0);
  transition: transform 0.3s ease-out, opacity 0.3s;
}

.kurs.sgd {
  max-width: 110px;
  top: 5rem;
  left: -2rem;
}

.kurs.thb {
  top: 7rem;
  right: 1.5rem;
}

.kurs.usd {
  bottom: 2.5rem;
  left: -2rem;
}

.faq .faq-img .faq-lady {
  width: 100%;
  max-width: 350px;
}

.faq-content {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  min-height: 550px;
  padding-top: 7rem;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: -1px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: var(--table-title-fs);
  padding: 1rem 0;
  transition: transform 0.2s ease-out;
}

.faq-question:hover {
  transform: translateY(-2px);
}

.faq-question h3 {
  font-weight: bold;
  font-size: var(--table-title-fs);
  padding: 0;
  margin: 0;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  cursor: pointer;
  pointer-events: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease-out, padding 0.8s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 320px;
  padding-bottom: 1rem;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 1.5rem;
  max-width: 680px;
}

.faq-answer p.pb-0 {
  padding-bottom: 0.5rem !important;
}

.faq-answer ul {
  font-size: var(--paragraph-fs);
  padding-inline-start: 2rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.more-info {
  padding-top: 1.5rem;
  font-size: var(--paragraph-fs);
  font-weight: bold;
}

.more-info a {
  position: relative;
  text-decoration: none;
}

.more-info a::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  border-bottom: 1px solid;
}

.footer-row.new-footer #homepage-footer {
  border-top: 1px solid #ffffff8f !important;
}

.footer .paper-container {
  padding: 3rem 1rem;
}

.footer .flex-container {
  justify-content: center;
  gap: 3rem;
}

.footer-content {
  color: #fff;
  width: 50%;
  max-width: 450px;
}

.footer-content h2 {
  text-align: left;
}

.footer-illustration img {
  width: 100%;
  max-width: 450px;
}

/* Hero Animation */

#scene-container {
  width: 100%;
  height: 700px;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -38%);
}

.flag-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 300px;
  z-index: 2;
  margin: 0 auto;
  bottom: -58px;
}

.paper-globe .flags {
  width: 100%;
  max-width: 120px;
  position: absolute;
  transform: scale(0);
  transition: transform 0.3s ease-out, opacity 0.2s;
}

.flags.us {
  max-width: 145px;
  left: -12%;
  top: 0;
}

.flags.thai {
  bottom: 8%;
  left: 58%;
  max-width: 112px;
}

.flags.chn {
  bottom: 8%;
  left: -30%;
  max-width: 138px;
}

.flags.sg {
  top: 6%;
  right: -7%;
  max-width: 116px;
}

.flags.mly {
  bottom: 3%;
  right: -27%;
  max-width: 120px;
}

.flags.hk {
  max-width: 145px;
  left: 30%;
  top: -18%;
}

.flags.eu {
  bottom: 16%;
  left: 20%;
  max-width: 82px;
}

.paper-globe {
  height: 549px;
  position: relative;
  /* margin-top: -20em;
    margin-bottom: -19em; */
  width: 1000px;
  margin: -22em auto -19em;
}

.cloud.left {
  left: 10%;
  z-index: 0;
  top: 10%;
  animation: floatCloud 4s ease-in-out infinite alternate;
}

.cloud.right {
  right: -50%;
  z-index: 1;
  animation: floatCloud 8s ease-in-out infinite alternate;
}

.cloud {
  position: absolute;
  bottom: 5%;
}

/* Animasi naik-turun */
@keyframes floatCloud {
  0% {
    transform: translateX(-50%) translateY(0px);
  }

  100% {
    transform: translateX(-50%) translateY(20px);
  }
}

.coin-img.yuan {
  top: -10em;
  z-index: 2;
  right: -7em;
  max-width: 140px;
  transition: transform 2s ease-out;
}

.coin-img.usd {
  max-width: 230px;
  bottom: 10em;
  z-index: 3;
  left: -5em;
  transition: transform 3s ease-out;
}

.coin-img.sgd {
  max-width: 100px;
  left: -6em;
  top: -10em;
  transition: transform 2s ease-out;
}

.coin-img {
  width: 100%;
  position: absolute;
}

.asterisk-notes {
  color: var(--DarkBlue40);
  font-size: 11px;
  font-weight: 400;
  /* margin-top: 0.75rem; */
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

@keyframes auroraAnimation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.video {
  color: #133f5d;
  text-align: center;
}

.video-content {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 800 / 450; /* Modern browser approach */
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
}

.video-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

@media (max-width: 1440px) {
  .benefit.pxb .benefit-wrapper {
    top: 4rem;
  }

  .comparison .paper-container {
    padding-top: 14rem;
  }

  .cloud.right {
    bottom: 15%;
    right: -75%;
  }

  .coin-img.usd {
    bottom: 16em;
  }

  .calculator.pxb .calculator-wrapper {
    margin: -2rem auto 0;
  }
}

@media (max-width: 1280px) {
  .paperxb-background {
    /* max-height: 100rem; */
    min-height: 150rem;
  }

  .globe {
    bottom: 43%;
  }

  .benefit .benefit-content {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .benefit .benefit-card {
    /* min-width: 350px; */
    height: auto;
    flex: 1;
  }

  .step .step-illustration {
    display: flex;
    justify-content: center;
  }

  .step-list-img {
    width: 450px;
    height: 380px;
  }

  .step-list-img[data-step="1"] div {
    max-width: 320px;
  }

  .step-list-img[data-step="2"] div {
    max-width: 350px;
    left: 1rem;
  }

  .step-list-img[data-step="3"] div {
    max-width: 320px;
  }

  .step-list-img[data-step="4"] div {
    max-width: 320px;
  }

  .step-list-img[data-step="5"] div {
    max-width: 320px;
  }

  .step-list-img[data-step="6"] div {
    max-width: 320px;
  }

  .step-list-img[data-step="7"] div {
    max-width: 320px;
    left: 0.5rem;
  }

  .faq .faq-img .faq-lady {
    max-width: 300px;
    position: relative;
    left: 1rem;
  }

  .kurs {
    max-width: 120px;
  }

  .kurs.sgd {
    max-width: 100px;
    left: 0;
  }
  
  .kurs.usd {
    bottom: 2.5rem;
    left: 0;
  }
}

@media (max-width: 1024px) {
  .coin-img.sgd {
    left: 2em;
    top: -22em;
  }

  .coin-img.yuan {
    top: -20em;
    right: 1em;
    max-width: 125px;
  }

  .coin-img.usd {
    bottom: 18em;
    left: -1em;
  }

  .flags.thai {
    bottom: 10%;
  }

  .flags.mly {
    bottom: 5%;
  }

  .benefit.pxb,
  .calculator.pxb {
    padding: 0 2rem;
  }

  .benefit.pxb .benefit-wrapper {
    top: 2rem;
  }

  .calculator.pxb .flex-container {
    gap: 2rem;
  }

  .comparison .paper-container {
    padding-top: 16rem;
  }

  .comparison-content {
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
  }

  .comparison-card.first {
    display: none;
  }

  .comparison-card-content-list {
    flex-direction: column;
  }

  .ccc-title-mobile {
    display: block;
    font-size: var(--small-text-fs);
    font-weight: normal;
    opacity: 0.6;
  }

  .comparison-card-content-title:first-child,
  .comparison-card-content-list:nth-child(2) {
    height: 90px;
  }

  .comparison-card-content-list:last-child {
    padding-top: 0;
    height: 90px;
  }

  .step-list-img {
    margin-top: 14rem;
  }

  .step-list-img {
    width: 400px;
    height: 330px;
  }

  .faq .faq-img img {
    margin-left: -1rem;
  }

  .faq-content {
    min-height: auto;
  }

  .faq .faq-img .faq-lady {
    position: inherit;
    padding-right: 1rem;
  }

  .kurs, .kurs.sgd {
    max-width: 80px;
  }

  .kurs.thb {
    right: 1rem;
  }
}

@media (max-width: 960px) {
  .paper-globe {
    width: 100%;
    max-width: 800px;
  }

  .coin-img.sgd {
    left: -2em;
  }

  .coin-img.yuan {
    max-width: 115px;
    right: -4em;
  }

  .coin-img.usd {
    left: -6em;
  }

  .calculator.pxb .flex-container {
    flex-direction: column;
    gap: 2rem;
  }

  .calculator-content {
    width: 100%;
    max-width: none;
  }

  .calculator-copy {
    width: 100%;
    text-align: center;
  }

  .calculator.pxb h2 {
    text-align: center;
  }

  /* .calculator.pxb h2 br:first-child {
        display: none;
    } */
}

@media (max-width: 860px) {
  .benefit .benefit-card {
    min-width: 250px;
  }

  .benefit .benefit-card br {
    display: none;
  }
}

@media (max-width: 768px) {
  .landing.pxb .landing-container {
    padding-top: 14rem;
  }

  .landing-container .landing-text {
    max-width: 550px;
  }

  #scene-container {
    height: 500px;
    top: 35%;
  }

  .flags.us {
    max-width: 115px;
    left: 0;
    top: -3%;
  }

  .flags.sg {
    right: 6%;
    max-width: 105px;
    top: 0;
  }

  .flags.hk {
    max-width: 115px;
    left: 33%;
  }

  .flags.mly {
    bottom: 30%;
    max-width: 100px;
    right: -13%;
  }

  .flags.thai {
    bottom: 30%;
    max-width: 95px;
  }

  .flags.chn {
    bottom: 32%;
    left: -13%;
    max-width: 110px;
  }

  .flags.eu {
    bottom: 37%;
    left: 30%;
    max-width: 64px;
  }

  .coin-img.usd {
    max-width: 200px;
    bottom: 24em;
    left: -1em;
  }

  .coin-img.sgd {
    max-width: 80px;
    top: -25em;
    left: 2em;
  }

  .coin-img.yuan {
    top: -24em;
    right: 0;
    max-width: 105px;
  }

  .cloud.right {
    bottom: 28%;
    right: -80%;
  }

  .benefit.pxb .benefit-wrapper {
    top: -2rem;
  }

  .calculator.pxb .calculator-wrapper {
    margin: -8rem auto 0;
  }

  .step-illustration {
    display: none !important;
  }

  .step-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }

  .step-list::before {
    content: counter(step-counter) ". ";
    position: absolute;
    left: 0;
    top: 0;
  }

  .step-list br {
    display: none;
  }

  .step .step-lists {
    max-width: 550px;
    margin: auto;
  }

  .step .step-list:last-child {
    margin-bottom: 0;
  }

  .step .header h2 {
    text-align: center;
  }

  .step-text {
    margin-left: 2rem;
    max-width: none;
  }

  .progress-container {
    left: 1.5rem;
  }

  .progress-active {
    height: 4rem;
  }

  .mobile-step-illustration {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .mobile-step-list-img.active {
    display: flex;
    text-align: center;
    margin: 2rem;
    justify-content: center;
  }

  .mobile-step-list-img {
    width: 350px;
    height: 315px;
    border-radius: 15px;
    background: linear-gradient(144deg, #4195d5 10.96%, #224e6f 89.04%);
  }

  .mobile-step-list-img div {
    width: 300px;
    height: 100%;
    position: relative;
  }

  .mobile-step-list-img[data-step="1"] div {
    top: 2%;
  }

  .mobile-step-list-img[data-step="2"] div {
    width: 340px;
    left: 4%;
  }

  .mobile-step-list-img[data-step="3"] div,
  .mobile-step-list-img[data-step="4"] div,
  .mobile-step-list-img[data-step="5"] div,
  .mobile-step-list-img[data-step="6"] div,
  .mobile-step-list-img[data-step="7"] div {
    max-width: 280px;
  }

  .mobile-step-list-img[data-step="7"] div {
    left: 3%;
  }

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

  .faq .faq-illustration {
    width: 100%;
    text-align: center;
  }

  .faq .faq-illustration h2 {
    text-align: center;
    padding-bottom: 0;
  }

  .faq .faq-img {
    display: none;
  }

  .faq .faq-illustration .header p {
    padding: 0;
  }

  .faq-content {
    padding: 2rem;
    margin: 0;
    max-width: none;
  }

  .footer .flex-container {
    flex-direction: column;
    gap: 0;
  }

  .footer-illustration img {
    max-width: 350px;
  }

  .footer-content {
    text-align: center;
    width: 100%;
    max-width: 500px;
  }

  .footer-content h2 {
    text-align: center;
    max-width: 400px;
    margin: auto;
  }
}

@media (max-width: 670px) {
  .globe {
    width: 140%;
  }

  .coin {
    width: 150px;
  }

  .benefit.pxb h2 {
    max-width: 450px;
  }

  .benefit .benefit-card {
    min-width: 220px;
  }

  .benefit-card .animation-container {
    height: 32px;
    width: 32px;
  }

  .benefit-card .animation-container#icon-coin svg,
  .benefit-card .animation-container#icon-card svg {
    width: 26px !important;
    height: 26px !important;
  }

  .benefit-card .animation-container#icon-shield svg {
    width: 30px !important;
    height: 30px !important;
  }
}

@media (max-width: 630px) {
  .benefit .benefit-content {
    gap: 1.5rem;
  }

  .benefit .benefit-card {
    height: 280px;
  }

  .comparison-card:not(.first) {
    max-width: 380px;
  }

  /* .benefit.pxb .benefit-wrapper {
        margin: 0 1rem;
    } */

  .comparison .paper-container {
    padding-top: 14rem;
  }
}

@media (max-width: 600px) {
  .coin-img.usd {
    max-width: 140px;
    bottom: 31em;
    left: -2em;
  }

  .coin-img.sgd {
    max-width: 60px;
    top: -25em;
    left: 0;
  }

  .coin-img.yuan {
    top: -27em;
    right: -2em;
    max-width: 80px;
  }

  .benefit .benefit-card {
    min-width: 200px;
    height: auto;
  }

  .benefit-card img {
    height: 28px;
  }
}

@media (max-width: 560px) {
  .globe {
    bottom: 51%;
  }

  .coin {
    left: 0;
  }

  .benefit.pxb .benefit-wrapper {
    top: -3rem;
  }
}

@media (max-width: 540px) {
  .comparison .paper-container {
    padding-top: 16rem;
  }
}

@media (max-width: 480px) {
  .landing-container .landing-text {
    position: relative;
    z-index: 3;
  }

  .benefit.pxb {
    padding: 0;
  }

  .benefit.pxb .benefit-wrapper {
    top: -5rem;
    margin: 0 1rem;
  }

  .paper-globe {
    max-width: 700px;
    width: 100%;
  }

  #scene-container {
    height: 400px;
    top: 30%;
  }

  .flags.us {
    max-width: 90px;
    left: 12%;
    top: -5%;
  }

  .flags.sg {
    max-width: 85px;
    right: 17%;
    top: -3%;
  }

  .flags.mly {
    bottom: 43%;
    max-width: 75px;
    right: 3%;
  }

  .flags.chn {
    bottom: 45%;
    left: 0;
    max-width: 90px;
  }

  .flags.thai {
    bottom: 47%;
    left: 52%;
    max-width: 78px;
  }

  .flags.eu {
    max-width: 52px;
    bottom: 53%;
    left: 32%;
  }

  .flags.hk {
    max-width: 92px;
    left: 36%;
  }

  .cloud.right {
    bottom: 40%;
    right: -190%;
  }

  .cloud.left {
    top: -15%;
  }

  .calculator.pxb {
    padding: 0 1rem;
  }

  .calculator.pxb .calculator-wrapper {
    margin: -11rem auto 0;
  }

  .comparison .paper-container {
    padding-top: 15rem;
  }

  .step .step-lists {
    max-width: 380px;
  }

  .mobile-step-list-img {
    width: 300px;
    height: 265px;
  }

  .mobile-step-list-img div {
    width: 230px;
    height: 100%;
    position: relative;
  }

  .mobile-step-list-img[data-step="1"] div {
    top: 2%;
  }

  .mobile-step-list-img[data-step="2"] div {
    left: 4%;
  }

  .mobile-step-list-img[data-step="3"] div,
  .mobile-step-list-img[data-step="4"] div,
  .mobile-step-list-img[data-step="5"] div,
  .mobile-step-list-img[data-step="6"] div,
  .mobile-step-list-img[data-step="7"] div {
    max-width: 210px;
  }

  .mobile-step-list-img[data-step="7"] div {
    left: 3%;
  }
}

@media (max-width: 450px) {
  .landing-text .notes {
    display: block;
  }

  .coin-img.sgd {
    top: -30em;
    max-width: 50px;
  }

  .coin-img.yuan {
    top: -30em;
    right: -3em;
    max-width: 60px;
  }

  .flags.us {
    max-width: 85px;
  }

  .flags.sg {
    max-width: 78px;
  }

  .flags.mly {
    max-width: 70px;
    bottom: 44%;
  }

  .flags.thai {
    max-width: 68px;
    left: 55%;
    bottom: 50%;
  }

  .comparison-card:not(.first) {
    max-width: 350px;
  }

  .step .step-lists {
    padding-left: 1rem;
  }

  .progress-container {
    left: 0.5rem;
  }

  .step .step-lists {
    max-width: 320px;
  }

  .mobile-step-list-img {
    width: 250px;
    height: 215px;
  }

  .mobile-step-list-img img {
    width: 250px;
  }

  .mobile-step-list-img[data-step="1"] img {
    left: -2%;
  }

  .mobile-step-list-img[data-step="2"] img {
    left: 1%;
  }

  .mobile-step-list-img[data-step="3"] img {
    left: 5%;
  }

  .mobile-step-list-img[data-step="5"] img {
    width: 243px;
    left: -3%;
  }

  .mobile-step-list-img[data-step="6"] img {
    width: 245px;
  }

  .mobile-step-list-img[data-step="7"] img {
    width: 256px;
    left: -2%;
  }
}

@media (max-width: 425px) {
  .faq-question h3 {
    max-width: 240px;
  }
}

@media (max-width: 408px) {
  .landing.pxb .landing-container {
    padding-top: 12rem;
  }

  .landing br {
    display: none;
  }
}

@media (max-width: 390px) {
  .paper-globe {
    max-width: 400px;
  }

  #scene-container {
    top: 27%;
  }

  .cloud.right {
    bottom: 30%;
    right: -150%;
  }

  .flags.us {
    top: -13%;
    max-width: 79px;
    left: 14%;
  }

  .flags.hk {
    max-width: 82px;
    top: -21%;
  }

  .flags.sg {
    top: -12%;
    right: 18%;
    max-width: 68px;
  }

  .flags.mly {
    bottom: 61%;
    max-width: 68px;
  }

  .flags.thai {
    bottom: 63%;
    left: 55%;
    max-width: 60px;
  }

  .flags.chn {
    bottom: 64%;
    left: 2%;
    max-width: 75px;
  }

  .flags.eu {
    max-width: 48px;
    bottom: 67%;
    left: 33%;
  }

  .coin-img.usd {
    max-width: 115px;
    bottom: 35em;
  }

  .benefit.pxb .benefit-wrapper {
    top: -9rem;
  }

  .calculator.pxb .calculator-wrapper {
    margin: -16rem auto 0;
  }

  .comparison .paper-container {
    padding-top: 15rem;
  }

  .comparison-card:not(.first) {
    max-width: 320px;
  }

  .footer-illustration img {
    max-width: 270px;
  }

  .calculator-copy p br {
    display: none;
  }

  .calculator-content .notes {
    flex-direction: column;
    align-items: flex-start;
  }

  .calculator-content .notes p.notes-info {
    margin-top: -4px;
  }
}

@media (max-width: 344px) {
  .mobile-step-list-img {
    width: 200px;
    height: 175px;
    border-radius: 12px;
  }

  .mobile-step-list-img img {
    width: 200px;
  }

  .mobile-step-list-img[data-step="5"] img {
    width: 200px;
    top: 7%;
    left: -3%;
  }

  .mobile-step-list-img[data-step="6"] img {
    width: 180px;
  }

  .mobile-step-list-img[data-step="7"] img {
    width: 200px;
    left: -2%;
  }
}

@media (max-width: 320px) {
  .landing.pxb .landing-container {
    padding-top: 14rem;
  }

  .benefit.pxb .benefit-wrapper {
    top: -9rem;
  }
}
