/* General Style Start */

* {
  padding: 0;
  margin: 0;
}

:root {
  --dark-violet: #1e165c;
  --rich-blue: #130f35;
  --white: #ffffff;
  --white-smoke: #fdffff;
  --black: #000000;
  --aqua-green: #1dfecc;
  --vibrant-aqua-green: #06c18c;
  --goldenrod: #ffcc11;
  --muted-green: #0e4957;
  --indigo: #2c2566;
  --light-gray: #f2f4f4;
  --dark-slate: #4f5c5c;
  --graywish-blue: #414651;
  --light-gray-blue: #d5d7da;
  --raven: #717680;
  --misty-rose: #ffebe1;
  --mint-green: #e6fae4;
  --soft-purple: #e9dafe;
  --olive-brown: #4d3c00;
  --greenish-cyan: #062929;
  --navy-blue: #070519;
  --pale-cyan: #edf4f4;
  --lavender-blue: #616a8a;
  --midnight-purple: #252147;
  --lavender-mist: #eceafc;
  --dusty-indigo: #647491;
  --frosted-violet: #f6f5ff;
  --soft-silver: #e8e8e8;
  --dark-teal: #062929;
}

body {
  font-family: "Onest", sans-serif;
}

a {
  text-decoration: none;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1224px;
  }

  .consult-call-to-action .container {
    max-width: 1170px;
    padding: 0 20px;
  }

  .modern-services .container {
    max-width: 1040px;
  }
}

/* General Style End */

/* Header Style Start */
header {
  width: 100%;
  padding: 19px 0 19px 0;
  background-color: var(--rich-blue);
}

header .wpvender-header-menus-container {
  padding: 0;
  position: relative;
  gap: 22px;
  justify-content: space-between;
}

header .wpvender-header-menus-container .logo-wrap a {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 15.5px;
  transition: 0.5s ease;
}

header .wpvender-header-menus-container .logo-wrap a span {
  display: flex;
  font-family: 'Onest';
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  transition: 0.4s ease;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
  width: 0%;
}

header .wpvender-header-menus-container .logo-wrap a:hover span {
  width: 100%;
}

header .wpvender-header-menus-container .wpvender-menus-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 0;
  margin-bottom: 0;
  width: max-content;
  list-style: none;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul li {
  position: relative;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul li a {
  color: var(--white);
  font-family: "Onest";
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  transition: 0.3s;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul li a:hover {
  color: #ffcc11;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu a svg {
  transition: 0.3s;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu:hover a svg {
  transform: rotate(180deg);
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu a:hover svg path {
  fill: #ffcc11;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  padding: 0;
  min-width: 165px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
  margin: 15px 0 0 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu::after {
  content: '';
  position: absolute;
  left: 27%;
  top: -18px;
  width: 46%;
  height: 7%;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu:hover .child-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li {
  opacity: 0;
  transform: translateY(10px);
  animation: none;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu:hover .child-menu li {
  animation: slideInItem 0.3s ease forwards;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li:nth-child(1) {
  animation-delay: 0.1s;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li:nth-child(2) {
  animation-delay: 0.15s;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li:nth-child(3) {
  animation-delay: 0.2s;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li:nth-child(4) {
  animation-delay: 0.25s;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li:nth-child(5) {
  animation-delay: 0.3s;
}

@keyframes slideInItem {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li a {
  padding: 12px 18px;
  display: flex;
  gap: 8px;
  color: #333;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li:first-child a {
  border-radius: 12px 12px 0px 0px;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li:last-child a {
  border-radius: 0px 0px 12px 12px;
}

.wpvender-header-menus-container .wpvender-menus-wrapper ul .has-child-menu .child-menu li a:hover {
  color: #130F35;
  padding-left: 23px;
}

.wpvender-header-menus-container .wpvender-menus-wrapper .button-action a {
  padding: 4px 16px;
  color: var(--rich-blue);
  background: #ffcc11;
  box-shadow: 0px 10px 24px -9px #FFFFFF66 inset;
  border-radius: 4px;
  border: 1px solid #29002933;
  font-family: "Onest";
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  transition: 0.3s;
  display: flex;
}

.wpvender-header-menus-container .wpvender-menus-wrapper .button-action a:hover {
  border-color: #ffcc11;
  box-shadow: none;
}

/* off canvas */
header .wpvender-header-menus-container .offcanvas-toggler {
  padding: 0;
  box-shadow: none;
  background: none;
  display: none;
}

.header-menus-offcanvas.offcanvas.offcanvas-top {
  background: linear-gradient(145deg, #0d1117, #1a1f27);
  height: 80vh;
}

.header-menus-offcanvas .offcanvas-header {
  justify-content: space-between;
  padding: 15px 10px;
}

.header-menus-offcanvas .offcanvas-header button {
  border: none;
  background: none;
  outline: none;
  display: flex;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper ul li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper ul li .child-menu li:last-child {
  border: none;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper ul .has-child-menu.active {
  border: none;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper ul .has-child-menu.active a svg path,
.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper ul li a:hover svg path {
  fill: #ffcc11;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper ul .has-child-menu.active a:not(.child-menu li a) {
  color: #ffcc11;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  color: var(--white);
  font-family: "Onest";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  transition: 0.3s;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper ul li a:hover {
  color: #ffcc11;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper .has-child-menu>a svg {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper .has-child-menu.active>a svg {
  transform: rotate(180deg);
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper .has-child-menu .child-menu {
  display: none;
  padding: 0px 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper .has-child-menu .child-menu li a {
  padding: 14px 0;
  transition: 0.3s;
  color: var(--white);
  font-family: "Onest";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper .has-child-menu .child-menu li a:hover {
  color: #ffcc11;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper .button-action a {
  padding: 4px 16px;
  color: var(--rich-blue);
  background: #ffcc11;
  box-shadow: 0px 10px 24px -9px #FFFFFF66 inset;
  border-radius: 4px;
  border: 1px solid #29002933;
  font-family: "Onest";
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  transition: 0.3s;
  display: flex;
  width: fit-content;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper .button-action a:hover {
  border-color: #ffcc11;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.header-menus-offcanvas .offcanvas-body .wpvender-menus-wrapper .button-action {
  padding-top: 20px;
}

/* Header Style End */

.slick-initialized.slick-slider {
  max-width: 100%;
}

/* Banner Style Start */
.banner {
  display: flex;
  padding-bottom: 64px;
  background-color: var(--rich-blue);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  overflow: hidden;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(42.82% 42.82% at 50% 50%,
      rgba(19, 15, 53, 0) 68.17%,
      #130f35 90%);
  pointer-events: none;
  z-index: 1;
}

.banner-wrap svg {
  width: 100%;
  height: auto;
}

.banner-wrap path {
  stroke: #1b5155;
  stroke-width: 3;
  fill: none;
  opacity: 0.63;
}

.banner-wrap svg .dot path {
  opacity: 1;
  fill: #fff;
  stroke: #2b2c2e;
  stroke-width: 1;
}

.banner-wrap svg .dot ellipse {
  stroke: #2b2c2e;
}

.banner .banner-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 748px;
  gap: 160px;
  padding-top: 188px;
  position: relative;
  z-index: 99;
}

.banner .banner-wrap .banner-svg {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 15%;
  max-width: 1356px;
  width: 100%;
}

.banner .banner-wrap .content-wrap {
  max-width: 900px;
  text-align: center;
  z-index: 999;
}

.banner .banner-wrap .content-wrap h1 {
  color: var(--white);
  font-family: "Onest";
  font-weight: 400;
  font-size: 64px;
  line-height: 116%;
  margin: 0;
}

.banner .banner-wrap .content-wrap .heading {
  margin-bottom: 28px;
}

.banner .banner-wrap .content-wrap .heading h1 span {
  font-family: "Tiro Bangla";
  font-weight: 400;
}

.banner .banner-wrap .content-wrap .desc {
  margin-bottom: 30px;
}

.banner .banner-wrap .content-wrap .desc p {
  margin: 0;
  color: var(--white);
  font-family: Onest;
  font-weight: 400;
  font-size: 25px;
  line-height: 130%;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
}

.banner .banner-wrap .content-wrap .desc p span {
  font-weight: 700;
}

.banner .banner-wrap .content-wrap .banner-button {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.banner .banner-wrap .content-wrap .banner-button a {
  padding: 10px 39px;
  color: var(--rich-blue);
  border-radius: 4px;
  text-transform: capitalize;
  box-shadow: 0px 10px 24px -9px #ffffff66 inset;
  font-family: "Onest";
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  transition: 0.3s;
  background: #ffcc11;
}

.banner .banner-wrap .content-wrap .banner-button a:hover {
  box-shadow: none;
}

.banner .banner-wrap .content-wrap .call-to-action a {
  color: var(--white);
  font-family: Onest;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}

.banner .banner-wrap .banner-logos {
  text-align: center;
  z-index: 99;
}

.banner .banner-wrap .banner-logos p {
  color: var(--white-smoke);
  font-family: "Onest";
  font-weight: 500;
  font-size: 14px;
  line-height: 135%;
  margin-bottom: 20px;
}

.banner .banner-wrap .banner-logos .inner-wrap img {
  width: 100%;
}

.banner .banner-wrap .banner-logos .inner-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Banner Style End */

/* Support Info Style Start */
.support-info {
  position: relative;

  padding: 104px 0 0 0;
}

.look-like-bg-animate-inner ul.animate-boxes {
  padding: 0;
  list-style: none;
  margin: 0;
  height: 289px;
  width: calc(100% / 8);
}

.look-like-bg-animate-inner {
  display: flex;
  width: 100%;
}

.look-like-bg-animate-inner ul.animate-boxes-2 {
  padding: 0;
  margin: 0;
  list-style: none;
  height: 289px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: calc(100% / 8);
}

.animate-boxes .animate-wp-line-1 {
  width: 100%;
  height: 16px;
  background: #edf4f4;
  margin-bottom: 37px;
}

.animate-boxes .animate-wp-line-2 {
  width: 100%;
  height: 23.254657745361328px;
  background: #edf4f4;
  margin-bottom: 15px;
}

.animate-boxes .animate-wp-line-3 {
  width: 100%;
  height: 65.29192352294922px;
  background: #edf4f4;
  margin-bottom: 19px;
}

.animate-boxes .animate-wp-line-4 {
  width: 100%;
  height: 112.6956558227539px;
  background: #edf4f4;
}

.animate-wp-line-1-boxes-2 {
  background: #edf4f4;
  height: 18px;
  width: 100%;
  margin-bottom: 30px;
}

.animate-wp-line-2-boxes-2 {
  background: #edf4f4;
  height: 37.565216064453125px;
  width: 100%;
  margin-bottom: 34px;
}

.animate-wp-line-3-boxes-2 {
  background: #edf4f4;
  height: 38.45962905883789px;
  width: 100%;
  margin-bottom: 8px;
}

.animate-wp-line-4-boxes-2 {
  background: #edf4f4;
  height: 95.70186614990234px;
  width: 100%;
}

.look-like-bg-animate-inner ul.animate-boxes-3 {
  padding: 0;
  margin: 0;
  list-style: none;
  height: 289px;
  display: flex;
  width: calc(100% / 8);
  flex-direction: column;
  justify-content: end;
}

.animate-wp-line-1-boxes-3 {
  height: 10.732919692993164px;
  width: 100%;
  background: #edf4f4;
  margin-bottom: 28px;
}

.animate-wp-line-2-boxes-3 {
  background: #edf4f4;
  width: 100%;
  height: 46px;
  margin-bottom: 10px;
}

.animate-wp-line-3-boxes-3 {
  width: 100%;
  height: 66px;
  background: #edf4f4;
}

.look-like-bg-animate-inner ul.animate-boxes-4 {
  padding: 0;
  margin: 0;
  list-style: none;
  height: 289px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: calc(100% / 8);
}

.animate-wp-line-1-boxes-4 {
  height: 24.14906883239746px;
  width: 100%;
  background: #edf4f4;
  margin-bottom: 23px;
}

.animate-wp-line-2-boxes-4 {
  height: 50px;
  width: 100%;
  background: #edf4f4;
  margin-bottom: 25px;
}

.animate-wp-line-3-boxes-4 {
  height: 58px;
  width: 100%;
  background: #edf4f4;
}

.look-like-bg-animate-inner ul.animate-boxes-5 {
  padding: 0;
  margin: 0;
  list-style: none;
  height: 289px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: calc(100% / 8);
}

.animate-wp-line-1-boxes-5 {
  width: 100%;
  height: 25px;
  background: #edf4f4;
  margin-bottom: 19px;
}

.animate-wp-line-2-boxes-5 {
  width: 100%;
  height: 39px;
  background: #edf4f4;
  margin-bottom: 15px;
}

.animate-wp-line-3-boxes-5 {
  width: 100%;
  height: 58px;
  background: #edf4f4;
}

.look-like-bg-animate-inner ul.animate-boxes-6 {
  padding: 0;
  margin: 0;
  list-style: none;
  height: 289px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: calc(100% / 8);
}

.animate-wp-line-1-boxes-6 {
  width: 100%;
  height: 24px;
  background: #edf4f4;
  margin-bottom: 24px;
}

.animate-wp-line-2-boxes-6 {
  width: 100%;
  height: 45px;
  background: #edf4f4;
  margin-bottom: 10px;
}

.animate-wp-line-3-boxes-6 {
  width: 100%;
  height: 76px;
  background: #edf4f4;
}

.look-like-bg-animate-inner ul.animate-boxes-7 {
  padding: 0;
  margin: 0;
  list-style: none;
  height: 289px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: calc(100% / 8);
}

.animate-wp-line-1-boxes-7 {
  width: 100%;
  height: 23px;
  background: #edf4f4;
  margin-bottom: 23px;
}

.animate-wp-line-2-boxes-7 {
  width: 100%;
  height: 36px;
  background: #edf4f4;
  margin-bottom: 20px;
}

.animate-wp-line-3-boxes-7 {
  width: 100%;
  height: 101px;
  background: #edf4f4;
}

.look-like-bg-animate-inner ul.animate-boxes-8 {
  padding: 0;
  margin: 0;
  list-style: none;
  height: 289px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: calc(100% / 8);
}

.look-like-bg-animate-inner li {
  position: sticky;
  top: 60vh;
}

.animate-wp-line-1-boxes-8 {
  width: 100%;
  height: 11px;
  background: #edf4f4;
  margin-bottom: 24px;
}

.animate-wp-line-2-boxes-8 {
  width: 100%;
  height: 24px;
  background: #edf4f4;
  margin-bottom: 23px;
}

.animate-wp-line-3-boxes-8 {
  width: 100%;
  height: 41px;
  background: #edf4f4;
  margin-bottom: 17px;
}

.animate-wp-line-4-boxes-8 {
  width: 100%;
  height: 122px;
  background: #edf4f4;
}

.look-like-bg .container {
  max-width: 100%;
  padding: 0;
  position: relative;
}

.look-like-bg .container .animate-boxes-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 121px;
  background: #edf4f4;
  width: 100%;
}

.support-info:before {
  position: absolute;
  content: "";
  left: -220px;
  top: 35%;
  background-repeat: no-repeat;
  z-index: -1;
  background-color: #f5cd8f;
  width: 190px;
  height: 271px;
  backdrop-filter: blur(34px);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: 0px 1px 50px 51px #f5cd8f;
  transform: translate(0, -50%);
  animation: rotateBlob 5s linear infinite;
}

/* Keyframes for rotation */
@keyframes rotateBlob {
  0% {
    box-shadow: 0px 1px 50px 51px #f5cd8f;
  }

  50% {
    box-shadow: 20px -9px 150px 100px #f5cd8f;
  }

  100% {
    box-shadow: 0px 1px 50px 51px #f5cd8f;
  }
}

.support-info:after {
  position: absolute;
  content: "";
  background-image: url("../../images/customer-after.png");
  right: 0;
  top: -254px;
  width: 159px;
  height: 555px;
  background-repeat: no-repeat;
  background-position: right;
  z-index: -1;
  animation: rotateBlobs 5s linear infinite;
}

.solutions-content-learn-data {
  display: flex;
  justify-content: space-between;
}

.solutions-content-learn-data .read-more-solutions {
  color: #4f5c5c;
  font-family: Onest;
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  margin-left: 0;
  transition: 0.3s;
  padding-bottom: 0px;
  display: inline-block;
  border: unset;
  border-bottom: 2px dotted #4f5c5c;
  background: unset;
  height: 25px;
}

.solutions-content-learn-data .read-more-solutions:hover {
  border-color: #f5cd8f;
}

.white-label-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -999;
  background: #000000cc;
  height: 100vh;
  overflow: auto;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.white-label-popup.active {
  opacity: 1;
  z-index: 999999999;
  visibility: visible;
}

.white-label-popup .close-popup {
  position: absolute;
  right: 20px;
  cursor: pointer;
  top: 20px;
}

.white-label-popup .solutions-popup-content {
  width: 100%;
  border-radius: 8px;
  opacity: 1;
  background: #ffffff;
  max-width: 749px;
  padding: 30px 30px 35px 24px;
  transition: 0.4s;
  transform: scale(0.8) translate(0, 100px);
}

.white-label-popup.active .solutions-popup-content {
  transform: scale(1) translate(0, 0);
}

.white-label-popup .solutions-popup-content .modal-section.active {
  display: flex;
  flex-direction: column;
}

.white-label-popup .solutions-popup-content .modal-section {
  display: none;
}

.white-label-popup .solutions-popup-content .white-label-title {
  font-family: Onest;
  font-weight: 500;
  font-size: 19px;
  line-height: 101%;
  vertical-align: middle;
  color: #130f35;
  margin: 0;
}

.white-label-popup .solutions-popup-content .white-label-header {
  margin-bottom: 20px;
}

.white-label-popup .solutions-popup-content .white-label-description p {
  font-family: Onest;
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #4f5c5c;
  margin-bottom: 20px;
}

.white-label-popup .solutions-popup-content .process-title {
  font-family: Onest;
  font-weight: 700;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: 0px;
  vertical-align: middle;
}

.white-label-popup .solutions-popup-content .white-label-process {
  margin-bottom: 60px;
}

.white-label-popup .solutions-popup-content .white-label-process .process-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: -2px;
  position: relative;
}

.white-label-popup .solutions-popup-content .white-label-process .process-list .process-text {
  font-family: Onest;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  vertical-align: middle;
  color: #4f5c5c;
}

.white-label-popup .solutions-popup-content .white-label-process .process-list .process-item {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 99;
  margin-bottom: 8px;
}

.white-label-cta {
  display: flex;
  align-items: flex-start;
}

.white-label-cta .cta-button {
  color: var(--rich-blue);
  border-radius: 4px;
  font-family: "Onest";
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  transition: 0.3s;
  padding: 4px 33px;
  border: 1px solid #29002933;
  box-shadow: 0px 10px 24px -9px #FFFFFF66 inset;
  background: #FFCC11;
}

.white-label-cta .cta-button:hover {
  box-shadow: 0px 1px 2px 0px #2000240D;
  background: var(--rich-blue);
  color: #fff;
}

.white-label-popup .solutions-popup-content .white-label-process .process-list::after {
  content: "";
  position: absolute;
  background: #1dfecc;
  height: 89%;
  top: 8px;
  bottom: 0;
  width: 1px;
  left: 7px;
  z-index: 0;
}

/* Keyframes for rotation */
@keyframes rotateBlobs {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(2);
    right: 83px;
  }

  100% {
    right: 0;
  }
}

.support-info .look-like-bg img {
  width: 100%;
  height: auto;
}

.support-info .inner-wrap {
  position: relative;
}

.support-info .head {
  width: 100%;
  max-width: 564px;
  text-align: center;
  margin: 0 auto 30px auto;
}

.support-info .head h2 {
  color: var(--rich-blue);
  font-family: "Onest";
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  margin-bottom: 0;
}

.support-info .head h2 span {
  font-weight: 400;
}

.support-info .info-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
}

.support-info .info-wrap .single-info {
  padding: 15px;
  border-radius: 8px;
  max-width: 190px;
  width: 100%;
  text-align: center;
}

.support-info .info-wrap .single-info p {
  font-family: "Onest";
  font-weight: 400;
  font-size: 10px;
  line-height: 135%;
  margin-bottom: 8px;
}

.support-info .info-wrap .single-info h4 {
  font-family: "Tiro Bangla";
  font-weight: 400;
  font-size: 48px;
  line-height: 135%;
}

.support-info .info-wrap .single-info:nth-child(1) {
  background-color: var(--misty-rose);
}

.support-info .info-wrap .single-info:nth-child(1):hover {
  background: #e9dafe;
}

.support-info .info-wrap .single-info:nth-child(3):hover {
  background: #ffebe1;
}

.support-info .info-wrap .single-info:nth-child(2):hover {
  background: #ffebe1;
}

.support-info .info-wrap .single-info:nth-child(1) p,
.support-info .info-wrap .single-info:nth-child(1) h4 {
  color: var(--olive-brown);
}

.support-info .info-wrap .single-info:nth-child(2) {
  background-color: var(--mint-green);
}

.support-info .info-wrap .single-info:nth-child(2) p,
.support-info .info-wrap .single-info:nth-child(2) h4 {
  color: var(--greenish-cyan);
}

.support-info .info-wrap .single-info:nth-child(3) {
  background-color: var(--soft-purple);
}

.support-info .info-wrap .single-info:nth-child(3) p,
.support-info .info-wrap .single-info:nth-child(3) h4 {
  color: var(--navy-blue);
}

/* Support Info Style End */

/* Customer Journey Start */
.customer-journey {
  padding: 100px 0;
  background-color: var(--pale-cyan);
  overflow: hidden;
}

.customer-journey .col-lg-5 {
  padding: 0 8px 0 0 !important;
  width: 38.666667%;
}

.customer-journey .col-lg-7 {
  padding: 0 0 0 8px !important;
  width: 61.333333%;
}

.customer-journey .head {
  margin-bottom: 45px;
  text-align: center;
}

.customer-journey .head h3 {
  color: var(--rich-blue);
  font-family: "Onest";
  font-weight: 600;
  font-size: 40px;
  line-height: 116%;
  margin-bottom: 16px;
}

.wpvender-callto-action h2 {
  color: var(--rich-blue);
  font-family: "Onest";
  font-weight: 600;
  font-size: 40px;
  line-height: 116%;
  margin-bottom: 44px;
}

.wpvender-callto-action {
  padding: 0px 0 70px 0;
  background: #edf4f4;
  overflow: hidden;
}

.customer-journey .head h3 span {
  font-family: "Tiro Bangla";
  font-weight: 400;
}

.ctaTabs-venders-main {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

#ctaTabsContent {
  margin-top: 47px;
}

.ctaTabs-venders-main .ctaTabs-venders {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 6px;
  border-radius: 50px;
  background: #d5d8e14d;
}

.ctaTabs-venders-main .ctaTabs-venders li {
  list-style: none;
}

.ctaTabs-venders-main .ctaTabs-venders li button {
  border: unset;
  background-size: 202% 100%;
  background-position: center right;
  background-color: #fff0;
  transition: 0.3s;
  border-radius: 50px;
  padding: 6px 16px;
  font-family: Onest;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: #130f35;
  position: relative;
  overflow: hidden;
}

.ctaTabs-venders-links.active {
  background-image: linear-gradient(90deg, #ffffff 50%, #ffffff 50%);
}

.ctaTabs-venders-links.active.autoplay-progress {
  animation: tabProgress 10s linear forwards;
  background-image: linear-gradient(90deg, #1DFECC 50%, #ffffff 50%);
}

@keyframes tabProgress {
  from {
    background-position: right center;
  }

  to {
    background-position: left center;
  }
}

.ctaTabs-venders-main .ctaTabs-venders li button.active {
  background-position: center left;
  box-shadow: 0 0 3px 0px #eceafc;
}

.data-grids-design-cards {
  grid-template-columns: repeat(4, 1fr);
  display: grid;
  gap: 24px;
}

.animated-dark-cards-main {
  min-height: 312px;
}

.design-cards-items {
  background: #ffffff;
  border: 1px solid #f2f4f4;
  padding: 24px 22px 24px 24px;
  transition: 0.5s;
  border-radius: 8px;
}

.customers-stories-sub-headings span {
  background: #1dfecc;
}

.design-cards-items-Solutions .content-title-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.design-cards-items-Solutions .content-title-icons .icons {
  width: 40px;
  height: 40px;
  background: #f3f3f4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: 0.3s;
}

.design-cards-items-Solutions .content-title-icons h3 {
  font-family: Onest;
  font-weight: 500;
  font-size: 19px;
  line-height: 101%;
  color: #130f35;
  margin-bottom: 0;
}

.design-cards-items-Solutions p {
  font-family: Onest;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  vertical-align: middle;
  color: #4f5c5c;
}

.design-cards-items-Solutions .solutions-content-list ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-left: 0px;
}

.design-cards-items-Solutions .solutions-content-list ul li {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  width: fit-content;
}

.design-cards-items.animated-dark-cards .design-cards-items-Solutions .solutions-content-list ul li .content-list-tooltip {
  background: #fff;
  color: #130F35;
  box-shadow: 0px 10.77px 16.16px -3.23px #0000001A;
}

.design-cards-items-Solutions .solutions-content-list ul li .content-list-tooltip {
  position: absolute;
  top: 100%;
  left: 100%;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #130F35;
  width: 291px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  font-family: Onest;
  font-weight: 400;
  font-size: 12px;
  line-height: 135%;
  color: #fff;
  padding: 14px 23px 13px 23px;
}

.design-cards-items-Solutions .solutions-content-list ul li:hover .content-list-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.design-cards-items-Solutions .solutions-content-list ul li span {
  color: #4f5c5c;
  font-family: Onest;
  font-weight: 400;
  font-size: 14px;
  line-height: 166%;
  margin-left: 4px;
  padding-bottom: 0px;
  display: inline-block;
  border-bottom: 2px dotted #4f5c5c;
}

.design-cards-items:hover {
  margin-top: -3px;
  box-shadow: 0px 0px 20px 10px#F2F4F4;
}

.design-cards-items:hover .design-cards-items-Solutions .content-title-icons .icons {
  background-color: #defff8;
}

/* animated cards  */
.design-cards-items.animated-dark-cards {
  max-height: 300px;
  overflow: hidden;
  background: #130f35;
  padding: 32px 22px;
  max-width: 282px;
  width: 100%;
}

.design-cards-items.animated-dark-cards .hide-animated-content {
  opacity: 0;
  visibility: hidden;
  transform: translatey(39px) rotate3d(45, 0, 0, 45deg);
  transition: 0.4s;
}

.design-cards-items.animated-dark-cards .hide-animated-content p {
  color: #fff;
  transition: 0.4s;
}

.design-cards-items.animated-dark-cards .hide-animated-content span {
  color: #fff;
  border-color: #fff;
  transition: 0.4s;
}

.design-cards-items.animated-dark-cards .content-title-icons h3 {
  color: #fff;
  margin-top: 28px;
  transition: 0.4s;
}

.design-cards-items.animated-dark-cards:hover {
  max-height: 342px;
  margin-top: -42px;
  padding: 25px 22px;
  overflow: visible;
}

.design-cards-items.animated-dark-cards .upper-animatd-svg img {
  transition: 0.4s;
  width: auto;
  height: 186px;
}

.design-cards-items.animated-dark-cards .hide-animated-content svg path {
  stroke: #1dfecc;
}

.design-cards-items.animated-dark-cards:hover .upper-animatd-svg img {
  height: 48px;
}

.design-cards-items.animated-dark-cards:hover .content-title-icons h3 {
  margin-top: 10px;
}

.design-cards-items.animated-dark-cards:hover .hide-animated-content {
  opacity: 1;
  visibility: visible;
  transform: translatey(8px) rotate3d(0, 0, 0, 45deg);
}

.design-cards-items.animated-dark-cards:hover .hide-animated-content p {
  margin-bottom: 8px;
}

.design-cards-items.animated-dark-cards:hover .hide-animated-content ul {
  gap: 4px;
}

.design-cards-items-Solutions .solutions-content-list ul {
  transition: 0.4s;
}

/* animated cards  */

.customer-journey .head .head-inner-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.banner .banner-wrap .banner-svg::after {
  position: absolute;
  content: "";
  width: 155%;
  height: 112%;
  top: -2px;
  pointer-events: none;
  background: radial-gradient(ellipse 300px 120px at center,
      transparent 0%,
      rgba(223, 28, 28, 0) 76%,
      #130f35 272%);
}

.customer-journey .head .head-inner-wrap .single-facility {
  display: flex;
  align-items: center;
  gap: 6px;
}

.customer-journey .head .head-inner-wrap .single-facility .facility {
  color: var(--dark-slate);
  font-family: "Onest";
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
}

.customer-journey .container {
  max-width: 1003px;
}

.customer-journey .left {
  padding: 26px 24px;
  background-color: var(--white);
  border-radius: 8px;
  min-height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
}

.customer-journey .left h4 {
  color: var(--rich-blue);
  margin-bottom: 20px;
  font-family: "Onest";
  font-weight: 500;
  font-size: 19px;
  line-height: 125%;
}

.customer-journey .left h4 span {
  font-weight: 700;
  color: #DF1600;
}

.customer-journey .left .single-process {
  margin-bottom: 20px;
}

.customer-journey .left .single-process h5 {
  color: var(--rich-blue);
  margin-bottom: 10px;
  font-family: "Onest";
  font-weight: 700;
  font-size: 14px;
  line-height: 125%;
}

.single-process .points-wrap {
  position: relative;
}

.single-process .points-wrap::after {
  content: "";
  width: 1px;
  height: 96%;
  position: absolute;
  background: #1dfecc;
  top: 7px;
  left: 7.5px;
}

.customer-journey .left .single-process .single-point {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  position: relative;
  width: fit-content;
}

.customer-journey .left .single-process .single-point .single-point-tooltip {
  position: absolute;
  top: 100%;
  left: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #130F35;
  width: 280px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  font-family: Onest;
  font-weight: 400;
  font-size: 12px;
  line-height: 135%;
  color: #fff;
  padding: 14px 23px 13px 23px;
}

.customer-journey .left .single-process .single-point:hover .single-point-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.customer-journey .left .single-process .single-point:last-child {
  margin-bottom: 0;
}

.customer-journey .left .single-process .single-point .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
  width: 16px;
  height: 16px;
  background-color: var(--rich-blue);
  border-radius: 50%;
  z-index: 9;
}

.customer-journey .left .single-process .single-point .point {
  border-bottom: 1px dotted;
  color: var(--dark-slate);
  font-family: "Onest";
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
}

.customer-journey .show-process span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px 5px;
  width: 100%;
  color: #fff;
  border-radius: 4px;
  font-family: "Onest";
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  transition: 0.3s;
  background: #130F35;
}

.customer-journey .show-process {
  display: flex;
  gap: 5px;
}

.customer-row .show-process .watch-video {
  background: #DF1600;
  border: 1px solid #29002933;
  box-shadow: 0px 10px 24px -9px #ffffff66 inset;
  color: #fff;
}

.customer-row .show-process .watch-video:hover {
  background: #DF1600;
  box-shadow: none;
}

.customer-journey .show-process .process.active svg {
  transform: rotate(180deg);
}

.customer-journey .show-process .process:hover {
  box-shadow: 0px 10px 24px -9px #ffffff66 inset;
  background: transparent;
  color: #130F35;
}

.customer-journey .show-process .process {
  border: 1px solid #130F35;
}

.customer-journey .show-process .process.active {
  background: transparent;
  color: #130F35;
}

.customer-journey .show-process .process.active svg path {
  stroke: #130F35;
}

.customer-journey .show-process .process:hover svg path {
  stroke: #130F35;
}

/* Customer Journey End */

/* Customers Stories Style Start */
.consult-call-to-action {
  padding-top: 8px;
  padding-bottom: 80px;
}

.consult-call-to-action .container {
  max-width: 1170px;
  padding: 0 20px;
}

.consult-call-to-action .consult-call-to-action-triger {
  border-radius: 8px;
  background: #1DFECC;
  width: 100%;
  max-width: calc(60% + 6px);
  padding: 41px 46px;
}

.consult-call-to-action-triger-main {
  display: flex;
  gap: 23px;
}

.consult-call-to-action .consult-call-to-action-triger h2 {
  font-family: Onest;
  font-weight: 500;
  font-size: 28px;
  line-height: 125%;
  margin-bottom: 28px;
}

.consult-call-to-action .consult-call-to-action-triger a {
  font-family: Onest;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: #fff;
  border: 1px solid #29002933;
  background: #130F35;
  padding: 6px 15px;
  border-radius: 4px;
  transition: 0.3s;
}

.consult-call-to-action .consult-call-to-action-triger a:hover {
  color: #130F35;
  box-shadow: none;
  background-color: transparent;
  border-color: #130F35;
}

.consult-call-to-action-image {
  width: 100%;
  max-width: calc(40% - 20px);
}

.consult-call-to-action-image img {
  max-width: 100%;
  height: 205px;
  object-fit: cover;
  border-radius: 8px;
}


.customers-stories .border-wrap {
  height: 2px;
  width: 100%;
  background: linear-gradient(270deg, #2dffcc, #58ff9b, #ffcc00, #2dffcc);
  background-size: 400% 400%;
  border-radius: 2px;

  /* Animation */
  animation: gradientMove-border 5s ease infinite;
}

@keyframes gradientMove-border {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.customers-stories .border-wrap.one {
  margin-bottom: 48px;
}

.customers-stories .left h5 {
  color: var(--dark-slate);
  font-family: "Onest";
  font-weight: 400;
  font-size: 12px;
  line-height: 135%;
  margin: 0;
}

.customers-stories .left .learn-more a {
  font-family: "Onest";
  font-weight: 500;
  font-size: 14px;
  line-height: 135%;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--rich-blue);
}

/* Deliver Service Style End  */

/* Modern Services Style Start */
.modern-services .nav-link {
  background: linear-gradient(270deg,
      rgba(97, 106, 138, 0.2) 0%,
      rgba(97, 106, 138, 0.2) 1%,
      rgba(0, 0, 0, 0) 100%);
  border-right: 2px solid #616a8a;
  padding: 24px;
  border-radius: unset !important;
}

.modern-services div#v-pills-tab .nav-link.active {
  background: linear-gradient(270deg, rgba(35, 230, 168, 0.2) 0%, rgba(35, 230, 168, 0.2) 1%, rgba(0, 0, 0, 0) 100%);
}


.modern-services-tabs-items {
  width: 300px;
}

#wp-vender-modern-services #v-pills-tabContent {
  width: calc(100% - 300px);
}

.modern-services .nav-link {
  position: relative;
}

.nav-link.autoplay-progress::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 0;
  z-index: 9;
  width: 2px;
  height: 100%;
  background: #1dfecc;
  transform: scaleY(0);
  transform-origin: top;
  animation: borderFill 10s linear forwards;
}

/* .nav-link.active::after */

@keyframes borderFill {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

.modern-services .nav-link.active .peragraph {
  display: block !important;
}

.modern-services .d-flex.align-items-start {
  gap: 40px;
  justify-content: center;
}

.modern-services div#v-pills-tab {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 !important;
  max-width: 300px;
  width: 100%;
}

.modern-services div#v-pills-tab .nav-link {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modern-services .nav .peragraph {
  display: none !important;
  padding-bottom: 40px;
}

#v-pills-home-tab .peragraph {
  padding-bottom: 0;
}

.modern-services .nav .peragraph {
  font-family: "Onest";
  font-weight: 300;
  font-size: 14px;
  text-align: left;
  color: #fdffff;
  margin: 0;
}

.modern-services .nav .headings {
  font-family: "Onest";
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #fff;
  text-align: left;
  margin-bottom: 0;
}

.modern-services {
  padding: 104px 0 95px 0;
  background-color: var(--rich-blue);
}


.modern-services .head {
  margin: 0 auto 48px auto;
  text-align: center;
}

.modern-services .head .badge-wrap {
  display: inline-flex;
  margin-bottom: 22px;
}

.modern-services .head .badge-wrap .icon {
  display: flex;
}

.modern-services .head .badge-wrap .label {
  color: #1EFECC;
  font-family: "Onest";
  font-weight: 300;
  font-size: 12px;
  line-height: 135%;
}

.modern-services .head h3 {
  color: var(--white);
  font-family: "Onest";
  font-weight: 600;
  font-size: 40px;
  line-height: 110%;
  margin-bottom: 0px;
}

.modern-services .head h3 span {
  font-family: "Tiro Bangla";
  font-weight: 400;
}

.modern-services .left .wrap {
  padding: 25px 25px;
  margin-bottom: 15px;
}

.modern-services .left .wrap:last-child {
  margin-bottom: 0;
}

.modern-services .left .wrap h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
}

.modern-services .left .wrap.one h4 {
  margin-bottom: 18px;
}

.modern-services .left .wrap.one {
  border-right: 2px solid var(--aqua-green);
  background: linear-gradient(to left,
      rgba(35, 230, 168, 0.2) 0%,
      rgba(35, 230, 168, 0.2) 1%,
      rgba(0, 0, 0, 0) 100%);
}

.modern-services .left .wrap.two,
.modern-services .left .wrap.three {
  border-right: 2px solid var(--lavender-blue);
  background: linear-gradient(to left,
      rgba(97, 106, 138, 0.2) 0%,
      rgba(97, 106, 138, 0.2) 1%,
      rgba(0, 0, 0, 0) 100%);
}

.modern-services .left .wrap p {
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0;
}

.modern-services .right .col-lg-6 {
  padding: 0 10px;
}

.modern-services .right .single-service {
  padding: 38px 24px 38px 24px;
  background-color: var(--midnight-purple);
  border-radius: 8px;
  min-height: 200px;
  margin-bottom: 20px;
  border: 1px solid #1dfecc;
}

.modern-services .right .col-lg-6:first-child .single-service {
  border-right: 0;
  border-bottom: 0;
  border-radius: 8px 0px 0px 0px;
}

.modern-services .right .col-lg-6:nth-child(2) .single-service {
  border-left: 0;
  border-bottom: 0;
  border-radius: 0px 8px 0px 0px;
}

.modern-services .right .col-lg-6:nth-child(3) .single-service {
  border-right: 0;
  border-top: 0;
  border-radius: 0px 0px 0px 8px;
}

.modern-services .right .col-lg-6:last-child .single-service {
  border-left: 0;
  border-top: 0;
  border-radius: 0px 0px 8px 0px;
}

.modern-services .right .single-service .title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.modern-services .right .single-service .title .label {
  color: var(--white);
  font-family: "Onest";
  font-weight: 500;
  font-size: 19px;
  line-height: 24px;
}

.modern-services .right .single-service p {
  color: var(--white);
  margin-bottom: 0;
  font-family: "Onest";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5em;
}

/* Modern Services Style End */

/* The Industry We Serve Style Start */
.serving-industry {
  background-color: var(--rich-blue);
  padding: 104px 0 104px 0;
  overflow: hidden;
}


.super-power-data-list li {
  border-left: 2px solid #1dfecc;
  background: #C8C3EE1A;
  box-shadow: 0px 20px 50px -10px #130F351A;
  padding: 20px 19px;
  list-style: none;
}

.super-power-data-list li h4 {
  font-family: Onest;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #fff;
  margin: 0 0 6px 0;
}

.super-power-data-list li p {
  padding-bottom: 0;
  font-family: Onest;
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #FDFFFF;
  margin: 0;
}

.ready-to-transform {
  padding: 104px 0;
}

.ready-to-transform .ready-to-transform-content {
  padding: 60px 86px 84px 70px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.ready-to-transform .ready-to-transform-content h2 {
  font-family: Onest;
  font-weight: 600;
  font-size: 27px;
  line-height: 50px;
  letter-spacing: 0px;
  color: #fff;
  margin: 0 0 -1px 0;
}

.ready-to-transform .ready-to-transform-content p {
  font-family: Onest;
  font-weight: 300;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #fff;
  margin: 0;
}

.ready-to-transform-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.ready-to-transform-right .ready-to-transform-quote {
  padding: 4px 22px;
  color: var(--rich-blue);
  background-color: #ffcc11;
  border-radius: 4px;
  border: 1px solid #29002933;
  font-family: "Onest";
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  transition: 0.3s;
  display: flex;
}

.ready-to-transform-right .ready-to-transform-expert {
  padding: 4px 22px;
  color: #fff;
  background-color: #fff0;
  border-radius: 4px;
  font-family: "Onest";
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  transition: 0.3s;
  display: flex;
  border: 1px solid #FFFFFFB2;
}

.ready-to-transform-right .ready-to-transform-expert:hover {
  background: #FFCC11;
  color: #000;
  border-color: #FFCC11;
}

.ready-to-transform-right .ready-to-transform-quote:hover {
  color: #fff;
  background: var(--rich-blue);
  border-color: #fff;
}

.super-power-data-list ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.animated-border-industries {
  width: 100%;
  height: 11px;
  opacity: 1;
  background: linear-gradient(90deg,
      #ffcc00,
      #2dffcc,
      #ffcc00,
      #58ff9b,
      #ffcc00,
      #2dffcc,
      #ffcc00);
  background-size: 300% 100%;
  background-position: left center;
  transition: 0.3s;
  animation: gradientMove-border-industries 5s ease infinite;
}

@keyframes gradientMove-border-industries {
  0% {
    background-position: left center;
  }

  50% {
    background-position: right center;
  }

  100% {
    background-position: left center;
  }
}

.serving-industry .slick-list.draggable::after {
  position: absolute;
  content: "";
  background: #130f35;
  width: 50000px;
  height: 102%;
  top: -2px;
  left: -50000px;
}

.serving-industry .slick-list.draggable {
  overflow: initial;
}

.serving-industry .container {
  max-width: 1176px;
}

.serving-industry .head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.serving-industry .head .left h3 {
  color: var(--white);
  font-family: "Onest";
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  margin: 0;
}

.serving-industry .head .left {
  display: flex;
  align-items: center;
}

.serving-industry .head .right {
  display: flex;
  align-items: center;
}

.serving-industry .head .right .industry-slide-arrows {
  display: flex;
  align-items: center;
  gap: 14px;
}

.serving-industry .head .right .industry-slide-arrows .arrow {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 1px solid #fff;
  cursor: pointer;
}

.serving-industry .head .right .industry-slide-arrows .arrow.disabled {
  opacity: 0.5;
}

.serving-industry .single-industry-wrap,
.serving-industry .slick-track {
  display: flex;
  gap: 20px;
}

.serving-industry .single-industry {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 282px;
  width: 282px;
  background-color: var(--white);
  padding: 15px;
  border-radius: 8px;
}

.serving-industry .single-industry .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: var(--soft-silver);
  border-radius: 50%;
  margin-bottom: 6px;
  transition: 0.3s;
}

.serving-industry .single-industry .icon svg,
.serving-industry .single-industry .icon path {
  transition: 0.3s;
}

.serving-industry .single-industry .title h5 {
  color: var(--rich-blue);
  margin-bottom: 0;
  font-family: "Onest";
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
}

.serving-industry .single-industry .content-wrap {
  display: flex;
  flex-direction: column;
  max-height: 150px;
  overflow: hidden;
}

.serving-industry .single-industry .content-wrap .desc {
  color: var(--dark-slate);
  transition: 0.3s;
  font-family: "Onest";
  font-weight: 400;
  font-size: 12px;
  line-height: 135%;
}

.serving-industry .single-industry .content-wrap .image {
  position: relative;
  border-radius: 4px;
  transition: 0.3s;
  overflow: hidden;
}

.serving-industry .single-industry .content-wrap .image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: top;
  transition: 0.3s;
}

.serving-industry .single-industry:hover .icon {
  background-color: var(--dark-teal);
}

.serving-industry .single-industry:hover .icon svg,
.serving-industry .single-industry:hover .icon svg path {
  stroke: var(--aqua-green);
  fill: var(--aqua-green);
}

.serving-industry .single-industry .content-wrap .image img {
  height: 102px;
}

.serving-industry .single-industry .content-wrap .desc {
  margin-bottom: 12px;
}

.serving-industry .single-industry .content-wrap .image .overlay-content-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 16px 29px;
  background-color: rgb(0 0 0 / 67%);
  display: flex;
  justify-content: space-between;
  gap: 34px;
  transform: translateY(100%);
  transition-duration: 0.3s;
}

.serving-industry .single-industry .content-wrap .image .overlay-content-wrap .single-performance-info .value {
  color: var(--white);
  margin-bottom: 5px;
  padding-left: 5px;
  border-left: 2px solid var(--aqua-green);
  font-family: "Onest";
  font-weight: 500;
  font-size: 18px;
  line-height: 135%;
}

.serving-industry .single-industry .content-wrap .image .overlay-content-wrap .single-performance-info .label {
  color: var(--white);
  font-family: "Onest";
  font-weight: 400;
  font-size: 12px;
  line-height: 125%;
}

.serving-industry .single-industry:hover .content-wrap .image .overlay-content-wrap {
  transform: translateY(0);
}

/* Tech Stacks Style End */

/* Blogs & News Start */
.blogs-news {
  padding: 104px 0;
  background-color: var(--rich-blue);
}

.blogs-news .container {
  max-width: 847px;
}

.blogs-news .left .badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  background-color: var(--aqua-green);
  border-radius: 30px;
  margin-bottom: 22px;
}

.blogs-news .left .badge-wrap .label {
  color: var(--rich-blue);
  font-family: "Onest";
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
}

.blogs-news .left .badge-wrap .icon {
  display: flex;
}

.blogs-news .left .heading h3 {
  color: var(--white);
  font-family: "Onest";
  font-weight: 600;
  font-size: 32px;
  line-height: 125%;
  margin-bottom: 40px;
}

.blogs-news .left .see-more a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blogs-news .left .see-more a .icon {
  display: flex;
}

.blogs-news .right .single-blog .image img {
  width: 100%;
  height: auto;
  opacity: 1;
  border-radius: 8px;
  object-fit: cover;
}

.blogs-news .left .see-more a .label {
  color: var(--white);
  font-family: "Onest";
  font-weight: 500;
  font-size: 14px;
  line-height: 135%;
  letter-spacing: 4px;
}

.blogs-news .right .single-blog {
  margin-bottom: 24px;
}

.blogs-news .right .single-blog .category {
  color: var(--white);
  margin: 24px 0 10px 0;
  font-family: "Onest";
  font-weight: 400;
  font-size: 9px;
  line-height: 120%;
}

.blogs-news .right .single-blog .category a {
  color: #fff;
}

.blogs-news .right .single-blog .title h4 {
  color: var(--white);
  font-family: "Onest";
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  margin: 0;
}

/* Blogs & News End */

/* Testimonials Style Start */
.testimonials {
  position: relative;
  padding: 104px 0;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  width: 7%;
  height: 100%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  top: 0;
  z-index: 999;
}

.testimonials .head {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials .head .badge-wrap-image {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 14px;
}

.testimonials .head .heading h3 {
  color: var(--rich-blue);
  font-family: "Onest";
  font-weight: 600;
  font-size: 40px;
  line-height: 110%;
  text-align: center;
  margin-bottom: 16px;
}

.testimonials .head .testimonials-desc {
  font-family: 'Onest';
  font-weight: 400;
  font-size: 12px;
  line-height: 135%;
  margin-bottom: 8px;
  color: #000;
}

.testimonials .head .testimonials-desc span {
  font-weight: 600;
}

.testimonials .testimonial-slides-wrap,
.testimonials .slick-track {
  display: flex;
  gap: 30px;
}

.single-testimonial {
  width: 100%;
  max-width: 400px;
  padding: 24px;
  border: 1px solid var(--lavender-mist);
  border-radius: 12px;
  min-width: 300px;
  flex-shrink: 0;
}

.single-testimonial .profile-info .user-pic img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}

.single-testimonial .rating {
  margin-bottom: 30px;
}

.single-testimonial .message {
  color: var(--dark-slate);
  margin-bottom: 30px;
  font-family: "Onest";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.single-testimonial .message {
  max-height: 76px;
  overflow: hidden;
}

.single-testimonial .profile-info .user-pic span {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 20px;
  font-weight: 500;
}

.single-testimonial .message span {
  font-weight: 700;
}

.single-testimonial .profile-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.single-testimonial .profile-info h5 {
  color: var(--rich-blue);
  margin-bottom: 0;
  font-family: "Onest";
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
}

.single-testimonial .profile-info .designation {
  color: var(--dark-slate);
  margin-bottom: 0;
  font-family: "Onest";
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
}

.testimonial-slides-wrap-main {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}

.testimonial-slides-wrap {
  display: flex;
  width: max-content;
  animation: marquee-left 60s linear infinite;
}

@keyframes marquee-left {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes marquee-right-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Faqs Style End */
.stories-in-spotlight h3 {
  font-size: 40px;
  text-align: center;
  font-weight: 600;
  color: var(--white);
  position: sticky;
  top: 6vh;
  filter: unset !important;
}

.single-story-grid.hidden {
  margin-right: -700px;
  width: 320px;
}

.stories-in-spotlight .image-wrap img {
  width: 100%;
  height: -moz-available;
  height: -webkit-fill-available;
  object-fit: cover;
}

.service-platform-company-data {
  border-left: 2px solid #1dfecc;
  background: #C8C3EE1A;
  box-shadow: 0px 20px 50px -10px #130F351A;
  padding: 16px 25px;
}

.service-platform-company-data h3 {
  font-family: Onest;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #FFFFFF;
  margin-bottom: 24px;
}


.service-platform-company-data p {
  font-family: Onest;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5em;
  letter-spacing: 0px;
  color: #fff;
  margin-bottom: 20px;
}

.service-platform-company-data .services-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stories-in-spotlight .image-wrap .name {
  position: absolute;
  font-size: 36px;
  font-weight: 700;
  transition: 0.3s;
  color: var(--white);
  width: 100%;
  background-color: #00000000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-story-container.show-story .image-wrap .name {
  background-color: #00000063;
}

.stories-in-spotlight .image-wrap .name img {
  width: auto;
  height: auto;
  max-width: 70%;
}

.single-read-the-story h4 span {
  font-family: Onest;
  font-weight: 600;
  letter-spacing: -0.32px;
  vertical-align: middle;
  position: relative;
}

.single-read-the-story h4 span::after {
  position: absolute;
  content: "";
  border-bottom: 2px dotted;
  bottom: 4px;
  left: 0;
  width: 100%;
}

.single-read-the-story {
  padding: 48px 40px 48px 40px;
  background: #fff !important;
  height: -webkit-fill-available;
  transition: 0.4s;
  width: 100%;
}

.stories-wrap .single-story:nth-child(2) .single-story-container .single-read-the-story {
  background: #fff !important;
}

.single-read-the-story h4 {
  color: var(--rich-blue);
  margin-bottom: 24px;
  font-family: "Onest";
  font-weight: 500;
  font-size: 32px;
  line-height: 41px;
}

.single-read-the-story a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  color: var(--white);
  background-color: #130f35;
  border-radius: 4px;
  font-family: "Onest";
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  border: 1px solid #130f35;
  transition: 0.3s;
}

.single-story-container.show-story .single-read-head-top .read-story-toggle {
  background-color: #fff0;
}

.single-story-container.show-story .single-read-head-top .read-story-toggle span {
  color: var(--rich-blue);
}

.single-story-container.show-story .single-read-head-top .read-story-toggle svg {
  transform: rotate(180deg);
}

.single-story-container.show-story .single-read-head-top .read-story-toggle svg path {
  fill: #130f35;
}

.single-read-the-story a:hover svg path {
  fill: #130f35;
}

.single-read-the-story a:hover {
  background: transparent;
  color: #130f35;
}

.single-read-the-story .single-read-the-story-content {
  margin-top: 80px;
}

.single-read-the-story .single-read-the-story-content .single-read-content-details-info {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.single-read-the-story .single-read-the-story-content .read-story-content-left-inner .label {
  color: var(--dark-slate);
  font-family: "Onest";
  font-weight: 400;
  font-size: 12px;
  line-height: 105%;
}

.single-read-the-story .single-read-the-story-content .read-story-content-right-inner .info-wrap .value {
  color: var(--rich-blue);
  padding-left: 5px;
  margin-bottom: 9px;
  border-left: 2px solid #8dc63f !important;
  font-family: "Onest";
  font-weight: 500;
  font-size: 18px;
  line-height: 135%;
}

/* Web scraping */
.customer-journey .wp-vender-journey-container {
  max-width: 1283px;
}

.web-scrap-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 84px;
}

.wp-web-scraping-main .badge-wrap .icon {
  display: flex;
}

.wp-web-scraping-main .badge-wrap .label {
  font-family: "Onest";
  font-weight: 300;
  font-size: 10px;
  line-height: 135%;
}

.wp-vender-home-current {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wp-vender-home-current__industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 29px 15px;
  background: white;
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: 0px 20px 50px -10px #130f351a;
}

.wp-industry-images:hover {
  background: #1dfecc;
}

.wp-industry-images {
  background: #f2f4f4;
  padding: 10px;
  border-radius: 120px;
}

.wp-vender-home-current__industry {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  font-size: 14px;
  color: #2d2d2d;
  position: relative;
  overflow: hidden;
}

.wp-vender-home-current__industry img {
  width: 36px;
  height: 36px;
}

.sectorImage {
  max-width: 550px;
  position: relative;
  text-align: center;
}

.sectorImage img:first-child {
  width: 100%;
  position: relative;
  margin-top: -3px;
  min-width: 550px;
}

.dataBall,
.dataBall1,
.dataBall2,
.dataBall3,
.dataBall4 {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.movingDataSvg {
  position: absolute;
  top: calc(50% - 18px);
  max-width: 100%;
  height: auto;
}

.sectorImage.active::after {
  box-shadow: 1px 0px 70px 70px #99f8e2;
}

.sectorImage::after {
  box-shadow: 1px 0px 30px 30px #99f8e2;
  width: 60px;
  transition: 2s;
  content: "";
  position: absolute;
  height: 60px;
  background-color: #99f8e2;
  left: 50%;
  top: 50%;
  z-index: 0;
  transform: translate(-74%, -57%);
}

.sectorImage img {
  z-index: 9999;
}

.movingDataSvg svg {
  width: 100%;
  height: auto;
}

.wp-vender-home-current__industry span {
  color: #130f35;
  font-family: "Onest";
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  white-space: nowrap;
}

.wp-vender-home-current__services {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.current-services-main {
  border: 1px solid #1aa47b;
  padding: 8px 9px;
  border-radius: 120px;
}

.wp-vender-home-current__service {
  padding: 6px;
  padding-right: 17px;
  background: #fff;
  border-radius: 70px;
  white-space: nowrap;
  box-shadow: 0px 4.34px 10.85px 0px #34344626;
  font-family: "Onest";
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #130f35;
}

.wp-vender-home-current__service svg {
  margin-right: 7px;
}

.wp-web-scraping-main .container {
  max-width: 1110px;
}

.wp-web-scraping-main .badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background-color: var(--aqua-green);
  border-radius: 30px;
  margin-bottom: 21px;
}

.web-scrap-inner h2 {
  color: #130f35;
  font-family: "Onest";
  font-weight: 600;
  font-size: 40px;
  line-height: 46px;
  margin: 0;
  text-align: center;
}

.wp-web-scraping-main {
  padding: 104px 0px 80px 0px;
  background: #edf4f2;
}

/* Web scraping */

/* succes storie */
.stories-in-spotlight {
  padding: 104px 0 104px 0;
  background-color: var(--rich-blue);
}

.stories-in-spotlight .head {
  text-align: center;
  margin-bottom: 50px;
}

.stories-in-spotlight .head h3 {
  color: var(--white);
  font-family: "Onest";
  font-weight: 600;
  font-size: 40px;
  line-height: 116%;
  margin: 0;
}

.stories-in-spotlight .image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: -webkit-fill-available;
  min-height: -moz-available;
  width: 51.75%;
  transition: 0.4s;
  margin: -1px 0;
  border-radius: 16px 0px 0px 16px;
}

.single-story-container.show-story .image-wrap {
  width: 330px;
}

.single-story-container .single-story-grids-hidden {
  width: 48.25%;
  transition: 0.4s;
  display: flex;
  align-items: center;
}

.single-story-container.show-story .single-story-grids-hidden {
  width: calc(100% - 330px);
}

.single-story-container.show-story .single-story-grids-hidden .single-read-the-story {
  width: calc(100% - 306px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stories-wrap .single-story:nth-child(3) .single-story-container .single-read-the-story {
  background: #fff !important;
}

.single-story-toggled-content {
  padding: 0px 0px 0px 40px;
  border-left: 1px solid #d3dbe5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.single-story-toggled-content h4 {
  font-family: "Onest";
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
  margin-bottom: 8x;
  color: var(--rich-blue);
}

.single-story-toggled-content .single-story-services-text {
  margin-bottom: 36px;
  font-family: Onest;
  font-weight: 300;
  font-size: 20px;
  line-height: 152%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #5a5a5a;
}

.single-story-toggled-content .single-story-services {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 24px 0;
  list-style: none;
  gap: 8px;
}

.single-story-toggled-content .single-story-services li a,
.single-story-toggled-content .single-story-industry a {
  box-shadow: 0px 1px 2px 0px #0a0d120d;
  padding: 4px 12px;
  border-radius: 20px;
  background: #ffffff;
  font-family: "Onest";
  font-weight: 400;
  font-size: 11px;
  line-height: 125%;
  color: #647491;
  transition: 0.3s;
}

.single-story-toggled-content .single-story-services li a:hover,
.single-story-toggled-content .single-story-industry a:hover {
  background: var(--rich-blue);
  color: #fff;
}

.single-story-toggled-content .single-story-industry .single-story-industry-text {
  font-family: "Onest";
  font-weight: 500;
  font-size: 12px;
  line-height: 125%;
  margin-bottom: 8px;
  color: var(--rich-blue);
}

.single-story-toggled-content .single-story-industry {
  margin-bottom: 77px;
}

.single-story-toggled-content .single-story-detail-discuss {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.single-story-toggled-content .single-story-detail-discuss span {
  font-family: "Onest";
  font-weight: 500;
  font-size: 12px;
  line-height: 105%;
  color: #647491;
}

.single-story-toggled-content .single-story-detail-discuss a {
  border: 1px solid #29002933;
  box-shadow: 0px 1px 2px 0px #2000240d;
  border-radius: 65px;
  background: #ffcc11;
  padding: 6px 32.5px;
  font-family: "Onest";
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #130f35;
  transition: 0.3s;
  display: flex;
  align-items: center;
}

.single-story-toggled-content .single-story-detail-discuss a:hover {
  background: #130f35;
  color: #fff;
}

.single-story-toggled-content .single-story-detail-discuss a:hover svg path {
  fill: #fff;
}

.single-story-toggled-content .single-story-detail-discuss a svg {
  margin-top: -1px;
}

.single-read-the-story .single-read-the-story-content .read-story-content-left-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  background-color: var(--white);
  border-radius: 12px;
  padding: 16px 15px 16px 17px;
  width: 215px;
  height: -webkit-fill-available;
}

.single-read-the-story .single-read-the-story-content .read-story-content-left-inner .value {
  color: var(--rich-blue);
  font-family: "Onest";
  font-weight: 500;
  font-size: 32px;
  line-height: 135%;
}

.single-read-the-story .single-read-the-story-content .read-story-content-right-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  border-radius: 12px;
  gap: 24px;
}

.single-read-the-story .single-read-the-story-content .read-story-content-right-inner .info-wrap .label {
  color: var(--dark-slate);
  font-family: "Onest";
  font-weight: 400;
  font-size: 12px;
  line-height: 125%;
}

.stories-wrap {
  min-height: 3302px;
  display: flex;
  flex-direction: column;
  gap: 150px;
}

.stories-wrap .single-story {
  top: 7.5rem;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: #fff0 !important;
}

.single-story-main {
  top: 15vh;
}

.single-story-sticky {
  position: sticky;
}

.stories-in-spotlight h3 span {
  color: #1DFECC;
}

.single-story-main .single-story {
  position: unset;
  top: unset;
  transform: unset !important;
}

.stories-wrap .single-story .single-story-container {
  border-radius: 16px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.stories-wrap .single-story:nth-child(3) {
  top: 10.5rem;
}

.stories-wrap .single-story:last-child {
  top: 17.5rem;
}

.stories-wrap .single-story:nth-child(4) {
  top: 14.5rem;
}

.single-story-container .single-story-grids-hidden .single-story-grid {
  padding: 52px 40px 49px 0px;
  background: #fff !important;
  height: -webkit-fill-available;
  transition: 0.4s;
}

.single-story-container .single-story-grids-hidden .single-read-the-story {
  position: relative;
}

.projact-tags-right {
  color: #130F35;
  font-family: Onest;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  text-align: center;
  background: #F7F6F6;
  padding: 8px 27px;
  border-radius: 8px;
}

.stories-wrap .single-story:nth-child(2) .single-story-container .single-story-grid.hidden {
  background: #dce9ff;
}

.single-story-container.show-story .single-story-grids-hidden .single-story-grid {
  width: 306px;
}

.stories-wrap .single-story:nth-child(3) .single-story-container .single-story-grid.hidden {
  background: #f9f1ea;
}

.single-story-container .single-story-grids-hidden .single-story-grid {
  display: flex;
}

.stories-wrap .single-story .col-lg-6,
.stories-wrap .single-story .col-lg-4 {
  padding: 0;
}

/* succes storie */

/* Journey  */
.journey-header h2 {
  color: #130f35;
  font-family: Onest;
  font-weight: 700;
  font-size: 19px;
  line-height: 125%;
  margin: 0;
}

.wp-vender-journey {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  position: relative;
  margin-top: 31.5px;
  margin-bottom: 41px;
}

.container {
  width: 100%;
}

.journey-header {
  margin-bottom: 35px;
}

.journey-section {
  margin-bottom: 60px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.section-title h3 {
  font-size: 1.8em;
  color: #555;
  margin: 0;
}

.average-time {
  font-size: 1em;
  color: #888;
  font-style: italic;
  margin: 0;
}

.wp-vender-journey {
  display: none;
}

.show-process {
  cursor: pointer;
}

.wp-vender-journey-graph-container {
  position: relative !important;
}

/* Journey  */
.wp-vender-select-industry-section {
  box-shadow: 0px 1.04px 4.15px 0px #00000040;
  border-radius: 12px;
  background: #fff;
}

.wp-vender-select-industry-header {
  padding: 15px 24px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e9eaeb;
  border-radius: 12px 12px 0px 0px;
  justify-content: space-between;
}

.wp-vender-select-industry-bottom {
  background: #130f35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 0px 0px 12px 12px;
}

.wp-vender-select-industry-user {
  display: flex;
  align-items: center;
  gap: 9px;
}

.wp-vender-select-industry-user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wp-vender-select-industry-user-info-name {
  width: 62px;
  height: 4px;
  border-radius: 6px;
  background: #2e285e;
}

.wp-vender-select-industry-user-info-details {
  width: 128px;
  height: 4px;
  border-radius: 6px;
  background: #433d73;
}

.wp-vender-select-industry-user-phone {
  border-radius: 3px;
  box-shadow: 0px -6px 23.98px 0px #e2e8ff1f inset;
  backdrop-filter: blur(6px);
  padding: 5px 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
  z-index: 1;
}

.wp-vender-select-industry-user-phone::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(308.7deg,
      #00ffb3 -2.08%,
      #ffcc00 36.29%,
      #130f35 91.92%);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderRotate 3s linear infinite;
  z-index: -1;
}

@keyframes borderRotate {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.wp-vender-select-industry-user-phone span {
  width: 58px;
  height: 4.5px;
  background: #fff;
  border-radius: 6px;
}

.wp-vender-select-industry-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wp-vender-select-industry-content .wp-vender-select-industry-list {
  width: 52%;
  padding: 13px 24px 22px 24px;
}

.wp-vender-select-industry-content .wp-vender-select-industry-list .select-industry-label {
  font-family: "Onest";
  font-weight: 600;
  font-size: 12px;
  line-height: 125%;
  color: var(--rich-blue);
  margin-bottom: 12px;
}

.wp-vender-select-industry-content .wp-vender-selected-industry-content {
  width: 48%;
  padding: 15px 30px;
  background: #1E165C;
  min-height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.wp-vender-select-industry-content .wp-vender-selected-industry-content .top-image {
  max-width: 100%;
  width: auto;
}

.wp-vender-selected-industry-content .change-image {
  max-width: 225px;
  object-fit: contain;
}

.wp-vender-selected-industry-content img {
  width: 100%;
  transition: 0.5s;
  opacity: 1;
}

.wp-vender-selected-industry-content img.fade-out {
  opacity: 0;
}

.wp-vender-select-industry-list .select-industry-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0 0 10px 0;
  list-style: none;
  gap: 8px;
}

.wp-vender-select-industry-list .select-industry-items .industry-item {
  padding: 12px;
  border: 1px solid #f2f2f2;
  border-radius: 6px;
  position: relative;
  width: 100%;
  cursor: pointer;
}

.wp-vender-select-industry-list .select-industry-items .industry-item.active {
  border-color: #a3f9e6;
  box-shadow: 0px 0px 0px 3px #e5fff9;
  animation: glowPulse 1.5s infinite ease-in-out;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0px 0px 0px 3px #e5fff9;
  }

  50% {
    box-shadow: 0px 0px 10px 6px #a3f9e6;
  }

  100% {
    box-shadow: 0px 0px 0px 3px #e5fff9;
  }
}

.wp-vender-select-industry-list .select-industry-items .industry-item input {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}

.wp-vender-select-industry-list .select-industry-items .industry-item label {
  width: 30px;
  height: 30px;
  background: #f8f8f8;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  cursor: pointer;
}

.wp-vender-select-industry-list .select-industry-items .industry-item.active label {
  background: #e5fff9;
}

.wp-vender-select-industry-list .select-industry-items .industry-item.active label svg {
  color: #1dfecc;
  fill: #1dfecc;
  stroke: #1dfecc;
}

.wp-vender-select-industry-list .select-industry-items .industry-item label::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 8px;
  width: 12px;
  height: 12px;
  border: 0.75px solid #eceafc;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
  transition: 0.3s;
}

.wp-vender-select-industry-list .select-industry-items .industry-item input[type="radio"]:checked+label::after {
  border-color: #062929;
  background: radial-gradient(circle, #062929 40%, #f5fff5 41%);
}

.wp-vender-select-industry-list .select-industry-items .industry-item .item-border1 {
  width: 41px;
  height: 5px;
  border-radius: 21px;
  display: flex;
  background: #dadada;
  margin-bottom: 3px;
}

.wp-vender-select-industry-list .select-industry-items .industry-item.active .item-border1 {
  background: #1dfecc;
}

.wp-vender-select-industry-list .select-industry-items .industry-item .item-border2 {
  width: 34px;
  height: 5px;
  border-radius: 21px;
  display: flex;
  background: #f2f2f2;
}

.wp-vender-select-industry-list .select-industry-items .industry-item.active .item-border2 {
  background: #e5fff9;
}

.wp-vender-previous-industry {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wp-vender-previous-industry .wp-vender-previous-empty {
  background: var(--rich-blue);
  border-radius: 3px;
  padding: 6px 16px 6px 16px;
  width: 101px;
}

.wp-vender-previous-industry .wp-vender-previous-empty span {
  height: 4.5px;
  display: flex;
  background: #1dfecc;
  border-radius: 6px;
}

.wp-vender-previous-industry .wp-vender-previous-empty span.animate {
  animation: fillBar 5s linear forwards;
}

@keyframes fillBar {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.wp-vender-previous-industry #prev-industry {
  border-radius: 3px;
  padding: 3px 12px;
  border: 0.75px solid #4f5c5c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.wp-vender-previous-industry #prev-industry svg {
  margin-right: -3px;
}



.wp-vender-journey-graph-start {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 5px;
}

.wp-vender-journey-graph-start h4 {
  margin: 0;
  font-family: "Onest";
  font-weight: 700;
  font-size: 16px;
  line-height: 135%;
  color: #8a8a8a;
}

.wp-vender-journey-graph-start p {
  display: flex;
  align-items: center;
  gap: 2.5px;
  font-family: "Onest";
  font-weight: 800;
  font-size: 12px;
  line-height: 135%;
  color: #bababa;
  margin: 0;
}

.wp-vender-journey-graph-start p span {
  font-weight: 500;
  font-size: 8px;
  line-height: 113%;
  color: #7b8484;
}

.wp-vender-journey-graph-list1 {
  padding: 0;
  margin: 0 0 0 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.wp-vender-journey-graph-list1 li {
  padding: 4.5px 15px;
  background: #f4f5f6;
  min-width: 131px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: -webkit-fill-available;
}

.wp-vender-journey-graph-list1 li p {
  font-family: "Onest";
  font-weight: 500;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  color: #6a6a6a;
  margin: 0;
}

.wp-vender-journey-graph-list1 li:first-of-type {
  border-radius: 4px 0px 0px 4px;
}

.wp-vender-journey-graph-list1 li:last-of-type {
  border-radius: 4px 0px 0px 4px;
}

.wp-vender-journey-graph-list1 li:last-of-type {
  border-radius: 0px 4px 4px 0px;
  background: #8b8b8b;
}

.wp-vender-journey-graph-list1 li.project-started p {
  font-weight: 700;
  color: #fff;
}

.wp-vender-journey-graph-empty {
  padding: 0;
  margin: 0 0 0 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.wp-vender-journey-graph-empty li {
  width: 100%;
  min-width: 131px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wp-vender-journey-graph-empty li span {
  width: 1px;
  height: 28px;
  background: #d5d5d5;
}

.wp-vender-journey-graph-steps-weeks {
  padding: 14px 70px;
  margin: 0 0 0 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f4f5f6;
  border-top: 1px solid #d5d5d5;
  position: relative;
}

.wp-vender-journey-graph-steps-weeks::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, #f0e2d3, #cce9df);
}

.wp-vender-journey-graph-steps-weeks li {
  position: relative;
  z-index: 999;
}

.wp-vender-journey-graph-steps-weeks li p {
  font-family: "Onest";
  font-weight: 500;
  font-size: 11.81px;
  line-height: 18px;
  color: #130f35;
  margin: 0;
}

.wp-vender-journey-graph-steps-weeks li .oneweek {
  font-family: "Onest";
  font-weight: 500;
  font-size: 9px;
  line-height: 125%;
  text-transform: uppercase;
  color: #fff;
  border-radius: 100px;
  background: #aeaeae;
  padding: 3px 9px;
  position: absolute;
  top: -23px;
  width: max-content;
  overflow: hidden;
  z-index: 1;
}

.wp-vender-journey-graph-steps-weeks li .oneweek::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--week-color, #aeaeae);
  transform: scaleX(0);
  transform-origin: left;
  transition: 1.5s;
  z-index: -1;
}

.wp-vender-journey-graph-steps-weeks li .oneweek.fill::before {
  transform: scaleX(1);
}

.wp-vender-journey-graph-steps-weeks li .afterone svg circle {
  transition: 2s;
}

.wp-vender-journey-graph-steps-weeks li .afterone {
  display: flex;
  position: absolute;
  top: -20px;
}

.wp-vender-journey-graph-steps-weeks li .week1-after {
  left: 54px;
}

.wp-vender-journey-graph-steps-weeks li .week2-after {
  left: 65px;
}

.wp-vender-journey-graph-steps-weeks li .week3-after {
  left: 71px;
}

.wp-vender-journey-graph-steps-weeks li .week4-after {
  left: 75px;
}

.wp-vender-journey-graph-steps-weeks li .week5-after {
  left: 78px;
}

.wp-vender-journey-graph-steps-weeks li .week6-after {
  left: 86px;
}

.wp-vender-journey-graph-steps-weeks li .week7-after {
  left: 89px;
}

.wp-vender-journey-graph-steps-weeks li .week8-after {
  left: 95px;
}

.wp-vender-journey-graph-steps-weeks li .week1 {
  left: -30px;
}

.wp-vender-journey-graph-steps-weeks li .week2 {
  left: -21px;
}

.wp-vender-journey-graph-steps-weeks li .week3 {
  left: -16px;
}

.wp-vender-journey-graph-steps-weeks li .week4 {
  left: -10px;
}

.wp-vender-journey-graph-steps-weeks li .week5 {
  left: -6px;
}

.wp-vender-journey-graph-steps-weeks li .week6 {
  left: -1px;
}

.wp-vender-journey-graph-steps-weeks li .week7 {
  left: 5px;
}

.wp-vender-journey-graph-steps-weeks li .week8 {
  left: 10px;
}

.wp-vender-journey-graph-steps-weeks li .week9 {
  left: 15px;
}

.wp-vender-journey-graph-days-afterweeks {
  display: flex;
  align-items: center;
  column-gap: 93px;
  padding: 0 40px 0 40px;
}

.wp-vender-journey-graph-steps-day {
  padding: 0;
  margin: 0 0 0 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wp-vender-journey-graph-steps-day li {
  position: relative;
  width: 67px;
}

.wp-vender-journey-graph-steps-day li:first-of-type {
  width: 244px;
  padding-left: 50px;
}

.wp-vender-journey-graph-steps-day li:nth-of-type(2) {
  margin: 0 35px 0 49px;
  display: flex;
  justify-content: flex-end;
  padding: 0 21px 0 0;
}

.wp-vender-journey-graph-steps-day li:nth-of-type(3) {
  display: flex;
  justify-content: center;
}

.wp-vender-journey-graph-steps-day li .dayempty-line {
  width: 1px;
  height: 28px;
  background: #f0e2d3;
  display: flex;
}

.wp-vender-journey-graph-steps-day li .dayone {
  border-radius: 100px;
  padding: 3px 16px;
  background: #ff8601;
  font-family: "Onest";
  font-weight: 500;
  font-size: 9px;
  line-height: 125%;
  text-transform: uppercase;
  color: #130f35;
  text-align: center;
  position: absolute;
  left: 0;
  top: -9px;
  width: max-content;
}

.wp-vender-journey-graph-steps-day li .day1.dayone {
  width: 244px;
  height: 17px;
}

.wp-vender-journey-graph-steps-day li .dayafter {
  position: absolute;
  top: -9px;
}

.wp-vender-journey-graph-steps-day li .day1-after {
  left: -33px;
}

.wp-vender-journey-graph-steps-day li .day2-after {
  left: 66px;
}

.wp-vender-journey-graph-steps-afterweeks {
  padding: 0;
  margin: 0 0 0 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wp-vender-journey-graph-steps-afterweeks li {
  position: relative;
  display: flex;
  justify-content: center;
}

.wp-vender-journey-graph-steps-afterweeks li .dayafterweeks {
  border-radius: 100px;
  padding: 3px 16px;
  background: #1bf0a9;
  font-family: "Onest";
  font-weight: 500;
  font-size: 9px;
  line-height: 125%;
  text-transform: uppercase;
  color: #130f35;
  text-align: center;
  width: max-content;
  position: absolute;
  top: -9px;
  left: 0;
}

.wp-vender-journey-graph-steps-afterweeks li .weeksempty-line {
  width: 1px;
  height: 28px;
  background: #cce9df;
  display: flex;
}

.wp-vender-journey-graph-steps-afterweeks li .dayweeks {
  position: absolute;
  top: -9px;
  display: flex;
}

.wp-vender-journey-graph-steps-afterweeks li:first-of-type {
  width: 75px;
  margin-right: 70px;
}

.wp-vender-journey-graph-steps-afterweeks li:nth-of-type(2) {
  width: 82px;
  margin-right: 28px;
}

.wp-vender-journey-graph-steps-afterweeks li:nth-of-type(3) {
  width: 82px;
  margin-right: 27px;
}

.wp-vender-journey-graph-steps-afterweeks li:last-of-type {
  width: 61px;
}

.wp-vender-journey-graph-steps-afterweeks li .week1-afterweeks {
  left: -30px;
}

.wp-vender-journey-graph-steps-afterweeks li .week2-afterweeks {
  left: 80px;
}

.wp-vender-journey-graph-steps-afterweeks li .week3-afterweeks {
  left: 80px;
}

.wp-vender-journey-graph-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wp-vender-journey-graph-detail-list1 {
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.wp-vender-journey-graph-detail-list1 li {
  width: 115px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  padding: 10px 10px;
}

.wp-vender-journey-graph-detail-list1 li:first-of-type {
  box-shadow: 0px 12px 16px -4px #0a0d1214;
  background-image: url("../../images/wp-vender-industry-graph-details1-img-1.svg");
  background-repeat: no-repeat;
  background-position: top;
}

.wp-vender-journey-graph-detail-list1 li:nth-of-type(2) {
  background-image: url("../../images/wp-vender-industry-graph-details1-img-2.svg");
  background-repeat: no-repeat;
  background-position: top;
  margin-left: -8px;
  padding: 10px 28px;
}

.wp-vender-journey-graph-detail-list1 li:nth-of-type(3) {
  background-image: url("../../images/wp-vender-industry-graph-details1-img-3.svg");
  background-repeat: no-repeat;
  background-position: top;
  margin-left: -8px;
  padding: 10px 14px;
}

.wp-vender-journey-graph-detail-list1 li:nth-of-type(4) {
  background-image: url("../../images/wp-vender-industry-graph-details1-img-4.svg");
  background-repeat: no-repeat;
  background-position: top;
  margin-left: -8px;
  padding: 10px 11px;
}

.wp-vender-journey-graph-detail-list1 li.start-wireframe {
  border: 1px solid #cc6e07;
  width: 71px;
  background: #ff8500;
  border-radius: 0px 4px 4px 0px;
  margin-left: -1px;
}

.wp-vender-journey-graph-detail-list1 li .tooltip-svg {
  position: absolute;
  top: 7px;
  right: 13px;
  display: flex;
}

.wp-vender-journey-graph-detail-list1 li .tooltip-svg:hover .custom-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.wp-vender-journey-graph-detail-list1 li .tooltip-svg:hover svg {
  color: #ff8500;
  fill: #ff8500;
  stroke: #ff8500;
}

.wp-vender-journey-graph-detail-list1 li .custom-tooltip {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 17px;
  left: -21px;
  background-color: #130f35;
  box-shadow: 0px 12px 16px -4px #0a0d1214;
  color: #ccc;
  padding: 12px;
  border-radius: 12px;
  width: 328px;
  font-size: 14px;
  line-height: 1.5;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-vender-journey-graph-detail-list1 li .custom-tooltip:hover p {
  color: #a4a2b5;
}

.wp-vender-journey-graph-detail-list1 li .custom-tooltip::before {
  content: "";
  position: absolute;
  top: 91%;
  left: 20px;
  width: 12px;
  height: 12px;
  background: #130f35;
  transform: rotate(45deg);
}

.wp-vender-journey-graph-detail-list1 li .custom-tooltip strong {
  font-family: "Onest";
  font-weight: 600;
  font-size: 12px;
  line-height: 125%;
  color: #fff;
}

.wp-vender-journey-graph-detail-list1 li .tooltip-svg .custom-tooltip p {
  font-weight: 400;
  font-size: 10px;
  color: #A4A2B5;
  margin-top: 4px;
}

.wp-vender-journey-graph-detail-list1 li p {
  font-family: "Onest";
  font-weight: 500;
  font-size: 10px;
  line-height: 113%;
  color: #2d2215;
  margin: 0;
  width: min-content;
}

.wp-vender-journey-graph-detail-list1 li:first-child p {
  width: auto;
}

.wp-vender-journey-graph-detail-list1 li.start-wireframe p {
  font-weight: 700;
  color: #130f35;
  text-align: center;
}

.wp-vender-journey-graph-detail-list1 li .content-svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.wp-vender-journey-graph-detail-list2 {
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.wp-vender-journey-graph-detail-list2 li {
  width: 115px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  padding: 10px 10px;
}

.wp-vender-journey-graph-detail-list2 li p {
  font-family: "Onest";
  font-weight: 500;
  font-size: 10px;
  line-height: 113%;
  color: #073022;
  margin: 0;
  width: min-content;
}

.wp-vender-journey-graph-detail-list2 li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.wp-vender-journey-graph-detail-list2 li.start-wireframe {
  border: 1px solid #00b579;
  width: 71px;
  background: #1bf0a9;
  border-radius: 0px 4px 4px 0px;
  margin-left: -1px;
}

.wp-vender-journey-graph-detail-list2 li.start-wireframe p {
  text-align: center;
}

.wp-vender-journey-graph-detail-list2 li:first-of-type {
  background-image: url("../../images/wp-vender-industry-graph-details2-img-1.svg");
  background-repeat: no-repeat;
  background-position: top;
}

.wp-vender-journey-graph-detail-list2 li:nth-of-type(2) {
  background-image: url("../../images/wp-vender-industry-graph-details2-img-2.svg");
  background-repeat: no-repeat;
  background-position: top;
  margin-left: -8px;
}

.wp-vender-journey-graph-detail-list2 li:nth-of-type(3) {
  background-image: url("../../images/wp-vender-industry-graph-details2-img-3.svg");
  background-repeat: no-repeat;
  background-position: top;
  margin-left: -8px;
}

.wp-vender-journey-graph-detail-list2 li:nth-of-type(4) {
  background-image: url("../../images/wp-vender-industry-graph-details2-img-4.svg");
  background-repeat: no-repeat;
  background-position: top;
  margin-left: -8px;
}

.wp-vender-journey-graph-detail-list3 {
  background: #ffcc11;
  border: 1px solid #29002933;
  box-shadow: 0px 10px 24px -9px #ffffff66 inset;
  border-radius: 4px;
  width: 141px;
  height: 64px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.wp-vender-journey-graph-detail-list3:hover {
  background: #130f35;
  border: 1px solid rgba(19, 15, 53, 0.2);
}

.wp-vender-journey-graph-detail-list3:hover h5 {
  color: #fff;
}

.wp-vender-journey-graph-detail-list3 h5 {
  font-family: "Onest";
  font-weight: 700;
  font-size: 12px;
  line-height: 113%;
  color: #130f35;
  margin-bottom: 1px;
  text-align: center;
}

.wp-vender-journey-graph-detail-list3 span {
  font-family: "Onest";
  font-weight: 400;
  font-size: 8px;
  line-height: 150%;
  text-align: center;
  color: #130f35;
}

.wp-vender-journey-graph-detail-list3 p {
  font-family: "Onest";
  font-weight: 700;
  font-size: 8px;
  line-height: 150%;
  text-align: center;
  color: #130f35;
  margin: 0;
}

.wp-vender-journey-graph-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 8px;
}

.wp-vender-journey-graph-bottom h4 {
  font-family: "Onest";
  font-weight: 700;
  font-size: 16px;
  line-height: 135%;
  color: #130F35;
  margin: 0;
}

.wp-vender-journey-graph-bottom .vender-journey-graph-bottom-top {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wp-vender-journey-graph-bottom .vender-journey-graph-bottom-top span {
  font-family: Onest;
  font-weight: 400;
  font-size: 10px;
  line-height: 150%;
  text-align: center;
  color: #130F35;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wp-vender-journey-graph-bottom .vender-journey-graph-bottom-top span div {
  font-weight: 700;
}

.wp-vender-journey-graph-bottom .vender-journey-graph-bottom-top .vender-journey-graph-bottom-last {
  display: flex;
  align-items: center;
  gap: 5px;
}

.wp-vender-journey-graph-bottom .vender-journey-graph-bottom-top .vender-journey-graph-bottom-last span {
  font-weight: 500;
  font-size: 8px;
  line-height: 113%;
  color: #7B8484;
}

.wp-vender-journey-graph-bottom .vender-journey-graph-bottom-top .vender-journey-graph-bottom-last p {
  font-family: Onest;
  font-weight: 800;
  font-size: 12px;
  line-height: 135%;
  color: #130F35;
  margin: 0;
}

#banner-bg-canves {
  min-height: 894px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.wp-web-scraping-main-data {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.line-top-grade {
  height: 1px;
  position: absolute;
  width: calc(100% - 111px);
  left: 48px;
  background-color: #d6e7dc00;
  top: 28px;
  z-index: 1;
  background-image: linear-gradient(45deg, #ff8601 50%, #1bf0a9 50%);
}

.line-top-grade1 {
  height: 1px;
  content: "";
  position: absolute;
  width: calc(100% - 118px);
  right: 48px;
  background-color: #d5d5d5;
  top: 28px;
  z-index: 1;
  animation: rotateBlob_width 18s linear infinite;
}

@keyframes rotateBlob_width {
  from {
    width: calc(100% - 118px);
  }

  to {
    width: 0px;
  }
}

.wp-vender-journey-graph-empty {
  position: relative;
}

.weeks-progress {
  height: 1px;
  position: absolute;
  left: 42px;
  background-image: linear-gradient(45deg, #ff8601 50%, #1bf0a9 50%);
  top: -47px;
  z-index: 4;
}

.wp-vender-journey-graph-days-afterweeks {
  position: relative;
}

.weeks-progress-bar {
  background-color: #d5d5d5;
  height: 1px;
  transition: 1.2s;
  position: absolute;
  right: 0;
}

.wp-vender-journey-graph-steps-weeks li .oneweek.fill {
  animation: week-glow-once 1.5s ease-in-out forwards;
}

@keyframes week-glow-once {
  0% {
    box-shadow: 0 0 0px var(--week-color);
  }

  50% {
    box-shadow: 0 0 12px var(--week-color), 0 0 24px var(--week-color);
  }

  100% {
    box-shadow: 0 0 0px var(--week-color);
  }
}

/* Footer */
.footer-container {
  background: #130F35;
}

.footer-container .container {
  max-width: 1120px;
}

.hr-bottom {
  border-top: 1px solid #2C2566;
  margin: 56px 0 0 0px;
  padding: 0;
}

.footer {

  color: #fff;
  padding: 43px 0px 0px 0px;
  font-size: 14px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
}

.footer-logo span {
  line-height: 150%;
}

.footer-logo img {
  width: 148px;
  margin-bottom: 5px;
}

.footer-clients {
  display: flex;
  justify-content: space-between;
  margin: 21px 0px 23px;
}

.footer-Info {
  width: 343px;
}

.footer-Info span {
  line-height: 150%;
}

.footer-Info .footer-clients span>span {
  color: #1DFECC;
}

.footer-address-social {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-address-container {
  border-radius: 8px;
  border: 1px solid #FFFFFF1A;
}

.footer-address {
  display: flex;
  justify-content: space-between;
}

.footer-address div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-address h6 {
  font-size: 14px;
  display: flex;
  gap: 5px;
  line-height: 14px;
  font-weight: 400;
  color: #F7F7FD;
  margin: 5px 0px 0px;
}

.footer-address h6 img {
  height: 16px;
  width: 16px;
}

.footer-offices {
  padding: 12px 40px 18px 20px;
  border-bottom: 1px solid #FFFFFF1A;
}

.footer-offices span {
  font-weight: 600;
  line-height: 21px;
  color: #1DFECC;
}

.footer-bookCall {
  display: flex;
  align-items: center;

}

.footer-bookCall h6 {
  padding: 15px 39px;
  line-height: 14px;
  font-weight: 600;
  font-size: 14px;
  margin: 0px;
  border-right: 1px solid #FFFFFF1A;
}

.footer-bookCall span {
  padding: 0px 22px;
}

.footer-cta {
  display: flex;
  margin-right: 4px;
}

.btn-primary {
  background: #00DFAE0D;
  color: #fff;
  border: none;
  padding: 24px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 54px;
}

.btn-primary span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.footer-input {
  border: 1px solid #3E5270;
  padding: 4px;
  border-radius: 4px;
  box-shadow: 0 1px 2px 0px #2000240D;
}

.footer-input input {
  background: transparent;
  color: #5D6C83;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  border: none;
  padding-left: 16px;
  width: 200px;
}

.footer-input input::placeholder {
  color: #5D6C83;
  opacity: 1;
}

.footer-input input:focus {
  outline: none;
}

.btn-secondary {
  border: 1px solid #1DFECC;
  background: #1DFECC;
  color: #130F35;
  padding: 2px 31.5px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  box-shadow: 0px 1px 2px 0px #2000240D;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: transparent;
  color: #1DFECC;
}

.btn-secondary:hover {
  box-shadow: 0 1px 2px 0 #20002405;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 63px;
}


.footer-col2 {
  margin-left: 16px;
}

.footer-col4 {
  margin-right: 5px;
}

.footer-col h4 {
  font-weight: 600;
  margin: 0px;
  color: #1DFECC;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0px;
  gap: 9px;
  display: flex;
  flex-direction: column;
}

.footer-col ul li {
  color: #F7F7FD;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}

.footer a {
  color: inherit;
  text-decoration: none;

}

.footer-col ul li:hover a {
  color: #1DFECC;
}

.footer ul li a {
  transition: 0.3s;
}

.footer-bottom-container {
  max-width: 1216px;
  margin: auto;
}

.footer-bottom {
  margin: 23px 0px 0px 0px;
  padding-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}


.footer-bottom-info {
  display: flex;
  gap: 17px;
}

.footer-bottom-info p:first-child {
  padding-right: 17px;
  border-right: 1px solid #4F5C5C;
}

.footer-bottom-info p span {
  color: #1DFECC;
}

.footer-bottom-info p {
  margin: 0px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #FFF;
}

.footer-emails {
  margin-left: 3px;
}

.footer-emails a {
  padding: 0px 17px;
  border-left: 1px solid #4F5C5C;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  color: #1DFECC;
  text-decoration: none;
}

.footer-emails a:hover {
  color: #FFF;
}

.footer-social i:hover {
  color: #1DFECC !important;
}

.footer-social i {
  margin-left: 12px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  height: 17px;
}

/* fixed contant section */
.wpvender-book-meeting-fixed {
  position: fixed;
  bottom: 36px;
  left: 0;
  right: 0;
  padding: 4px;
  background: linear-gradient(266.01deg, #FFA977 0%, #FF85DA 33.33%, #7D77FF 66.67%, #68ECE6 100%);
  background-size: 300% 100%;
  animation: gradientShift 4s ease infinite;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  opacity: 0;
  max-width: 703px;
  width: 100%;
  margin: 0 auto;
  border-radius: 1000px;
}

@keyframes gradientShift {
  0% {
    background-position: left center;
  }

  50% {
    background-position: right center;
  }

  100% {
    background-position: left center;
  }
}

.wpvender-book-meeting-fixed.show {
  transform: translateY(0);
  opacity: 1;
  animation: gradientShift 4s ease infinite, slideUpBounce 0.6s ease-out;
}

@keyframes slideUpBounce {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  60% {
    transform: translateY(-20px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.wpvender-book-meeting-content {
  background: #131b24;
  padding: 12px 13px 12px 22px;
  backdrop-filter: blur(8px);
  box-shadow: 0px 0px 0px 1px #FFFFFF3D inset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 9;
  border-radius: 1000px;
  width: 100%;
}

.wpvender-book-meeting-content .wpvender-book-meeting-text {
  display: flex;
  align-items: center;
}

.wpvender-book-meeting-content .wpvender-book-meeting-text p {
  font-family: 'Helvetica';
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #fff;
  margin: 0 0 0 -15px;
}

.wpvender-book-meeting-content .wpvender-book-meeting-text img {
  width: 100px;
}

.wpvender-book-meeting-content .wpvender-book-meeting-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wpvender-book-meeting-content .wpvender-book-meeting-actions a {
  padding: 4px 28px;
  border-radius: 4px;
  background: #ffcc11;
  border: 1px solid #29002933;
  box-shadow: 0px 10px 24px -9px #ffffff66 inset;
  font-family: 'Onest';
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #130F35;
  transition: 0.3s;
}

.wpvender-book-meeting-content .wpvender-book-meeting-actions a:hover {
  box-shadow: none;
}

.wpvender-book-meeting-content .wpvender-book-meeting-actions button {
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
}

/* Success Stories of Industry Leaders Start */
.success-stories-industry-leaders-container {
  padding: 104px 0;
  overflow: hidden;
}

.success-stories-industry-leaders-container .container {
  max-width: 1210px;
}

.success-stories-industry-leaders-container .heading {
  font-family: 'Onest';
  font-weight: 600;
  font-size: 40px;
  line-height: 24px;
  color: #130F35;
  margin-bottom: 61px;
}

.success-stories-industry-leaders-container .heading span {
  background: #1DFECC;
}

.success-stories-leader {
  background-image: url(../../images/podcast_rishardrameez.webp);
  background-size: cover;
  background-position: center;
  min-height: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.success-stories-leader .storiesvideo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #000;
  pointer-events: none;
  opacity: 0;
  transition: 0.5s ease;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.success-stories-leader.active .storiesvideo-bg {
  opacity: 1;
  pointer-events: all;
}

.success-stories-leader iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  z-index: 4;
  pointer-events: all;
}

.success-stories-leader .storiesvideo-bg .storiesclose-video {
  position: absolute;
  top: 4%;
  right: 4%;
  z-index: 5;
  background: #fff;
  color: #000;
  border: none;
  font-size: 18px;
  line-height: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  padding-right: 1px;
}

.success-stories-leader.active .storiesvideo-bg .storiesclose-video {
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-stories-leader .storiesvideo-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* highest */
}

.success-stories-leader .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.success-stories-leader.intuit {
  background-image: url(../../images/podcast_danolsen.webp);
}

.success-stories-leader.cridio {
  background-image: url(../../images/podcast_imrancheema.webp);
}

.success-stories-leader .company-logo {
  width: 107px;
  height: auto;
  margin: 41px 0 0 52px;
}

.success-stories-leader .success-stories-leader-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 49px 18px 42px;
  background: #04203d;
  min-height: 125px;
  position: relative;
}

.success-stories-leader .success-stories-leader-content i.fa-solid.fa-play {
  position: absolute;
  top: -50px;
  left: 25px;
  color: #fff;
  font-size: 25px;
  opacity: 0;
  transition: 0.3s;
}

.success-stories-leader:hover .success-stories-leader-content i.fa-solid.fa-play {
  opacity: 1;
}

.success-stories-leader .success-stories-leader-content .success-stories-leader-author-name {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2.5px;
  width: calc(100% - 115px);
}

.success-stories-leader .success-stories-leader-content .success-stories-leader-podcast {
  width: 115px;
  height: auto;
  transition: 0.3s;
}

.success-stories-leader:hover .success-stories-leader-content .success-stories-leader-podcast {
  transform: scale(1.1);
}

.success-stories-leader .success-stories-leader-content .success-stories-leader-author-name p {
  font-family: 'Onest';
  font-weight: 700;
  font-size: 30px;
  line-height: 130%;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.success-stories-leader .success-stories-leader-content .success-stories-leader-author-name span {
  font-family: 'Onest';
  font-weight: 600;
  font-size: 17px;
  line-height: 130%;
  text-transform: uppercase;
  color: #fff;
}

.success-stories-leaders-container .col-lg-6 {
  padding: 0 5px;
  max-width: 600px;
  width: 100%;
}

.success-stories-leaders-container .slick-list.draggable {
  overflow: visible;
}

.success-stories-leaders-container .row {
  margin: 0 -2.5px;
}

/* Success Stories of Industry Leaders End */

/* Success Stories of Product Start */
.customers-stories {
  padding: 104px 0 70px 0;
  overflow: hidden;
}

.customers-stories-sub-headings {
  font-family: 'Onest';
  font-weight: 600;
  font-size: 40px;
  line-height: 46px;
  margin-bottom: 50px;
}

.success-story-of-product {
  background-image: url(../../images/success-story-of-product1-img1.png);
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  min-height: 550px;
  max-width: 919px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.success-story-of-product.product-2 {
  background-image: url(../../images/success-story-of-product2-img1.png);
}

.success-story-of-product .success-story-product-content-sap {
  width: 100%;
  background: #626262;
  height: 1px;
  z-index: 999;
}

.success-story-of-product .success-story-product-bottom,
.success-story-of-product .success-story-product-top {
  z-index: 999;
}

.success-story-of-product::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(16, 16, 24, 0) 18.83%, #101018 79.03%);
  backdrop-filter: blur(0px);
  transition: 0.5s ease;
  z-index: 1;
  border-radius: 16px;
}

.success-story-of-product:hover::after {
  background: linear-gradient(180deg, rgba(16, 16, 24, 0.6) 27.41%, rgba(16, 16, 24, 0.6) 65.39%);
  backdrop-filter: blur(10px);
}

.success-story-of-product .success-story-product-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 32px 33px 38px 52px;
  position: relative;
  min-height: 130.5px;
}

.success-story-of-product .success-story-product-bottom .success-story-product-brands,
.success-story-of-product .success-story-product-bottom .success-story-product-sales {
  transition: 0.5s ease;
}

.success-story-of-product .success-story-product-bottom .success-story-product-brands {
  opacity: 1;
  transform: translateY(0);
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
  position: unset;
}

.success-story-of-product .success-story-product-bottom .success-story-product-sales {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.success-story-of-product:hover .success-story-product-bottom .success-story-product-brands {
  opacity: 0;
  transform: translateY(-20px);
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
}

.success-story-of-product:hover .success-story-product-bottom .success-story-product-sales {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  width: fit-content;
  height: fit-content;
  position: unset;
}

.success-story-of-product .success-story-product-bottom .success-story-product-brands p {
  margin: 0;
  font-family: 'Onest';
  font-weight: 500;
  font-size: 14px;
  line-height: 135%;
  color: #fff;
}

.success-story-of-product .success-story-product-bottom .success-story-product-brands .product-brands-images {
  display: flex;
  align-items: center;
  gap: 20px;
}

.success-story-of-product .success-story-product-bottom .success-story-product-brands .product-brands-images img {
  width: 100%;
}

.success-story-of-product .success-story-product-bottom .success-story-product-sales .product-revenue-reviews-sap {
  min-height: 55px;
  height: 100%;
  background: #FFFFFF80;
  width: 1px;
}

.success-story-of-product .success-story-product-sales .success-story-product-revenue-reviews p {
  font-family: 'Onest';
  font-weight: 500;
  font-size: 27px;
  line-height: 135%;
  color: #fff;
  margin: 0;
}

.success-story-of-product .success-story-product-sales .success-story-product-revenue-reviews span {
  font-family: 'Onest';
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  color: #fff;
}

.success-story-of-product .success-story-product-top {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 433px;
  overflow: hidden;
  padding: 10px 27px 36px 52px;
}

.success-story-of-product .success-story-product-top .success-story-product-actions {
  position: absolute;
  top: 54px;
  right: 60px;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  gap: 40px;
  transform: translateY(-25px) scale(0.6);
  transition: 0.5s ease;
}

.success-story-of-product:hover .success-story-product-top .success-story-product-actions {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.success-story-of-product .success-story-product-top .success-story-product-actions a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Onest';
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
  color: #fff;
  transition: 0.3s ease;
}

.success-story-of-product .success-story-product-top .success-story-product-actions a:hover {
  transform: scale(1.05);
}

.success-story-of-product .success-story-product-top .success-story-product-actions-bottom {
  height: 88px;
  overflow: hidden;
  transition: 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.success-story-of-product:hover .success-story-product-top .success-story-product-actions-bottom {
  height: 247px;
  overflow: hidden;
}

.success-story-of-product .success-story-product-top .content-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: 0.5s ease;
  font-family: 'Onest';
  font-weight: 300;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: 0.4px;
  color: #fff;
}

.success-story-of-product:hover .success-story-product-top .content-show {
  opacity: 0;
  transform: translateY(-20px);
  visibility: hidden;
  height: 0;
  position: absolute;
}

.success-story-of-product .success-story-product-top .content-hide {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: 0.5s ease;
  font-family: 'Onest';
  font-weight: 300;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0.4px;
  color: #fff;
  position: absolute;
}

.success-story-of-product:hover .success-story-product-top .content-hide {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  position: unset;
}

.success-story-of-product .success-story-product-top .success-story-author-details {
  opacity: 0;
  transform: translateY(20px) scale(0.7) translateX(-50px);
  visibility: hidden;
  transition: 0.5s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.success-story-of-product:hover .success-story-product-top .success-story-author-details {
  opacity: 1;
  transform: translateY(0) scale(1) translateX(0px);
  visibility: visible;
  margin-top: 40px;
}

.success-story-of-product .success-story-product-top .success-story-author-details img {
  width: 62px;
  height: 62px;
  transition: 0.5s ease;
}

.success-story-of-product .success-story-author-details .success-story-author-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.success-story-of-product .success-story-author-details .success-story-author-name p {
  font-family: 'Onest';
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: 0.4px;
  color: #fff;
  margin-bottom: 0;
}

.success-story-of-product .success-story-author-details .success-story-author-name p a {
  color: #fff;
}

.success-story-of-product .success-story-author-details .success-story-author-name span {
  font-family: 'Onest';
  font-size: 14px;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0.4px;
  color: #fff;
}

.success-story-of-product .success-story-author-details .success-story-author-name p,
.success-story-of-product .success-story-author-details .success-story-author-name span {
  transition: 0.5s ease;
}

.customers-stories .success-stories-of-products-main .success-stories-products-wrapper .slick-list.draggable {
  border-radius: 16px;
  overflow: visible;
}

.customers-stories .success-stories-of-products-main .success-stories-products-wrapper .slick-list.draggable .slick-track {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 29px;
}

.customers-stories .success-stories-of-products-main .success-stories-products-wrapper .slick-list.draggable .slick-track::before,
.customers-stories .success-stories-of-products-main .success-stories-products-wrapper .slick-list.draggable .slick-track::after {
  display: none;
}

.success-story-of-product .success-story-product-top .success-products-action-logo {
  position: absolute;
  top: 44px;
  left: 53px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-25px) scale(0.6);
  transition: 0.5s ease;
}

.success-story-of-product:hover .success-story-product-top .success-products-action-logo {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Success Stories of Product End */

/* all video popup */
.popup-common-for-videos {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999999;
  justify-content: center;
  align-items: center;
}

.popup-common-for-videos .popup-inner {
  position: relative;
  width: 80%;
  max-width: 800px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  animation: fadeInUp 0.3s ease;
}

.popup-common-for-videos iframe {
  width: 100%;
  height: 400px;
  display: block;
}

.popup-common-for-videos .close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: white;
  cursor: pointer;
  z-index: 2;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* all video popup */

















































































































































































/* headless banner Start */
.headless-wordpress-banner-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 738px;
  background: #130F35;
  position: relative;
  overflow: hidden;
  /* background-image: url('../../images/solution-banner-after.svg');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover; */
}

.headless-wordpress-banner-section .container {
  max-width: 1050px;
  z-index: 9;
}

.headless-wordpress-banner-content-wrap-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.headless-wordpress-banner-content-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 409px;
}

.headless-wordpress-banner-content-wrap h1 {
  font-family: 'Onest';
  font-weight: 700;
  font-size: 43px;
  line-height: 107%;
  color: #DAE4F4;
  margin-bottom: 25px;
}

.headless-wordpress-banner-content-wrap h1 span {
  color: #1DFECC;
}

.headless-wordpress-banner-content-wrap .headless-wordpress-single-stack {
  background: #241F53;
  border-radius: 16px;
  padding: 24px;
}

.headless-wordpress-single-stack .single-stack-icon-item {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-family: 'Onest';
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #DAE4F4;
}

.headless-wordpress-single-stack .single-stack-heading {
  margin-bottom: 32px;
  color: #FDFFFF;
  font-family: 'Onest';
  font-weight: 400;
  font-size: 14px;
  line-height: 148%;
}

.headless-wordpress-single-stack .single-stack-button {
  font-family: 'Onest';
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  transition: 0.3s;
  color: #130F35;
  background: #1DFECC;
  border: 1px solid #29002933;
  border-radius: 4px;
  box-shadow: 0px 10px 24px -9px #FFFFFF66 inset;
  padding: 4px 16px;
  display: flex;
  width: fit-content;
}

.headless-wordpress-single-stack .single-stack-button:hover {
  box-shadow: none;
}



.headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap {
  position: relative;
  padding-bottom: 150px;
}

.headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img3 {
  position: absolute;
  right: -50%;
  bottom: -6%;
}

.headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 {
  position: absolute;
  left: -18px;
  top: 48%;
  z-index: 2;
}

@keyframes gradientFlow {
  0% {
    stop-color: #FFCC00;
  }
  25% {
    stop-color: #FFCC00;
  }
  50% {
    stop-color: #00FFB3;
  }
  75% {
    stop-color: #00FFB3;
  }
  100% {
    stop-color: #FFCC00;
  }
}

@keyframes gradientFlowReverse {
  0% {
    stop-color: #00FFB3;
  }
  25% {
    stop-color: #00FFB3;
  }
  50% {
    stop-color: #FFCC00;
  }
  75% {
    stop-color: #FFCC00;
  }
  100% {
    stop-color: #00FFB3;
  }
}

.headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 svg linearGradient stop:first-child {
  animation: gradientFlow 4s ease-in-out infinite;
}

.headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 svg linearGradient stop:last-child {
  animation: gradientFlowReverse 4s ease-in-out infinite;
}

@keyframes lineGlowWave {
  0%, 100% {
    stroke: #FFCC00;
    filter: drop-shadow(0 0 1px #FFCC00);
  }
  50% {
    stroke: #00FFB3;
    filter: drop-shadow(0 0 0px #00FFB3);
  }
}

.headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 svg path[stroke="#1DFDCC"],
.headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 svg path[stroke="#F3C81F"] {
  animation: lineGlowWave 4s ease-in-out infinite;
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-1px) scale(1.02);
  }
}

.headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 svg {
  animation: floatPulse 3.5s ease-in-out infinite;
}

.headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img1 {
  position: relative;
  z-index: 1;
}

/* headless banner end */





/* Beyond Wordpress Section Start */
.beyond-wordpress-section {
  margin: 99px 0 150px 0;
}

.beyond-wordpress-section .container {
  max-width: 1224px;
}

.beyond-wordpress-head h2 {
  font-family: 'Onest';
  font-weight: 600;
  font-size: 40px;
  line-height: 116%;
  color: #130F35;
  margin-bottom: 48px;
  text-align: center;
}

.beyond-wordpress-section-lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.beyond-wordpress-section-lists .beyond-wordpress-list {
  border: 1px solid #F2F4F4;
  border-radius: 8px;
  padding: 24px 23.5px 24px 23.5px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: 0.3s;
}

.beyond-wordpress-section-lists .beyond-wordpress-list:hover {
  transform: translateY(-4px);
}

.beyond-wordpress-list .beyond-wordpress-list-icon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Onest';
  font-weight: 500;
  font-size: 19px;
  line-height: 101%;
  color: #130F35;
}

.beyond-wordpress-list .beyond-wordpress-list-heading {
  margin: 0;
  font-family: 'Onest';
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: #4F5C5C;
}

/* Beyond Wordpress Section End */






/* Diverse Business Models Start */
.diverse-business-model-section {
  overflow: hidden;
  margin-bottom: 76px;
}

.diverse-business-model-section .container {
  max-width: 1224px;
}

.business-model-section-head {
  text-align: center;
}

.business-model-section-head h2 {
  margin-bottom: 16px;
  font-family: 'Onest';
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  color: #130F35;
}

.business-model-section-head p {
  margin-bottom: 48px;
  color: #4F5C5C;
  font-family: 'Onest';
  font-weight: 300;
  font-size: 19px;
  line-height: 125%;
}

.diverse-business-model-section .business-model-section-list-content .slick-list.draggable {
  overflow: visible;
  cursor: grab;
}

.diverse-business-model-section .business-model-section-list-content .slick-list.draggable:active {
  cursor: grabbing;
}

.diverse-business-model-section .business-model-section-list-content .slick-track {
  display: flex;
  align-items: center;
  gap: 24px;
}

.diverse-business-model-section .business-model-section-list-content .slick-track::before,
.diverse-business-model-section .business-model-section-list-content .slick-track::after {
  display: none;
}

.business-model-section-list-content .business-model-section-list {
  background: #EDF4F4;
  width: 100%;
  max-width: 282px;
  border-radius: 8px 8px 8px 8px;
  overflow: hidden;
  transition: 0.5s ease;
  position: relative;
}

.business-model-section-list-content .business-model-section-list::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #130F35;
  transform: translateY(101%);
  transition: 0.5s ease;
  z-index: 0;
}

.business-model-section-list-content .business-model-section-list:hover::after {
  transform: translateY(0);
}

.business-model-section-list-content .business-model-section-list * {
  position: relative;
  z-index: 1;
}

.business-model-section-list .model-section-list-content {
  padding: 24px 8px 20px 24px;
  display: flex;
  flex-direction: column;
}

.business-model-section-list .model-section-list-content .model-section-list-title {
  font-family: 'Onest';
  font-weight: 500;
  font-size: 20px;
  line-height: 101%;
  color: #130F35;
  margin-bottom: 16px;
  transition: 0.5s ease;
}

.business-model-section-list:hover .model-section-list-content .model-section-list-title {
  color: #EDF4F4;
}

.business-model-section-list .model-section-list-content .model-section-list-desc {
  font-family: 'Onest';
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: #4F5C5C;
  margin-bottom: 12px;
  transition: 0.5s ease;
}

.business-model-section-list:hover .model-section-list-content .model-section-list-desc {
  color: #EDF4F4;
}

.business-model-section-list .model-section-list-content .read-more {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Onest';
  font-weight: 400;
  font-size: 12px;
  line-height: 135%;
  color: #000000;
  width: fit-content;
  transition: 0.5s ease;
}

.business-model-section-list:hover .model-section-list-content .read-more {
  color: #EDF4F4;
}

.business-model-section-list .model-section-list-content .read-more .icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #130F35;
  border-radius: 50%;
  transition: 0.5s ease;
}

.business-model-section-list:hover .model-section-list-content .read-more .icon {
  background: #1DFECC;
}

.business-model-section-list .model-section-list-content .read-more .icon svg path {
  transition: 0.5s ease;
}

.business-model-section-list:hover .model-section-list-content .read-more .icon svg path {
  stroke: #130F35;
}

.business-model-section-list .model-section-list-thumb {
  display: flex;
  justify-content: flex-end;
}

.business-model-section-list .model-section-list-thumb img {
  margin-right: -1px;
}

/* Diverse Business Models End */




/* Headless Wordpress Graph Start */

.headless-wordpress-graph-info-section {
  padding: 104px 0 104px 0;
  background: #EDF4F4;
}

.headless-wordpress-graph-info-section .container {
  max-width: 996px;
}

.headless-wordpress-graph-info-section .graph-info-head {
  text-align: center;
}

.graph-info-head h2 {
  font-family: 'Onest';
  font-weight: 600;
  font-size: 40px;
  line-height: 114%;
  color: #130F35;
  margin-bottom: 16px;
}

.graph-info-head p {
  font-family: 'Onest';
  font-weight: 300;
  font-size: 19px;
  line-height: 125%;
  color: #4F5C5C;
  margin-bottom: 48px;
}

.graph-info-performance-scalability {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.graph-info-performance-scalability .faster-performance {
  background: #130F35;
  border-radius: 8px;
  padding: 20px 24px 37px 24px;
  width: calc(100% - 377px);
}

.faster-performance h4 {
  font-family: 'Onest';
  font-weight: 500;
  font-size: 20px;
  line-height: 101%;
  color: #EDF4F4;
  margin-bottom: 12px;
}

.faster-performance p {
  font-family: 'Onest';
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: #EDF4F4;
  margin-bottom: 35px;
}

.faster-performance .faster-performance-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.5px;
}

.faster-performance .faster-performance-images img {
  width: 100%;
}

.faster-performance .faster-performance-images .faster-performance-box-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6.5px;
  width: 100%;
}

.graph-info-performance-scalability .scalability {
  background: #130F35;
  border-radius: 8px;
  padding: 24px 24px 24px 24px;
  text-align: end;
  width: 353px;
  height: -moz-available;
  height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.scalability .scalability-content h4 {
  font-family: 'Onest';
  font-weight: 500;
  font-size: 20px;
  line-height: 101%;
  color: #EDF4F4;
  margin-bottom: 12px;
  text-align: start;
}

.scalability .scalability-content p {
  font-family: 'Onest';
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: #EDF4F4;
  margin-bottom: 20px;
  text-align: start;
}

.scalability img {
  padding-right: 18px;
}

.graph-info-flexibility-security {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
}

.graph-info-flexibility-security .graph-info-flexibility {
  width: 353px;
  padding: 24px 24px 48px 24px;
  background: #130F35;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: -moz-available;
  height: -webkit-fill-available;
  justify-content: space-between;
}

.graph-info-flexibility h4 {
  font-family: 'Onest';
  font-weight: 500;
  font-size: 20px;
  line-height: 101%;
  color: #EDF4F4;
  margin-bottom: 12px;
  text-align: start;
}

.graph-info-flexibility p {
  font-family: 'Onest';
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: #EDF4F4;
  margin-bottom: 20px;
  text-align: start;
}

.graph-info-flexibility img {
  padding: 0 8px 0 24px;
  width: 100%;
}

.graph-info-flexibility-security .graph-info-security {
  width: calc(100% - 377px);
  padding: 21px 24px 60px 24px;
  background: #130F35;
  border-radius: 8px;
}

.graph-info-security img {
  padding: 0 34px 0 32px;
  width: 100%;
}

.graph-info-security h4 {
  font-family: 'Onest';
  font-weight: 500;
  font-size: 20px;
  line-height: 101%;
  color: #EDF4F4;
  margin-bottom: 12px;
  text-align: start;
}

.graph-info-security p {
  font-family: 'Onest';
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: #EDF4F4;
  margin-bottom: 40px;
  text-align: start;
}

/* Headless Wordpress Graph End */







/* Collaborative Approach Start */
.collaborative-approach-section {
  padding: 49px 0 92px 0;
  background: #EDF4F4;
  margin-bottom: 104px;
}

.collaborative-approach-section .container {
  max-width: 1070px;
}

.collaborative-approach-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.collaborative-approach-head .collaborative-approach-label {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #1DFECC;
  border-radius: 30px;
  padding: 4px 12px;
  margin-bottom: 22px;
  font-family: 'Onest';
  font-weight: 300;
  font-size: 10px;
  line-height: 135%;
  color: #130F35;
}

.collaborative-approach-head h2 {
  font-family: 'Onest';
  font-weight: 600;
  font-size: 40px;
  line-height: 114%;
  color: #130F35;
  margin-bottom: 16px;
}

.collaborative-approach-head p {
  margin-bottom: 48px;
  font-family: 'Onest';
  font-weight: 300;
  font-size: 19px;
  line-height: 125%;
  text-align: center;
  color: #4F5C5C;
  max-width: 710px;
}

.collab-approach-items-wrapper {
  margin: 0 0 48px 0;
  display: flex;
  justify-content: center;
}

.collab-approach-items-wrapper .collab-approach-items-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  margin: 0 0 0 0;
  list-style: none;
  background: #D5D8E14D;
  width: fit-content;
  border-radius: 59px;
}

.collab-approach-items-main .collab-approach-items .collab-approach-links {
  border: unset;
  background-size: 202% 100%;
  background-position: center right;
  background-color: #fff0;
  transition: 0.3s;
  border-radius: 45px;
  padding: 6px 16px;
  color: #130f35;
  position: relative;
  overflow: hidden;
  font-family: 'Onest';
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}

.collab-approach-items .collab-approach-links.active {
  background-image: linear-gradient(90deg, #F9FFFF 50%, #F9FFFF 50%);
}

.collab-approach-items .collab-approach-links.autoplay-progress {
  animation: collabtabProgress 10s linear forwards;
  background-image: linear-gradient(90deg, #1DFECC 50%, #F9FFFF 50%);
}

@keyframes collabtabProgress {
  from {
    background-position: right center;
  }

  to {
    background-position: left center;
  }
}

.collaborative-approach-grids {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 57px;
}

.collaborative-approach-grids .collab-approach-grid {
  padding: 24px;
  border: 1px solid #D5D7DA;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.collaborative-approach-grids .collab-approach-grid.active {
  box-shadow: 0px 20px 24px -4px #0A0D1214;
}

.collab-approach-grid svg {
  margin-bottom: 16px;
}

.collab-approach-grid.active svg path.boxfill {
  fill: #1DFECC;
  stroke: #1DFECC;
}

.collab-approach-grid.active svg path.boxfill.two {
  fill: #1DFECC;
  stroke: none;
}

.collab-approach-grid span {
  font-family: 'Onest';
  font-weight: 500;
  font-size: 14px;
  line-height: 101%;
  color: #4F5C5C94;
  margin-bottom: 8px;
}

.collab-approach-grid h4 {
  font-family: 'Onest';
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  color: #130F35;
  margin-bottom: 8px;
}

.collab-approach-grid p {
  font-family: 'Onest';
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  color: #4F5C5C;
  margin: 0;
}


.collaborative-approach-steps {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 854px;
  margin: 0 auto 15px;
}

.collaborative-approach-steps .step {
  position: relative;
  width: 25%;
  display: flex;
  align-items: center;
}

.collaborative-approach-steps .step .icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #C5D3E8;
  background: transparent;
  padding: 4px 11px;
}

.collaborative-approach-steps .step.active .icon,
.collaborative-approach-steps .step.hold .icon {
  background: #1DFECC;
  border-color: #1DFECC;
  padding: 6px;
}

.collaborative-approach-steps .step .icon span {
  font-family: 'Onest';
  font-weight: 600;
  font-size: 19px;
  line-height: 125%;
  color: #C5D3E8;
}

.collaborative-approach-steps .step.active .icon span,
.collaborative-approach-steps .step.hold .icon span {
  display: none;
}

.collaborative-approach-steps .step .icon svg {
  display: none;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.collaborative-approach-steps .step.active .icon svg,
.collaborative-approach-steps .step.hold .icon svg {
  display: flex;
}

.collaborative-approach-steps .step .progress-track {
  position: relative;
  height: 2px;
  width: 100%;
  background: #C5D3E8;
  overflow: hidden;
}

.collaborative-approach-steps .step .progress-track::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #1DFECC;
}

.collaborative-approach-steps .step.active .progress-track::before,
.collaborative-approach-steps .step.hold .progress-track::before {
  width: 100%;
  transition: 2.5s linear;
}

.collaborative-approach-steps .step:last-child {
  width: fit-content;
}

.collaborative-approach-steps .step.active .icon,
.collaborative-approach-steps .step.hold .icon {
  animation: pulseGlow 1.2s infinite;
  box-shadow: 0 0 6px rgba(29, 254, 204, 0.45);
}

/* Pulse keyframes */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 6px rgba(29, 254, 204, 0.35);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 14px rgba(29, 254, 204, 0.75);
    transform: scale(1.03);
  }

  100% {
    box-shadow: 0 0 6px rgba(29, 254, 204, 0.35);
    transform: scale(1);
  }
}

/* Collaborative Approach End */




/* Unlock the Full Potential Start */
.full-potential-section-wrapper {
  margin-bottom: 104px;
}

.full-potential-section-wrapper .container {
  max-width: 1040px;
}

.full-potential-section-wrapper .full-potential-section-head-item-wrapper {
  background: #062929;
  border-radius: 16px;
  padding: 64px 95px;
}

.full-potential-section-head h2 {
  font-family: 'Onest';
  font-weight: 600;
  font-size: 40px;
  line-height: 140%;
  color: #FDFFFF;
  max-width: 729px;
  margin-bottom: 16px;
}

.full-potential-section-head h2 span {
  color: #1DFECC;
}

.full-potential-section-head p {
  font-family: 'Onest';
  font-weight: 300;
  font-size: 19px;
  line-height: 125%;
  color: #FDFFFF;
  margin-bottom: 32px;
  max-width: 726px;
}

.full-potential-items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.full-potential-section-tabs .full-potential-tabs-main {
  position: relative;
  padding: 6px;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  border-radius: 67px;
  background: #062929;
  box-shadow: 0px -8px 32px 0px #E2E8FF1F inset;
  backdrop-filter: blur(8.8px);
  overflow: hidden;
  width: fit-content;
}

.full-potential-section-tabs .full-potential-tabs-main::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 67px;
  padding: 1px;
  background: linear-gradient(308.7deg, #00FFB3, #FFCC00, #130F35, #00FFB3);
  background-size: 400% 400%;
  filter: drop-shadow(0 0 6px rgba(0, 255, 179, 0.6)) drop-shadow(0 0 12px rgba(255, 204, 0, 0.5)) drop-shadow(0 0 8px rgba(19, 15, 53, 0.6));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: glowFlow 6s infinite;
}

@keyframes glowFlow {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 6px rgba(0, 255, 179, 0.6)) drop-shadow(0 0 10px rgba(255, 204, 0, 0.5)) drop-shadow(0 0 6px rgba(19, 15, 53, 0.5));
  }

  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 14px rgba(0, 255, 179, 0.9)) drop-shadow(0 0 22px rgba(255, 204, 0, 0.8)) drop-shadow(0 0 18px rgba(19, 15, 53, 0.8));
  }

  100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 6px rgba(0, 255, 179, 0.6)) drop-shadow(0 0 10px rgba(255, 204, 0, 0.5)) drop-shadow(0 0 6px rgba(19, 15, 53, 0.5));
  }
}

.full-potential-tabs-main .full-potential-items .full-potential-links {
  border: unset;
  background-size: 202% 100%;
  background-position: center right;
  background-color: #fff0;
  transition: 0.3s;
  border-radius: 45px;
  padding: 6px 16px;
  color: #FDFFFF;
  position: relative;
  overflow: hidden;
  font-family: 'Onest';
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}

.full-potential-tabs-main .full-potential-items .full-potential-links.active {
  background-image: linear-gradient(90deg, #F9FFFF 50%, #F9FFFF 50%);
  color: #130f35;
}

.full-potential-tabs-main .full-potential-items .full-potential-links.autoplay-progress {
  animation: potentialtabProgress 10s linear forwards;
  background-image: linear-gradient(90deg, #1DFECC 50%, #F9FFFF 50%);
}

@keyframes potentialtabProgress {
  from {
    background-position: right center;
  }

  to {
    background-position: left center;
  }
}

.full-potential-items-wrapper .full-potential-tab-items-content {
  display: flex;
  align-items: center;
  gap: 29px;
}

.full-potential-tab-items-content img {
  width: 393px;
}

.full-potential-tab-items-content .full-potential-tab-content {
  width: calc(100% - 422px);
}

.full-potential-tab-content h4 {
  font-family: 'Onest';
  font-weight: 500;
  font-size: 20px;
  line-height: 101%;
  color: #EDF4F4;
  margin-bottom: 16px;
}

.full-potential-tab-content p {
  font-family: 'Onest';
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: #EDF4F4;
  margin-bottom: 24px;
}

.full-potential-tab-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.full-potential-tab-content ul li {
  font-family: 'Onest';
  font-weight: 500;
  font-size: 14px;
  line-height: 210%;
  color: #EDF4F4;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Unlock the Full Potential End */




/* Perfect Engagement Hiring Start */
.perfect-engagement-hiring-section {
  margin-bottom: 74px;
}

.perfect-engagement-hiring-section .container {
  max-width: 1004px;
}

.perfect-engagement-head h2 {
  font-family: 'Onest';
  font-weight: 600;
  font-size: 40px;
  line-height: 114%;
  color: #130F35;
  margin-bottom: 48px;
  text-align: center;
}

.perfect-engagement-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 63px;
}

.perfect-engagement-details .perfect-engagement-item {
  background: #EDF4F4;
  width: 100%;
  border-radius: 8px 8px 8px 8px;
  overflow: hidden;
  transition: 0.5s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.perfect-engagement-item .perfect-engagement-item-content {
  padding: 24px 24px 0px 24px;
  display: flex;
  flex-direction: column;
}

.perfect-engagement-item .perfect-engagement-item-content h4 {
  font-family: 'Onest';
  font-weight: 500;
  font-size: 32px;
  line-height: 101%;
  color: #130F35;
  margin-bottom: 16px;
  transition: 0.5s ease;
}

.perfect-engagement-item .perfect-engagement-item-content h4 span {
  transition: 0.5s ease;
}

.perfect-engagement-item .perfect-engagement-item-content p {
  font-family: 'Onest';
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: #4F5C5C;
  margin-bottom: 22px;
  transition: 0.5s ease;
}

.perfect-engagement-item .perfect-engagement-item-content .perfect-engagement-item-sap {
  width: 100%;
  height: 1px;
  margin-bottom: 22px;
  backdrop-filter: blur(8.8px);
  overflow: hidden;
  position: relative;
  box-shadow: 0px -8px 32px 0px #E2E8FF1F inset;
  transition: 0.5s ease;
  opacity: 0;
}

.perfect-engagement-item .perfect-engagement-item-content .perfect-engagement-item-sap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 67px;
  padding: 1px;
  transition: 0.5s ease;
  background: linear-gradient(308.7deg, #EDF4F4, #EDF4F4, #EDF4F4);
  background-size: 400% 400%;
  filter: drop-shadow(0 0 6px rgba(0, 255, 179, 0.6)) drop-shadow(0 0 12px rgba(255, 204, 0, 0.5)) drop-shadow(0 0 8px rgba(19, 15, 53, 0.6));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: glowFlow 6s infinite;
}

.perfect-engagement-item .perfect-engagement-item-content a {
  width: fit-content;
  display: flex;
  font-family: 'Onest';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #130F35;
  background: #FDFFFF;
  padding: 4px 16px;
  transition: 0.5s ease;
  border-radius: 4px;
  margin-bottom: 3px;
  border: 1px solid transparent;
}

.perfect-engagement-item .perfect-engagement-item-thumb {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative !important;
}

.perfect-engagement-item .perfect-engagement-item-thumb img {
  position: absolute;
  right: 0;
  top: 0;
  margin-bottom: 0px;
}

.perfect-engagement-item img {
  margin-bottom: -1px;
}

.perfect-engagement-item .perfect-engagement-item-thumb .perfect-engagement-color-overlay {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 35px;
}

.perfect-engagement-item .perfect-engagement-item-thumb .perfect-engagement-color-overlay span {
  font-family: 'Onest';
  font-weight: 300;
  font-size: 52px;
  line-height: 101%;
  color: #E54921;
  transition: 0.5s ease;
  padding-left: 16px;
  white-space: nowrap;
}

.perfect-engagement-item .perfect-engagement-item-thumb .perfect-engagement-color-overlay span.active {
  color: #A4A5A1;
}

.perfect-engagement-details .perfect-engagement-item * {
  position: relative;
  z-index: 1;
}

.perfect-engagement-details .perfect-engagement-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #130F35;
  transform: translateY(101%);
  transition: 0.5s ease;
  z-index: 0;
}

.perfect-engagement-details .perfect-engagement-item:hover::after {
  transform: translateY(0);
}

.perfect-engagement-details .perfect-engagement-item:hover .perfect-engagement-item-content .perfect-engagement-item-sap {
  opacity: 1;
}

.perfect-engagement-details .perfect-engagement-item:hover .perfect-engagement-item-content .perfect-engagement-item-sap::before {
  background: linear-gradient(308.7deg, #00FFB3, #FFCC00, #00FFB3);
  background-size: 400% 400%;
}

.perfect-engagement-details .perfect-engagement-item:hover .perfect-engagement-item-content a {
  background: #1DFECC;
  border: 1px solid #29002933;
  box-shadow: 0px 10px 24px -9px #FFFFFF66 inset;
}

.perfect-engagement-details .perfect-engagement-item:hover .perfect-engagement-item-content a:hover {
  box-shadow: none;
}

.perfect-engagement-details .perfect-engagement-item:hover .perfect-engagement-item-content h4,
.perfect-engagement-details .perfect-engagement-item:hover .perfect-engagement-item-content p {
  color: #FDFFFF;
}

.perfect-engagement-details .perfect-engagement-item:hover .perfect-engagement-item-content h4 span {
  color: #1DFECC;
}

.perfect-hiring-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.perfect-hiring-head h2 {
  font-family: 'Onest';
  font-weight: 600;
  font-size: 40px;
  line-height: 114%;
  color: #130F35;
  margin-bottom: 16px;
  text-align: center;
}

.perfect-hiring-head p {
  font-family: 'Onest';
  font-weight: 300;
  font-size: 19px;
  line-height: 125%;
  text-align: center;
  color: #4F5C5C;
  margin-bottom: 24px;
  max-width: 790px;
}

.perfect-hiring-head ul {
  padding: 0;
  margin: 0 0 48px 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.perfect-hiring-head ul li a {
  background: #DAE4F4;
  border-radius: 45px;
  padding: 6px 16px;
  font-family: 'Onest';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #130F35;
  transition: 0.3s;
  display: flex;
}

.perfect-hiring-head ul li a:hover {
  background: #130F35;
  color: #FDFFFF;
}

.perfect-hiring-head .book-call {
  background: #130F35;
  box-shadow: 0px 1px 2px 0px #2000240D;
  border-radius: 4px;
  padding: 10px 56px;
  font-family: 'Onest';
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #FDFFFF;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  border: 1px solid #130F35;
}

.perfect-hiring-head .book-call:hover {
  background: #FDFFFF;
  color: #130F35;
}

.perfect-hiring-head .book-call:hover svg path {
  stroke: #130F35;
}

.perfect-hiring-head span {
  font-family: 'Onest';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #4F5C5C;
}

/* Perfect Engagement Hiring End */









/* Success Stories We’re Proud Of Start */
.solution-success-stories-section {
  padding: 102px 0 104px 0;
  background: #EDF4F4;
}

.solution-success-stories-section .container {
  max-width: 996px;
}

.solution-success-stories-head {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.solution-success-stories-head .solution-stories-label {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #1DFECC;
  border-radius: 30px;
  padding: 4px 12px;
  margin-bottom: 22px;
  font-family: 'Onest';
  font-weight: 300;
  font-size: 10px;
  line-height: 135%;
  color: #130F35;
}

.solution-success-stories-head h2 {
  font-family: 'Onest';
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  color: #130F35;
  margin-bottom: 20px;
}

.solution-success-stories-head p {
  font-family: 'Onest';
  font-weight: 300;
  font-size: 19px;
  line-height: 125%;
  color: #4F5C5C;
  margin-bottom: 32px;
}

.solution-stories-filter-lists {
  padding: 0;
  margin: 0 0 48px 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.solution-stories-filter-lists li .solution-stories-filter-wrapper .filter-button {
  background: #F9FFFF;
  border: 1px solid #ECEAFC;
  border-radius: 45px;
  padding: 6px 16px 7px 16px;
  font-family: 'Onest';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #4F5C5C;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.solution-stories-filter-lists li .solution-stories-filter-wrapper .filter-button:hover,
.solution-stories-filter-lists li .solution-stories-filter-wrapper .filter-button.show {
  background: #130F35;
  color: #fff;
}

.solution-stories-filter-lists li .solution-stories-filter-wrapper .filter-button:hover svg path,
.solution-stories-filter-lists li .solution-stories-filter-wrapper .filter-button.show svg path {
  fill: #fff;
}

.solution-stories-filter-lists li .solution-stories-filter-wrapper .filter-button svg {
  transition: 0.3s;
}

.solution-stories-filter-lists li .solution-stories-filter-wrapper .filter-button.show svg {
  transform: rotate(180deg);
}

.solution-stories-filter-lists li .solution-stories-filter-wrapper .dropdown-menu.show {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  min-width: max-content;
  padding: 8px 0;
  top: 5px !important;
  border-radius: 0px;
  border: none;
  box-shadow: 0px 20px 24px 0px #0A0D1214;
}

.solution-stories-filter-lists li .solution-stories-filter-wrapper .dropdown-menu li {
  width: 100%;
}

.solution-stories-filter-lists li .solution-stories-filter-wrapper .dropdown-menu .dropdown-item {
  font-family: 'Onest';
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #4F5C5C;
  padding: 5px 20px;
  background-color: transparent;
  transition: 0.3s;
  text-align: center;
}

.solution-stories-filter-lists li .solution-stories-filter-wrapper .dropdown-menu .dropdown-item:hover {
  background-color: #130F35;
  color: #fff;
}

.solution-stories-filter-content-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solution-stories-filter-content-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.solution-stories-filter-content-wrap .filter-content-grid {
  width: calc(100% - 408px);
  display: flex;
  flex-direction: column;
}

.solution-stories-filter-content-wrap .filter-content-grid.grid-full {
  width: calc(100% - 306px);
}

.filter-content-grid .filter-content-grid-thumb {
  overflow: hidden;
  border-radius: 8px 8px 0px 0px;
}

.filter-content-grid:hover .filter-content-grid-thumb img {
  transform: scale(1.1);
}

.filter-content-grid .filter-content-grid-thumb img {
  width: 100%;
  height: 304px;
  object-fit: cover;
  border-radius: 8px 8px 0px 0px;
  transition: 800ms;
}

.solution-stories-filter-content-wrap .filter-content-grid .filter-content-grid-thumb .first-child {
  background: #002333;
}

.filter-content-grid .filter-content-details {
  background: #FFFFFF;
  border: 0.5px solid #E0E0DF;
  border-top: none;
  border-radius: 0px 0px 8px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.filter-content-grid .filter-content-details .content-details h4 {
  font-family: 'Onest';
  font-weight: 600;
  font-size: 19px;
  line-height: 135%;
  color: #130F35;
  margin-bottom: 4px;
}

.filter-content-grid .filter-content-details .content-details p {
  font-family: 'Onest';
  font-weight: 300;
  font-size: 14px;
  line-height: 125%;
  color: #4F5C5C;
  margin: 0;
}

.filter-content-grid .filter-content-details .content-icon {
  border: 0.5px solid #E0E0DF;
  background: #fff;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.filter-content-grid .filter-content-details .content-icon:hover {
  background: #130F35;
}

.filter-content-grid .filter-content-details .content-icon svg path {
  transition: 0.3s;
}

.filter-content-grid .filter-content-details .content-icon:hover svg path {
  stroke: #fff;
}

.solution-stories-filter-content-wrap .filter-content-grid.grid-half {
  width: 384px;
}

.solution-stories-filter-content-wrap .filter-content-grid.grid-__half {
  width: 306px;
}

.solution-stories-filter-content-main .solution-filter-load-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.solution-stories-filter-content-main .solution-filter-load-more a {
  background: #130F35;
  box-shadow: 0px 1px 2px 0px #2000240D;
  border-radius: 4px;
  padding: 10px 56px;
  font-family: 'Onest';
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #FDFFFF;
  transition: 0.3s;
  border: 1px solid #130F35;
}

.solution-stories-filter-content-main .solution-filter-load-more a:hover {
  background: transparent;
  color: #130F35;
}
/* Success Stories We’re Proud Of End */











/* responsive new */
@media (max-width: 1024px) {
  .full-potential-tabs-main .full-potential-items .full-potential-links {
    padding: 5px 16px;
  }
  .headless-wordpress-banner-content-wrap-inner {
    gap: 20px;
  }
  .headless-wordpress-banner-content-wrap {
    width: 409px;
    max-width: 100%;
  }
  .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap {
    padding-bottom: 50px;
    width: calc(100% - 429px);
    display: flex;
    justify-content: center;
  }
  .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img1 {
    width: 50%;
  }
  .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 {
    width: 50%;
  }
  .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img3 {
    right: 13%;
    bottom: -32%;
    width: 50%;
  }
  .headless-wordpress-banner-content-wrap h1 {
    font-size: 35px;
    line-height: 110%;
    margin-bottom: 20px;
  }
  .headless-wordpress-banner-content-wrap .headless-wordpress-single-stack {
    padding: 20px;
  }
  .headless-wordpress-single-stack .single-stack-icon-item {
    font-size: 18px;
  }
  .headless-wordpress-single-stack .single-stack-heading {
    margin-bottom: 25px;
  }
  .beyond-wordpress-section {
    margin: 80px 0 80px 0;
  }
  .beyond-wordpress-head h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .beyond-wordpress-section-lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .business-model-section-head h2 {
    font-size: 30px;
  }
  .business-model-section-head p {
    margin-bottom: 30px;
    font-size: 17px;
  }
  .business-model-section-list .model-section-list-content {
    padding: 14px 10px 20px 10px;
  }
  .business-model-section-list .model-section-list-content .model-section-list-title {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .diverse-business-model-section .business-model-section-list-content .slick-track {
    gap: 20px;
  }
  .business-model-section-list-content .business-model-section-list {
    max-width: 250px;
  }
  .headless-wordpress-graph-info-section {
    padding: 80px 0 80px 0;
  }
  .graph-info-head h2 {
    font-size: 30px;
  }
  .graph-info-head p {
    font-size: 17px;
    margin-bottom: 30px;
  }
  .graph-info-performance-scalability {
    gap: 20px;
  }
  .graph-info-performance-scalability .faster-performance {
    padding: 20px 20px 20px 20px;
    width: 65%;
  }
  .graph-info-performance-scalability .scalability {
    padding: 20px 20px 20px 20px;
    width: 35%;
  }
  .scalability img {
    padding-right: 0px;
    width: 100%;
  }
  .graph-info-flexibility-security {
    gap: 20px;
    margin-top: 20px;
  }
  .graph-info-flexibility-security .graph-info-flexibility {
    width: 35%;
    padding: 20px 20px 20px 20px;
  }
  .graph-info-flexibility img {
    padding: 0;
  }
  .graph-info-flexibility-security .graph-info-security {
    width: 65%;
    padding: 20px 20px 20px 20px;
  }
  .graph-info-security img {
    padding: 0;
  }
  .graph-info-security h4,
  .graph-info-flexibility h4,
  .scalability .scalability-content h4,
  .faster-performance h4 {
    font-size: 18px;
  }
  .collaborative-approach-section {
    padding: 20px 0 80px 0;
    margin-bottom: 80px;
  }
  .collaborative-approach-head .collaborative-approach-label {
    margin-bottom: 20px;
  }
  .collaborative-approach-head h2 {
    font-size: 30px;
  }
  .collaborative-approach-head p {
    margin-bottom: 30px;
    font-size: 17px;
  }
  .collab-approach-items-wrapper {
    margin: 0 0 30px 0;
  }
  .collaborative-approach-grids {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .collab-approach-items-main .collab-approach-items .collab-approach-links {
    padding: 5px 16px;
  }
  .full-potential-section-wrapper .full-potential-section-head-item-wrapper {
    padding: 30px 40px;
  }
  .full-potential-section-head h2 {
    font-size: 30px;
    max-width: 100%;
  }
  .full-potential-section-head p {
    font-size: 17px;
    margin-bottom: 25px;
    max-width: 100%;
  }
  .full-potential-items-wrapper {
    gap: 20px;
  }
  .full-potential-items-wrapper .full-potential-tab-items-content {
    gap: 20px;
  }
  .full-potential-tab-items-content img {
    width: 38%;
  }
  .full-potential-tab-items-content .full-potential-tab-content {
    width: 62%;
  }
  .full-potential-tab-content h4 {
    font-size: 18px;
  }
  .full-potential-tab-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .full-potential-section-wrapper {
    margin-bottom: 80px;
  }
  .perfect-engagement-head h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .perfect-engagement-details {
    gap: 20px;
    margin-bottom: 40px;
  }
  .perfect-engagement-item .perfect-engagement-item-content {
    padding: 20px 20px 0px 20px;
  }
  .perfect-engagement-item .perfect-engagement-item-content h4 {
    font-size: 22px;
  }
  .perfect-engagement-item .perfect-engagement-item-content p {
    margin-bottom: 20px;
  }
  .perfect-engagement-item .perfect-engagement-item-content .perfect-engagement-item-sap {
    margin-bottom: 20px;
  }
  .perfect-engagement-item .perfect-engagement-item-content a {
    margin-bottom: 0px;
  }
  .perfect-engagement-item .perfect-engagement-item-thumb .perfect-engagement-color-overlay span {
    font-size: 30px;
  }
  .perfect-hiring-head h2 {
    font-size: 30px;
  }
  .perfect-hiring-head p {
    font-size: 17px;
    margin-bottom: 20px;
  }
  .perfect-hiring-head ul {
    margin: 0 0 30px 0;
  }
  .perfect-hiring-head ul li a {
    padding: 5px 16px;
  }
  .perfect-hiring-head .book-call {
    padding: 8px 30px;
  }
  .perfect-hiring-head .book-call svg {
    width: 16px;
    height: 16px;
  }
  .solution-success-stories-section {
    padding: 80px 0 80px 0;
  }
  .solution-success-stories-head .solution-stories-label {
    margin-bottom: 20px;
  }
  .solution-success-stories-head h2 {
    font-size: 30px;
  }
  .solution-success-stories-head p {
    font-size: 17px;
    margin-bottom: 25px;
  }
  .solution-stories-filter-lists {
    margin: 0 0 30px 0;
    gap: 8px;
  }
  .solution-stories-filter-lists li .solution-stories-filter-wrapper .filter-button {
    padding: 5px 14px 5px 14px;
    gap: 6px;
  }
  .solution-stories-filter-content-wrap {
    gap: 20px;
  }
  .solution-stories-filter-content-wrap .filter-content-grid {
    width: 65%;
  }
  .solution-stories-filter-content-wrap .filter-content-grid.grid-half {
    width: 35%;
  }
  .solution-stories-filter-content-wrap .filter-content-grid.grid-full {
    width: 65%;
  }
  .solution-stories-filter-content-wrap .filter-content-grid.grid-__half {
    width: 35%;
  }
  .filter-content-grid .filter-content-details .content-details h4 {
    font-size: 16px;
  }
  .filter-content-grid .filter-content-details {
    padding: 10px;
  }
  .filter-content-grid .filter-content-details .content-details p {
    font-size: 13px;
  }
  .filter-content-grid .filter-content-grid-thumb img {
    height: 280px;
  }
  .solution-stories-filter-content-main {
    gap: 20px;
  }
  .solution-stories-filter-content-main .solution-filter-load-more {
    margin-top: 10px;
  }
  .solution-stories-filter-content-main .solution-filter-load-more a {
    padding: 8px 30px;
  }
  .collaborative-approach-steps .step .icon span {
    font-size: 16px;
  }
  .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 svg {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .collaborative-approach-steps .step .icon span {
    font-size: 14px;
  }
  .collaborative-approach-steps .step .icon {
    width: 24px;
    height: 24px;
  }
  .collaborative-approach-steps .step .icon svg {
    width: 14px;
    height: 14px;
  }
  .headless-wordpress-banner-content-wrap-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 12px;
    gap: 30px;
  }
  .headless-wordpress-banner-content-wrap {
    width: 100%;
    align-items: flex-start;
  }
  .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap {
    width: 100%;
  }
  .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img3 {
    bottom: -30%;
    right: 15%;
    width: 40%;
  }
  .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 {
    top: 30%;
    left: 4%;
    width: 40%;
  }
  .headless-wordpress-banner-content-wrap .headless-wordpress-single-stack {
    padding: 14px;
    width: 60%;
  }
  .headless-wordpress-banner-content-wrap h1 {
    font-size: 30px;
    line-height: 118%;
  }
  .headless-wordpress-single-stack .single-stack-icon-item {
    font-size: 16px;
  }
  .headless-wordpress-single-stack .single-stack-icon-item svg {
    width: 20px;
    height: 20px;
  }
  .headless-wordpress-single-stack .single-stack-heading {
    margin-bottom: 20px;
    font-size: 13px;
  }
  .headless-wordpress-single-stack .single-stack-button {
    font-size: 13px;
    line-height: 22px;
    padding: 4px 14px;
  }
  .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img1 {
    width: 40%;
  }
  .beyond-wordpress-section {
    margin: 50px 0 80px 0;
  }
  .beyond-wordpress-head h2 {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 125%;
  }
  .beyond-wordpress-section-lists {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    overflow: auto;
    padding-bottom: 15px;
  }
  .beyond-wordpress-section-lists::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  .beyond-wordpress-section-lists::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .beyond-wordpress-section-lists::-webkit-scrollbar-thumb {
    background: #130F35;
  }
  .beyond-wordpress-section-lists .beyond-wordpress-list {
    padding: 15px 15px 15px 15px;
    width: 250px;
  }
  .beyond-wordpress-list .beyond-wordpress-list-icon-item {
    font-size: 16px;
  }
  .beyond-wordpress-list .beyond-wordpress-list-icon-item svg {
    width: 24px;
    height: 24px;
  }
  .beyond-wordpress-list .beyond-wordpress-list-heading {
    font-size: 13px;
    line-height: 140%;
  }
  .diverse-business-model-section {
    margin-bottom: 50px;
  }
  .business-model-section-head h2 {
    font-size: 22px;
    line-height: 120%;
  }
  .business-model-section-head p {
    margin-bottom: 20px;
    line-height: 130%;
    font-size: 15px;
  }
  .diverse-business-model-section .business-model-section-list-content .slick-track {
    gap: 12px;
  }
  .business-model-section-list .model-section-list-content {
    padding: 10px 10px 20px 10px;
  }
  .business-model-section-list .model-section-list-content .model-section-list-title {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .business-model-section-list .model-section-list-content .model-section-list-desc {
    font-size: 13px;
    line-height: 140%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .business-model-section-list-content .business-model-section-list {
    max-width: 200px;
  }
  .headless-wordpress-graph-info-section {
    padding: 50px 0 50px 0;
  }
  .graph-info-head h2 {
    font-size: 22px;
  }
  .graph-info-head p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 130%;
  }
  .graph-info-performance-scalability {
    gap: 12px;
    flex-direction: column;
  }
  .graph-info-performance-scalability .faster-performance,
  .graph-info-performance-scalability .scalability {
    padding: 15px 15px 15px 15px;
    width: 100%;
  }
  .graph-info-flexibility-security {
    gap: 12px;
    margin-top: 12px;
    flex-direction: column;
  }
  .graph-info-flexibility-security .graph-info-flexibility,
  .graph-info-flexibility-security .graph-info-security {
    width: 100%;
    padding: 15px 15px 15px 15px;
  }
  .collaborative-approach-head h2 {
    font-size: 22px;
    line-height: 120%;
    text-align: center;
  }
  .collaborative-approach-head p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 130%;
  }
  .collab-approach-items-main .collab-approach-items .collab-approach-links {
    padding: 5px 14px;
    font-size: 13px;
    line-height: 23px;
  }
  .collaborative-approach-grids {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    overflow: auto;
    padding-bottom: 15px;
  }
  .collaborative-approach-grids::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  .collaborative-approach-grids::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .collaborative-approach-grids::-webkit-scrollbar-thumb {
    background: #130F35;
  }
  .collaborative-approach-grids .collab-approach-grid {
    padding: 15px;
    justify-content: space-between;
    width: 250px;
  }
  .collab-approach-grid svg {
    width: 30px;
    height: 30px;
  }
  .collab-approach-grid span {
    font-size: 12px;
  }
  .collab-approach-grid h4 {
    font-size: 14px;
  }
  .collab-approach-grid p {
    font-size: 12px;
  }
  .collaborative-approach-section {
    padding: 20px 0 50px 0;
    margin-bottom: 50px;
  }
  .full-potential-section-wrapper {
    margin-bottom: 50px;
  }
  .full-potential-tabs-main .full-potential-items .full-potential-links {
    padding: 5px 14px;
    font-size: 13px;
    line-height: 23px;
  }
  .full-potential-section-head h2 {
    font-size: 22px;
    line-height: 150%;
  }
  .full-potential-section-head p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 140%;
  }
  .full-potential-section-wrapper .full-potential-section-head-item-wrapper {
    padding: 15px 15px;
  }
  .full-potential-section-tabs .full-potential-tabs-main {
    width: 100%;
  }
  .full-potential-tab-content h4 {
    font-size: 16px;
  }
  .full-potential-tab-content p {
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 140%;
  }
  .full-potential-tab-content ul li {
    font-size: 12px;
    line-height: 200%;
  }
  .full-potential-items-wrapper .full-potential-tab-items-content {
    gap: 10px;
  }
  .full-potential-tab-items-content .full-potential-tab-content {
    width: 60%;
  }
  .full-potential-tab-items-content img {
    width: 40%;
  }
  .perfect-engagement-head h2 {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 130%;
  }
  .perfect-engagement-details {
    gap: 12px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .perfect-engagement-item .perfect-engagement-item-thumb {
    justify-content: space-between;
  }
  .perfect-engagement-item .perfect-engagement-item-thumb img {
    position: unset;
  }
  .perfect-engagement-item .perfect-engagement-item-content h4 {
    font-size: 18px;
  }
  .perfect-engagement-item .perfect-engagement-item-content p {
    font-size: 13px;
    line-height: 140%;
  }
  .perfect-engagement-item .perfect-engagement-item-content a {
    font-size: 13px;
    line-height: 22px;
  }
  .perfect-engagement-item .perfect-engagement-item-thumb .perfect-engagement-color-overlay {
    gap: 15px;
  }
  .perfect-engagement-item .perfect-engagement-item-thumb .perfect-engagement-color-overlay span {
    font-size: 22px;
  }
  .perfect-hiring-head h2 {
    font-size: 22px;
    line-height: 130%;
  }
  .perfect-hiring-head p {
    font-size: 15px;
    line-height: 130%;
  }
  .perfect-hiring-head ul {
    margin: 0 0 20px 0;
  }
  .perfect-hiring-head ul li a {
    padding: 5px 14px;
    font-size: 13px;
    line-height: 22px;
  }
  .perfect-hiring-head .book-call {
    padding: 6px 25px;
    font-size: 13px;
  }
  .perfect-hiring-head .book-call svg {
    width: 15px;
    height: 15px;
  }
  .perfect-hiring-head span {
    font-size: 13px;
    line-height: 23px;
  }
  .perfect-engagement-hiring-section {
    margin-bottom: 50px;
  }
  .solution-success-stories-section {
    padding: 50px 0 50px 0;
  }
  .solution-success-stories-head h2 {
    font-size: 22px;
    line-height: 120%;
    text-align: center;
  }
  .solution-success-stories-head p {
    font-size: 15px;
    line-height: 130%;
    margin-bottom: 20px;
    text-align: center;
  }
  .solution-stories-filter-lists {
    margin: 0 0 20px 0;
  }
  .solution-stories-filter-lists li .solution-stories-filter-wrapper .filter-button {
    padding: 4px 14px 4px 14px;
    font-size: 13px;
  }
  .solution-stories-filter-lists li .solution-stories-filter-wrapper .dropdown-menu .dropdown-item {
    font-size: 13px;
    line-height: 22px;
  }
  .solution-stories-filter-content-wrap {
    gap: 15px;
    flex-direction: column;
  }
  .solution-stories-filter-content-wrap .filter-content-grid {
    width: 100%;
  }
  .solution-stories-filter-content-wrap .filter-content-grid.grid-half {
    width: 100%;
  }
  .solution-stories-filter-content-wrap .filter-content-grid.grid-full {
    width: 100%;
  }
  .solution-stories-filter-content-wrap .filter-content-grid.grid-__half {
    width: 100%;
  }
  .filter-content-grid .filter-content-grid-thumb img {
    height: 400px;
  }
  .solution-stories-filter-content-main .solution-filter-load-more a {
    padding: 8px 25px;
    font-size: 13px;
    line-height: 22px;
  }
  .solution-stories-filter-content-main {
    gap: 15px;
  }
  .collab-approach-items-wrapper {
    margin: 0 0 20px 0;
  }
  .graph-info-security p {
    font-size: 12px;
    line-height: 140%;
  }
  .graph-info-security h4,
  .graph-info-flexibility h4,
  .scalability .scalability-content h4,
  .faster-performance h4 {
    font-size: 16px;
  }
}

@media (max-width: 752px) {
  .full-potential-section-tabs {
    overflow: auto;
    scrollbar-width: none;
  }
  .full-potential-section-tabs .full-potential-tabs-main {
    min-width: 800px;
  }
}

@media (max-width: 612px) {
  .perfect-hiring-head ul {
    justify-content: center;
  }
}

@media (max-width: 523px) {
  .collab-approach-items-wrapper .collab-approach-items-main {
    flex-wrap: wrap;
  }
}

@media (max-width: 500px) {
  .filter-content-grid .filter-content-details .content-icon {
    width: 25px;
    height: 25px;
  }
  .filter-content-grid .filter-content-details .content-icon svg {
    width: 17px;
    height: 17px;
  }
  .headless-wordpress-banner-content-wrap .headless-wordpress-single-stack {
    width: 100%;
  }
  .perfect-engagement-item .perfect-engagement-item-thumb .perfect-engagement-color-overlay span {
    font-size: 18px;
  }
  .full-potential-items-wrapper .full-potential-tab-items-content {
    flex-direction: column;
    gap: 20px;
  }
  .full-potential-tab-items-content img {
    width: 100%;
  }
  .full-potential-tab-items-content .full-potential-tab-content {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .headless-wordpress-banner-content-wrap-inner .headless-wordpress-banner-image-wrap .img2 {
    top: 5%;
    left: 13%;
  }
}
/* responsive new */