@-webkit-viewport {
  width: device-width;
}

@-moz-viewport {
  width: device-width;
}

@-ms-viewport {
  width: device-width;
}

@-o-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

/* Font-Family Tag  */

@import url('https://fonts.googleapis.com/css2?family=Karla:wght@200;300;400;500;600;700;800&display=swap');


:root {

  --primary-color: #09082A;
  --primary-two: #17CB96;
  --secondary-color: #4446E0;
  --black-color: #131313;
  --white-color: #ffffff;
  --text-gray-color: #708698;
  --error-color: #FF6F66;
  --background-color: #F2F7FF;
  --box-color: #FFFFFF9E;
  --info-color: #565B82;
  --shadow-color: #FFFFFF52;
  --no-color: transparent;
  --border-color: #D7E2EB;
  --process-box: #c8f1e3c9;


  /* Font Family  */
  --font-family: "Plus Jakarta Sans", sans-serif;

  /* Border Radius  ---- Its for Overall --- */
  --border-radius-card: 16px;
  --border-radius-input: 8px;
  --border-radius-circle: 50%;

}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  overflow-x: hidden;
  position: relative;
  color: var(--black-color);
  background-color: var(--white-color);
  font-family: var(--font-family) !important;
  font-size: 16px !important;
  /* font-size: clamp(1rem, -0.875rem + 8.333vw, 16px) !important; */
  letter-spacing: 0.8px;
}


.navbar-toggler {
  border: 0 !important;
  padding: 0 !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

a,
input,
textarea {
  outline: 0 !important;
  box-shadow: none;
  text-decoration: none !important;
}

.sm-padding {
  padding: 4em 0;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("../img/icons/mobile-toogle.svg") !important;
}

.navbar-light .navbar-toggler {
  border: 1px solid var(--secondary-color) !important;
  color: var(--secondary-color) !important;
}

.navbar-light .navbar-toggler:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

.logo {
  /* margin-right: 1em; */
  max-width: 8em;
}


.header-nav-center {
  padding: 0.5em 0;
  background-color: var(--primary-color);
  /* box-shadow: 0px 4px 4px 0px #00000040; */
  position: relative;
}

.header-nav-center .navbar .nav-item .nav-link {
  font-size: 0.9em;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white-color);
  letter-spacing: 0.5px;
  padding: 0.5em 1em;
  position: relative;
  transition: transform 0.5s;
  padding-bottom: 0.5em;
}

.header-nav-center .navbar .navbar-nav {
  gap: 0.5em;
  align-items: center;
}

.header-nav-center .navbar .nav-item .nav-link:hover {
  color: var(--secondary-color);
  opacity: 1;
}

.open-header-btn {
  color: var(--secondary-color) !important;
  border: none;
  border-radius: 5px;
  opacity: 1 !important;
  z-index: 1;
  position: relative;
  transition: all 0.4s ease 0s;
  background: var(--primary-color);
  padding: 0.8em 2em !important;
  letter-spacing: 0.5px;
  font-size: 1em !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  margin-top: -0.5em;
}

.open-header-btn:hover {
  color: var(--secondary-color);
}

.open-header-btn:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 6px;
  left: 6px;
  transform: translate3d(0px, 0px, 0px);
  z-index: -1;
  transition: all 0.35s cubic-bezier(1, -1.88, 0.15, 0.95) 0s;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
}

.open-header-btn:hover:after {
  transform: translate3d(4px, 4px, 0px);
}

.header-dropdown .dropdown-menu {
  border: 0;
  padding: 0 !important;
}

.header-dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1em !important;
}

.header-dropdown .dropdown-menu:last-child .dropdown-item:hover {
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.37rem;
}

.navbar-brand h4 {
  color: var(--tertiary-color);
  margin-bottom: 0;
  font-size: 1.75rem;
  font-weight: 600;
}

.mobile-nav-header {
  background-color: var(--primary-color);
}

/* Moblie Nav Style  */
.mobile-nav-header {
  display: none;
}


/* Button Style Start  */

/* Button Style  */
.action-btn {
  --_bg: var(--bg, var(--primary-color));
  --_color: var(--color, var(--white-color));
  --_border-color: var(--border, var(--black-color));
  --_border-radius: var(--border-radius, var(--border-radius-card));
  background-color: var(--_bg);
  border-radius: var(--_border-radius);
  color: var(--_color);
  font-size: 0.9em;
  line-height: 25px;
  padding: 0.6em 2em;
  font-weight: 500;
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid var(--_border-color);
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  /* width: 100%; */
}

.over-line {
  --bg: var(--no-color);
  --color: var(--black-color);
  --border: var(--border-color);
  --border-radius: 30px
}

.primary {
  --bg: var(--secondary-color);
  --color: var(--white-color);
  --border: var(--secondary-color);
  --border-radius: 30px
}

/* Button Style End  */


/* Banner Section start  */
.home-banner-sec {
  background: url("../img/banner/banner-hero-back.webp") no-repeat center;
  background-size: cover;
}

.banner-container {
  display: flex;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  /* min-height: 100vh; */
  min-height: calc(100vh - 90px);

}

:where(.banner-main-info, .banner-main-avater) {
  width: 50%;
}

.badge-icons {
  width: 2.5em;
  height: 2.5em;
  border-radius: var(--border-radius-circle);
  display: grid;
  place-items: center;
  /* padding: 10px; */
  background-color: var(--secondary-color);
}

.banner-badge {
  background-color: var(--primary-two);
  padding: 0.5em;
  padding-right: 2em;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 3em auto;
  align-items: center;
  gap: 0.5em;
  width: fit-content;
  margin-bottom: 0.5em;
}

.banner-badge h5 {
  font-size: 1em;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 0;
}

.banner-main-info {
  padding-right: 4em;
}

.banner-main-info h1 {
  font-size: 3em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white-color);
  margin-bottom: 0.5em;
}

.banner-main-info h1 span {
  color: var(--primary-two);
}

.banner-main-info p {
  font-size: 1em;
  font-weight: 500;
  color: var(--white-color);
  line-height: 1.8;
  margin-bottom: 0;
  opacity: 0.6;

}

.banner-action {
  padding-top: 1em;
}

.banner-avater {
  height: 40em;
  width: auto;
  object-fit: contain;
}

/* Banner Section End */


/* Brand Section  */
.brand-titles {
  text-align: center;
  margin-bottom: 4em;
}

.brand-titles h2 {
  font-size: 2em;
  font-weight: 700;
  color: var(--black-color);
  line-height: 1.4;
  margin-bottom: 0;
}

.brand-logo-frame {
  display: flex;
  align-items: center;
  gap: 10em;
  /* width: calc(150px * 20); */
  display: flex;
  animation: scroll 20s linear infinite;
  justify-content: space-between;

}

.brand-logo-frame img {
  height: 1.5em;
  width: auto;
  object-fit: contain;
}

.slide {
  /* width: 150px;
  height: 60px; */

  display: grid;
  place-items: center;
  transition: 0.5s;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-card);
  padding: 2em;
}

@keyframes scroll {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(calc(-150px * 10));
  }
}




/* Payment Section Style  */
.payment-info h2 {
  font-size: 2em;
  font-weight: 700;
  color: var(--black-color);
  line-height: 1.4;
  margin-bottom: 0.4em;
}

.payment-info p {
  font-size: 1em;
  font-weight: 500;
  color: var(--text-gray-color);
  line-height: 1.8;
  margin-bottom: 1em;
}

.payment-avater {
  height: 30em;
  width: auto;
  object-fit: contain;
}

.payment-list ul li {
  display: grid;
  grid-template-columns: 30px auto;
  /* align-items: center; */
  margin-bottom: 1em;
}

.payment-list ul li p {
  margin-bottom: 0;
}

.payment-list ul li:last-child {
  margin-bottom: 0;
}

/* Payment Section Style  */

/* Process Section style  */
.process-wrap {
  background: url("../img/process/process-back.webp") no-repeat center;
  background-size: 100% 100%;
}

.process-info-frame h2 {
  font-size: 2em;
  font-weight: 700;
  color: var(--black-color);
  line-height: 1.4;
  margin: 0;
  text-align: center;
  margin-bottom: 2em;
}

.process-info-frame-box {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-card);
  padding: 1em;
  margin-bottom: 2em;
}

.process-info-frame-box h3 {
  font-size: 1.1em;
  font-weight: 700;
  color: var(--black-color);
  line-height: 1.4;
  margin-bottom: 0.4em;
}

.process-info-frame-box p {
  font-size: 1em;
  font-weight: 500;
  color: var(--text-gray-color);
  line-height: 1.8;
  margin: 0;
}

.process-list-box ul li {
  margin-bottom: 1.5em;
}

.process-list-box ul li:last-child {
  margin-bottom: 0em;
}

.process-list-card {
  display: grid;
  align-items: center;
  grid-template-columns: 80px auto;
  gap: 1em;
}

.process-list-card-info h3 {
  font-size: 1em;
  font-weight: 700;
  color: var(--black-color);
  line-height: 1.8;
  margin-bottom: 0;
}

.process-list-card-info p {
  font-size: 0.9em;
  font-weight: 500;
  color: var(--text-gray-color);
  line-height: 1.8;
  margin-bottom: 1em;
}

.process-avater-frame {
  text-align: end;
  margin-bottom: 1.5em;
}

.process-info-frame-info {
  margin-bottom: 2em;
}

.process-info-frame-info h3 {
  font-size: 1.1em;
  font-weight: 700;
  color: var(--black-color);
  line-height: 1.4;
  margin-bottom: 0.4em;
}

.process-info-frame-info p {
  font-size: 1em;
  font-weight: 500;
  color: var(--text-gray-color);
  line-height: 1.8;
  margin: 0;
}

.process-box-info {
  background-color: var(--process-box);
  padding: 3em 2em;
  border-radius: var(--border-radius-card);
  position: relative;
  overflow: hidden;
}

.process-box-info-overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: url(../img/process/process-five.webp);
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.7;
  mix-blend-mode: multiply;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

/* Process Section style  */


/* Support section  */
.support-wrap {
  background: url("../img/support/support-main.webp") no-repeat center;
  background-size: 100% 100%;
}

.support-tiltes {
  text-align: center;
  margin-bottom: 4em;
}

.support-tiltes h2 {
  font-size: 2em;
  font-weight: 700;
  color: var(--white-color);
  line-height: 1.4;
  margin-bottom: 0.4em;
}

.support-tiltes p {
  color: var(--white-color);
}

.support-card {
  padding: 2em;
  border-radius: var(--border-radius-card);
  border: 1px solid rgb(219 219 233 / 20%);
  height: 100%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

}

.support-card-icons {
  width: 5em;
  height: 5em;
  border-radius: var(--border-radius-circle);
  display: grid;
  place-items: center;
  padding: 20px;
  background-color: var(--white-color);
  margin-bottom: 1em;
}

.support-card-info h3 {
  font-size: 1.2em;
  font-weight: 700;
  color: var(--white-color);
  line-height: 1.8;
  margin-bottom: 0.5em;
}

.support-card-info p {
  font-size: 1em;
  font-weight: 500;
  color: var(--text-gray-color);
  line-height: 1.8;
  margin-bottom: 1em;
}

/* Business Section  */
.business-card-one {
  padding: 2em;
  background: url("../img/business/business-card-one.webp") no-repeat center;
  background-size: cover;
}

.business-card-one h2 {
  font-size: 2em;
  font-weight: 700;
  color: var(--black-color);
  line-height: 1.4;
  margin-bottom: 0.4em;
}

.business-card-one p {
  font-size: 1em;
  font-weight: 500;
  color: var(--black-color);
  line-height: 1.8;
  margin-bottom: 0em;
}

.business-card-one li {
  display: grid;
  grid-template-columns: 30px auto;
  align-items: center;
  margin-bottom: 1em;
}

.business-card-one li p {
  margin-bottom: 0;
}

.business-card-one li:last-child {
  margin-bottom: 0;
}

.business-card-two {
  padding: 2em;
  padding-bottom: 0;
  background: url("../img/business/business-card-two.webp") no-repeat center;
  background-size: cover;
}

.business-card-three {
  padding: 2em;
  background: url("../img/business/business-card-three.webp") no-repeat center;
  background-size: cover;
  height: 100%;
  display: grid;
  place-items: center;
}

.business-card-frame {
  border-top-left-radius: var(--border-radius-card);
  border-bottom-left-radius: var(--border-radius-card);
  overflow: hidden;
}

.business-card-three h2 {
  font-size: 2em;
  font-weight: 700;
  color: var(--white-color);
  line-height: 1.4;
  margin-bottom: 0.4em;
}

.business-card-three p {
  font-size: 1em;
  font-weight: 500;
  color: var(--white-color);
  line-height: 1.8;
  margin-bottom: 0em;
}

.business-card-three li {
  display: grid;
  grid-template-columns: 30px auto;
  align-items: center;
  margin-bottom: 1em;
}

.business-card-three li p {
  margin-bottom: 0;
}

.business-card-three li:last-child {
  margin-bottom: 0;
}

.business-card-three {
  border-top-right-radius: var(--border-radius-card);
  border-bottom-right-radius: var(--border-radius-card);
  overflow: hidden;
}

.business-action {
  padding-top: 0.5em;
}


/* Testimonial */

.testimonial-sec {
  background-color: var(--background-color);
}

.testimonial-title {
  text-align: center;
  margin-bottom: 4em;
}

.testimonial-title h2 {
  font-size: 2em;
  font-weight: 700;
  color: var(--black-color);
  line-height: 1.4;
  margin-bottom: 0.4em;
}

.slider-two {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap: 1em; */
}

.testimonial-card {
  background: var(--white-color);
  padding: 1.5em;
  margin: 0;
  border-radius: 12px;
  margin: 1em;
  /* height: 100%; */
}

.testimonial-img {
  margin-bottom: 0.5em;
}

.testimonial-info p {
  font-size: 1em;
  font-weight: 400;
  color: var(--tertiary-color);
  line-height: 1.8;
  margin-bottom: 0em;
}

.avatar-card {
  display: flex;
  margin-top: 1em;
  gap: 1em;
}

.avatar-img {
  align-items: center;
}

.avatar-info ul {
  display: flex;
  gap: 0.1em;
  margin-bottom: 0.4em;
}

.avatar-info h5 {
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5em;
}

.avatar-info h6 {
  font-size: .8em;
  line-height: 1em;
  margin: 0;
}


/* FAQ CSS */

.faq-title h2 {
  font-size: 2em;
  font-weight: 700;
  color: var(--black-color);
  line-height: 1.4;
  margin-bottom: 0.4em;
}

.faq-title p {
  font-size: 1em;
  font-weight: 400;
  color: var(--tertiary-color);
  line-height: 1.8;
  margin-bottom: 0em;
}

.faq-title {
  margin: 0;
  text-align: center;
}

.faq-tabs-info-frame {
  margin-top: 2em;
}

.accordion-button:not(.collapsed) {
  background-color: #E6ECFF !important;
  box-shadow: unset !important;

}

.accordion-collapse .accordion-body {
  background-color: #E6ECFF !important;
  padding-top: 0 !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../img/minus.svg") !important;
}

.accordion-button::after {
  background-image: url("../img/plus.svg") !important;
}

.accordion-item {
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  margin-bottom: 1em;
  overflow: hidden;
  border-radius: 30px !important;
  border: 1px solid var(--border-color) !important;

}

.accordion-button span {
  font-size: 2em !important;
  color: var(--secondary-color) !important;
  padding-right: 0.3em;
}

.faq-list {
  margin-top: 1em;
}

.faq-list li {
  padding-bottom: 1em;
}

.faq-list li:last-child {
  padding-bottom: 0;
}

.accordion-button {
  background-color: #F2F4F6 !important;
  font-size: 0.6em !important;
  font-weight: 600 !important;
}

.accordion-button:focus {
  box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color) !important;
}

/* Code Section style  */
.code-wrap {
  background-color: var(--primary-color);
}

.code-title {
  margin-bottom: 3em;
}

.code-title h2 {
  font-size: 2em;
  font-weight: 700;
  color: var(--white-color);
  line-height: 1.4;
  margin-bottom: 0.4em;
}

.code-title h2 span {
  color: var(--secondary-color) !important;
}

.code-title p {
  font-size: 1em;
  font-weight: 500;
  color: var(--white-color);
  line-height: 1.8;
  margin-bottom: 0em;
}

.code-card-info h3 {}

.code-card-info h3 {
  font-size: 1.2em;
  font-weight: 700;
  color: var(--white-color);
  line-height: 1.8;
  margin-bottom: 0.5em;
}

.code-card-info p {
  font-size: 1em;
  font-weight: 500;
  color: var(--text-gray-color);
  line-height: 1.8;
  margin-bottom: 1em;
}

.code-card-icons {
  width: 3em;
  height: 3em;
  padding: 5px;
  border-radius: var(--border-radius-circle);
  background-color: var(--secondary-color);
  display: grid;
  place-items: center;
  margin-bottom: 0.5em;
}

.code-card-action a {
  font-size: 1em;
  font-weight: 500;
  color: var(--white-color);
}

.code-card {
  padding: 2em;
  border-radius: var(--border-radius-card);
  border: 1px solid #191756;
}

.code-avater-title {
  margin-bottom: 1em;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.code-avater-title h2 {
  font-size: 2em;
  font-weight: 700;
  color: var(--white-color);
  line-height: 1.4;
  margin-bottom: 0em;
}

.code-avater-box {
  padding-left: 2em;
}

.code-avater-box img {
  border: 1px solid transparent;
  border-radius: 10px;
}

.code-avater-box:hover img {
  border: 1px solid #191756;
}



/* Platform Section Style  */
.platfrom-container {
  padding: 4em 0;
}

.platform-titles h5 {
  font-size: 1em;
  font-weight: 500;
  color: var(--black-color);
  line-height: 1.2;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.platform-titles h2 {
  font-size: 2em;
  font-weight: 700;
  color: var(--black-color);
  line-height: 1.2;
  margin-bottom: 0em;
}

.platform-titles p {
  font-size: 1em;
  font-weight: 500;
  color: var(--text-gray-color);
  line-height: 1.8;
  margin-bottom: 1em;
}

.platform-card-frame {
  margin-top: 4em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: 1em;
}

.platform-card {
  border-radius: var(--border-radius-card);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-color);
  background-color: var(--primary-color);
  padding: 2em;
  /* background-image: url("../img/platform/platform-one.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; */

}

.platform-card:hover .platfrom-avater {
  transform: scale(1.1);
}

.platfrom-avater {
  width: 100%;
  height: 35em;
  object-fit: cover;
  transition: all 2s ease !important;
}

.platform-card-avater {
  position: relative;
}

.platform-card-title {
  margin-bottom: 1em;

}

.platfrom-icons {
  width: 2em;
  height: auto;
}

.platfoem-info h3 {
  font-size: 1.2em;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1.2;
  margin-bottom: 0.5em;
}

.platfoem-info p {
  font-size: 1em;
  font-weight: 700;
  color: var(--white-color);
  line-height: 1.8;
  /* margin-bottom: 1em; */
}

.platfoem-action {
  display: flex;
  align-items: center;
  gap: 2em;
  padding-top: 1em;
}

.platfoem-action a {
  font-size: 0.95em;
  font-weight: 500;
}

.platfoem-action a:last-child {
  color: var(--white-color) !important;
}

.platfoem-action a:first-child {
  color: var(--primary-two) !important;
}

.accordion-button:focus {
  box-shadow: inset 0 calc(0 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color) !important;
}

/* PayInfinity Features: Your Shortcut to Smooth Payment Solutions! */
.features-element {
  padding-right: 20px;
  padding-left: 20px;
  margin-bottom: 4em;
}

.feature-element-frame {
  background: #f6f6f6;
  border-radius: 80px;
  display: flex;
  padding: 4em;
}

.feature-element-card-info h2 {
  font-size: 2em;
  font-weight: 700;
  color: var(--black-color);
  line-height: 1.2;
}

.feature-element-card-info p {
  font-size: 1em;
  font-weight: 500;
  color: var(--text-gray-color);
  line-height: 1.8;
  margin-bottom: 1em;
}
.feature-element-list{}

.feature-element-list-box{}