/* ---------------- Google fonts ------------------ */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* External fonts */
@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-UltraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Roman.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-UltraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-HeavyItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---------------- Basic css ------------------ */
:root {
  scroll-behavior: unset;
  --white: #ffffff;
  --black: #000000;
  --blue: #0000fd;
  --body: #5b5b66;
  --title: #212121;
  --bgLightBlue: #f7fafd;

  --white_img: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  --black_img: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%);
  --blue_img: brightness(0) saturate(100%) invert(8%) sepia(100%)
    saturate(7186%) hue-rotate(248deg) brightness(99%) contrast(144%);

  --primaryfont: "Helvetica Neue";
  --secondaryfont: "Inter", sans-serif;

  --menutop: 4rem;
  --menuHeight: 6rem;
}

img {
  width: 100%;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none !important;
  transition: 200ms;
  color: inherit;
}

.f-right {
  float: right;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

/* body */
body {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: -0.05em;
  color: var(--body);
  overflow-x: hidden;
  font-family: var(--primaryfont);
  background: var(--bgLightBlue);
}

.container {
  padding-left: 0;
  padding-right: 0;
}

main {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.figure img,
.figure {
  width: 100%;
}

.page-template-default p {
  padding-bottom: 20px;
  padding-top: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-family: var(--secondaryfont);
  color: var(--title);
}

.result-row p {
  font-weight: 500;
}

/* colros */
.title_color {
  color: var(--title) !important;
}

.body_color {
  color: var(--body) !important;
}

.bgLightBlue {
  background: var(--bgLightBlue) !important;
}

.bgblue {
  background: var(--blue) !important;
}

/* image colros */
.white_img {
  -webkit-filter: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7498%)
    hue-rotate(67deg) brightness(112%) contrast(100%);
}

.black_img {
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(0%)
    saturate(16%) hue-rotate(309deg) brightness(93%) contrast(107%);
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%)
    hue-rotate(309deg) brightness(93%) contrast(107%);
}

.blue_img {
  -webkit-filter: var(--blue_img);
  filter: var(--blue_img);
}

.title_img_color {
  filter: brightness(0) saturate(100%) invert(9%) sepia(1%) saturate(422%)
    hue-rotate(314deg) brightness(94%) contrast(88%);
}

/* link */
.link {
  color: var(--blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  line-height: 1;
  text-decoration: underline !important;
  letter-spacing: 0;
}

.link img {
  filter: var(--blue_img);
  transition: 300ms;
}

.link:hover img {
  filter: brightness(0) saturate(100%) invert(9%) sepia(1%) saturate(422%)
    hue-rotate(314deg) brightness(94%) contrast(88%);
  transform: rotate(360deg);
}

.link.v2 {
  color: var(--white);
}

.link.v2 img {
  filter: var(--white_img);
}

/* Pill outline CTA */
.link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: fit-content;
  padding: 1.2rem 2.8rem;
  border-radius: 10rem;
  background: transparent;
  border: 0.1rem solid #0000FD;
  color: #0000FD;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.link-pill img {
  flex-shrink: 0;
  filter: var(--blue_img);
  transition: filter 0.25s ease, transform 0.3s ease;
}

.link-pill:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.link-pill:hover img,
.link.link-pill:hover img {
  transform: translateX(0.3rem);
  filter: var(--white_img);
}

/* Service card CTA — blue pill */
.service_bottom {
  display: flex;
  justify-content: center;
  padding-top: 0.8rem;
}

.service_bottom .link-pill {
  width: 100%;
}

/* Blog card CTA — blue pill (content width) */
.blog_info .link-pill {
  margin-top: 0.8rem;
}

/* Careers job card CTA */
.job_apply_button .link-pill {
  flex-shrink: 0;
}

/* Testimonial / dark background — white pill */
.testimonial_info .link-pill,
.link-pill.link-pill--light {
  border: 0.1rem solid var(--white);
  color: var(--white);
}

.testimonial_info .link-pill img,
.link-pill.link-pill--light img {
  filter: var(--white_img);
}

.testimonial_info .link-pill:hover,
.link-pill.link-pill--light:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

.testimonial_info .link-pill:hover img,
.link-pill.link-pill--light:hover img {
  filter: var(--blue_img);
}

/* Font Weights */
.f_300 {
  font-weight: 300 !important;
}

.f_400 {
  font-weight: 400 !important;
}

.f_500 {
  font-weight: 500 !important;
}

.f_600 {
  font-weight: 600 !important;
}

.f_700 {
  font-weight: 700 !important;
}

.f_800 {
  font-weight: 800 !important;
}

.f_900 {
  font-weight: 900 !important;
}

/* titles */
.title_76 {
  font-weight: 600;
  font-size: 7.6rem;
  line-height: 8.6rem;
  letter-spacing: -0.05em;
}

.title_48 {
  font-weight: 600;
  font-size: 4.8rem;
  line-height: 5.2rem;
}

.title_40 {
  font-weight: 600;
  font-size: 4rem;
  line-height: 4.3rem;
  letter-spacing: -0.05em;
}

.title_36 {
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 4.6rem;
}

.title_32 {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 4.6rem;
  letter-spacing: -0.05em;
}

.title_24 {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 3.4rem;
  letter-spacing: -0.05em;
}

/* texts */
.text_xl {
  font-size: 2rem;
}

.text_lg {
  font-size: 1.8rem;
  line-height: 2.8rem;
}

.text_md {
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: -0.05em;
}

.text_sm {
  font-size: 1.4rem;
  line-height: 1.8rem;
}

.text_xsm {
  font-size: 1.2rem;
  line-height: 1.5rem;
}

/* -------------- preloader --------------- */
#preloader {
  position: fixed;
  background: var(--dark);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999999;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader3 {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  padding: 0;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: var(--white);
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@-webkit-keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* -------------- Back to top ------------ */

/* ================= #Progress ================= */
.progress-wrap {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  height: 4.5rem;
  width: 4.5rem;
  cursor: pointer;
  display: block;
  border-radius: 5rem;
  box-shadow: inset 0 0 0 0.2rem rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.5rem);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  background: var(--blue);
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.arrow_top {
  width: 2rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  filter: var(--white_img);
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--white);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/* ========== Buttons ========== */
.button {
  height: 5.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.4rem;
  color: #f7f8f8;
  background: #0000fd;
  border-radius: 10rem;
  gap: 0.8rem;
  border: 0.1rem solid #0000fd;
  width: fit-content;
  white-space: nowrap;
}

.button:hover img {
  transform: rotate(360deg);
}

.button:hover {
  background: #00004a;
  border: 0.1rem solid #00004a;
  color: #f7f8f8;
}

.button.button_outline {
  background: var(--white);
  border: 1px solid #0000FD;
  color: #0000FD;
}

.button.button_outline:hover {
  background: #212121;
  color: var(--white);
  border: 0.1rem solid #212121;
}

.button_link {
  border: transparent;
  background: transparent;
  text-decoration: underline !important;
  color: #0000fd;
}

.button_link img {
  filter: var(--blue_img);
}

.button_link:hover {
  background: #21212123;
  color: #0000fd;
  border: transparent;
}

.button_white {
  background: var(--white);
  color: var(--blue);
  border: 0.1rem solid var(--white);
}

.button_white img {
  filter: var(--blue_img);
}

.button_white:hover {
  background: var(--blue);
  color: var(--white);
  border: 0.1rem solid var(--blue);
}

.button_white:hover img {
  filter: var(--white_img);
}

/* -------------- Header Styles --------------- */
.site_header {
  position: fixed;
  z-index: 999999;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: transparent;
  background: #f7fafd;
}

/* -------------- header_main--------------- */
.header_main {
  height: var(--menuHeight);
}

.site_header.sticky {
  background: #f7fafd;
  box-shadow: 0 0.1rem 0.9rem 0 #00000026;
}

.logo {
  display: flex;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 !important;
  margin: 0 !important;
}

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

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

.hamburger_wrap {
  width: 12rem;
  display: flex;
  align-items: center;
  justify-content: end;
}

.hamburger_btn img {
  width: 2rem;
}

.logo img {
  width: 17.1rem;
}

.main_menu {
  gap: 0;
  margin-left: 3.2rem;
}

.icon_12 {
  width: 1.2rem;
}

.icon_20 {
  width: 2rem;
}

.header_btns .button {
  padding: 0 1.6rem;
  height: 4.4rem;
}

.header_btns {
  gap: 0.8rem;
}

/* ======== dropdown ========== */
.dropdown-toggle::after {
  display: none;
}

.dropdown-toggle,
.main_menu > a {
  color: #00004a;
  font-size: 1.6rem;
  line-height: 2.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.2rem;
  border-radius: 0.8rem;
}

.dropdown-toggle img {
  width: 1.2rem;
  transition: 0.25s ease;
}

.dropdown-menu {
  padding: 2rem 0;
  box-shadow: 0 0.2rem 2rem 0 #0000001a;
  border: none;
  border-radius: 1rem;
}

.dropdown-item {
  padding: 0.8rem 2rem;
  color: #00004a;
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.dropdown-menu {
  padding: 1.4rem 0;
}

.dropdown-toggle.show img {
  transform: rotate(180deg);
}

/* Bootstrap active state for dropdown items (when clicked) */
.dropdown-item:active {
  color: var(--white);
  text-decoration: none;
  background-color: var(--blue);
}

/* Active navigation link styles - current page */
.menu_link.active,
.dropdown-toggle.active {
  color: #004FFF !important;
}

/* Active dropdown item for current page */
.dropdown-item.active {
  color: #004FFF !important;
  background-color: transparent;
}

/* Footer navigation active links */
.footer_main a.current-menu-item,
.footer_main a.current-page-item,
.footer_main .current-menu-item > a,
.footer_main .current-page-item > a,
.footer_bottom_contents a.current-menu-item,
.footer_bottom_contents a.current-page-item {
  color: #004FFF !important;
}

/* ==================== header_top ===================== */
.header_top {
  background: #212121;
  height: var(--menutop);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9999;
}

.hdt_link {
  display: flex;
  align-items: center;
  color: #f7fafd;
  font-size: 1.2rem;
  font-weight: 400;
  gap: 0.5rem;
  padding: 0 1.6rem;
  line-height: 1;
}

.icon_16 {
  width: 1.6rem;
}

.hdt_link:hover {
  color: #f7fafd;
  opacity: 0.75;
}

.nice-select {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  padding-right: 1.4rem;
  align-items: center;
  display: flex;
  line-height: 1.4rem;
  height: 1.4rem;
  font-size: 1.2rem;
}

.language_select .nice-select:after,
.language_switcher_current::after {
  border-bottom: 0.2rem solid #f7fafd;
  border-right: 0.2rem solid #f7fafd;
  height: 0.6rem;
  width: 0.6rem;
  margin-top: -0.4rem;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.language_switcher {
  position: relative;
}

.language_switcher_current {
  list-style: none;
  cursor: pointer;
  padding-right: 1.4rem;
  line-height: 1.4rem;
  height: 1.4rem;
  font-size: 1.2rem;
  color: #f7fafd;
}

.language_switcher_current::-webkit-details-marker,
.language_switcher_current::marker {
  display: none;
  content: "";
}

.language_switcher_current::after {
  content: "";
  display: block;
  top: 50%;
  transform: rotate(45deg);
  transform-origin: 66% 66%;
}

.language_switcher[open] .language_switcher_current::after {
  transform: rotate(-135deg);
}

.language_switcher_list {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  z-index: 999;
  width: 13rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  overflow: hidden;
}

.language_switcher_link {
  display: block;
  line-height: 3.5rem;
  height: 3.5rem;
  color: var(--title);
  padding: 0 1.4rem;
  font-weight: 500;
  font-size: 1.2rem;
}

.language_switcher_link:hover,
.language_switcher_link.is-active {
  background: #f6f6f6;
  color: var(--title);
  opacity: 1;
}

.hdt_link:nth-child(2) {
  border-left: 0.1rem solid #e8e9ea;
  border-right: 0.1rem solid #e8e9ea;
}

.language_select {
  padding-right: 0;
}

.language_select:hover {
  opacity: 1 !important;
}

.nice-select .option {
  line-height: 3.5rem;
  height: 3.5rem;
  color: var(--title);
  padding: 0 1.4rem;
  font-weight: 500;
  min-height: 3.5rem;
}

.nice-select .list {
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  z-index: 999;
  width: 13rem;
  right: 0;
  left: auto;
}

/* ============== hero_area ================= */
.hero_area {
  padding: 12.5rem 0 12.5rem;
}

.lb_img {
  width: 11.5rem;
}

.hero_bottom .text_sm {
  color: #5b5b66;
}

.desc_link {
  text-decoration: underline !important;
}

.desc_link:hover {
  text-decoration: none !important;
  color: var(--black);
}

.hero_img img {
  width: 51.9rem;
}

.hero_btns {
  gap: 0.8rem;
}

/* ========== finance_area ========== */
.section_padding {
  padding: 12rem 0;
}

.latest_news_area.section_padding {
  padding: 2rem 0;
}

.btns {
  gap: 1.6rem;
}

.icon_24 {
  width: 2.4rem;
}

.features_list {
  display: grid;
  gap: 0.8rem;
}

.features_list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.features_list.v2 li {
  color: #212121;
}

.features_list li img {
  flex: 0 0 auto;
}

.finance_area--slides .finance_slide_row {
  --bs-gutter-x: 2.4rem;
  --bs-gutter-y: 2.4rem;
}

.finance_slide_img__media {
  border-radius: 1.2rem;
  width: 100%;
  max-width: 51.9rem;
  height: auto;
  object-fit: cover;
}

.finance_area .finance_area_slider_arrows.slider-arrows {
  width: 100%;
  max-width: 100%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  box-sizing: border-box;
  justify-content: space-between;
  pointer-events: none;
}

.finance_area .finance_area_slider_arrows.slider-arrows .swiper-arrow {
  pointer-events: auto;
  margin-top: 0;
}

/* ========== finance_area ========== */
.service_area {
  position: relative;
  background: radial-gradient(
    50.05% 50.05% at 50% 0%,
    #2a206a 0%,
    rgba(42, 32, 106, 0) 100%
  );
}

/* ================= Service area ================= */
.service_area .row {
  --bs-gutter-x: 2.4rem;
  --bs-gutter-y: 5.6rem;
  padding-top: 3.2rem;
}

.icon_box {
  height: 6.4rem;
  width: 6.4rem;
  background: linear-gradient(180deg, #ffffff 0%, #e8e9ea 100%);
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon_inner {
  width: 4.8rem;
  height: 4.8rem;
  background: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  transition: 0.25s ease;
}

.service_box {
  position: relative;
  background: var(--white);
  padding: 4.8rem 2.4rem;
  border-radius: 1.2rem;
  box-shadow: 0 3.7rem 3.7rem -1rem #0000001a;
  height: 100%;
  display: grid;
  align-content: space-between;
}

.service_box .icon_box {
  position: absolute;
  top: -3.2rem;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.25s ease;
}

.service_box:hover .icon_box {
  box-shadow: 0 0.4rem 0.6rem 0 #00000010;
}

.service_box:hover .icon_box .icon_inner {
  background: var(--blue);
}

/* ================= Blog area ================= */
.blog_area .row {
  --bs-gutter-x: 2.4rem;
  --bs-gutter-y: 2.4rem;
}

.blog_catagory {
  width: fit-content;
  padding: 0 1.2rem;
  background: #dee1fd;
  border-radius: 10rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: var(--blue);
}

.blog_box_flex {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}

.blog_img {
  display: block;
  overflow: hidden;
  border-radius: 1.2rem;
}

.blog_img:hover img {
  transform: scale(1.025);
}

.blog_img img {
  transition: 0.25s ease;
}

.blog-posts-image img {
  height: 272px;
  object-fit: cover;
}

.blog_box_flex .blog_info {
  padding-top: 0;
}

.blog_box_flex .blog_img img {
  width: 34.3rem;
  height: 23.1rem;
  object-fit: cover;
}

.blog_box_flex .blog_img {
  flex: 0 0 auto;
}

.blog_info .text_lg {
  color: #221122;
}

/* ================== footer_section ================= */
.footer_contact_box a:hover {
  text-decoration: underline !important;
}

.footer_contact_form .text-decoration-underline {
  color:#fff;
}

.footer_branch_details p {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.footer_branch_details a {
  text-decoration: none;
}

.footer_branch_details a:hover {
  text-decoration: underline;
}

.footer_branch_social {
  gap: 1.2rem;
}

.footer_branch_social_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  transition: opacity 0.25s ease;
}

.footer_branch_social_link:hover {
  opacity: 0.75;
}

.footer_contact_form .form-control {
  background: var(--white);
  border-color: transparent;
}

.footer_contact_form .form-control::placeholder {
  color: #6f6f78;
}

.footer_contact_form .form-check-label,
.footer_contact_form .form-check-label a {
  color: var(--white);
}

.footer_contact_form .form-check-input {
  border-color: rgba(255, 255, 255, 0.45);
  background-color: transparent;
}

.footer_contact_form .form-check-input:checked {
  background-color: var(--blue);
  border-color: var(--blue);
}

.footer_contact_form .button--footer-submit {
  background: var(--white);
  color: var(--blue);
  border-radius: 10rem;
  width: fit-content;
}

.footer_contact_form .button--footer-submit img {
  filter: var(--blue_img);
}

.footer_contact_form .button--footer-submit:hover {
  background: #f0f0ff;
  color: var(--blue);
}

.footer_contact_form_success {
  padding: 2.4rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
}

.footer_bottom_contents a,
.footer_bottom_contents p {
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 0;
}

.footer_bottom_contents a:hover {
  text-decoration: underline !important;
  color: var(--white);
}

.footer_bottom_contents {
  display: grid;
  gap: 0.8rem;
}

.bottom_text {
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: #6f6f78;
  max-width: 95.7rem;
  margin: 0 auto;
  letter-spacing: 0;
}

/* row_gap_24 */
.row_gap_24 {
  --bs-gutter-x: 2.4rem;
  --bs-gutter-y: 0;
}

/* ============ numbers_area =========== */
.numbers_area {
  background: #040728;
  padding: 12rem 0 16rem;
  position: relative;
}

.numbers_area .container {
  padding: 0 10.8rem;
}

.numbers_area .row.row_gap_24 > [class*="col-"] {
  display: flex;
}

.numbers_box img,
.numbers_box span .numbers_box p {
  z-index: 3;
  position: relative;
}

.numbers_box {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 1.6rem;
  position: relative;
}

.numbers_box > p {
  margin-top: auto;
}

.gradient_bg {
  position: relative;
}

.gradient_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.6rem;
  z-index: 2;
  background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.04)
    ),
    radial-gradient(
      92.45% 100.08% at 50% 0%,
      rgba(178, 178, 244, 0.2) 0%,
      rgba(39, 41, 52, 0.2) 100%
    );
}

.gradient_bg::after {
  content: "";
  position: absolute;
  top: -0.15rem;
  left: -0.15rem;
  width: calc(100% + 0.3rem);
  height: calc(100% + 0.3rem);
  border-radius: 1.6rem;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: 0.25s ease;
}

/* ================= testimonial_area ================== */
.testimonial_area {
  margin-top: 12rem;
}

.testimonial_bg {
  position: absolute;
  bottom: -0.01rem;
  left: 0;
  width: 100vw;
  height: 5rem;
  object-fit: cover;
}

.testimonial_img {
  width: 24.2rem;
  height: 22.2rem;
  object-fit: cover;
  border-radius: 1.2rem;
  flex: 0 0 auto;
}

.testimonial_box {
  gap: 3.2rem;
  padding: 4.8rem 4rem;
  border-radius: 1.6rem;
}

.testimonial_badge {
  height: 2.5rem;
  display: flex;
  align-items: center;
  background: #ffffff1a;
  width: fit-content;
  padding: 0 0.8rem;
  border-radius: 0.4rem;
  color: var(--white);
  font-size: 1.4rem;
}

.testimonial_info,
.testimonial_img {
  position: relative;
  z-index: 3;
}

.testimonial_box.gradient_bg::before {
  background: radial-gradient(
    72.92% 98.08% at 100% 100%,
    rgba(214, 220, 236, 0.55) 0%,
    rgba(37, 49, 79, 0.55) 100%
  );
}

.testimonial_box.gradient_bg::after {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.testimonial_slider {
  border-radius: 1.6rem;
  overflow: hidden;
  padding: 0.2rem;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-arrow {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(203, 212, 235, 0.15);
  border-radius: 10rem;
  transition: 0.25s ease;
}

.slider-arrows {
  position: absolute;
  width: calc(100% + 21.8rem);
  height: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.swiper-arrow:hover {
  background: rgb(203, 212, 235, 0.35);
}

.Blue_circle {
  position: absolute;
  left: -15.2rem;
  top: -13.5rem;
  width: 38rem;
  pointer-events: none;
}

.Purple_circle {
  position: absolute;
  right: -15.2rem;
  bottom: -13.5rem;
  width: 38rem;
  pointer-events: none;
}

.footer_main {
  background: var(--white);
  border-radius: 1.6rem;
}

.icon_32 {
  width: 3.2rem;
}

.social_icons {
  gap: 1.6rem;
}

.footer_box ul {
  display: grid;
  gap: 0.8rem;
}

.social_icon:hover {
  opacity: 0.5;
}

.footer_box .text_lg {
  color: #212121;
}

.hero_area.v-2 {
  padding: 19rem 0 8.8rem;
}

.hero_area.v-2.hero_area--bg-bl {
  position: relative;
  overflow: hidden;
}

.hero_area.v-2.hero_area--bg-bl[style*="background-image"] {
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto;
}

.hero_area.v-2.hero_area--bg-bl .container {
  position: relative;
  z-index: 1;
}

.hero_area--sustainability {
  position: relative;
  background-color: #00004a;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 52rem;
  display: flex;
  align-items: center;
  padding: 12rem 0 8rem;
  overflow: hidden;
}

.hero_area--sustainability::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 57.48%);
  pointer-events: none;
  z-index: 0;
}

.hero_area--sustainability .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero_area--sustainability .row {
  justify-content: flex-start;
}

.hero_area--sustainability .row > [class*="col-"] {
  margin-left: 0;
  margin-right: 0;
}

.hero_area--sustainability .sustainability_hero_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.hero_area--sustainability .sustainability_hero_content .title_48,
.hero_area--sustainability .sustainability_hero_content .text_lg {
  width: 100%;
}

.hero_area--sustainability-landing .sustainability_hero_content .title_48 {
  width: 100%;
  line-height: 48px;
  margin-bottom:1rem;
}

.hero_area--sustainability .button {
  width: fit-content;
}

.hero_area--sustainability.hero_area--sustainability-landing {
  background-color: #ecf1f5;
  background-image: none !important;
  min-height: auto;
  padding: 15.3rem 0 5rem;
}

.hero_area--sustainability.hero_area--sustainability-landing::before {
  display: none;
}

.hero_area--sustainability.hero_area--sustainability-landing .row {
  justify-content: center;
}

.hero_area--sustainability.hero_area--sustainability-landing .sustainability_hero_content {
  align-items: center;
  text-align: center;
}

.hero_area--sustainability.hero_area--sustainability-landing .button {
  margin-left: auto;
  margin-right: auto;
}

.hero_area.v-2.hero_area--become-customer {
  position: relative;
  background-color: #00004a;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 52rem;
  display: flex;
  align-items: center;
  padding: 12rem 0 8rem;
  overflow: hidden;
}

.hero_area.v-2.hero_area--become-customer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 57.48%);
  pointer-events: none;
  z-index: 0;
}

.hero_area.v-2.hero_area--become-customer .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero_area.v-2.hero_area--become-customer .row {
  justify-content: flex-start;
}

.hero_area.v-2.hero_area--become-customer .row > [class*="col-"] {
  margin-left: 0;
  margin-right: 0;
}

.become-customer_hero_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.become-customer_hero_content .title_48,
.become-customer_hero_content .text_lg {
  width: 100%;
}

.hero_area.v-2.hero_area--become-customer .become-coustomer-button {
  justify-content: flex-start;
}

.hero_area.v-2.hero_area--term-deposits {
  position: relative;
  background-color: #1a1a2e;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 52rem;
  display: flex;
  align-items: center;
  padding: 12rem 0 8rem;
  overflow: hidden;
}

.hero_area.v-2.hero_area--term-deposits::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 0;
}

.hero_area.v-2.hero_area--term-deposits .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.term-deposits_hero_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.term-deposits_hero_content .title_48,
.term-deposits_hero_content .text_lg {
  width: 100%;
}

.hero_area.v-2.hero_area--term-deposits .button {
  width: fit-content;
}

.hero_area.v-2.hero_area--term-deposits .term-deposits_hero_features {
  margin-left: auto;
  padding-left: 8rem;
  max-width: 54rem;
}

.hero_area.v-2.hero_area--term-deposits .term-deposits_hero_features .bank_seeks_wrapper {
  padding-bottom: 3.2rem;
}

.hero_area.v-2.hero_area--term-deposits .term-deposits_hero_features .bank_seeks_content {
  width: auto;
  max-width: 43.9rem;
}

.hero_area.v-2.hero_area--term-deposits .term-deposits_hero_features .bank_seeks_content b {
  color: var(--white);
}

.hero_area.v-2.hero_area--term-deposits .term-deposits_hero_features .bank_seeks_wrapper:last-child {
  padding-bottom: 0;
}

/* business-loan */
.row_gap_16 {
  --bs-gutter-x: 1.6rem;
  --bs-gutter-y: 0;
}

.text-decoration-underline {
  color: var(--blue);
  transition: 0.4s;
}

.from p {
  letter-spacing: -0.04em;
  line-height: 150%;
}

.input-label-type {
  border: 0.1rem solid #dbdbdb;
  border-radius: 0.4rem;
  padding: 0.8rem 1.2rem;
  box-shadow: 0 0.2rem 0.4rem 0 rgba(26, 27, 31, 0.05);
  background: #fff;
  color: #646464;
  height: 5.6rem;
}

.input-label-type .form-control {
  border: none;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  color: var(--blue);
}

.input-label-type .input-group .input-group-text {
  padding: 0;
  background: none;
  border: none;
  line-height: 1;
  font-size: 1.6rem;
  color: #646464;
}

.input-label-type .form-control:focus {
  box-shadow: none;
  border: none;
}

.f-cnt-area .form-control {
  width: 100%;
  border: 0.1rem solid #dbdbdb;
  border-radius: 0.4rem;
  padding: 1.58rem 1.6rem;
  box-shadow: 0 0.2rem 0.4rem 0 rgba(26, 27, 31, 0.05);
  background: #fff;
  color: #646464;
  height: 5.6rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 7 !important;
  display: inline-block;
}

.f-cnt-area .nice-select::after {
  border-bottom: 0.2rem solid #646464;
  border-right: 0.2rem solid #646464;
  height: 0.6rem;
  width: 0.6rem;
  margin-top: -0.4rem;
  pointer-events: none;
  position: absolute;
  right: 1.6rem;
}

.f-cnt-area .nice-select .list {
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  z-index: 999;
  width: 100%;
  right: 0;
  left: auto;
}

.form-control {
  margin-bottom: 1.6rem;
}

.icon_box.v2 {
  height: 6.4rem;
  width: 6.4rem;
  background: linear-gradient(180deg, #ffffff 0%, #e8e9ea 100%);
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.6rem auto;
}

.multiple-possibilities {
  position: relative;
  background: #00004a;
}

.multiple-possibilities .container {
  z-index: 999;
  position: relative;
}

.leasing-works-area {
  background: #ECF1F5;
}

.leasing-works-grid {
  --bs-gutter-x: 4.8rem;
  --bs-gutter-y: 4.8rem;
}

.leasing-works-grid > [class*="col-"] {
  display: flex;
  justify-content: flex-start;
}

.leasing-works-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.6rem;
  width: 100%;
  max-width: 56rem;
  text-align: left;
}

.leasing-works-area--split .leasing-works-item {
  max-width: none;
}

.leasing-works-split {
  --bs-gutter-x: 4.8rem;
}

.leasing-works-split__title {
  text-align: left;
}

.leasing-works-split__title .title_40 {
  margin-bottom: 0;
}

.leasing-works-split__list {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.leasing-works-item__content {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.leasing-works-item__title {
  color: #00004a;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.04em;
  margin-bottom: 0.8rem;
}

.leasing-works-item__text {
  color: #646464;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: -0.04em;
  margin-bottom: 0;
  text-align: left;
}

/* ========== DESKTOP HORIZONTAL PROGRESS BAR ========== */
.progress-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.progress-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 0.4rem;
  background: #d8deea;
  transform: translateY(-50%);
  z-index: 1;
}

.progress_arrow {
  position: relative;
  z-index: 2;
  background-color: #a4b1c9;
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-weight: 600;
  margin-left: -2rem;
}

.progress-step.active {
  background-color: #2a52f0;
}

.progress-step i {
  position: absolute;
  right: -2.4rem;
  font-size: 2.4rem;
  color: #2a52f0;
}

.progress_bar_area .button {
  margin-top: 7.4rem;
}

.progress_bar_items {
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  border-radius: 1.6rem;
  padding: 1.6rem 1.6rem 2.4rem 1.6rem;
  height: 100%;
  background: #fff;
}

.finora-bank-area {
  padding: 12rem 0 16rem;
  position: relative;
  background: radial-gradient(
    50.05% 50.05% at 50% 0%,
    #2a206a 0%,
    rgba(42, 32, 106, 0) 100%
  );
  background-color: #00004a;
}

.finora-bank-area .container {
  position: relative;
  z-index: 9999;
}

.finora_box {
  border-radius: 1.2rem;
  background: var(--White, #fff);
  box-shadow: 0 0.9rem 2rem -1rem rgba(0, 0, 0, 0.12),
    0 3.7rem 3.7rem -1rem rgba(0, 0, 0, 0.1),
    0 14.7rem 5.9rem -1rem rgba(0, 0, 0, 0.02);
  padding: 2.4rem 2.4rem 3.2rem 2.4rem;
  height: 29.4rem;
  z-index: 999;
  position: relative;
}

.loan_from_shape {
  position: absolute;
  right: -3.9rem;
  top: -17.2rem;
  width: 35rem;
  z-index: 0;
}

.fin_icon {
  border-radius: 8rem;
  border: 0.1rem solid rgba(91, 91, 102, 0.25);
  text-align: center;
  display: flex;
  width: 6.4rem;
  height: 6.4rem;
  justify-content: center;
  align-items: center;
  transition: 0.25s ease;
}

.fin_icon img {
  width: 2.4rem;
}

.finora-bank-area .container {
  padding: 0 10.8rem;
}

.svarbu_area {
  background: #ECF1F5;
}

.svarbu-links-grid {
  --bs-gutter-x: 2.4rem;
  --bs-gutter-y: 1.6rem;
}

.svarbu_content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.svarbu-link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  min-height: 5.6rem;
  padding: 1.6rem 2rem;
  border-radius: 0.8rem;
  background: #fff;
  box-shadow: 0 0.2rem 0.4rem 0 rgba(26, 27, 31, 0.05);
  color: #0000fd;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.04em;
  text-decoration: none !important;
  transition: box-shadow 0.25s ease;
}

.svarbu-link:hover {
  color: #0000fd;
  box-shadow: 0 0.4rem 1.2rem 0 rgba(26, 27, 31, 0.08);
}

.svarbu-link__icon {
  flex-shrink: 0;
  filter: var(--blue_img);
}

.svarbu-link__text {
  flex: 1;
  min-width: 0;
}

.accordion {
  background: transparent;
  border: none;
}

.accordion-item {
  border: none;
  border-bottom: 0.1rem solid #dbe6ec;
  background: transparent;
}

.accordion-button {
  background: transparent;
  font-weight: 600;
  font-size: 1.8rem;
  padding: 2.4rem 0;
  box-shadow: none;
}

.accordion-body {
  padding: 0 0 1.6rem;
}

.accordion-body ul,
.accordion-body ol {
  list-style: revert;
  margin: 0 0 1.6rem;
  padding-left: 2.4rem;
}

.accordion-body ul {
  list-style-type: disc;
}

.accordion-body ol {
  list-style-type: decimal;
}

.accordion-body li {
  margin: 0 0 0.8rem;
  padding: 0;
}

.accordion-body li ul,
.accordion-body li ol {
  margin-top: 0.8rem;
  margin-bottom: 0;
}

.accordion-body table {
  width: 100%;
  margin: 0 0 1.6rem;
  border-collapse: collapse;
}

.accordion-body table th,
.accordion-body table td {
  padding: 0.8rem 1.2rem;
  border: 0.1rem solid #dbdbdb;
  vertical-align: top;
}

.accordion-button:not(.collapsed) {
  color: #212529;
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after,
.accordion-button:not(.collapsed)::after {
  background-image: url(../img/faq_Icon.svg);
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-item p {
  color: #5b5b66;
}

.accordion-item p {
  padding-right: 2rem;
}

.hero-content-icon {
  border-radius: 8rem;
  background: linear-gradient(180deg, #fff 0%, #e8e9ea 100%);
  display: flex;
  width: 6.4rem;
  height: 6.4rem;
  justify-content: center;
  align-items: center;
}

.hero-content-icon .gre {
  display: flex;
  width: 4.8rem;
  height: 4.8rem;
  justify-content: center;
  align-items: center;
  border-radius: 8rem;
  background: #47ae60;
  padding: 1.2rem;
}

.clients_content p {
  color: #1f2632;
}

.clients_img img {
  border-radius: 1.9604rem;
}

.sustainability_clients_area {
  padding-bottom: 8rem;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.sustainability_reports_area {
  background: #ecf1f5;
}

.sustainability_reports_area .row.row_gap_24 {
  --bs-gutter-x: 2.4rem;
  --bs-gutter-y: 2.4rem;
}

.sustainability_reports_area .blog_box.v_2.vv_2 .blog_info > .link-pill {
  margin-top: 1rem;
}

.icon_varification {
  display: flex;
  flex: 0 0 auto;
  width: 6.4rem;
  height: 6.4rem;
  justify-content: center;
  align-items: center;
  border-radius: 8rem;
  border: 0.1rem solid rgba(91, 91, 102, 0.25);
  background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}

.bank_seeks_content {
  width: 43.9rem;
}

.icon_varification img {
  width: 2.4rem;
  height: 2.4rem;
}

.bank_seeks_area {
  padding: 8rem 0 10rem;
}

.finora-bank-area .row_gap_24 {
  --bs-gutter-x: 2.4rem;
  --bs-gutter-y: 2.4rem;
}

/* Finora bank area cards: fluid height; flex + centered rows so last row orphans stay centered */
.finora-bank-area .finora-bank-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.4rem;
  align-items: stretch;
}

.finora-bank-area .finora-bank-cards-grid > .finora_box {
  flex: 0 1 auto;
  width: min(32rem, 100%);
  min-width: 0;
  height: auto;
  min-height: 0;
  box-sizing: border-box;
}

.finora-bank-area .finora-bank-cards-grid > .finora_box .fin_content p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fin_icon.v_2 img {
  width: 100%;
  border-radius: 8rem;
}

.finora_box.v_2 {
  min-height: 31.5rem;
  height: auto;
  display: flex;
  flex-direction: column;
}

.finora_box.v_2 .fin_content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.finora_box.v_2 .service_bottom {
  margin-top: auto;
}

.blog_area.v_2 {
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.blog_box.v_2 {
  border-radius: 2rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 1.6rem 1.6rem 2.4rem 1.6rem;
}

.hero_area.vv_2 {
  background: radial-gradient(
    50.05% 50.05% at 50% 0%,
    #2a206a 0%,
    rgba(42, 32, 106, 0) 100%
  );
  background-color: #00004a;
  padding: 19rem 0 8.8rem;
  height: 74rem;
  position: relative;
}
.hero_area_shape_v2 {
  position: absolute;
  right: 0;
  top: -3rem;
}
.story_area {
  margin-top: -28rem;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.story_img img {
  border-radius: 1.2rem;
}

.vision_mission_content p.f_700 {
  color: #212121;
}

.founder-card {
  border-radius: 1.2rem;
  border: 0.1rem solid #e8e9ea;
  background: #fff;
  box-shadow: 0 14.7rem 5.9rem -1rem rgba(0, 0, 0, 0.02);
}

.founder-card img {
  border-radius: 1.2rem 1.2rem 0 0;
}

.founder-info {
  padding: 2.4rem;
}

.founder-info h5 {
  color: #2a206a;
}

.founder_about {
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.teams_content {
  padding: 0 0.8rem;
}

.teams_img {
  display: block;
  overflow: hidden;
  border-radius: 2.4rem;
}

.teams_img img {
  transition: 0.25s ease;
}

.teams_img:hover img {
  transform: scale(1.025);
}

.teams_items_text p {
  letter-spacing: 0;
  font-weight: 700;
  color: #212121;
}

.teams_content img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.teams_items_text span {
  letter-spacing: 0;
}

.teams_wrapper .row_gap_24 {
  --bs-gutter-x: 2.4rem;
  --bs-gutter-y: 2.4rem;
}

.hero_area.v-2.v_22 {
  padding: 15.3rem 0 5rem
}

.finora_news_area .blog_box {
  border-radius: 1.2rem;
  border: 0.1rem solid #e8e9ea;
  background: #fff;
  box-shadow: 0 0.4rem 2rem -1rem rgba(0, 0, 0, 0.12),
    0 7rem 5.9rem -1rem rgba(0, 0, 0, 0.02);
  gap: 2.4rem;
}

.finora_news_area .blog_img {
  width: 50%;
}

.finora_news_area .blog_info {
  width: 50%;
  padding: 4rem 4rem 4rem 1.8rem;
}

.subscribe input {
  border-radius: 8rem;
  background: #ffffff33;
  display: flex;
  width: 30rem;
  height: 5.2rem;
  padding: 1.4rem 2.4rem;
  color: #fff;
  border: none;
  margin-right: 0.8rem;
}

.subscribe input::placeholder {
  color: #fff;
  opacity: 1;
}

.subscribe_newsletter_box {
  padding: 4.8rem 4rem;
  border-radius: 1.6rem;
  border: 0.1rem solid #fff;
  box-shadow: 0 0.4rem 2rem -1rem rgba(0, 0, 0, 0.12),
    0 7rem 5.9rem -1rem rgba(0, 0, 0, 0.02);
}

.latest_news_tabs li {
  display: inline-block;
  margin-left: 2.4rem;
}

.latest_news_tabs li:first-child {
  margin-left: 0;
}

.latest_news_tabs li button {
  color: #0000fd;
}

/* Row height follows tallest card; cards fill column via Bootstrap row stretch */
.blog_box.v_2.vv_2 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog_box.v_2.vv_2 .blog_img {
  flex-shrink: 0;
}

.blog_box.v_2.vv_2 .blog_info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.blog_box.v_2.vv_2 .blog_info > .link {
  margin-top: auto;
}

.tab-content .row_gap_24 {
  --bs-gutter-x: 2.4rem;
  --bs-gutter-y: 2.4rem;
}

.latest_news_item .nav-link:focus,
.latest_news_item .nav-link:hover {
  color: #0000fd;
  text-decoration: underline;
}

.latest_news_item .nav-link.active {
  color: #0000fd;
  text-decoration: underline;
}

.hero_thumb img {
  border-radius: 1.2rem;
}

.article_area {
  border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.article_content {
  padding: 0 2rem;
}

.article_content p {
  color: #1f2632;
}
.f-cnt-area textarea {
  resize: none;
  height: 17.6rem !important;
}

.single-post p {
  padding-bottom: 3.2rem;
}

.single-post h3 {
  padding-bottom: 3.2rem;
}

.single-post .hero_thumb img {
  height:500px;
  object-fit: cover;
}

.single-post h3 {
  font-size: 2.4rem;
  line-height: 3.4rem;
  letter-spacing: -0.05em;
  color: var(--title) !important;
  font-weight: 500 !important;
}

.contact_details_content {
  width: 77rem;
}
.hero_area.vv_2 .hero_content {
  text-align: center;
  position: relative;
  z-index: 999;
}

.bank_seeks_area.vv_2 .bank_seeks_content {
  width: 50rem;
}

.bank_seeks_area--careers-values,
.bank_seeks_area--corner-bg {
  position: relative;
  overflow: hidden;
}

.bank_seeks_area--careers-values[style*="background-image"],
.bank_seeks_area--corner-bg[style*="background-image"] {
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto;
}

.bank_seeks_area--careers-values .container,
.bank_seeks_area--corner-bg .container {
  position: relative;
  z-index: 1;
}

.marquee {
  display: flex;
  gap: 2.4rem;
}
.marquee > div {
  display: flex;
  gap: 2.4rem;
}

.js-marquee {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.partner1 {
  width: 31.2rem;
  height: 41.6rem;
  object-fit: cover;
}

.partner2 {
  width: 31.2rem;
  height: 41.6rem;
  object-fit: cover;
  margin-top: 11.2rem;
}
.partner3 {
  width: 20rem;
  height: 26.7rem;
  object-fit: cover;
  margin-top: -22.2rem;
}

.partner4 {
  width: 31.2rem;
  height: 31.2rem;
  object-fit: cover;
  margin-top: 0.2rem;
}
.partner5 {
  width: 41.6rem;
  height: 31.2rem;
  object-fit: cover;
  margin-top: -12.6rem;
}

.partner1 img {
  width: 31.2rem;
}

.partner2 img {
  width: 31.2rem;
}
.partner3 img {
  width: 20rem;
}

.partner4 img {
  width: 31.2rem;
}
.partner5 img {
  width: 41.6rem;
}
.marquee a img {
  border-radius: 1.2rem;
}

.benefits_box {
  border-radius: 1.2rem;
  border-top: 0.6rem solid #090751;
  background: #fff;
  box-shadow: 0 0.4rem 3rem 0 rgba(0, 0, 0, 0.06);
  padding: 6rem;
  margin-bottom: 12rem;
}
.benefits_content img {
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1.6rem;
}
.benefits_content p {
  color: #1f2632;
}
.finora-bank-area.vvv_3 .container {
  padding: 0;
}
.our_team_says_items {
  border-radius: 0.8rem;
  background: var(--White, #fff);
  box-shadow: 0 0.4rem 0.8rem 0 rgba(66, 71, 76, 0.06),
    0 0 0.1rem 0 rgba(66, 71, 76, 0.48);
  padding: 0.8rem 0.8rem 0 0.8rem;
}
.our_team_says_img {
  background-size: cover;
  min-height: 37.9rem;
  object-fit: cover;
  background-repeat: no-repeat;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
  padding: 2.4rem;
}
.our_team_says_content {
  display: flex;
  padding: 1.6rem 0.8rem;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.our_team_says_catagory {
  display: flex;
  height: 2.5rem;
  padding: 0 0.8rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.4rem;
  background: rgba(0, 113, 227, 0.1);
}
.our_team_says_catagory p {
  color: #1b167a;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.018rem;
}
.our_team_says_content p {
  letter-spacing: 0.018rem;
}

.job-info img {
  width: 1.6rem;
  height: 1.6rem;
}
.job-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-right: 2.8rem;
}

.job-card {
  display: flex;
  padding: 2rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 0.8rem;
  background: #fff;
  box-shadow: 0 0.4rem 1rem 0 rgba(0, 0, 0, 0.04);
  margin-bottom: 2.4rem;
}
.job-card:last-child {
  margin-bottom: 0;
}

.job-info p {
  color: #1f2632;
  letter-spacing: -0.5px;
  font-weight: 500;
}
.job-info span {
  color: #333333;
  font-size: 1.4rem;
  letter-spacing: 0.18px;
  font-weight: 400;
}

.open_positions_tabs_button .nav-link {
  border-radius: 8rem;
  border: 0.1rem solid #333;
  padding: 1.4rem 2.4rem;
}
#jobTabs {
  display: flex;
  gap: 1.6rem;
  text-align: center !important;
  justify-content: center;
}
.open_positions_tabs_button .nav-link.active {
  background: #333;
  color: #f7f8f8;
}
.talk_pepole .blog_box {
  gap: 2.4rem;
}
.talk_pepole .blog_img {
  width: 50%;
}
.talk_pepole .blog_info {
  width: 50%;
  padding: 4rem 4rem 4rem 8rem;
}

/* ================= Progress update ================= */
.progress-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.page-template-page-become-customer .progress-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}


.progress_arrow img {
  width: 1.4rem;
}

.progress-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: center;
}

.progress-step .line {
  display: block;
  width: calc(100% + 2rem);
  height: 0.2rem;
  background: #a5b7d9;
  margin-left: -2rem;
}

.progress-step-1 .line {
  width: 100%;
  margin-left: 0;
}

.progress-step-1 {
  grid-template-columns: 1fr;
  align-items: center;
}

.progress-step.progress-step-3 .progress_arrow {
  background: #5050b2;
}

.progress-step-2 .line {
  background: #8d94be;
}

.progress-step.progress-step-4 .progress_arrow {
  background: #8d94be;
}

.progress-step.progress-step-3 .line {
  background: #8d94be;
}

.progress-step.progress-step-4 .progress_arrow {
  background: #01014a;
}

.progress-step.progress-step-4 .line {
  background: #00004a;
}

.modal-dialog {
  max-width: 88.4rem;
}

.modal-content {
  background: #00004a;
  padding: 7.5rem 12.7rem;
  border-radius: 1rem;
}

.modal-body {
  padding: 0;
}

.modal-header {
  padding: 0;
  border: none;
}

.popup_btn {
  --bs-btn-close-color: #fff !;
  --bs-btn-close-color: #fff !;
  position: absolute;
  right: 3rem;
  padding: 0 !important;
  top: 2.7rem;
  z-index: 99999999999;
}

.popup_btn img {
  width: 2.4rem;
}

.modal-body .from .row .col-md-12 {
  margin-top: 6rem;
}

.modal-body .form-control {
  margin: 0;
}

.progress_bar_items .tittl_24 {
  color: #1f2632;
}

/* ===================== */
.js-marquee a img {
  width: 100%;
}

/* =============== Talk ================ */
.talk_pepole {
  border-top: 0.1rem solid #0000001a;
}

/* ================= Contact details ================= */
.contact_details .section_top {
  text-align: left;
}

.contact_details_wrapper {
  gap: 4rem 10rem;
  grid-template-columns: 1fr auto;
  align-items: stretch;
}

.contact_details_img {
  display: flex;
  justify-content: flex-end;
  align-self: stretch;
}

.contact_info_list {
  display: grid;
  grid-template-columns: 20.3rem 13rem 11.7rem;
  max-width: 54.8rem;
  white-space: nowrap;
  gap: 2.4rem 5rem;
  font-size: 1.6rem;
  color: #f7fafd;
}

.contact_details_img img {
  height: 100%;
  width: auto;
  border-radius: 1.2rem;
  object-fit: cover;
}

.contact_info_list strong {
  font-weight: 700;
}

/* ================== subscribe =================== */
.subscribe .button_white {
  color: #000;
  font-weight: 500;
}

.subscribe .button_white img {
  filter: var(--black_img);
}

.subscribe .button_white:hover img {
  filter: var(--white_img);
}

.subscribe .button_white:hover {
  color: var(--white);
}


.counter {
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Calculator styles */
.calculator-container {
  width: 100%;
}

.results-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 0.8rem;
  margin-top: 0;
}

.results-box h4 {
  color: var(--title);
  margin-bottom: 1.6rem;
}

.results-box .mb-4 {
  margin-bottom: 2rem;
}

.results-box p.text-sm {
  color: #212;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.results-box p.text-lg {
  color: var(--title);
  font-size: 2.4rem;
  font-weight: 700;
}

/* Payment term radio buttons */
.payment-term-radio-group {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
}

.radio-option {
  display: flex;
  align-items: center;
}

.radio-option input[type="radio"] {
  width: 2rem;
  height: 2rem;
  margin-right: 1.2rem;
  cursor: pointer;
  accent-color: #00004a;
}

.radio-option label {
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  margin: 0;
}

/* Leasing Calculator Styles */
.leasing-input-wrapper {
  position: relative;
}

.leasing-slider {
  width: 100%;
  height: 0px;
  border-radius: 0.5rem;
  background: #A5B7D9;
  outline: none;
  appearance: none;
  position: relative;
  z-index: 1;
}

.leasing-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  border: 0.2rem solid #00004a;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.leasing-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.3);
}

.leasing-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.6rem;
  cursor: pointer;
  background: #e8e9ea;
  border-radius: 0.5rem;
}

.leasing-slider::-moz-range-thumb {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  border: 0.2rem solid #00004a;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  -moz-appearance: none;
  appearance: none;
}

.leasing-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.3);
}

.leasing-slider::-moz-range-track {
  width: 100%;
  height: 0.6rem;
  cursor: pointer;
  background: #e8e9ea;
  border-radius: 0.5rem;
  border: none;
}

.leasing-slider:focus {
  outline: none;
}

.leasing-slider:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 0.3rem rgba(255, 255, 255, 0.25);
}

.leasing-slider:focus::-moz-range-thumb {
  box-shadow: 0 0 0 0.3rem rgba(255, 255, 255, 0.25);
}

/* Leasing Results Box */
.leasing-results {
  background: #ffffff;
  padding: 2.4rem;
  border-radius: 0.8rem;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
}

.leasing-results h4 {
  color: var(--title);
  margin-bottom: 2rem;
  font-size: 2.4rem;
  font-weight: 700;
}

.leasing-results .result-item {
  padding-bottom: 1.6rem;
  border-bottom: 0.1rem solid #e8e9ea;
  margin-bottom: 1.6rem;
}

.leasing-results .result-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.leasing-results .result-item p.text-sm {
  color: #646464;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.leasing-results .result-item p.text-lg {
  color: var(--title);
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

/* Leasing input wrapper adjustments */
.leasing-input-wrapper .input-group {
  margin-bottom: 0;
}

.leasing-input-wrapper .input-group-text {
  color: #646464;
  font-size: 1.6rem;
}

.leasing-input-wrapper .form-control[readonly] {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

/* Ensure slider is visible in leasing calculator */
#calculator-leasing .leasing-slider {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ---------- POPUP / CALCULATOR GLOBAL ---------- */
.bottom-text {
  color: #FFF;
  font-size: 1.2rem;
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

#popupForm .modal-dialog {
  max-width: 90%;
}

#popupForm .modal-content {
  border: 0;
  border-radius: 24px;
  padding: 40px 48px 32px;
  background: radial-gradient(circle at 10% 0%, #22298f 0, #00023c 55%, #000018 100%);
}

#popupForm .modal-header {
  border: 0;
  padding: 0 0 24px;
}

#popupForm .modal-body .from {
  background: transparent;
  padding: 0;
}

#calculator-business-loan .input-label-type .form-control:focus {
  box-shadow: none;
  border: none;
  outline: none;
}

#calculator-business-loan .input-label-type:focus-within {
  border-color: #dbdbdb;
  box-shadow: 0 0.2rem 0.4rem 0 rgba(26, 27, 31, 0.05);
}

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

#calculator-business-loan input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

#calculator-leasing .section_top {
  margin-bottom: 32px;
}

#calculator-leasing .leasing-field,
#calculator-leasing .leasing-input-wrapper {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  margin-bottom: 3.8rem;
  background: transparent;
  border: 0;
  padding: 0;
}

#calculator-leasing .leasing-field__controls {
  flex: 0 0 409px;
  max-width: 409px;
  width: 100%;
}

#calculator-leasing .leasing-field__label {
  flex: 1;
  margin-bottom: 0;
  padding-right: 0;
  padding-left: 0;
  text-align: left;
  color: #fff;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: -0.5px;
}

#calculator-leasing .leasing-field__row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#calculator-leasing .leasing-field__row + .leasing-field__row {
  margin-top: 1rem;
}

.first-grouo {
  display: flex;
  align-items: stretch;
  width: 100%;
}

#calculator-leasing .first-grouo .form-control {
  flex: 1;
  min-width: 0;
  color: #0000fd;
  height: 3rem;
  border: none;
  border-radius: 4px 0 0 4px;
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(26, 27, 31, 0.05);
  padding-left: 12px;
  font-size: 1.6rem;
}

#calculator-leasing .first-grouo .form-control:focus {
  outline: none;
  box-shadow: 0 2px 4px 0 rgba(26, 27, 31, 0.05);
}

#calculator-leasing .first-grouo .form-control[readonly] {
  background: #fff;
  color: #0000fd;
  cursor: default;
}

#calculator-leasing .first-grouo .input-group-text {
  display: flex;
  align-items: center;
  color: #646464;
  height: 3rem;
  border: none;
  border-radius: 0 4px 4px 0;
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(26, 27, 31, 0.05);
  padding: 0 12px;
  font-size: 1.6rem;
  white-space: nowrap;
}

#calculator-leasing .leasing-slider {
  width: 100%;
  margin-top: 0;
}

#calculator-leasing .text_xsm {
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.5px;
}

#calculator-leasing label.input-label {
  color: #fff;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: -0.5px;
}

/* Make input fields narrower & Figma-like */
#calculator-leasing .leasing-input-wrapper .input-group {
  max-width: 409px;
  gap: 1rem;
}

#calculator-leasing .result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.leasing-data {
  padding-bottom: 2rem;
}

#calculator-leasing .leasing-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: #d4d8ff;
}

#calculator-leasing .leasing-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #5b6cff;
  margin-top: -5px;
}

#calculator-leasing .leasing-slider::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: #d4d8ff;
}

#calculator-leasing .leasing-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #5b6cff;
}



#calculator-leasing .leasing-results {
  background: #ffffff;
  border-radius: 4px;
  padding: 24px 28px 28px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.25);
  color: #080b4d;
}

#calculator-leasing .leasing-results h4 {
  color: #212;
  font-family: "Helvetica Neue";
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: -0.5px;
}

#calculator-leasing .result-row+.result-row {
  margin-top: 1.6rem;
}

#calculator-leasing .result-label {
  color: #212;
  font-family: "Helvetica Neue";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: -0.5px;
}

#calculator-leasing .result-input {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 180px;
  margin-top: 4px;
  border-radius: 8px;
  border: 1px solid #d4d8ff;
  overflow: hidden;
  background: #f5f6ff;
}

#calculator-leasing .result-input span[id] {
  padding: 8px 12px;
  color: #0000FD;
  min-width: 70px;
  text-align: left;
  display: inline-block;
  width: 100%;
  background: #F9F9F9;
}

#calculator-leasing .result-input .result-currency {
  padding: 8px 12px;
  background: #F9F9F9;
  color: #646464;
}

#calculator-leasing .leasing-results {
  margin-left: auto;
  margin-right: 0;
}

#calculator-leasing .button.button_white {
  margin-top: 1.6rem;
}

#calculator-leasing .leasing-slider::-webkit-slider-runnable-track {
  height: 2px;
  border-radius: 999px;
  background: #A5B7D9;
}

#calculator-leasing .leasing-slider::-moz-range-track {
  height: 2px;
  border-radius: 999px;
  background: #A5B7D9;
}

#calculator-leasing .leasing-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: #A4B1C9;
  margin-top: -8px;
  border-color: #A4B1C9;
}

#calculator-leasing .leasing-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: #A4B1C9;
  border-color: #A4B1C9;
}

#calculator-factoring .factoring-intro__lead {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.04em;
  margin-bottom: 2.4rem;
}

#calculator-factoring .factoring-intro__text {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: -0.04em;
  margin-bottom: 0;
}

#calculator-factoring .factoring-card {
  background: #fff;
  border-radius: 0.8rem;
  padding: 2.4rem 2.8rem;
  box-shadow: 0 0.2rem 0.4rem 0 rgba(26, 27, 31, 0.05);
}

#calculator-factoring .factoring-field {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 0.1rem solid #e8ebf0;
}

#calculator-factoring .factoring-field:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

#calculator-factoring .factoring-field:first-child {
  padding-top: 0;
}

#calculator-factoring .factoring-field__label {
  flex: 1;
  margin-bottom: 0;
  color: #212121;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.04em;
  text-align: left;
}

#calculator-factoring .factoring-field__control {
  flex: 0 0 auto;
}

#calculator-factoring .factoring-field__control--fee {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

#calculator-factoring .first-grouo {
  display: flex;
  align-items: stretch;
}

#calculator-factoring .first-grouo--compact {
  width: 8.8rem;
}

#calculator-factoring .first-grouo .form-control {
  flex: 1;
  min-width: 0;
  width: 12rem;
  color: #0000fd;
  height: 3rem;
  border: 0.1rem solid #dbdbdb;
  border-right: 0;
  border-radius: 0.4rem 0 0 0.4rem;
  background: #fff;
  box-shadow: 0 0.2rem 0.4rem 0 rgba(26, 27, 31, 0.05);
  padding: 0 1.2rem;
  font-size: 1.6rem;
}

#calculator-factoring .first-grouo--compact .form-control {
  width: auto;
  min-width: 0;
}

#calculator-factoring .first-grouo .form-control:focus {
  outline: none;
  box-shadow: 0 0.2rem 0.4rem 0 rgba(26, 27, 31, 0.05);
}

#calculator-factoring .first-grouo .form-control[readonly],
#calculator-factoring .first-grouo select.form-control {
  background: #fff;
  color: #0000fd;
  cursor: pointer;
}

#calculator-factoring .first-grouo .form-control[readonly] {
  cursor: default;
}

#calculator-factoring .first-grouo .input-group-text {
  display: flex;
  align-items: center;
  color: #646464;
  height: 3rem;
  border: 0.1rem solid #dbdbdb;
  border-left: 0;
  border-radius: 0 0.4rem 0.4rem 0;
  background: #fff;
  box-shadow: 0 0.2rem 0.4rem 0 rgba(26, 27, 31, 0.05);
  padding: 0 1.2rem;
  font-size: 1.6rem;
  white-space: nowrap;
}

#calculator-factoring .factoring-disclaimer {
  margin-bottom: 30px;
}

#calculator-factoring .input-label-type.form-control {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0 0 24px;
  height:auto;
}

#calculator-factoring .input-group {
  max-width: 260px;
}

.leasing-data .col-md-7 {
  padding-right:20px;
}

.leasing-data .col-md-5 {
  padding-left:20px;
}

.results-box, .bototm-text {
  margin-left: 40px;
}

#calculator-factoring .input-group .form-control {
    color: #0000FD;
    height: 3rem;
    border-radius: 4px 0px 0px 4px;
    background: var(--White, #FFF);
    box-shadow: 0 2px 4px 0 rgba(26, 27, 31, 0.05);
    padding-left: 12px;
    font-size: 1.6rem;
}

#calculator-factoring .input-group .input-group-text {
    color: #646464;
    height: 3rem;
    border-radius: 0px 4px 4px 0px;
    background: var(--White, #FFF);
    box-shadow: 0 2px 4px 0 rgba(26, 27, 31, 0.05);
    padding-right: 12px;
    font-size: 1.6rem;
}

#calculator-factoring label.input-label {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

#calculator-factoring .payment-term-radio-group {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#calculator-factoring .radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #ffffff;
}

#calculator-factoring #factoringAdvanceDisplay, #calculator-factoring #financingCostsDisplay {
    padding: 8px 12px;
    color: #0000FD;
    min-width: 70px;
    text-align: left;
    display: inline-block;
    width: 100%;
    background: #F9F9F9;
}

#calculator-factoring .result-input {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 180px;
    margin-top: 4px;
    border-radius: 8px;
    border: 1px solid #d4d8ff;
    overflow: hidden;
    background: #f5f6ff;
}


#calculator-factoring .result-currency {
  padding: 8px 12px;
    background: #F9F9F9;
    color: #646464;
}

#calculator-factoring .radio-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: transparent;
  position: relative;
  cursor: pointer;
  background: #fff;
}

#calculator-factoring .radio-option input[type="radio"]:checked {
 background: #00004A;
}

#calculator-factoring .radio-option label {
  cursor: pointer;
}
#calculator-leasing .result-row,
#calculator-factoring .result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
}

#calculator-leasing .result-label,
#calculator-factoring .result-label {
  margin-bottom: 0;
  flex: 1 1 auto;
}

.invoice-amount {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#calculator-leasing .result-input,
#calculator-factoring .result-input {
  margin-top: 0;
  flex: 0 0 auto;
  min-width: 180px;
}

/* --- Daily banking & Become customer (Finora-Bank-v2) --- */
.letter_sp {
  letter-spacing: -0.05rem;
}

.underline {
  text-decoration: underline !important;
}

.run_business_area {
  padding: 12rem 0;
  background: #00004a;
  position: relative;
}

.as-rb-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

.as-prement-wrapper {
  padding: 3rem 0;
}

.as-prement-items {
  gap: 0.8rem;
  padding-bottom: 0.8rem;
}

.as-check-icon img {
  width: 2.4rem;
}

.as-check-content p {
  line-height: 1;
}

.hero_area.as-hero {
  padding: 16.5rem 0 13.5rem;
}

.hero_area.as-hero.as_v3 {
  background: var(--bgLightBlue);
}

.hero_area.as-hero.as_v3 .title_76,
.hero_area.as-hero.as_v3 .as-check-content .text_md {
  color: var(--title);
}

.hero_area.as-hero.as_v3 .hero_img img {
  max-width: 100%;
  height: auto;
}

.run_business_right-items {
  gap: 1.6rem;
}

.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pricing-item {
  box-shadow: 0.1rem 0.1rem 0.4rem 0 #0000000f;
  border: 0.1rem solid #0a18371a;
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-title {
  color: #1f2632;
  letter-spacing: 0.018rem;
}

.price-badge {
  background: #0071e31a;
  color: #1b167a;
  padding: 0.2rem 0.8rem;
  border-radius: 0.4rem;
  white-space: nowrap;
  letter-spacing: 0.018rem;
  font-weight: 500;
}

.fees-title h2 {
  letter-spacing: -0.5px;
}

.fees-pricing-area {
  padding: 12rem 0 13.5rem 0;
  background: #fff;
}

.finance_area.section_padding.as-v2 {
  padding: 16rem 0;
  position: relative;
  background-color: #00004a;
  color: #fff;
}

.finance_area.section_padding.as-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.42) 100%);
  pointer-events: none;
}

.finance_area.section_padding.as-v2 .container {
  position: relative;
  z-index: 1;
}

.service_area.section_padding.as-v2 {
  position: relative;
  background-color: #00004a;
}

.service_area.as-v2 .service_box {
  padding-bottom: 2.8rem;
}

.run_business_area .icon_box.v3 {
  flex-shrink: 0;
  height: 4.8rem;
  width: 4.8rem;
  min-width: 4.8rem;
  background: rgba(255, 255, 255, 0.12);
  border: 0.1rem solid rgba(255, 255, 255, 0.22);
}

.run_business_area .icon_box.v3 .icon_inner {
  background: transparent;
  width: 100%;
  height: 100%;
}

.run_business_area .run_business_right-items.run-business-item--text-only .text_lg {
  margin-left: 0;
}

.run_business_area .run_business_right-wrapper .run_business_right-items:last-child {
  padding-bottom: 0;
}

.service_shape {
  position: absolute;
  bottom: 0;
  left: 0;
}

.service_shape img {
  width: 35rem;
}

.become-coustomer-button .button.border-button img {
  filter: var(--blue_img);
}

.become-coustomer-button .button.border-button {
  color: #0000fd;
  border: 0.1rem solid #21212133;
  background: var(--white);
}

.become-coustomer-button .button.border-button:hover img {
  filter: var(--white_img);
}

.become-coustomer-button .button.border-button:hover {
  color: #fff;
  background: #00004a;
  border: 0.1rem solid #00004a;
}

.as-hero-area {
  padding: 22rem 0 12rem 0;
}

.become-coustomer-button {
  gap: 1.6rem;
}

.accont-oppening-items .as-acc-opp.text_sm {
  width: 100%;
  border: 0.1rem solid #dbdbdb;
  border-radius: 0.4rem;
  padding: 1.58rem 1.6rem;
  box-shadow: 0 0.2rem 0.4rem 0 rgba(26, 27, 31, 0.05);
  background: #fff;
  height: 5.6rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 7 !important;
  display: inline-block;
}

.row_gap_16.v2 {
  --bs-gutter-x: 1.6rem;
  --bs-gutter-y: 1.6rem;
}

.account_opening_area {
  background: radial-gradient(50.05% 50.05% at 51.1% 0%, #2a206a 0%, rgba(42, 32, 106, 0) 100%) !important;
  background-color: #00004a !important;
  padding: 12rem 0 16rem 0;
  position: relative;
  scroll-margin-top: 10rem;
}

.shape_1 {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.shape_2 {
  position: absolute;
  top: -17.5rem;
  right: 0;
  width: 35rem;
}

.shape_3 {
  position: absolute;
  left: 0;
  bottom: -22rem;
  width: 35rem;
}

.as-need-help {
  padding: 12rem 0 11rem;
}

.as-kyc-area {
  background: #ecf1f5;
}

.as-kyc-content .text_lg.pb_40.f_500 {
  color: #1f2632;
}

.as-kyc-content p {
  color: #212121;
}

.shape_sm {
  position: absolute;
  right: -1rem;
  width: 100%;
  top: -4.4rem;
  z-index: 0;
  height: 100%;
  fill: linear-gradient(206deg, #2812e1 0%, #9a9fc3 100%);
  filter: blur(25rem);
}

.account_opening_area .container,
.run_business_area .container {
  z-index: 999;
  position: relative;
}

.account_opening_area .form-check-label,
.account_opening_area .form-check-label a {
  color: #fff;
}

.account_opening_area .form-check-input {
  border-color: rgba(255, 255, 255, 0.55);
  background-color: transparent;
}