@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap");

:root {
  --black: #000000;
  --black900: #0d0e10;
  --black800: #646f79;
  --black700: #848f99;
  --black600: #9ca6af;
  --black500: #b7bfc6;
  --black400: #d5dce0;
  --black300: #edf1f2;
  --black250: #f4f6f6;
  --black200: #f6f8f9;
  --black100: #fafafa;
  --white: #fff;
  --green: #5da283;
  --greenDark: #559377;
  --orange: #f1bd6c;
  --red: #f06a6a;
  --redLight: #e66666;
  --redDark: #cf3246;
  --blue: #635ac7;
  --blueLight: #8780cd;
  --yellow: #fff;
  --yellow: #fff;
  --veryLight: 100;
  --light: 200;
  --regular: 300;
  --medium: 400;
  --semiBold: 500;
  --bold: 600;
  --veryBold: 700;
  --themeFont: "Montserrat", sans-serif;
  --baseFontSize: 14px;
  --normalSpeed: all 0.5s;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
html {
  scroll-behavior: smooth;
}
strong {
  font-weight: var(--semiBold);
}
body {
  font-family: "Montserrat", sans-serif;
  font-size: var(--baseFontSize);
  overflow-x: hidden;
}
h1 {
  font-family: "Montserrat", sans-serif;
}
/* loader css */
.loader {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  left: 0;
  top: 0;
}

.loaderBox {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loaderBox div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loaderBox div:nth-child(1) {
  left: 8px;
  animation: pageLoader1 0.6s infinite;
  background-color: var(--blue);
}
.loaderBox div:nth-child(2) {
  left: 8px;
  animation: pageLoader2 0.6s infinite;
  background-color: var(--red);
}
.loaderBox div:nth-child(3) {
  left: 32px;
  animation: pageLoader2 0.6s infinite;
  background-color: var(--green);
}
.loaderBox div:nth-child(4) {
  left: 56px;
  animation: pageLoader3 0.6s infinite;
  background-color: var(--orange);
}
@keyframes pageLoader1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pageLoader3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes pageLoader2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}


/* loader css End */
/* button Style */

.themeBtn {
  border: 0;
  padding: 0.45rem 0.75rem;
  border-radius: 5px;
  background: transparent;
  color: transparent;
  font-weight: var(--semiBold);
  font-size: 1rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 7px;
  border: 2px solid transparent;
  transition: var(--normalSpeed);
  display: flex;
  max-width: 200px;
  text-decoration: none;
}
.themeBtn.dark {
  background: var(--black900);
  color: var(--white);
}
.themeBtn svg {
  height: 18px;
}
.themeBtn.outline {
  border-color: var(--black900);
  color: var(--black900);
  font-weight: var(--medium);
}
.themeBtn.outline svg path {
  stroke: var(--black900);
}
.themeBtn.outline:hover,
.themeBtn.outline:focus {
  border-color: var(--black900);
  color: var(--white);
  background: var(--black900);
}
.themeBtn.outline:hover svg path {
  stroke: var(--white);
}
.btnText {
  color: inherit;
}
.themeBtn .btnIcon {
  display: flex;
  justify-content: center;
  transition: var(--normalSpeed);
}
.themeBtn:hover .btnIcon {
  transform: translateX(5px);
}
.themeBtn .btnIcon img {
  height: 18px;
}

.themeBtn:hover,
.themeBtn:hover {
  color: var(--white);
}
.themeBtn.hover-blue:hover {
  background-color: var(--blue);
}
/* button Style End */
/* site Header */

.siteHeader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  transition: var(--normalSpeed);
  background: var(--white);
  z-index: 999;
}

.siteHeader.scrolling_down {
  background: var(--white);
  box-shadow: 0 2px 12px 0 rgb(36 50 66 / 8%);
}
.siteHeaderContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.siteHeaderLogo {
  min-width: 200px;
}

.headerLogo {
  max-height: 50px;
  transition: var(--normalSpeed);
}
.siteHeaderRight {
  display: flex;
}
.languageToggleWrapper {
  display: inline-block;
  position: relative;
}
.themeBtn.languageToggle {
  color: var(--black800);
  padding-left: 30px;
  background-image: url(../img/icons/iconEnglishLang.svg);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: 7px center;
  position: relative;
  padding-right: 24px;
  min-width: 134px;
}
.languageOptionWrapper a {
  background-image: url(../img/icons/iconGermanLang.svg);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: 4px center;
  padding-left: 30px;
  text-decoration: none;
  color: var(--black900);
  font-weight: var(--semiBold);
  font-size: 1rem;
  display: block;
  margin-bottom: 10px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.languageOptionWrapper a.active {
  background-color: var(--black100);
}
.languageOptionWrapper a.germanLang {
  background-image: url(../img/icons/iconGermanLang.svg);
}
.languageOptionWrapper a.englishLang {
  background-image: url(../img/icons/iconEnglishLang.svg);
}

.themeBtn.languageToggle.languageEn {
  background-image: url(../img/icons/iconEnglishLang.svg);
}
.themeBtn.languageToggle.languageGr {
  background-image: url(../img/icons/iconGermanLang.svg);
}
.languageOptionWrapper {
  position: absolute;
  border: 1px solid var(--black300);
  background: #fff;
  width: 134px;
  top: 40px;
  border-radius: 0 0 5px 5px;
  box-shadow: -6px 15px 30px 0px rgb(0 0 0 / 8%);
  right: 0;
  padding: 10px 5px;
  display: none;
}
.languageToggleWrapper.open .languageOptionWrapper {
  display: block;
}
.languageOptionWrapper {
}
.themeBtn.languageToggle:after {
  content: "";
  border-left: 2px solid var(--black400);
  border-bottom: 2px solid var(--black400);
  position: absolute;
  right: 9px;
  top: 14px;
  height: 8px;
  width: 8px;
  transform: rotate(-45deg);
}
.siteHeader.siteHeader.scrolling_down .headerLogo {
  max-height: 40px;
}
.siteHeaderLeft {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 30px;
}

@keyframes one-animated {
  0% {
    border-radius: 20% 31% 27% 39%/ 20% 31% 27% 39%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
}
/* site Header End*/
/* layout Start */
.topBannerSection{
  min-width: 600px;
  overflow: hidden;
  /* background-image: url(../img/homebg.jpg); */
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--white);
  background-position: top;
position: relative;
  width: 100%;
}
.topBannerSection:before{
  content: "";
  background-image: url(../img/bgpattern.png);
  background-repeat: repeat;
  position: absolute;
  width: 100%;
  height: 1000px;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.5;
}
.topFixedBackground.makeFixed{
  position: fixed;
}
.topBannerSection{
  padding-top: 60px;
}
.stickyText{
  padding-top: 45px;
  position: relative;
}
/* layout Start End */
/* Home Section */
.homeSection {
  padding-top: 60px;
    position: relative;
    overflow: hidden;
    background-image: url(../img/homebg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--white);
    background-position: top;
}
.homeSection:before
{
  content: "";
    background-image: url(../img/bgpattern.png);
    background-repeat: repeat;
    position: absolute;
    width: 100%;
    height: 1000px;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.5;
}
.chartInner canvas {
  width: 100% !important;
}
.js-plotly-plot .plotly .modebar {
  display: none;
}

@keyframes upDown {
  0%{transform: translateY(0px)}
  50%{transform: translateY(-10px)}
  100%{transform: translateY(0px)
  }
  
}
.modebar.modebar--hover {
  display: none;
}
.stepDownLink{
  display: flex;
  justify-content: flex-end;
}
.scrollToAbout {
  justify-content: flex-end;
  display: inline-block;
  width: 69px;
}
.scrollToAbout .field {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 30px;
  position: relative;
  z-index: 3;
  padding: 10px;
  /* background: var(--bs-white); */
  border-radius: 100%;
}
.scrollToAbout .field .scroll {
  width: 40px;
  height: 40px;
  border: 2px solid var(--black500);
  border-radius: 50%;
  position: relative;
  animation: down 1.5s infinite;
  -webkit-animation: down 3s infinite;
  background: var(--white);
}
.scrollToAbout .field .scroll::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 13px;
  width: 11px;
  height: 11px;
  border-left: 2px solid var(--black700);
  border-bottom: 2px solid var(--black700);
  transform: rotate(-45deg);
}

@keyframes down {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translateY(5px);
  }
  40% {
    transform: translate(0);
  }
}

.homeSectionText {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
}
 .person {
  position: absolute;
  right: 16vw;
  top: 20vh;
  height: 28vw;
  width: 20vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
 .person:before {
  content: "";
  background-image: url(../img/personBack.png);
  position: absolute;
  right: -86px;
  top: -107px;
  animation-name: rotateme;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  height: 400px;
  width: 400px;
  background-size: contain;
  z-index: 0;
}
@keyframes rotateme {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.homeSectionHeading {
  margin-bottom: 40px;
  transition: var(--normalSpeed);
  -webkit-font-smoothing: antialiased;
  font-size: 2.7rem;
  font-weight: var(--medium);
  color: var(--black900);
  line-height: 122%;
  position: relative;
}
.homeSectionHeading:after {
  content: "";
  height: 8px;
  width: 100%;
  position: absolute;
  background-image: url(../img/icons/Iconlinewitharrow.svg);
  background-repeat: no-repeat;
  bottom: -29px;
  animation: arrowAnimation 5s linear;
}
@keyframes arrowAnimation {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.homeSectionTagline {
  color: #0d0e10;
  margin-bottom: 48px;
  transition: all 0.5s;
  font-size: 1.15rem;
  line-height: 30px;
}
/* Problem Section (index2) */
.problemSection {
  padding: 80px 0;
  background-color: #f7f8fc;
}
.problemSectionInner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.problemHeading {
  font-size: 2rem;
  font-weight: 700;
  color: #0d0e10;
  margin-bottom: 48px;
}
.problemGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  text-align: left;
}
.problemCard {
  background: #fff;
  border-left: 4px solid #003A9A;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.problemCard p {
  margin: 0;
  font-size: 0.97rem;
  color: #2d2d4a;
  line-height: 1.6;
}
.problemClosing {
  font-size: 1.05rem;
  color: #4a4a6a;
  font-style: italic;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .problemGrid {
    grid-template-columns: 1fr;
  }
}
/* Proof Section */
.proofSection {
  padding: 80px 0;
  background-color: #003A9A;
  color: #fff;
}
.proofSectionInner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.proofHeading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 56px;
  line-height: 1.4;
}
.proofStatsRow {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  margin-bottom: 64px;
}
.proofStat {
  text-align: center;
  flex: 1;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.proofStat:last-child {
  border-right: none;
}
.proofStatNumber {
  font-size: 2.4rem;
  font-weight: 800;
  color: #F7A600;
  line-height: 1.1;
  margin-bottom: 8px;
}
.proofStatLabel {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}
.proofBlock {
  margin-bottom: 48px;
}
.proofBlockLabel {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.proofLogoStrip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}
.proofLogoStrip span {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  opacity: 0.9;
}
.proofCertStrip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.proofCertGroups {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
}
.proofCertGroup {
  flex: 0 1 auto;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 12px 8px;
  min-width: 0;
}
.proofCertGroupLabel {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-bottom: 10px;
}
.proofCert {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 0.84rem;
  color: #fff;
}
@media (max-width: 768px) {
  .proofStatsRow {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
  }
  .proofStat {
    padding: 0 0 18px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .proofStat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .proofStatNumber {
    font-size: 2rem;
  }
  .proofStatLabel {
    font-size: 0.95rem;
  }
  .proofHeading {
    font-size: 1.4rem;
  }
  .proofCertGroups {
    gap: 10px;
    flex-wrap: wrap;
  }
  .proofCertGroup {
    width: 100%;
    min-width: 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .proofStatsRow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 48px;
  }
  .proofStat {
    border-right: none;
    padding: 0 12px;
  }
  .proofStat:last-child {
    grid-column: 1 / -1;
  }
  .proofStatNumber {
    font-size: 2.2rem;
  }
}
/* CTA Footer Section */
.ctaFooterSection {
  padding: 80px 0;
  background-color: #eef2fb;
}
.ctaFooterInner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.ctaFooterHeading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d0e10;
  margin-bottom: 20px;
}
.ctaFooterSubheading {
  font-size: 1.05rem;
  color: #4a4a6a;
  line-height: 1.7;
  margin-bottom: 48px;
}
.ctaFooterButtons {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
}
.ctaFooterBtn {
  padding: 14px 20px;
  white-space: nowrap;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
.ctaFooterBtnPrimary {
  background-color: #003A9A;
  color: #fff;
}
.ctaFooterBtnPrimary:hover {
  background-color: #002d7a;
  color: #fff;
}
.ctaFooterBtnSecondary {
  background-color: #003A9A;
  color: #fff;
}
.ctaFooterBtnSecondary:hover {
  background-color: #002d7a;
  color: #fff;
}
.ctaFooterBtnGhost {
  background-color: transparent;
  color: #003A9A;
  border: 1px solid rgba(0,58,154,0.4);
}
.ctaFooterBtnGhost:hover {
  border-color: #fff;
  color: #fff;
}
@media (max-width: 768px) {
  .ctaFooterHeading {
    font-size: 1.6rem;
  }
  .ctaFooterButtons {
    flex-direction: column;
    align-items: center;
  }
}
/* Deployment Section */
.deploymentSection {
  padding: 80px 0;
  background-color: #fff;
}
.deploymentSectionInner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.deploymentHeading {
  font-size: 2rem;
  font-weight: 700;
  color: #0d0e10;
  margin-bottom: 16px;
}
.deploymentSubheading {
  font-size: 1.05rem;
  color: #4a4a6a;
  margin-bottom: 48px;
}
.deploymentGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: left;
}
.deploymentCard {
  background: #f7f8fc;
  border-top: 4px solid #F7A600;
  border-radius: 6px;
  padding: 32px;
}
.deploymentCardTitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d0e10;
  margin-bottom: 14px;
}
.deploymentCard p {
  margin: 0;
  font-size: 0.97rem;
  color: #2d2d4a;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .deploymentGrid {
    grid-template-columns: 1fr;
  }
}
/* Use Cases Section */
.useCasesSection {
  padding: 80px 0;
  background-color: #f7f8fc;
}
.useCasesSectionInner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.useCasesHeading {
  font-size: 2rem;
  font-weight: 700;
  color: #0d0e10;
  margin-bottom: 16px;
}
.useCasesSubheading {
  font-size: 1.05rem;
  color: #4a4a6a;
  margin-bottom: 48px;
}
.useCasesGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: left;
}
.useCaseCard {
  background: #fff;
  border-left: 4px solid #003A9A;
  border-radius: 6px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.useCaseCardTitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #003A9A;
  margin-bottom: 16px;
}
.useCaseCard p {
  margin: 0;
  font-size: 0.97rem;
  color: #2d2d4a;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .useCasesGrid {
    grid-template-columns: 1fr;
  }
}
/* Platform Promises Section */
.promisesSection {
  padding: 80px 0;
  background-color: #fff;
}
.promisesSectionInner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.promisesHeading {
  font-size: 2rem;
  font-weight: 700;
  color: #0d0e10;
  margin-bottom: 16px;
}
.promisesSubheading {
  font-size: 1.05rem;
  color: #4a4a6a;
  margin-bottom: 48px;
}
.promisesGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: left;
}
.promiseCard {
  background: #f7f8fc;
  border-top: 4px solid #003A9A;
  border-radius: 6px;
  padding: 32px;
}
.promiseCardTitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #003A9A;
  margin-bottom: 16px;
}
.promiseCard p {
  margin: 0;
  font-size: 0.97rem;
  color: #2d2d4a;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .promisesGrid {
    grid-template-columns: 1fr;
  }
}
/* Hero full-width layout (image removed) */
/* Hero Trust Strip */
.heroTrustStrip {
  margin-top: 0;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 58, 154, 0.15);
}
.heroTrustLine {
  font-size: 0.92rem;
  color: #4a4a6a;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
/* Ripple Animation */
.ripple-background {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}
.circle {
  position: absolute;
  border-radius: 50%;
  background: rgb(135 128 205 / 8%);
  animation: ripple 15s infinite;
  box-shadow: 0px 0px 1px 0px #508fb9;
  z-index: -1;
}

.small {
  width: 200px;
  height: 200px;
  right: -100px;
  top: -100px;
}

.medium {
  width: 400px;
  height: 400px;
  right: -200px;
  top: -200px;
}

.large {
  width: 600px;
  height: 600px;
  right: -300px;
  top: -300px;
}

.xlarge {
  width: 800px;
  height: 800px;
  right: -400px;
  top: -400px;
}

.xxlarge {
  width: 1000px;
  height: 1000px;
  right: -500px;
  top: -500px;
}

.shade1 {
  opacity: 0.2;
}
.shade2 {
  opacity: 0.5;
}

.shade3 {
  opacity: 0.7;
}

.shade4 {
  opacity: 0.8;
}

.shade5 {
  opacity: 0.9;
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(0.8);
  }
}

.homeSectionImageSection {
  
  width: 100%;
  position:relative;
  display: flex;
  align-items: center;
}
.homeSectionImageSection:after
{
  content: '';
  background-image: url(../img/girl.svg);
  height: 150px;
  width: 150px;
  background-size: contain;
  position: absolute;
  top: 90vh;
  right: -45px;
  opacity: 0.4;
  background-repeat: no-repeat;
  animation: upDown 5s linear infinite;
}
.controlScrollAmintionwithGraph
{
  width: 100%;
  height: 100vh;
  position: relative;
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.stickyText:after{
  content: '';
  background-image: url(../img/girl.svg);
  height: 150px;
  width: 150px;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: -45px;
  opacity: 0.4;
  background-repeat: no-repeat;
  animation: upDown 5s linear infinite;

}
.homeSectionGrapth{
  position: absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
}
canvas#pieChart {
  transform: scale(0.8);
}
.homeSectionImageSection .desktopDesign {
  max-width: 100%;
}
.homeSectionImageSection .desktopDesignHeader {
  background: #eff2f7eb !important;
  color: var(--black700);
}
.homeSectionImageSection .desktopDesignBody {
  min-height: 300px;
  background: #fffffff7;
}
.homeSectionImageSection .desktopDesignHeader span,
.homeSectionImageSection .desktopDesignHeader span:after,
.homeSectionImageSection .desktopDesignHeader span:before {
  background: var(--black700);
}
.homeSectionBannerImg {
  max-height: 400px;
  margin-top: 80px;
}
/* Home Section End */

/* About Section */
.AboutSection {
  background: #fff;
  position: relative;
  padding:0px 0;
}
.onlyArrowLink{
  display: inline-flex;
  width: 144px;
  align-items: center;
  color: var(--blue);
}
.onlyArrowLink .btnIcon{
  position: relative;
}
.onlyArrowLink .btnIcon svg {
  height: 20px;
  width: 16px;
  display: inline-block;
  position: relative;
  top: -1px;
  right: 0;
  left: auto;
}
.onlyArrowLink .btnIcon svg path {
  stroke: var(--blue);
}
.cubeMovingBG {
  width: 100%;
}

.movingCubes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.movingCubes li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  opacity: 0.1;
  animation: animate 50s linear infinite;
  bottom: -150px;
}
.ourFocusSection .movingCubes li{
  animation: animate2 50s linear infinite;
  top: -150px;
  bottom: auto;
}
.movingCubes li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
  background-color: var(--red);
}

.movingCubes li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 24s;
  background-color: var(--green);
}

.movingCubes li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
  background-color: var(--blue);
}

.movingCubes li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 36s;
  background-color: var(--orange);
}

.movingCubes li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
  background-color: var(--red);
}

.movingCubes li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
  background-color: var(--blueLight);
}

.movingCubes li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 14s;
  background-color: var(--redDark);
}

.movingCubes li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 90s;
  background-color: var(--black400);
}

.movingCubes li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 70s;
}

.movingCubes li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 22s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.2;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
@keyframes animate2 {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.2;
    border-radius: 0;
  }

  100% {
    transform: translateY(1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

.aboutSectionInner {
  width: 100%;
  z-index: 2;
  padding-top: 80px;
}
.aboutDEscription {
  padding-top: 0;
}
.sectionMainHeading {
  position: relative;
}
.sectionMainHeading h2 {
  margin-bottom: 10px;
  transition: var(--normalSpeed);
  -webkit-font-smoothing: antialiased;
  font-size: 2rem;
  font-weight: var(--medium);
  color: var(--black900);
  line-height: 122%;
  position: relative;
}
.headingAnimationBar {
  margin: 10px 0 10px;
}
.headingAnimaitonContent {
  height: 5px;
  width: 96%;
  max-width:500px;
  background: transparent;
  margin: 4px 0;
  position: relative;
  border-radius: 30px;
}
.headingAnimaitonContent.ourClientsSecAnim {
  max-width: 175px;
}
.headingAnimaitonContent::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2.7px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: transparent;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-BG;
  animation-name: MOVE-BG;
}
.headingAnimaitonContent.ourClientsSecAnim:before {
  animation-name: MOVE-BG-Small;
}
.headingAnimaitonContent.colorOrage {
  background: rgb(254 194 97 / 20%);
}
.headingAnimaitonContent.colorOrage::before {
  background: var(--orange);
}
.headingAnimaitonContent.colorGreen {
  background: rgb(93 162 131 / 20%);
}
.headingAnimaitonContent.colorGreen::before {
  background: var(--green);
}
.headingAnimaitonContent.colorBlue {
  background: rgb(99 90 199 / 20%);
}
.headingAnimaitonContent.colorBlue::before {
  background: var(--blue);
}
.headingAnimaitonContent.colorRed {
  background: rgb(240 106 106 / 20%);
}
.headingAnimaitonContent.colorRed::before {
  background: var(--red);
}
.headingAnimaitonContent::before {
  margin: auto;
}


@keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(300px);
    transform: translateX(300px);
  }
}
@keyframes MOVE-BG-Small {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(170);
    transform: translateX(170px);
  }
}
.sectionMainHeading p {
  color: #0d0e10;
  margin-bottom: 10px;
  transition: all 0.5s;
  font-size: 1.15rem;
  line-height: 27px;
}
.aboutSectionInner {
  background-image: url(../img/aboutSectionGB.svg);
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
}
.aboutAnimation {
  padding: 40px 0;
  margin-top: -0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.me-10 {
  margin-right: 60px;
}
.boxWithIconContainer {
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 50px 0px rgb(0 0 0 / 10%);
  position: relative;
  margin-bottom: 10px;
  background: #ffffff;
  display: flex;
  column-gap: 10px;
  max-width: 500px;
}
.boxWithIconContainer:before {
  border-radius: 4px;
  content: "";
  width: 100%;
  height: 100%;
  transition: var(--normalSpeed);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
}
.boxWithIconContainer:hover:before {
  background-image: linear-gradient(
    0deg,
    var(--blue) 0%,
    var(--blueLight) 100%
  );
  box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 25%);
  z-index: 1;
  opacity: 1;
}
.boxWithIconContainer.colorRed:hover:before,
.boxWithIconContainer.active.colorRed:hover:before
 {
  box-shadow: 0px 10px 20px 0px rgb(240 106 106 / 40%);
}
.boxWithIconContainer.colorGreeen:hover:before,
.boxWithIconContainer.active.colorGreeen:hover:before
 {
  box-shadow: 0px 10px 20px 0px rgb(93 162 131 / 40%);
}
.boxWithIconContainer.colorOrange:hover:before,
.boxWithIconContainer.active.colorOrange:hover:before
 {
  box-shadow: 0px 10px 20px 0px rgb(254 194 97 / 40%);
}
.boxWithIconMedia:before {
  content: "";
  background: url(../img/dotPattern.svg);
  display: inline-block;
  position: absolute;
  right: 10px;
  width: 60px;
  height: 60px;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.boxWithIconImage {
  position: relative;
  z-index: 2;
}
.boxWithIconMedia {
  position: relative;
  z-index: 2;
  max-width: 392px;
}
.boxWithIconImage {
  z-index: 0;
  width: 69px;
  height: 60px;
  position: relative;
  text-align: center;
  background-image: linear-gradient(
    -45deg,
    rgb(255, 255, 255) 0%,
    #d1d7f3 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border-radius: 5px;
}
.boxWithIconContainer.colorRed .boxWithIconImage {
  background-image: linear-gradient(
    -45deg,
    rgb(240 106 106 / 5%) 0%,
    #fff 100%
  );
}
.boxWithIconContainer.colorRed .boxWithIconImage svg path {
  fill: var(--red);
}
.boxWithIconContainer.colorGreeen .boxWithIconImage {
  background-image: linear-gradient(-45deg, rgb(93 162 131 / 5%) 0%, #fff 100%);
}
.boxWithIconContainer.colorGreeen .boxWithIconImage svg path {
  fill: var(--green);
}
.boxWithIconContainer.colorOrange .boxWithIconImage {
  background-image: linear-gradient(
    -45deg,
    rgb(255 226 181 / 5%) 0%,
    #fff 100%
  );
}
.boxWithIconContainer.colorOrange .boxWithIconImage svg path {
  fill: var(--orange);
}

.boxWithIconImage svg {
  height: 40px;
  width: 40px;
}
.boxWithIconImage svg path {
  fill: var(--blue);
}
.boxWithIconMedia h4 {
  color: var(--black800);
  margin-bottom: 0;
  transition: var(--normalSpeed);
  font-size: 1.15rem;
  line-height: 25px;
}
.boxWithIconMedia p {
  color: var(--black700);
  margin-bottom: 0;
  transition: var(--normalSpeed);
  font-size: 1rem;
  line-height: 21px;
  font-weight: var(--regular);
}
.boxWithIconContainer.colorRed:hover:before,
.boxWithIconContainer.active.colorRed {
  background-image: none;
  background: var(--red);
}
.boxWithIconContainer.colorOrange:hover:before{
  background-image: none;
  background: var(--orange);
  opacity: 1;
  z-index: 1;
}
.boxWithIconContainer.active.colorOrang{
  background: var(--blue);

}
.boxWithIconContainer.colorGreeen:hover:before,
.boxWithIconContainer.active.colorGreeen  {
  background-image: none;
  background: var(--green);
}
.boxWithIconContainer:hover .boxWithIconMedia h4,
.boxWithIconContainer.active .boxWithIconMedia h4 {
  color: var(--white);
}
.boxWithIconContainer:hover .boxWithIconMedia p,
.boxWithIconContainer.active .boxWithIconMedia p {
  color: var(--black200);
}
.boxWithIconContainer:hover .boxWithIconImage,
.boxWithIconContainer.active .boxWithIconImage {
  background-image: none !important;
  background: var(--white) !important;
  z-index: 2;
}

/* About Section end */

/* Clients Section */
.sectionClients {
  padding: 40px 0;
  min-height: 100px;
  background-color: var(--white);
  position: relative;
}
.sectionClients:after {
  content: "";
  position: absolute;
  height: 100px;
  width: 100px;
  top: 0;
  background-image: url(../img/icons/IconCircleItem.svg);
  background-size: contain;
  left: 20%;
}
.halfCircle {
  position: relative;
  height: 60px;
  background: #eff2f7;
  margin-top: -40px;
  overflow: hidden;
  display: none;
}
.paddingTop {
  padding-top: 40px;
}
.halfCircle:after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 0;
  height: 0;
  right: 0;
  border-left: 100vw solid transparent;
  margin-top: 0;
  border-bottom: 3.9173vw solid #fff;
  top: 0;
}
.sectionMainHeading.center h2 {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.sectionMainHeading.center p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.sectionClients .sectionMainHeading.center p {
  max-width: 800px;
}
.sectionMainHeading.center .headingAnimaitonContent {
  margin: 4px auto;
}
/* Clients Section Start */
.scrollingItem {
  background: var(--white);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 2px 2px 1px rgb(0 0 0 / 9%);
  width: 100%;
  min-height: 55px;
}
.scrollingItem img {
  max-height: 45px;
}
/* 
.Marquee {
  margin-top: 30px;
  overflow: hidden;
}
.Marquee-content {
  display: flex;
  -webkit-animation: marquee 10s linear infinite running;
  -moz-animation: marquee 10s linear infinite running;
  -o-animation: marquee 10s linear infinite running;
  -ms-animation: marquee 10s linear infinite running;
  animation: marquee 10s linear infinite running;
}
.Marquee-content:hover {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  -ms-animation-play-state: paused;
  animation-play-state: paused;
}
.Marquee-tag {
  width: 200px;
  padding: 0.5em;
  background: rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}


@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
} */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-190px * 7));
  }
}
.Marquee {
  margin: 30px auto 0;
  overflow: hidden;
  position: relative;
  width: auto;
}
.Marquee .Marquee-content {
  animation: scroll 30s linear infinite;
  display: flex;
  width: calc(190px * 12);
}
.Marquee .Marquee-tag {
  width: 190px;
}

/* Clients Section End */
/* Services Section  */
.servicesSection,
.productSection {
  padding: 20px 0 40px;
  min-height: 200px;
  background: #fff;
  z-index: 2;
  position: relative;
}
.productSection {
  padding-top: 40px;
}
.ServiceBoxItem,
.productBoxItem {
  height: 800px;
    width: 100%;
    transition: all 0.7s;
    display: none;
}
.ServiceBoxItem .desktopDesignBody img {
  width: 100%;
  /* max-height: 350px; */
}
.ServiceBoxItem .desktopDesignBody {
  min-height: auto;
  background: #fff;
}
.productBoxItem .desktopDesignBody {
  min-height: auto;
}

.productBoxItem .desktopDesignBody {
  min-height: 450px;
}
.productBoxItem .desktopDesignBody .js-plotly-plot .plotly .main-svg {
  background: transparent !important;
}
.productBoxItem {
  transform-origin: top right;
}
.productBoxItem {
  background-position: right center;
}

.servicesDetailsWithScroll {
  position: relative;
  padding-left: 40px;
}
.servicesDetailsWithScroll:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-left: 2px dashed var(--black600);
  width: 3px;
  height: calc(100% - 30px);
}

.servicesDetailsWithScroll:after {
  content: "";
  position: absolute;
  left: -7px;
  top: 0;
  background: var(--black600);
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.productsPoints .servicesDetailsWithScroll {
  padding-left: 40px;
}



.onlySubHeading {
  color: var(--black800);
  margin-bottom: 0;
  transition: all 0.5s;
  font-size: 1.15rem;
  line-height: 27px;
  font-weight: var(--semiBold);
}
.servicesImages {
  position: relative;
}
.stickyPosition {
  position: sticky;
  top: 0;
}
.servicesPoints,
.productsPoints {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}
.productsPoints {
  grid-template-columns: 1fr 1fr;
}
.positionfixed {
  position: fixed;
  top: 100px;
}
#service1 {
  margin-top: 400px;
}
#product5{
  margin-bottom: 0;
  padding-top: 0;
  height:600px;
}
.servicesDetalsBox {
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  animation: none !important;
  transition: none !important;
  opacity: 1 !important;
  position: relative;
  margin-bottom: 100px;
}

.productDetalsBox {
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  animation: none !important;
  transition: none !important;
  opacity: 1 !important;
  position: relative;
  padding-top: 250px;
}
.servicesDetalsBox h2:before {
  content: "";
  width: 22px;
  position: absolute;
  left: -33px;
  top: 19px;
  border-top: 2px dashed var(--black700);
}
.rippleCircle {
  background: var(--orange);
  height: 15px;
  width: 15px;
  position: absolute;
  top: 11px;
  z-index: 1;
  left: -48px;
  right: 0;
  border-radius: 100px;
  animation: ripple-orange 2s linear infinite;
  transition: 0.5s;
}
.rippleCircle.green {
  background: var(--green);
  animation: ripple-green 2s linear infinite;
}
.rippleCircle.red {
  background: var(--red);
  animation: ripple-red 2s linear infinite;
}
.rippleCircle.orange {
  background: var(--orange);
  animation: ripple-orange 2s linear infinite;
}
.rippleCircle.blue {
  background: var(--blue);
  animation: ripple-blue 2s linear infinite;
}
@keyframes ripple-green {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3),
      0 0 0 5px rgba(93, 162, 131, 0.3), 0 0 0 10px rgba(93, 162, 131, 0.3);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3),
      0 0 0 10px rgba(93, 162, 131, 0.3), 0 0 0 20px rgba(93, 162, 131, 0);
  }
}
@keyframes ripple-red {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3),
      0 0 0 10px rgba(240, 106, 106, 0.3), 0 0 0 10px rgba(240, 106, 106, 0.3);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3),
      0 0 0 20px rgba(240, 106, 106, 0.3), 0 0 0 30px rgba(240, 106, 106, 0);
  }
}
@keyframes ripple-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3),
      0 0 0 10px rgba(241, 189, 108, 0.3), 0 0 0 20px rgba(241, 189, 108, 0.3);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3),
      0 0 0 20px rgba(241, 189, 108, 0.3), 0 0 0 30px rgba(241, 189, 108, 0);
  }
}
@keyframes ripple-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 90, 199, 0.3),
      0 0 0 10px rgba(99, 90, 199, 0.3), 0 0 0 20px rgba(99, 90, 199, 0.3);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3),
      0 0 0 20px rgba(99, 90, 199, 0.3), 0 0 0 30px rgba(99, 90, 199, 0);
  }
}

.serviceImgBox,
.productImgBox {
  height: 100vh;
  position: sticky;
  top: 100px;
}

.ServiceBoxItem.show,
.productBoxItem.show {
  display: block;
}
.ServiceBoxItem svg,
.productBoxItem svg {
  max-height: 400px;
}
/* Services Section End */
/* Timeline Section  */
.timelineSection {
  min-height: 300px;
  background: url(../img/focusSectionBG.svg);
  position: relative;
  overflow: hidden;
}

.timelineSectionText {
  padding: 40px 0;
  padding-left: 20px;
  transition: all 2s linear !important;
}
.timelineSectionText {
  padding: 40px 0;
  padding-left: 20px;
  transition: all 2s linear !important;
  position: relative;
  padding-top: 100px;
}
.focusItems {
  position: absolute;
  top: 0;
  width: 100%;
}
.desktopDesign {
  position: relative;
  max-width: 100%;
  margin: 30px auto 0;
}
.desktopDesignHeader span,
.desktopDesignHeader span:after,
.desktopDesignHeader span:before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background: var(--white);
  top: 10px;
  left: 7px;
}
.desktopDesignHeader.orange {
  background: var(--orange);
}
.desktopDesignHeader.green {
  background: var(--green);
}
.desktopDesignHeader.red {
  background: var(--red);
}
.desktopDesignHeader.blue {
  background: var(--blue);
}

.dashboard .desktopDesignHeader.blue {
  /* background: #ecf4fe !important; */
  color: #607d8b;
  font-weight: var(--semiBold);
}


.graphForMobile {
  display: none;
}


/* Image Slider Home page End */
.dashboard .homeSectionImageSection .desktopDesignHeader span,
.dashboard .homeSectionImageSection .desktopDesignHeader span:after,
.dashboard .homeSectionImageSection .desktopDesignHeader span:before {
  background: #9e9e9e;
}
.homeSectionImageSection .desktopDesignHeader span:before {
  background-color: var(--green);
}

.homeSectionImageSection .desktopDesignHeader span:after {
  background: var(--red);
}
.homeSectionImageSection .desktopDesignHeader span {
  background: var(--orange);
}
.desktopDesign.dashboard {
  margin: 0;
}
.dashboardChartWrapper {
  width: 100%;
  height: 200px;
}

#donatChart {
  height: 173px !important;
  width: 173px !important;
  margin: 0 auto;
}
#barChart {
  transition: all 0.8s;
  width: 290px !important;
  margin: 0 auto;
}
.desktopDesignHeader span:after {
  top: 0px;
  left: 14px;
}
.desktopDesignHeader span:before {
  top: 0px;
  left: 28px;
}
.desktopDesignHeader {
  height: 30px;
  background: var(--black900);
  border-radius: 4px 4px 0 0;
  position: relative;
  padding-left: 59px;
  color: #fff;
  display: flex;
  align-items: center;
  display: none;
}
.desktopDesignBody {
  /* background: #eff2f7; */
  background: var(--white);
  border-radius: 0 0 4px 4px;
  border-top: 0;
  padding: 20px 10px;
}
.desktopDesignBody.internalOrganization .productSubPoints {
  display: block;
}
.desktopDesignBody.internalOrganization .productSubPoints div {
  min-height: 64px;
  border: 0;
  margin-bottom: 5px;
  padding-left: 74px;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1rem;
}
.desktopDesignBody.internalOrganization {
  background: var(--white);
}
.desktopDesignBody.internalOrganization .productSubPoints span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 10px;
  top: 10px;
  height: 45px;
  width: 45px;
  border-radius: 4px;
  background: rgb(249 63 63 / 61%);
}
.desktopDesignBody.internalOrganization .productSubPoints span svg {
  height: 30px;
}
.desktopDesignBody.internalOrganization .productSubPoints span svg path {
  fill: var(--white);
}
.sectionMainHeading p {
  position: relative;
}
.desktopDesignBody.multiProjectManagement .productSubPoints  div {
  min-height: 64px;
    border: 0;
    margin-bottom: 10px;
    padding-left: 74px;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.desktopDesignBody.multiProjectManagement .productSubPoints {
  display: block;
}
.desktopDesignBody.multiProjectManagement .productSubPoints span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 10px;
  top: 10px;
  height: 45px;
  width: 45px;
  border-radius: 4px;
  background: rgb(255 193 7 / 56%);
}
.desktopDesignBody.multiProjectManagement .productSubPoints span svg path {
  fill: var(--white);
}
.desktopDesignBody.multiProjectManagement .productSubPoints span svg {
  height: 30px;
}
.desktopDesignBody.multiProjectManagement .productSubPoints  div span{
  background:var(--orange);
}
.desktopDesignBody.multiProjectManagement .productSubPoints div:hover {
  background: var(--orange);
  color:var(--white);
}
.desktopDesignBody.multiProjectManagement .productSubPoints div:hover span {
  background: var(--white);
}
.desktopDesignBody.multiProjectManagement .productSubPoints div:hover span svg path {
  fill: var(--orange);
}
.sectionMainHeading p svg {
  height: 121px;
  position: absolute;
  left: -102px;
  width: 140px;
  top: -22px;
}
.transactions svg {
  height: 40px !important;
}
.transactions svg path {
  fill: var(--blue);
}
.sectionMainHeading p svg.orange path {
  fill: var(--orange);
}
.sectionMainHeading p svg.red path {
  fill: var(--red);
}
.sectionMainHeading p svg.green path {
  fill: var(--green);
}
.sectionMainHeading p svg.blue path {
  fill: var(--blue);
}

.productSubPoints {
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
.productSubPoints div {
  transition: var(--normalSpeed);
  transform: translateX(0px);
}
.productSubPoints div:hover {
  transform: translateY(-5px) !important;
}
.productSubPoints div {
  background: #fafafa;
  padding: 15px 10px;
  /* border: 10px solid #fff; */
  font-weight: var(--semiBold);
  border-radius: 5px;
}
.productSubPoints div span {
  height: 60px;
  width: 60px;
  background: #eff2f7;
  margin-bottom: 15px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.readMoreBtnWrappr {
  display: flex;
  justify-content: flex-start;
}
.timelineSectionText .accordion-item {
  background: transparent;
  border: 0;
  border-radius: 4px 4px 4px 4px;
  margin-bottom: 5px;
}
.timelineSectionText .accordion-header {
  margin-bottom: 0px;
}
.accordion {
  z-index: 1;
  position: relative;
}
.timelineSectionText .accordion-header .accordion-button {
  background: #0b3c82;
  padding: 10px 8px 8px 16px;
  line-height: 27px;
  font-weight: var(--semiBold);
  border: 0;
  color: var(--white);
  box-shadow: none;
  font-size: 1.2rem;
  color: var(--white);
}
.timelineSectionText .accordion-header .accordion-button:after {
  content: none;
}
 .timelineSectionText .accordion-header .accordion-button:after {
  content: "";
  height: 26px;
  width: 26px;
  background: url(../img/icons/iconCollapsed.svg);
  right: 14px;
  position: absolute;
  top: 11px;
  opacity: 1;
  background-repeat: no-repeat;
}
.timelineSectionText .accordion-header .accordion-button:not(.collapsed):after {
  background-image: url("../img/icons/iconExpanded.svg");
} 
.timelineSectionText .accordion-header .accordion-button.collapsed {
  border-radius: 4px;
}
.timelineSectionText .accordion-item .accordion-body {
  background: #fff;
  border-radius: 0;
  font-size: 1.1rem;
  max-height: 243px;
  overflow: hidden;
}

.timelineSectionText .onlySubHeading {
  color: var(--black600);
  line-height: 23px;
  margin-bottom: 0;
}
.timelineSectionText .accordion-item:nth-child(1) .accordion-button {
  background: #fffcf0;
  color: #bd4c4c;
  border: 1px solid #fff3ca;
}
.timelineSectionText .accordion-item:nth-child(2) .accordion-button {
  background: #f2fdf9;
  color: #549d7c;
  border: 1px solid #dbfff2;
}
.timelineSectionText .accordion-item:nth-child(3) .accordion-button {
  background: #fffbf8;
  color: #fb8f4d;
  border: 1px solid #fff2ea;
}
.timelineSectionText .accordion-item:nth-child(4) .accordion-button {
  color: #635ac7;
  background: #f8f1fd;
  border: 1px solid #f2e2fe;
}
.timelineSectionText .accordion-item:nth-child(5) .accordion-button {
  color: #e96cf1;
  background: #fff2ff;
  border: 1px solid #fde8fd;
}
.timelineSectionText .accordion-item:nth-child(6) .accordion-button {
  color: #58c7c7;
  background: #f5ffff;
  border: 1px solid #e1f7f7;
}
.timelineSectionText .accordion-item:nth-child(1) .accordion-body {
  background: #fff3ca;
}
.timelineSectionText .accordion-item:nth-child(2) .accordion-body {
  background: #dbfff2;
}
.timelineSectionText .accordion-item:nth-child(3) .accordion-body {
  background: #fff2ea;
}
.timelineSectionText .accordion-item:nth-child(4) .accordion-body {
  background: #f2e2fe;
}
.timelineSectionText .accordion-item:nth-child(5) .accordion-body {
  background: #fde8fd;
}
.timelineSectionText .accordion-item:nth-child(6) .accordion-body {
  background: #e1f7f7;
}
/* .timelineSectionText .sectionMainHeading h2 {
  color: var(--white);
} */
.timelineSectionText .sectionMainHeading p {
  /* color: var(--black250); */
  line-height: 23px;
  margin-bottom: 28px;
}
/* Timeline Section End */
/* Time Card Management */
.todayBadge {
  border: 1px solid #ddd;
  padding: 2px 6px;
  border-radius: 9px;
  margin-right: 10px;
}
.dateBadge {
  border: 1px solid var(--green);
  padding: 2px 6px;
  border-radius: 9px;
  background: var(--green);
  color: var(--white);
}
.onlyText {
  font-weight: var(--bold);
  margin-right: 10px;
}
.timelineheader {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 3px;
}
.timelinebody {
  display: grid;
  grid-template-columns: 179px 1fr;
  grid-column-gap: 10px;
  position: relative;
}
.timeLineWeeks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.weeksItem {
  height: 300px;
  border-left: 1px dashed #ddd;
  text-align: center;
}
.nameofProj {
  font-weight: var(--semiBold);
}
.usersicon {
  height: 16px;
}
.moreIcon {
  height: 4px;
}
.timelineSideMenu {
  padding-top: 27px;
}
.timelineProjects {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-top: 5px;
  padding: 8px 5px;
  box-shadow: -6px -1px 19px 0px rgb(0 0 0 / 8%);
}
.timelineWrapper {
  margin-top: 71px;
  position: absolute;
  width: 100%;
  height: 500px;
  display: none;
}
.timelineWrapper.show{
  display: block;
}
.progressWpr {
  display: grid;
  grid-template-columns: 75px 75px;
  align-items: center;
  background: #fff2ea;
  border-radius: 5px;
  position: absolute;
  top: 65px;
  left: 195px;
  z-index: 1;
}
.progressWprLeft {
  position: relative;
  background: var(--red);
  height: 25px;
  border-radius: 5px;
}

.progresslevelText {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  font-weight: var(--semiBold);
  color: #fff;
  padding-left: 5px;
}
.smallCircle {
  position: absolute;
  height: 9px;
  width: 9px;
  background: #fff;
  top: 8px;
  left: 5px;
  border-radius: 100%;
  border: 2px solid #d25757;
}
.rightAngleIcon svg {
  position: absolute;
  right: 6px;
  top: 8px;
  height: 10px;
}
.progressLevel {
  font-weight: var(--semiBold);
  background: #fff;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  margin-left: 8px;
  font-size: 0.8rem;
}
.progressWpr.green .progressWprLeft {
  background: var(--green);
}
.progressWpr.green .smallCircle {
  border-color: #1d7353;
}
.progressWpr.green {
  background: #dbfff2;
}
.progressWpr.green .rightAngleIcon svg path {
  fill: var(--green);
}
.progressWpr.orange .rightAngleIcon svg path {
  fill: var(--orange);
}
.progressWpr.blue .rightAngleIcon svg path {
  fill: var(--blue);
}
.progressWpr.orange .progressWprLeft {
  background: var(--orange);
}
.progressWpr.orange .smallCircle {
  border-color: #c89e13;
}
.progressWpr.orange {
  background: #fff3ca;
}

.progressWpr.blue .progressWprLeft {
  background: var(--blue);
}
.progressWpr.blue .smallCircle {
  border-color: #756cd8;
}
.progressWpr.blue {
  background: #f2e2fe;
}
.progressWpr.orange {
  top: 111px;
  left: 223px;
}
.progressWpr.green {
  top: 153px;
  left: 192px;
}
.progressWpr.blue {
  top: 199px;
  left: 293px;
}
.progressWpr.orange2 {
  top: 243px;
  left: 215px;
}
[class^="firework-"] {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.firework-1 {
  -webkit-animation: firework-sm 1.2s both infinite;
  animation: firework-sm 1.2s both infinite;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  top: 11px;
  left: 8px;
}
@keyframes firework-sm {
  0%,
  100% {
    opacity: 0;
  }
  10%,
  70% {
    opacity: 1;
  }
  100% {
    box-shadow: -0.8rem 0rem 0 #fff3ca, 0.8rem 0rem 0 #fff3ca,
      0rem -0.8rem 0 #fff3ca, 0rem 0.8rem 0 #fff3ca, 0.35rem -0.35rem 0 #fff3ca,
      0.35rem 0.35rem 0 #fff3ca, -0.35rem -0.35rem 0 #fff3ca,
      -0.35rem 0.35rem 0 #fff3ca;
  }
}
.costSavingProgram {
  transition: var(--normalSpeed);
}
.costSavingProgram div:hover {
  background: var(--green);
  color: var(--white);
}
.costSavingProgram div:hover span {
  background: var(--white);
}
.internalOrganization .productSubPoints {
  transition: var(--normalSpeed);
}
.internalOrganization .productSubPoints div:hover {
  background: var(--red);
  color: var(--white);
}
.internalOrganization .productSubPoints div:hover span {
  background: var(--white);
}
.internalOrganization .productSubPoints div:hover span svg path {
  fill: var(--red);
}
/* transaction */
.transactions {
  transition: var(--normalSpeed);
}
.transactions div:hover {
  background: var(--blue);
  color: var(--white);
}
.transactions div:hover span {
  background: var(--white);
}
.transactions div:hover span svg path {
  fill: var(--blue);
}

/* Testimonial CSS */
.testimonial {
  position: relative;
  padding: 40px 0;
  min-height: 250px;
  background: #fff;

}

.testimonialContent {
  padding-bottom: 20px;
  padding-top: 85px;
}
.testimonialContent.owl-carousel .owl-stage {
  padding-top: 60px;
}
.testimonialContent.owl-carousel  .owl-stage {
  transition: all 0.3s linear 0s !important;
}
/* LAYOUT FIX: Testimonials grid layout (March 22, 2026)
   Issue: .testimonialRow had no grid layout, causing 3 testimonials to stack vertically
   Solution: Added display: grid with 3 equal columns to display testimonials side-by-side
   This ensures EBS, Vattenfall, and Langenscheidt testimonials display in 3-column layout
*/
.testimonialRow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.testimonialContentItems {
  margin: 0 20px;
  padding: 130px 15px 40px;
  border-radius: 20px;
  border: 0;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.center .testimonialContentItems{
  height: 100%;
}
.testimonialClamp {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}
.readMoreBtnTestimonial {
  display: block;
  margin-top: 14px;
  border: 0;
  background: transparent;
  font-weight: var(--semiBold);
  font-size: 0.9rem;
  color: var(--primaryBlue, #003A9A);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
.readMoreBtnTestimonial:hover {
  text-decoration: underline;
}
.clientQuoteTextClamped {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}
.testimonialReadMore {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primaryBlue, #003A9A);
  text-decoration: none;
  text-align: center;
}
.testimonialReadMore:hover {
  text-decoration: underline;
}
.testimonialContentItems  .clientPic {
  position: absolute;
  top: 30px;
  left: calc(50% - 38px);
}
.testimonialContent  .owl-item.active.center {
  opacity: 1;
  transition: all 0.3s;
  background-image: url(../img/testimonialCenterBg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 6px;
  padding: 0 25px;
}
/* LAYOUT FIX: About-us page testimonials carousel (March 22, 2026)
   Issue: Testimonials on about-us page show 1 at a time (carousel) instead of 3 visible
   Solution: Configure carousel to show 3 items at once using owl-carousel responsive settings
*/
.testimonialContent.owl-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 0;
}
.testimonialContent.owl-carousel .owl-stage {
  padding-top: 0;
  display: contents;
}
.testimonialContent.owl-carousel .owl-item {
  display: block;
} 
.testimonialContent .owl-stage .owl-item {
  background-image: url(../img/testimonialLeftBg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 6px;
  padding: 0 49px;
}
.owl-item .clientQuoteText {
  height: 323px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 16;
  line-height: 20px;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: auto;
  font-size: 16px;
  position: relative;
}
.owl-item.center .clientQuoteText {
  height: 387px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 17;
  line-height: 23px;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: auto;
  font-size: 18px;
}
.testimonialContent .owl-item.active {
  opacity: 1;
  transition: all 0.3s;
 
}






.clientPic img {
  max-height: 80px;
  width: 80px !important;
  margin: 0 auto;
  border-radius: 10px;
  margin-top: 0;
}


.owl-item .clientName {
  margin-top: 15px;
}
.owl-item .clientName h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.owl-item.active.center .clientName h3 {
  font-size: 1.3rem;
  margin-bottom: 0;
}
.owl-item .clientName p {
  margin-bottom: 0;
}
.owl-item .clientQuoteText {
  color: var(--black800);
}

 .clientQuoteText {
  text-overflow: ellipsis;
  line-height: 22px;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 17px;
  text-align: justify;
  min-height: 464px;
}

.owl-carousel .owl-nav.disabled {
  display: block;
  position: absolute;
  top: 14px;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  left: calc(50% - 350px);
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  height: 50px;
  width: 50px;
  font-size: 35px;
  line-height: 17px;
  font-weight: var(--semibold);
  position: absolute;
  left: 0;
  background: var(--white);
  border-radius: 100%;
}
.testimonialInner .owl-carousel .owl-nav button.owl-next span,.testimonialInner .owl-carousel .owl-nav button.owl-prev span {
  position: absolute;
  top: 13px;
  left: 20px;
}
.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 0;
}
.owl-carousel .owl-nav button.owl-next span,
.owl-carousel .owl-nav button.owl-prev span {
  position: absolute;
  top: 4px;
  left: 9px;
}
/* Testimonial CSS End */

/* Footer Section  */

.footerSection {
  min-height: 300px;
  padding: 40px 0 10px;
  position: relative;
  background: #111a3a;
}
.footerCompanyLogowithText img {
  max-height: 45px;
}
.socialLinks {
  position: relative;
}
.socialLinksIconWpr {
  display: flex;
  align-items: center;
}
.socialIcons {
  margin-right: 10px;
}
.socialIcons svg {
  height: 29px;
  width: 29px;
}
.socialIcons a {
  display: block;
  transition: var(--normalSpeed);
  height: 29px;
  width: 29px;
}
.socialIcons a:hover {
  cursor: pointer;
}
.socialIcons:hover a svg path {
  fill: #111a3a;
}
.socialIcons:hover a {
  background: #fff;
  border-radius: 8px;
}
.disabled{
  opacity: 0.5;
}
.footerHeadings {
  margin-top: 10px;
  transition: var(--normalSpeed);
  -webkit-font-smoothing: antialiased;
  font-size: 1.3rem;
  font-weight: var(--medium);
  color: var(--white);
  line-height: 122%;
  position: relative;
}
.footerItemsList {
  margin-top: 35px;
  padding: 0;
  list-style: none;
}
.footerItemsList li a {
  position: relative;
  transition: var(--normalSpeed);
  color: var(--white);
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 23px;
  text-decoration: none;
  padding: 8px 0px;
  display: block;
  padding-left: 24px;
}
.termandCondition a.footerlinks:focus,.termandCondition a.footerlinks:active{
color:#fff;
}
.footerItemsList li a:before {
  content: "";
  height: 1.5px;
  width: 12px;
  position: absolute;
  background: var(--white);
  left: 5px;
  top: 15px;
  border-radius: 5px;
}
.footerItemsList li a:hover {
  padding-left: 30px;
}
.addressSubText {
  color: var(--black100);
  margin-top: 29px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 21px;
  text-decoration: none;
  padding: 8px 0px;
  display: block;
}
.email,
.phone {
  display: grid;
  align-items: center;
  height: 34px;
  grid-template-columns: 40px 1fr;
  margin-bottom: 8px;
}
.email a,
.phone a {
  display: block;
  text-decoration: none;
  font-weight: var(--semiBold);
  font-size: 1.02rem;
  color: #fff;
  position: relative;
  transition: var(--normalSpeed);
}
.email:hover a,
.phone:hover a {
  padding-left: 10px;
}
.footerContactUsButton {
  margin-top: 20px;
  display: flex;
  column-gap: 10px;
}
.footerContactUsButton .themeBtn {
  background-color: var(--blue) !important;
}
.bottomFooter {
  border-top: 1px solid rgba(255, 255, 255, 0.23);
  margin-top: 10px;
  padding: 10px 0;
}
.copyrightText {
  color: var(--white);
  margin-bottom: 10px;
  transition: all 0.5s;
  font-size: 0.9rem;
  line-height: 24px;
}
.termandCondition a {
  color: var(--white);
  margin-bottom: 10px;
  transition: all 0.5s;
  font-size: 0.9rem;
  line-height: 24px;
  text-decoration: none;
  padding: 0 15px;
}
.termandCondition a:hover{
  color:var(--white);
}
.socialIcons.isDisabled {
  opacity: 0.6;
}
.socialIcons.isDisabled:hover a svg path {
    fill: #111a3a;
}
.socialIcons.isDisabled:hover a{
background:#fff;
}
.termandCondition {
  text-align: right;
}
/* Footer Section End */
/* Contact Us Form */
.contactUsFixedForm {
  position: fixed;
  width: 400px;
  background: #eff2f7;
  right: 0;
  z-index: 8;
  top: 76px;
  border-radius: 5px 0 0 5px;
  padding: 20px 0;
  transition: var(--normalSpeed);
  transform: translateX(400px);
}
.contactUsFixedForm.show {
  box-shadow: -6px 15px 30px 0px rgb(0 0 0 / 8%);
  transform: translateX(0);
}
.closeBtn {
  background: var(--red);
  border-radius: 30px;
  display: flex;
  text-align: center;
  transition: var(--normalSpeed);
  align-items: center;
  opacity: 0.5;
  padding: 6px 7px;
}
.closeBtn:hover {
  opacity: 1;
}
.contactUsFormHeader h2 {
  transition: var(--normalSpeed);
  -webkit-font-smoothing: antialiased;
  font-size: 1.8rem;
  font-weight: var(--medium);
  color: var(--black900);
  position: relative;
  padding: 4px 40px;
  margin-bottom: 0;
  border-left: 5px solid var(--blue);
}
.contactUsFormHeader h2:after {
  content: "";
  background-image: url(../img/icons/squareIcon.svg);
  height: 40px;
  width: 40px;
  background-size: contain;
  position: absolute;
  left: -6px;
  background-repeat: no-repeat;
  top: -20px;
  border-radius: 8px;
}
.contactUsFormHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 20px;
}
.contactUsFormWrapper {
  padding: 25px 40px;
}
.contactUsFixedForm .contactUsFormInputs {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--black400);
  padding: 9px 10px;
  outline: none;
}
.contactUsFixedForm .contactUsFormInputs:focus {
  border-color: #ffeb3b;
  box-shadow: 0px 2px 4px 1px rgb(0 0 0 / 13%);
  font-weight: var(--medium);
}

/* Contact Us Form End */
.serviceOneMobileView,
.serviceTwoMobileView,
.serviceThreeMobileView {
  display: none;
}
.productOneMobileView,
.productTwoMobileView,
.productThreeMobileView,
.productFourMobileView,
.productFiveMobileView {
  display: none;
}
.chart--container {
  height: 100%;
  width: 100%;
  min-height: 530px;
}

.zc-ref {
  display: none;
}
/* Animations */
.aboutAnimation .boxWithIconContainer {
  transition: all 0.5s;
  transform: translateX(200px);
  opacity: 0;
}

.aboutAnimation.showAnimation .boxWithIconContainer {
  opacity: 1;
}
.aboutAnimation.showAnimation .boxWithIconContainer:nth-child(1) {
  transition: all 1s ease;
  transform: translateX(0px);
}
.aboutAnimation.showAnimation .boxWithIconContainer:nth-child(2) {
  transition: all 1.5s ease;
  transform: translateX(0px);
}
.aboutAnimation.showAnimation .boxWithIconContainer:nth-child(3) {
  transition: all 2s ease;
  transform: translateX(0px);
}
/* line animation */
.lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 100vw;
  z-index: 0;
  padding: 10vw;
  background: rgb(255,255,255);
  /* background: linear-gradient(90deg, transparent 0%, transparent 75%, rgb(250 250 250 / 75%) 75%, rgb(250 250 250 / 75%) 100%); */
  background:linear-gradient(90deg, transparent 0%, transparent 65%, rgb(123 111 227 / 10%) 75%, rgb(123 111 228 / 19%) 100%);
}
.lines .line {
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: 4%;
  background: rgb(255 255 255 / 23%);
}
.lines .line:nth-child(1) {
  margin-left: -2%;
}
.lines .line:nth-child(3) {
  margin-left: 2%;
}
.lines .line:nth-child(1)::after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  background-color: rgba(223, 213, 124, 0.70);
}

.lines .line:nth-child(3)::after {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
  background-color: rgb(46 204 113 / 70%);
}
.lines .line::after {
  content: "";
  display: block;
  position: absolute;
  height: 33px;
  width: 8px;
  top: 0;
  border-radius: 20px;
  left: -3px;
  background-color: rgb(124 139 223 / 70%);
  -webkit-animation: moveLeftBounces-one 50s linear infinite;
  animation: moveLeftBounces-one 50s linear infinite;
}
@-webkit-keyframes moveLeftBounces-one {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(550px);
    transform: translateY(550px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes moveLeftBounces-one {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.homeSectionAnimation{
  width: 100%;
    position: relative;
    min-height: 600px;
}
.homeSectionAnimationImage{
  height: 100%;
  bottom: 0;
  right: 0;
  width: 100%;
  position: absolute;
  background-image: url(../img/homeSectionAnimation/topImage1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 100% 45px;
  overflow: hidden;
  opacity: 1;
  z-index: 1;
  border-radius: 8px 0 0 8px;
}

.homeSectionPointer{
  background: rgb(255 255 255 / 95%);
    position: absolute;
    left: 0;
    z-index: 3;
    top: 100px;
    border-radius: 11px;
    animation: upDown 5s linear infinite;
    box-shadow: 0px 10px 23px 0px rgb(0 0 0 / 9%);
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 1.1rem;
    padding: 7px 15px 7px 7px;
    line-height: 1.1rem;
    color: #464646;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
}

.homeSectionPointer:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #3f51b5;
  z-index: -1;
  border-radius: 0px;
  transition: all 0.5s ease;
}
.homeSectionPointer.show:before{
  width:100%;
}
.homeSectionPointer:hover
{
  background:#e0f2ff;
  cursor: pointer;
}
.homeSectionPointer.show
{
  color:#fff;
}
.homeSectionPointer span{
  display: block;
  width: 30px;
  height: 30px;
  /* background-color: #fafafa; */
  /* border: 1px solid #eee; */
  background-image: url(../img/icons/tickpng.png);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  transition: all 0.3s ease;
  border-radius: 19px;
}
.homeSectionPointer:hover span {
  background-color: #5c94ff;
  background-image: url(../img/icons/tickpngWhite.png);
}
.homeSectionPointer.show span{
background-color:transparent;
background-image: url(../img/icons/tickpngWhite.png);

}
.homeSectionPointer.pointer1{

  left: 94px;
  top: 50px;
}
.homeSectionPointer.pointer1.show {
  animation: hideSelected1 1s ease;
  animation-delay: 0.5s;
}
@keyframes hideSelected1 {
  0%{
    left: 94px;
    top: 50px;
    opacity: 1;
  }
  100%{
    top: 427px;
    left: 246px;
    opacity: 0;
  }
}
.homeSectionPointer.pointer2{

  left: 45px;
  top: 481px;
}
.homeSectionPointer.pointer2.show {
  animation: hideSelected2 1s ease-in-out;
  animation-delay: 0.5s;
}
@keyframes hideSelected2 {
  0%{transform: translate(0, 0);
  opacity: 1;
  }
  100%{transform: translate(198px, -59px);
    opacity: 0;}
}
.homeSectionPointer.pointer3{
  left: 50px;
  top: 131px;
}
.homeSectionPointer.pointer3.show {
  animation: hideSelected3 1s ease;
  animation-delay: 0.5s;
}
@keyframes hideSelected3 {
  0%{
    left: 50px;
    top: 131px;
    opacity: 1;
  }
  100%{
    left: 224px;
    top: 429px;
    opacity: 0;
  }
}
.homeSectionPointer.pointer4{

  left: 20px;
  top: 222px;
}
.homeSectionPointer.pointer4.show {
  animation: hideSelected4 1s ease;
  animation-delay: 0.5s;
}
@keyframes hideSelected4 {
  0%{
    left: 20px;
    top: 222px;
    opacity: 1;
  }
  100%{
    left: 223px;
    top: 426px;
    opacity: 0;
  }
}
.homeSectionPointer.pointer5{

  left: 7px;
  top: 312px;
}
.homeSectionPointer.pointer5.show {
  animation: hideSelected5 1s ease;
  animation-delay: 0.5s;
}
@keyframes hideSelected5 {
  0%{
    left: 7px;
    top: 312px;
    opacity: 1;
  }
  100%{
    left: 224px;
    top: 423px;
    opacity: 0;
  }
}
.homeSectionPointer.pointer6{
  left: 11px;
  top: 400px;
}
.homeSectionPointer.pointer6.show {
  animation: hideSelected6 1s ease;
  animation-delay: 0.5s;
}
@keyframes hideSelected6 {
  0%{
    left: 11px;
  top: 400px;
    opacity: 1;
  }
  100%{
    left: 225px;
    top: 422px;
    opacity: 0;
  }
}
.homeSectionPointer.pointer7{
  left: auto;
  top: 250px;
  right: 0;
}
.homeSectionPointer.pointer8{
  left: 198px;
  top: 331px;
}
.homeSectionPointer.pointer9{
  right: 226px;
  top: 485px;
  left: auto;
}
.homeSectionPointer.pointer10{
  left: 50px;
  top: 473px;
}

/*--------------------------------------------------------------------------------- Service Page CSS */
.servicesSectionPage {
  padding-top: 0;
  background-image: url(../img/homebg3.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 89% 54px;
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
}
.obj1 {
  position: absolute;
  left: 9%;
  opacity: 0.4;
  transform: translateY(-50px);
}
.obj2 {
  position: absolute;
  left: -43px;
  border: 15px solid rgb(61 222 212 / 13%);
  border-radius: 900px;
  height: 250px;
  width: 250px;
  animation: fadebounce 3s infinite;
  top: -2px;
}
.obj3 {
  position: absolute;
  top: 21%;
  right: 48%;
  border: 20px solid rgb(129 221 109 / 10%);
  border-radius: 900px;
  height: 150px;
  width: 150px;
  animation: fadebounce 3s infinite;
}
.obj4 {
  position: absolute;
  top: 79%;
  opacity: 0.4;
  left: 0;
}
.obj4 img {
  max-width: 196px;
}
@keyframes fadebounce {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(20px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.servicesSectionPage:before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  background: rgba(36, 107, 173, 0.9);
  background: linear-gradient(
    135deg,
    rgba(36, 107, 173, 0.9) 0%,
    rgba(0, 200, 200, 0.9) 100%
  );
}
.servicePageRotatingServices {
  height: 500px;
  width: 500px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #fff; */
}
.servicePageHeader {
  padding-top: 80px;
}
.circularRotatingServices {
  height: 400px;
  width: 400px;
  border-radius: 100%;
  background: rgb(252 253 255 / 12%);
  border: 1px solid rgb(255 255 255 / 18%);
  position: relative;
  box-sizing: content-box;
  padding: 0;
  animation: orbit 30s infinite linear;
}
.circularRotatingServices:after,
.circularRotatingServices:before {
  content: "";
  height: 400px;
  width: 400px;
  border-radius: 100%;
  background: rgb(50 50 50 / 43%);
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(0.8);
}
.circularRotatingServices:after {
  transform: scale(0.6);
  background: url(../img/logoColored.svg);
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 204px 100%;
  z-index: 0;
  animation: orbit 30s infinite linear reverse;
}
.serviceImgBox .circularRotatingServices:after{
  content: 'Services';
  font-size: 3.5rem;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: repeat;
  background-color: #fff;
  background-image: url(../img/bgpattern.png);
}
.serviceImgBox .servicePageRotatingServices ,.serviceImgBox .circularRotatingServices{
  height: 500px;
  width: 500px;
}
.serviceImgBox  .circularRotatingServices:before{
  height: 500px;
  width: 500px;
  border-radius: 100%;
  background: var(--blue);
}
.serviceImgBox .circularRotatingServices:after{
  height: 500px;
  width: 500px;
}
.serviceImgBox .circularRotatingService {
  animation: orbit 30s infinite linear reverse;
  width: 150px;
  height: 150px;
  border-radius: 100%;
}

.serviceImgBox .circularRotatingService1{
  left: 176px;
  top: -15px;
}
.serviceImgBox .circularRotatingService:after{
  content: '';
  background-image: url(../img/bgpattern.png);
  opacity: 0.3;
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.serviceImgBox .circularRotatingService:before{
  content: '';
  height: 30px;
  width: 30px;
 animation:shoHide 3s linear infinite;
  background: #f5d198b8;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
}
@keyframes shoHide {
  0%{transform:scale(1)}
  50%{transform:scale(0)}
  100%{transform:scale(1)}
}
.serviceImgBox .circularRotatingService.circularRotatingService2:before{
  background: #98f5a3b8;
  animation-delay: 0.5s;
}
.serviceImgBox .circularRotatingService.circularRotatingService3:before{
  background: #f8bdbd;
  animation-delay: 01s;
}
.customSoftSer,
.ConsultingSoftSer,
.standardSoftSer{
  transform: scale(0);
  max-height: 0;
  max-width: 0;
  opacity: 0;
  transition: 01s ease;
}
.customSoftSer.show,
.ConsultingSoftSer.show,
.standardSoftSer.show{
  transform: scale(1);
  max-height: 100%;
  max-width: 100%;
  opacity: 1;
}
.serviceImgBox .circularRotatingService p{
  background: transparent;
  margin: 0;
  color: #fff;
}
.serviceImgBox .circularRotatingService6 {
  background-image: url(../img/icons/userMice4.jpeg);
  left: 171px;
  top: 327px;
}
.serviceImgBox .circularRotatingService2 {
  left: 3px;
    background: #4caf50;
    top: 224px;
}
.serviceImgBox .circularRotatingService3 {
  left: 354px;
  top: 224px;
}
.serviceImgBox .circularRotatingService4 {
  left: 53px;
  top: 92px;

}
.serviceImgBox .circularRotatingService5 {
  left: 384px;
  top: 100px;
}
.serviceImgBox .circularRotatingService6 {
  left: 205px;
  top: 411px;
}
.serviceImgBox .circularRotatingService6:before,
.serviceImgBox .circularRotatingService5:before,
.serviceImgBox .circularRotatingService4:before
{
  content: '';
  height: 20px;
  width: 20px;
  animation: shoHide 3s linear infinite;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
}
.serviceImgBox .circularRotatingService5:before{
  transition-delay: 0.5s;
}
.serviceImgBox .circularRotatingService6:before{
  transition-delay: 1s;
}
.serviceImgBox .circularRotatingServices {
  background: rgb(74 191 191 / 8%);
}
.obj1 img {
  max-height: 209px;
}
.servicePageHeader .homeSectionHeading {
  color: var(--white);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 13px;
}
.servicePageHeader .homeSectionHeading:after {
  content: none;
}
.servicePageSubHeader {
  font-size: 1.2rem;
  color: #eee;
  z-index: 2;
  position: relative;
  margin-top: -15px;
  display: flex;
  align-items: center;
  height: 31px;
  column-gap: 10px;
}
.servicePageSubHeader a:hover{
  color:yellow;
}
.servicePageSubHeader small{
  display: inline-block;
}
.circularRotatingService p {
  font-size: 1.3rem;
  color: #eee;
  z-index: 2;
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 31px;
  column-gap: 10px;
}
.servicePageSubHeader a {
  text-decoration: none;
  color: var(--white);
}
.servicePageSubHeader img {
  height: 16px;
  width: 8px;
}
.circularRotatingService {
  animation: orbit 30s infinite linear reverse;
  width: 200px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  border: 1px solid rgb(0 0 0 / 3%);
  box-shadow: 0px 3px 12px 1px rgb(0 0 0 / 6%);
}
.circularRotatingService1 {
  position: absolute;
  left: 104px;
  background: var(--orange);
  top: 26px;
}
.circularRotatingService2 {
  position: absolute;
  left: 2px;
  background: var(--red);
  top: 172px;
}
.circularRotatingService3 {
  position: absolute;
  background: #f06a6a;
  left: 209px;
  top: 171px;
}
.circularRotatingService4,
.circularRotatingService5,
.circularRotatingService6,
.circularRotatingService7 {
  height: 70px;
  width: 70px;
  background-image: url(../img/icons/userMice1.jpeg);
  background-size: cover;
  border-radius: 100%;
  position: absolute;
  animation: orbit 30s infinite linear reverse;
}
.circularRotatingService4 {
  background-image: url(../img/icons/userMice2.jpeg);
  left: 25px;
  top: 82px;
}
.circularRotatingService5 {
  background-image: url(../img/icons/userMice3.jpeg);
  left: 304px;
  top: 82px;
}
.circularRotatingService6 {
  background-image: url(../img/icons/userMice4.jpeg);
  left: 304px;
  top: 250px;
}
.circularRotatingService7 {
  background-image: url(../img/icons/userMice5.jpeg);
  left: 30px;
  top: 250px;
}

@keyframes orbit {
  100% {
    rotate: 1turn;
  }
}
.serivcePageList{
  padding: 40px 0 40px;
}
.servicePageSectionAlternateText{
  padding-top: 15px;
}
.servicePageSectionAlternateText h1{
  margin-bottom: 10px;
  transition: var(--normalSpeed);
  -webkit-font-smoothing: antialiased;
  font-size: 2rem;
  font-weight: var(--medium);
  color: var(--black900);
  line-height: 122%;
  position: relative;
}
/* .servicePageSectionAlternateText h1:after{
  content: attr(data-title);
  position: absolute;
  left: -111px;
  font-weight: 700;
  font-size: 4rem;
  color: var(--blue);
  top: 0;
  border-bottom: 2px solid #eee;
  padding-bottom: 21px;
} */
.servicePageSectionAlternateText p{
  color: #0d0e10;
  margin-bottom: 10px;
  transition: all 0.5s;
  font-size: 1.15rem;
  line-height: 27px;
  position: relative;
}
.bottomLeftToright{
  height: 80px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.servicePageorangeListItem .servicePageSectionAlternateText h1:after{
  color:var(--orange);
  
}
.servicePageorangeListItem  .bottomline svg path{
  stroke:var(--orange);
  
}
.servicePageGreenListItem .servicePageSectionAlternateText h1:after{
  color:var(--green);
  
}
.servicePageGreenListItem .bottomline svg path{
  stroke:var(--green);
}
.servicePageRightListBox{
  min-height: 300px;
  position: relative;
}
.servicePageRightListBox:before
{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  background-image: url(../img/blueObjectRight.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
    width:100%;
    height:100%;
}
.servicePageRightListBox svg {
  max-height: 500px;
  max-width: 500px;
  margin: 0 auto;
  display: block;
}
path.blueSquare {
  animation: fadebounce 3s infinite;
}
.clientLogoSingleSection {
  display: flex;
  justify-content: space-between;
  display: none;
}
.clientLogoSingleSection .clientlogo{
  filter: grayscale(1);
  border: 1px solid #ddd;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -1px;
}


/* chart css-------------------------------------------------- */
.heatMapWrapper {
  position: relative;
}
.heatMapWrapper .leftLabel {
  position: absolute;
  border: 0;
  font-weight: normal;
  bottom: 125px;
  transform: rotate(-90deg);
  left: -81px;
  font-size: 1.5rem;
}
.heatMapWrapper .rightLabel {
  position: absolute;
  border: 0;
  font-weight: normal;
  bottom: -54px;
  left: 115px;
  font-size: 1.5rem;
}
.numbersContainerHeatMap {
  border-left: 1px solid var(--black500);
  border-bottom: 1px solid var(--black500);
  display: grid;
  padding: 10px;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.heatMapWrapper {
  max-width: 100%;
  padding-top: 0;
  transform: scale(0.8);
}
.numbersContainerHeatMap div {
  border: 2px solid transparent;
  margin-right: -1px;
  margin-bottom: -1px;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--semiBold);
  font-size: 1.2rem;
  color: var(--white);
}
.numbersContainerHeatMap div{
  color: var(--black900);
  border: 2px solid var(--white);
}
.numbersContainerHeatMap div.red{background:rgb(255, 99, 132);color:var(--white);}
.numbersContainerHeatMap div.orange{background:var(--orange);color:var(--white);}
.numbersContainerHeatMap div.green{background: var(--green);color:var(--white);}
.numbersContainerHeatMap div:hover{
  color:var(--black900);
  background:var(--white);
}

.js-plotly-plot .plotly .main-svg {
  background: transparent !important;
}
/* chart css--------------------------------------------------End */

/* our Focus Section */
.focusBox {
  border: 1px solid #ebeef0;
  padding: 15px;
  height: 100%;
  position: relative;
  background-color: #fff;
  margin-right: -1px;
  transition: all 0.5s ease-in-out 0s;
  height: 245px;
  margin-bottom: -1px;
}

.ourFocusItemList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 0;
  margin-top: 30px;
}
.focusBox:hover{
  background: #dbfff2;
  cursor: pointer;
}
.featured-desc p {
  font-size: 1rem;
  color: var(--black800);
  height: 71px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-height: 22px;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.btnIcon svg path {
  stroke: var(--black800);
}
.btnIcon svg {
  height: 16px;
  width: 16px;
}
.btnIcon {
  margin-left: 10px;
  transition: all 0.3s ease;
}
.ourFocusItemList li:hover .btnIcon{
  margin-left: 15px;
}
.featured-icon-box a {
  text-decoration: none;
  font-size: 1.0rem;
  margin-top: 20px;
  font-weight: var(--semiBold);
  border-radius: 3px;
  color: var(--black900);
  display: inline-flex;
  align-items: center;
  padding: 6px 17px;
}
.focusBox:hover .featured-icon-box a
{
  background: var(--white);
}

.timelineSection .movingCubes li {
 
  animation: animate2 50s linear infinite;
  top: -150px;
}

.testimonialModal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000087;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  transform-origin: center center;
  transform:scale(0);
  opacity: 0;
  z-index: -1;
  padding: 15px;


}
.testimonialModal.show{
  transform:scale(1);
  opacity: 1;
  z-index: 999;
}
.testimonialmodalContentHeader {
  display: flex;
  justify-content: flex-end;
  padding: 10px;
}
.testimonialModalContent {
  display: block;
  /* height: 500px; */
  background: var(--white);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 7px 8px 14px 10px rgb(0 0 0 / 6%);

}
.testimobialModalContentBody {
  position: relative;
  padding: 30px;
}
.testimonialModalClientImage {
  height: 70px;
  position: absolute;
  top: 0;
  border-radius: 10px 0 0 0;
  width: 70px;
}
.testimonialModalClientName {
  position: absolute;
  left: 121px;
  font-size: 1.5rem;
  font-weight: var(--bold);
  line-height: 1.5rem;
  top: 22px;
}
.testimonialModalClientDescription {
  padding-top: 42px;
  font-size: 1.1rem;
  line-height: 1.8rem;
}


/* home Page Scroller */
.homePageScroller{
  width: 100%;
  position: relative;
}
.homePageScrollerInner {
  width: 100%;
  height: 100%;
  animation: upDown 5s linear infinite;
  padding-top: 45px;
}
.homePageScrollerInnerSections {
  height: 850px;
  width: 100%;

}
.ourFocusSection{
  background-color: var(--white);
  /* background-image: url(../img/focusSectionBG.svg); */
  padding: 80px 0;
  position: relative;
}
.ourFocusInner
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  position: relative;
}
.ourFocusStickyWrapper
{
  height: 100vh;
    position: sticky;
    top: 100px;
    /* background-image: url(../img/blueObject.png); */
    background-size: contain;
    background-repeat: no-repeat;
}
.ourFocusScrollerWrapper{
  position: relative;
  padding-left: 40px;
}
.ourFocusScrollerWrapper:before{
  content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-left: 2px dashed var(--black600);
    width: 3px;
    height: calc(100% + 40px);
}
.ourFocusScrollerWrapper:after {
  content: "";
  position: absolute;
  left: -7px;
  top: 0;
  background: var(--black600);
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.ourFocusScrollBox
{
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  animation: none !important;
  transition: none !important;
  opacity: 1 !important;
  position: relative;
  padding-top: 250px; 

}
.ourFocusScrollerWrapper .ourFocusScrollBox:first-child{
  /* padding-top: 250px;  */
}
.ourFocusStickyWrapper .headingAnimaitonContent {
  width: 181px;
}
.ourFocusStickyWrapper .headingAnimaitonContent::before{
  animation-name: OurFocusHeading;
}
@keyframes OurFocusHeading {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(150px);
    transform: translateX(150px);
  }
}
  .ourFocusScrollBox h2:before {
    content: "";
    width: 22px;
    position: absolute;
    left: -33px;
    top: 19px;
    border-top: 2px dashed var(--black700);
}
/* .pointesWrapperFocus{
  padding: 0;
  position: relative;
  overflow: hidden;
  padding-right: 20px;
}
.pointesWrapperFocus li{
  display: grid;
  grid-template-columns: 80px 1fr;
  border-radius: 8px;
  margin-bottom: 5px;
}

.pointesWrapperFocus li .pointsNumber{
  height: 60px;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 2rem;
  color: gray;
  border-radius: 8px 0 0 8px;
  position: relative;
  transform: translateX(-150px);
  opacity: 0;
  transition: all 1s ease;
}
.pointesWrapperFocus li .pointsText{
  height: 60px;
  background: #f06a6a;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  padding: 15px;
  color: #fff;
  font-size: 1.4rem;
  transition: all 1s ease;
  transform: translateX(203px);
  opacity: 0;
  position: relative;
}
.pointesWrapperFocus li .pointsText:before
{
  content: "";
  background: url(../img/dotPattern.svg);
  display: inline-block;
  position: absolute;
  right: 10px;
  width: 60px;
  height: 60px;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.pointesWrapperFocus li.show .pointsText,.pointesWrapperFocus li.show .pointsNumber{
  transform: translateX(0);
  opacity: 1;
}
.pointesWrapperFocus li .pointsText:after{
  content: '';
    position: absolute;
    border-style: solid;
    border-width: 12px;
    border-color: transparent transparent transparent #fff;
    left: -2px;
    top: 0px;
}
.pointesWrapperFocus li:nth-child(1) .pointsText{
  background: #ed6969;
  color: #fff;
}
.pointesWrapperFocus li:nth-child(1) .pointsNumber{
color:#ed6969;
border:1px solid #ed6969;
}
.pointesWrapperFocus li:nth-child(2) .pointsText{
  background: #549d7c;
    color: #fff;
}
.pointesWrapperFocus li:nth-child(2) .pointsNumber{
  color:#549d7c;
  border:1px solid #549d7c;
  }
.pointesWrapperFocus li:nth-child(3) .pointsText{
  background: #fb8f4d;
  color: #fff;
}
.pointesWrapperFocus li:nth-child(3) .pointsNumber{
  color:#fb8f4d;
  border:1px solid #fb8f4d;
  }
.pointesWrapperFocus li:nth-child(4) .pointsText{
  color: #fff;
  background: #635ac7;
}
.pointesWrapperFocus li:nth-child(4) .pointsNumber{
  color:#635ac7;
  border:1px solid #635ac7;
  }
.pointesWrapperFocus li:nth-child(5) .pointsText{
  color: #fff;
  background: #e96cf1;
}
.pointesWrapperFocus li:nth-child(5) .pointsNumber{
  color:#e96cf1;
  border:1px solid #e96cf1;
  }
.pointesWrapperFocus li:nth-child(6) .pointsText{
  color: #fff;
    background: #58c7c7;
}
.pointesWrapperFocus li:nth-child(6) .pointsNumber{
  color:#58c7c7;
  border:1px solid #58c7c7;
  }
.pointesWrapperFocus li:nth-child(7) .pointsText{
  background: #69c758;
  color: #fff;
}
.pointesWrapperFocus li:nth-child(7) .pointsNumber{
  color:#69c758;
  border:1px solid #69c758;
  }
.pointesWrapperFocus li:nth-child(8) .pointsText{
  background: #f2fdf9;
  color: #69c758;
} */
/* Project-Mulit project box Animation------------------------------------------------------------------Multi Project ---------------------- */
.productfeaturesAnimationOnScroll{position: relative;}
.multiProjectManagementFeaturesBox{
  width: 100%;
  top:0;
  left:0;
  height: 500px;
  position: absolute;
  overflow: hidden;
  opacity: 0;
  z-index: -999;
}
.multiProjectManagementFeaturesBox.show{
  opacity: 1;
  z-index: 1;
  }
.multiprojectFeatureBoxCenter{
  height: 250px;
    width: 250px;
    border-radius: 50%;
    position: absolute;
    top: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 500;
    background-repeat: repeat;
    background-color: #fff;
    border: 10px solid #e7e7e7;
    border-right-color: #f1bd6c;
    /* box-shadow: -8px 72px 91px 7px #ffa50024; */
    color: #767676;
    line-height: 29px;
    background-image: url(../img/bgpatternlight.png);
}

.multiprojectFeatureBoxCenter span{
  font-weight: 800;
}
.multiprojectFeatureBoxCenterPoint{
  width: 325px;
  height: 60px;
  border: 1px solid #f1bd6c;
  border-radius: 50px;
  position: absolute;
  right: 35px;
  top: 0;
  transition: all 0.3s ease;
}
.multiprojectFeatureBoxCenterPoint a{
  height: 58px;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 50px;
  border: 5px solid transparent;
  border-left-color: #f1bd6c;
  background: #fafafa;
  text-decoration: none;
  transition: all 0.3s ease;
}
.multiprojectFeatureBoxCenterPoint:hover a{
  background:#f1bd6c;
  cursor: pointer;
}
.multiprojectFeatureBoxCenterPoint .multiprojectFeatureBoxCenterPointIcon{
  height: 50px;
  width: 50px;
  border-radius: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  min-width: 50px;

}
.multiprojectFeatureBoxCenterPoint .multiprojectFeatureBoxCenterPointText{
  color: #464646;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  line-height: 23px;
}
.multiprojectFeatureBoxCenterPoint:hover .multiprojectFeatureBoxCenterPointText{
  color:#fff;
}
.multiprojectFeatureBoxCenterPoint.mpfP1 {
  top: 35px;
  transform: translate(266px, 10px);
  transition: all 01s ease;
  opacity: 0;
}
.multiprojectFeatureBoxCenterPoint.mpfP3 {
  top: 196px;
  transform: translate(80px, 10px);
  transition: all 0.3s ease;
  opacity: 0;
}
.multiprojectFeatureBoxCenterPoint.mpfP2 {
  top: 115px;
  transform: translate(162px, 10px);
  transition: all 0.5s ease;
  opacity: 0;
}
.multiprojectFeatureBoxCenterPoint.mpfP4 {
  top: 275px;
  transform: translate(162px, 10px);
  transition: all 0.5s ease;
  opacity: 0;
}
.multiprojectFeatureBoxCenterPoint.mpfP5 {
  top: 354px;
  transform: translate(266px, 10px);
  transition: all 01s ease;
  opacity: 0;
}
.multiProjectManagementFeaturesBox.show .multiprojectFeatureBoxCenterPoint{
transform: none !important;
opacity: 1 !important;
}
.multiprojectFeatureBoxCenterPoint:after{
  content: '';
  background-image: url(../img/OurFocus/point1.png);
  background-position: left center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: -1;
}
.multiprojectFeatureBoxCenterPoint.mpfP1:after{
  background-image: url(../img/OurFocus/point1.png);
  left: -46px;
  top: 20px;
}
.multiprojectFeatureBoxCenterPoint.mpfP2:after{
  background-image: url(../img/OurFocus/point2.png);
  left: -24px;
  top: 6px;

}
.multiprojectFeatureBoxCenterPoint.mpfP3:after{
  content: '';
  background-image: url(../img/OurFocus/point3.png);
  left: -18px;
  top: -8px;
}
.multiprojectFeatureBoxCenterPoint.mpfP4:after{
  content: '';
  background-image: url(../img/OurFocus/point4.png);
  left: -27px;
  top: -27px;
}
.multiprojectFeatureBoxCenterPoint.mpfP5:after{
  content: '';
  background-image: url(../img/OurFocus/point5.png);
  left: -49px;
  top: -40px;
}


.productFeatureCostSavingProgram .multiprojectFeatureBoxCenter {
  border-color: #e7e7e7;
  border-right-color: #5da283;
}
.productFeatureCostSavingProgram .multiprojectFeatureBoxCenterPoint a {
  border-left-color: #5da283;
}
.productFeatureCostSavingProgram .multiprojectFeatureBoxCenterPoint {
  border-color: #5da283;
}
.productFeatureCostSavingProgram .multiprojectFeatureBoxCenterPoint:hover a {
  background: #5da283;
  cursor: pointer;
}

.productFeatureInternalOrganization .multiprojectFeatureBoxCenter {
  border-color: #e7e7e7;
  border-right-color: #f06a6a;
}
.productFeatureInternalOrganization .multiprojectFeatureBoxCenterPoint a {
  border-left-color: #f06a6a;
}
.productFeatureInternalOrganization .multiprojectFeatureBoxCenterPoint {
  border-color: #f06a6a;
}
.productFeatureInternalOrganization .multiprojectFeatureBoxCenterPoint:hover a {
  background: #f06a6a;
  cursor: pointer;
}


.productFeatureTransaction .multiprojectFeatureBoxCenter {
  border-color: #e7e7e7;
  border-right-color: #635ac7;
}
.productFeatureTransaction .multiprojectFeatureBoxCenterPoint a {
  border-left-color: #635ac7;
}
.productFeatureTransaction .multiprojectFeatureBoxCenterPoint {
  border-color: #635ac7;
}
.productFeatureTransaction .multiprojectFeatureBoxCenterPoint:hover a {
  background: #635ac7;
  cursor: pointer;
}

/* Project-Mulit project box Animation----------------------------------------------------------------------------------------End */
.ourFocusPoints{
  padding: 0;
    position: relative;
    overflow: hidden;
    padding-right: 20px;
    height: 500px;
}

.ourFocusPoints .circleBox{
  background-image: url(../img/OurFocus/circularFocus.png);
  height: 300px;
  width: 300px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 93px;
  left: 4px;
}
.cricleArrowWrapper{

    position: absolute;
    left: 127px;
    transform-origin: center center;
    top: 123px;
}

.cricleArrowWrapper .arrowImg{  
  background-image: url(../img/OurFocus/FocusArrow1.png);
  width: 241px;
  height: 59px;
  background-size: contain;
  background-repeat: no-repeat;
}
.cricleArrowWrapper .arrowText{
  position: absolute;
  left: 222px;
  transform-origin: left top;
  top: 14px;
  width: 313px;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #767676 !important;
}
/* animation arrow1 */
.cricleArrowWrapper.ourFocusPointsArrow1 .arrowImg{
  background-image: url(../img/OurFocus/FocusArrow3.png);
  transform: rotate(-45deg);
}
.cricleArrowWrapper.ourFocusPointsArrow1 .arrowText{
  top: -50px;
  left: 174px;
  width: 313px;
  color: #ffa523;
}
.cricleArrowWrapper.ourFocusPointsArrow1{
  transform: translate(147px, -134px);
  opacity: 0;
  transition: all 1s ease;
}
.cricleArrowWrapper.ourFocusPointsArrow1 .arrowText{
  transition: all 1s ease;
  transition-delay: 0.5s;
  opacity: 0;
  overflow: hidden;
  max-height: 0;
}
.cricleArrowWrapper.ourFocusPointsArrow1.show .arrowText{
  opacity: 1;
  overflow: hidden;
  max-height: 100%;
}
.cricleArrowWrapper.ourFocusPointsArrow1.show{
  opacity: 1;
  transform: none;
}
/* Animation Arrow2 */

.cricleArrowWrapper.ourFocusPointsArrow2 .arrowImg{
  background-image: url(../img/OurFocus/FocusArrow2.png);
  transform: rotate(-22deg);
}
.cricleArrowWrapper.ourFocusPointsArrow2 .arrowText{
  top: -24px;
  left: 195px;
  width: 313px;
  color: #f64040;
}
.cricleArrowWrapper.ourFocusPointsArrow2{
  transition: all 1s ease;
  left: 151px;
  top: 165px;
  transform: translate(147px, -92px);
  opacity: 0; 
}
.cricleArrowWrapper.ourFocusPointsArrow2 .arrowText{
  transition: all 1s ease;
  transition-delay:0.5s;
  opacity: 0;
  overflow: hidden;
  max-height: 0; 
}
.cricleArrowWrapper.ourFocusPointsArrow2.show .arrowText{
  opacity: 1;
  overflow: hidden;
  max-height: 100%;
}
.cricleArrowWrapper.ourFocusPointsArrow2.show{
  opacity: 1;
  transform: none;
}
/* Animation Arrow3 */
.cricleArrowWrapper.ourFocusPointsArrow3 .arrowImg{
  background-image: url(../img/OurFocus/FocusArrow5.png);
  transform: rotate(0);
}
.cricleArrowWrapper.ourFocusPointsArrow3 .arrowText{
  top: 12px;
  left: 213px;
    width: 313px;
    color: #5da283;
}
.cricleArrowWrapper.ourFocusPointsArrow3{
  transition: all 1s ease;
    top: 210px;
    left: 160px;
    transform: translate(200px, 0px);
  opacity: 0;
}
.cricleArrowWrapper.ourFocusPointsArrow3 .arrowText{
  transition: all 1s ease;
  transition-delay: 0.5s;
  opacity: 0;
  overflow: hidden;
  max-height: 0;
}
.cricleArrowWrapper.ourFocusPointsArrow3.show .arrowText{
  opacity: 1;
  overflow: hidden;
  max-height: 100%;
}
.cricleArrowWrapper.ourFocusPointsArrow3.show{
  opacity: 1;
  transform: none;
}
/* Animation Arrow4 */
.cricleArrowWrapper.ourFocusPointsArrow4 .arrowImg{
  background-image: url(../img/OurFocus/FocusArrow4.png);
  transform: rotate(22deg);
}
.cricleArrowWrapper.ourFocusPointsArrow4 .arrowText{
  top: 45px;
  left: 195px;
  width: 313px;
  color: #a353ea;
}
.cricleArrowWrapper.ourFocusPointsArrow4{
  transform: translate(114px, 61px);
  opacity: 0; 
  transition: all 1s ease;
  top: 256px;
  left: 149px;
}
.cricleArrowWrapper.ourFocusPointsArrow4 .arrowText{
  transition: all 1s ease;
  transition-delay: 0.5s;
  opacity: 0;
  overflow: hidden;
  max-height: 0;
}
.cricleArrowWrapper.ourFocusPointsArrow4.show .arrowText{
  opacity: 1;
  overflow: hidden;
  max-height: 100%;
}
.cricleArrowWrapper.ourFocusPointsArrow4.show{
  opacity: 1;
  transform: none;
}
/* Animation Arrow5 */
.cricleArrowWrapper.ourFocusPointsArrow5 .arrowImg{
  background-image: url(../img/OurFocus/FocusArrow1.png);
  transform: rotate(45deg);
}
.cricleArrowWrapper.ourFocusPointsArrow5 .arrowText{
  top: 78px;
  left: 176px;
  width: 313px;
  color: #61cecb;
}
.cricleArrowWrapper.ourFocusPointsArrow5{
  transform: translate(37px, 58px);
  opacity: 0;
  transition: all 1s ease;
  top: 296px;
  left: 122px;
}
.cricleArrowWrapper.ourFocusPointsArrow5 .arrowText{
  transition: all 1s ease;
  transition-delay: 0.5s;
  opacity: 0;
  overflow: hidden;
  max-height: 0;
}
.cricleArrowWrapper.ourFocusPointsArrow5.show .arrowText{
  opacity: 1;
  overflow: hidden;
  max-height: 100%;
}
.cricleArrowWrapper.ourFocusPointsArrow5.show{
  opacity: 1;
  transform: none;
}
/* Animation Arrow End */
.animationDelay05{animation-delay: 0.5s;}
.animationDelay10{animation-delay: 1s;}
.animationDelay15{animation-delay: 1.5s;}
.animationDelay20{animation-delay: 2s;}
.animationDelay25{animation-delay: 2.5s;}
.transactions .fillNone path {
  fill: none;
}
.contactUsInputsWpr{
  position: relative;
}
.contactUsFormInputs.hasError {
  border: 1px solid #ff9c9c;
}
.error {
  position: absolute;
  top: 10px;
  font-size: 0.8rem;
  color: #ff6767;
  right: 7px;
}
.successMsg {
  color: darkgreen;
  background: rgb(71 237 71 / 14%);
  padding: 6px 15px;
  border: 1px solid #66df66;
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 1rem;
  display: none;
}
.pointswithIcon{
  position: relative;
  padding-left: 20px;
}
.pointswithIcon:after{
  content: attr(data-title);
  position: absolute;
  left:-2px;
  top: 1px;
  color: blue;
}
.pointswithIcon.red:after{
  color:var(--red);
}
.pointswithIcon.green:after{
  color:var(--green);
}
.pointswithIcon.orange:after{
  color:var(--orange);
}
.pointswithIcon.blue:after{
  color:var(--blue);
}
.onlyForMobileView{
  display: none;
  position: relative;
  height: auto;
}
.servicesDetailsWithScroll .onlyForMobileView {
  display: none;
}
/* About us page----------------------------------------------------------------------------------------------------------------- */
.customerImageSection {
  height: 245px;
  width: 293px;
  background-image: url(../img/homeSectionAnimation/aboutUsPageImagebg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}
img.customerIMG {
  border-radius: 8px;
}


.customerImageHolder {
  padding-top: 42px;
  padding-left: 29px;
  filter: grayscale(1);
}
.boxGraySection{
  padding: 15px;
  border: 1px solid #fafafa;
  border-radius: 10px;
  margin: 30px 0;
  background: ghostwhite;
}
.boxwithBorderOnly {
  padding: 15px;
  margin: 0 0;
}
.paragraphWithbulletsPoints {
  position: relative;
  padding-left: 25px;
}
.paragraphWithbulletsPoints:after{
  content: attr(data-title);
    position: absolute;
    left: 0;
    top: -3px;
    color: var(--blue);
    font-size: 1.2rem;
}
.paragraphWithbulletsPoints.checkedIcon:before{
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  background-image: url(../img/icons/tickIconBlue.png);
  height: 24px;
  width: 24px;
  background-size: 19px;
  background-repeat: no-repeat;
}
.boxwithBorderOnly .paragraphWithbulletsPoints:after{
  top: -3px;
  font-size: 1.2rem;
}
.paragraphWithbulletsPoints p {
  font-size: 1rem;
  font-weight: 600;
}
.boxwithBorderOnly .paragraphWithbulletsPoints p {
  margin-bottom: 4px;
}
.center h1,.center p {
  text-align: center;
}
.servicePageSectionAlternateText.center {
  max-width: 600px;
  margin: 0 auto;
}
.mt40{
  margin-top: 40px;
}
.mb40{
  margin-bottom: 0;
}
.achievementImageHolder {
  padding-top: 63px;
  display: flex;
  justify-content: flex-end;
}
.internalOrgInnerPage{
  position: relative;
  min-height: 500px;
}
.achievementImageHolder img
{
  width: 100%;
  border-radius: 10px;
  /* filter: hue-rotate(45deg); */
}
.quoteText {
  font-weight: 500;
  font-style: italic;
  margin-top: 30px;
  margin-bottom: 33px !important;
}
.quoteText i{
  color: var(--blue);
    font-weight: 600;
    font-size: 29px;
}
.colorGreen{
  color:var(--green);
  font-weight: 600;
}
.colorBlue{
  color:var(--blue);
  font-weight: 600;
}
.colorOrange{
  color:var(--orange);
  font-weight: 600;
}
.colorRed{
  color:var(--red);
  font-weight: 600;
}
.servicePageSectionAlternateText .innerofSubPoints {
  font-size: 1.1rem;
  padding-left: 15px;
  border-left: 1px solid #c1c1ff;
  margin-left: 9px;
}
.innerofSubLevel {
  padding-left: 25px;
}
.innerofSubLevel .paragraphWithbulletsPoints:after {
  font-size: 1rem;
  top: 1px;
  font-size: 0;
  height: 2px;
  width: 10px;
  background: var(--blue);
  top: 11px;
  border-radius: 3px;
}
.innerofSubLevel .paragraphWithbulletsPoints {
    padding-left: 15px;
}
.innerofSubLevel .paragraphWithbulletsPoints p {
  margin-bottom: 3px;
  line-height: 1.6rem;
  font-weight: 500;
}
.fontNormal{
  font-weight: 400 !important;
}
.serivcePageList .timelineWrapper.show {
  display: block;
  position: relative;
}
.productTransPage{
  position: relative;
  min-height: 500px;
}
.costSavingpage {
  position: relative;
  min-height: 500px;
}
.timeCardMgmtPage
{
  position: relative;
  min-height: 417px;
  background: #f8f8f9;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  margin-top: 24px;
}
.timeCardMgmtPage .timelineProjects {
  background: #fff;
}
.timeCardMgmtPage .timelineWrapper.show {
  margin-top: 0;
  height: auto;
}
.multiproductPage {
  position: relative;
  min-height: 500px;
}
.sectionmainTitle {
  color: var(--blue);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0 0 4px;
}
.modulesLitwrapper {
  padding: 50px 0;
}
a,a:hover,a:focus
{
  text-decoration:none;
  color:inherit;
}
.boxAboutKey {
  position: relative;
}
.flipBox{
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0px 1px 40px -1px rgb(0 0 0 / 6%);
  position: relative;
  margin-bottom: 30px;
  width: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
}
.servicePageSectionAlternateText .innerofSubPoints {
  font-size: 15px;
  line-height: 21px;
}
.flipBox .themeBtn.outline,.flipBox .themeBtn.outline:hover {
  margin-top: 0 !important;
  border: 0 !important;
  font-weight: 500;
  background: transparent !important;
}
.flipBox h4 {
  font-size: 21px;
    min-height: 46px;
    display: flex;
    align-items: center;
    line-height: 22px;
}
.flipboxIcon {
  height: 60px;
  width: 60px;
  position: relative;
  display: block;
  font-size: 0;
  background-image: url(../img/icons/iconmultiprojectBlue.png);
  margin-bottom: 20px;
  background-color: #fafafa;
  background-size: 38px;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
.flipBox:hover .flipboxIcon {
  background-color: #1c61d1;
}
.flipBox:hover .flipboxIcon{
  background-image: url(../img/icons/iconmultiprojectwhite.png); 
}
.flipboxIcon.costSaving{
  background-image: url(../img/icons/costSavingBlue.png); 
  background-repeat: no-repeat;
}
.flipBox:hover .flipboxIcon.costSaving{
  background-image: url(../img/icons/costSavingWhite.png); 
}
.flipboxIcon.internalOrg{
  background-image: url(../img/icons/internalOrgBlue.png); 
  background-repeat: no-repeat;
}
.flipBox:hover .flipboxIcon.internalOrg{
  background-image: url(../img/icons/internalOrgWhite.png); 
}
.flipboxIcon.transactionIconModule{
  background-image: url(../img/icons/transactBlue.png); 
  background-repeat: no-repeat;
}
.flipBox:hover .flipboxIcon.transactionIconModule{
  background-image: url(../img/icons/transactWhite.png); 
}
.flipboxIcon.timelineModule{
  background-image: url(../img/icons/timelineIconBlue.png); 
  background-repeat: no-repeat;
}
.flipBox:hover .flipboxIcon.timelineModule{
  background-image: url(../img/icons/timelineIconWhite.png); 
}
.flipBox p{
  height: auto;
  text-overflow: unset;
  display: block;
  -webkit-line-clamp: unset;
  line-height: 23px;
  -webkit-box-orient: unset;
  overflow: visible;
  min-height: auto;
  font-size: 18px;
}
.flipBox:hover {
  background: linear-gradient(90deg, #0C5ADBD4 0%, #0C5ADBD4 100%);
}
.flipBox:hover h4{ color:var(--white);}
.flipBox:hover p{color:var(--white);}
.flipBox:hover .themeBtn.outline{
  color: #ffff37!important;
  background: transparent !important;
  border-color: var(--white) !important;
}
.flipBox:hover .themeBtn.outline svg path{
  stroke:#ffff37 !important;
}
.flipBox:hover .themeBtn.outline:hover{
  color: #ffff37!important;
  background: transparent !important;
  border-color: var(--white) !important;
}
.flipBox:hover .themeBtn.outline:hover svg path{
  fill:#ffff37 !important;
  stroke:#ffff37 !important;
}
.ProductPageImageWrapper img{
  width: 100%;
}
.InnnerPageBanner {
  min-height: 500px;
  padding-top: 105px;
  position: relative;
  background: rgb(255,255,255);
  background: linear-gradient(90deg, transparent 0%, transparent 65%, rgb(123 111 227 / 10%) 75%, rgb(123 111 228 / 19%) 100%);
  background-image: url(../img/homeSectionAnimation/aboutUSPageBanner.png);
  overflow: hidden;
}
.InnnerPageBanner.modulePage
{
  background-image: url(../img/homeSectionAnimation/modulePageBanner.png);
}
.InnnerPageBanner.whyusPage
{
  background-image: url(../img/homeSectionAnimation/whyUSPageBanner.png);
}
.InnnerPageBanner.servicesPage
{
  background-image: url(../img/homeSectionAnimation/servicesPageBanner.png);
}
.InnnerPageBanner.modulePage .pageMainFeatureImage {
  max-height: 381px;
}
.InnnerPageBanner:before
{
  content: "";
    background-image: url(../img/bgpattern.png);
    background-repeat: repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.5;
}
.InnnerPageBanner .pageMainFeatureImage{
  position: relative;
  z-index: 1;
  max-width: 100%;
}
.InnnerPageBanner h1 {
  position: relative;
  font-weight: 500;
  font-size: 2.0rem;
}
.pagination{
  font-size: 1.2rem;
  color: #000;
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 40px;
}
.pagination a{
  text-decoration: none;
    color: #808385;
}
.pagination svg path{
  fill: #939292;
}
.subPageDescription{
  position: relative;
  font-size: 1.2rem;
  line-height: 1.7rem;
}
.moduleListWrapperCols {
  display: grid;
  grid-column-gap: 8px;
  grid-row-gap: 30px;
  min-height: 900px;
}
.moduleListWrapperCols.cols5 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.moduleListWrapperCols.cols4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
/* 
  LAYOUT FIX: Added missing cols3 class (March 22, 2026)
  Issue: mod.php was using .moduleListWrapperCols.cols3 but CSS class was not defined
  Result: Tiles were displaying in single column instead of 3-column grid
  Solution: Define grid-template-columns with 3 equal columns (1fr 1fr 1fr)
  This ensures service tiles on product pages display in proper 3-column layout
*/
.moduleListWrapperCols.cols3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.pagination small {

  color: #9f9d9d;
}
/* About us page----------------------------------------------------------------------------------------------------------------- About Us page end */

.phone a:hover,
.email a:hover
{
  color:#fff;
}























