body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 1rem;
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--dark);
}

html {
  scroll-behavior: smooth;
}

:root {
  --font-size-4xl: 36px;
  --font-size-s: 14px;
  --font-size-xs: 12px;
  --font-size-5xl: 40px;
  --font-size-xl: 20px;
  --font-size-3xl: 32px;
  --font-size-m: 16px;
  --font-size-l: 18px;
  --font-size-2xl: 24px;
  --font-size-2xs: 10px;
  --font-size-6xl: 48px;
  --font-size-8xl: 64px;
  --font-size-7xl: 56px;

  --color-grey-10: #2d3c4e;
  --color-grey-20: #3f556e;
  --color-grey-30: #4c6888;
  --color-grey-50: #b2becc;
  --color-grey-60: #ccd4dd;
  --color-grey-80: #e5e9ee;
  --color-grey-90: #f2f4f6;
  --color-grey-95: #f9fafb;

  --color-red: #D93933;
  --color-blue: #2E358D;
  --color-black:#2b2d42;
  --color-dark-blue: #15175e;
  --success: #28a745;
  --corner-radius-s: 4px;
  --corner-radius-l:16px;
}

section {
  padding: 100px 0;
}

img {
  width: 100%;
  height: auto;
}

.hf-pd {
  padding: 50px 0 !important;
}
section.menu-section {
  margin: 0;
}

p {
  font-size:1.125;
}

.bg-red {
  background: var(--color-red);
}

.bg-blue {
  background: var(--color-blue);
}

.blue-txt {
  color: var(--color-blue);
}

.red-txt {
  color: var(--color-red);
}
.black-txt {
  color: var(--color-black);
}

.white-txt,
.nav-link {
  color: #fff;
}

span.sub-title {
  position: relative;
  color: #686868;
  margin-bottom: 8px;
  display: inline-block;
}

p {
  color: #6b7280;
}

span.sub-title:after {
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -3px;
  height: 6px;
  width: 6px;
  margin-left: 36px;
  background: var(--color-blue);
  content: "";
  border-radius: 50%;
}

span.sub-title:before {
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -1px;
  height: 2px;
  width: 26px;
  margin-left: 10px;
  background: var(--color-blue);
  content: "";
}

.main-nav {
  width: 100%;
}
.navbar {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 16px;
}

h2 {
  font-weight: 900;
  /* color: var(--color-blue); */
  font-size: 2.2rem;
  text-align: center;
}

h2.no-margin {
  margin-bottom: 0;
}

h2 span {
  color: var(--color-blue);
}

header {
  position: relative;
  width: 100%;
  z-index: 99999;
  transition: 0.4s all;
  box-shadow: 0px 0px 5px #ccc;
  padding-bottom: 16px;
}

header.fixed {
  pointer-events: all;
  opacity: 1;
  transition: 0.4s all;
  box-shadow: 0 0 10px #dddbdb;
}

header.fix_style {
  position: fixed;
  top: 0;
  backdrop-filter: blur(5px);
  background-color: #ffffffb4;
  padding: 15px 0;
  transition: none;
  opacity: 1;
  transition: all 0.2s;
}

/* navigation bar */
.navbar {
  padding-left: 0;
  padding-right: 0;
  padding-top: 16px;
}

.top-header-wrapper {
  justify-content: space-between;
  width: 100%;
}

.log-reg.pc button {
  white-space: nowrap;
  padding: 0.3rem 1rem 0.3rem 1rem !important;
  border-radius: 8px;
  color: #444;
  border: 2px solid var(--color-blue)
}
.log-reg {
  display: none !important;
}

.log-reg.pc button.login {
  background: #fff;
  color: var(--color-blue);
}
.log-reg.pc button i {
  margin-left: 6px;
}

.log-reg.pc button.register {
  background: var(--color-blue);
  color: #fff;
}

.right-link {
  gap: 10px;
}

.navbar-expand-lg .navbar-nav {
  align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 5px 20px;
  font-weight: 500;
  color: var(--color-blue);
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: var(--color-blue);
}

.nav-link::before {
  content:'';
position:absolute;
left:50%; 
bottom:0; 
transform: translateX(-50%) scaleX(0);
transform-origin:center; 
width:85%; 
height:3px;
background:var(--color-blue);
border-radius:2px;
transition: transform .28s cubic-bezier(.2,.9,.2,1), opacity .18s ease;
opacity:0.95;
pointer-events:none;
} 

.nav-link:hover::before,
.nav-link.active:before,
.nav-link:focus::before,
.nav-link:focus-visible::before{
transform: translateX(-50%) scaleX(1);
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn {
  color: #fff;
  background-color: var(--color-blue);
  font-size: 16px;
  padding: 9px 40px;
  border-radius: 25px;
  margin-left: 20px;
  position: relative;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before,
.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 42px;
  z-index: -1;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before {
  animation: pulse-blue-medium-sm 3.5s infinite;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
  animation: pulse-blue-small-sm 3.5s infinite;
}

.navbar-brand img {
  width: 250px;
}

/* navigation bar dropdown */
.navbar-expand-lg .navbar-nav .has_dropdown {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 10px 10px 0 0;
  transition: 0.4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover {
  background-color: #fff;
  box-shadow: 0px 4px 10px #c5c5c580;
}

.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {
  position: relative;
  right: 15px;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {
  position: absolute;
  top: 100%;
  background-color: #fff;
  border-radius: 0 10px 10px 10px;
  min-width: 210px;
  max-width: 230px;
  margin-top: -10px;
  transition: 0.4s all;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 4px 10px #c5c5c580;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {
  margin-left: 0;
  padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {
  font-size: 15px;
  position: relative;
  transition: 0.4s all;
  line-height: 35px;
  font-weight: 500;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  border: 2px solid var(--color-blue);
  border-radius: 10px;
  margin-right: 5px;
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover {
  padding-left: 15px;
  color: var(--color-blue);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover::before {
  opacity: 1;
  left: 0;
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover > a,
.navbar-expand-lg .navbar-nav .has_dropdown:hover > .drp_btn {
  color: var(--color-blue);
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {
  opacity: 1;
  pointer-events: all;
  margin-top: -1px;
}

/* Services */




.id-type h3 i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.id-list {
  list-style-type: none;
}

.id-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.8rem;
}

.id-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.8rem;
  background: #fff;
  display: inline-block;
  border-radius: 100px;
  padding: 10px 32px 10px 45px;
  margin: 5px;
  border: 1px solid #dddcdc;
}

.id-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-blue);
  position: absolute;
  left: 18px;
}

.note-box {
  background: #fff8e1;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}

.note-box h3 {
  color: #ff9800;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.note-box h3 i {
  margin-right: 10px;
}

.contact-info {
  background: linear-gradient(135deg, #f5f7ff, #e3e9ff);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  margin-top: 2rem;
}

.contact-info h3 {
  color:var(--color-blue);
  margin-bottom: 1rem;
}

.contact-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  background: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-method i {
  margin-right: 10px;
  color: var(--color-blue);
  font-size: 1.2rem;
}

.social-media-link ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  gap: 30px;
}
.social-media-link ul li {
  list-style: none;
}


@media (max-width: 768px) {
  .id-type {
      flex: 1 1 100%;
  }
  
  .contact-methods {
      flex-direction: column;
      align-items: center;
  }
  
  .contact-method {
      width: 100%;
      justify-content: center;
  }
}

/* QR Code Download */

section.qr-code-section {
  padding: 0;
}

section.qr-code-section h2 {
  color: var(--color-blue);
  text-align: left;
}

section.qr-code-section h2 {
  margin-bottom: 25px;
  padding-right: 165px;
}

section.qr-code-section .download-container {
  display: flex;
  width: 100%;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex-wrap: wrap;
  margin-bottom: -100px;
  border: 4px solid #2d3c4e;
}

section.qr-code-section .download-content {
  flex: 1;
  padding: 30px;
  min-width: 300px;
  background: #fff url(../assets/img/bitmap/forex-phone.png) no-repeat;
  background-position: right top;
  background-size: contain;
}

section.qr-code-section .qr-section {
  background: #e7e7e7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  min-width: 250px;
  display: none;
}

section.qr-code-section .qr-section img {
  width: 100px;
}

section.qr-code-section .app-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 36px;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

section.qr-code-section .subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 16px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

section.qr-code-section .download-buttons, .download-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 100%;
}


section.qr-code-section .download-btn:hover,
footer .contact-block .download-buttons a img:hover,
.app-download .app-platform img:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

section.qr-code-section .download-btn i {
  font-size: 28px;
  margin-right: 15px;
}

section.qr-code-section .download-btn .btn-text {
  text-align: left;
}

section.qr-code-section .download-btn .btn-text small {
  display: block;
  font-size: 11px;
  opacity: 0.8;
  margin-bottom: 2px;
}

section.qr-code-section .download-btn .btn-text span {
  font-size: 18px;
  font-weight: 600;
}
section.qr-code-section .qr-code {
  padding: 10px;
  background: white;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

section.qr-code-section .download-buttons img, .download-buttons img {
  width: 163px;
}

section.qr-code-section .download-buttons a,
.app-platform img {
  transition: all 0.2s;
}

section.qr-code-section .scan-instruction {
  text-align: center;
  font-size: 13px;
  color: #777;
}

section.qr-code-section p.cta-txt {
  padding-right: 200px;
}


@media (max-width: 650px) {
  .download-container {
      flex-direction: column;
  }
  
  .qr-section {
      padding: 30px;
      border-top: 1px solid #eee;
  }
  
  .download-content {
      padding: 30px;
  }
  
  .download-buttons {
      flex-direction: column;
      gap: 15px;
  }
  
  .download-btn {
      min-width: 100%;
  }
}


/* QR Code Download */

@media (max-width: 768px) {
  
  .qr-section, .download-options {
      min-width: 100%;
  }

  .qr-code-download-sec {
    margin: 0 !important;
  }

  .hero .service-card h5 {
    font-size: 1rem;
  }

  .hero p.reg-info {
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed #ffff;
    padding-bottom: 1.2rem;
}

  .hero h1 span {
    margin-bottom: 0.5rem !important;
  }

  section.qr-code-section p.cta-txt {
    padding-right: 0;
  }

  section.qr-code-section .download-content {
    background: #fff !important;
    padding: 16px !important;
  }

  section.qr-code-section .download-buttons img {
    width: 100% !important;
  }

  section.qr-code-section .download-buttons {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 16px !important;
  }

  section.qr-code-section h2 {
    padding-right: 0 !important;
  }


  .hero .service-icon {
    font-size: 1rem;
    width: 40px;
    height: 40px;
    line-height: 80px;
    margin: 0;
  }
  
}

/* Animation */
@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

.qr-code {
  animation: float 4s ease-in-out infinite;
}


/* End QR Code */

/* End Services */


 /* New Timeline Styles */
 section.register .timeline-steps {
  margin-top: 20px;
  position: relative;
}

.step {
  display: flex;
  margin-bottom: 20px;
  position: relative;
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--color-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-title {
  font-weight: 600;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-icon {
  color: var(--color-blue);
}

.step-description {
  color: #666;
  font-size: 0.95rem;
}

.app-download {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.jpy-app-download {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  color: var(--color-blue);
}

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

.app-platform img {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.note-box {
  background-color: #fff8e1;
  border-left: 4px solid var(--warning);
  padding: 15px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .id-list, .registration-methods {
      grid-template-columns: 1fr;
  }
  
  .step {
      flex-direction: column;
  }
  
  .step-number {
      margin-bottom: 10px;
  }
  
  .timeline-steps:before {
      left: -12px;
  }
}

/* How to register FJ Pay */
section.how-to-register-fjpay .steps-row {
  position: relative;
}

section.how-to-register-fjpay .step-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 50px 35px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: fadeInUp 0.8s ease;
  animation-fill-mode: both;
  border: 2px solid transparent;
  height: 100%;
}

.section.how-to-register-fjpay .step-card.delay-1 {
  animation-delay: 0.1s;
}

section.how-to-register-fjpay .step-card.delay-2 {
  animation-delay: 0.3s;
}

section.how-to-register-fjpay .step-card.delay-3 {
  animation-delay: 0.5s;
}

section.how-to-register-fjpay .step-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 80px rgba(102, 126, 234, 0.25);
  border-color: rgba(102, 126, 234, 0.3);
}

section.how-to-register-fjpay .step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--color-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  z-index: 2;
}

section.how-to-register-fjpay .icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 30px auto;
  background: var(--color-blue);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #fff;
}

section.how-to-register-fjpay .icon-wrapper i {
  font-size: 3rem;
  background: var(--color-blue);
}

section.how-to-register-fjpay .step-title {
  font-size: 1.6rem;
  color: #1e293b;
  font-weight: 700;
  text-align: center;
  display: block;
}

section.how-to-register-fjpay .step-description {
  color: #64748b;
  line-height: 1.8;
}

section.how-to-register-fjpay .arrow {
  position: absolute;
  font-size: 3rem;
  color:var(--color-blue);
  opacity: 0.3;
  animation: float 2s ease-in-out infinite;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

section.how-to-register-fjpay .arrow-1 {
  left: 30%;
}

section.how-to-register-fjpay .arrow-2 {
  right: 30%;
}

@keyframes fadeInDown {
  from {
      opacity: 0;
      transform: translateY(-30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
      transform: translateY(-50%) translateX(0);
  }
  50% {
      transform: translateY(-50%) translateX(10px);
  }
}

section.how-to-register-fjpay .decorative-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  z-index: -1;
  animation: blobMove 20s ease-in-out infinite;
}

section.how-to-register-fjpay .blob-1 {
  width: 400px;
  height: 400px;
  background: var(--color-blue);
  top: -100px;
  right: -100px;
}

section.how-to-register-fjpay .blob-2 {
  width: 300px;
  height: 300px;
  background: var(--color-blue);
  bottom: -50px;
  left: -50px;
  animation-delay: -10s;
}

@keyframes blobMove {
  0%, 100% {
      transform: translate(0, 0) scale(1);
  }
  33% {
      transform: translate(50px, -50px) scale(1.1);
  }
  66% {
      transform: translate(-30px, 30px) scale(0.9);
  }
}

@media (max-width: 1199px) {
  .arrow {
      display: none;
  }
}



/* End how to register FJ Pay */


/* Language */
button.language-select-btn {
  align-items: center;
  display: flex;
  white-space: nowrap;
  padding: 0.3rem 1rem 0.3rem 0.6rem !important;
  border-radius: 8px;
  color: #444;
  border: 2px solid #d9d9d9;
  background: #fff;
  gap: 6px;
}

button.language-select-btn span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

button.language-select-btn img {
  height: 14px;
  margin-left: 8px;
  width: 14px;
}

button.language-select-btn i {
  width: 20px;
  height: 20px;
  background: url(../img/flag/jp.svg);
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}

button.language-select-btn i.eng {
  background: url(../img/flag/us.svg);
  background-size: contain;
  background-repeat: no-repeat;
} 

ul.lan-dropdown {
  display: none;
  position: absolute;
  padding: 10px 10px 8px 10px;
  background: #fff;
  list-style: none;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  width: 241px;
}

ul.lan-dropdown a {
  display: block;
}

ul.lan-dropdown li:hover {
  background: #e5e5e5;
}

ul.lan-dropdown li {
  margin-bottom: 2px;
  border-radius: 4px;
  padding: 4px 4px 4px 8px;
  cursor: pointer;
}

button.language-select-btn:hover + ul.lan-dropdown {
  display: block;
  background: #fff;
  height: auto;
}

ul.lan-dropdown:hover {
  display: block;
}

ul.lan-dropdown img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: -6px;
}

/* End Language */

/* navigation toggle menu */
.toggle-wrap {
  padding: 10px;
  position: relative;
  cursor: pointer;

  /*disable selection*/
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.toggle-bar,
.toggle-bar::before,
.toggle-bar::after,
.toggle-wrap.active .toggle-bar,
.toggle-wrap.active .toggle-bar::before,
.toggle-wrap.active .toggle-bar::after {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.toggle-bar {
  width: 25px;
  margin: 10px 0;
  position: relative;
  border-top: 4px solid #fff;
  display: block;
}

.toggle-wrap.active .toggle-bar {
  margin: 7px 0 !important;
}

.toggle-bar::before,
.toggle-bar::after {
  content: "";
  display: block;
  background: #fff;
  height: 4px;
  width: 30px;
  position: absolute;
  top: -12px;
  right: 0px;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -ms-transform-origin: 13%;
  -webkit-transform-origin: 13%;
  transform-origin: 13%;
}

.white_header .toggle-bar,
.white_header .toggle-bar::before,
.white_header .toggle-bar::after {
  border-top: 4px solid #fff;
}

.toggle-bar::after {
  top: 4px;
}

.toggle-wrap.active .toggle-bar {
  border-top: 6px solid transparent;
}

.toggle-wrap.active .toggle-bar::before {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.toggle-wrap.active .toggle-bar::after {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

li.nav-item {
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: all 0.3s;
  position: relative;
}

li.nav-item:after {
  position: absolute;
  left: 50%;
  bottom: 45px;
  height: 2px;
  width: 0%;
  background-color: var(--color-red);
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}


.carousel-hero img {
  border-radius: 25px;
}

section.hero-slider {
  padding: 30px 0;
}




/* Calculate */
.customer-rate-calculator {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border: 6px solid #ed1c24bd;
  border-radius: 16px;
  box-shadow: 0 0 10px #382323;
}

.border-field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

label.calculator-label {
  color: var(--color-grey-20);
  text-align: left;
  justify-content: space-between;
  margin: 10px 0;
  display: flex;
}

.calculator-label--large {
  font-size: var(--font-size-s);
}

.border-field {
  display: flex;
  flex-direction: column;
  font-size: var(--font-size--medium);
  justify-content: center;
  min-height: 58px;
  min-width: 170px;
  position: relative;
}

.border-field-content {
  align-items: center;
  border: 1px solid var(--color-grey-80);
  border-radius: 4px;
}

.currency-select {
  position: relative;
  box-sizing: border-box;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.currency-name {
  padding-left: 5px;
  font-weight: bold;
}

button.dropdown-menu {
  background: url(../assets/img/vector/icon-drop-down-1.svg) no-repeat;
  width: 20px;
  height: 20px;
  background-size: 100%;
  margin-bottom: 0 !important;
}

.flag-select {
  gap: 6px;
  background: var(--color-blue);
  color: #fff !important;
  padding-left: 12px;
  width: 130px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.flag-select img {
  width: 30px;
  border-radius: 44px;
}

.button.down-arrow {
  padding: 0;
}

.calculator-input {
  background-color: #fff;
  border-radius: var(--corner-radius-s);
  color: var(--color-grey-10);
  display: block;
  flex-grow: 1;
  flex-shrink: 1;
  font-size: var(--font-size-xl);
  height: 55px;
  line-height: 125%;
  outline: none;
  padding: 0 0.5rem;
  width: 100%;
  border: 0;
  font-weight: bold;
}

button.btn.down-arrow {
  margin: 0;
  padding: 0;
}

.customer-rate-calculator .dropdown-menu {
  min-width: 100%;
  height: 250px;
  overflow: auto;
  position: absolute;
  top: 54px;
  left: 0;
  font-size: 14px;
}

.customer-rate-calculator .dropdown-menu li {
  border-bottom: 1px solid #e0e0e0;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.customer-rate-calculator .dropdown-menu li:last-child {
  border-bottom: 0;
}

/* Services Block */

section.services {
  padding: 40px 0;
}

.show-pr:after {
  transform: scale(1, 1);
}

.theme-title-one {
  padding-bottom: 52px;
  z-index: 2;
}

.inner-wrapper {
  position: relative;
  z-index: 1;
}

.inner-wrapper:before {
  content: url(../images/shape/shape-13.svg);
  position: absolute;
  top: -165px;
  left: -165px;
  z-index: -1;
}

.inner-wrapper:after {
  content: url(../images/shape/shape-14.svg);
  position: absolute;
  bottom: -165px;
  right: -165px;
  z-index: -1;
}

.service-block {
  background: #fff;
  border: 2px solid var(--color-grey-80);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 5;
  padding: 100px 30px 25px 40px;
  margin-top: 15px;
  text-align: center;
  box-shadow: 0px 1px 8px #ededed;
}

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

.service-block img {
  width: 100px;
  text-align: center;
}

.service-block .icon-s {
  position: absolute;
  font-size: 65px;
  left: 40px;
  top: 52px;
}

.single-block:nth-child(1) .service-block .icon-s {
  color: #6df7bc;
}

.single-block:nth-child(2) .service-block .icon-s {
  color: #25e5eb;
}

.single-block:nth-child(3) .service-block .icon-s {
  color: #ff4ca5;
}

.service-block .title a {
  font-size: 22px;
  line-height: 32px;
  color: var(--color-blue);
  margin-bottom: 30px;
  font-weight: bold;
  text-decoration: none;
}

.service-block p {
  padding-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.3;
}

.service-block .detail-button {
  font-size: 40px;
  color: #cad5e5;
}

.service-block:hover .hover-content {
  opacity: 1;
}

.service-block:hover .hover-content:before {
  opacity: 1;
  transform: translate(0%, 0%);
  transition: all 0.9s linear;
}

.service-block:hover .hover-content:after {
  opacity: 1;
  transform: translate(0%, 0%);
  transition: all 1.3s linear;
}

.service-block .snow-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.service-block .snow-dot:nth-child(1) {
  top: 25px;
  left: 41%;
  z-index: 1;
  animation: scale-upOne 1s alternate infinite ease-in;
}

.service-block .snow-dot:nth-child(2) {
  top: 25px;
  left: 78%;
  animation: scale-upOne 1.1s alternate infinite ease-in;
}

.service-block .snow-dot:nth-child(3) {
  top: 75px;
  left: 61%;
  animation: scale-upOne 0.8s alternate infinite ease-in;
}

.service-block .snow-dot:nth-child(4) {
  top: 136px;
  left: 84%;
  animation: scale-upOne 1s alternate infinite ease-in;
}

.service-block .snow-dot:nth-child(5) {
  bottom: 35px;
  right: 12%;
  animation: scale-upOne 1.2s alternate infinite ease-in;
}

.service-block .snow-dot:nth-child(6) {
  bottom: 80px;
  right: 31%;
  animation: scale-upOne 0.9s alternate infinite ease-in;
}

.service-block .snow-dot:nth-child(7) {
  bottom: 40px;
  right: 51%;
  animation: scale-upOne 1s alternate infinite ease-in;
}

.service-block:hover .title a,
.service-block:hover .icon-s,
.service-block:hover p,
.service-block:hover .detail-button {
  color: #fff !important;
}

.theme-more-feature:after,
.theme-more-feature .inner-wrapper:before,
.theme-more-feature .inner-wrapper:after,
.theme-more-feature:before {
  display: none;
}

.theme-more-feature {
  background: none;
  padding: 165px 0 180px;
}


.service-block:hover .hover-content:before {
  opacity: 1;
  transform: translate(0%, 0%);
  transition: all 0.9s linear;
}

.service-block:hover .hover-content:after {
  opacity: 1;
  transform: translate(0%, 0%);
  transition: all 1.3s linear;
}

.service-block .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-blue);
  z-index: -3;
  opacity: 0;
  transition: all 0.3s linear;
}

.service-block:hover .hover-content {
  opacity: 1;
}

.theme-title-one .underline span:before {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 3px;
  width: 99%;
  height: 11px;
  z-index: -1;
  background: #ecf4ff;
  border-radius: 5px;
}

.send-money-block {
  position: relative;
}

.our-core-feature {
  text-align: center;
}

.hero {
  background: linear-gradient(rgb(47 49 146 / 89%), rgb(47 49 146 / 71%)) 0% 0% / cover fixed, url(../assets/img/vector/world-map.svg) no-repeat;
  height: 80vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-attachment: fixed;
  background-size: cover;
}

.hero p {
  font-size: 1rem;
  color: #fff;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  text-align:left;
  text-align: center;
}

.hero h1 span {
  font-weight: 600;
  color: var(--fj-blue);
  letter-spacing: 1px;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: block;
  text-transform: uppercase;
}

.hero p.reg-info {
  margin-top: 22px;
  font-size: 1rem;
}

.hero .service-icon {
  font-size: 1.6rem;
  width: 60px;
  height: 60px;
  line-height: 80px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background-color: rgba(0, 82, 155, 0.1);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .service-card {
  background-color: #fff;
  border: none;
  border-radius: 15px;
  box-shadow:0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 18px 18px 6px 18px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 2;
}

.hero .service-card h5 {
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 15px;
}

.list-continent {
  width: 220px;
  height: 240px;
  font-size: 12px;
  padding: 0 8px;
  overflow: hidden;
  position: absolute;
  background: #fff;
  top: 60px;
  padding: 8px;
  font-size: var(--font-size-s);
  transition: color 0.3s var(--n-bezier), border-color 0.3s var(--n-bezier);
  border-top: 1px solid var(--n-action-divider-color);
  color: var(--n-action-text-color);
}

.list-continent li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.6vw 0;
  width: 100%;
  cursor: pointer;
}

.list-continent .country-name {
  margin-left: 20px;
}
s
span.country-name {
  margin-left: 12px;
}

.list-continent .flag {
  width: 24px;
  height: 16px;
}

.list-continent .country-name {
  margin-left: 4vw;
  color: var(--color-grey-20);
}

.trans-fee {
  padding: 10px 0px 10px 15px;
  position: relative;
  text-align: left;
  margin: 12px 0 0 12px;
}

.trans-fee label,
.trans-fee b,
.trans-fee p {
  font-size: 1rem;
}

.trans-fee p {
  color: #4a4a4a;
  position: relative;
  padding-left: 10px;
  margin: 0;
}

.trans-fee p:before {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  top: 1px;
  left: -10px;
  z-index: 9;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid var(--color-blue);
}

.trans-fee:before {
  content: "";
  border-left: 1px solid #ccc;
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  border-radius: 6px;
  top: 0;
  left: 13px;
  z-index: 1;
}

.trans-fee p:first-child {
  margin-bottom: 10px;
}

.reduce-amt {
  border-radius: 6px;
  padding: 6px 12px 5px 9px;
  margin-top: 8px;
  display: block;
  cursor: pointer;
}

.track-money {
  max-width: 450px;
}

.quiz-campaign {
  border-radius: 0 0 12px 12px;
  border: 2px solid #fff;
  border-top: 0;
}

.form-control {
  border: 0;
}

.track-money h2 {
  font-size: 24px;
  line-height: 1.31;
  margin: 15px auto 15px;
  text-align: left;
}

.input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.btn-secondary {
  color: #fff;
  border-color: var(--color-blue);
  background-color: var(--color-blue);
  font-size: 1rem;
  line-height: 2rem;
}

small.note {
  font-size: 0.8rem;
  text-align: left;
  color: var(--color-grey-20);
  margin-top: 10px;
}

.feature-block h5 {
  font-weight: bold;
}

.feature-block-one.hover-state:after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--color-red);
  z-index: -1;
  top: -95px;
  right: -95px;
  opacity: 0.7;
  transform: scale(0.2);
  transition: all 0.3s ease-in-out;
}

.feature-block-one.hover-state:hover:after {
  opacity: 1;
  transform: scale(1);
  transition-duration: 0.3s;
}

.row.feature-block-wrapper {
  counter-reset: krp;
}

.feature-block-one:before {
  counter-increment: krp;
  content: counter(krp);
  position: absolute;
  top: 0;
  font-size: 50px;
  width: 73px;
  padding-top: 4px;
  font-weight: 700;
  line-height: 73px;
  height: 73px;
  border-radius: 50%;
  right: 0;
  color: #ffe7e8;
}

.three-steps header {
  margin-bottom: 40px;
}

.next-btn {
  border: 1px solid rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--fox-corner-radius-s);
  font-size: var(--wp--custom--font-size--medium);
  letter-spacing: var(--wp--custom--letter-spacing--relaxed);
  column-gap: var(--wp--custom--space--x-small);
  padding: 0 var(--wp--custom--space--large);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    text-decoration-color 0.15s ease-in-out;
}

.modal-content {
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.modal-content img {
  width: 80px;
  height: 50px;
  margin-bottom: 15px;
}

/* Inner Page */
.page-title-section {
  position: relative;
  height: 220px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: url(../img/background/inner-pg-bg.png);
  background: linear-gradient(160deg, #ec1d25 0%, #142d99 50%, #ec1d25 100%);
}

.page-title-section h1 {
  color: #fff;
  font-size: 42px;
  text-align: center;
  font-weight: 700;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
}
.breadcrumb .breadcrumb-item {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
}
.breadcrumb .breadcrumb-item a {
  color: #fff;
  cursor: pointer;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  content: "/";
  color: #fff;
}

.iinner-page:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 650px;
  background-image: url(../img/background/inner-pg-bg.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* According */


/* Register */

.registration-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 30px;
}
.download-container .header {
  background-color:var(--color-blue);
  color: white;
  padding: 40px 20px 30px 20px;
  text-align: center;
}
.steps-container {
  position: relative;
  padding-left: 45px;
}
.steps-container::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 35px;
  width: 3px;
  background: var(--color-blue);
}
.step {
  position: relative;
  padding: 14px;
  margin-bottom: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.step h4 {
  font-size: 18px;
  font-weight: bold;
}
.step-number {
  width: 35px;
  height: 35px;
  background-color: var(--color-blue);
  color: white;
  text-align: center;
  border-radius: 50%;
  line-height: 30px;
  font-weight: bold;
  z-index: 2;
  border: 3px solid white;
}
.step-icon {
  color: var(--color-blue);
  font-size: 20px;
  margin-right: 10px;
  vertical-align: middle;
}
.steps-image {
  height: 100%;
  object-fit: cover;
  border-radius: 0 10px 10px 0;
}
.checklist {
  list-style-type: none;
  padding-left: 0;
}
.checklist li {
  margin-bottom: 10px;
}
.checklist i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}
.completed {
  color: #198754;
}
.pending {
  color: #6c757d;
}
.step-title {
  display: flex;
  margin-bottom: 10px;
}

.step-title i {
  font-size: 30px;
}
@media (max-width: 768px) {
  .steps-image {
      border-radius: 0 0 10px 10px;
      height: 300px;
  }
  .steps-container {
      padding-left: 35px;
  }
  .steps-container::before {
      left: 25px;
  }

  .mob-ver {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .carousel-inner {
    margin-top: 20px;
  }
  .step-number {
      width: 25px;
      height: 25px;
      line-height: 25px;
      font-size: 0.8rem;
  }

  section.new-update .step-content {
    text-align: center;
  }

  section.hero-slider {
    padding: 0px 0 15px 0 !important;
  }

  .carousel-indicators {
    bottom: -15px;
  }
  
}

/* End Register */


/* Calculator */

section.calculator {
  padding: 50px 0;
}

section.calculator .converter-container {
  background-color: #f5f5f5;
  padding: 24px;
  border-radius: 8px;
  width: 100%;
  margin: 0 auto;
}

section.calculator .converter-form {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

section.calculator .input-group-block {
  border: 1px solid #dde2e7;
  border-radius: 4px;
  padding: 8px 12px;
}

section.calculator .input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  flex-direction: column;
}

section.calculator .input-group-block label {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 4px;
}

section.calculator .input-group-block .input-field {
  font-size: 20px;
  font-weight: 600;
}

section.calculator .amount-group {
  min-width: 150px;
  background: #fff;
}
section.calculator .amount-group .input-field span {
  color: var(--color-grey-30);
  margin-right: 4px;
}

section.calculator .currency-group {
  flex: 1;
  padding: 0;
  border: none;
}
section.calculator .currency-group .dropdown-wrapper {
  position: relative;
}

section.calculator .dropdown-selected, section.calculator .amount  {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid #dde2e7;
  border-radius: 4px;
  cursor: pointer;
  background-color: #fff;
}

section.calculator .dropdown-selected span {
  flex-grow: 1;
  font-size: 16px;
  font-weight: 500;
}

section.calculator .flag-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #f0f0f0; /* Fallback for SVGs */
  border: 1px solid #eee;
}

section.calculator .chevron-down {
  width: 24px;
  height: 24px;
  fill: var(--text-light);
  transition: transform 0.2s ease-in-out;
}

section.calculator .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  margin-top: 4px;
  padding: 4px;
  list-style: none;
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
}

section.calculator .dropdown-menu.show {
  display: block;
}

section.calculator .dropdown-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
}
section.calculator .dropdown-menu li:hover {
  background-color: #f0f3f5;
}
section.calculator .dropdown-menu li.selected {
  font-weight: 600;
  background-color: var(--color-blue);
  color: #fff;
}

section.calculator .swap-button {
  background: #fff;
  border: 1px solid #aaa;
  border-radius: 100px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s;
  color: #fff;
}
section.calculator .swap-button:hover {
  background-color: #f7f7f7;
}

section.calculator .result-section {
  margin-top: 24px;
}
section.calculator .source-amount {
  margin: 0;
  font-size: 16px;
  color: var(--text-light);
}
section.calculator .target-amount {
  margin: 4px 0 0;
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
}
section.calculator .exchange-rates {
  margin-top: 12px;
  font-size: 14px;
  color: #444;
}
section.calculator .exchange-rates p {
  margin: 0;
}

section.calculator .info-section {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-light);
}
section.calculator .info-section a {
  color: var(--primary-blue);
  text-decoration: underline;
  font-weight: 500;
}

section.calculator .action-buttons {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
section.calculator .btn {
  padding: 14px 24px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
section.calculator .btn:hover {
  opacity: 0.9;
}
section.calculator .btn-light {
  background-color: var(--light-blue-bg);
  color: var(--primary-blue);
}
section.calculator .btn-primary {
  background-color: var(--primary-blue);
  color: var(--background-white);
}

@media (max-width: 768px) {
  section.calculator .converter-form {
      flex-direction: column;
      align-items: stretch;
  }
  section.calculator .swap-button {
      align-self: center;
      margin: 8px 0;
  }
  section.calculator .target-amount {
      font-size: 32px;
  }
  section.calculator .action-buttons {
      flex-direction: column;
  }
}


/* End Calculator */

/* Footer */

footer {
  background-color: #2d3c4e;
  padding-top: 120px;
}

footer .contact-block {
  padding: 46px 16px 16px 26px;
  border-radius: 0 0 40px 40px;
  max-width: 1620px;
  margin: 0 auto;
  /* text-align: center; */
  color: #fff;
}

footer .contact-block a {
  text-decoration: none;
  color: #fff;
}

footer .contact-block .download-buttons a,
footer .contact-block .download-buttons img:hover,
.app-download .app-platform
{
  transition: all 0.2s;
}

footer .contact-block .download-buttons img {
  width: 120px;
}

footer p {
  color: #fff;
}


footer .footer-link {
  padding: 30px;
  color: #fff;
}

footer .footer-link a {
  color: #aaa;
  text-decoration: none;
  padding: 0 10px;
}

footer .footer-link span {
  margin-top: 20px;
  display: block;
  color: #aaa;
}

footer .contact-block .box-icon p {
  text-align: left;
}

footer .contact-block .box-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  /* justify-content: center; */
}

footer .footer-logo img {
  width: 110px;
}

footer .copyright {
  padding: 20px 0;
  background-color: #111923;
  margin: 0;
  color: #707070;
}

.social_media {
  display: flex;
  margin-top: 20px;
  padding-left: 0;
}

.social_media li {
  padding: 0 0 10px 0;
  list-style: none;
}

.social_media li a {
  display: block;
  width: 37px;
  height: 37px;
  text-align: center;
  line-height: 37px;
  font-size: 15px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50px;
  margin-right: 10px;
  transition: 0.4s all;
}

.social_media li a:hover {
  background-color: #fff;
  color: #2d3c4e;
}

.footer-link a {
  font-size: 14px;
  border-right: 2px solid !important;
}

footer .contact-block .download-app img {
  width: 120px;
  height: 30px;
}
footer .contact-block .download-app ul {
  padding-left: 0;
  width: 205px;
}
section.contact-details h6 {
  font-weight: bold;
}

@-webkit-keyframes scale-upOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
}

@keyframes scale-upOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
}

.bounce {
  animation: float 1500ms infinite ease-in-out;
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

section.three-steps {
  background: #f8f9fa;
}

.feature-block-one {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  padding: 60px 30px 55px 40px;
  position: relative;
  z-index: 5;
  box-shadow: 0px 30px 70px 0px rgba(223, 227, 234, 0.5);
}

.feature-block-one img {
  width: 85px;
  margin-bottom: 16px;
}

.feature-block-one .icon-one {
  color: var(--cyan);
}

.feature-block-one .icon {
  font-size: 60px;
}

.underline {
  position: relative;
}

.underline:before {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 3px;
  width: 99%;
  height: 11px;
  z-index: -1;
  background: #ecf4ff;
  border-radius: 5px;
}

.our-core-feature h5 {
  font-size: 1.7rem !important;
  font-weight: bold;
  color: var(--color-blue);
}

.theme-title-one .main-title span {
  position: relative;
}

.mt-200 {
  margin-top: 200px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.card-mob-img img {
  width: 100%;
}

h3 {
  font-weight: bold;
}

a.hover {
  position: relative;
}

.service-box.style3:hover .content p {
  color: #fff;
}

.pc {
  display: block;
}
.mob {
  display: none;
}

.service-box.style3 .service-btn a {
  padding: 0;
  border-radius: 0;
  background-color: inherit;
  display: inline-block;
  margin-top: 0;
  position: relative;
  z-index: 1;
  transition: 0.5s;
  font-size: 19px;
  border: none;
  letter-spacing: -10px;
  color: #fff;
  font-weight: 600;
  font-family: "Rajdhani";
}
.service-box.style3:hover .service-btn a {
  border: none;
  letter-spacing: 0;
}
.service-box.style3 .service-btn a i {
  font-size: 16px;
  font-weight: 700;
  color: #0b59db;
  position: absolute;
  left: 0;
  transition: 0.4s;
  margin: 0;
}
.service-box.style3:hover .service-btn a i {
  left: 90px;
}
.service-box.style3 .service-btn a:before {
  display: none;
}

a.hover::before {
  content: "";
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
  color: #fff !important;
}

.more:after {
  line-height: 1;
  font-family: "Unicons";
  content: "\e94c";
  padding-left: 0.05rem;
  font-size: 0.9rem;
  font-weight: normal;
  vertical-align: -3px;
  margin-right: -0.25rem;
  display: inline-block;
}

.service-item {
  background: #ffffff;
  box-shadow: 0px 43px 100px 0px rgba(0, 0, 0, 0.13);
  border-radius: 10px;
  border-top: 5px solid var(--color-blue);
  transform: translate3d(0, 0, 0);
  padding: 30px 26px 40px;
  margin-top: 30px;
  transition: all 0.3s linear;
}

.service-item.service-01,
.service-item.service-03 {
  margin-top: 55px;
  border-color: var(--color-red);
}

.service-item .service-content .title {
  font-size: 24px;
  line-height: 30px;
  padding-right: 15px;
  margin-top: 20px;
  color: var(--color-blue);
}

.d-flex.justify-content-center.qr img {
  width: 160px !important;
}

.service-item .service-content p {
  margin-top: 15px;
}

button.language-select-btn {
  align-items: center;
  display: flex;
  white-space: nowrap;
  padding: 0.3rem 1rem 0.3rem 0.6rem !important;
  border-radius: 8px;
  color: #444;
  border: 2px solid #d9d9d9;
  background: #fff;
  gap: 6px;
}

button.language-select-btn span {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1px;
  text-transform: uppercase;
}

button.language-select-btn img {
  height: 14px;
  margin-left: 8px;
  width: 14px;
}

button.language-select-btn i {
  width: 20px;
  height: 20px;
  background: url(../img/flag/jp.svg);
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}
button.language-select-btn i.en {
  background: url(../img/flag/us.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

ul.lan-dropdown {
  display: none;
  position: absolute;
  padding: 10px 10px 8px 10px;
  background: #fff;
  list-style: none;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  width: 235px;
  z-index: 99;
}

ul.lan-dropdown li:hover {
  background: #e5e5e5;
}

ul.lan-dropdown li {
  margin-bottom: 2px;
  border-radius: 4px;
  padding: 4px 4px 4px 8px;
  cursor: pointer;
}

ul.lan-dropdown a {
  display: block;
  text-decoration: none;
}

button.language-select-btn:hover + ul.lan-dropdown {
  display: block;
  background: #fff;
}

ul.lan-dropdown:hover {
  display: block;
}

ul.lan-dropdown img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: -6px;
}

.app-download ul li {
  font-size: 1.3rem;
}



section.why-choose h2 {
  font-weight: bold;
}

.why-choose .service-img img {
  width: 90px;
}

.bottom-footer {
  margin-top: 40px;
  color: #fff;
  border-bottom: 1px solid var(--color-grey-30);
}

.about_img:after {
  content: "";
  position: absolute;
  left: 38%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background-color: var(--color-blue);
  border-radius: 100%;
  z-index: -2;
}

.text_list_section .slider_block {
  background-color: var(--color-blue);
  padding: 20px 0;
  transform: rotate(-1.5deg);
  /* pointer-events: none; */
  width: 100%;
  overflow-x: hidden;
}

.text_list_section .down_fix {
  transform: rotate(-5deg);
  position: relative;
  bottom: -30px;
  z-index: 9;
}

.text_list_section .down_fix::after {
  content: "";
  position: absolute;
  right: 0;
  top: -10px;
  width: 22px;
  height: 22px;
  background-image: url(../assets/img/bitmap/bigstar.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.text_list_section.rotet_down {
  transform: rotate(0.5deg);
}

.text_list_section .owl-stage,
.text_list_section .owl-stage-outer,
.textFlow_list .owl-stage,
.textFlow_list .owl-stage-outer {
  height: 55px;
}

.text_block {
  display: flex;
  align-items: center;
}

.text_block span {
  color: #fff;
  font-size: 50px;
  font-family: var(--font-bebas);
  font-weight: 700;
  line-height: 1;
}

.text_block .mark_star {
  margin: 0 60px;
  font-family: "Playball", cursive;
}

.title_badge {
  color: #fff;
  display: inline-block;
  padding: 2px 20px;
  border-radius: 100px;
  background-color: var(--color-red);
  margin-bottom: 10px;
}

/** working-section **/

section.why-choose-fjpay {
  background: url(../assets/img/bitmap/backgrond-bg.jpg) no-repeat;
  padding: 100px;
  background-attachment: fixed;
}

.working-section{
  position: relative;
  padding: 112px 0px;
}

.working-block-one .inner-box{
  position: relative;
  display: block;
  padding: 0px 20px;
  margin-bottom: 33px;
  text-align: center;
  box-shadow: 0px 30px 70px 0px rgba(223, 227, 234, 0.5);
}
.working-block:last-child .working-block-one .inner-box::before{
  width: 100%;
}

.working-block:nth-child(odd) .working-block-one{
  padding-top: 50px;
}

.working-block:nth-child(odd) .working-block-one .inner-box{
  background: linear-gradient(180deg, #f3f7f9 0%, #fff 100%);
}

.working-block:nth-child(even) .working-block-one{
  padding-bottom: 50px;
}

.working-block:nth-child(even) .working-block-one .inner-box{
  background: linear-gradient(0deg, #f3f7f9 0%, #fff 100%);
  top: 50px;
}

.working-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 82px;
  background-color: #f3f7f9;
  border: 9px solid #fff;
  text-align: center;
  border-radius: 50%;
  transition: all .3s cubic-bezier(.25,.8,.25,1);
}

.working-block:nth-child(odd) .working-block-one .inner-box{
  padding-bottom: 16px;
}

.working-block:nth-child(even) .working-block-one .inner-box{
  padding-top: 16px;
}

.working-block:nth-child(odd) .working-block-one .inner-box .icon-box{
  margin-top: -38px;
  top: -12px;
  margin-bottom: 13px;
}

.working-block:nth-child(even) .working-block-one .inner-box .icon-box{
  margin-bottom: -38px;
  bottom: -12px;
}

.working-block-one .inner-box .icon-box::before{
  position: absolute;
  content: '';
  border: 1px solid #e4e9ec;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  left: -9px;
  top: -9px;
}

.working-block-one .inner-box:hover .icon-box{
  background-color: var(--theme-color);
}

.working-block-one .inner-box .icon-box .icon{
  position: relative;
  transition: all .3s cubic-bezier(.25,.8,.25,1);
  background: #f1f1f1;
  border-radius: 100%;
}
.working-block-one .inner-box .icon-box .icon img {
  width: 50px;
}
.working-block-one .inner-box .icon-box .overlay-icon{
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all .3s cubic-bezier(.25,.8,.25,1);
}

.working-block-one .inner-box:hover .icon-box .overlay-icon{
  opacity: 1;
}

.working-block-one .inner-box h6{
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-dark);
  text-align: center;
}

.working-block-one .inner-box h3{
  display: block;
  font-size: 22px;
  line-height: 30px;
  color: var(--color-blue);
  text-align: center;
}

.working-block-one .inner-box h5{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  color: #314b5e;
  border: 1px solid #e4e9ec;
  border-radius: 50%;
  margin-bottom: 6px;
  background-color: #fff;
  transition: all .3s cubic-bezier(.25,.8,.25,1);
}

.working-block-one .inner-box h5::before{
  position: absolute;
  content: '';
  background-color: #dbe0e3;
  width: 1px;
  height: 30px;
  left: 23px;
}

.working-block:nth-child(odd) .working-block-one .inner-box h5::before{
  bottom: -30px;
}

.working-block:nth-child(even) .working-block-one .inner-box h5::before{
  top: -30px;
}

.working-block:nth-child(odd) .working-block-one .inner-box h5::after{
  position: absolute;
  content: '';
  background-color: #dbe0e3;
  width: 13px;
  height: 12px;
  left: 17px;
  bottom: -41px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 50% 100%, 0% 0%);
}

.working-block:nth-child(even) .working-block-one .inner-box h5::after{
  position: absolute;
  content: '';
  background-color: #dbe0e3;
  width: 13px;
  height: 12px;
  left: 17px;
  top: -41px;
  clip-path: polygon(0% 0%, 50% 0%, 100% 100%, 0% 100%, 50% 0%);
}

.working-block-one .inner-box:hover h5{
  color: var(--theme-color);
}

.working-block:nth-child(odd) .working-block-one .inner-box h3{
  margin-bottom: 22px;
}

.working-block:nth-child(odd) .working-block-one .inner-box h5{
  margin-bottom: 57px;
}

.working-block:nth-child(even) .working-block-one .inner-box p{
  margin-bottom: 55px;
}

.working-block:nth-child(even) .working-block-one .inner-box h5{
  margin-bottom: 24px;
}

.working-block:nth-child(even) .working-block-one .inner-box h3{
  margin-bottom: 13px;
}

@media only screen and (max-width: 992px) {
  /* navigation section */
  .navbar-toggler-icon {
    width: 40px;
    height: 40px;
    background: none !important;
  }

  .top-header-wrapper { 
width: unset;
  }

  .mob {
    display: block;
  }

  .pc {
    display: none;
  }

  .no-scroll {
    overflow: hidden;
  }

  nav .show ul {
    box-shadow: none;
    height: 100vh;
    overflow: hidden;
  }
  

  .inner-page {
    margin-top: 10px;
  }

  .navbar-toggler {
    background: var(--color-blue);
    padding: 3px 8px;
  }
  .white_header .toggle-bar {
    color: #fff;
  }

  .about_img {
    margin-top: 30px;
  }

  .hero h1 {
    font-size: 35px;
  }
 
  .navbar-brand img {
    width: 100px;
  }

  .screen_img {
    margin-left: -200px !important;
  }
  .free_app_section .container .free_app_inner .free_text .section_title h2,
  .section_title h2 {
    font-size: 30px;
  }

  .screen_img {
    margin-left: -185px;
  }
  .about_img:after {
    width: 400px;
    height: 400px;
  }

  .go_top {
    right: 10px !important;
    bottom: 10px !important;
  }
  header.fix_style {
    padding: 5px 0 13px 0;
    background: #fff;
    box-shadow: 0 0 10px #dddbdb;
  }

  body.no-scroll .free_app_section .container .free_app_inner {
    z-index: 1;
}

  .white_header .navbar-collapse {
    position: absolute;
    top: 110%;
    width: 100%;
  }

  .white_header .navbar-expand-lg .navbar-nav .nav-link,
  .white_header .navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {
    color: var(--color-blue);
  }
  .white_header .navbar-expand-lg .navbar-nav .nav-link.dark_btn {
    background-color: var(--color-blue);
    color: #fff;
  }

  .banner_section {
    text-align: center;
  }
  .banner_section .app_btn,
  .banner_section .used_app {
    justify-content: center;
  }

  ul.qr-code {
    padding: 0;
    margin: 0px 0 30px 0;
    align-items: center;
    justify-content: center;
  }

  /* navigation section */
  .navbar-expand-lg .navbar-nav {
    align-items: flex-start;
  }
  .navbar {
    flex-direction: row;
    align-items: center;
  }
  .navbar-toggler {
    padding-right: 0;
    line-height: 1.7;
    border: none;
    font-size: 0;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar-expand-lg .navbar-nav {
    background-color: var(--bg-white);
    border-radius: 15px;
  }
  .navbar-expand-lg .navbar-nav .nav-link.dark_btn {
    margin-left: 0;
    margin-top: 15px;
  }
  .navbar-expand-lg .navbar-nav .has_dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    box-shadow: none;
  }
  .navbar-expand-lg .navbar-nav .has_dropdown:hover {
    box-shadow: none;
  }
  .navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {
    position: absolute;
    right: 0;
    padding: 0 10px;
  }
  .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {
    position: relative;
    opacity: 1;
    pointer-events: all;
    top: auto;
    background-color: transparent;
    width: 100%;
    border-bottom: 1px solid #6b49f268;
    border-radius: 0;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin-left: 10px;
    display: none;
    box-shadow: none;
    margin-top: 0;
  }
  .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {
    padding: 0;
    margin-top: 0;
  }
  .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {
    padding: 5px 10px;
    display: block;
    padding-left: 0;
  }
  .navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {
    margin-top: 0;
  }

  body {
    padding-top: 0;
  }

  .hero {
    height: 100%;
    padding: 20px 0;
    background-position: top center !important;
  }

  section {
    padding: 50px 0;
  }

  footer .contact-block {
    text-align: left;
  }

  footer .contact-block .box-icon {
    justify-content: left;
    padding: 0px 0 12px 0px;
  }

  footer .contact-block h5 {
    margin-top: 5px;
  }
  .input-group-addon {
    margin-top: -11px;
  }

  .service-item,
  .service-item.service-01,
  .service-item.service-03 {
    margin-top: 20px;
  }

  section.why-choose {
    padding: 50px 0;
  }

  .feature-block-one {
    margin-top: 30px;
  }

  .free_app_section .container .free_app_inner .free_img img:last-child {
    margin-left: -180px !important;
    scale: 0.7;
  }

  .app-btn {
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .app-btn a {
    width: 200px;
    text-align: center;
  }

  ul.qr-code img {
    width: 150px !important;
    margin-top: 30px;
    margin-bottom: -30px;
  }

  .working-block:nth-child(odd) .working-block-one .inner-box {
    margin-top: 55px;
  }

  .free_app_section .container .free_app_inner {
    padding: 50px 15px !important;
  }

  .free_app_section .container .free_app_inner .free_img {
    margin-top: 0 !important;
    justify-content: center;
    margin-left: 15%;
  }
  .text_list_section {
    margin-top: 60px;
}
}

@media screen and (max-width: 991px) {
  .desktop-show {
    display: none !important;
  }
}
@media screen and (min-width: 992px) {
  .mob-show {
    display: none;
    &#custom-toggler {
      display: none;
    }
    &.tag_span {
      display: none;
    }
  }
}

.section_title h2 {
  font-size: 40px;
  font-weight: 700;
}

.free_app_section .container .free_app_inner {
  background-color: var(--color-blue);
  border-radius: 30px;
  padding: 20px 100px;
  padding-bottom: 50px;
  position: relative;
  z-index: 999999;
}

.free_app_section .container .free_app_inner .free_img {
  display: flex;
  align-items: center;
  margin-top: -120px;
}

.app-btn a:hover {
  -webkit-box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  background-color: var(--color-blue);
  border: 2px solid #fff;
}

.app-btn a:hover img {
  filter: brightness(100) saturate(0) invert(0);
}
ul.qr-code img {
  width: 190px;
}

.free_app_section .container .free_app_inner .row {
  align-items: center;
}

.app-btn li,
.qr-code li {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

.free-text h2,
.free-text p {
  color: #fff;
}

.app-btn {
  gap: 16px;
}

.app-btn a {
  display: block;
  padding: 12px 30px;
  background-color: #fff;
  border: 2px solid var(--color-blue);
  position: relative;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: 0.4s all;
}

.free_app_section .container .free_app_inner .free_img img:last-child {
  margin-left: -65px;
}

.go_top {
  position: fixed;
  right: 30px;
  bottom: 75px;
  cursor: pointer;
  transition: 0.4s all;
  opacity: 0;
}

.overlay {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  background-color:#2e358dd4;
  width: 100%;
  height: 100%;
  z-index: 99999;
  opacity: 0;
  transition: 0.4s all;
  pointer-events: none;
}

/* Scroll Text Animation */

section.fees-exchange-rates .country-display.text-center {
  width: 100%;
  background: #f8f8f8;
  max-height: 400px;
  overflow-y: auto;
  padding: 45px;
  border-radius: 0 0 30px 30px;
}

section.fees-exchange-rates .rate-display .rate-result {
  font-weight: bold;
  font-size: 18px;
}

section.fees-exchange-rates .rate-display .country-name img {
  border-radius: 100%;
  border: 1px solid #e7e7e7;
  width: 25px;
  height: 25px;
}

section.fees-exchange-rates table img {
  width: 25px;
  margin-right: 10px;
}

section.fees-exchange-rates .rate-display {
  justify-content: center;
  gap: 30px;
  align-items: center;
}

section.fees-exchange-rates {
  padding: 50px 0;
}

section.fees-exchange-rates .country-search {
  margin-bottom: 20px;
}

section.fees-exchange-rates .search {
  position: relative;
  box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
}

section.fees-exchange-rates .search input {
  height: 60px;
  text-indent: 25px;
  border: 2px solid #d6d4d4;
}

section.fees-exchange-rates .search input:focus {
  box-shadow: none;
  border: 2px solid var(--color-blue);
}

section.fees-exchange-rates .search .icofont-search {
  position: absolute;
  top: 20px;
  left: 16px;
}

section.fees-exchange-rates .search button {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 50px;
  width: 110px;
  background: var(--color-blue);
}

/* New Scroll */

.gray {
  background-color: #777;
  background-image: radial-gradient(
      circle at 47% 14%,
      rgba(205, 205, 205, 0.04) 0%,
      rgba(205, 205, 205, 0.04) 43%,
      transparent 43%,
      transparent 100%
    ),
    radial-gradient(
      circle at 35% 12%,
      rgba(215, 215, 215, 0.04) 0%,
      rgba(215, 215, 215, 0.04) 4%,
      transparent 4%,
      transparent 100%
    ),
    radial-gradient(
      circle at 1% 35%,
      rgba(24, 24, 24, 0.04) 0%,
      rgba(24, 24, 24, 0.04) 37%,
      transparent 37%,
      transparent 100%
    ),
    radial-gradient(
      circle at 21% 1%,
      rgba(0, 0, 0, 0.04) 0%,
      rgba(0, 0, 0, 0.04) 26%,
      transparent 26%,
      transparent 100%
    ),
    radial-gradient(
      circle at 23% 82%,
      rgba(249, 249, 249, 0.04) 0%,
      rgba(249, 249, 249, 0.04) 60%,
      transparent 60%,
      transparent 100%
    ),
    radial-gradient(
      circle at 11% 54%,
      rgba(251, 251, 251, 0.04) 0%,
      rgba(251, 251, 251, 0.04) 23%,
      transparent 23%,
      transparent 100%
    ),
    radial-gradient(
      circle at 69% 68%,
      rgba(234, 234, 234, 0.04) 0%,
      rgba(234, 234, 234, 0.04) 10%,
      transparent 10%,
      transparent 100%
    ),
    linear-gradient(90deg, #777, #606060);
}
.blue {
  background-color: #2c7ad2;
  background-image: radial-gradient(
      circle at 47% 14%,
      rgba(205, 205, 205, 0.04) 0%,
      rgba(205, 205, 205, 0.04) 43%,
      transparent 43%,
      transparent 100%
    ),
    radial-gradient(
      circle at 35% 12%,
      rgba(215, 215, 215, 0.04) 0%,
      rgba(215, 215, 215, 0.04) 4%,
      transparent 4%,
      transparent 100%
    ),
    radial-gradient(
      circle at 1% 35%,
      rgba(24, 24, 24, 0.04) 0%,
      rgba(24, 24, 24, 0.04) 37%,
      transparent 37%,
      transparent 100%
    ),
    radial-gradient(
      circle at 21% 1%,
      rgba(0, 0, 0, 0.04) 0%,
      rgba(0, 0, 0, 0.04) 26%,
      transparent 26%,
      transparent 100%
    ),
    radial-gradient(
      circle at 23% 82%,
      rgba(249, 249, 249, 0.04) 0%,
      rgba(249, 249, 249, 0.04) 60%,
      transparent 60%,
      transparent 100%
    ),
    radial-gradient(
      circle at 11% 54%,
      rgba(251, 251, 251, 0.04) 0%,
      rgba(251, 251, 251, 0.04) 23%,
      transparent 23%,
      transparent 100%
    ),
    radial-gradient(
      circle at 69% 68%,
      rgba(234, 234, 234, 0.04) 0%,
      rgba(234, 234, 234, 0.04) 10%,
      transparent 10%,
      transparent 100%
    ),
    linear-gradient(90deg, #2c7ad2, #1568c6);
}
.orange {
  background-color: #e77614;
  background-image: radial-gradient(
      circle at 46% 40%,
      rgba(228, 228, 228, 0.06) 0%,
      rgba(228, 228, 228, 0.06) 13%,
      transparent 13%,
      transparent 100%
    ),
    radial-gradient(
      circle at 11% 41%,
      rgba(198, 198, 198, 0.06) 0%,
      rgba(198, 198, 198, 0.06) 19%,
      transparent 19%,
      transparent 100%
    ),
    radial-gradient(
      circle at 52% 23%,
      rgba(14, 14, 14, 0.06) 0%,
      rgba(14, 14, 14, 0.06) 69%,
      transparent 69%,
      transparent 100%
    ),
    radial-gradient(
      circle at 13% 85%,
      rgba(148, 148, 148, 0.06) 0%,
      rgba(148, 148, 148, 0.06) 44%,
      transparent 44%,
      transparent 100%
    ),
    radial-gradient(
      circle at 57% 74%,
      rgba(232, 232, 232, 0.06) 0%,
      rgba(232, 232, 232, 0.06) 21%,
      transparent 21%,
      transparent 100%
    ),
    radial-gradient(
      circle at 59% 54%,
      rgba(39, 39, 39, 0.06) 0%,
      rgba(39, 39, 39, 0.06) 49%,
      transparent 49%,
      transparent 100%
    ),
    radial-gradient(
      circle at 98% 38%,
      rgba(157, 157, 157, 0.06) 0%,
      rgba(157, 157, 157, 0.06) 24%,
      transparent 24%,
      transparent 100%
    ),
    radial-gradient(
      circle at 8% 6%,
      rgba(60, 60, 60, 0.06) 0%,
      rgba(60, 60, 60, 0.06) 12%,
      transparent 12%,
      transparent 100%
    ),
    linear-gradient(90deg, #ff7600, #ff7600);
}

.red {
  background-color: #c82736;
  background-image: radial-gradient(
      circle at 19% 90%,
      rgba(190, 190, 190, 0.04) 0%,
      rgba(190, 190, 190, 0.04) 17%,
      transparent 17%,
      transparent 100%
    ),
    radial-gradient(
      circle at 73% 2%,
      rgba(78, 78, 78, 0.04) 0%,
      rgba(78, 78, 78, 0.04) 94%,
      transparent 94%,
      transparent 100%
    ),
    radial-gradient(
      circle at 45% 2%,
      rgba(18, 18, 18, 0.04) 0%,
      rgba(18, 18, 18, 0.04) 55%,
      transparent 55%,
      transparent 100%
    ),
    radial-gradient(
      circle at 76% 60%,
      rgba(110, 110, 110, 0.04) 0%,
      rgba(110, 110, 110, 0.04) 34%,
      transparent 34%,
      transparent 100%
    ),
    radial-gradient(
      circle at 68% 56%,
      rgba(246, 246, 246, 0.04) 0%,
      rgba(246, 246, 246, 0.04) 16%,
      transparent 16%,
      transparent 100%
    ),
    radial-gradient(
      circle at 71% 42%,
      rgba(156, 156, 156, 0.04) 0%,
      rgba(156, 156, 156, 0.04) 47%,
      transparent 47%,
      transparent 100%
    ),
    radial-gradient(
      circle at 46% 82%,
      rgba(247, 247, 247, 0.04) 0%,
      rgba(247, 247, 247, 0.04) 39%,
      transparent 39%,
      transparent 100%
    ),
    radial-gradient(
      circle at 50% 47%,
      rgba(209, 209, 209, 0.04) 0%,
      rgba(209, 209, 209, 0.04) 45%,
      transparent 45%,
      transparent 100%
    ),
    linear-gradient(90deg, #e53949, #cc2232);
}

.purple {
  background-color: #8d3dae;
  background-image: radial-gradient(
      circle at 47% 14%,
      rgba(205, 205, 205, 0.04) 0%,
      rgba(205, 205, 205, 0.04) 43%,
      transparent 43%,
      transparent 100%
    ),
    radial-gradient(
      circle at 35% 12%,
      rgba(215, 215, 215, 0.04) 0%,
      rgba(215, 215, 215, 0.04) 4%,
      transparent 4%,
      transparent 100%
    ),
    radial-gradient(
      circle at 1% 35%,
      rgba(24, 24, 24, 0.04) 0%,
      rgba(24, 24, 24, 0.04) 37%,
      transparent 37%,
      transparent 100%
    ),
    radial-gradient(
      circle at 21% 1%,
      rgba(0, 0, 0, 0.04) 0%,
      rgba(0, 0, 0, 0.04) 26%,
      transparent 26%,
      transparent 100%
    ),
    radial-gradient(
      circle at 23% 82%,
      rgba(249, 249, 249, 0.04) 0%,
      rgba(249, 249, 249, 0.04) 60%,
      transparent 60%,
      transparent 100%
    ),
    radial-gradient(
      circle at 11% 54%,
      rgba(251, 251, 251, 0.04) 0%,
      rgba(251, 251, 251, 0.04) 23%,
      transparent 23%,
      transparent 100%
    ),
    radial-gradient(
      circle at 69% 68%,
      rgba(234, 234, 234, 0.04) 0%,
      rgba(234, 234, 234, 0.04) 10%,
      transparent 10%,
      transparent 100%
    ),
    linear-gradient(90deg, #8d3dae, #8d3dae);
}
.green {
  background-color: #28a92b;
  background-image: radial-gradient(
      circle at 46% 40%,
      rgba(228, 228, 228, 0.06) 0%,
      rgba(228, 228, 228, 0.06) 13%,
      transparent 13%,
      transparent 100%
    ),
    radial-gradient(
      circle at 11% 41%,
      rgba(198, 198, 198, 0.06) 0%,
      rgba(198, 198, 198, 0.06) 19%,
      transparent 19%,
      transparent 100%
    ),
    radial-gradient(
      circle at 52% 23%,
      rgba(14, 14, 14, 0.06) 0%,
      rgba(14, 14, 14, 0.06) 69%,
      transparent 69%,
      transparent 100%
    ),
    radial-gradient(
      circle at 13% 85%,
      rgba(148, 148, 148, 0.06) 0%,
      rgba(148, 148, 148, 0.06) 44%,
      transparent 44%,
      transparent 100%
    ),
    radial-gradient(
      circle at 57% 74%,
      rgba(232, 232, 232, 0.06) 0%,
      rgba(232, 232, 232, 0.06) 21%,
      transparent 21%,
      transparent 100%
    ),
    radial-gradient(
      circle at 59% 54%,
      rgba(39, 39, 39, 0.06) 0%,
      rgba(39, 39, 39, 0.06) 49%,
      transparent 49%,
      transparent 100%
    ),
    radial-gradient(
      circle at 98% 38%,
      rgba(157, 157, 157, 0.06) 0%,
      rgba(157, 157, 157, 0.06) 24%,
      transparent 24%,
      transparent 100%
    ),
    radial-gradient(
      circle at 8% 6%,
      rgba(60, 60, 60, 0.06) 0%,
      rgba(60, 60, 60, 0.06) 12%,
      transparent 12%,
      transparent 100%
    ),
    linear-gradient(90deg, #28a92b, #10a614);
}
/* End new scroll */


.light-color {
  color: #fff;
}


/* New Update */
section.new-update .new-badge {
  display: inline-block;
  background-color: #fff;
  color: var(--color-blue);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


section.new-update .content {
  padding: 30px;
}

section.new-update .benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

section.new-update .benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

section.new-update .benefit-card:hover {
  transform: translateY(-5px);
}

section.new-update .benefit-icon {
  font-size: 24px;
  color: var(--color-blue);
  margin-bottom: 12px;
  background: rgba(67, 97, 238, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

section.new-update .benefit-title {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 16px;
}

section.new-update .benefit-desc {
  font-size: 14px;
  color: var(--text);
  opacity: 0.8;
}

section.new-update .display-img img {
  border-radius: var(--corner-radius-l);
  height: 100%;
}

section.new-update .how-it-works {
  background: var(--color-blue);
  border-radius: var(--corner-radius-l);
  padding:25px 25px 0 25px;
  position: sticky;
  top: 160px;
}

section.new-update .how-it-works h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

section.new-update .steps {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

section.new-update .step {
  display: flex;
  gap: 15px;
  align-items: center;
}

section.new-update .step-number {
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(63, 81, 181, 0.4);
}

section.new-update .step-content {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-blue);
}

section.new-update .cta-section {
  text-align: center;
  margin-top: 30px;
}

section.new-update .cta-title {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

section.new-update .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
  border: none;
  cursor: pointer;
  margin-bottom: 25px;
}

section.new-update .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
}

section.new-update .download-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

section.new-update .download-btn {
  height: 50px;
  transition: transform 0.3s;
}

section.new-update .download-btn:hover {
  transform: scale(1.05);
}

section.new-update .security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  font-size: 14px;
  color: var(--text);
  opacity: 0.7;
}

section.new-update .footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: #888;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .benefits {
      grid-template-columns: 1fr;
  }
  
  .hero h1 {
      font-size: 24px;
  }
  
  .hero p {
      max-width: 100%;
  }
  
  .download-buttons {
    
      align-items: center;
  }

  section.why-choose-fjpay {
    padding:60px 0 0 0;
  }
}

@media (max-width: 480px) {
  .container {
      border-radius: 16px;
  }
  
  .hero {
      padding: 25px 20px;
  }
  
  .content {
      padding: 25px 20px;
  }
  
  .benefit-card {
      padding: 15px;
  }
}



/* End Update */

/* FAQ */

section.faq {
  padding: 0 0 20px 0;
}
section.faq .panel-title a {
  display: block;
  background: #f6f6f6;
  border-bottom: 1px solid #ddd;
  color: var(--dark);
  padding: 20px;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
}

section.faq .panel-body {
  padding: 16px;
}

/* Contact us */
.contact-details-info {
  position: relative;
  display: block;
  margin-top: 41px;
}

section.contact-details h2 {
  position: relative;
  font-size: 28px;
  margin-bottom: 0;
}

section.contact-details li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-details-info li .icon {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background-color: var(--color-blue);
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 80px 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 80px;
}

.contact-details-info li .icon i {
  color: #fff;
  font-size: 38px;
}

.form-control, .login-box input {
  height: calc(2.25rem + 27px);
  padding: 14px 30px;
  outline: 0;
  background-color: #f4f5f8;
  border: 1px solid #dedee0;
  color: #686a6f;
  font-size: 0.9rem;
  width: 100%;
  border-radius: 8px;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

button {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  padding: 15px 50px;
  font-weight: 700;
  overflow: hidden;
  color: #ffffff;
  border-radius: 8px;
  border: 2px solid var(--color-blue);
  background: var(--gradient-1);
  outline: none;
}

button.outline {
  border: 2px solid var(--color-blue);
  background: #fff;
  color: var(--color-blue);
}

.informative-field {
  display: block;
  position: relative;
  width: 100%;
}

.informative-field label {
  font-weight: bold;
  margin-bottom: 8px;
}

.icon-letter:before {
  content: "\f0e0";
  font-family: FontAwesome;
  position: relative;
  color: #282a2d;
}
.icon-password {
  top: 1.7rem;
  font-size: 22px;
}

.informative-field .icon-letter, .icon-password {
  position: absolute;
  z-index: 1;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.informative-field .field-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #282a2d;
}

.informative-field .icon-letter, .icon-password {
  position: absolute;
  z-index: 1;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}



.informative-field i  {
  position: absolute;
  z-index: 1;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}


i.icofont-eye {
  position: absolute;
  top: 50%;
  right: 1rem;
  color: #282a2d;
  left: unset;
}
.icofont-eye:before {
  font-size: 25px;
  cursor: pointer;
}
.login-box .icofont-email:before, .login-box .icofont-lock {
  font-size: 19px;
}


.fa-eye:before {
  content: "\ef24";
}



h4.panel-title {
  position: relative;
}

h4.panel-title i {
  color: #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
}

/* End Sxcroll Text */

/* Animation */

.moving_position_animatin {
  position: relative;
  animation: moving_position_animatin 6s infinite linear;
  z-index: -1;
}

.about_app_section .about_img img {
  max-width: 100%;
}

.screen_img {
  margin-left: -135px;
  margin-top: 110px;
}
.about_app_section .about_img .screen_img img {
  animation-delay: 3s;
}

.screen_img img {
  animation-delay: 3s;
}

.moving_animation {
  animation: moving_object 6s infinite linear;
}

/* Login page */

button {
  background: var(--color-blue);
}
.login-box {
  padding: 1.75rem;
  border-radius: calc(2 * 0.25rem);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .2);
}

.flex-card {
  display: flex;
  width: 100%;
  max-width: 90rem;
  margin-right: auto;
  margin-left: auto;
  justify-content: space-around;
}

.registration-form, .reg-info {
  max-width: 45rem !important;
  margin: 0 auto;
}



.modal-title {
  margin-bottom: 10px;

}

.full-width {
  width: 100%;
}

.accept-terms {
  align-items: center;
  margin-bottom: 16px;
  gap: 10px;
}

@keyframes moving_object {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes moving_position_animatin {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(0);
  }
}