* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes spinner {
  to {
    transform: rotate(1turn);
  }
}

.page-loading {
  background-color: #000;
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.4s ease-in-out 0.2s;
  visibility: hidden;
  width: 100%;
  z-index: 99999;
}

.page-loading.active {
  opacity: 1;
  visibility: visible;
}

.page-loading.active > .page-loading-inner {
  opacity: 1;
}

.page-loading-inner {
  left: 0;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.2s ease-in-out;
  width: 100%;
}

.page-loading-inner > img {
  width: 300px;
}

.page-loading-inner > span {
  color: #9397ad;
  display: block;
  font-size: 1rem;
  font-weight: 400;
}

.page-spinner {
  animation: spinner 0.75s linear infinite;
  border: 0.15em solid #b4b7c9;
  border-radius: 50%;
  border-right-color: transparent;
  display: inline-block;
  height: 2.75rem;
  margin-bottom: 0.75rem;
  vertical-align: text-bottom;
  width: 2.75rem;
}

.page-loading {
  background-color: #0b0f19;
}

.page-loading-inner > span {
  color: #fff;
  opacity: 0.6;
}

.page-spinner {
  border-color: hsla(0, 0%, 100%, 0.4) transparent hsla(0, 0%, 100%, 0.4)
    hsla(0, 0%, 100%, 0.4);
}

.w-100 {
  width: 100%;
}

.slider-container {
  margin: 0;
  padding: 50px 20px;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
}

.slider-container .slider-wrapper {
  width: 100%;
  max-width: 1200px;
  height: 400px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.slider-container .card-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.slider-container .card-slider-slide {
  display: flex;
  gap: 10px;
  padding: 0 5px;
  min-width: 100%;
  height: 100%;
}

.slider-container .card-slider-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, flex;
  flex: 1;
  min-width: 30px;
}

.slider-container .card-slider-card.expanded {
  flex: 2.5;
  transform: scale(1.02);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.slider-container .card-slider-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
  transition: all 0.6s ease;
}

.slider-container .card-slider-card.expanded::before {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 30%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.slider-container .card-icon {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  backdrop-filter: blur(10px);
  bottom: 0%;
  left: 0%;
  transform: translate(50%, -50%);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-container .card-slider-card.expanded .card-icon {
  bottom: 130px;
  left: 20px;
  transform: none;
  background: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-container .card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 3;
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-container .card-slider-card.expanded .card-content {
  opacity: 1;
  transform: translateY(0);
}

.slider-container .card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slider-container .card-subtitle {
  font-size: 0.9em;
  opacity: 0.9;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  line-height: 1.4;
}

.slider-container .nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.2);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.slider-container .nav-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.slider-container .nav-button.prev {
  left: 15px;
}

.slider-container .nav-button.next {
  right: 15px;
}

.slider-container .card-slider-pagination {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.slider-container .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-container .dot.active {
  background: white;
  transform: scale(1.3);
}

.slider-container .card-slider-card,
.slider-container .card-icon,
.slider-container .card-content {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.slider-container .slider-wrapper {
  touch-action: pan-x;
}

/* home -testimonial */

.testimonial-slider {
  font-family: "Inter", sans-serif;
  /* background: linear-gradient(to top right, #e2e8f0, #f8fafc); */
  color: #1e293b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  position: relative;
}

.testimonial-slider main {
  background: url("../images/Home/Confidence Shared By Many/Bg.png");
  margin: 1rem 0;
  width: 100%;
  max-width: 50rem;
  border-radius: 1.5rem;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .testimonial-slider main {
    padding: 4rem;
  }
}

.testimonial-slider h1 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.testimonial-slider .subtitle {
  font-size: 16px;
  color: #f9f9f9;
}

.testimonial-slider .testimonial-container {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "slider"
    "nav-buttons";
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .testimonial-slider .testimonial-container {
    grid-template-columns: 60px auto 60px;
    grid-template-areas: "nav-left slider nav-right";
    gap: 1.5rem;
  }
}

.testimonial-slider .nav-button {
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.5s ease-in-out;
  position: relative;
  isolation: isolate;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Material Icons";
}

@media (min-width: 640px) {
  .testimonial-slider .nav-button {
    margin-top: 2rem;
  }
}

.testimonial-slider .nav-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  transition: all 0.3s ease;
  z-index: -1;
  border-radius: 50%;
  background: #ffffff00;
  border: 1px solid #fff;
}

.testimonial-slider .nav-button:hover::before {
  inset: 100%;
}

.testimonial-slider .nav-button:hover {
  color: white;
  background: black;
  border-color: black;
}

.testimonial-slider .nav-left {
  grid-area: nav-left;
  justify-self: end;
}

.testimonial-slider .nav-right {
  grid-area: nav-right;
  justify-self: start;
}

.testimonial-slider .nav-buttons-container {
  grid-area: nav-buttons;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

@media (max-width: 639px) {
  .testimonial-slider .nav-left,
  .testimonial-slider .nav-right {
    display: none;
  }
}

@media (min-width: 640px) {
  .testimonial-slider .nav-left {
    display: flex;
    grid-area: nav-left;
    justify-self: end;
  }

  .testimonial-slider .nav-right {
    display: flex;
    grid-area: nav-right;
    justify-self: start;
  }

  .testimonial-slider .nav-buttons-container {
    display: none;
  }
}

.testimonial-slider #slider {
  grid-area: slider;
}

.testimonial-slider #list-cards {
  display: grid;
  grid-template-areas: "stack";
  overflow: hidden;
}

.testimonial-slider .card {
  grid-area: stack;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-slider .card.active {
  opacity: 1;
}

.testimonial-slider blockquote {
  background: #ffffff;
  color: #000000;
  border-radius: 0.375rem;
  padding: 1.5rem;
  font-size: 0.875rem;
  transition: all 0.5s ease-in-out;
  transform: scale(0);
  position: relative;
  isolation: isolate;
}

.testimonial-slider blockquote.show {
  transform: scale(1);
}

.testimonial-slider blockquote::before {
  content: "";
  position: absolute;
  background: #ffff;
  width: 1rem;
  height: 1rem;
  transform: rotate(45deg);
  bottom: -0.5rem;
  left: 50%;
  margin-left: -0.5rem;
  z-index: -1;
  transition: all 0.5s ease;
  transition-delay: 0.5s;
  transform: rotate(45deg) translateY(-100%);
}

.testimonial-slider blockquote.show::before {
  transform: rotate(45deg) translateY(0);
}

.testimonial-slider .details {
  font-size: 0.875rem;
  transform: translateY(150px);
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-slider .details.show {
  transform: translateY(0);
}

.testimonial-slider .review-img {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-slider .review-name {
  font-size: 0.875rem;
  font-weight: 700;
}

.testimonial-slider .review-role {
  font-size: 0.75rem;
  color: #64748b;
}

.testimonial-slider .nav-button.slide-left {
  transform: translateX(5rem);
}

.testimonial-slider .nav-button.slide-right {
  transform: translateX(-5rem);
}

.pricing-heading {
  padding-bottom: 50px;
}
.d-flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.align-items-center {
  align-items: center;
}
.align-items-start {
  align-items: start !important;
}
.justify-content-center {
  justify-content: center;
}
.nav-link-text::after,
.w--current::after,
.auth-page-link::after,
.footer-link-box a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #cc7f00;
  transition: width 0.4s ease-in-out;
}
.nav-link-text:hover::after,
.auth-page-link:hover::after,
.footer-link-box a:hover::after {
  width: 100%;
}
.w--current::after {
  width: 100% !important;
}
.nav-link-text,
.auth-page-link,
.footer-link-box a {
  position: relative;
  text-transform: capitalize;
}
.nav-link-text:hover,
.w--current,
.auth-page-link:hover {
  color: #cc7f00;
  transform: translateX(4px);
  transition: all 0.4s;
}
.dropdown-link.w--current {
  color: #cc7f00;
  display: inline-block;
  padding-left: 0;
  margin: 0 15px;
}

@import url("https://fonts.googleapis.com/css?family=Nunito:400,900");
.progress-container
  .progress_inner
  #step-1:checked
  + input
  + input
  + input
  + input
  + div
  + div
  + div
  + div
  > .box_base,
.progress-container
  .progress_inner
  #step-5:checked
  + div
  + div
  + div
  + div
  > .box_base,
.progress-container
  .progress_inner
  #step-4:checked
  + input
  + div
  + div
  + div
  + div
  > .box_base,
.progress-container
  .progress_inner
  #step-3:checked
  + input
  + input
  + div
  + div
  + div
  + div
  > .box_base,
.progress-container
  .progress_inner
  #step-2:checked
  + input
  + input
  + input
  + div
  + div
  + div
  + div
  > .box_base {
  top: 50%;
  left: 0px;
  opacity: 1;
}
.progress-container
  .progress_inner
  #step-1:checked
  + input
  + input
  + input
  + input
  + div
  + div
  + div
  + div
  > .box_item,
.progress-container
  .progress_inner
  #step-5:checked
  + div
  + div
  + div
  + div
  > .box_item,
.progress-container
  .progress_inner
  #step-4:checked
  + input
  + div
  + div
  + div
  + div
  > .box_item,
.progress-container
  .progress_inner
  #step-3:checked
  + input
  + input
  + div
  + div
  + div
  + div
  > .box_item,
.progress-container
  .progress_inner
  #step-2:checked
  + input
  + input
  + input
  + div
  + div
  + div
  + div
  > .box_item {
  top: -30px;
  left: 0px;
  opacity: 0;
}

.progress-container
  .progress_inner
  #step-2:checked
  + input
  + input
  + input
  + div
  + div
  + div
  + div
  > .box_lid,
.progress-container
  .progress_inner
  #step-5:checked
  + div
  + div
  + div
  + div
  > .box_lid,
.progress-container
  .progress_inner
  #step-4:checked
  + input
  + div
  + div
  + div
  + div
  > .box_lid {
  top: -20px;
  left: 0px;
  opacity: 0;
}
.progress-container
  .progress_inner
  #step-2:checked
  + input
  + input
  + input
  + div
  + div
  + div
  + div
  > .box_item,
.progress-container
  .progress_inner
  #step-5:checked
  + div
  + div
  + div
  + div
  > .box_item,
.progress-container
  .progress_inner
  #step-4:checked
  + input
  + div
  + div
  + div
  + div
  > .box_item {
  top: -10px;
  left: 0px;
  opacity: 1;
}

.progress-container
  .progress_inner
  #step-3:checked
  + input
  + input
  + div
  + div
  + div
  + div
  > .box_item,
.progress-container
  .progress_inner
  #step-5:checked
  + div
  + div
  + div
  + div
  > .box_item,
.progress-container
  .progress_inner
  #step-4:checked
  + input
  + div
  + div
  + div
  + div
  > .box_item {
  top: 10px;
  left: 0px;
  opacity: 1;
}
.progress-container
  .progress_inner
  #step-3:checked
  + input
  + input
  + div
  + div
  + div
  + div
  > .box_lid,
.progress-container
  .progress_inner
  #step-5:checked
  + div
  + div
  + div
  + div
  > .box_lid,
.progress-container
  .progress_inner
  #step-4:checked
  + input
  + div
  + div
  + div
  + div
  > .box_lid {
  top: -1px;
  left: 0px;
  opacity: 1;
}
.progress-container
  .progress_inner
  #step-3:checked
  + input
  + input
  + div
  + div
  + div
  + div
  > .box_ribbon,
.progress-container
  .progress_inner
  #step-5:checked
  + div
  + div
  + div
  + div
  > .box_ribbon,
.progress-container
  .progress_inner
  #step-4:checked
  + input
  + div
  + div
  + div
  + div
  > .box_ribbon {
  top: 70%;
  left: 0px;
  opacity: 0;
}
.progress-container
  .progress_inner
  #step-3:checked
  + input
  + input
  + div
  + div
  + div
  + div
  > .box_bow,
.progress-container
  .progress_inner
  #step-5:checked
  + div
  + div
  + div
  + div
  > .box_bow,
.progress-container
  .progress_inner
  #step-4:checked
  + input
  + div
  + div
  + div
  + div
  > .box_bow {
  top: 0px;
  left: 0px;
  opacity: 0;
}

.progress-container
  .progress_inner
  #step-4:checked
  + input
  + div
  + div
  + div
  + div
  > .box_ribbon,
.progress-container
  .progress_inner
  #step-5:checked
  + div
  + div
  + div
  + div
  > .box_ribbon {
  top: 50%;
  left: 0px;
  opacity: 1;
}
.progress-container
  .progress_inner
  #step-4:checked
  + input
  + div
  + div
  + div
  + div
  > .box_bow,
.progress-container
  .progress_inner
  #step-5:checked
  + div
  + div
  + div
  + div
  > .box_bow {
  top: -10px;
  left: 0px;
  opacity: 1;
}

.progress-container
  .progress_inner
  #step-5:checked
  + div
  + div
  + div
  + div
  > .box_tag {
  top: 10px;
  left: 20px;
  opacity: 1;
}
.progress-container
  .progress_inner
  #step-5:checked
  + div
  + div
  + div
  + div
  > .box_string {
  top: 10px;
  left: 20px;
  opacity: 1;
}

* {
  box-sizing: border-box;
}

.progress-container .progress_inner__status .box_string,
.progress-container .progress_inner__status .box_tag,
.progress-container .progress_inner__status .box_bow__right,
.progress-container .progress_inner__status .box_bow__left,
.progress-container .progress_inner__status .box_bow,
.progress-container .progress_inner__status .box_ribbon,
.progress-container .progress_inner__status .box_item,
.progress-container .progress_inner__status .box_base,
.progress-container .progress_inner,
.progress-container .progress_inner__step:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
}

.progress-container .progress_inner__bar--set,
.progress-container .progress_inner__bar {
  height: 6px;
  left: 10%;
  background: repeating-linear-gradient(
    45deg,
    #1ea4ec,
    #1ea4ec 4px,
    #1f8bc5 4px,
    #1f8bc5 10px
  );
  transition: width 800ms cubic-bezier(0.915, 0.015, 0.3, 1.005);
  border-radius: 6px;
  width: 0;
  position: relative;
  z-index: -1;
}

.progress-container .progress_inner__step:before {
  width: 30px;
  height: 30px;
  color: #ff9f00;
  background: white;
  line-height: 30px;
  border: 3px solid #ff9f00;
  font-size: 12px;
  top: 3px;
  border-radius: 100%;
  transition: all 0.4s;
  cursor: pointer;
  pointer-events: none;
}

.progress-container .progress_inner__step {
  width: 20%;
  font-size: 14px;
  padding: 0 10px;
  transition: all 0.4s;
  float: left;
  text-align: center;
  position: relative;
}
.progress-container .progress_inner__step label {
  padding-top: 50px;
  top: -20px;
  display: block;
  position: relative;
  cursor: pointer;
}
.progress-container .progress_inner__step:hover {
  color: white;
}
.progress-container .progress_inner__step:hover:before {
  color: #151515;
  background: #ff9f00;
}

.progress-container {
  color: #ff9f00;
  text-align: center;
  font-weight: 900;
  position: relative;
  height: 600px;
  padding: 50px 20px;
}

.progress-container .progress_inner {
  height: 200px;
  width: 700px;
}
.progress-container .progress_inner #step-5:checked + div {
  width: 80%;
}
.progress-container
  .progress_inner
  #step-5:checked
  + div
  + div
  + div
  > .tab:nth-of-type(5) {
  opacity: 1;
  top: 0;
}
.progress-container .progress_inner #step-5:checked + div + div + div + div {
  right: 10%;
}
.progress-container .progress_inner #step-4:checked + input + div {
  width: 60%;
}
.progress-container
  .progress_inner
  #step-4:checked
  + input
  + div
  + div
  + div
  > .tab:nth-of-type(4) {
  opacity: 1;
  top: 0;
}
.progress-container
  .progress_inner
  #step-4:checked
  + input
  + div
  + div
  + div
  + div {
  right: 30%;
}
.progress-container .progress_inner #step-3:checked + input + input + div {
  width: 40%;
}
.progress-container
  .progress_inner
  #step-3:checked
  + input
  + input
  + div
  + div
  + div
  > .tab:nth-of-type(3) {
  opacity: 1;
  top: 0;
}
.progress-container
  .progress_inner
  #step-3:checked
  + input
  + input
  + div
  + div
  + div
  + div {
  right: 50%;
}
.progress-container
  .progress_inner
  #step-2:checked
  + input
  + input
  + input
  + div {
  width: 20%;
}
.progress-container
  .progress_inner
  #step-2:checked
  + input
  + input
  + input
  + div
  + div
  + div
  > .tab:nth-of-type(2) {
  opacity: 1;
  top: 0;
}
.progress-container
  .progress_inner
  #step-2:checked
  + input
  + input
  + input
  + div
  + div
  + div
  + div {
  right: 70%;
}
.progress-container
  .progress_inner
  #step-1:checked
  + input
  + input
  + input
  + input
  + div {
  width: 0%;
}
.progress-container
  .progress_inner
  #step-1:checked
  + input
  + input
  + input
  + input
  + div
  + div
  + div
  > .tab:nth-of-type(1) {
  opacity: 1;
  top: 0;
}
.progress-container
  .progress_inner
  #step-1:checked
  + input
  + input
  + input
  + input
  + div
  + div
  + div
  + div {
  right: 90%;
}
.progress-container .progress_inner__step:nth-of-type(1):before {
  content: "1";
}
.progress-container .progress_inner__step:nth-of-type(2):before {
  content: "2";
}
.progress-container .progress_inner__step:nth-of-type(3):before {
  content: "3";
}
.progress-container .progress_inner__step:nth-of-type(4):before {
  content: "4";
}
.progress-container .progress_inner__step:nth-of-type(5):before {
  content: "5";
}
.progress-container .progress_inner__bar--set {
  width: 80%;
  top: -6px;
  background: #fff;
  position: relative;
  z-index: -2;
}
.progress-container .progress_inner__tabs .tab {
  opacity: 0;
  position: absolute;
  top: 40px;
  text-align: center;
  margin-top: 80px;
  box-shadow: 0px 2px 1px #ff9f00;
  padding: 30px;
  background: url("../images/Home/Confidence Shared By Many/Bg.png");
  border-radius: 10px;
  transition: all 0.2s;
}
.progress-container .progress_inner__tabs .tab h4 {
  margin: 0 0 10px 0;
}
.progress-container .progress_inner__tabs .tab p {
  font-weight: 400;
  opacity: 0.8;
}
.progress-container .progress_inner__status {
  width: 40px;
  height: 40px;
  top: -80px;
  transition: right 800ms cubic-bezier(0.915, 0.015, 0.3, 1.005);
  transform: translateX(50%);
  position: absolute;
}
.progress-container .progress_inner__status div {
  opacity: 1;
  transition: all 600ms cubic-bezier(0.915, 0.015, 0.3, 1.005);
  transition-delay: 300ms;
}
.progress-container .progress_inner__status div {
  position: absolute;
}
.progress-container .progress_inner__status .box_base {
  background: repeating-linear-gradient(
    45deg,
    #986c5d,
    #986c5d 2px,
    #775144 2px,
    #775144 4px
  );
  width: 36px;
  height: 40px;
  z-index: 1;
  border-radius: 1px;
}
.progress-container .progress_inner__status .box_lid {
  width: 40px;
  height: 13.3333333333px;
  background: #775144;
  z-index: 2;
  border-radius: 1px;
  top: 0;
}
.progress-container .progress_inner__status .box_item {
  width: 20px;
  height: 20px;
  background: #be69d2;
  z-index: 0;
  border-radius: 4px;
  transform: rotate(45deg);
}
.progress-container .progress_inner__status .box_ribbon {
  width: 10px;
  height: 42px;
  background: #ee0f29;
  z-index: 4;
  border-radius: 1px;
}
.progress-container .progress_inner__status .box_bow__right,
.progress-container .progress_inner__status .box_bow__left {
  width: 6px;
  height: 10px;
  background: #be0c21;
  position: absolute;
  z-index: 3;
  opacity: 1;
  border-radius: 1px;
}
.progress-container .progress_inner__status .box_bow {
  top: -6px;
  z-index: 1;
  transition-delay: 500ms;
}
.progress-container .progress_inner__status .box_bow__left {
  left: 6px;
  transform: rotate(45deg);
}
.progress-container .progress_inner__status .box_bow__right {
  left: -4px;
  transform: rotate(-45deg);
}
.progress-container .progress_inner__status .box_tag {
  width: 20px;
  height: 10px;
  background: #487ac7;
  z-index: 4;
  transform: rotate(-10deg) translateX(-40px) translateY(0px);
  border-radius: 2px;
  transition-delay: 500ms;
}
.progress-container .progress_inner__status .box_string {
  width: 17px;
  height: 2px;
  background: #343434;
  z-index: 4;
  transform: rotate(-39deg) translateX(-22px) translateY(-12px);
}
.progress-container .progress_inner input[type="radio"] {
  display: none;
}
.py-4 {
  padding: 40px 0;
}

.your-opction {
  background-color: unset;
  border: unset;
  padding: 0 16px;
  color: #000;
}
.find-your-opction-div {
  border-bottom: 1px solid #151515;
}

.your-opction.w--current {
  transform: unset;
  background-color: unset;
  color: #000;
}

.infographic-container {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.infographic-container .card {
  background: white;
  border-radius: 25px;
  padding: 30px 25px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 20px;
  border: 4px solid transparent;
  animation: slideInUp 0.6s ease forwards;
}

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

.infographic-container .card:nth-child(1) {
  animation-delay: 0.1s;
}
.infographic-container .card:nth-child(2) {
  animation-delay: 0.2s;
}
.infographic-container .card:nth-child(3) {
  animation-delay: 0.3s;
}
.infographic-container .card:nth-child(4) {
  animation-delay: 0.4s;
}

.infographic-container .card-icon {
  /* width: 35px;
  height: 35px; */
  padding-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #ff9f00, #fff5e6) 1;
    border-radius: 12px; /* optional */
  
}

.infographic-container .card-title {
  font-size: 22px;
  font-weight: 600;
  color: #ff9f00;
  margin-bottom: 15px;
}

.infographic-container .card-description {
  color: #151515;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 20px;
}

.infographic-container .card-number {
  position: absolute;
  font-size: 72px;
  font-weight: 900;
  opacity: 0.08;
  right: 25px;
  bottom: 20px;
}


/* Responsive Design */
@media (max-width: 768px) {
  .infographic-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .infographic-container .template-text {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .infographic-container .card {
    padding: 30px 25px;
    min-height: 180px;
  }

  .infographic-container .card-title {
    font-size: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .infographic-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (min-width: 1025px) {
  .infographic-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}

/* Animation for page load */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-0 {
  padding: 0 !important;
}
.integration-group.w-dyn-items.custom-card {
  grid-template-columns: repeat(2, 1fr);
}

.arrow-card {
  position: relative;
  width: 320px;
  height: 300px;
  margin-right: -40px;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.arrow-card:nth-child(1) {
  z-index: 3;
}
.arrow-card:nth-child(2) {
  z-index: 2;
}
.arrow-card:nth-child(3) {
  z-index: 1;
}

.arrow-card .card-content {
  position: relative;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(
    0% 0%,
    78.61% 0%,
    100% 49.25%,
    79.25% 100%,
    0% 100%,
    0% 100%,
    16.73% 50.16%
  );
  background-color: #000;
}

.arrow-card .card-main {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.arrow-card .forward-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 28px;
  font-weight: bold;
  z-index: 20;
  opacity: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.arrow-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z'/%3E%3C/svg%3E");
}

.arrow-card .card-title {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 13px 35px 10px;
  margin: -18px -20px 20px -16px;
  letter-spacing: 1px;
  width: 100%;
}

.arrow-card .card-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.5;
  flex-grow: 1;
  padding-left: 40px;
}

@media (max-width: 1024px) {
  .arrow-card .card-text {
    padding-left: 50px;
  }
  .arrow-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .arrow-card {
    margin-right: 0;
    width: 100%;
  }

  .arrow-card .card-main {
    padding: 15px;
    padding-right: 60px;
  }

  .arrow-card .forward-icon {
    font-size: 24px;
    right: 15px;
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .arrow-card .card-main {
    padding: 12px;
    padding-right: 50px;
  }

  .arrow-card .forward-icon {
    font-size: 20px;
    right: 12px;
    width: 30px;
    height: 30px;
  }

  .arrow-background {
    background-size: 40px;
  }
}

.arrow-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 0px;
}

.escrow-slider {
  position: relative;
  overflow: hidden;
  border-radius: 5rem;
}

.escrow-slider .slider {
  display: flex;
  width: 500%;
  height: 55rem;
  transition: all 0.25s ease-in;
  transform: translateX(0);
}
/* @media only screen and (max-width: 1000px) {
  .escrow-slider .slider {
    height: 100vh;
  }
} */
.escrow-slider .slider .box {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 650px) {
  .escrow-slider .slider .box {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
  }
}
.escrow-slider .slider .box .bg {
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.2);
  width: 55%;
  transform: skewX(7deg);
  position: absolute;
  height: 100%;
  left: -10%;
  padding-left: 20rem;
  transform-origin: 0 100%;
}
@media only screen and (max-width: 800px) {
  .escrow-slider .slider .box .bg {
    width: 65%;
  }
}
@media only screen and (max-width: 650px) {
  .escrow-slider .slider .box .bg {
    width: 100%;
    left: 0;
    bottom: 0;
    height: 54%;
    transform: skewX(0deg);
  }
}
.escrow-slider .slider .box .bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: inherit;
  pointer-events: none;
  transform: skewX(10deg);
}
@media only screen and (max-width: 650px) {
  .escrow-slider .slider .box .bg::before {
    width: 120%;
    bottom: 0;
    transform: skewX(0deg);
  }
}
.escrow-slider .slider .box .details {
  padding: 50px;
  padding-left: 9rem;
  z-index: 100;
  grid-column: 1 / span 1;
  grid-row: 1/-1;
}
@media only screen and (max-width: 650px) {
  .escrow-slider .slider .box .details {
    grid-row: 2 / span 1;
    grid-column: 1/-1;
    text-align: center;
    padding: 2rem;
    transform: translateY(-2rem);
  }
}
.escrow-slider .slider .box .details h1 {
  color: #f6f6f6;
}
.escrow-slider .slider .box .details p {
  display: inline-block;
  font-size: 16px;
  color: #f6f6f6;
  margin-bottom: 2rem;
  margin-right: 5rem;
}
@media only screen and (max-width: 800px) {
  .escrow-slider .slider .box .details p {
    margin-right: 0;
  }
}
.escrow-slider .slider .box .details button {
  padding: 1rem 3rem;
  color: #fff;
  border-radius: 2rem;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.escrow-slider .slider .box .details button:hover {
  opacity: 0.8;
}
.escrow-slider .slider .box .details button:focus {
  outline: none;
  border: none;
}
.escrow-slider .slider :is(.box1, .box2, .box3, .box4) {
  background: linear-gradient(90deg, #c74900 0%, #dd9006 100%);
}
/* .escrow-slider .slider .illustration {
  grid-column: 2/-1;
  grid-row: 1/-1;
  justify-self: center;
}  */
@media only screen and (max-width: 650px) {
  .escrow-slider .slider .illustration {
    grid-row: 1 / span 1;
    grid-column: 1/-1;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.7);
    position: relative;
    left: -40px;
  }
}
.escrow-slider .slider .illustration div {
  height: 25rem;
  width: 18rem;
  border-radius: 3rem;
  background-color: #ff0077;
  position: relative;
  transform: skewX(-10deg);
}
@media only screen and (max-width: 800px) {
  .escrow-slider .slider .illustration div {
    height: 20rem;
    width: 15rem;
  }
}
.escrow-slider .slider .illustration div::after,
.escrow-slider .slider .illustration div::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 3rem;
  top: 0;
  left: 0;
}
.escrow-slider .slider .illustration div::after {
  transform: translate(4rem, -1rem);
}
.escrow-slider .slider .illustration div::before {
  transform: translate(2rem, -2rem);
}

.escrow-slider .prev,
.escrow-slider .next,
.escrow-slider .trail {
  z-index: 10000;
  position: absolute;
}

.escrow-slider .prev,
.escrow-slider .next {
  width: 4rem;
  cursor: pointer;
  opacity: 0.2;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 650px) {
  .escrow-slider .prev,
  .escrow-slider .next {
    display: none;
  }
}
.escrow-slider .prev:hover,
.escrow-slider .next:hover {
  opacity: 1;
}

.escrow-slider .prev {
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
}

.escrow-slider .next {
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
}

.escrow-slider .trail {
  bottom: 5%;
  left: 60%;
  transform: translateX(-50%);
  width: 60%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  text-align: center;
  font-size: 1.5rem;
  z-index: 0;
}
@media only screen and (max-width: 650px) {
  .escrow-slider .trail {
    width: 90%;
    bottom: 13%;
    display: none;
  }
}
.escrow-slider .trail div {
  padding: 2rem;
  border-top: 3px solid #fff;
  cursor: pointer;
  opacity: 0.3;
  transition: all 0.3s ease;
  color: #f9f9f9;
}
.escrow-slider .trail div:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 650px) {
  .escrow-slider .trail div {
    padding: 1rem;
  }
}

.escrow-slider .active {
  opacity: 1 !important;
}

.blog-slider {
  width: 95%;
  position: relative;
  max-width: 800px;
  margin: auto;
  background: #fff;
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  padding: 25px;
  border-radius: 25px;
  height: 400px;
  transition: all 0.3s;
}
@media screen and (max-width: 992px) {
  .blog-slider {
    max-width: 680px;
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .blog-slider {
    min-height: 500px;
    height: auto;
    margin: 130px auto 40px;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider {
    height: 350px;
  }
}
.blog-slider__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .blog-slider__item {
    flex-direction: column;
  }
}
.blog-slider__item.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > * {
  opacity: 1;
  transform: none;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
  transition-delay: 0.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
  transition-delay: 0.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
  transition-delay: 0.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
  transition-delay: 0.7s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
  transition-delay: 0.8s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
  transition-delay: 0.9s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
  transition-delay: 1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
  transition-delay: 1.1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
  transition-delay: 1.2s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
  transition-delay: 1.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
  transition-delay: 1.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
  transition-delay: 1.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
  transition-delay: 1.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
  transition-delay: 1.7s;
}
.blog-slider__img {
  width: 300px;
  flex-shrink: 0;
  height: 300px;
  /* background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2); */
  border-radius: 20px;
  transform: translateX(-80px);
  overflow: hidden;
}
.blog-slider__img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%); */
  border-radius: 20px;
  opacity: 0.8;
}
.blog-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  border-radius: 20px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .blog-slider__img {
    transform: translateY(-50%);
    width: 90%;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__img {
    width: 95%;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider__img {
    height: 270px;
  }
}
.blog-slider__content {
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .blog-slider__content {
    margin-top: -80px;
    text-align: center;
    padding: 0 30px;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__content {
    padding: 0;
  }
}
.blog-slider__content > * {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s;
}
.blog-slider__code {
  color: #7b7992;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}
.blog-slider__title {
  font-size: 24px;
  font-weight: 700;
  color: #0d0925;
  margin-bottom: 20px;
}
.blog-slider__text {
  color: #4e4a67;
  margin-bottom: 30px;
  line-height: 1.5em;
}
.blog-slider__button {
  display: inline-flex;
  background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
}
@media screen and (max-width: 576px) {
  .blog-slider__button {
    width: 100%;
  }
}
.blog-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.blog-slider .swiper-pagination-custom,
.blog-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.blog-slider__pagination {
  position: absolute;
  z-index: 21;
  right: 6px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination {
    transform: translateX(-50%);
    left: 50% !important;
    top: 205px;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}
.blog-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: #062744;
  opacity: 0.2;
  transition: all 0.3s;
}
.blog-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fd3838;
  height: 30px;
  box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}
@media screen and (max-width: 768px) {
  .blog-slider__pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
  }
}

.benefit-card.clip-bottom {
  clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
}

.payout-card {
  width: 300px;
  background: url("../images/Banking/Banking - Payout/Benefits Grow Where Payouts Flow.png");
  border-radius: 16px;
  padding: 32px 24px 60px 24px;
  color: white;
  position: relative;
  box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

.payout-card .benefit-card.clip-bottom {
  clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
}

.payout-card .card-title {
  font-size: 20px;
  font-weight: bold;
  color: #ff9f00;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  margin-top: 0;
}

.payout-card .card-content {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 32px;
  opacity: 0.95;
  color: #151515;
}

.payout-card .checkmark-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.payout-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hero-section {
  justify-content: center;
  padding-top: 188px;
  overflow: clip;
}

.home-01-wrap {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 150vh;
  display: flex;
}

.home-01-top {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.home-01-text-wrap {
  flex: 0 auto;
  width: 65%;
  max-width: 792px;
  margin-right: 40px;
}

.tag {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  border: 1px solid #ff9f00;
  border-radius: 100px;
  padding: 5px 24px;
  display: flex;
}

.tag-icon {
  width: 20px;
  height: 20px;
}

.tag-wrap {
  display: inline-block;
}

.home-01-video-wrap {
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  height: 100%;
  margin-top: 88px;
  display: flex;
  position: sticky;
  top: 100px;
}

.w-background-video {
  color: #fff;
  height: 500px;
  position: relative;
  overflow: hidden;
}
.hero-bg-video {
  object-fit: cover;
  width: 35%;
  height: 328px;
  display: flex;
      align-items: center;
      justify-content: center;
}
.w-background-video > video {
  object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  inset: -100%;
}

.video-cover {
  z-index: 1;
  background-color: var(--white);
  opacity: 0;
  width: 110%;
  height: 110%;
  position: absolute;
  inset: -5% 0% 0% -5%;
}
.mt-40.hero-btn-wrap {
  display: inline-block;
}
.btn-wrap-02 {
  z-index: 1;
  display: flex;
  position: relative;
}

.btn-text-wrap {
  position: relative;
  overflow: hidden;
}

.btn-text._02 {
  position: absolute;
}

.btn-arrow-wrap {
  position: relative;
  overflow: hidden;
}

.btn-arrow-box._02 {
  position: absolute;
  top: 0;
  left: -100%;
}

.hero-text-wrap {
  margin-top: 16px;
}
.btn-02 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  color: #000;
  border-radius: 100px;
  padding: 12px 16px 12px 27px;
  text-decoration: none;
  display: flex;
  position: relative;
}
.btn-overlay-wrap {
  z-index: -1;
  background-color: #000;
  border-radius: 100px;
  position: absolute;
  inset: 0%;
}
.btn-overlay-inner {
  background-color: #fff;
  border-radius: 100px;
  width: 140px;
  position: absolute;
  inset: 3px;
}
.btn-black-arrow {
  filter: invert();
}

@media screen and (max-width: 991px) {
  .home-01-wrap {
    height: auto;
  }
}
@media screen and (max-width: 991px) {
  .hero-bg-video {
    width: 100%;
    height: auto;
    transform: none;
  }
  .home-01-text-wrap {
    width: auto;
    max-width: none;
    margin-right: 0;
  }
  .hero-section {
    padding-top: 100px !important;
    padding: 15px;
  }
}
.text-white {
  color: #fff;
}

.iq-features .holderCircle {
  width: 500px;
  height: 500px;
  border-radius: 100%;
  margin: 60px auto;
  position: relative;
}

/* Custom Bootstrap-like CSS */
.iq-features .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1140px;
}
.iq-features .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.iq-features .col-lg-3,
.iq-features .col-lg-6,
.iq-features .col-md-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 992px) {
  .iq-features .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .iq-features .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .iq-features .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.iq-features .align-items-center {
  align-items: center;
  display: flex;
}

/* ======== Font Awesome icons ======== */
.iq-features .fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.iq-features .fa-clock-o:before {
  content: "\f017";
}
.iq-features .fa-comments:before {
  content: "\f086";
}
.iq-features .fa-user:before {
  content: "\f007";
}
.iq-features .fa-tags:before {
  content: "\f02c";
}
.iq-features .fa-upload:before {
  content: "\f093";
}
.iq-features .fa-briefcase:before {
  content: "\f0b1";
}

/* Dot Circle */
.iq-features .dotCircle {
  width: 100%;
  height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100%;
  z-index: 20;
}
.iq-features .dotCircle .itemDot {
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  background: #ffffff;
  color: #7d4ac7;
  border-radius: 20px;
  text-align: center;
  line-height: 80px;
  font-size: 40px;
  z-index: 3;
  cursor: pointer;
  border: 2px solid #e6e6e6;
}
.iq-features .dotCircle .itemDot .forActive {
  width: 56px;
  height: 56px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}
.iq-features .dotCircle .itemDot .forActive::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 3px solid #7d4ac7;
  bottom: -31px;
  left: -14px;
  filter: blur(1px);
  position: absolute;
  border-radius: 100%;
}
.iq-features .dotCircle .itemDot .forActive::before {
  content: "";
  width: 6px;
  height: 6px;
  filter: blur(5px);
  top: -15px;
  position: absolute;
  transform: rotate(-45deg);
  border: 6px solid #a733bb;
  right: -39px;
}
.iq-features .dotCircle .itemDot.active .forActive {
  display: block;
}
.iq-features .round {
  position: absolute;
  left: 40px;
  top: 45px;
  width: 410px;
  height: 410px;
  border: 2px dotted #a733bb;
  border-radius: 100%;
  -webkit-animation: rotation 100s infinite linear;
}
.iq-features .dotCircle .itemDot:hover,
.iq-features .dotCircle .itemDot.active {
  color: #ffffff;
  transition: 0.5s;
  background: linear-gradient(to right, #7d4ac7 0%, #a733bb 100%);
  border: 2px solid #ffffff;
  box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.13);
}
.iq-features .contentCircle {
  width: 250px;
  border-radius: 100%;
  color: #222222;
  position: relative;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.iq-features .contentCircle .CirItem {
  border-radius: 100%;
  color: #222222;
  position: absolute;
  text-align: center;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: scale(0);
  transition: 0.5s;
  font-size: 15px;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  margin: auto;
  line-height: 250px;
}
.iq-features .CirItem.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  transition: 0.5s;
}
.iq-features .contentCircle .CirItem i {
  font-size: 180px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -90px;
  color: #000000;
  opacity: 0.1;
}

/* Responsive */
@media only screen and (min-width: 300px) and (max-width: 599px) {
  .iq-features .holderCircle {
    margin: 110px auto;
  }
  .iq-features .holderCircle::after {
    width: 100%;
    height: 100%;
  }
  .iq-features .dotCircle {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}

/* Title Box */
.iq-features .title-box .title {
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  z-index: -1;
  font-size: 22px;
  margin: auto;
}

.iq-features .title-box p {
  font-size: 16px;
  line-height: 2em;
}

.creative-cards {
  padding: 60px 0;
  position: relative;
}
.creative-cards .container {
  max-width: 1320px;
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}
.creative-cards .container .row {
  display: flex;
  flex-wrap: wrap;
}
.creative-cards .container .row .card-column {
  flex: 0 0 auto;
  width: 33.33333333%;
  text-align: center;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.creative-cards .card-details {
  width: 80%;
  margin: auto;
  position: relative;
  transition: 0.3s ease-in-out;
}
.creative-cards .card-details:before {
  content: "";
  width: 190px;
  height: 380px;
  background: #f7f6f2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) skew(-20deg, 0deg);
  z-index: -1;
  transition: 0.3s ease-in-out;
}
/* .creative-cards .card-details:hover:before {
  background-color: #fffab3;
} */
.creative-cards .card-icons {
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .creative-cards .card-details:hover .card-icons:before {
  background-color: #ffee02;
} */
.creative-cards .card-icons img {
  position: relative;
}
.creative-cards .card-details h3 {
  margin-bottom: 15px;
  margin-top: 50px;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
}
.creative-cards .card-details h3 a {
  color: #000;
  text-decoration: none;
}
.creative-cards .card-details p {
  font-size: 16px;
  line-height: 30px;
  color: #444;
  font-weight: 400;
  margin-bottom: 30px;
}
.creative-cards .read-more-btn {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-radius: 100%;
  margin: auto;
  background: #fff;
  transform: translateX(-10px);
  opacity: 0;
  visibility: hidden;
  border-color: #ffee02;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.creative-cards .read-more-btn i {
  color: #000;
  font-size: 12px;
}
.creative-cards .card-details:hover .read-more-btn {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.signup-card {
  background: #f6f6f6;
  padding: 44px;
  width: clamp(300px, 80%, 500px);
}
.form-submit-button,
.form-button-box {
  width: 100%;
}
.signup-card .form-submit-button:hover,
.signup-card .form-submit-button:focus {
  border: 1px solid #151515;
  background-color: #f6f6f6;
  color: #f9f9f9;
  transition: all 0.3ms ease;
}

.py-2 {
  padding: 20px 0;
}
.h-600 {
  height: 600px;
}
.faq-img-box {
  background-color: #f6f6f6;
  flex: 1;
  max-width: 360px;
  margin-right: 40px;
  padding: 56px 30px;
}

.form-4 {
  width: 100%;
}

.get-in-qustion :is(i, a, p) {
  color: #151515;
  font-size: 16px;
  margin-bottom: 0;
}
.footer-link-box {
  padding-top: 10px;
}

.footer-link-box ul {
  padding-left: 0;
  list-style: none;
}
.footer-link-box ul li {
  padding: 10px 0;
  font-size: 16px;
}
p {
  color: #fff;
  margin-bottom: 0;
}
.choose-plan-item {
  padding: 5px 0;
}
.border-white {
  border-color: #fff;
}
.main-image-box {
  max-width: 400px;
}
.custom-card .help-hero-card {
  padding: 20px;
}
.accounting-bg-payment {
  padding: 20px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.integration-group.w-dyn-items.arrow-card-grid .w-dyn-item {
  clip-path: polygon(
    0% 0%,
    78.61% 0%,
    100% 49.25%,
    79.25% 100%,
    0% 100%,
    0% 100%,
    16.73% 50.16%
  );
  height: 300px;
  width: 300px;
  margin-right: -50px;
  background: #000;
}
.arrow-card-grid .integration-card {
  padding: 0px 0 30px 0px;
  width: 100%;
}
.arrow-card-grid p.change-margin.card-para-text {
  width: 250px;
  color: #f6f6f6;
  padding-left: 60px;
}
.arrow-card-grid .card-information .heading-style-h4 {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px 0 20px 30px;
  width: 100%;
  color: #f6f6f6;
  margin: 0 0 10px 0;
}
.arrow-card-grid .card-information {
  padding-top: 0;
}
.border-bottom {
  border-bottom: 1px solid #151515;
  margin-bottom: 20px;
}
.escrow-grid {
  grid-template-columns: repeat(3, 1fr);
}
.escrow-grid .payment-contant-right {
  grid-template-columns: repeat(1, 1fr);
}
.heading-box.text-center.py-5 {
  padding-bottom: 50px;
}
.pb-4 {
  padding-bottom: 40px;
}
.empoweriing-card-detils p {
  color: #151515;
}
.qr-code-benefits :is(.left-part-image, .right-part-detils) {
  height: unset !important;
}
.devid-card-wrapper {
  position: relative;
}
.devid-card-wrapper .card-text {
  position: absolute;
  bottom: 0;
  left: 30px;
  opacity: 0;
  transition: opacity 1ms ease-in;
}
.devid-card-wrapper:hover .card-text {
  opacity: 1;
  transition: opacity 1ms ease-in;
}
label.error {
  color: red;
}

.onboarded-hover-card .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.onboarded-hover-card .section-title {
  text-align: center;
  color: #2c3e50;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 4rem;
  position: relative;
}

.onboarded-hover-card .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 2px;
}

.onboarded-hover-card .image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin: 0 auto;
}

.onboarded-hover-card .image-card {
  position: relative;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  /* background: #f8f9fa; */
}

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

.onboarded-hover-card .card-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
  /* background-color: #f0f0f0; */
}

.onboarded-hover-card .image-card:hover .card-image {
  transform: scale(1.05);
}

.onboarded-hover-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #c74900 0%, #dd9006 100%);

  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.onboarded-hover-card .image-card:hover .card-overlay {
  opacity: 1;
}

.onboarded-hover-card .card-heading {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.onboarded-hover-card .image-card:hover .card-heading {
  transform: translateY(0);
}

.onboarded-hover-card .card-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.2s;
}

.onboarded-hover-card .image-card:hover .card-text {
  transform: translateY(0);
}

/* Card specific images */
.onboarded-hover-card .card-1 .card-image {
  background-image: url("../../on/dashboard.png");
}

.onboarded-hover-card .card-2 .card-image {
  background-image: url("../../on/integration.png");
}

.onboarded-hover-card .card-3 .card-image {
  background-image: url("../../on/on-going.png");
}

/* Loading animation */
.onboarded-hover-card .card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: onboarded-shimmer 2s infinite;
}

@keyframes onboarded-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Touch-specific styles */
.onboarded-hover-card .image-card.touch-active .card-overlay {
  opacity: 1;
}

.onboarded-hover-card .image-card.touch-active .card-heading,
.onboarded-hover-card .image-card.touch-active .card-text {
  transform: translateY(0);
}

.onboarded-hover-card .image-card.touch-active .card-image {
  transform: scale(1.02);
}

/* Responsive Design */

.swiper-slide {
  width: 100%;
  height: 100%;
}

.auto-fit.image-radius.four {
  z-index: 8;
  position: absolute;
}
.api-banking-simplified .subheading-text {
  border-color: #fff;
  color: #fff;
}
.api-banking-simplified .payment-contant-right {
  grid-template-columns: 1fr;
}

.payout-about {
  padding: 60px 0;
}

.payout-about .about-section {
  background: url("../images/Banking/Banking - Payout/Let Every Payout Reflect Your Precision.png")
    no-repeat left;
  background-size: 55%;
  overflow: hidden;
  padding: 0px 0;
}

.payout-about .inner-container {
  width: 55%;
  float: right;
  background: linear-gradient(90deg, #c74900 0%, #dd9006 100%);
  padding: 150px;
  border-radius: 150px 0 0 150px;
}

/* Responsive styles */
@media screen and (max-width: 1200px) {
  .payout-about .inner-container {
    padding: 80px;
  }
}

@media screen and (max-width: 1000px) {
  .payout-about .about-section {
    background-size: 100%;
    /* padding: 100px 40px; */
  }
  .payout-about .inner-container {
    width: 100%;
    border-radius: unset;
  }
}

@media screen and (max-width: 600px) {
  .payout-about .about-section {
    padding: 0;
  }
  .payout-about .inner-container {
    padding: 20px;
    border-radius: unset;
  }
}

.payement-link-accordin {
  padding: 50px 0;
}

.payement-link-accordin .faq-section {
  display: grid;
  padding: 0 0 50px 0;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.payement-link-accordin .pointer-icon {
  width: 120px;
  height: 200px;
  position: relative;
}

.payement-link-accordin .content-section {
  flex: 1;
  padding: 0;
  max-width: 800px;
}

.payement-link-accordin .faq-item {
  border-bottom: 1px solid #e9ecef;
}

.payement-link-accordin .faq-item:last-child {
  border-bottom: none;
}

.payement-link-accordin .faq-question {
  padding: 24px 32px;
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.payement-link-accordin .faq-question:hover {
  background: #f8f9fa;
}

.payement-link-accordin .faq-question.active {
  background: #f8f9fa;
  color: #ff9f00;
}

.payement-link-accordin .chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid #7f8c8d;
  border-bottom: 2px solid #7f8c8d;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.payement-link-accordin .faq-question.active .chevron {
  transform: rotate(-135deg);
  border-color: #ff9f00;
}

.payement-link-accordin .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.payement-link-accordin .faq-answer.active {
  max-height: 200px;
}

.payement-link-accordin .faq-answer-content {
  padding: 0 32px 24px 32px;
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
}

.feature-three-empowering {
  overflow: hidden;
}

/* Section heading for post sliders */
.section-heading {
  font-weight: 800;
  font-size: 12vw;
  /* margin-bottom: -6vw; */
}

/* Main container for each post slider */
.post-slider {
  background: #f9f9f9;
  box-shadow: 0 -8px 15px rgba(0, 0, 0, 0.85);
  display: flex;
  margin: 0 0 60px 0;
  padding: 0 32px 32px;
  position: relative;
  border-radius: 25px;
}

/* Header card for each slider */
.post-slider-header {
  color: #fff;
  margin-top: 2rem;
  flex: 0 0 250px;
  margin-right: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transform: translateY(-10px);
  position: relative;
}

/* Border and background for the header card */
.post-slider-header::before {
  content: "";
  background: linear-gradient(
    130deg,
    #ff7a18 0%,
    #af002d 41.07%,
    #319197 76.05%
  );
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  z-index: 1;
  border-radius: 12px;
}

/* Dark overlay for the header card */
.post-slider-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 2;
  border-radius: 8px;
}

/* Styling for the text inside the header card */
.header-card * {
  color: #fff;
  position: relative;
  z-index: 3;
  font-size: 15px;
}

/* Title inside the header card */
.header-card-title {
  font-weight: 800;
  font-size: 25px;
  line-height: 1.1;
  margin-bottom: 16px;
}

/* Grid container for mini cards */
.mini-card-grid {
  padding: 3rem 0 3rem 2rem;
  display: flex;
  overflow-x: scroll;
  gap: 1rem;
  position: relative;
}

/* Styling for each mini card */
.mini-card-grid .mini-card {
  min-width: 300px;
  min-height: 300px;
  box-shadow: -2rem 0 3rem -2rem #000;
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(85deg, #434343, #262626);
  color: #fff;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
  cursor: pointer;
}

/* Mini card spacing except for the first one */
.mini-card-grid .mini-card:not(:first-child) {
  margin-left: -130px;
  box-shadow: -3rem 0 3rem -2rem #000;
}
.mini-card-title {
  color: #fff;
}
.mini-card-description {
  color: #fff;
}

/* Title inside the mini card */
.mini-card-grid .mini-card-title {
  font-size: 1.3rem;
  margin: 0 0 1rem 0;
  font-weight: 800;
  letter-spacing: 0.03rem;
}

/* Hover effects for mini cards */
.mini-card-grid .mini-card:hover ~ .mini-card {
  transform: translateX(130px);
}

.mini-card-grid .mini-card:first-child:hover {
  transform: translate(-0.5rem, -1rem) rotate(3deg);
}

.mini-card-grid .mini-card:hover {
  transform: translateY(-1rem) rotate(3deg);
}

/* Custom scrollbar for mini card grid */
.mini-card-grid {
  overflow-x: auto;
  background-repeat: no-repeat;
  background-position: left center, right center, left center, right center;
  background-size: 10px 100%, 10px 100%, 10px 100%, 10px 100%;
  background-attachment: local, local, scroll, scroll;
  -webkit-overflow-scrolling: touch;
}

.mini-card-grid::-webkit-scrollbar {
  height: 4px;
  background-color: #000000;
}

.mini-card-grid::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 3px;
}

.mini-card-grid::-webkit-scrollbar-button {
  display: none;
}

.Qr-code-Slide .contant-feature {
  padding-left: 50px;
}
.Qr-code-Slide .line {
  inset: 0% 5%;
}
.instant-feature {
  height: 100vh;
}

html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
}
body {
  background: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.js-transitions-disabled * {
  transition: none !important;
}
.carousel {
  position: relative;
  height: 100%;
  overflow: hidden;
  perspective: 50vw;
  perspective-origin: 50% 50%;
}
.carousel__control {
  position: absolute;
  /* height: unset; */
  /* width: 40px; */
  /* background: #fff; */
  right: 20px;
  top: 5px;
  /* bottom: 0; */
  /* margin: auto; */
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 50px;
}
.carousel__control a {
  position: relative;
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: #000;
  border-radius: 50px;
  border: 1px solid #ff9f00;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel__control a:hover:before {
  background-color: rgba(0, 0, 0, 0.4);
}
.carousel__control a.active:before,
.carousel__control a.active:hover:before {
  background-color: rgba(0, 0, 0, 0.6);
}

/* .carousel__control a:before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  padding-top: 25%;
  width: 25%;
  background: rgba(0,0,0,0.2);
  content: '';
  display: block;
  margin-top: -12.5%;
} */
.carousel__stage {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  margin: auto;
  transform-style: preserve-3d;
  transform: translateZ(calc(-50vh + 20px));
}
.spinner {
  position: absolute;
  width: calc(50vw - (20px));
  height: calc(100vh - 40px);
  top: 0;
  left: 0;
  right: auto;
  bottom: 0;
  margin: auto;
  transform-style: preserve-3d;
  transition: transform 1s;
  backface-visibility: hidden;
  transform-origin: 50% 50%;
  transform: rotateX(0);
}
.js-spin-fwd .spinner {
  transform: rotateX(-90deg);
}
.js-spin-bwd .spinner {
  transform: rotateX(90deg);
}
.js-spin-fwd .spinner--right {
  transform: rotateX(90deg);
}
.js-spin-bwd .spinner--right {
  transform: rotateX(-90deg);
}
.spinner--right {
  right: 0;
  left: auto;
}
.spinner__face {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.spinner__face.js-next {
  display: block;
  transform: rotateX(90deg) translateZ(calc(50vh - 20px));
}
.spinner--right .spinner__face.js-next {
  transform: rotateX(270deg) translateZ(calc(50vh - 20px));
}
.js-spin-bwd .spinner__face.js-next {
  transform: rotateX(-90deg) translateZ(calc(50vh - 20px));
}
.js-spin-bwd .spinner--right .spinner__face.js-next {
  transform: rotateX(-270deg) translateZ(calc(50vh - 20px));
}
.js-active {
  display: block;
  transform: translateZ(calc(50vh - 20px));
}
.content {
  position: absolute;
  width: 200%;
  height: 100%;
  left: 0;
}
.spinner--right .content {
  left: -100%;
}
.content__left,
.content__right {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
}
.content__right {
  right: 0;
  left: auto;
}
.content__left {
  background-repeat: no-repeat;
  background-size: cover;
}
.content__left:after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

.content__left span {
  font-size: 1vw;
  font-weight: 300;
  letter-spacing: 0.2em;
  opacity: 0.9;
}
.content__right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content__right .content__main {
  position: absolute;
  text-align: left;
  color: #fff;
  padding: 0 8vw;
  line-height: 1.65;
  font-weight: 300;
  margin: 0;
  opacity: 0.8;
}

.content__right .content__index {
  font-size: 30vh;
  position: absolute;
  right: -1vh;
  top: 35vh;
  opacity: 0.04;
  font-family: oswald;
  color: #fff;
}
[data-type="iceland"] .content__left {
  background-image: url("../../payments/ins/Instant Bank Transfers.png");
}
.spinner--right [data-type="iceland"] .content__left {
  background-image: none;
}
[data-type="china"] .content__left {
  background-image: url("../../payments/ins/Flexible Withdrawal Controls.png");
}
.spinner--right [data-type="china"] .content__left {
  background-image: none;
}
[data-type="usa"] .content__left {
  background-image: url("../../payments/ins/Simple Transparent Pricing.png");
}
.spinner--right [data-type="usa"] .content__left {
  background-image: none;
}
[data-type="peru"] .content__left {
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/215059/peru.jpg");
}
.spinner--right [data-type="peru"] .content__left {
  background-image: none;
}

.content__main :is(h2, p) {
  color: #fff;
  text-transform: capitalize;
}

.pb-0 {
  padding-bottom: 0;
}

.card-wrapper-heading-new p.heading-style-h4.card-heading {
  font-size: 18px;
}
/* .instant_slider {
  position: sticky;
  top: 100px;
} */

.your-opction:hover {
  background-color: #191818a1;
  color: #fff;
}
.view-more-content .integration-card:hover {
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset,
    rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}
.get-in-qustion a:hover {
  color: #000;
}
.main-button.form-submit-button.form-button-color-change:hover {
  color: #f8f9fa;
  background-color: unset;
  border: 1px solid #f8f9fa;
}

.carousel__arrow {
  display: inline-block;
  font-size: 16px;
  padding: 8px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.carousel__arrow:hover {
  opacity: 0.7;
}

.carousel__arrow.active {
  color: #007bff; /* or your preferred active color */
}

.input-box {
  position: relative;
}
.input-icon {
  position: absolute;
  top: 24px;
  right: 12px;

  font-size: 22px;
  line-height: 48px;
  text-align: left;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.w-container {
  padding: 0 15px;
}
.d-md-block {
  display: none;
}
.contact-mobile {
  display: none;
}
.bg-home {
  background-image: url("../images/Home/Home Page_bg.png");
  background-repeat: repeat;
}

img.doller-image-icon {
  width: 40px;
}
.pt-100 {
  padding-top: 100px;
}

.swiper {
  width: 100%;
  overflow: hidden;
}

/* .swiper-slide {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.swiper-slide:hover {
  transform: translateY(-10px);
} */

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.swiper-button-prev,
.swiper-button-next {
  display: none;
}
.swiper-pagination {
  text-align: center !important;
  width: 100% !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff1d9 !important;
  opacity: 0.5;
  margin: 0 3px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #ff9f00 !important;
}

.bg-orange * {
  color: #ffff !important;
}

.bg-orange .change-margin.text-color-light.text-style-gradient {
  background: transparent;
  -webkit-text-fill-color: #ffff;
}
/* .integration-group .w-dyn-item:nth-child(1) {
  background-image: url('../images/Banking/Banking - API Banking/Group 1171274743.png');
  background-size: cover;
  background-position: center;
}

.integration-group .w-dyn-item:nth-child(2) {
  background-image: url('../images/Banking/Banking - API Banking/Group 1171274743-1.png');
  background-size: cover;
  background-position: center;
}

.integration-group .w-dyn-item:nth-child(3) {
  background-image: url('../images/Banking/Banking - API Banking/Group 1171274743.png');
  background-size: cover;
  background-position: center;
}

.integration-group .w-dyn-item:nth-child(4) {
  background-image: url('../images/Banking/Banking - API Banking/Group 1171274743-1.png');
  background-size: cover;
  background-position: center;
}

.integration-group .w-dyn-item:nth-child(5) {
  background-image: url('../images/Banking/Banking - API Banking/Group 1171274743.png');
  background-size: cover;
  background-position: center;
}
*/

.reward-text h4 {
  color: #ff9f00;
}
.reward-text p {
  color: #151515;
}
.reward-heading {
  padding-bottom: 50px;
}
.reward-logo {
  overflow: hidden;
}
.reward-logo img {
  transform: scale(1.5);
}

.home-three-data-left.change-width {
  transform: scale(1.1);
}
.footer-link-box .w--current {
  color: #000;
  border-color: #000;
}

.bg-orange .simple-payment-big-container {
  background: linear-gradient(90deg, #c74900 0%, #dd9006 100%);
}
.bg-escrow-feature .simple-payment-big-container {
  background-image: url("../images/Banking/Banking - Escrow/BG For footer Above content.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.question-item-wrapper * {
  color: #000;
}
.get-in-heading-box * {
  color: #000;
}
.mt-2 {
  margin-top: 20px;
}
.card-wrapper-heading-new p {
  color: #151515;
}
.view-more-box .integration-card:hover * {
  color: #000;
}
.progress-container .progress_inner__status {
  width: 60px;
  height: 60px;
  top: -90px;
  transition: right 800ms cubic-bezier(0.915, 0.015, 0.3, 1.005);
  transform: translateX(50%);
  position: absolute;
}

.blog-heading h1 {
  color: #151515;
}
.signup-card * {
  color: #151515;
}
.blog-one *,
.blog-details * {
  color: #151515;
}
p.home-one-hero-para.text-center.change-margin {
  color: #fff;
}
.footer-contact.footer-wrapper-box * {
  color: #ffff;
}
.body-medium-02.mt-24.gray-color {
  color: #f9f9f9;
}
.exprince-section-heading h2,
.creative-cards .card-details p {
  color: #fff;
}
.exprince-card-heading h4,
.expland-heading h2,
.expland-opction-name h4 {
  color: #ff9f00;
}
.change-margin.expland-para,
.expland-opction-name p {
  color: #000;
}
.contact-deatils a:hover {
  color: #000;
}

.exprince-section-heading.overflow-hidden h2 {
  color: #fff !important;
}

.your-opction-name {
  color: #fff;
}
.dropdown-toggle svg {
  fill: white;
}
a.brand.w-nav-brand img {
  width: 300px;
}

.career-card-title-box img{
  width: 40px;
  height: 40px;
}

.contact-three-get-in {
padding-bottom: 50px;
}

.escrow-image-grid{
  text-align: center;
}
.escrow-slider .illustration{
  transform: scale(0.9);
  position: relative;
  right: 5%;
}

.card-icon  img{
  width: 80px;
  height: 80px;
}

i.fa-solid{
  color: #ffffff;
}
.spinner__face  .content{
  background-image: linear-gradient(90deg, #C74900 0%, #DD9006 100%);
}
.blog-slider  .swiper-pagination-bullet{
  background: #373737 !important;
}
.blog-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ff9f00 !important; 
}