.w-webflow-badge {
  display: none !important;
}

.partner-breadcrumb {
  background-image: linear-gradient(to right, #3c41ad14, #303779f0);
  padding: 150px 0 80px 0;
}

.rt-nav {
  z-index: 999;
}

.rt-footer-carde {
  margin-bottom: 80px;
}

.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.text-center {
  text-align: center !important;
}

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

.text-right {
  text-align: right !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.rt-text-marquee-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.rt-text-marquee-train {
  display: flex;
  flex-shrink: 0;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* SVG text styling */
.rt-text-marquee-iteme {
  margin-right: 0px;
}

.rt-text-marquee-iteme svg {
  height: 40px;
}

.rt-text-marquee-iteme text {
  font-size: 20px;
  font-weight: 600;
  fill: currentColor;
}

/* .rt-text-marquee-wrapper:hover .rt-text-marquee-train {
  animation-play-state: paused;
} */
.rt-marquee-v1-animation {
  overflow: hidden;
  position: relative;
}

.rt-testimonials-v1-content {
  display: flex;
  gap: 4px;
  animation: marqueeLoop 30s linear infinite;
  will-change: transform;
}

@keyframes marqueeLoop {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.pk-acc-section {
  background: url('../img/home/sec3/bg.webp') no-repeat center center/cover;
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pk-acc-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.pk-acc-left {
  position: sticky;
  top: 80px;
}

.pk-acc-label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000000;
  margin-bottom: 20px;
}

.pk-acc-title {
  /* font-size: 48px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.2; */
  margin-bottom: 40px;
}

.pk-acc-button {
  background: linear-gradient(to bottom, #3C41AD, #303779);
  color: white;
  border: none;
  padding: 18px 50px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.pk-acc-button:hover {
  opacity: 0.8;
}

.pk-acc-right {
  background: white;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pk-acc-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 28px 0;
}

.pk-acc-item:last-child {
  border-bottom: none;
}

.pk-acc-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.pk-acc-question-text {
  font-size: 20px;
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.4;
  flex: 1;
}

.pk-acc-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.pk-acc-icon::before,
.pk-acc-icon::after {
  content: '';
  position: absolute;
  background-color: #1a1a2e;
  transition: transform 0.3s ease;
}

.pk-acc-icon::before {
  width: 18px;
  height: 2px;
}

.pk-acc-icon::after {
  width: 2px;
  height: 18px;
}

.pk-acc-item.pk-acc-active .pk-acc-icon::after {
  transform: rotate(90deg);
}

.pk-acc-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  overflow: hidden;
}

.pk-acc-answer-inner {
  min-height: 0;
}

.pk-acc-answer-text {
  font-size: 18px;
  line-height: 1.7;
  color: #4b5563;
  padding-right: 40px;
  padding-top: 20px;
}

.pk-acc-item.pk-acc-active .pk-acc-answer {
  grid-template-rows: 1fr;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pk-acc-container {
    gap: 60px;
  }

  /* .pk-acc-title {
    font-size: 40px;
  } */
}

@media (max-width: 768px) {
  .pk-acc-section {
    padding: 60px 20px;
  }

  .pk-acc-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pk-acc-left {
    position: static;
    text-align: center;
  }

  /* .pk-acc-title {
    font-size: 36px;
  } */

  .pk-acc-button {
    width: 100%;
    max-width: 300px;
  }

  .pk-acc-right {
    padding: 30px 20px;
  }

  .pk-acc-question-text {
    font-size: 18px;
  }

  .pk-acc-answer-text {
    font-size: 18px;
    padding-right: 20px;
  }
}

@media (max-width: 480px) {
  .pk-acc-section {
    padding: 40px 18px;
  }

  .pk-acc-title {
    margin-top: 5px;
    /* font-size: 28px; */
    margin-bottom: 30px;
  }

  .pk-acc-label {
    font-size: 18px;
    margin-bottom: 0;
  }

  .pk-acc-button {
    padding: 18px 40px;
    font-size: 18px;
  }

  .pk-acc-right {
    padding: 20px 18px;
    border-radius: 12px;
  }

  .pk-acc-item {
    padding: 20px 0;
  }

  .pk-acc-question-text {
    font-size: 18px;
  }

  .pk-acc-answer-text {
    font-size: 18px;
    padding-right: 10px;
  }
}

.error {
  color: red;
}

.rt-signup-left div img {
  max-width: 180px;
}

.pt-10 {
  padding-top: 10px !important;
}

.rt-mobile-menu-button-wrap a {
  max-width: 240px;
}

@media (max-width: 991px) {
  .w-layout-hflex.rt-navbar-button-wrap a {
    display: none;
  }
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.rt-navbar-button-wrap {
  gap: 20px;
}

.rt-button-v1.background-white-6:hover {
  background-color: #1f1e40;
  transition: all 0.3s ease-in-out;
}

.rt-button-v1.background-white-6:hover .rt-button-text.rt-btn-color {
  color: #ffffff !important;
}

.rt-container-nav {
  max-width: 1400px !important;
}

.rt-sub-text {
  text-transform: capitalize !important;
}

.custom-logo-img {
  max-width: 290px;
}

.active,
.active div {
  color: #E763AD !important;
}

.active div img {
  filter: brightness(0) saturate(100%) invert(66%) sepia(23%) saturate(1400%) hue-rotate(305deg) brightness(95%) contrast(98%);
}

.rt-process-box:hover {
  opacity: 0.9 !important;
  transform: scale(0.95) !important;
}

.rt-faq {
  padding-top: 0;
}

.capitalize {
  text-transform: capitalize !important;
}

.rt-testimonials-v1-top {
  margin: auto;
  text-align: center;
}

:root {
  --_fonts---font-size--body-font: 18px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.text-black {
  color: #000000 !important;
}

.rt-position-absolute.rt-text-overlay-inner {
  background-color: #f7faff00 !important;
}

ul.privacy-list li {
  font-weight: 400;
}

p.disc.fs-content strong {
  font-size: 24px;
  font-weight: 700;
}

.btn-bg-blue {
  background: linear-gradient(to bottom, #3C41AD, #303779);
  color: #ffffff !important;
}

.rt-button-text {
  color: #ffffff !important;
}

.rt-button-v1-main:hover .btn-bg-blue {
  opacity: 0.9;
}

.rt-button-body.rt-nav-btn .rt-button-text {
  color: #303779 !important;
}

.rt-sub-text.rt-sub-gredient {
  font-size: 18px !important;
  font-weight: 600 !important;
  background-image: unset !important;
  -webkit-text-fill-color: unset !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

.rt-menu-text {
  color: #000000 !important;
}

.rt-analytics-v2-box div img {
  max-width: 50px;
}

.rt-why-choose-icon {
  width: 80px;
  height: 80px;
}

.rt-benefits-icon {
  aspect-ratio: 1;
  height: 80px;
}

.image-file1 img {
  object-fit: contain;
  width: 100%;
}

.rt-footer-card-main {
  background-image: url('../img/home/sec7/want-smarter-bg.webp') !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

}

.rt-nav {
  z-index: 999;
  background-color: #ffffff;
}

.rt-button-body.rt-nav-btn {
  z-index: 1;
  border: 1px solid #000000;
}

.rt-button-body.rt-nav-btn:hover {
  background-color: #f0f0f0;
}

.btn-bg-blue:hover {
  opacity: 0.93;
}

.rt-hero-v4:hover {
  background-color: #ffffff;
}

.rt-hero-v4-speciality-main {
  background-color: #f0f4f9;
}

.rt-benefits-icon.rt-two {
  height: 80px;
}

.rt-hero-v4 {
  background-color: #ffffff;
}

.rt-about-v1-left {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: unset;
  background-image: unset;
  background-position: 0 0;
  background-size: cover;
  border-radius: 20px;
  flex-flow: column;
  flex: 1;
  max-width: 500px;
  padding: 0;
  display: flex;
}

.rt-sub-text {
  color: #ffffff;
  font-size: 18px;
}

.rt-testimonials-v1-contanner {
  background-image: url('../img/current-account/sec5/bg.webp') !important;
  background-color: unset;
}

.pkd-about-section {
  background-color: unset;
}

body {
  background-color: unset;
}

.rt-hero-v2 {
  background-image: unset;
}


/* ===================================API BANKING PAGE CSS========================================= */
/* Section Container */
.pkd22-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.pkd22-container {
  width: 100%;
  padding: 0 20px;
}

/* Cards Wrapper */
.pkd22-cards-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  background-image: url('../img/api-banking/01/pattern.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Card Base Styles */
.pkd22-card {
  position: relative;
  border-radius: 32px;
  padding: 48px 36px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 380px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pkd22-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.pkd22-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/*  Card 1*/
.pkd22-card-1 {
  background-image: url('../img/api-banking/01/card-01.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/*  Card 2- Center Featured Card */
.pkd22-card-2 {
  background-image: url('../img/api-banking/01/card-02.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*  Card 3*/
.pkd22-card-3 {
  background-image: url('../img/api-banking/01/card-03.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pkd22-card-center {
  min-height: 380px;
  padding: 56px 40px;
  max-width: 440px;
  flex: 1 1 380px;
}

/* Card Inner Content */
.pkd22-card-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Icon Wrapper */
.pkd22-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  backdrop-filter: blur(10px);
}

.pkd22-icon-wrapper-large {
  width: 120px;
  height: 120px;
  border-radius: 24px;
}

.pkd22-icon {
  width: 48px;
  height: 48px;
}

.pkd22-icon-large {
  width: 80px;
  height: 80px;
}

/* Typography */
.pkd22-card-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.pkd22-card-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  margin: 0;
  line-height: 1.4;
}

/* Button Styles */
.pkd22-button {
  padding: 14px 32px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.pkd22-button-light {
  background: rgba(255, 255, 255, 0.95);
  color: #7c3aed;
}

.pkd22-card-pink .pkd22-button-light {
  color: #ec4899;
}

.pkd22-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  background: #ffffff;
}

.pkd22-button:active {
  transform: translateY(0);
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
  .pkd22-cards-wrapper {
    gap: 24px;
  }

  .pkd22-card {
    flex: 1 1 300px;
    max-width: 340px;
    padding: 40px 32px;
  }

  .pkd22-card-center {
    flex: 1 1 340px;
    max-width: 380px;
    padding: 48px 36px;
  }
}

/* Medium Tablets */
@media (max-width: 1024px) {
  .pkd22-cards-wrapper {
    gap: 20px;
  }

  .pkd22-card {
    flex: 1 1 280px;
    max-width: 320px;
  }

  .pkd22-card-center {
    flex: 1 1 320px;
    max-width: 360px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .pkd22-cards-wrapper {
    gap: 20px;
  }

  .pkd22-card {
    flex: 1 1 calc(50% - 10px);
    min-width: 250px;
    max-width: 100%;
    padding: 36px 28px;
    min-height: 320px;
  }

  .pkd22-card-center {
    flex: 1 1 100%;
    max-width: 100%;
    min-height: 340px;
    padding: 44px 32px;
    order: -1;
  }

  .pkd22-card-title {
    font-size: 24px;
  }

  .pkd22-card-subtitle {
    font-size: 18px;
  }

  .pkd22-icon-wrapper {
    width: 72px;
    height: 72px;
  }

  .pkd22-icon-wrapper-large {
    width: 100px;
    height: 100px;
  }

  .pkd22-icon {
    width: 42px;
    height: 42px;
  }

  .pkd22-icon-large {
    width: 68px;
    height: 68px;
  }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
  .pkd22-section {
    padding: 0;
  }

  .pkd22-cards-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .pkd22-card,
  .pkd22-card-center {
    flex: 1 1 auto;
    max-width: 400px;
    width: 100%;
    min-height: 300px;
    padding: 40px 32px;
  }

  .pkd22-card-center {
    min-height: 320px;
    order: 0;
  }

  .pkd22-card-title {
    font-size: 26px;
  }

  .pkd22-card-subtitle {
    font-size: 18px;
  }
}

/* Mobile Devices */
@media (max-width: 480px) {
  .pkd22-container {
    padding: 0 12px;
  }

  .pkd22-card,
  .pkd22-card-center {
    max-width: 100%;
    padding: 36px 28px;
    min-height: 300px;
    border-radius: 24px;
  }

  .pkd22-card-center {
    min-height: 320px;
  }

  .pkd22-card-title {
    font-size: 24px;
  }

  .pkd22-card-subtitle {
    font-size: 18px;
  }

  .pkd22-icon-wrapper {
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }

  .pkd22-icon-wrapper-large {
    width: 92px;
    height: 92px;
    border-radius: 20px;
  }

  .pkd22-icon {
    width: 38px;
    height: 38px;
  }

  .pkd22-icon-large {
    width: 60px;
    height: 60px;
  }

  .pkd22-button {
    padding: 18px 30px;
    font-size: 18px;
  }

  .pkd22-card-inner {
    gap: 18px;
  }
}

/* Small Mobile Devices */
@media (max-width: 360px) {
  .pkd22-container {
    padding: 0 10px;
  }

  .pkd22-card,
  .pkd22-card-center {
    padding: 32px 24px;
    min-height: 280px;
    border-radius: 20px;
  }

  .pkd22-card-center {
    min-height: 300px;
  }

  .pkd22-card-title {
    font-size: 22px;
  }

  .pkd22-card-subtitle {
    font-size: 18px;
  }

  .pkd22-icon-wrapper {
    width: 64px;
    height: 64px;
  }

  .pkd22-icon-wrapper-large {
    width: 84px;
    height: 84px;
  }

  .pkd22-icon {
    width: 36px;
    height: 36px;
  }

  .pkd22-icon-large {
    width: 54px;
    height: 54px;
  }

  .pkd22-button {
    padding: 12px 26px;
    font-size: 14px;
  }

  .pkd22-card-inner {
    gap: 14px;
  }
}

/* ===================================END OF API BANKING PAGE CSS========================================= */



.rt-text-marquee-iteme img {
  max-width: 250px;
  max-height: 56px;
}

.rt-choose-v3-item-icon {
  aspect-ratio: 1;
  height: 7.5rem;
}

.rt-color-pale-periwinkle {
  color: #ffffff;
}

.rt-hero-v3-content {
  padding-right: 0;
}

.rt-hero-v7 {
  background-color: unset;
}

.rt-color-vivid-blue {
  color: #303779;
}

.rt-about-v2-left {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: unset;
  background-image: unset;
  background-position: 0 0;
  background-size: cover;
  border-radius: 20px;
  flex-flow: column;
  flex: 1;
  max-width: 100%;
}

.rt-cases-left-main {
  z-index: 4;
  max-width: 100%;
  margin-top: 0;
  position: relative;
}

.rt-tools-icon-wrapper img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

.rtn-bg-white {
  background-color: #ffffff;

}

.rtn-bg-white:hover {
  background-color: #eeeeee;

}

.rnt-bg-white div {
  color: rgb(0, 0, 0);
}

.rt-hero-v5-right {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding-top: 0;
  padding-left: 0;
  display: flex;
  position: relative;
}

.rt-hero-v5 {
  background-image: unset;
}

.rt-why-choose-v2-left img {
  max-height: 681px;
  object-fit: contain;
}

.rt-why-choose-v2-contanner {
  padding: var(--_gaps---section-text-gap) var(--_gaps---container-padding) var(--_gaps---section-main-gap);
  background-color: unset;
  background-image: url('../img/payment-links/05/bg.webp');
}

.flexbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rt-cta-right {
  padding-bottom: 5px;
}

.rt-smal-cta.rt-up-down img {
  max-width: 160px;
}

.rt-hero-10 {
  background-color: unset;
  background-image: unset;
}

.rt-blog-v1-left-part {
  border: unset;
  border-radius: unset;
  box-shadow: unset;
}

.rt-our-service-bg {
  background-image: url('../img/payment-links/05/bg.webp');
}

.rt-our-service-left {
  grid-column-gap: 1.6rem;
  grid-row-gap: 1.6rem;
  background-color: unset;
  border: unset;
  flex-flow: column;
  flex: 1;
  max-width: 100%;
  padding: 0;
  display: flex;
  box-shadow: unset;
}

.rt-gap-off.rt-color-pale-periwinkle {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.bg-none {
  background-image: unset !important;
  background-color: unset !important;
}

.text-black {
  color: #000000 !important;
}

.rt-why-choose-v1-wrapper {
  background-image: url('../img/home/sec3/bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

}

.rt-hero-v4-speciality-main {
  background-image: url('../img/home/sec3/bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.rt-sub-text {
  color: #E763AD !important;
}

.rt-about-v1-right p {
  font-size: 18px;
  font-weight: 400;
}

.rt-benefits-v2-card-text-wrap p {
  font-size: 18px;
  font-weight: 400;
}

@media screen and (max-width: 479px) {
  body {
    --_fonts---font-size--body-font: 18px !important;
    --_fonts---font-size--heading-six: 22px !important;

    --blue-yonder: #000000 !important;
    --_fonts---font-size--body-font: 18px !important;
  }
}

body {
  --_fonts---font-size--body-font: 18px !important;
  --dark-indigo: #000000 !important;
  --blue-yonder: #000000 !important;

}

.img-section-api img {
  width: 100%;
  object-fit: contain;
}

.rt-simplified-card-top-part {
  border: unset;
}

.rt-hero-v3-content {
  margin: auto;
}

.rt-ai-agents-top div h2 {
  text-transform: capitalize;
}

.rt-testimonials-v2-item {
  box-shadow: none;
}

.btn-bg-blue:hover {
  background: #ffffff;
  box-shadow: inset 0 0 0 2px #303779;
}

.btn-bg-blue:hover div {
  color: #000000 !important;
}

.rt-hero-v4 {
  padding-top: 9rem;
}

.rt-testimonials-v1-top div h2 {
  text-transform: capitalize;
}

.img-section-api {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-section-api img {
  max-width: 1250px;
}

.rt-button-body:hover {
  background-color: #e5e7eb !important;
}

.rt-hero-v5 {
  padding-top: 9rem;
}

.rt-text-style-h6.v1 {
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.rt-speciality-item-top.v1 {
  align-items: center;
}

.rt-gap-off.v1 {
  text-align: center;
}
.w-container:before, .w-container:after{
  display: none !important;
}
.rt-goal-box-main {
    filter: invert(1);
}
.rt-why-choose-v1-wrapper {
    box-shadow: unset;
}

.rt-navbar-logo {
    max-width: 250px;
}
.rt-nav {
    padding-top: 6px;
    padding-bottom: 6px;
}
.custom-logo-img img {
    filter: brightness(0) invert(1);
}
.rt-signup-left div img {
    max-width: 250px;
    filter: brightness(0) invert(1);
}
.rt-signup-left{
  background-image: linear-gradient(to bottom, #3C41AD, #303779);
}
.rt-submit:hover .btn-bg-blue{
  background-color: #ffffff !important;
  color: #000000 !important;
}