@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-Thin.woff2") format("woff2"),
    url("../fonts/InterTight-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-ExtraLight.woff2") format("woff2"),
    url("../fonts/InterTight-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-Light.woff2") format("woff2"),
    url("../fonts/InterTight-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-Regular.woff2") format("woff2"),
    url("../fonts/InterTight-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-Medium.woff2") format("woff2"),
    url("../fonts/InterTight-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-SemiBold.woff2") format("woff2"),
    url("../fonts/InterTight-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-Bold.woff2") format("woff2"),
    url("../fonts/InterTight-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-ExtraBold.woff2") format("woff2"),
    url("../fonts/InterTight-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-Black.woff2") format("woff2"),
    url("../fonts/InterTight-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter Tight";
}

:root {
  --main-color: #f8ab39;
  --secondary-color: #0054ad;
  --main-color-gradient: linear-gradient(
    90deg,
    rgba(248, 171, 57, 1) 0%,
    rgba(252, 192, 60, 1) 100%
  );
  --main-color-gradient02: linear-gradient(
    0deg,
    rgba(248, 171, 57, 1) 0%,
    rgba(252, 192, 60, 1) 100%
  );
}

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

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.theme-button {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px;
  border-radius: 10px;
  border: solid 1px transparent;
  background: var(--main-color-gradient);
  transition: all ease-in-out 0.5s;
}

.theme-button:hover {
  color: var(--main-color);
  border-color: var(--main-color);
  background: #fff;
}

.button-one {
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid var(--main-color);
  background: linear-gradient(
    90deg,
    rgba(248, 171, 57, 1),
    rgba(252, 192, 60, 1)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.button-two {
  /* color: var(--main-color); */
  color: blue;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 50px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid transparent;
  transition: all ease-in-out 0.5s;
}
.button-two:hover {
  background-color: transparent;
  border-color: var(--main-color);
}
.main-heading {
  font-size: 60px;
  line-height: 64px;
  font-weight: 600;
  color: #fff;
  max-width: 50%;
  margin: 0 auto;
}

h2 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 600;
  color: #000;
}

h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
}

.heading-width {
  max-width: 75%;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.para1 {
  color: #6a727a;
}
.para2 {
  color: #404040;
}
.para3 {
  color: #7e7e7e;
}
.para-width {
  max-width: 50%;
}
.section-padding {
  padding: 120px 0;
}

header {
  position: absolute;
  top: 30px;
  width: 100%;
}
@media (min-width: 1024px) {
  .header .container {
    max-width: 1400px;
    width: 100%;
  }
}
.header .navbarFlex {
  border-radius: 20px;
  width: 100%;
  padding: 12px 50px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.header .navbar-collapse {
  justify-content: end;
}
.header .logo {
  width: 88px;
}

.header .navbar-nav {
  gap: 25px;
}
.header .navbar-nav .nav-link,
.header .dropdown-menu .dropdown-item {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  padding: 0;
}

.header .search-btn {
  color: var(--main-color);
  font-size: 20px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 100%;
  border: none;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 0px 1px 0px,
    rgba(60, 64, 67, 0.15) 0px 0px 3px 0px;
}

.header .navbarTogglerBtn {
  display: none;
  cursor: pointer;
  background: no-repeat;
  border: none;
}

.header .navbarTogglerBtn .bar1,
.header .navbarTogglerBtn .bar2,
.header .navbarTogglerBtn .bar3 {
  width: 35px;
  height: 5px;
  background-color: var(--main-color);
  margin: 6px 0;
  transition: 0.4s;
  border-radius: 10px;
}

.header .collapsed .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.header .collapsed .bar2 {
  opacity: 0;
}

.header .collapsed .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}

.header .dropdown-menu {
  top: 40px;
  background-color: #fff;
  border: none;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}
.header .dropdown-menu .dropdown-item {
  padding: 10px 20px;
}
.header .dropdown-menu .dropdown-item:hover,
.header .dropdown-menu .dropdown-item:active {
  background-color: transparent;
}

.banner-section {
  height: 950px;
  margin: 0 30px;
  overflow: hidden;
  border-radius: 0 0 100px 100px;
  background: linear-gradient(
    0deg,
    rgba(25, 25, 25, 1) 0%,
    rgba(127, 127, 127, 1) 100%
  );
}
.banner-para {
  font-weight: 300;
  max-width: 50%;
  text-align: justify;
}
.bg-shape {
  background-image: url(../image/bg-shape.png);
  background-repeat: no-repeat;
  margin: 70px auto 0;
  max-width: 1045px;
  height: 378px;
  background-size: 100% 100%;
  background-position: center center;
  position: relative;
}

/* .bg-shape .banner-image {
  position: absolute;
  top: -104px;
  left: 50%;
  transform: translateX(-50%);
} */

.imgtoptodown {
  animation-name: imgtoptodown;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

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

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

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

.features-bg {
  background: var(--main-color-gradient02);
  padding: 70px 73px 0 40px;
  border-radius: 50px;
}

.ft-list {
  width: 80%;
  gap: 50px;
  flex-wrap: wrap;
  padding-left: 20px;
}

.ft-list .ft-div {
  width: 160px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 20px;
  background-color: #ffffff3d;
}

.ft-list .ft-div img {
  transition: all 0.3s;
}
.ft-list .ft-div:hover img {
  transform: scale(0.8);
}
.ft-list li p {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
.features-bg .man-img {
  animation-name: manimgdowntoup;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

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

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

  100% {
    transform: translateY(0px);
  }
}
.man-img-podium {
  background-color: #fff;
  width: 100%;
  height: 181px;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 2;
}

.served_industry .industry_box {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 483px;
  border-radius: 80px 0;
  /* max-width: 217px; */
  max-width: 20%;
  transition: all 0.8s ease-in-out;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.served_industry .industry_box.active {
  /* max-width: 1053px; */
  max-width: 78%;
}

.served_industry .industry_box_content {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.68) 100%
  );
}

.served_industry .industry_box.active .industry_box_content {
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 40%);
}

.served_industry .industry_box.active .industry_box_content h3 {
  width: 55%;
  text-align: end;
}

.served_industry .industry_box_content .arrowIcon {
  color: #fff;
  font-size: 25px;
  margin-left: auto;
}

.served_industry .industry_box .industryText {
  transform: rotate(270deg);
  transform-origin: top right;
  position: absolute;
  width: 483px;
  right: 70px;
  display: flex;
  align-items: end;
  padding: 0 30px;
}

.served_industry .industry_box.active .industryText {
  transform: unset;
  transform-origin: unset;
  bottom: 0px;
  right: 0px;
  width: 100%;
  padding: 0 60px 30px 0;
}

.tab-section {
  padding: 100px 0;
  background-color: #f2f2f2;
}

.res_tabs .nav-tabs {
  background-color: #fff;
  border-radius: 10px;
  border: none;
  width: 100%;
  flex-wrap: nowrap;
  overflow: hidden;
  overflow-x: auto;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 0px 3px;
}
.res_tabs .nav-tabs .nav-item {
  width: 100%;
}
.res_tabs .nav-tabs .nav-link {
  border: none;
  margin-bottom: 0;
  width: 100%;
  color: #000;
  font-size: 24px;
  font-weight: 500;
  padding: 13px 50px;
  border-radius: 10px;
  text-transform: capitalize;
  white-space: nowrap;
}

.res_tabs .nav-tabs .nav-link.active {
  color: #fff;
  background-color: var(--main-color);
}

.res_card {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.res_card img {
  transition: all ease-in-out 0.5s;
}
.res_card:hover img {
  transform: scale(1.2);
}
.res_card .overlay-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 50%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 0 35px 25px;
  background: linear-gradient(
    0deg,
    rgb(0 0 0 / 48%) 0%,
    rgba(248, 171, 57, 0) 100% 100%
  );
  transition: all ease-in-out 0.5s;
}
.res_card:hover .overlay-box {
  background: linear-gradient(
    0deg,
    rgb(0 0 0) 0%,
    rgba(248, 171, 57, 0) 100% 100%
  );
}

.res_card .overlay-box .arrowIcon {
  transform: rotate(45deg);
}

.system-list li,
.system-list li a {
  display: flex;
  align-items: center;
  gap: 18px;
}

.system-list li {
  padding: 20px 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: #00000040 0px 0px 3px;
  transition: all ease-in-out 0.6s;
}

.system-list li:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.system-list li p {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.MoneyVector {
  position: absolute;
  top: 104px;
  right: 0;
  width: 870px;
  max-height: 480px;
}
/* .MoneyVector {
  position: absolute;
  top: 93px;
  right: 0;
  width: 100%;
  max-width: 867px;
  height: 492px;
  background-image: url(../image/MoneyVectorBg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center right;
} */

.consultation_form {
  background-image: url(../image/ConsultationFormBg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 30px;
  padding: 20px;
}
.consultation_form .consFormBg {
  border-radius: 30px;
  padding: 60px 40px 80px;
}
.form-heading {
  font-size: 50px;
  font-weight: 700;
  color: #173451;
  line-height: 64px;
}

.contactForm label {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  padding-bottom: 6px;
}
.contactForm .form-control {
  width: 100%;
  border-radius: 10px !important;
  background: #f5f5f5;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin: 0px !important;
  box-shadow: none;
  border: none;
  outline: none;
}
.contactForm .form-control::placeholder {
  color: #9faebd;
}
.contactForm .form-select {
  color: #6b6b6b;
}
.contactForm .form-check-input {
  width: 20px;
  height: 20px;
  border-color: #000;
  box-shadow: none;
  border-radius: 6px;
  background-color: transparent;
}
.contactForm .form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.contactForm .form-check-label {
  font-size: 16px;
  font-weight: 400;
  color: #727171;
}

.send-msg-btn {
  background-color: var(--main-color);
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 25px;
  border: 1px solid transparent;
  transition: all ease-in-out 0.5s;
}
.send-msg-btn:hover {
  color: var(--main-color);
  border-color: var(--main-color);
  background-color: transparent;
}
.footer {
  color: #595656;
  padding-top: 43px;
  background-color: #f2f2f2;
}

.footer .foooter-logo img {
  width: 107px;
}
.footer .ft-para {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  color: #595656;
}

.footer .footer-heading {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  width: fit-content;
}
.footer .footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  top: 45px;
  border-radius: 10px;
  height: 3px;
  width: 25px;
  background: #fcc03c;
  transition: all linear 0.5s;
  background: linear-gradient(90deg, rgba(252, 192, 60, 1) 0%, #7b7b7b 100%);
}
.footer .footer-heading:hover::after {
  width: 100%;
}
.footer .usefulLinks li,
.footer .information li {
  padding-bottom: 14px;
}

.footer .usefulLinks li a {
  font-weight: 400;
  font-size: 14px;
  color: #595656;
}

.footer .information li {
  display: inline-block;
  width: 100%;
}
.footer .information li .call-bx {
  width: 70%;
  float: left;
  padding-left: 16px;
}
.footer .information li .call-bx p {
  font-size: 14px;
  font-weight: 700;
  color: #595656;
}
.footer .information li .call-bx a {
  font-weight: 300;
  color: #595656;
}
.footer .socialIcon {
  color: var(--main-color);
  font-size: 18px;
  width: 40px;
  max-width: 40px;
  height: 40px;
  float: left;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  border-radius: 100%;
  background: #fff;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 0px 1px 0px,
    rgba(60, 64, 67, 0.15) 0px 0px 3px 0px;
  /* background: linear-gradient(
    90deg,
    rgba(121, 213, 255, 1) 0%,
    rgba(30, 184, 254, 1) 100%
  ); */
}
.footer .connectForm {
  border-radius: 10px;
  background-color: #fff;
  padding: 3px;
  border: 1px solid var(--main-color);
}
.footer .connectForm .form-control {
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  border: none;
  width: 65%;
}
.footer .connectForm .form-control::placeholder {
  color: #969696;
}
.footer .connectForm .submit-btn {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 25px;
  border: 1px solid transparent;
  border-radius: 10px;
  white-space: nowrap;
  background: var(--main-color-gradient);
  /* background: linear-gradient(
    90deg,
    rgba(121, 213, 255, 1) 0%,
    rgba(30, 184, 254, 1) 100%
  ); */
}

.footer .copyright {
  border-top: 1px solid #dadada;
}
.footer .copyright p {
  font-weight: 400;
  color: #000;
  font-size: 15px;
}
.footer .copyright p a {
  color: var(--main-color);
  text-decoration: underline;
}
.footer .cta-button {
  display: inline-block;
  margin-top: 4px;
  padding: 6px 14px;
  background-color: #ffa500;
  color: #fff !important;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.footer .cta-button:hover {
  background-color: #e69500;
}

/* login page css  */
.main-section {
  margin-top: 120px;
}
.login-section {
  padding: 50px 0;
}
.login-row {
  margin: 0 85px;
  padding: 30px 80px 30px 30px;
  border-radius: 40px;
  background: var(--main-color-gradient02);
}

.login-row .LoginImg {
  border-radius: 30px;
  height: 672px;
  object-fit: cover;
}
.textPW {
  max-width: 72%;
  line-height: 26px;
}
.loginForm .forgotPassword {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

/* .loginForm .form-control {
  padding: 18px 20px;
} */

.login-btn {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border-radius: 10px;
  border: none;
  padding: 15px 58px;
  background: linear-gradient(
    142deg,
    rgba(32, 136, 203, 1) 10%,
    rgba(0, 20, 115, 1) 90%
  );
}

.login-row .acText {
  color: #000;
  text-decoration: underline;
}
.login-row .acText a {
  font-weight: 600;
  color: #000;
}
.loginForm .showPasswordIcon {
  position: absolute;
  top: 50%;
  right: 18px;
  border: none;
  outline: none;
  font-size: 22px;
  color: #173451;
  transform: translateY(-50%);
  background-color: transparent;
}

/*  */
.terms-banner {
  background-image: url(../image/terms-banner.png);
  background-size: cover;
  background-position: center center;
  height: 500px;
  display: flex;
  align-items: center;
}
.contact-banner {
  background-image: url(../image/contact-banner.png);
}
.terms-banner h3 {
  font-size: 40px;
}
.terms-section h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 35px 0 20px;
  line-height: 30px;
}

.terms-section ul {
  list-style-type: disc;
  padding-left: 2rem;
  font-size: 16px;
}
.terms-section p,
.terms-section ul li {
  font-weight: 300;
  line-height: 26px;
  color: #000;
}

.contact-info .contact-item {
  gap: 12px;
  padding: 15px 20px;
  border-radius: 10px;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.contact-info .contact-item .eIcon {
  font-size: 22px;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background: linear-gradient(
    90deg,
    rgba(121, 213, 255, 1) 0%,
    rgba(30, 184, 254, 1) 100%
  );
}
.contact-info .contact-item .conBx {
  width: 80%;
}
.contact-info .contact-item p {
  font-size: 20px;
  font-weight: 600;
}

.contact-info .contact-item a {
  color: #333;
  font-size: 16px;
}

.contact-info .contact-item a:hover {
  text-decoration: underline;
}

/* contact Us page css */
.contactRow {
  border-radius: 40px;
  padding: 40px 30px;
  background: var(--main-color-gradient);
}
.contactRow .ContactUsImg {
  border-radius: 30px;
  height: 100%;
  object-fit: cover;
}

.contactForm textarea {
  resize: none;
  min-height: 180px;
}

.contactRow .button-two,
.contactRow .button-two:hover {
  color: var(--main-color);
  background-color: #fff;
}

.faq-section .accordion-button {
  padding: 0 16px;
  box-shadow: none;
}
.faq-section .accordion-button:not(.collapsed) {
  background: var(--main-color-gradient02);
  color: #000;
}
.faq-section .accordion-item {
  margin-bottom: 16px;
  border-radius: 6px !important;
  overflow: hidden;
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
    rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.customModal .modal-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--main-color);
}
.customModal h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}
.customModal h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: blue;
}
.customModal ul {
  list-style-type: disc;
  padding-left: 30px;
}
.customModal ul.innerUl {
  list-style-type: circle;
}
.customModal strong {
  color: blue;
}
.customModal .cls_btn {
  color: #ffffff;
  background: var(--main-color);
  border-radius: 6px;
  padding: 8px 16px;
  border: none;
}

.beginText {
  max-width: 40%;
  text-align: justify;
}

.selectRole_bg {
  padding: 35px 80px;
  max-width: 560px;
  width: 100%;
  margin: auto;
  border-radius: 40px;
  background: var(--main-color-gradient02);
}

.selectRole_bg h3 {
  color: #173451;
}

.merchant-card {
  padding: 25px 20px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.merchant-card h4 {
  font-size: 23px;
  font-weight: 500;
  color: #000;
}

.merchant-card p {
  font-size: 14px;
  line-height: 24px;
}

.merchant-card .form-check .form-check-input {
  box-shadow: none;
  width: 26px;
  height: 26px;
  background-color: transparent;
  border: 1.5px solid var(--main-color);
  cursor: pointer;
}

.merchant-card .form-check .form-check-input:checked {
  background-color: var(--main-color);
}

.merchant-card .form-check .form-check-input:checked[type="radio"] {
  background-image: url(../image/SelectRoleCheck.png);
  background-size: auto;
}

.merchantModal .modal-content {
  border-radius: 30px;
}
.merchantModal .btn-close {
  box-shadow: none;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color);
}
