@charset "UTF-8";
/*!
 * kps2025 — landing-xelp.css
 *
 * Styles for the live-only campaign landing pages that were built on top of
 * the Showcase ("xelp") design system:
 *   13161  /knowledge-management-diagnostics/
 *   13465  /webinar-stop-answering-same-questions/
 *   13575  /ai-cant-fix-a-broken-knowledge-base/
 *   (13629 was a header-less variant of 13161, since deleted)
 *
 * Their CSS lived in "Simple Custom CSS and JS" plugin snippets that stopped
 * loading when the plugin was removed during security hardening (Aug 2026).
 * The snippet files were recovered verbatim from the orphaned copies in
 * wp-content/uploads/custom-css-js/ on live and are imported below in the
 * exact order the plugin printed them (newest first — it queries snippets by
 * date DESC — so OLDER snippets win ties, and 13632's page-scoped rules
 * override 13177's generic ones by specificity).
 *
 * Load order matters and is handled in functions.php (kps2025_scripts):
 *   style.css  ->  xelp/css/style.css + responsive.css  ->  landing-xelp.css
 * xelp supplies the PlusJakartaSans-* @font-face rules, `a{text-decoration:none}`,
 * section padding and base type sizes these pages rely on.
 *
 * Build (from the theme dir):
 *   sass sass/landing-xelp.scss:landing-xelp.css --style=expanded --source-map
 */
/* Recovered verbatim from Simple Custom CSS and JS snippet 13683.css (see landing-xelp.scss). */
/* Header & Footer hide */
.page-id-13629 footer#colophon, .page-id-13629 header#masthead {
  display: none;
}

.page-id-13629 .top-banner-sec-cus .row {
  padding: 80px 30px 70px 30px !important;
}

@media (max-width: 767px) {
  .page-id-13629 .top-banner-sec-cus .row {
    padding: 50px 30px 30px 30px !important;
  }
}
.mb-40 {
  margin-bottom: 40px;
}

/* Problem & Consequence section Style Start */
.problem-consequence-sec {
  background: #F2F6FF;
  padding: 0 20px;
}

.problem-consequence-sec h2, .diagnostic-review-sec h2 {
  font-family: "PlusJakartaSans-ExtraBold", sans-serif;
  font-weight: 800;
  font-size: clamp(2.125rem, 1.8472rem + 1.3889vw, 3.0625rem);
  line-height: 1.2;
  max-width: 1000px;
  margin: auto;
}

.problem-consequence-sec .cards-section {
  margin-top: 35px;
}

.problem-consequence-sec .cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.problem-consequence-sec .info-card {
  background: #fff;
  border: 2px solid #68E0F1;
  border-radius: 16px;
  padding: 28px 24px;
  transition: 0.3s ease;
  box-sizing: border-box;
}

.problem-consequence-sec .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.problem-consequence-sec .info-card h3 {
  margin: 0 0 15px;
  color: #061027;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.problem-consequence-sec .info-card p {
  margin: 0;
  color: #52555F;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .problem-consequence-sec .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .problem-consequence-sec .cards-grid {
    grid-template-columns: 1fr;
  }
}
/* ========== end ========== */
/* 15-minute KM Diagnostic Review section Style Start */
.diagnostic-review-sec .row {
  max-width: 100% !important;
}

.max-width850 {
  max-width: 850px;
  margin: auto;
}

.diagnostic-review-sec {
  padding: 0px 20px;
  background: #fff;
}

.diagnostic-review-sec .process-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 95%;
  margin: auto;
  margin-top: 40px;
}

.diagnostic-review-sec .process-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.diagnostic-review-sec .process-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 360px;
  padding: 28px;
  background: #fff;
  border: 1px solid #E5EBF4;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.diagnostic-review-sec .icon {
  width: 75px;
  height: 75px;
  margin-bottom: 25px;
}

.diagnostic-review-sec h3 {
  font-size: 20px;
  line-height: 1.2;
  color: #061027;
  font-weight: 700;
  margin: 0 0 10px;
}

.diagnostic-review-sec .process-grid p {
  font-size: 16px;
  line-height: 1.7;
  color: #52555F;
  margin: 0;
  text-align: left;
}

.diagnostic-review-sec .arrow {
  width: 34px;
  margin: 0 8px;
  flex-shrink: 0;
}

.diagnostic-review-sec .last-item .arrow {
  display: none;
}

.diagnostic-review-sec .process-card:hover {
  transform: translateY(-6px);
  transition: 0.3s;
}

@media (max-width: 1100px) {
  .diagnostic-review-sec .process-grid {
    flex-wrap: wrap;
    gap: 20px;
  }
  .diagnostic-review-sec .process-wrapper {
    flex: 0 0 calc(50% - 30px);
  }
  .diagnostic-review-sec .arrow {
    display: none;
  }
}
@media (max-width: 767px) {
  .diagnostic-review-sec .process-grid {
    display: block;
  }
  .diagnostic-review-sec .process-wrapper {
    display: block;
    margin-bottom: 25px;
  }
  .diagnostic-review-sec .process-card {
    min-height: auto;
  }
}
/* ========== end ========== */
/* Recovered verbatim from Simple Custom CSS and JS snippet 13632.css (see landing-xelp.scss). */
.instantly-traffic .hide-for-instantly {
  display: none !important;
}

/* .auto-container {
    position: static;
    max-width: 1460px;
    padding: 0 30px;
    margin: 0 auto;
} */
.page-id-13161 .col-product {
  width: 100%;
}

.page-id-13161 .auto-container {
  max-width: 1430px;
}

.calendry-sec-cus {
  display: none;
}

/*-----------------Footer-------------------*/
.page-id-13161 footer#colophon {
  margin-top: 0px;
}

/*--End---*/
/*-----------------Header-------------------*/
.page-id-13161 footer#colophon, .page-id-13161 header#masthead {
  display: none;
}

.page-id-13161 section.ctas {
  display: none;
}

.page-id-13161 header#masthead {
  background: transparent;
  box-shadow: none;
  top: 16px;
  padding-left: 20px;
  padding-right: 20px;
}

.page-id-13161 header#masthead .twelve.columns {
  background: rgba(255, 255, 255, 0.6509803922);
  backdrop-filter: blur(50px);
  border-radius: 100px;
  padding: 8px 16px;
}

.page-id-13161 header#masthead .row {
  max-width: 1430px;
}

.page-id-13161 .site-header .site-branding img {
  height: 60px;
  width: 150px;
}

.page-id-13161 .main-navigation a {
  font-size: 16px;
  color: #52555F;
}

.page-id-13161 ul.extra li:nth-child(1) a {
  font-family: "PlusJakartaSans-Medium";
  font-size: 16px;
  height: 44px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  position: relative !important;
  background: #68e0f1;
  color: #1d1c6e;
  width: 154px;
  border: 0px;
}

.page-id-13161 ul.extra li:nth-child(2) a:after, .page-id-13161 ul.extra li:nth-child(1) a:after {
  content: "";
  position: absolute;
  height: 34px;
  width: 34px;
  top: 5px;
  right: 6px;
  background-image: url("https://www.kpsol.com/wp-content/uploads/2025/12/Arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
}

.page-id-13161 ul.extra li:nth-child(2) a {
  background: #1d1c6e;
  color: #fff;
  font-family: "PlusJakartaSans-Medium";
  font-size: 16px;
  height: 44px;
  width: 219px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 8px 16px 9px;
  position: relative;
}

.page-id-13161 ul.extra li:nth-child(2) a:after {
  background-image: url("https://www.kpsol.com/wp-content/uploads/2025/12/Arrow-1.svg");
}

.page-id-13161 .row {
  max-width: 1460px;
  width: 100%;
  margin: 0 auto;
}

.top-banner-sec-cus h1 {
  font-family: "PlusJakartaSans-ExtraBold", sans-serif;
  font-weight: 800;
  font-size: clamp(2.125rem, 1.8472rem + 1.3889vw, 3.0625rem);
  line-height: 1.2;
  letter-spacing: 0px;
  color: #061027;
  padding-bottom: 24px;
}

.page-id-13161 ul.extra li:nth-child(2) a:hover::after, .page-id-13161 ul.extra li:nth-child(1) a:hover::after {
  right: 10px;
}

/*------ End -------*/
/*--------------- Hero Sec ---------------------*/
.page-id-13161 .top-banner-sec-cus .row {
  padding: 80px 30px 70px 30px !important;
}

@media (max-width: 767px) {
  .page-id-13161 .top-banner-sec-cus .row {
    padding: 50px 30px 30px 30px !important;
  }
  .page-id-13161 .from-approch-sec-cus .row {
    padding-top: 0 !important;
  }
}
.mb-40 {
  margin-bottom: 40px;
}

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

.top-banner-sec-cus {
  background-image: url("https://www.kpsol.com/wp-content/uploads/2026/04/mesh-bg-1-1.png") !important;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
}

.page-id-13161 .top-banner-sec-cus ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  margin-bottom: 16px;
  padding: 12px 20px 12px 50px;
  border-radius: 40px;
  max-width: 500px;
  box-shadow: rgba(0, 0, 0, 0) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  color: #1d1c6e;
  line-height: 115%;
  font-size: 16px;
  font-family: "PlusJakartaSans-Regular";
}

.page-id-13161 a.btn-design-cus {
  background: linear-gradient(97.26deg, #1d1c6e 0%, #68e0f1 100%);
  color: #fff;
  font-family: "PlusJakartaSans-Medium" !important;
  font-size: 20px;
  min-height: 57px;
  width: fit-content;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 8px 80px 8px 20px;
  position: relative;
  box-shadow: 0px 3px 17px 0px rgba(104, 224, 241, 0.631372549);
}

.page-id-13161 a.btn-design-cus:hover {
  background: linear-gradient(177.26deg, #1d1c6e 0%, #68e0f1 100%);
}

.page-id-13161 a.btn-design-cus::after {
  content: "";
  position: absolute;
  height: 46px;
  width: 46px;
  top: 6px;
  right: 10px;
  background-image: url("https://www.kpsol.com/wp-content/uploads/2026/04/Button-Icon.svg");
  transition: 0.3s;
  background-repeat: no-repeat;
}

.page-id-13161 a.btn-design-cus:hover::after {
  right: 14px;
}

.list-check-icon-cus {
  list-style: none;
  padding-left: 0;
  padding-bottom: 10px;
  margin-left: 0px;
}

.list-check-icon-cus li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 10px;
}

.list-check-icon-cus li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: auto;
  width: 30px;
  height: 30px;
  background-image: url("https://www.kpsol.com/wp-content/uploads/2026/04/lsicon_check-outline.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.top-banner-sec-cus .six.columns {
  padding: 0px !important;
}

.page-id-13161 .top-banner-sec-cus .row {
  align-items: center;
  display: grid;
  grid-template-columns: 58% 40%;
  justify-content: space-between;
  width: 100%;
  max-width: 1010px;
}

.page-id-13161 .top-banner-sec-cus .six.columns {
  width: 100%;
}

/*------ End -------*/
/*--------------- Problem/Rreality Sec ---------------------*/
.problem-reality-sec-cus .col-product p {
  padding-bottom: 0;
  margin-bottom: 0px;
}

.problem-reality-sec-cus .col-product {
  width: 100%;
}

.problem-reality-sec-cus .product-sec h2 {
  padding: 0px;
}

.problem-reality-sec-cus {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/04/bg-blur-1.png);
  background-size: 95%;
  background-position: center 90%;
  background-repeat: no-repeat;
}

.problem-reality-sec-cus .twelve.columns {
  background: transparent !important;
  backdrop-filter: none !important;
  border-radius: none !important;
  padding: 0px !important;
}

.cus-pill {
  background: rgba(255, 255, 255, 0.631372549);
  padding: 12px;
  border-radius: 100px;
  text-align: center;
  color: #061027;
  align-items: center !important;
  display: grid;
  border: 1px solid #fff;
}

.cus-eq {
  width: 50px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.631372549);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 1px solid #fff;
}

.problem-reality-sec-cus .sub-title {
  text-transform: uppercase;
  color: #061027 !important;
}

.problem-reality-sec-cus .product-sec {
  padding: 0px;
}

/*------ End -------*/
/*--------------- The Cost Sec ---------------------*/
.the-cost-sec-cus {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/04/Section-4-1-1.png) !important;
  background-size: cover !important;
  background-position: center left !important;
  background-repeat: no-repeat;
  position: relative;
  padding: 200px 0px;
}

.the-cost-sec-cus:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #f3f7ff;
  border-radius: 100px 100px 0px 0px;
}

.the-cost-sec-cus:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #f0f3fd;
  border-radius: 0px 0px 100px 100px;
  background: #fff;
}

.the-cost-sec-cus .product-sec h2 {
  color: #fff;
}

.the-cost-sec-cus .col-product p {
  color: #fff;
}

/* Wrapper for all cards */
.cost-card-cus__wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0;
  gap: 20px;
  justify-content: flex-start;
  width: 100%;
  max-width: 800px;
}

/* Individual Card Styling */
.cost-card-cus__card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  flex: 1 1 calc(25% - 20px); /* 4 items per row */
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect for each card */
.cost-card-cus__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Title inside the card */
.cost-card-cus__title {
  font-size: 30px;
  font-weight: 700;
  color: #061027;
  text-align: start;
}

.cost-card-cus__title span {
  font-size: 16px;
  font-weight: normal;
}

.cost-card-cus__desc {
  font-size: 18px;
  color: #061027;
  text-align: start;
}

.the-cost-sec-cus a.btn-design-cus {
  box-shadow: 0px 3px 17px 0px rgba(104, 224, 241, 0.1);
  background: #1d1c6e;
  padding: 7px 80px 9px 20px;
}

.the-cost-sec-cus a.btn-design-cus:hover {
  background: rgba(29, 28, 110, 0.8509803922);
}

/*------ End -------*/
/*-------------- 4 Pillars Sec ----------------*/
/* Section Styling */
.pillers-sec-cus {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/04/Section-5-1-1.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 0px 0px 60px 0px;
}

/* Wrapper for Cards with Grid */
.pliillers-card-box-cus {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns on large screens */
  gap: 20px;
  justify-items: center; /* Align items to center */
  padding-top: 50px;
  padding-bottom: 25px;
  border-radius: 12px;
}

.pliillers-card {
  position: relative;
  z-index: 0;
}

.pliillers-card:after {
  width: 100%;
  height: 5px;
  bottom: 0px;
  left: 0;
  position: absolute;
  box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.25) !important;
  border-radius: 10px;
  content: "";
  bottom: -13px;
  filter: blur(12px);
  border-radius: 50%;
  z-index: -1;
}

/* Individual Card Styling */
.pliillers-card {
  padding: 30px;
  max-width: 100%;
  width: 100%;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #fff;
}

/* Description Text */
.pillers-card__desc {
  text-align: start;
  font-size: 18px;
}

.pliillers-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Card Icon Image Styling */
.pliillers-card__icon img {
  width: auto;
  height: auto;
}

/* Card Title Styling */
.pliillers-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
  text-align: start;
  color: #061027;
}

/* Card Description Styling */
.pliillers-card__desc {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

p.pliillers-card__desc {
  font-size: 18px;
  text-align: start;
}

/*------ End -------*/
/*------What We Typical Sec-------*/
.what-we-typical-sec-cus {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/04/Section-7-2.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 100px 0px;
}

.what-we-typical-sec-cus .list-check-icon-cus {
  list-style-type: none;
  padding: 0;
  width: 100%;
  max-width: 1000px;
  padding-top: 40px;
  padding-bottom: 10px;
}

.what-we-typical-sec-cus .list-check-icon-cus li {
  display: flex;
  align-items: flex-start; /* Align icon and text at the top */
  background-color: #fff;
  padding: 16px;
  margin-bottom: 20px;
  border-radius: 100px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  align-items: center;
}

.what-we-typical-sec-cus .icon {
  font-size: 20px;
  color: #2b6cb0;
  margin-right: 10px;
}

.what-we-typical-sec-cus .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #333;
}

.what-we-typical-sec-cus .arrow {
  color: #1D1C6E;
  font-weight: bold;
  margin-left: 10px;
  margin-right: 10px;
}

.what-we-typical-sec-cus .desc {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

/*------ End -------*/
/*------ What You’ll Take Away Sec -------*/
.what-you-take-away-sec-cus .row.row-fluid {
  padding-left: 0px;
  padding-right: 0px;
  /*     padding: 60px 0px 100px 0px; */
  padding: 60px 0px 60px 0px;
}

.what-you-take-away-sec-cus ul.list-check-icon-cus {
  display: grid;
  grid-template-columns: 49% 49%;
  justify-content: space-between;
}

.what-you-take-away-sec-cus .list-check-icon-cus {
  width: 100%;
  max-width: 1050px;
  padding-top: 30px;
}

.what-you-take-away-sec-cus {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/04/Section-9-1.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-bottom: 80px;
}

/*------ End -------*/
/*------ Your Knowledge Management Diagnostic Sec -------*/
.your-knowledge-sec-cus ul.list-check-icon-cus {
  display: grid;
  grid-template-columns: 100%;
  justify-content: space-between;
}

.your-knowledge-sec-cus {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/04/Section-9-1.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.your-knowledge-sec-cus .row {
  max-width: 1000px;
  padding: 50px 30px 50px 30px;
}

/*------ End -------*/
.calendry-sec-cus {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/04/Section-9-1.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.calendry-sec-cus .row {
  padding: 0px 30px 0px 30px;
}

/*------New CSS------*/
.list-check-icon-cus .pliillers-card {
  display: grid;
  align-items: center !important;
  grid-template-columns: 6% 90%;
  justify-content: space-between;
}

.list-check-icon-cus p.pliillers-card__desc {
  margin-top: 0px;
}

.top-banner-sec-cus.sec-grid-cus .row {
  grid-template-columns: 48% 48%;
  justify-content: space-between;
  max-width: 1430px;
}

.sec-grid-cus img.gif-cus {
  width: 100%;
}

.sec-grid-cus .pliillers-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sec-grid-cus .list-check-icon-cus {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 30px;
}

.sec-grid-cus .col-product h4, .take-our-knowledge-sec-cus .col-product h4 {
  font-size: 20px;
  color: #061027;
  padding: 20px 0px;
  font-family: "PlusJakartaSans-ExtraBold";
}

.from-approch-sec-cus .product-sec h2 {
  margin: auto;
  text-align: center;
  max-width: 1000px;
}

.from-approch-sec-cus .product-sec .col-product p {
  text-align: center;
  max-width: 1000px;
  margin: auto;
  justify-content: center !important;
  display: flex;
}

.from-approch-sec-cus .cus-box {
  display: grid;
  grid-template-columns: 47.5% 2% 47.5%;
  gap: 0px;
  background: #fff;
  border-radius: 20px;
  padding: 30px 30px 0px 30px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  max-width: 1430px;
  margin-top: 30px;
  margin-bottom: 30px;
  justify-content: space-between;
}

.from-approch-sec-cus .old-column,
.from-approch-sec-cus .new-column,
.from-approch-sec-cus .arrow-column {
  display: flex;
  flex-direction: column;
}

.from-approch-sec-cus .old-column,
.from-approch-sec-cus .new-column {
  gap: 15px;
}

.from-approch-sec-cus .arrow-column {
  gap: 15px;
}

.from-approch-sec-cus .arrow-space {
  height: 75px;
}

.from-approch-sec-cus .cus-head {
  min-height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #061027;
}

.from-approch-sec-cus .cus-head img {
  width: 120px;
}

.from-approch-sec-cus .cus-pill,
.from-approch-sec-cus .cus-text {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 15px 18px;
  font-size: 16px;
  line-height: 1.4;
  border-radius: 8px;
  text-align: start;
  color: #061027;
}

.from-approch-sec-cus .old {
  background: rgba(207, 62, 75, 0.1411764706);
}

.from-approch-sec-cus .new {
  background: rgba(104, 224, 241, 0.2);
}

.from-approch-sec-cus .cus-arrow {
  min-height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.from-approch-sec-cus .cus-arrow img {
  width: 22px;
}

.top-banner-sec-cus.take-our-knowledge-sec-cus {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/07/Section-12-1-1.png) !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 86% 14%;
}

.top-banner-sec-cus.take-our-knowledge-sec-cus.credibility-alignment-sec-cus {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/07/Section-11.png) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.top-banner-sec-cus.take-our-knowledge-sec-cus .row {
  max-width: 1430px;
  grid-template-columns: 49% 49%;
  padding: 70px 30px;
}

.take-our-knowledge-sec-cus .product-sec {
  padding: 0px;
}

.take-our-knowledge-sec-cus .col-product p {
  margin-bottom: 0px;
  padding-bottom: 10px;
}

.take-our-knowledge-sec-cus a.down-arrow-cus::after {
  top: 16px;
  background-image: url("https://www.kpsol.com/wp-content/uploads/2026/07/Button-Icon-1.svg");
}

.take-our-knowledge-sec-cus ul li {
  color: #52555F !important;
}

.take-our-knowledge-sec-cus em {
  font-size: 16px;
}

.take-our-knowledge-sec-cus span.sub-title, .diagnostic-review-sec span.sub-title, .problem-consequence-sec span.sub-title {
  text-transform: uppercase;
  color: #061027 !important;
}

.take-our-knowledge-sec-cus p {
  margin-bottom: 0px;
}

.top-banner-sec-cus.solve-your-knowledge-form-sec-cus .row {
  padding: 70px 30px;
  max-width: 1430px;
  width: 100%;
  grid-template-columns: 48% 40%;
}

.top-banner-sec-cus.solve-your-knowledge-form-sec-cus {
  background-image: none !important;
}

.solve-your-knowledge-form-sec-cus .six.columns:last-child {
  box-shadow: 0px 16px 48px 0px rgba(0, 0, 0, 0.0705882353);
  border-radius: 30px;
}

.solve-your-knowledge-form-sec-cus .bottom-icon-cus p {
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.top-banner-sec-cus .bottom-icon-cus {
  position: relative;
  max-width: 600px;
  width: 100%;
}

.top-banner-sec-cus .bottom-icon-cus::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 50px;
  background: url("https://www.kpsol.com/wp-content/uploads/2026/07/Elements.svg") no-repeat center;
  background-size: contain;
  right: -120px;
  bottom: -70px;
  pointer-events: none;
  z-index: 1;
}

.problem-consequence-sec .col-product p, .diagnostic-review-sec .col-product p {
  margin-bottom: 0px;
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.page-id-13161 section.accordion {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/07/Section-13.png) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0px;
}

.page-id-13161 section.accordion .row {
  width: 100%;
  max-width: 1000px;
  padding: 70px 30px;
}

.page-id-13161 section.accordion .row .six {
  width: 100%;
}

.page-id-13161 section.accordion .row h2 {
  font-family: "PlusJakartaSans-ExtraBold", sans-serif;
  font-weight: 800;
  font-size: clamp(2.125rem, 1.8472rem + 1.3889vw, 3.0625rem);
  line-height: 120%;
  letter-spacing: 0px;
  color: #061027;
  padding-top: 24px;
  max-width: 900px;
  text-align: center;
  margin-bottom: 30px;
}

.page-id-13161 section.accordion .row .faq {
  border: 1px solid #F2F6FF !important;
  background: #fff !important;
  margin-bottom: 5px !important;
}

.page-id-13161 section.accordion .row .faq .question {
  font-size: 20px !important;
  color: #52555f !important;
  font-weight: 500 !important;
  padding: 20px;
  border-radius: 20px 20px 0 0 !important;
}

.page-id-13161 section.accordion .row .faq .content p {
  margin: 0px;
  font-size: 16px !important;
  color: #52555f !important;
}

.page-id-13161 section.accordion .row .faq .content li {
  color: #52555f !important;
  list-style: disc;
}

.page-id-13161 section.accordion .row .faq .content {
  padding-top: 20px !important;
  background: #F2F6FF;
  border-radius: 0 0 20px 20px;
}

.page-id-13161 section.accordion .row .faq.active .question {
  color: #061027 !important;
}

/* Question */
/* Existing icon hide */
.page-id-13161 section.accordion .row .faqs .faq .question::before {
  background-image: url("https://www.kpsol.com/wp-content/uploads/2026/07/icon.svg") !important;
  border: none !important;
}

/* Existing arrow replace */
.page-id-13161 section.accordion .row .faqs .faq .question::after {
  background-image: url("https://www.kpsol.com/wp-content/uploads/2026/07/angle-down.svg") !important;
  border: none !important;
}

/* Active state */
.page-id-13161 section.accordion .row .faqs .faq.active .question::after {
  transform: translateY(-50%) rotate(270deg);
}

.diagnostic-review-sec p {
  text-align: center;
  max-width: 1000px;
  margin: auto;
  justify-content: center !important;
  display: flex;
  margin-top: 16px;
  margin-bottom: 30px;
}

a.roi-btn {
  align-items: center !important;
  padding: 30px 30px;
}

.roi-box-cus {
  max-width: 1000px;
  margin: auto;
  padding: 50px;
  border-radius: 20px;
  background: linear-gradient(97.26deg, #68E0F1 0%, #1D1C6E 100%);
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 35% 60%;
  border: 2px solid #68E0F1;
  margin-top: 100px;
}

.roi-left {
  align-items: center !important;
  display: flex;
}

.roi-left h3 {
  color: #fff;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0;
}

.roi-right {
  flex: 1;
}

.roi-right p {
  color: #fff;
  font-size: 25px;
  line-height: 1.2;
  margin: 0 0 25px;
  margin-bottom: 0px;
  text-align: start;
}

.roi-btn-wrap {
  display: flex;
  align-items: center !important;
  gap: 15px;
  /* grid-template-columns: 30% 70%; */
  margin-top: 30px;
}

.roi-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #091B4D;
  padding: 40px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 400;
  line-height: 0px;
  font-size: 22px;
}

/*-------- New CSS End -------*/
/*--------------- Responsive part ---------------------*/
/* @media (max-width: 1366px) {
    .page-id-13161 .row {
        max-width: 1200px;
    }
.page-id-13161 header#masthead .twelve.columns {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}
} */
@media (max-width: 1150px) {
  body.page-id-13161 header#masthead {
    background: #fff !important;
  }
  .page-id-13161 ul.extra {
    display: none !important;
  }
  .page-id-13161 .twelve.columns {
    padding: 0px !important;
  }
}
@media (max-width: 980px) {
  .cost-card-cus__card {
    flex: 1 1 calc(50% - 20px) !important; /* 2 items per row */
  }
  .cost-card-cus__wrapper {
    width: 100%;
    max-width: 100%;
  }
  .pliillers-card-box-cus {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  }
}
@media (max-width: 600px) {
  .cost-card-cus__card {
    flex: 1 1 100% !important;
  }
  .pliillers-card-box-cus {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }
  .pliillers-card {
    padding: 20px;
  }
  .col-product li {
    gap: 8px;
  }
  .what-we-typical-sec-cus .list-check-icon-cus li {
    padding: 12px;
    font-size: 15px;
  }
  .cus-box {
    gap: 10px 12px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 15px;
  }
  .top-banner-sec-cus ul li {
    font-size: 15px;
  }
  .list-check-icon-cus li::before {
    width: 26px;
    height: 26px;
  }
  .list-check-icon-cus {
    padding-bottom: 0px;
  }
  .cost-card-cus__title {
    font-size: 25px;
  }
  .the-cost-sec-cus a.btn-design-cus {
    font-size: 18px;
  }
  a.btn-design-cus::after {
    height: 40px;
    width: 40px;
    top: auto;
    background-size: cover;
  }
  .pliillers-card__icon img {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 767px) {
  .top-banner-sec-cus .row {
    padding: 140px 30px 50px 30px !important;
    gap: 0px;
  }
  .top-banner-sec-cus h3 {
    font-size: 24px;
  }
  .the-cost-sec-cus {
    padding: 120px 0px;
  }
  .what-you-take-away-sec-cus ul.list-check-icon-cus {
    gap: 10px;
    grid-template-columns: 100%;
  }
  .calendry-sec-cus .row {
    padding: 20px 30px 40px 30px !important;
  }
  .what-you-take-away-sec-cus .row.row-fluid {
    padding: 0px 0px 20px 0px !important;
  }
  .list-check-icon-cus li {
    margin-bottom: 0px;
  }
  .problem-reality-sec-cus .col-product p {
    font-size: 18px;
  }
  .auto-container p {
    margin-bottom: 15px;
  }
  .problem-reality-sec-cus {
    background-image: url(https://www.kpsol.com/wp-content/uploads/2026/04/bg-blur-1.png);
    background-size: cover;
    background-position: center top;
    /* background-repeat: no-repeat; */
  }
  .the-cost-sec-cus:after {
    height: 60px !important;
    border-radius: 0px 0px 60px 60px;
    background: #fff;
  }
  .the-cost-sec-cus:before {
    height: 60px !important;
    background-color: #fff;
    border-radius: 60px 60px 0px 0px;
  }
  .what-we-typical-sec-cus {
    padding: 50px 0px 60px 0px;
  }
  .pillers-sec-cus {
    padding: 0px 0px 50px 0px;
  }
  .cost-card-cus__card {
    padding: 20px;
  }
  .top-banner-sec-cus .row {
    grid-template-columns: 100%;
  }
  .page-id-13161 #masthead.site-header {
    overflow: hidden;
  }
  .problem-reality-sec-cus .product-sec .cus-box {
    align-items: center;
  }
  .the-cost-sec-cus:after {
    background: #f8f9fe;
  }
  .what-you-take-away-sec-cus {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .your-knowledge-sec-cus {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .calendly-inline-widget {
    padding: 30px;
  }
  .page-id-13161 .auto-container {
    max-width: 1430px;
    padding: 0px;
  }
  .from-approch-sec-cus .cus-box {
    grid-template-columns: 1fr;
  }
  .from-approch-sec-cus .arrow-column {
    display: none;
  }
  .from-approch-sec-cus .old-column {
    margin-bottom: 35px;
  }
  .top-banner-sec-cus.take-our-knowledge-sec-cus .row {
    padding: 50px 30px !important;
    grid-template-columns: 100%;
  }
  .top-banner-sec-cus.solve-your-knowledge-form-sec-cus .row {
    grid-template-columns: 100%;
  }
  .top-banner-sec-cus .bottom-icon-cus::after {
    width: 150px;
    height: 50px;
    right: 0;
    bottom: -70px;
    left: 0;
    transform: rotate(180deg);
  }
  .top-banner-sec-cus.sec-grid-cus .row {
    grid-template-columns: 100%;
  }
  .roi-box-cus {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .roi-left,
  .roi-right {
    flex: 100%;
  }
  .roi-btn-wrap {
    justify-content: flex-start;
  }
  .roi-left h3 {
    font-size: 30px;
    text-align: start;
  }
  .roi-right p {
    font-size: 18px;
    justify-content: flex-start !important;
  }
  a.roi-btn {
    align-items: center !important;
    padding: 30px 30px;
    font-size: 16px;
  }
  .roi-btn-wrap {
    display: grid;
    align-items: center !important;
    margin-top: 30px;
    gap: 12px !important;
  }
  .roi-box-cus {
    grid-template-columns: 100%;
    margin-top: 50px;
  }
  .page-id-13161 .product-sec {
    padding: 50px 20px;
  }
  .page-id-13161 .row {
    padding: 50px 20px;
  }
}
@media (max-width: 927px) {
  .top-banner-sec-cus.take-our-knowledge-sec-cus .row {
    grid-template-columns: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
}
/*-------- New CSS End -------*/
/* Mob css end */
.calendly-inline-widget iframe {
  border-radius: 15px;
}

/* Problem & Consequence section Style Start */
.problem-consequence-sec {
  background: #F2F6FF;
  padding: 0 20px;
}

.problem-consequence-sec h2, .diagnostic-review-sec h2 {
  font-family: "PlusJakartaSans-ExtraBold", sans-serif;
  font-weight: 800;
  font-size: clamp(2.125rem, 1.8472rem + 1.3889vw, 3.0625rem);
  line-height: 1.2;
  max-width: 1000px;
  margin: auto;
}

.problem-consequence-sec .cards-section {
  margin-top: 35px;
}

.problem-consequence-sec .cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.problem-consequence-sec .info-card {
  background: #fff;
  border: 2px solid #68E0F1;
  border-radius: 16px;
  padding: 28px 24px;
  transition: 0.3s ease;
  box-sizing: border-box;
}

.problem-consequence-sec .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.problem-consequence-sec .info-card h3 {
  margin: 0 0 15px;
  color: #061027;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.problem-consequence-sec .info-card p {
  margin: 0;
  color: #52555F;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .problem-consequence-sec .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .problem-consequence-sec .cards-grid {
    grid-template-columns: 1fr;
  }
}
/* ========== end ========== */
/* 15-minute KM Diagnostic Review section Style Start */
.diagnostic-review-sec .row {
  max-width: 100% !important;
}

.max-width850 {
  max-width: 850px;
  margin: auto;
}

.diagnostic-review-sec {
  padding: 0px 20px;
  background: #fff;
}

.diagnostic-review-sec .process-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 95%;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}

.diagnostic-review-sec .process-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.diagnostic-review-sec .process-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 360px;
  padding: 28px;
  background: #fff;
  border: 1px solid #E5EBF4;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.diagnostic-review-sec .icon {
  width: 75px;
  height: 75px;
  margin-bottom: 25px;
}

.diagnostic-review-sec .process-grid h3 {
  font-size: 20px;
  line-height: 1.2;
  color: #061027;
  font-weight: 700;
  margin: 0 0 10px;
}

.diagnostic-review-sec .process-grid p {
  font-size: 16px;
  line-height: 1.7;
  color: #52555F;
  margin: 0;
  text-align: left;
}

.diagnostic-review-sec .arrow {
  width: 34px;
  margin: 0 8px;
  flex-shrink: 0;
}

.diagnostic-review-sec .last-item .arrow {
  display: none;
}

.diagnostic-review-sec .process-card:hover {
  transform: translateY(-6px);
  transition: 0.3s;
}

@media (max-width: 1100px) {
  .diagnostic-review-sec .process-grid {
    flex-wrap: wrap;
    gap: 20px;
  }
  .diagnostic-review-sec .process-wrapper {
    flex: 0 0 calc(50% - 30px);
  }
  .diagnostic-review-sec .arrow {
    display: none;
  }
}
@media (max-width: 767px) {
  .diagnostic-review-sec .process-grid {
    display: block;
  }
  .diagnostic-review-sec .process-wrapper {
    display: block;
    margin-bottom: 25px;
  }
  .diagnostic-review-sec .process-card {
    min-height: auto;
  }
}
/* ========== end ========== */
@media (max-width: 767px) {
  .page-id-13161 .product-sec {
    padding: 0px 0px 30px !important;
  }
  .page-id-13161 section.accordion .row {
    padding: 40px 30px 50px;
  }
  .diagnostic-review-sec .process-grid {
    max-width: 100%;
    margin-top: 0px;
  }
  .problem-consequence-sec .cards-section {
    margin-top: 0px;
  }
  .problem-consequence-sec .cards-section .cards-grid > p {
    margin: 0 !important;
  }
  section#book-diagnostic-review {
    padding-bottom: 70px !important;
  }
  .page-id-13161 section.accordion .row h2 {
    margin-bottom: 0px;
  }
  .page-id-13161 a.btn-design-cus.down-arrow-cus::after {
    height: 25px;
    width: 25px;
  }
  .page-id-13161 a.btn-design-cus::after {
    top: auto !important;
  }
}
/* Recovered verbatim from Simple Custom CSS and JS snippet 13468.css (see landing-xelp.scss). */
.our-agenda-sec-cus.the-real-cost-sec-cus section.product-sec .agenda-grid-cus {
  margin-bottom: 10px;
}

.page-id-13575 footer#colophon {
  display: none;
}

.page-id-13575 .site-header nav#site-navigation, .page-id-13575 .site-header ul.extra {
  display: none;
}

.page-id-13575 section.product-sec {
  padding-bottom: 0 !important;
}

.page-id-13575 header#masthead {
  position: absolute;
  background: transparent !important;
  box-shadow: none;
  top: 10px;
}

.page-id-13575 .stop-answering-sec-cus .row {
  padding-top: 121px !important;
}

.page-id-13575 section.ctas {
  display: none;
}

.page-id-13465 .col-product, .page-id-13575 .col-product {
  width: 100%;
}

.page-id-13465 .auto-container {
  max-width: 1000px;
}

.page-id-13465 ul.extra li:nth-child(1) a {
  font-family: "PlusJakartaSans-Medium";
  font-size: 16px;
  height: 44px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  position: relative !important;
  background: #68e0f1;
  color: #1d1c6e;
  width: 154px;
  border: 0px;
}

.page-id-13465 ul.extra li:nth-child(2) a:after, .page-id-13465 ul.extra li:nth-child(1) a:after {
  content: "";
  position: absolute;
  height: 34px;
  width: 34px;
  top: 5px;
  right: 6px;
  background-image: url("https://www.kpsol.com/wp-content/uploads/2025/12/Arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
}

.page-id-13465 ul.extra li:nth-child(2) a {
  background: #1d1c6e;
  color: #fff;
  font-family: "PlusJakartaSans-Medium";
  font-size: 16px;
  height: 44px;
  width: 219px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 8px 16px 9px;
  position: relative;
}

.page-id-13465 ul.extra li:nth-child(2) a:after {
  background-image: url("https://www.kpsol.com/wp-content/uploads/2025/12/Arrow-1.svg");
}

.page-id-13465 ul.extra li:nth-child(2) a:hover::after, .page-id-13465 ul.extra li:nth-child(1) a:hover::after {
  right: 10px;
}

/*-----------------Footer-------------------*/
.page-id-13465 .row, .page-id-13575 .row {
  max-width: 1460px;
  width: 100%;
  margin: 0 auto;
}

.page-id-13465 footer#colophon, .page-id-13575 footer#colophon {
  margin-top: 0px;
}

/*--End---*/
/*-----------------Header-------------------*/
.page-id-13465 section.ctas {
  display: none;
}

.page-id-13465 header#masthead {
  background: transparent;
  box-shadow: none;
  top: 16px;
  padding-left: 20px;
  padding-right: 20px;
}

.page-id-13465 header#masthead .twelve.columns {
  background: rgba(255, 255, 255, 0.6509803922);
  backdrop-filter: blur(50px);
  border-radius: 100px;
  padding: 8px 16px;
}

.page-id-13465 header#masthead .row {
  max-width: 1430px;
}

.page-id-13465 .site-header .site-branding img {
  height: 60px;
  width: 150px;
}

.page-id-13465 .main-navigation a {
  font-size: 16px;
  color: #52555F;
}

.page-id-13465 .stop-answering-sec-cus .row, .page-id-13575 .stop-answering-sec-cus .row {
  align-items: start !important;
  grid-template-columns: 55% 42% !important;
  justify-content: space-between;
  max-width: 1430px;
  padding-top: 100px;
}

.page-id-13465 .stop-answering-sec-cus, .page-id-13575 .stop-answering-sec-cus {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/05/reg-page-banner-2-1-1.png) !important;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
}

.our-agenda-sec-cus {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/05/reg-page-banner-2-1-Copy.png) !important;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
}

.our-agenda-sec-cus .row {
  padding: 0px 30px 0px 30px;
  max-width: 1430px;
  margin: auto;
}

.our-agenda-sec-cus .agenda-card-cus {
  background: rgba(245, 248, 255, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.our-agenda-sec-cus .product-sec h2 {
  text-align: center;
  max-width: 100%;
  padding-top: 0px;
  margin-bottom: 10px;
}

.our-agenda-sec-cus .col-product p {
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: auto;
}

.our-agenda-sec-cus.agenda-card-cus:after {
  bottom: -4px;
  filter: blur(10px);
}

.agenda-card-cus:after {
  width: 100%;
  height: 5px;
  bottom: 0px;
  left: 0;
  position: absolute;
  box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.25) !important;
  border-radius: 10px;
  content: "";
  bottom: -13px;
  filter: blur(12px);
  border-radius: 50%;
  z-index: -1;
}

.our-agenda-sec-cus .col-product h3 {
  text-align: center;
  padding-bottom: 40px;
  font-size: 25px;
}

.webinar-meta-cus span {
  font-family: "PlusJakartaSans-Regular", sans-serif !important;
}

.webinar-registration-form-cus #gform_wrapper_7 .gform_footer:hover::after {
  right: 10px;
}

.webinar-meta-cus span b {
  font-family: "PlusJakartaSans-ExtraBold", sans-serif;
  font-weight: normal;
}

.our-agenda-sec-cus .product-sec {
  padding: 80px 0px 50px 0px;
}

.stop-answering-sec-cus span.sub-title {
  color: #061027 !important;
}

.stop-answering-sec-cus .pliillers-card-box-cus {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-items: center;
  padding-top: 0px;
  padding-bottom: 0px;
}

.stop-answering-sec-cus h1 {
  padding-bottom: 0px !important;
  font-size: 38px !important;
}

.stop-answering-sec-cus .pliillers-card {
  padding: 0px !important;
  border-radius: 0px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 0px !important;
}

.stop-answering-sec-cus .pliillers-card:hover {
  transform: translateY(0px);
  box-shadow: none;
}

.stop-answering-sec-cus .col-product p {
  padding-bottom: 0px !important;
  margin-bottom: 0px;
}

.stop-answering-sec-cus .pliillers-card::after {
  display: none;
}

.stop-answering-sec-cus .second-col-cus {
  background: #fff;
  padding: 30px;
  border-radius: 40px;
  box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.25);
}

.stop-answering-sec-cus .col-product h3 {
  font-size: 25px;
  padding-top: 30px;
}

.webinar-registration-form-cus {
  text-align: center;
}

.webinar-registration-form-cus h2 {
  font-size: 31px;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: "PlusJakartaSans-ExtraBold", sans-serif;
  margin-bottom: 0px;
  color: #061027;
}

.webinar-meta-cus {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.host-info-cus p {
  margin-bottom: 0px;
}

.host-info-cus h3 {
  font-size: 42px;
  margin-bottom: 20px;
}

.host-info-cus h5 {
  font-size: 20px;
  font-weight: 700;
  font-family: "PlusJakartaSans-ExtraBold", sans-serif;
  color: #061027;
  padding-bottom: 0px;
}

.host-info-cus img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  display: inline-block;
}

.host-info-cus h3, .our-agenda-sec-cus h3 {
  font-size: 25px;
  font-weight: 700;
  font-family: "PlusJakartaSans-ExtraBold", sans-serif;
  color: #061027;
}

.host-designation-cus {
  margin-bottom: 20px;
}

p.host-designation-cus {
  font-size: 13px;
  color: #061027;
  font-weight: 500;
  margin-top: 5px;
  margin-bottom: 15px;
}

.host-desc-cus {
  max-width: 450px;
  margin: auto;
}

.second-col-cus p {
  color: #52555f;
}

.webinar-meta-cus span {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  font-family: "PlusJakartaSans-ExtraBold", sans-serif;
  color: #061027;
}

.webinar-meta-cus span:first-child::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("https://www.kpsol.com/wp-content/uploads/2026/05/Frame.png") no-repeat center;
  background-size: contain;
  display: block;
}

.webinar-meta-cus span:last-child::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("https://www.kpsol.com/wp-content/uploads/2026/05/Frame-1.png") no-repeat center;
  background-size: contain;
  display: block;
}

.webinar-top-content-cus {
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  box-shadow: 0 25px 30px -20px rgba(0, 0, 0, 0.12);
  padding: 0px 10px 20px;
}

.webinar-registration-form-cus .gform_wrapper.gravity-theme .gfield {
  text-align: start;
}

.webinar-registration-form-cus input#gform_submit_button_7 {
  box-shadow: 0px 3px 17px 0px rgba(104, 224, 241, 0.1);
  background: #1d1c6e;
  padding: 7px 80px 9px 20px;
  color: #fff;
  font-family: "PlusJakartaSans-Medium" !important;
  font-size: 20px;
  min-height: 57px;
  width: fit-content;
  border-radius: 100px;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.webinar-registration-form-cus .gform-footer.gform_footer.top_label {
  justify-content: center;
}

.webinar-registration-form-cus h5 {
  color: #061027;
  font-weight: 600;
  font-family: "PlusJakartaSans-Medium" !important;
}

.webinar-registration-form-cus #gform_wrapper_7 .gform_footer {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.webinar-registration-form-cus #gform_submit_button_7 {
  padding-right: 60px;
}

.webinar-registration-form-cus #gform_wrapper_7 .gform_footer::after {
  content: "";
  position: absolute;
  top: 46%;
  right: 5px;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: url("https://www.kpsol.com/wp-content/uploads/2026/05/Arrow.png") no-repeat center;
  background-size: contain;
  pointer-events: none;
  transition: right 0.3s ease;
}

.our-agenda-sec-cus h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.agenda-grid-cus {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.agenda-card-cus {
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 30px 24px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 0;
}

.agenda-card-cus:hover {
  transform: translateY(-5px);
}

.agenda-card-cus h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  padding-bottom: 0px;
}

.agenda-card-cus p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: #52555f;
}

.the-real-cost-sec-cus {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/05/blur-1.png) !important;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
}

.page-id-13465 .the-cost-sec-cus, .page-id-13465 a.btn-design-cus, .page-id-13575 .the-cost-sec-cus, .page-id-13575 a.btn-design-cus {
  margin: auto !important;
  margin-top: 20px !important;
}

@media (max-width: 767px) {
  .page-id-13465 .stop-answering-sec-cus .row,
  .page-id-13575 .stop-answering-sec-cus .row {
    grid-template-columns: 100% !important;
  }
  .agenda-grid-cus {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .stop-answering-sec-cus .pliillers-card-box-cus {
    padding-bottom: 40px;
  }
  .stop-answering-sec-cus .pliillers-card-box-cus {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
@media (max-width: 980px) {
  .agenda-grid-cus {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1150px) {
  body.page-id-13465 header#masthead {
    background: #fff !important;
  }
  .page-id-13465 .twelve.columns {
    padding: 0px !important;
  }
  .page-id-13465 ul.extra {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .stop-answering-sec-cus .pliillers-card__icon img {
    width: 60px;
    height: 60px;
  }
}
.our-agenda-sec-cus {
  Padding-bottom: 80px;
}

/* Recovered verbatim from Simple Custom CSS and JS snippet 13177.css (see landing-xelp.scss). */
/* .auto-container {
    position: static;
    max-width: 1460px;
    padding: 0 30px;
    margin: 0 auto;
} */
.page-id-13161 .col-product {
  width: 100%;
}

.page-id-13161 .auto-container {
  max-width: 1000px;
}

.calendry-sec-cus {
  display: none;
}

/*-----------------Footer-------------------*/
.page-id-13161 footer#colophon {
  margin-top: 0px;
}

/*--End---*/
/*-----------------Header-------------------*/
.page-id-13161 section.ctas {
  display: none;
}

.page-id-13161 header#masthead {
  background: transparent;
  box-shadow: none;
  top: 16px;
  padding-left: 20px;
  padding-right: 20px;
}

.page-id-13161 header#masthead .twelve.columns {
  background: rgba(255, 255, 255, 0.6509803922);
  backdrop-filter: blur(50px);
  border-radius: 100px;
  padding: 8px 16px;
}

.page-id-13161 header#masthead .row {
  max-width: 1430px;
}

.page-id-13161 .site-header .site-branding img {
  height: 60px;
  width: 150px;
}

.page-id-13161 .main-navigation a {
  font-size: 16px;
  color: #52555F;
}

.page-id-13161 ul.extra li:nth-child(1) a {
  font-family: "PlusJakartaSans-Medium";
  font-size: 16px;
  height: 44px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  position: relative !important;
  background: #68e0f1;
  color: #1d1c6e;
  width: 154px;
  border: 0px;
}

.page-id-13161 ul.extra li:nth-child(2) a:after, .page-id-13161 ul.extra li:nth-child(1) a:after {
  content: "";
  position: absolute;
  height: 34px;
  width: 34px;
  top: 5px;
  right: 6px;
  background-image: url("https://www.kpsol.com/wp-content/uploads/2025/12/Arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
}

.page-id-13161 ul.extra li:nth-child(2) a {
  background: #1d1c6e;
  color: #fff;
  font-family: "PlusJakartaSans-Medium";
  font-size: 16px;
  height: 44px;
  width: 219px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 8px 16px 9px;
  position: relative;
}

.page-id-13161 ul.extra li:nth-child(2) a:after {
  background-image: url("https://www.kpsol.com/wp-content/uploads/2025/12/Arrow-1.svg");
}

.page-id-13161 .row {
  max-width: 1460px;
  width: 100%;
  margin: 0 auto;
}

.top-banner-sec-cus h1 {
  font-family: "PlusJakartaSans-ExtraBold", sans-serif;
  font-weight: 800;
  font-size: clamp(2.125rem, 1.8472rem + 1.3889vw, 3.0625rem);
  line-height: 1.2;
  letter-spacing: 0px;
  color: #061027;
  padding-bottom: 24px;
}

.page-id-13161 ul.extra li:nth-child(2) a:hover::after, .page-id-13161 ul.extra li:nth-child(1) a:hover::after {
  right: 10px;
}

/*------ End -------*/
/*--------------- Hero Sec ---------------------*/
.top-banner-sec-cus {
  background-image: url("https://www.kpsol.com/wp-content/uploads/2026/04/mesh-bg-1-1.png") !important;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
}

.top-banner-sec-cus ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  margin-bottom: 16px;
  padding: 12px 20px 12px 50px;
  border-radius: 40px;
  max-width: 500px;
  box-shadow: rgba(0, 0, 0, 0) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  color: #1d1c6e;
  line-height: 115%;
  font-size: 16px;
  font-family: "PlusJakartaSans-Regular";
}

a.btn-design-cus {
  background: linear-gradient(97.26deg, #1d1c6e 0%, #68e0f1 100%);
  color: #fff;
  font-family: "PlusJakartaSans-Medium" !important;
  font-size: 20px;
  min-height: 57px;
  width: fit-content;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 8px 80px 8px 20px;
  position: relative;
  box-shadow: 0px 3px 17px 0px rgba(104, 224, 241, 0.631372549);
}

a.btn-design-cus:hover {
  background: linear-gradient(177.26deg, #1d1c6e 0%, #68e0f1 100%);
}

a.btn-design-cus::after {
  content: "";
  position: absolute;
  height: 46px;
  width: 46px;
  top: 6px;
  right: 10px;
  background-image: url("https://www.kpsol.com/wp-content/uploads/2026/04/Button-Icon.svg");
  transition: 0.3s;
  background-repeat: no-repeat;
}

a.btn-design-cus:hover::after {
  right: 14px;
}

.list-check-icon-cus {
  list-style: none;
  padding-left: 0;
  padding-bottom: 10px;
  margin-left: 0px;
}

.list-check-icon-cus li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 10px;
}

.list-check-icon-cus li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: auto;
  width: 30px;
  height: 30px;
  background-image: url("https://www.kpsol.com/wp-content/uploads/2026/04/lsicon_check-outline.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.top-banner-sec-cus .six.columns {
  padding: 0px !important;
}

/* .top-banner-sec-cus .row {
    padding: 100px 30px 70px 30px;
	align-items: center;
} */
/*  .top-banner-sec-cus .row {
    padding: 100px 30px 70px 30px;
    align-items: center;
    display: grid;
    grid-template-columns: 50% 45%;
    justify-content: space-between;
} */
.top-banner-sec-cus .row {
  padding: 180px 30px 70px 30px;
  align-items: center;
  display: grid;
  grid-template-columns: 58% 40%;
  justify-content: space-between;
  width: 100%;
  max-width: 1010px;
}

.top-banner-sec-cus .six.columns {
  width: 100%;
}

/*------ End -------*/
/*--------------- Problem/Rreality Sec ---------------------*/
.problem-reality-sec-cus .col-product p {
  padding-bottom: 0;
  margin-bottom: 0px;
}

.problem-reality-sec-cus .col-product {
  width: 100%;
}

.problem-reality-sec-cus .product-sec h2 {
  padding: 0px;
}

.problem-reality-sec-cus {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/04/bg-blur-1.png);
  background-size: 95%;
  background-position: center 90%;
  background-repeat: no-repeat;
}

.problem-reality-sec-cus .twelve.columns {
  background: transparent !important;
  backdrop-filter: none !important;
  border-radius: none !important;
  padding: 0px !important;
}

.cus-box {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 15px 20px;
  width: 100%;
  max-width: 800px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.cus-pill {
  background: rgba(255, 255, 255, 0.631372549);
  padding: 12px;
  border-radius: 100px;
  text-align: center;
  color: #061027;
  align-items: center !important;
  display: grid;
  border: 1px solid #fff;
}

.cus-eq {
  width: 50px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.631372549);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 1px solid #fff;
}

.problem-reality-sec-cus .sub-title {
  text-transform: uppercase;
  color: #061027 !important;
}

.problem-reality-sec-cus .product-sec {
  padding: 0px;
}

/*------ End -------*/
/*--------------- The Cost Sec ---------------------*/
.the-cost-sec-cus {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/04/Section-4-1-1.png) !important;
  background-size: cover !important;
  background-position: center left !important;
  background-repeat: no-repeat;
  position: relative;
  padding: 200px 0px;
}

.the-cost-sec-cus:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #f3f7ff;
  border-radius: 100px 100px 0px 0px;
}

.the-cost-sec-cus:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #f0f3fd;
  border-radius: 0px 0px 100px 100px;
  background: #fff;
}

.the-cost-sec-cus .product-sec h2 {
  color: #fff;
}

.the-cost-sec-cus .col-product p {
  color: #fff;
}

/* Wrapper for all cards */
.cost-card-cus__wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0;
  gap: 20px;
  justify-content: flex-start;
  width: 100%;
  max-width: 800px;
}

/* Individual Card Styling */
.cost-card-cus__card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  flex: 1 1 calc(25% - 20px); /* 4 items per row */
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect for each card */
.cost-card-cus__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Title inside the card */
.cost-card-cus__title {
  font-size: 30px;
  font-weight: 700;
  color: #061027;
  text-align: start;
}

.cost-card-cus__title span {
  font-size: 16px;
  font-weight: normal;
}

.cost-card-cus__desc {
  font-size: 18px;
  color: #061027;
  text-align: start;
}

.the-cost-sec-cus a.btn-design-cus {
  box-shadow: 0px 3px 17px 0px rgba(104, 224, 241, 0.1);
  background: #1d1c6e;
  padding: 7px 80px 9px 20px;
}

.the-cost-sec-cus a.btn-design-cus:hover {
  background: rgba(29, 28, 110, 0.8509803922);
}

/*------ End -------*/
/*-------------- 4 Pillars Sec ----------------*/
/* Section Styling */
.pillers-sec-cus {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/04/Section-5-1-1.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 0px 0px 60px 0px;
}

/* Wrapper for Cards with Grid */
.pliillers-card-box-cus {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns on large screens */
  gap: 20px;
  justify-items: center; /* Align items to center */
  padding-top: 50px;
  padding-bottom: 25px;
  border-radius: 12px;
}

.pliillers-card {
  position: relative;
  z-index: 0;
}

.pliillers-card:after {
  width: 100%;
  height: 5px;
  bottom: 0px;
  left: 0;
  position: absolute;
  box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.25) !important;
  border-radius: 10px;
  content: "";
  bottom: -13px;
  filter: blur(12px);
  border-radius: 50%;
  z-index: -1;
}

/* Individual Card Styling */
.pliillers-card {
  padding: 30px;
  max-width: 100%;
  width: 100%;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #fff;
}

/* Description Text */
.pillers-card__desc {
  text-align: start;
  font-size: 18px;
}

.pliillers-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Card Icon Image Styling */
.pliillers-card__icon img {
  width: auto;
  height: auto;
}

/* Card Title Styling */
.pliillers-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
  text-align: start;
  color: #061027;
}

/* Card Description Styling */
.pliillers-card__desc {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

p.pliillers-card__desc {
  font-size: 18px;
  text-align: start;
}

/*------ End -------*/
/*------What We Typical Sec-------*/
.what-we-typical-sec-cus {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/04/Section-7-2.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding: 100px 0px;
}

.what-we-typical-sec-cus .list-check-icon-cus {
  list-style-type: none;
  padding: 0;
  width: 100%;
  max-width: 1000px;
  padding-top: 40px;
  padding-bottom: 10px;
}

.what-we-typical-sec-cus .list-check-icon-cus li {
  display: flex;
  align-items: flex-start; /* Align icon and text at the top */
  background-color: #fff;
  padding: 16px;
  margin-bottom: 20px;
  border-radius: 100px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  align-items: center;
}

.what-we-typical-sec-cus .icon {
  font-size: 20px;
  color: #2b6cb0;
  margin-right: 10px;
}

.what-we-typical-sec-cus .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #333;
}

.what-we-typical-sec-cus .arrow {
  color: #1D1C6E;
  font-weight: bold;
  margin-left: 10px;
  margin-right: 10px;
}

.what-we-typical-sec-cus .desc {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

/*------ End -------*/
/*------ What You’ll Take Away Sec -------*/
.what-you-take-away-sec-cus .row.row-fluid {
  padding-left: 0px;
  padding-right: 0px;
  /*     padding: 60px 0px 100px 0px; */
  padding: 60px 0px 60px 0px;
}

.what-you-take-away-sec-cus ul.list-check-icon-cus {
  display: grid;
  grid-template-columns: 49% 49%;
  justify-content: space-between;
}

.what-you-take-away-sec-cus .list-check-icon-cus {
  width: 100%;
  max-width: 1050px;
  padding-top: 30px;
}

.what-you-take-away-sec-cus {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/04/Section-9-1.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-bottom: 80px;
}

/*------ End -------*/
/*------ Your Knowledge Management Diagnostic Sec -------*/
.your-knowledge-sec-cus ul.list-check-icon-cus {
  display: grid;
  grid-template-columns: 100%;
  justify-content: space-between;
}

.your-knowledge-sec-cus {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/04/Section-9-1.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.your-knowledge-sec-cus .row {
  max-width: 1000px;
  padding: 50px 30px 50px 30px;
}

/*------ End -------*/
.calendry-sec-cus {
  background-image: url(https://www.kpsol.com/wp-content/uploads/2026/04/Section-9-1.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.calendry-sec-cus .row {
  padding: 0px 30px 0px 30px;
}

/*--------------- Responsive part ---------------------*/
/* @media (max-width: 1366px) {
    .page-id-13161 .row {
        max-width: 1200px;
    }
.page-id-13161 header#masthead .twelve.columns {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}
} */
@media (max-width: 1150px) {
  body.page-id-13161 header#masthead {
    background: #fff !important;
  }
  .page-id-13161 ul.extra {
    display: none !important;
  }
  .page-id-13161 .twelve.columns {
    padding: 0px !important;
  }
}
@media (max-width: 980px) {
  .cost-card-cus__card {
    flex: 1 1 calc(50% - 20px) !important; /* 2 items per row */
  }
  .cost-card-cus__wrapper {
    width: 100%;
    max-width: 100%;
  }
  .pliillers-card-box-cus {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  }
}
@media (max-width: 600px) {
  .cost-card-cus__card {
    flex: 1 1 100% !important;
  }
  .pliillers-card-box-cus {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }
  .pliillers-card {
    padding: 20px;
  }
  .col-product li {
    gap: 8px;
  }
  .what-we-typical-sec-cus .list-check-icon-cus li {
    padding: 12px;
    font-size: 15px;
  }
  .cus-box {
    gap: 10px 12px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 15px;
  }
  .top-banner-sec-cus ul li {
    font-size: 15px;
  }
  .list-check-icon-cus li::before {
    width: 26px;
    height: 26px;
  }
  .list-check-icon-cus {
    padding-bottom: 0px;
  }
  .cost-card-cus__title {
    font-size: 25px;
  }
  .the-cost-sec-cus a.btn-design-cus {
    font-size: 18px;
  }
  a.btn-design-cus::after {
    height: 40px;
    width: 40px;
    top: auto;
    background-size: cover;
  }
  .pliillers-card__icon img {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 767px) {
  .top-banner-sec-cus .row {
    padding: 140px 30px 50px 30px !important;
    gap: 0px;
  }
  .top-banner-sec-cus h3 {
    font-size: 24px;
  }
  .the-cost-sec-cus {
    padding: 120px 0px;
  }
  .what-you-take-away-sec-cus ul.list-check-icon-cus {
    gap: 10px;
    grid-template-columns: 100%;
  }
  .calendry-sec-cus .row {
    padding: 20px 30px 40px 30px !important;
  }
  .what-you-take-away-sec-cus .row.row-fluid {
    padding: 0px 0px 20px 0px !important;
  }
  .list-check-icon-cus li {
    margin-bottom: 0px;
  }
  .problem-reality-sec-cus .col-product p {
    font-size: 18px;
  }
  .auto-container p {
    margin-bottom: 15px;
  }
  .problem-reality-sec-cus {
    background-image: url(https://www.kpsol.com/wp-content/uploads/2026/04/bg-blur-1.png);
    background-size: cover;
    background-position: center top;
    /* background-repeat: no-repeat; */
  }
  .the-cost-sec-cus:after {
    height: 60px !important;
    border-radius: 0px 0px 60px 60px;
    background: #fff;
  }
  .the-cost-sec-cus:before {
    height: 60px !important;
    background-color: #fff;
    border-radius: 60px 60px 0px 0px;
  }
  .what-we-typical-sec-cus {
    padding: 50px 0px 60px 0px;
  }
  .pillers-sec-cus {
    padding: 0px 0px 50px 0px;
  }
  .cost-card-cus__card {
    padding: 20px;
  }
  .top-banner-sec-cus .row {
    grid-template-columns: 100%;
  }
  .page-id-13161 #masthead.site-header {
    overflow: hidden;
  }
  .problem-reality-sec-cus .product-sec .cus-box {
    align-items: center;
  }
  .the-cost-sec-cus:after {
    background: #f8f9fe;
  }
  .what-you-take-away-sec-cus {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .your-knowledge-sec-cus {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .calendly-inline-widget {
    padding: 30px;
  }
}
/* Mob css end */
.calendly-inline-widget iframe {
  border-radius: 15px;
}

/*# sourceMappingURL=landing-xelp.css.map */
