@property --border-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}
@keyframes slide-right {
  0% {
    transform: translateX(135px);
    opacity: 0.5;
  }
  20% {
    transform: translateX(145px);
    opacity: 0.5;
  }
  50% {
    transform: translateX(155px);
    opacity: 0.1;
  }
  65% {
    transform: translateX(-125px);
    opacity: 0.2;
  }
  85% {
    transform: translateX(110px);
    opacity: 0.3;
  }
  100% {
    transform: translateX(130px);
    opacity: 1;
  }
}
.uiverse {
  --duration: 7s;
  --easing: linear;
  --c-color-1: #7058ee;
  --c-color-2: #c94db5;
  --c-color-3: #d8a557;
  --c-color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  outline: none;
  position: relative;
  cursor: pointer;
  border: none;
  display: table;
  border-radius: 24px;
  padding: 0;
  margin: 0;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  color: var(--c-color);
  background: radial-gradient(circle, var(--c-radial-inner), var(--c-radial-outer) 80%);
  box-shadow: 0 0 14px var(--c-shadow);
}

.uiverse .wrapper {
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  overflow: hidden;
  border-radius: 24px;
  min-width: 100px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .uiverse .wrapper {
    min-width: 80px;
    padding: 8px 0px;
  }
}

.uiverse .wrapper span {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.uiverse:hover {
  --duration: 1400ms;
}

.uiverse .wrapper .circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  filter: blur(var(--blur, 8px));
  background: var(--background, transparent);
  transform: translate(var(--x, 0), var(--y, 0)) translateZ(0);
  animation: var(--animation, none) var(--duration) var(--easing) infinite;
}

.uiverse .wrapper .circle.circle-1,
.uiverse .wrapper .circle.circle-9,
.uiverse .wrapper .circle.circle-10 {
  --background: var(--c-color-4);
}

.uiverse .wrapper .circle.circle-3,
.uiverse .wrapper .circle.circle-4 {
  --background: var(--c-color-2);
  --blur: 14px;
}

.uiverse .wrapper .circle.circle-5,
.uiverse .wrapper .circle.circle-6 {
  --background: var(--c-color-3);
  --blur: 10px;
}

.uiverse .wrapper .circle.circle-2,
.uiverse .wrapper .circle.circle-7,
.uiverse .wrapper .circle.circle-8,
.uiverse .wrapper .circle.circle-11,
.uiverse .wrapper .circle.circle-12 {
  --background: var(--c-color-1);
  --blur: 20px;
}

.uiverse .wrapper .circle.circle-1 {
  --x: 0;
  --y: -40px;
  --animation: circle-1;
}

.uiverse .wrapper .circle.circle-2 {
  --x: 92px;
  --y: 8px;
  --animation: circle-2;
}

.uiverse .wrapper .circle.circle-3 {
  --x: -12px;
  --y: -12px;
  --animation: circle-3;
}

.uiverse .wrapper .circle.circle-4 {
  --x: 80px;
  --y: -12px;
  --animation: circle-4;
}

.uiverse .wrapper .circle.circle-5 {
  --x: 12px;
  --y: -4px;
  --animation: circle-5;
}

.uiverse .wrapper .circle.circle-6 {
  --x: 56px;
  --y: 16px;
  --animation: circle-6;
}

.uiverse .wrapper .circle.circle-7 {
  --x: 8px;
  --y: 28px;
  --animation: circle-7;
}

.uiverse .wrapper .circle.circle-8 {
  --x: 28px;
  --y: -4px;
  --animation: circle-8;
}

.uiverse .wrapper .circle.circle-9 {
  --x: 20px;
  --y: -12px;
  --animation: circle-9;
}

.uiverse .wrapper .circle.circle-10 {
  --x: 64px;
  --y: 16px;
  --animation: circle-10;
}

.uiverse .wrapper .circle.circle-11 {
  --x: 4px;
  --y: 4px;
  --animation: circle-11;
}

.uiverse .wrapper .circle.circle-12 {
  --blur: 14px;
  --x: 52px;
  --y: 4px;
  --animation: circle-12;
}

@keyframes circle-1 {
  33% {
    transform: translate(0px, 16px) translateZ(0);
  }
  66% {
    transform: translate(12px, 64px) translateZ(0);
  }
}
@keyframes circle-2 {
  33% {
    transform: translate(80px, -10px) translateZ(0);
  }
  66% {
    transform: translate(72px, -48px) translateZ(0);
  }
}
@keyframes circle-3 {
  33% {
    transform: translate(20px, 12px) translateZ(0);
  }
  66% {
    transform: translate(12px, 4px) translateZ(0);
  }
}
@keyframes circle-4 {
  33% {
    transform: translate(76px, -12px) translateZ(0);
  }
  66% {
    transform: translate(112px, -8px) translateZ(0);
  }
}
@keyframes circle-5 {
  33% {
    transform: translate(84px, 28px) translateZ(0);
  }
  66% {
    transform: translate(40px, -32px) translateZ(0);
  }
}
@keyframes circle-6 {
  33% {
    transform: translate(28px, -16px) translateZ(0);
  }
  66% {
    transform: translate(76px, -56px) translateZ(0);
  }
}
@keyframes circle-7 {
  33% {
    transform: translate(8px, 28px) translateZ(0);
  }
  66% {
    transform: translate(20px, -60px) translateZ(0);
  }
}
@keyframes circle-8 {
  33% {
    transform: translate(32px, -4px) translateZ(0);
  }
  66% {
    transform: translate(56px, -20px) translateZ(0);
  }
}
@keyframes circle-9 {
  33% {
    transform: translate(20px, -12px) translateZ(0);
  }
  66% {
    transform: translate(80px, -8px) translateZ(0);
  }
}
@keyframes circle-10 {
  33% {
    transform: translate(68px, 20px) translateZ(0);
  }
  66% {
    transform: translate(100px, 28px) translateZ(0);
  }
}
@keyframes circle-11 {
  33% {
    transform: translate(4px, 4px) translateZ(0);
  }
  66% {
    transform: translate(68px, 20px) translateZ(0);
  }
}
@keyframes circle-12 {
  33% {
    transform: translate(56px, 0px) translateZ(0);
  }
  66% {
    transform: translate(60px, -32px) translateZ(0);
  }
}
header .navbar .navbar_container .uiverse.cmn-btn {
  padding: 0 !important;
  display: none;
}

header .navbar .navbar_container form .uiverse.cmn-btn .icon {
  left: -33px;
}

header .navbar .navbar_container form .uiverse.cmn-btn:hover .icon {
  left: -65px;
}

p {
  color: rgba(236, 236, 255, 0.8);
}

.about_sub_heading {
  font-size: 18px;
}

.about_us_banner_sec {
  position: relative;
  text-align: center;
}
.about_us_banner_sec .hero-video-mask {
  z-index: 200;
  background-image: linear-gradient(90deg, #0c0b0c, rgba(8, 7, 8, 0.6392156863) 10%, transparent 50%, rgba(8, 7, 8, 0.6392156863) 90%, #0c0b0c), linear-gradient(180deg, rgba(0, 0, 0, 0) 65%, #0c0b0c);
  position: absolute;
  inset: 0%;
}
@media screen and (max-width: 991px) {
  .about_us_banner_sec .buttons {
    margin: 30px auto;
  }
}
.about_us_banner_sec h2 {
  font-size: 42px;
  background: linear-gradient(181deg, #7058ee 20.76%, #c94db5 49.98%, #d8a557 79.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .about_us_banner_sec h2 {
    font-size: 35px;
    text-align: center;
  }
}
.about_us_banner_sec p {
  font-size: 18px;
  color: rgba(236, 236, 255, 0.8);
  font-weight: 400;
  padding: 27px 0px 10px;
  margin-bottom: 0px;
}
@media screen and (max-width: 991px) {
  .about_us_banner_sec p {
    text-align: left;
    font-size: 14px;
    padding-top: 10px;
  }
}
@media (max-width: 991px) {
  .about_us_banner_sec p br {
    display: none;
  }
}
.about_us_banner_sec .about_us_banner_img {
  position: relative;
  margin: 0px auto 0px;
}
@media screen and (max-width: 991px) {
  .about_us_banner_sec .about_us_banner_img {
    width: auto;
    height: auto;
    object-fit: contain;
    margin-top: 25px;
  }
}
.about_us_banner_sec .about_us_banner_img video {
  width: 100%;
}
.about_us_banner_sec .about_us_banner_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 991px) {
  .about_us_section {
    padding: 0 10px;
  }
}
.about_us_section .about_us_banner_sec .about_banner_content {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .about_us_section .about_us_banner_sec .about_banner_content {
    width: 100%;
  }
}
.about_us_section .about_us_heading {
  padding-top: 100px;
}
.about_us_section .about_us_heading h3 {
  font-size: 40px;
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 0px;
}
@media screen and (max-width: 991px) {
  .about_us_section .about_us_heading h3 {
    text-align: left;
    font-size: 24px;
  }
}
.about_us_section .about_part {
  padding: 50px 0px;
}
@media (max-width: 991px) {
  .about_us_section .about_part {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .about_us_section .about_part .fz-reverse {
    flex-direction: column-reverse;
  }
}
.about_us_section .about_part h5 {
  background: linear-gradient(182deg, #7058ee 20.76%, #c94db5 49.98%, #d8a557 79.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 35px;
  text-align: left;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .about_us_section .about_part h5 {
    padding-bottom: 20px;
    text-align: center;
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .about_us_section .about_part h5 {
    padding-bottom: 0px;
  }
}
@media (max-width: 991px) {
  .about_us_section .about_part p br {
    display: none;
  }
}
.about_us_section .about_part .about_us_images {
  width: 500px;
  height: auto;
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  .about_us_section .about_part .about_us_images {
    width: auto;
    height: auto;
    justify-content: center;
    display: flex;
    margin: 20px auto;
  }
}
.about_us_section .about_part .about_us_images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 1199px) {
  .about_us_section .about_part .about_us_images img {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .about_us_section .about_part .about_us_images img {
    height: auto;
    width: 200px;
  }
}
.about_us_section .about_part .about_us_center_col {
  display: flex;
  align-items: center;
  justify-content: end;
}
.about_us_section .about_part .about_us_content {
  color: #ffffff;
  font-size: 16px;
}
@media (max-width: 991px) {
  .about_us_section .about_part .about_us_content {
    font-size: 14px;
  }
}
.about_us_section .about_part .about_us_content .buttons {
  width: 172px;
}
@media (max-width: 991px) {
  .about_us_section .about_part .about_us_content .buttons {
    margin: 30px auto;
  }
}
.about_us_section .what_we_do h5,
.about_us_section .what_we_do .about_sub_heading {
  text-align: center;
}
.about_us_section .what_we_do .about_sub_heading {
  padding-bottom: 20px;
}
.about_us_section .what_we_do .about_feature_card .about_card {
  padding: 20px;
  border-radius: 12px;
  position: relative;
  height: auto;
  margin-bottom: 20px;
  background-image: linear-gradient(180deg, rgba(63, 58, 83, 0.8) 0%, rgba(19, 17, 25, 0.8) 100%);
}
.about_us_section .what_we_do .about_feature_card .about_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5px;
  border-radius: 12px;
  background: linear-gradient(16.11deg, #7058ee 26.61%, #c94db5 60.27%, #d8a557 90.12%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.about_us_section .what_we_do h2 {
  font-size: 20px;
  color: white;
}
@media (max-width: 767px) {
  .about_us_section .what_we_do h2 {
    font-size: 18px;
  }
}
.about_us_section .our_vision_values {
  padding: 50px 0px;
}
.about_us_section .our_vision_values .our_vision_cards .row {
  justify-content: center;
}
.about_us_section .our_vision_values .our_vision_cards .row .vision_card {
  display: flex;
  justify-content: space-around;
  padding: 20px 15px;
  border-radius: 24px;
  align-items: center;
  position: relative;
  height: auto;
  background-image: linear-gradient(180deg, rgba(63, 58, 83, 0.8) 0%, rgba(19, 17, 25, 0.8) 100%);
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .about_us_section .our_vision_values .our_vision_cards .row .vision_card {
    justify-content: flex-start;
  }
}
.about_us_section .our_vision_values .our_vision_cards .row .vision_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5px;
  border-radius: 24px;
  background: linear-gradient(16.11deg, #7058ee 26.61%, #c94db5 60.27%, #d8a557 90.12%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.about_us_section .our_vision_values .our_vision_cards .row .vision_card .vision_card_img {
  padding-right: 30px;
}
.about_us_section .our_vision_values .our_vision_cards .row .vision_card .vision_card_content {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 20px;
}
.about_us_section .our_vision_values .our_vision_cards .row .vision_card .vision_card_content p {
  margin-bottom: 0px;
}
.about_us_section .our_vision_values h5 {
  text-align: center;
}
.about_us_section .our_vision_values .vision_values img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding-top: 30px;
  padding-bottom: 30px;
}
.about_us_section .why_choose_payvance {
  padding: 40px 0px;
}
.about_us_section .why_choose_payvance .why_choose_payvance_card {
  padding: 20px;
  border-radius: 12px;
  position: relative;
  max-height: 335px;
  margin-bottom: 20px;
  background-image: linear-gradient(180deg, rgba(63, 58, 83, 0.6) 0%, rgba(19, 17, 25, 0.6) 100%);
}
@media (max-width: 991px) {
  .about_us_section .why_choose_payvance .why_choose_payvance_card {
    max-height: 360px;
  }
}
.about_us_section .why_choose_payvance .why_choose_payvance_card img {
  padding: 20px 0px;
  width: 100%;
  height: 100%;
  transition: all 1s ease;
}
.about_us_section .why_choose_payvance .why_choose_payvance_card:hover {
  --border-angle: 0turn;
  --main-bg: conic-gradient(
    from var(--border-angle),
    #000000 0%,
    #000000 50%
  );
  border: solid 0.01px transparent;
  --gradient-border: conic-gradient(
    from var(--border-angle),
    rgba(2, 237, 104, 0) 7.95474deg,
    #7058ee 63.822552deg,
    #c94db5 95deg,
    #d8a557 21.393755deg,
    rgba(10, 10, 10, 0) 182.574207deg,
    rgba(10, 10, 10, 0) 204.015297deg,
    #d8a557 246.393755deg,
    #c94db5 276deg,
    rgba(0, 157, 255, 0) 354.246679deg
  );
  background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
  background-position: center center;
  animation: bg-spin 6s linear infinite;
}
.about_us_section .why_choose_payvance .why_choose_payvance_card:hover img {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .about_us_section .why_choose_payvance .why_choose_payvance_card:hover img {
    transform: none;
  }
}

.about_card_sec .dev_left {
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .about_card_sec .dev_left {
    padding: 15px 0;
    flex-direction: column;
  }
}
.about_card_sec .dev_left .row {
  margin: 30px 0px;
}
.about_card_sec .dev_left .dev_card_1 {
  justify-content: end;
}
.about_card_sec .dev_left .dev_card {
  background-color: #1a2d2c;
  padding: 25px;
  border-radius: 12px;
  border: solid 1px transparent;
  --border-angle: 0turn;
  --main-bg: conic-gradient(
    from var(--border-angle),
    #0c0d0d 0%,
    #0d0e0e 100%
  );
  --gradient-border: conic-gradient(
    from var(--border-angle),
    transparent 10%,
    #05311d,
    #3eab90 49%,
    transparent
  );
  background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
  background-position: center center;
  animation: bg-spin 8s linear infinite;
}
.about_card_sec .dev_left .dev_card:hover {
  --gradient-border: conic-gradient(
    from var(--border-angle),
    transparent 50%,
    #f7c35f,
    #3eab90 99%,
    transparent
  );
}
.about_card_sec .dev_left .dev_card .dev_card_logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.about_card_sec .dev_left .dev_card span {
  width: 40px;
  height: 40px;
  object-fit: contain;
  padding: 5px;
  border-radius: 50%;
  margin-bottom: 10px;
  margin-right: 10px;
}
.about_card_sec .dev_left .dev_card span img {
  width: 100%;
  height: 100%;
}
.about_card_sec .dev_left .dev_card h4 {
  font-size: 20px;
  font-weight: 300;
  color: #17afe0;
  color: #d7ba7d;
}
@media screen and (max-width: 991px) {
  .about_card_sec .dev_left .dev_card h4 {
    font-size: 16px;
  }
}
.about_card_sec .dev_left .dev_card p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 0px;
  transition: all 0.6s ease;
  text-align: left;
}
@media screen and (max-width: 991px) {
  .about_card_sec .dev_left .dev_card p {
    font-size: 12px;
  }
}
.about_card_sec .dev_left .dev_card p {
  text-align: center !important;
}
.about_card_sec .dev_left .dev_card .dev_card_logo {
  flex-direction: column !important;
}
.about_card_sec .dev_left .dev_card .dev_card_logo h4 {
  color: #2d4949;
}
.about_card_sec .dev_left .dev_card .dev_card_logo svg path {
  fill: #2d4949;
  stroke: #2d4949;
}
.about_card_sec .dev_left .dev_card .dev_card_logo span {
  width: 75px;
  height: 75px;
  padding: 15px;
}

#how_it_works_sec {
  padding: 50px 0px 0px;
}
#how_it_works_sec .section_top_img {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 32px 0px;
}
@media (max-width: 767px) {
  #how_it_works_sec .section_top_img {
    padding: 50px 0px 20px;
  }
}
@media (max-width: 767px) {
  #how_it_works_sec .section_top_img img {
    width: 50%;
  }
}
#how_it_works_sec .section_title {
  text-align: center;
  padding-bottom: 48px;
}
@media (max-width: 767px) {
  #how_it_works_sec .section_title {
    padding-bottom: 10px;
  }
}
#how_it_works_sec .section_title .title {
  height: 38px;
  display: inline-block;
  border-radius: 48px;
  border-width: 1px;
  border: 1px solid transparent;
  box-shadow: 0px 0px 0.5px 0px #ffffff;
  margin-bottom: 12px;
  background: linear-gradient(60.95deg, rgba(112, 88, 238, 0.75) 16.88%, rgba(201, 77, 181, 0.75) 49.03%, rgba(216, 165, 87, 0.75) 81.17%) border-box;
  color: #fff;
}
@media (max-width: 767px) {
  #how_it_works_sec .section_title .title {
    height: 42px;
  }
}
#how_it_works_sec .section_title .title p {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: rgba(25, 25, 25, 0.9);
  padding: 8px 0px;
  border-radius: 48px;
  margin: 0;
}
@media (max-width: 767px) {
  #how_it_works_sec .section_title .title p {
    font-size: 12px;
    padding: 14px 0px;
  }
}
#how_it_works_sec .section_title .sub_title {
  font-weight: 400;
  font-size: 48px;
  line-height: 130%;
  color: #ececff;
  margin: 0;
}
@media (max-width: 1299px) {
  #how_it_works_sec .section_title .sub_title {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  #how_it_works_sec .section_title .sub_title {
    font-size: 22px;
    padding: 10px;
  }
}
#how_it_works_sec .how_it_works_canvas {
  height: 820px;
}
@media (min-width: 992px) {
  #how_it_works_sec .how_it_works_canvas {
    height: 672px;
  }
}
#how_it_works_sec .how_it_works_canvas canvas {
  width: 100%;
  height: 100%;
}
@media (min-width: 1399px) {
  #how_it_works_sec .how_it_works_canvas canvas {
    width: 100%;
  }
}