/* ---------------- 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%;
}

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

/* 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 {
  color: var(--title);
}

.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);
}

.link.v2:hover {
  opacity: 0.5;
}

/* 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;
  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 img {
  transition: 0.35s ease;
}

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

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

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

.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;
}

a:hover,
.menu_link:hover,
.menu_link.active {
  color: var(--black);
}

.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);
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--white);
  text-decoration: none;
  background-color: var(--blue);
}

/* ==================== 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 {
  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;
}

.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: 16.5rem 0 22.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;
}

.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 ========== */
.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_box_flex .blog_info {
  padding-top: 0;
}

.blog_box_flex .blog_img img {
  width: 34.3rem;
  height: 23.1rem;
}

.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_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_box img,
.numbers_box span .numbers_box p {
  z-index: 3;
  position: relative;
}

.numbers_box {
  display: grid;
  border-radius: 1.6rem;
  position: relative;
}

.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.1rem;
  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;
}

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

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

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

.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;
}

/* ========== 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_content a {
  display: block;
  padding-bottom: 1.4rem;
}

.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-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);
}

.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;
}

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

.finora_box.v_2 {
  height: 31.5rem;
}

.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_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: 18rem 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;
}

.blog_box.v_2.vv_2 {
  height: 55rem;
}

.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;
}

.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;
}

.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;
  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;
}

.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;
}

.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_wrapper {
  gap: 10rem;
  grid-template-columns: 0fr 1fr;
}

.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: 45.7rem;
  border-radius: 1.2rem;
  width: 41.1rem;
  object-fit: cover;
}

.contact_info_list strong {
  font-weight: 400;
}

/* ================== 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;
}




/* daily banking page started */
.letter_sp {
  letter-spacing: -.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: .8rem;
  padding-bottom: .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;
}

.run_business_right-items {
  gap: 1.6rem;
}






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

.pricing-item {
  box-shadow: .1rem .1rem .4rem 0 #0000000F;
  border: .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: .018rem;

}

.price-badge {
  background: #0071E31A;
  color: #1B167A;
  padding: .2rem .8rem;
  border-radius: .4rem;
  white-space: nowrap;
  letter-spacing: .018rem;
  font-weight: 500;
}

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

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


.finance_area.section_padding.as-v2 {
  padding: 16rem 0;
}

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

.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: .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;
}

.account_opening_area {
  padding: 12rem 0 16rem 0;
}


.account_opening_area {
  position: relative;
}

.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 {
	z-index: 999;
  position: relative;
}
.run_business_area .container {
	z-index: 999;
  position: relative;
}