/* Common Css */
.txt-blue {
  color: #504ee4;
}

main .kt-btn--primary {
  display: inline-block;
  position: relative;
  z-index: 99;
  box-shadow: none !important;
}

body {
  overflow-x: hidden;
  transition: all 0.3s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/* hero-section */
.kl-hero-section {
  padding: 9rem 0 3rem;
  position: relative;
}

.hero-bg {
  position: absolute;
  bottom: -26%;
}

@keyframes slideDown1 {
  from {
    opacity: 0;
    transform: translate3d(0, -24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideDown2 {
  from {
    opacity: 0;
    transform: translate3d(0, -24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideDown3 {
  from {
    opacity: 0;
    transform: translate3d(0, -24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideDown4 {
  from {
    opacity: 0;
    transform: translate3d(0, -24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-line-1 {
  position: absolute;
  bottom: -7%;
  z-index: 3;
  animation: slideDown1 0.75s both;
  transition-timing-function: cubic-bezier(0.42, 0, 0, 1);
  animation-delay: 1s;
}

.hero-line-2 {
  position: absolute;
  bottom: -9%;
  z-index: 3;
  animation: slideDown2 0.775s both;
  transition-timing-function: cubic-bezier(0.42, 0, 0, 1);
  animation-delay: 1.015s;
}

.hero-line-3 {
  position: absolute;
  bottom: -11%;
  z-index: 3;
  animation: slideDown3 0.8s both;
  transition-timing-function: cubic-bezier(0.42, 0, 0, 1);
  animation-delay: 1.02s;
}

.hero-line-4 {
  position: absolute;
  bottom: -13%;
  z-index: 3;
  animation: slideDown4 0.825s both;
  transition-timing-function: cubic-bezier(0.42, 0, 0, 1);
  animation-delay: 1.025s;
}

.hero_logo {
  position: relative;
}

.kl-hero-section button {
  border: none;
  position: relative;
  top: -1px;
}

.kl-button-flex {
  display: flex;
  gap: 1rem;
}

.kl2-hero-img {
  position: relative;
  transform: scale(1.07);
  left: 70px;
  top: 14px;
}

.kl-hero-h1 {
  font-family: var(--paytone);
  font-size: 3.125rem;
  line-height: 3.75rem;
  margin-bottom: 1.5rem;
  color: #05034e;
  width: 100%;
  animation-delay: 0.1s;
}

.kl-hero-h1-1 {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3125rem;
  letter-spacing: 0.02em;
  color: #504ee4;
  display: block;
  margin-bottom: 0.75rem;
  animation-delay: 0.1s;
}

.kl-hero-h2 {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  color: #393c56;
  margin-bottom: 2.5rem;
  width: 96%;
  animation-delay: 0.1s;
}

.kl-hero-section button {
  animation-delay: 0.05s;
}

/*  */

/* hero input style */
.kl-hero-section input {
  border-radius: 0.25rem;
  border: 1px solid #ededed;
  padding: 0.625rem 1.25rem;
  border-radius: 4px;
  min-width: 248px;
  height: 44px;
  margin-right: 4px;
}

.formbelowText {
  color: #5e6175;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.0175rem;
  margin-top: 0.87rem;
  margin-bottom: 0;
}

.formbelowText img {
  position: relative;
  top: -1px;
  margin-right: 4px;
}

.kl-hero-section input:focus {
  outline: #b4a5a5;
}

.kl-hero-section input::placeholder {
  color: #adb5bd;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.015rem;
  text-transform: capitalize;
}

.color-red {
  color: red;
}

.emailErrorMessage {
  margin-bottom: 0px;
  color: #01003f;
  padding-top: 7px;
  font-size: 12px;
}
/*  */

/* Logo Section */
.logo-scrolling {
  padding: 10rem 0 2rem;
}

.powering {
  position: relative;
  font-weight: 500;
  font-size: 1rem;
  line-height: 24px;
  text-transform: capitalize;
  color: #7c7bb0;
  margin-bottom: 24px;
  padding: 0 1rem;
}

/* slider css */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1750px);
  }
}
.slider {
  background: transparent;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.slider::before,
.slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 104px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  animation: scroll 30s linear infinite;
  display: flex;
  width: 1750px;
}
.slider .slide {
  padding: 1rem 40px;
  text-align: center;
  display: flex;
  align-items: center;
}
/*  */

/* sdrx banner */

.sdrxWrapper {
  display: flex;
  justify-content: center;
  margin-top: 5.672rem;
  margin-bottom: 3rem;
}

.sdrx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #050111;
  max-width: 1194px;
  width: 100%;
  border-radius: 12px;
  padding: 0px 4rem;
  padding-left: 0px;
  position: relative;
}

.sdrx::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../assets/images/index/sdrxBanner_bg.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.sdrxLeft {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 4rem;
  z-index: 2;
}

.sdrxTitleWrapper {
  position: absolute;
  top: -20px;
  border: 1.1px solid #514869;
  background: linear-gradient(95deg, #322b46 46%, #241c3c 95.88%);
  border-radius: 100px;
  left: 48px;
}

.sdrxTitle {
  color: #928aa9;
  font-family: "Public Sans";
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5rem;
  letter-spacing: 0.54px;
  text-transform: capitalize;
  margin-bottom: 0px;
  background: linear-gradient(90deg, #7ee1ff 0%, #984cfb 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 8.5px 17.5px;
}

.sdrxHeading {
  color: #fff;
  font-family: "Spline Sans";
  font-size: 2.875rem;
  font-weight: 700;
  letter-spacing: 1.38px;
  margin-bottom: 8px;
}

.sdrxDesc {
  color: #dbd0fa;
  font-family: "Public Sans";
  font-size: 1.25rem;
  line-height: 1.75rem;
  letter-spacing: 0.6px;
  margin-bottom: 2rem;
}

.sdrxButton {
  border-radius: 5.6px;
  border: 0.933px solid rgba(255, 255, 255, 0.32);
  background: linear-gradient(
      309deg,
      rgba(255, 255, 255, 0) 38.23%,
      rgba(255, 255, 255, 0.1) 85.96%
    ),
    linear-gradient(
      309deg,
      rgba(255, 255, 255, 0) 38.23%,
      rgba(255, 255, 255, 0.24) 85.96%
    ),
    linear-gradient(131deg, #21b8e5 -3.54%, #7424dc 104.59%), #d9d9d9;
  padding: 0.775rem 1.5rem;
  color: #fff;
  font-family: "Public Sans";
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.48px;
  text-transform: capitalize;
  cursor: pointer;
}

.sdrxRight {
  width: 50%;
  display: flex;
}

/*  */

/* morepipelines */

.morepipelines {
  /* background: linear-gradient(
    180deg,
    rgba(250, 249, 255, 0) 0%,
    #faf9ff 8.98%,
    rgba(247, 251, 255, 0) 100%
  ); */
  padding: 6rem 0;
}

.morepipelines-head {
  color: #0e0d59;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 4rem;
}

.morepipelines-card {
  border-radius: 0.5rem;
  display: block;
}
.morepipelines-card-1 {
  transition-delay: 0.2s;
}
.morepipelines-card-2 {
  transition-delay: 0.3s;
}
.morepipelines-card-3 {
  transition-delay: 0.4s;
}
.morepipelines-card-4 {
  transition-delay: 0.5s;
}

.cardImg {
  transition: all 0.4s;
}

.morepipelines-card:hover .cardImg {
  transform: scale(1.08);
}

.morepipelines-card-img-holder {
  width: 100%;
  height: 212px;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid #e3e3e3;
  margin-bottom: 1rem;
  background: #f9f8fc;
  display: flex;
  align-items: flex-end;
}

.morepipelines-card:hover {
  text-decoration: none;
}

.morepipelines-card-para {
  color: #3d3c7d !important;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.morepipelines-card-img-subhead {
  border-radius: 0.4675rem;
  background: linear-gradient(
    332deg,
    rgba(214, 189, 255, 0.4) 12.21%,
    rgba(50, 0, 249, 0.4) 85.61%
  );
  padding: 1rem;
}

.morepipelines-card-subhead {
  color: #fff;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.875rem;
}

.morepipelines-card-img-subhead img {
  padding: 0.5rem;
  padding-top: 0;
  padding-bottom: 0.75rem;
}

.morepipelines-card-link {
  color: #504ee4;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.morepipelines-card:hover .morepipelines-card-link img {
  transform: translateX(4px);
}

.morepipelines-card-link img {
  position: relative;
  top: -1px;
  left: 2px;
  transition: all 0.3s;
}

/*  */

/* klenty-capabilities */

.klenty-capabilities {
  text-align: center;
  padding: 5rem 0 0;
  /* background: var(--klenty-capabilities-bg) no-repeat center center / cover; */
  background: linear-gradient(0deg, #e2e2ff 0%, #fff 54.03%);
  position: relative;
}

.klenty-capabilities .kt-btn--primary {
  position: relative;
  z-index: 99;
}

.klenty-capabilities h2 {
  color: #0e0d59;
  text-align: center;
  font-size: 2.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 6.5rem;
}

.klenty-capabilities-subHead {
  color: #504ee4;
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.klenty-capabilities-head {
  color: #0e0d59;
  text-align: center;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.5rem;
}

.klenty-capabilities-para {
  color: #2d2c76;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2rem;
}

.klenty-capabilities img {
  padding: 0 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 5;
}

.parallelAnime {
  position: absolute;
  bottom: -20px;
}

/*  */

/* salesFeature */

.salesFeature {
  padding: 8rem 0;
}

.salesFeature .subHead {
  color: #504ee4;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.salesFeature h2 {
  color: #0e0d59;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.5rem;
}

.salesFeature .desc {
  color: #3d3c7d;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2.75rem;
}

.selectTabCont {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 2.8rem;
}

.selectTabCont .selectTab {
  text-align: center;
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.3s;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.selectTabCont .selectTab p {
  color: #7d78bb;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0;
}

.selectTabCont .selectTab.active {
  background: #f1e9ff;
}

.selectTabCont .selectTab.active .inActiveImg {
  display: none;
}

.selectTabCont .selectTab .inActiveImg {
  display: inline-block;
}

.selectTabCont .selectTab .activeImg {
  display: none;
}

.selectTabCont .selectTab.active .activeImg {
  display: inline-block;
}

.selectTabCont .selectTab.active p {
  color: #4f48a3;
  font-weight: 600;
}

.salesFeature hr {
  border-color: #ecebf8;
  border-width: 1px;
  margin: 1rem 0 4.5rem;
}

.selectTabInfo {
  position: absolute;
  top: 0;
  opacity: 0;
  width: 100%;
  transition: all 0.3s;
}

.selectTabInfo.show {
  z-index: 1;
  opacity: 1;
}

.selectTabInfo h3 {
  color: #0e0d59;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.5rem;
}

.selectTabInfo .headDesc {
  color: #3d3c7d;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.25rem;
}

.kt-btn--tertiary {
  color: #504ee4 !important;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
}

.selectTabInfo.show h3,
.selectTabInfo.show .featureImg {
  animation: slideUp 0.4s;
}

.selectTabInfo.show .headDesc {
  animation: slideUp 0.8s;
}

.selectTabInfo.show .kt-btn--tertiary {
  animation: slideUp 1s;
}

.btn-container {
  margin-bottom: 2.5rem;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.kt-btn--tertiary img {
  position: relative;
  top: -1px;
  left: 2px;
  transition: all 0.3s;
}

.kt-btn--tertiary:hover img {
  transform: translateX(8px);
}

.progressBarCont {
  height: 4px;
  background: #e2e1ff;
  border-radius: 4px;
}

.progressBar {
  background: linear-gradient(
    41deg,
    rgba(236, 236, 255, 1) 0%,
    rgba(137, 135, 255, 1) 100%
  );
  height: 4px;
  border-radius: 16px;
  width: 0%;
}

.selectTabInfo.show .progressBar {
  animation: widthFull 8s linear;
}

@keyframes widthFull {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.selectTabInfoCont {
  position: relative;
  height: 400px;
}

/*  */

/* parellelDialer */
.parellelDialer {
  text-align: center;
}

.parellelDialerCont {
  border-radius: 1.25rem;
  background: var(--parellel-dialer-bg), #e0eaf942;
  padding: 5rem 1rem 0;
  text-align: center;
}

.parellelDialerCont .kt-btn--primary {
  display: inline-block;
}

.parellelDialerCont img {
  margin-top: 3rem;
  padding: 0 6rem;
}

.parellelDialerCont .parellelDialerSubHead {
  color: #504ee4;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.parellelDialerCont h2 {
  color: #0e0d59;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.5rem;
}

.parellelDialerCont .parellelDialerContDesc {
  color: #2d2c76;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2rem;
}

/*  */

/* Multichannel Outreach */
.multi-channel-outreach {
  padding: 4rem 0;
}

.section-head-2 {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.3125rem;
  text-transform: uppercase;
  color: #504ee4;
  text-align: center;
}

.section-head-1 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 3.25rem;
  text-align: center;
  color: #0e0d59;
  margin-bottom: 0.25rem;
}

.section-description {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  color: #0e0d59;
  margin-bottom: 2rem;
}

.height530 {
  height: 530px;
}

.cardContainer {
  cursor: pointer;
}

.cardContainer .cardContainerHead {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  text-transform: capitalize;
  transition: all 0.3s;
  color: #0e0d59;
  margin: 0;
}

.cardContainer svg {
  transform: rotate(-90deg);
  transition: all 0.3s;
}

.cardContainer .cardContainerSubHead {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  text-transform: capitalize;
  color: #0e0d59;
  padding-left: 12px;
  border-left: 2px solid #504ee4;
  margin-bottom: 0.75rem;
}

.cardContainer .cardContainerPara {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.3125rem;
  color: #0e0d59;
  margin-bottom: 1.25rem;
}

.multi-channel-outreach hr {
  margin-top: 0;
  margin-bottom: 16px;
  border-top: 1px solid #d7d7f1 !important;
}

.cardContainer .cardContent {
  transition: all 0.6s;
  overflow: hidden;
  height: 0;
}

.cardContainer .cardContent a {
  color: #504ee4 !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.cardContainer .cardContent a:hover {
  text-decoration: none;
}

.cardContainer .cardContent a img {
  width: 14px;
  position: relative;
  top: -1px;
  left: 2px;
  transition: all 0.3s;
}

.cardContainer .cardContent a:hover img {
  left: 6px;
}

.cardContainer.active .cardContent {
  overflow: auto;
  height: 160px;
}

.cardContainer.active svg path {
  fill: #504ee4;
}

.cardContainer.active .cardContainerHead {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.875rem;
  color: #504ee4;
}

.cardContainer .cardContent::-webkit-scrollbar {
  display: none;
}

.cardContainer.active svg {
  transform: rotate(0deg);
}

/*  */

/* stay-persistent */

.stay-persistent {
  background: linear-gradient(
    211deg,
    #f5f1ff 18.65%,
    rgba(247, 251, 255, 0) 91.12%
  );
  height: 1860px;
  display: none;
}

.stickyContainer {
  position: sticky;
  top: 48px;
  padding: 4rem 1rem 3rem;
}

.stay-persistent .subheading {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.3125rem;
  text-transform: uppercase;
  text-align: center;
  color: #504ee4;
  margin-bottom: 1rem;
}

.stay-persistent h2 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 3rem;
  text-align: center;
  color: #0e0d59;
  margin-bottom: 0.25rem;
}

.stay-persistent .headdesc {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  color: #0e0d59;
  margin-bottom: 4rem;
}

.height424 {
  height: 424px;
}

.scrollingContainer {
  position: absolute;
  top: 0;
  opacity: 0;
  transition: all 0.5s;
  display: flex;
  z-index: 0;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.scrollingContainer.d-none {
  opacity: 0 !important;
}

.scrollingContainer .col-md-11 img {
  position: relative;
  top: -14px;
}

.activeDiv {
  opacity: 1;
  z-index: 1;
  transition-delay: 0.25s;
}

.number {
  color: #4e4e82;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.number.active {
  color: #504ee4;
}

@keyframes popup {
  0% {
    opacity: 0;
    transform: translateY(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(50px);
  }
}

.gradientTextContainer h3 {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 27px;
  text-transform: capitalize;
  color: #0e0d59;
  margin-bottom: 0.25rem;
  margin-top: 1rem;
}

.gradientTextContainer p {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 21px;
  color: #0e0d59;
}

.main-img img {
  position: relative;
  top: -28px;
  margin: auto;
}

.gradientArrowleft {
  background: linear-gradient(
    320deg,
    rgba(247, 247, 255, 0) 28.27%,
    #f0f0ff 97.09%,
    rgba(241, 241, 255, 0) 100.01%
  );
  position: absolute;
  z-index: -2;
  width: 53.5%;
  left: -136px;
  top: -40px;
  height: 730px;
  margin-right: auto;
  transform: rotate(18deg);
  border-radius: 0;
}

#firstLottie1 {
  position: relative;
  top: -364px;
  transform: rotate(180deg);
}
.gradientArrowRight {
  background: linear-gradient(
    44deg,
    rgba(247, 247, 255, 0) 28.27%,
    #f0f0ff 97.09%,
    rgba(241, 241, 255, 0) 100.01%
  );
  position: absolute;
  z-index: -1;
  width: 53.5%;
  right: -174px;
  top: -50px;
  height: 730px;
  margin-left: auto;
  transform: rotate(341deg);
  border-radius: 0;
}

.gradientCircle {
  position: absolute;
  background: radial-gradient(
    50% 50% at 50% 50%,
    #ffffffde 28.44%,
    rgb(255 255 255 / 0%) 100%
  );
  /* filter: blur(25.5px); */
  transform: translate(-42%, 13%);
  left: 50%;
  top: 50%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
}

/*  */

/* pipeline indicator */
.pipeline-indicator {
  background: linear-gradient(
    180deg,
    rgba(247, 251, 255, 0) 0%,
    #f7fbff 7.77%,
    rgba(247, 251, 255, 0) 100%
  );
  padding: 5rem 0;
  position: relative;
}

.pipeline-indicator-container {
  margin-bottom: 5rem;
}

.pipeline-indicator-container img {
  margin-top: 2rem;
}

.pipeline-indicator .subheading {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.3125rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #007ce7;
  margin-bottom: 1rem;
}

.pipeline-indicator h2 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 3.5rem;
  color: #0d144a;
  margin-bottom: 0.25rem;
  margin-bottom: 0.25rem;
}

.pipeline-indicator-container p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #0e0d59;
  margin-bottom: 2rem;
}

.pipeline-indicator a {
  display: inline-block;
}

#indicators .col-6:not(:last-child) .pipeline-card {
  border-right: 1px solid #e0ecf8;
  padding-right: 1rem;
}

.pipeline-card img {
  margin-bottom: 1.25rem;
}

.pipeline-card h3 {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  text-transform: capitalize;
  color: #0e0d59;
}

.pipeline-card p {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.3125rem;
  color: #0e0d59;
  margin: 0;
}
/*  */

/* accelerate */

.accelerate {
  background: var(--klenty-acceleration);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 7rem 0;
}

.accelerate h2 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 3.375rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.accelerate p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #ffffff;
  margin-bottom: 2.67rem;
}

.sales-card img {
  margin-bottom: 1.5rem;
}

.sales-card h3 {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.sales-card p {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #cdccf4;
  margin-bottom: 1.5rem;
}

/* .sales-card a {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  color: #fff !important;
  text-decoration: none;
} */

.sales-card .kt-btn--primary {
  padding: 10px 20px !important;
}

.sales-card a svg {
  transition: all 0.3s;
  margin-left: 4px;
}

.sales-card a:hover svg {
  transform: translateX(6px);
}

.sales-card-pos {
  position: relative;
  left: 8px;
}

#sales-type .col-12:not(:last-child) .sales-card {
  border-right: 1px solid #252459;
}

/*  */

/* workflow-automation */
.workflow-automation {
  background: linear-gradient(
    180deg,
    #f7fbff 0%,
    #f7fbff 87.15%,
    rgba(247, 251, 255, 0) 100%
  );
  padding: 5rem 0;
}

.workflow-automation .subheading {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.3125rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #007ce7;
  margin-bottom: 1rem;
}

.workflow-automation h2 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 3.375rem;
  color: #0e0d59;
  margin-bottom: 0.25rem;
}

.workflow-automation p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #2d2c76;
  margin-bottom: 2.5rem;
}

.workflow-automation a {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  color: #504ee4 !important;
  text-decoration: none;
}

.workflow-automation a svg {
  transition: all 0.3s;
  margin-left: 4px;
}

.workflow-automation a:hover svg {
  transform: translateX(6px);
}
/*  */

/* klentySpin */

.klentySpin {
  background: var(--klenty-spin-bg);
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3rem 2rem;
  text-align: center;
}

.klentySpin h2 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 3rem;
  color: #0e0d59;
  margin-bottom: 0.25rem;
}

.klentySpin p {
  font-size: 1.125rem;
  line-height: 1.6875rem;
  text-align: center;
  color: #0e0d59;
  margin-bottom: 2rem;
}

.klentySpin .kt-btn--primary {
  display: inline-block;
}

/*  */

/* useKlenty */

.useKlenty {
  padding: 6rem 0 4rem;
}

.useKlenty h2 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: normal;
  text-align: center;
  color: #0e0d59;
  margin-bottom: 0.25rem;
  padding: 0 1rem;
}

.useKlenty .headDesc {
  color: #2d2c76;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 3rem;
}

.caseStudyCard {
  border-radius: 1rem;
  border: 1px solid #fff;
  background: linear-gradient(152deg, #9154f4 14.39%, #4c2ec7 87.79%),
    rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: space-between;
  width: 786px;
  height: 386px;
  padding: 12px;
  margin: auto;
}

.caseStudyCardImg img {
  width: 326px !important;
}

.caseStudyCardContent {
  max-width: 300px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.caseStudyCardHead {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}

.caseStudyCard hr {
  margin: 1.5rem 0 1rem;
  border-top: 1px solid #c3adfc;
}

.caseStudyCard .callIcon {
  display: inline-block !important;
  position: relative;
  top: -1px;
  margin-right: 2px;
}

.caseStudyCard .dialsText {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.5rem;
}

.caseStudyCard .increasedCount {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: normal;
  margin-top: 0.5rem;
}

.caseStudyCard .upArrow {
  display: inline !important;
  position: relative;
}

.flexGap1 {
  display: flex;
  gap: 2rem;
}

.readCaseLink {
  color: #6de5ff;
  font-size: 1rem;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.readCaseLink:hover {
  color: #6de5ff;
  text-decoration: none;
}

.readCaseLink:hover img {
  transform: translateX(4px);
}

.readCaseLink img {
  display: inline !important;
  position: relative;
  top: -2px;
  margin-left: 3px;
  transition: all 0.3s;
}

/*  */

.caseStudyContainer {
  position: relative;
  width: 328px;
  height: 270px;
  margin: auto;
  overflow: hidden;
  border-radius: 18px;
  transition: all 0.6s;
  background: rgba(245, 245, 254, 0.94);
}

.caseStudyContainer img {
  position: relative;
  z-index: -1;
}

.useKlenty .owl-stage {
  height: 390px;
}

.owl-item.active .caseStudyContainer {
  background: rgba(206, 208, 255, 0.82);
}

.useKlenty .owl-item {
  position: relative;
  z-index: -1;
}

.owl-item.center .caseStudyContainer {
  height: 386px;
  background: linear-gradient(
      202.37deg,
      rgba(5, 3, 78, 0) 39.01%,
      #01003f 76.14%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56));
}

.owl-item.center .caseStudyContainer .textContainer {
  opacity: 1;
  transition: all 1s;
}

.logotextContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  z-index: 1;
  top: 0;
  padding: 20px;
  height: 100%;
}

.textContainer {
  opacity: 0;
}

.textContainer p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 28px;
}

.textContainer p span {
  /* color: #504ee4; */
  font-weight: 700;
}

.textContainer a {
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  color: #fff !important;
  margin: 0;
  text-decoration: none;
}

.textContainer svg {
  position: relative;
  top: 1px;
  margin-left: 4px;
  transition: all 0.3s;
}

.textContainer a:hover svg {
  margin-left: 8px;
}

.logoContainer img {
  width: fit-content;
}

.caseStudyCardContent img {
  width: fit-content !important;
}

.useKlenty .owl-theme .owl-nav [class*="owl-"]:hover {
  background: none;
}

.useKlenty .owl-theme button:focus {
  outline: none;
}

.useKlenty .owl-stage-outer::after {
  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  height: 100%;
  position: absolute;
  width: 18%;
  z-index: 99;
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.useKlenty .owl-stage-outer::before {
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100%;
  position: absolute;
  width: 18%;
  z-index: 99;
  left: 0;
  top: 0;
  transform: rotateZ(180deg);
}

/*  */

/* integrations */

.integration {
  padding: 4rem 0;
  text-align: center;
}

.integration .kt-btn--primary {
  position: relative;
  z-index: 99;
}

.integrations {
  background: var(--integration-bg);
  background-repeat: no-repeat;
  background-size: cover;
}

.integrations .container {
  position: relative;
  z-index: 4;
}

.integration .subHead {
  color: #504ee4;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.integration h2 {
  color: #0e0d59;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0.25rem;
}

.integration .desc {
  color: #2d2c76;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2.5rem;
}

.integrationBg a {
  display: block;
  width: fit-content;
  margin: auto;
}

.integrations {
  margin-top: -7rem;
  margin-bottom: -5rem;
}

.integrationBg {
  width: 100%;
  height: auto;
}

.integrations .logo {
  animation-delay: 0.8s;
}

.integrations .main-img-pos {
  position: absolute;
  top: 41%;
  left: 43.7%;
  width: 12.78%;
  height: auto;
}

.integrations .slack {
  position: absolute;
  top: 35.5%;
  right: 19%;
  width: 4.5%;
  height: auto;
}

.integrations .hubspot {
  position: absolute;
  top: 63%;
  right: 32%;
  width: 8.45%;
  height: auto;
}

.integrations .calendly {
  position: absolute;
  bottom: 24%;
  right: 18.5%;
  width: 5%;
  height: auto;
}

.integrations .zapier {
  position: absolute;
  bottom: 43%;
  right: 25%;
  width: 4.3%;
  height: auto;
}

.integrations .salesforce {
  position: absolute;
  top: 28%;
  right: 36%;
  width: 6.5%;
  height: auto;
}

.integrations .segment {
  position: absolute;
  top: 35.5%;
  left: 19%;
  width: 4.5%;
  height: auto;
}

.integrations .zoho {
  position: absolute;
  top: 28%;
  left: 32%;
  width: 9%;
  height: auto;
}

.integrations .msdynamics {
  position: absolute;
  bottom: 24%;
  left: 19.2%;
  width: 5%;
  height: auto;
}

.integrations .hippo {
  position: absolute;
  bottom: 43%;
  left: 25.5%;
  width: 4.3%;
  height: auto;
}

.integrations .pipedrive {
  position: absolute;
  bottom: 21.5%;
  left: 36.2%;
  width: 6.5%;
  height: auto;
}

/*  */

/* sales_success */

.sales_success {
  text-align: center;
  background: linear-gradient(180deg, #302e9b 0%, #161489 100%), #f5f5ff;
  padding: 5.5rem 0 10rem;
  position: relative;
  margin-bottom: -54px;
}

.sales_success_subHead,
.security_privacy_subHead {
  color: #3ec5ff;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
}

.sales_success h2 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 2rem;
}

.sales_success_card_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.sales_success_card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  background: rgba(81, 203, 255, 0.1);
  backdrop-filter: blur(4px);
  min-width: 312px;
}

.sales_success-card-text {
  color: #fff;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  margin: 0;
}

.shieldImg {
  position: absolute;
  bottom: -16%;
  z-index: 4;
  left: 50%;
  transform: translateX(-50%);
}

.security_privacy_parent {
  background: var(--security-bg-1);
  /* clip-path: polygon(
    42.5% 0,
    46% 8.2%,
    54.25% 8.2%,
    57.65% 0,
    100% 0,
    100% 100%,
    0 100%,
    0 0
  ); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: 2px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.security_privacy {
  background: var(--security-bg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 12rem 0 6rem;
  position: relative;
  z-index: 2;
}

.circleAnime {
  width: 40px;
  height: 40px;
  margin: auto;
  position: absolute;
  z-index: 1;
  top: 32px;
  left: 50%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(99, 82, 194, 0) 0%,
    rgba(108, 82, 255, 0.64) 97.15%,
    #c2b8ff 98.39%,
    #4f3fac 100%
  );
  background-size: contain;
  animation: scalingBoss 5s infinite linear;
}

@keyframes scalingBoss {
  from {
    transform: translateX(-50%) scale(1);
  }
  to {
    transform: translateX(-50%) scale(50);
  }
}

.security_privacy h2 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0.5rem;
}

.security_privacy .desc {
  color: #9f9ded;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 4.5rem;
}

.iconsContainer {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  text-align: center;
}

.platformIcons {
  margin-bottom: 0.25rem;
}

.iconsCardHead {
  color: #fff;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0.25rem;
}

.iconsCardDesc {
  color: #9f9ded;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0;
}

/*  */

/* cta-section */

.cta-section {
  background: linear-gradient(180deg, #5452be 0%, #161489 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 7rem 1rem;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  text-align: center;
  font-size: 2.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 2rem;
}

.startbutton {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #151442 !important;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  height: 2.75rem;
}

.demobutton {
  padding: 0.6875rem 1.5rem;
  border: 1px solid #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff !important;
  margin-left: 1rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-block;
  height: 2.75rem;
}

/*  */

/* take a tour section */
.takeatour {
  background: var(--take-a-tour-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 16px 56px;
  border-radius: 16px;
}

.takeatour h2 {
  font-family: "Paytone One";
  font-size: 36px;
  line-height: 50px;
  color: #ffffff;
  margin-bottom: 4px;
}

.takeatour p {
  font-size: 18px;
  line-height: 27px;
  color: #ffffff;
  margin-bottom: 52px;
}

@media only screen and (max-width: 1460px) {
  .hero-bg {
    bottom: -18%;
  }
}

@media only screen and (max-width: 1100px) {
  .featureImg {
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 786px) {
  /* hero section */
  .kl2-hero-img {
    position: initial;
    transform: scale(1);
    margin-top: 2rem;
  }

  .hero-bg {
    top: 0;
    height: 100%;
  }

  .hero-line {
    display: none;
  }

  .kl-hero-h1 {
    font-size: 2.5rem;
    line-height: normal;
  }

  /* logo-scrolling */
  .logo-scrolling {
    padding: 2rem 0;
  }
  /*  */

  /* salesFeature */
  .selectTabCont {
    display: none;
  }

  .selectTabInfoCont {
    height: auto;
  }

  .selectTabInfo {
    position: initial;
    opacity: 1;
  }

  .selectTabInfo .featureImg {
    width: 100%;
    height: auto;
    margin: 2rem 0 4rem;
  }

  .progressBarCont,
  .salesFeature hr {
    display: none;
  }
  /*  */

  /* klenty-capabilities */
  .klenty-capabilities {
    padding-top: 0;
    background: linear-gradient(0deg, #e2e2ff 0%, #fff 21.03%);
  }

  .klenty-capabilities img {
    margin: 0;
    padding: 0 2rem;
    margin-top: 3rem;
  }

  .parallelAnime {
    bottom: -29%;
  }

  /* salesFeature */
  .salesFeature {
    padding: 6rem 0;
  }

  /* .morepipelines-card */
  .morepipelines-card {
    width: 255px;
    margin: auto;
    margin-bottom: 2rem;
  }

  .morepipelines-card-head {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }

  .morepipelines-card-para {
    font-size: 1rem;
  }

  .cardRightArrow {
    display: none;
  }
  /*  */

  /* parellelDialerCont */
  .parellelDialerCont {
    padding: 3rem 1rem 0;
  }

  .parellelDialerCont img {
    padding: 0 1rem;
  }
  /*  */

  /* caseStudyCard */

  .useKlenty .headDesc {
    margin-bottom: 2rem;
  }

  .useKlenty .headDesc {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .caseStudyCard {
    flex-direction: column;
    height: auto;
    width: 86% !important;
  }

  .readCaseLink img {
    width: 20px;
  }

  /*  */

  /* sales_success */

  .sales_success_card {
    max-width: 260px !important;
    margin: auto;
  }

  .sales_success_card_container {
    flex-direction: column;
  }

  .iconsContainer {
    flex-wrap: wrap;
  }

  .shieldImg {
    bottom: -10%;
  }

  /*  */

  .t6-right-section-clientimage {
    width: 99.5% !important;
  }

  @keyframes slideUp {
    from {
      opacity: 1;
      transform: translateY(0px);
    }
    to {
      opacity: 1;
      transform: translateY(0px);
    }
  }

  .caseStudyCardImg img {
    width: 100% !important;
  }
}

@media only screen and (max-width: 768px) {
  .sdrx{
    flex-direction: column;
    padding-top: 4rem;
  }

  .sdrx>div{
    width: 100%;
  }

  .sdrxRight{
    padding-left: 4rem;
  }

  .sdrxRight>video{
    height: auto;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1190px;
  }
}

@media only screen and (max-width: 576px) {
  h2 {
    font-size: 1.84rem !important;
    line-height: 2.75rem !important;
  }

  .useKlenty .owl-stage-outer::after,
  .useKlenty .owl-stage-outer::before {
    display: none;
  }

  /* Multichannel Outreach */
  .slider::before,
  .slider::after {
    width: 80px;
    height: 68px;
  }
  .cardContainer.active .cardContent {
    height: 440px;
  }
  .cardContainer .cardContent::-webkit-scrollbar {
    display: none;
  }
  /*  */

  /* useKlenty */
  .useKlenty .caseStudyContainer {
    width: 280px;
  }
  .useKlenty .owl-item.center .caseStudyContainer {
    height: 356px;
  }
  .useKlenty .owl-nav {
    margin: 0;
  }
  .useKlenty .owl-nav button img {
    width: 36px;
    height: 36px;
  }
  /*  */

  /* integrations */

  .integrations {
    margin-top: 0;
  }

  .integrationImg {
    width: 6%;
    height: 16%;
  }

  .integration a {
    top: -20px;
  }
  /*  */
}
