 /***Typo Css Start****/
 @font-face {
  font-family: 'satoshibold';
  src: url('../fonts/satoshi-bold-webfont.woff2') format('woff2'), url('../fonts/satoshi-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
 }

 @font-face {
  font-family: 'satoshimedium';
  src: url('../fonts/satoshi-medium-webfont.woff2') format('woff2'), url('../fonts/satoshi-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
 }

 @font-face {
  font-family: 'satoshiregular';
  src: url('../fonts/satoshi-regular-webfont.woff2') format('woff2'), url('../fonts/satoshi-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
 }

 :root {
  --fontR-fm: "satoshiregular", sans-serif;
  --fontM-fm: "satoshimedium", sans-serif;
  --fontB-fm: "satoshibold", sans-serif;
  --page-width: 1230px;
  --base-size: 16px;
  --h1-size: 50px;
  --h2-size: 40px;
  --h3-size: 35px;
  --h4-size: 28px;
  --h5-size: 22px;
  --h6-size: 18px;
  --base-clr: #282938;
  --base-sec-clr: #222222;
  --base-sec-clr: #282C2F;
  --white-clr: #ffffff;
  --black-clr: #000000;
  --theme-clr: #7F2F2F;
  --theme-sec-clr: #B18731;
  --bg-clr: #222222;
  --bg-sec-clr: #27305D;
  --bg-light-clr: #E8E8E8;

  @media (max-width:1200px) {
   --base-size: 15px;
   --h1-size: 42px;
   --h2-size: 36px;
   --h3-size: 30px;
   --h4-size: 25px;
   --h5-size: 20px;
   --h6-sizea: 16px;
  }

  @media (max-width:992px) {
   --base-size: 15px;
   --h1-size: 38px;
   --h2-size: 32px;
   --h3-size: 28px;
   --h4-size: 22px;
   --h5-size: 18px;
   --h6-sizea: 15px;
  }

  @media (max-width:767px) {
   --h1-size: 32px;
   --h2-size: 26px;
   --h3-size: 22px;
   --h4-size: 18px;
   --h5-size: 16px;
   --h6-size: 14px;
  }

 }

 * {
  box-sizing: border-box;
  outline: none !important;
 }

 body {
  padding-top: 88px;
  margin: 0px;
  font-family: var(--fontR-fm);
  color: var(--base-clr);
  font-size: var(--base-size);
  line-height: 1.5;
  background-color: var(--white-clr);
  font-weight: 400;
 }

 p {
  margin: 0 0 22px 0;
  line-height: 1.4;
 }

 p a,
 li a {
  color: var(--theme-clr);
 }

 p a:hover,
 li a:hover {
  color: var(--theme-sec-clr);
 }

 strong,
 b {
  font-family: var(--fontM-fm);
 }

 img {
  max-width: 100%;
  height: auto;
  display: block;
 }

 ul,
 li,
 a {
  list-style: none;
  text-decoration: none;
  padding: 0px;
  margin: 0px;
 }

 h1,
 .h1 {
  font-size: var(--h1-size);
  color: var(--base-clr);
  font-weight: 400;
  margin: 0px 0px 30px 0px;
  font-style: normal;
  line-height: 1.2;
  font-family: var(--fontB-fm);
 }

 h1 span,
 .h1 span {
  font-family: var(--fontB-fm);
  color: var(--theme-clr);
 }

 h2,
 .h2 {
  font-size: var(--h2-size);
  font-weight: 400;
  margin: 0px 0px 25px 0px;
  line-height: 1.2;
  color: var(--base-clr);
  font-family: var(--fontB-fm);
 }

 h2 span,
 .h2 span {
  font-family: var(--fontB-fm);
  color: var(--theme-clr);
 }

 h3,
 .h3 {
  font-size: var(--h3-size);
  font-weight: 400;
  margin: 0px 0px 18px 0px;
  line-height: 1.2;
  color: var(--base-clr);
  font-family: var(--fontB-fm);
 }

 h3 span,
 .h3 span {
  font-family: var(--fontB-fm);
  color: var(--theme-clr);
 }

 h4,
 .h4 {
  font-family: var(--fontB-fm);
  font-size: var(--h4-size);
  font-weight: 400;
  margin: 0px 0px 15px 0px;
  line-height: 1.2;
  color: var(--base-clr);
  letter-spacing: 1px;
 }

 h4 span,
 .h4 span {
  font-family: var(--fontB-fm);
  color: var(--theme-clr);
 }

 h5,
 .h5 {
  font-size: var(--h5-size);
  font-weight: 500;
  margin: 0px 0px 10px 0px;
  line-height: 1.2;
  color: var(--base-clr);
  font-family: var(--fontB-fm);
  letter-spacing: 0.5px;
 }

 h6,
 .h6 {
  font-size: var(--h6-size);
  color: var(--base-clr);
  font-weight: 500;
  margin: 0px 0px 10px 0px;
  line-height: 1.3;
  font-family: var(--fontB-fm);
 }

 .h-tagline {
  width: 100%;
  font-size: 18px;
  font-family: var(--fontM-fm);
  margin-bottom: 8px;
  display: inline-block;
  line-height: normal;
 }

 .d-flex {
  display: flex;
  flex-flow: row wrap;
 }

 .jc-space-between {
  justify-content: space-between;
 }

 .jc-center {
  justify-content: center;
 }

 .f-center {
  align-items: center;
 }

 .f-start {
  align-items: flex-start;
 }

 .f-end {
  align-items: flex-end;
 }

 .text-center {
  text-align: center;
 }

 .text-left {
  text-align: left;
 }

 .text-right {
  text-align: right;
 }

 .img-zoom {
  overflow: hidden;
  width: 100%;
 }

 .img-zoom img {
  width: 100%;
  transition: 0.5s all;
 }

 .img-zoom:hover img {
  transform: scale(1.1);
 }

 section {
  width: 100%;
  padding: 70px 0
 }

 .top-narrow {
  max-width: 800px;
  width: 100%;
  margin: auto;
 }

 .scn-m-tb {
  margin-top: 15px;
  margin-bottom: 15px;
 }

 .section-p-no {
  padding: 0px;
 }

 .theme-clr {
  color: var(--theme-clr);
 }

 .theme-sec-clr {
  color: var(--theme-sec-clr);
 }

 .black-clr {
  color: var(--bkack-clr);
 }

 .white-clr {
  color: var(--white-clr);
 }

 .bg-clr {
  background-color: var(--bg-sec-clr);
 }

 .light-bg {
  background-color: var(--bg-light-clr);
 }

 .container-full {
  padding: 0px 35px;
  width: 100%;
 }

 .container {
  max-width: var(--page-width);
  padding: 0px 15px;
  margin: auto;
  width: 100%;
 }

 .cmn-btn {
  transition: 0.5s all;
  cursor: pointer;
  background: var(--theme-clr);
  border-radius: 100px;
  color: var(--white-clr);
  padding: 9px 28px 9px 28px;
  display: inline-block;
  border: none;
  font-size: calc(var(--base-size));
  vertical-align: middle;
  font-family: var(--fontB-fm);
  text-align: center;
  letter-spacing: 0.5px;
 }

 .cmn-btn:hover {
  background-color: var(--theme-sec-clr);
 }

 .cmn-bdr-btn {
  transition: 0.5s all;
  cursor: pointer;
  background: transparent;
  border-radius: 100px;
  color: var(--theme-clr);
  padding: 8px 28px 8px 28px;
  display: inline-block;
  border: none;
  font-size: calc(var(--base-size));
  vertical-align: middle;
  border: 1px solid var(--theme-clr);
  font-family: var(--latoR-fm);
  text-align: center;
  font-family: var(--fontB-fm);
  letter-spacing: 0.5px;
 }

 .cmn-bdr-btn:hover {
  background-color: var(--theme-clr);
  color: var(--white-clr);
 }

 /*Splide Slider*/
 .splide__arrow {
  background-color: #fff;
  opacity: 1;
  width: 40px;
  height: 40px;
  cursor: pointer;
 }

 .splide__pagination__page.is-active {
  background-color: var(--theme-clr);
  opacity: 1;
 }

 .splide__pagination li {
  margin: 0px 3px;
 }

 .splide__pagination__page {
  background-color: var(--white-clr);
  opacity: 1;
 }

 .splide__pagination {
  bottom: 1em;
 }

 /*Splide Slider*/
 .contact-info .contact-info-links {
  background-color: #fff;
  border-radius: 100%;
  padding: 16px;
  justify-content: center;
  width: 60px;
  height: 60px;
  position: fixed;
  top: calc(50% + 60px);
  right: 0;
  box-shadow: #ccc 0 0 8px;
  -webkit-box-shadow: #ccc 0 0 8px;
  transform: translate(-30px, -200px);
  display: flex;
  align-items: center;
  border: none;
  outline: none;
  z-index: 9;
  transition: all 400ms ease-in-out;
  opacity: 0;
  visibility: hidden;
 }

 .contact-info .contact-info-links.show {
  transform: translate(-40px, -230px);
  opacity: 1;
  visibility: visible;
 }

 .contact-info-btn {
  display: flex;
  align-items: center;
  position: fixed;
  margin: auto;
  background: var(--theme-sec-clr);
  font-size: 16px;
  text-decoration: none !important;
  padding: 10px 9px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: -3.4px;
  word-spacing: -5px;
  color: #FFF;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 99;
  height: 183px;
 }

 .contact-info-btn:hover {
  background: var(--theme-clr);
 }

 .contact-info .contact-info-links:nth-child(2) {
  transform: translate(-100px, -145px);
 }

 .contact-info .contact-info-links:nth-child(2).show {
  transform: translate(-110px, -145px);
 }

 .contact-info .contact-info-links:nth-child(3) {
  transform: translate(-100px, -40px);
 }

 .contact-info .contact-info-links:nth-child(3).show {
  transform: translate(-110px, -40px);
 }

 .contact-info .contact-info-links:nth-child(4) {
  transform: translate(-20px, 50px);
 }

 .contact-info .contact-info-links:nth-child(4).show {
  transform: translate(-30px, 50px);
 }
 
 
 
/* Inquiry model start*/
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
      transition: 0.5s all;
}
.inquirymodel.popup-overlay {
  opacity: 1;
  pointer-events: auto;
}
.popup-container {
    width: 95%;
    max-width: 1000px;
    background: #fff;
    border-radius: 18px;
    position: relative;
}
.popup-l-bottom {
    width: 100%;
}

.popup-content:before {
    content: '';
    background: linear-gradient(180deg, #7f2f2f, #1e1111);
    width: calc(100% - 40px);
    height: 270px;
    position: absolute;
    top: 20px;
    border-radius: 20px;
    left: 0px;
    right: 0px;
    margin: auto;
}


.popup-container .popup-close {
    position: absolute;
    top: -18px;
    right: -18px;
    font-size: 32px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    width: 38px;
    height: 38px;
    background-color: #fff;
    line-height: 1.2;
    text-align: center;
    border-radius: 100%;
    box-shadow: #999 0px 0px 10px;
}

.popup-content {
    display: flex;
    flex-flow: row wrap;
    padding: 20px;
}

.popup-left {
    width: 52%;
    padding: 35px 30px 35px 30px;
    color: #fff;
    display: flex;
    flex-flow: row wrap;
    position: relative;
    align-content: space-between;
}

.popup-left h2 {
    font-size: 44px;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #fff;
}
.popup-left h2 span {
    color: var(--theme-sec-clr);
}

.popup-left p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0px;
    
}

.popup-content .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    color: #000;
}

.popup-content .stats strong {
  font-size: 30px;
    display: block;
}

.popup-content .stats small {
    font-size: 16px;
    
}

.popup-right {
    width: 47%;
    padding: 30px 25px;
    position: relative;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: #999 0px 0px 20px;
    right: 1%;
    margin-top: 20px;
}

.popup-right h3 {
  font-size: 25px;
  margin-bottom: 12px;
      color: var(--bg-sec-clr);
}


.btn-submit:hover {
  background: #0b4be0;
}

.brand-section {
    margin-top: 28px;
    text-align: left;
    border-top: #ccc 1px solid;
    padding-top: 21px;
}

.brand-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--theme-sec-clr);
    margin-bottom: 14px;
}

.brand-image img {
  max-width: 100%;
  height: auto;
  opacity: 0.9;
}


.section-inner.thin.error404-content h1 {
    font-size: 40px;
}

.section-inner.thin.error404-content p {
    font-size: 18px;
}

.section-inner.thin.error404-content form input {
    padding: 10px 15px;
}

.section-inner.thin.error404-content form input.search-submit {
    background-color: var(--theme-clr);
    font-size: 16px;
}

/**CMS Page Start**/
.cmn-scn.cms-page {
    padding-bottom: 10px;
}
.cms-page strong {
    font-weight: normal;
    font-family: var(--fontB-fm);
    letter-spacing: 0.3px;
}

.cms-page ul, 
.cms-page ul li {
  list-style: disc;
}

.cms-page ol, 
.cms-page ol li {
  list-style: decimal;
}

.cms-page ul, 
.cms-page ol {
    padding-left: 15px;
    margin-bottom: 24px;
}

.cms-page ul li {
    margin: 4px 0px;
}

/**CMS Page End**/

 .clutch_review_section {
    background-color: #fafafa;
    padding: 20px 0;
    border-top: #ebebeb 1px solid;
}

.badges-group {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.clutch-widget-ratings {
    max-width: 130px;
    justify-content: center;
    display: flex;
}

.clutch-widget-button {
    max-width: 271px;
    margin-top: 18px;
}
@media(max-width: 1300px) and (max-height: 550px)  {
   .popup-right {
    padding: 20px 20px;
   
} 
.popup-container {
    max-width: 900px;
 
}
.popup-right h3 {
    font-size: 22px;
    margin-bottom: 5px;
 
}
.popup-left h2 {
    font-size: 38px;
    margin-bottom: 12px;
    line-height: 1.2;
    color: #fff;
}
.popup-content:before {
    height: 230px;
    
}
.popup-content .contact-form .input-field {
    font-size: 15px;
    height: 42px;
    width: 100%;
    margin-bottom: 8px;
    padding: 8px 10px;
   
}
.brand-title {
    font-size: 18px;
    margin-bottom: 10px;
}
.brand-section
 {
    margin-top: 18px;
    text-align: left;
    border-top: #ccc 1px solid;
    padding-top: 12px;
}
.popup-content .stats strong {
    font-size: 24px;
    
}
.popup-content .stats small {
    font-size: 15px;
}
}
@media(max-width: 767px){
  .popup-container .popup-close {
    position: absolute;
    top: -8px;
    right: -1px;
    font-size: 26px;
    width: 30px;
    height: 30px;
    line-height: 1.2;
 
}
.popup-left {
    width: 100%;
    padding: 0;
}

.popup-right {
    width: 100%;
    border-radius: 10px;
    padding: 20px 15px;
    margin-top: 0px;
}

.popup-left h2 {
    font-size: 22px;
}

.popup-content:before {
    height: 165px;
    border-radius: 10px;
    content: normal;
}

.popup-left p {
    font-size: 15px;
}

.popup-content .stats strong {
    font-size: 22px;
    margin-top: 10px;
}

.popup-right h3 {
    font-size: 20px;
}

.popup-content {
    overflow: auto;
    max-height: 90vh;
}

.popup-content .stats small {
    font-size: 14px;
}

.popup-content .stats {
    gap: 8px;
    padding-left: 15px;
}

.popup-l-top {
    background: linear-gradient(180deg, #7f2f2f, #1e1111);
    padding: 15px;
    border-radius: 10px;
}
}
 /* Inquiry model end*/
 
 .menu ul li ul li.case-study-menu a {
    cursor: pointer;
}
.casestudy-menu-close {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    background-color: #fff;
    border-radius: 100%;
    box-shadow: #9b9b9b 0 0 10px;
    text-align: center;
    line-height: 1.2;
    cursor: pointer;
}
 .casestudy-menu {
    position: absolute;
    left: 0px;
    top: 100%;
    right: 0px;
    max-width: 1200px;
    background-color: #fff;
    margin: auto;
    padding: 20px 30px;
    box-shadow: #4e4e4e 0 5px 5px;
    width: 100%;
    transition: 0.5s all;
    opacity: 0;
    pointer-events: none;
}
.casestudy-menu-open .casestudy-menu {
    opacity: 1;
    pointer-events: auto;
}
.casestudy-menu-inner h2 {font-size: 25px;margin-bottom: 6px;}

.casestudy-menu-list {
    display: flex;
    flex-flow: row wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding-top: 10px;
}

.casestudy-menu-list .casestudy-m-item {
    width: calc(16.44% - 10px);
    display: flex;
    gap: 15px;
    flex-flow: row wrap;
}

.casestudy-menu-list .casestudy-m-item .cm-item-img {
    max-width: 100%;
    height: 85px;
    border: #ccc 1px solid;
    padding: 3px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.casestudy-menu-list .casestudy-m-item .cm-item-img img {
  max-height: 100%;
}

.cm-item-content {
  display: none;
  width: calc(100% - 120px);
}

.cm-item-content .cm-item-title {
    display: inline-block;
    font-size: 15px;
    font-family: var(--fontB-fm);
    color: var(--base-clr);
    border-bottom: transparent 2px solid;
    line-height: 1.2;
    margin-bottom: 5px;
}

.cm-item-content .cm-item-desc {
    font-size: 14px;
    line-height: 1.2;
    display: inline-block;
    width: 100%;
    color: #8f8f8f;
}

.cm-item-content .cm-item-title:hover {border-color: var(--theme-clr);color: var(--theme-clr);}
 
.casestudy-menu a.cmn-btn {
    font-size: 12px;
    letter-spacing: 1.4px;
}

 /**Header Section Start**/
 .header-scn {
  width: 100%;
  background-color: var(--white-clr);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  transition: 0.5s all;
  padding-top: 8px;
  padding-bottom: 8px;
  min-height: 88px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
 }

 .header-inner {
  padding: 0px;
 }

 .fixed .header-scn {
  padding-top: 6px;
  padding-bottom: 6px;
  box-shadow: #00000047 2px 0px 10px;
  min-height: 74px;
 }

 .mobile-toggle {
  display: none;
 }

 .hdr-logo {
  margin: 0px;
  padding: 0px;
 }

 .hdr-logo img {
  transition: 0.5s all;
 }

 .fixed .hdr-logo img {
  max-width: 180px;
 }

 .menu ul {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
 }

 .menu ul li {
  font-size: 15px;
  font-family: var(--fontB-fm);
  margin: 0px 18px;
  padding: 12px 0px;
 }

 .menu ul li a {
  color: var(--black-clr);
  transition: 0.5s all;
  font-family: var(--latoR-fm);
 }

 .menu ul li.menu-item-has-children>a:after {
  content: '';
  width: 6px;
  height: 6px;
  border-left: var(--theme-clr) 2px solid;
  border-bottom: var(--theme-clr) 2px solid;
  display: inline-block;
  transform: rotate(-45deg);
  margin-left: 8px;
  top: -3px;
  position: relative;
 }

 .menu ul li:hover a,
 .menu ul li.active a {
  color: var(--theme-sec-clr)
 }

 .menu ul li ul {
  position: absolute;
  left: -20px;
  top: 100%;
  width: 270px;
  background-color: #fff;
  margin-top: 20px;
  transition: 0.5s all;
  display: none;
  margin-left: 0px;
  box-shadow: #ccc 0px 6px 6px;
  border-top: #efefef 1px solid;
 }

 .menu ul li:hover ul {
  display: flex;
  margin-top: 0px;
 }

 .menu ul li {
  position: relative;
 }

 .menu ul li ul li {
  margin: 0px;
  width: 100%;
  border-bottom: #ccc 1px solid;
  padding: 0px;
 }

 .menu ul li ul li a {
  padding: 10px 20px;
  display: inline-block;
  font-size: 15px;
  width: 100%;
  color: var(--base-clr) !important;
  line-height: 1.3;
 }

 .menu ul li ul li:hover a {
  color: var(--theme-sec-clr) !important;
 }

 .hdr-btn {
  margin-left: 30px;
 }
 
 .menu ul li.nav-technologies>a {
    pointer-events: none;
}

.menu ul>li.nav-technologies {
    cursor: pointer;
}

 @media(min-width:992px) {
  .menu ul li:has(.sub-menu .sub-menu) {
   position: static;
  }

  .hdr-right {
   position: relative;
  }

  .menu ul li:has(.sub-menu .sub-menu)>.sub-menu {
   width: 800px;
   display: none;
   align-items: flex-start;
   flex-flow: row wrap;
   padding: 10px;
   margin-left: -10%;
  }
  .menu ul li.nav-technologies:has(.sub-menu .sub-menu)>.sub-menu {
    width: 1200px;
    margin-left: -28%;
  }
  
    .menu ul li.nav-technologies:has(.sub-menu .sub-menu) .sub-menu li { 
         width: 20%;
    }

  .menu ul li:has(.sub-menu .sub-menu):hover>.sub-menu {
   display: flex;
  }

  .menu ul li:has(.sub-menu .sub-menu) .sub-menu li {
   width: 33.33%;
   padding: 10px;
   border: none;
  }

  .menu ul li:has(.sub-menu .sub-menu) .sub-menu li ul.sub-menu {
   position: static;
   pointer-events: auto;
   width: auto;
   box-shadow: none;
   padding: 7px 0;
   margin: 0px;
  }

  .menu ul li:has(.sub-menu .sub-menu) .sub-menu li ul.sub-menu li {
   width: 100%;
   padding: 0px;
   box-shadow: none;
   border: none;
   font-family: var(--fontR-fm);
  }

  .menu ul li:has(.sub-menu .sub-menu) .sub-menu li ul.sub-menu li a {
   padding: 0px;
   margin: 8px 0px;
   line-height: normal;
   color: #000 !important;
  }

  .menu ul li:has(.sub-menu .sub-menu) .sub-menu li a {
   padding: 4px 0;
   border-bottom: none;
  }

  .menu ul li:has(.sub-menu .sub-menu) .sub-menu li a:after {
   content: normal;
  }

  .menu ul li:has(.sub-menu .sub-menu) .sub-menu li ul.sub-menu li a:hover {
   color: var(--theme-clr) !important;
  }

 }
  @media(min-width:1200px) and (max-width:1300px) {
 .menu ul li.nav-technologies:has(.sub-menu .sub-menu)>.sub-menu {
        width: 1150px;
        margin-left: -25%;
    }
  }  
  
   

 /**Header Section End**/

 /***Footer section start***/

 .ftr-contactinfo {
  padding: 60px 0;
 }

 .contactinfo {
  background-color: var(--bg-clr);
  color: var(--white-clr);
  border-radius: 20px;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
 }

 .contactinfo .fc-info-item {
  width: 32%;
  padding: 30px 30px;
  min-height: 100px;
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
  align-content: flex-start;
 }

 .contactinfo .fc-info-item .fc-info-label {
  width: 100%;
  font-family: var(--fontB-fm);
  letter-spacing: 0.6px;
  margin-bottom: 4px;
 }

 .contactinfo .fc-info-item a {
  color: var(--white-clr);
 }

 .contactinfo .fc-info-item a:hover {
  color: var(--theme-sec-clr);
 }

 .contactinfo .fc-info-item:nth-child(1),
 .contactinfo .fc-info-item:nth-child(2) {
  width: 18%;
 }

 .footer-scn {
  background-color: var(--white-clr);
  color: var(--base-clr);
  width: 100%;
 }

 .ftr-desc {
  width: 100%;
  padding: 20px 0px;
  color: #2c2c2c;
 }

 .ftr-top-inner {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding-top: 65px;
  padding-bottom: 25px;
  border-top: #EAECF0 1px solid;
 }

 .ftr-top-inner .ftr-item {
  width: 24%;
  padding: 0px 15px;
 }

 .ftr-top-inner .ftr-item:nth-child(1) {
  width: 29%;
 }

 .ftr-top-inner .ftr-item:nth-child(2) {
  width: 22%;
  padding-left: 60px;
 }

 .ftr-top-inner .ftr-title {
  font-size: 18px;
  columns: var(--black-clr);
  width: 100%;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: capitalize;
  font-family: var(--fontB-fm);
  color: #303030;
  line-height: normal;
 }

 .ftr-menu li {
  width: 100%;
  margin: 8px 0;
  font-size: 16px;
 }

 .ftr-menu li a {
  color: #2c2c2c;
  font-family: var(--fontM-fm);
  transition: 0.5s all;
 }

 .ftr-menu li a:hover {
  color: var(--theme-clr);
 }

 .ftr-logo {
  margin-bottom: 20px;
 }

 .copyright-scn {
  width: 100%;
  padding: 10px 0 20px 0px;
  font-size: 14px;
 }

 .ftr-b-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-top: #ccc 1px solid;
  color: #667085;
  padding-top: 25px;
 }

 .ftr-b-inner a {
  color: #667085;
  text-decoration: underline;
 }

 .ftr-b-inner a:hover {
  text-decoration: none;
 }

 .ftr-b-left {
  color: #2c2c2c;
  font-size: 16px;
  font-family: 'satoshimedium';
 }

 .ftr-b-left a {
  color: var(--theme-clr);
  transition: 0.5s all;
 }

 /***Footer section end***/

 /***Banner section Start***/

 .banner-scn {
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white-clr);
  width: 100%;
  padding: 0px;
  position: relative;
 }
.banner-img {
    width: 100%;
}

.banner-img img {
    width: 100%;
    height: auto;
}
 .banner-scn .container {
  position: relative;
  z-index: 4;
 }

 .banner-scn video.hero-video {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
 }

 /*.banner-scn:has(video):before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  content: '';
 }*/

 .banner-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: auto;
  font-size: 24px;
  text-align: center;
 }

 .banner-inner h2 {
  font-size: 80px;
  width: 100%;
  color: var(--white-clr);
  text-align: center;
 }

 .banner-inner h2 span {
  background-color: var(--theme-clr);
  min-width: 289px;
  min-height: 86px;
  padding: 3px 5px;
  border-radius: 16px;
  color: var(--white-clr);
 }

 .banner-item {
  width: calc(25% - 10px);
  margin: 0px 5px 0px 5px;
  position: relative;
  z-index: 1;
 }
.banner-item-cont .bnr-item-title {
    font-size: 17px;
    display: block;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 4px;
}

.banner-item-cont .bnr-item-desc {
    font-size: 15px;
    line-height: 1.2;
    display: inline-block;
}

.banner-item:nth-child(1) .banner-item-img {
  transform: rotate(6deg);
  position: relative;
  z-index: 1;
 }

 .banner-item:nth-child(2) .banner-item-img {
  transform: rotate(-5deg);
  position: relative;
  
 }

 .banner-item:nth-child(3) .banner-item-img {
  transform: rotate(1deg);
 }

 .banner-item:nth-child(4) .banner-item-img {
  transform: rotate(-8deg);
    position: relative;
    z-index: 1;
    
    left: -10px;
 }
  .banner-item:nth-child(2) {
      top: 20px;
  }
   .banner-item:nth-child(4) {
     top: 4px;
  }
 .banner-item:nth-child(1) .banner-item-cont {
     transform: rotate(6deg);
 }
 
 .banner-item:nth-child(2) .banner-item-cont {
     transform: rotate(-5deg);
 }
 
 .banner-item:nth-child(3) .banner-item-cont {
     transform: rotate(1deg);
 }
 
 .banner-item:nth-child(4) .banner-item-cont {
     transform: rotate(-8deg);
 }
 
  .banner-item:hover .img-zoom img {
    transform: scale(1.1);
}

.banner-item-cont {
    position: absolute;
    bottom: 10px;
    z-index: 9;
    padding: 16px 10px 16px 20px;
    color: #fff;
}

.banner-item-img:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
   background: #000000;
background: linear-gradient(0deg,rgba(0, 0, 0, 0.63) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 2;
}

 .banner-list {
  width: calc(100% + 20px);
  margin-left: -10px;
  position: relative;
  z-index: 3;
  margin-top: -40px;
 }

 .banner-item-img img {
  width: 100%;
 }

 .banner-item-img {
  border: 6px solid var(--white-clr);
  border-radius: 14px;
 }

 .banner-item-inner {
   position: relative;
   bottom: 0;
   
 }

 /***Banner section end***/

 /***Our Journey section Start***/

 .our-journey-scn {
  padding-top: 100px;
 }

 .our-journey-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
 }

 .journey-img {
  border-radius: 40px;
  overflow: hidden;
 }

 .journey-img img {
  width: 100%;
 }

 .our-journey-left {
  width: 47%;
 }

 .our-journey-right {
  width: 53%;
  padding-left: 55px;
 }

 .our-journey-right h2 {
  font-weight: 700;
  font-style: var(--fontB-fm);
  color: var(--black-clr);
 }

 .our-journey-right p {
  font-size: 18px;
  color: #000;
  line-height: 1.5;
 }

 /***Our Journey section end***/

 /***Solutions section Start***/
 .solutions-scn {
  background: var(--bg-clr);
  border-top: 8px solid var(--theme-sec-clr);
  color: var(--white-clr);
 }

 .solutions-inner h2 {
  color: var(--white-clr);
  font-size: 50px;
  margin-bottom: 0px;
 }

 .solutions-inner h2 span {
  color: var(--theme-sec-clr);
 }

 .solutions-inner {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-bottom: 40px;
 }

 .solutions-list {
  position: relative;
 }

 .solutions-list:before {
  width: 40px;
  height: 40px;
  content: '';
  background-image: url(../images/star-icon.png);
  background-repeat: no-repeat;
  display: inline-block;
  border-color: #000000;
  position: relative;
  left: 0;
  top: 0;
 }

 .solutions-list:after {
  width: 40px;
  height: 40px;
  content: '';
  background-image: url(../images/star-icon.png);
  background-repeat: no-repeat;
  display: inline-block;
  border-color: #000000;
  position: absolute;
  top: 0;
  right: 0;
 }

 .splide__arrow {
  background-color: transparent;
  border: 1px solid var(--white-clr);
  width: 48px;
  height: 48px;
  transform: rotate(180deg);
  position: absolute;
  background-position: right;
  margin-top: -24px;
 }

 .splide__arrow:hover {
  background-color: var(--theme-clr);
 }

 .splide__arrow svg {
  background-image: url("../images/arrow-white.svg");
  height: 17px;
  width: 26px;
  fill: transparent;
  display: inline-block;
  background-repeat: no-repeat;
 }

 .solutions-list .splide__arrow--prev {
  top: -80px;
  right: 70px;
  left: auto;
 }

 .solutions-list .splide__arrow--next {
  position: absolute;
  right: 0px;
  top: -82px;
 }

 .solutions-img {
  border-radius: 32px;
  overflow: hidden;
 }

 .solutions-img img {
  width: 100%;
 }

 .solutions-item {
  padding: 0px 8px;
  border-radius: 32px;
 }

 .solutions-item:last-child {
  margin-right: 0px;
 }

 .solutions-item-inner {
  padding: 30px;
  background-color: #2A2A2A;
  border-radius: 32px;
  min-height: 700px;
 }

 .solutions-item-inner h4 {
  color: var(--white-clr);
  font-size: 22px;
  font-weight: 700;
  padding: 30px 0px 0px 0px;
  letter-spacing:0.5px;
 }

 .solutions-item-inner p {
  color: #DDDDDD;
  font-size: 18px;
  min-height: 120px;
  margin-bottom: 0px;
 }
.ser-dtl ul {
    display: flex;
    flex-flow: row wrap;
    column-gap: 10px;
    margin-bottom: 13px;
    row-gap: 6px;
    font-size: 15px;
    
}

.ser-dtl ul li a {
    color: var(--theme-sec-clr);
}

.ser-dtl ul li a:before {
    width: 6px;
    height: 6px;
    content: '';
    display: inline-block;
    vertical-align: middle;
    background-color: var(--white-clr);
    border-radius: 100%;
    margin-right: 6px;
    margin-top: -3px;
}

.ser-dtl ul li a:hover {
    color: var(--white-clr);
}


.solutions-item-inner .cmn-btn {
    margin-top: 15px;
    font-size: 14px;
}
 /***Solutions section end***/

 /***Blog section Start***/

 .blog-left h2 span {
  color: var(--theme-clr);
 }

 .blog-left h2 {
  font-size: 40px;
  font-weight: 700;
  color: #101010;
  margin-bottom: 0px;
 }

 .blog-right .cmn-bdr-btn {
  min-width: 152px;
  min-height: 60px;
  margin: auto;
  display: flex;
  justify-content: center;
  padding: 16px 15px;
  color: var(--bg-clr);
  border-color: var(--bg-clr);
 }

 .cmn-bdr-btn:hover {
  background-color: var(--theme-clr);
  color: var(--white-clr);
  border-color: var(--white-clr);
 }

 /* .cmn-bdr-btn:after {
     content: "";
     width: 26px;
     height: 20px;
     background-image: url(../images/arrow-left.svg);
     background-repeat: no-repeat;
     transform: rotate(180deg);
     margin-left: 16px;
 }*/
 .cmn-bdr-btn:hover:after {
  filter: brightness(0) saturate(100%) invert(99%) sepia(95%) saturate(96%) hue-rotate(183deg) brightness(121%) contrast(100%);
 }

 .blog-list {
  width: calc(100% + 16px);
  margin-left: -8px;
  display: flex;
  flex-flow: row wrap;
 }

 .blog-item {
  width: calc(33.33% - 16px);
  margin: 0px 8px 16px 8px;
  border: #ccc 1px solid;
  border-radius: 10px;
  box-shadow: #ccc 0 0 8px;
 }

 .blog-img {
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
  position: relative;
 }

 .blog-img img {
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  object-fit: cover;
 }

 .blog-img:hover img {
  transform: scale(1.1);
 }

 .blog-date {
  font-size: 16px;
  font-weight: 500;
  color: var(--base-clr);
  padding: 10px 0px;
  font-family: 'satoshimedium';
 }

 .blog-title {
  font-size: 24px;
  line-height: 1.4;
  color: var(--base-clr);
  margin-bottom: 10px;
  display: inline-block;
  font-family: 'satoshimedium';
 }

 .blog-item-inner p {
  margin-bottom: 10px;
 }

 .blog-item-inner .read-more {
  font-size: 16px;
  font-weight: 500;
  color: var(--base-clr);
  font-family: 'satoshimedium';
  display: flex;
  padding-top: 15px;
 }

 .blog-item-inner .read-more:after {
  content: "";
  width: 26px;
  height: 20px;
  background-image: url('../images/arrow-left.svg');
  background-repeat: no-repeat;
  transform: rotate(180deg);
  margin-left: 16px;
  display: inline-block;
 }

 .postdate {
  position: absolute;
  bottom: 5px;
  left: 5px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  padding: 6px 10px;
  line-height: normal;
 }

 .blog-cont {
  padding: 15px;
 }

 .latest-title {
  font-size: 20px;
  letter-spacing: normal;
  margin: 9px 0px;
 }

 .blogtag {
  font-size: 14px;
  font-family: var(--fontB-fm);
  color: var(--theme-sec-clr);
 }

 .inner-banner-scn.blog-page {
  background-color: #222222;
  color: #fff;
  background-size: 100% 100%;
  background-image: url(../images/inner-bnr-bg.jpg);
 }

 .inner-banner-scn.blog-page h2 {
  margin-bottom: 0px;
  color: #fff;
 }

 .blog-detail .blog-d-group {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
 }

 .blog-detail .blog-d-group .blog-d-left {
  width: 73%;
 }

 .blog-detail .blog-d-group .blog-d-right {
  width: 25%;
 }


.blog-detail .blog-d-group .blog-d-right .contactus-form {
    border-radius: 5px;
    margin-top: 30px;
    padding: 24px 20px;
    box-shadow: #8f8f8f 0 0 5px;
    margin-bottom: 0px;
}

.blog-detail .blog-d-group .blog-d-right .contactus-form .form-title {
    font-size: 22px;
}

.blog-detail .blog-d-group .blog-d-right .contactus-form .input-g-half {
    width: 100%;
}

.blog-detail .blog-d-group .blog-d-right .contact-form textarea.input-field {
    min-height: 100px;
    padding-left: 15px;
}

.blog-detail .blog-d-group .blog-d-right .contactus-form .form-check label {
    font-size: 14px;
}

.blog-detail .blog-d-group .blog-d-right .contactus-form .form-check a {
    font-size: 14px;
}

.blog-detail .blog-d-group .blog-d-right .contact-form .input-field {
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
}

.blog-detail .blog-d-group .blog-d-right .contact-form .form-check .input-field {
    padding: 0px;
}


 .post-content {
  margin-top: 25px;
 }

 .post-content h1 {
  font-size: 40px;
  margin-bottom: 20px;
 }

 .post-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
 }

 .post-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
 }

 .post-content h4 {
  font-size: 24px;
  margin-bottom: 10px;
 }

 .post-content h5 {
  font-size: 20px;
  margin-bottom: 10px;
 }

 .post-content h6 {
  font-size: 18px;
 }

 .post-content ul,
 .post-content ul li {
  list-style: disc;
 }

 .post-content ul {
  padding-left: 18px;
  padding-bottom: 15px;
  padding-top: 5px;
 }

 .post-content ul li {
  margin-top: 5px;
 }

 .post-content ol,
 .post-content ol li {
  list-style: decimal;
 }

 .post-content ol {
  padding-left: 18px;
  padding-bottom: 15px;
  padding-top: 5px;
  margin: 0px;
 }

 .post-content ol li {
  margin-top: 5px;
 }

 .blog-detail .blog-d-group .blog-d-right label.wp-block-search__label {
  font-size: 18px;
  font-family: var(--fontB-fm);
  letter-spacing: normal;
 }

 .blog-detail .blog-d-group .blog-d-right .wp-block-search__inside-wrapper input {
  font-size: 15px;
  padding: 0px 10px;
 }

 .wp-block-search__inside-wrapper button.wp-block-search__button {
  padding: 11px 13px;
  font-size: 14px;
  background-color: var(--theme-clr);
  text-decoration: none;
  transition: 0.5s all;
 }

 .wp-block-search__inside-wrapper button.wp-block-search__button:hover {
  background-color: var(--theme-sec-clr);
 }

 .widget.widget_block.widget_search {
  background: #efefef;
  padding: 12px;
  border-radius: 5px;
 }

 .post-navigation {
  display: none;
 }

 .tags {
  display: flex;
  flex-flow: row wrap;
 }

 .tags span {
  display: inline-block;
  background: #fff;
  padding: 6px 14px 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 5px;
  border: #ccc 1px solid;
  line-height: normal;
 }

 /***Blog section end***/

 /***Thought Leadership section Start***/
 .thought-leadership-list-main .blog-item:first-child {
  width: 100%;
  margin: 0px 0px 40px 0px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;

 }

 .thought-leadership-list-main .blog-item:first-child .blog-img {
  width: 30%;
  border-radius: 10px 0px 0 10px;
  border-right: #ccc 1px solid;
 }

 .thought-leadership-list-main .blog-item:first-child  .blog-cont {
  width: calc(100% - 30%);
  padding: 30px;
 }

 /***Thought Leadership section End***/

 /***Best Work section Start***/
 .best-work-scn {
  background-color: #FAFAFA;
 }

 .best-work-left {
  width: 50%;
 }

 .best-work-left h2 {
  margin-bottom: 0px;
 }

 .best-work-left h2 span {
  color: var(--theme-clr);
 }

 .best-work-right .cmn-bdr-btn {
  min-width: 165px;
  min-height: 60px;
  display: flex;
  color: var(--base-clr);
  border-color: var(--base-clr);
  margin: auto;
  align-items: center;
  padding: 8px 25px;
  text-align: center;
  justify-content: center;
 }

 .best-work-right .cmn-bdr-btn:hover {
  color: var(--white-clr);
 }

 .best-work-item {
  padding: 0px 20px;
 }

 .best-work-list {
  margin-left: -20px;
  width: calc(100% + 40px);
  padding-top: 40px;
 }

 .best-work-img img {
  width: 100%;
  transition: 0.5s all;
  cursor: pointer;
  border: 8px var(--white-clr) solid;
  border-radius: 32px;
 }

 .best-work-item:hover .best-work-img img {
  border-color: var(--theme-clr);
  border-radius: 32px;
 }

 .best-work-list .splide__arrow {
  border-color: var(--base-clr);
  top: 30%;
 }

 .best-work-list .splide__arrow:hover {
  background-color: var(--base-clr);
  border: none;
 }

 .best-work-list .splide__arrow svg {
  background-image: url(../images/arrow-left.svg);
  height: 17px;
  width: 26px;
  fill: transparent;
  display: inline-block;
  background-repeat: no-repeat;
 }

 .best-work-list .splide__arrow:hover svg {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(128deg) brightness(108%) contrast(101%);
  transition: 0.5s all;
 }

 .best-work-list .splide__arrow--prev {
  left: -50px;
 }

 .best-work-list .splide__arrow--next {
  right: -50px;
 }

 .best-work-cate {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  padding: 20px 0px;
 }

 .best-work-cate span {
  font-size: 16px;
  color: #888888;
  background: #F0F0F0;
  min-height: 36px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  margin: 10px 0px;
  padding: 5px 15px 1px 15px;
 }

 .best-work-cont h3 {
  font-size: 32px;
  margin-bottom: 10px;
  padding-right: 40px;
  position: relative;
 }
.best-work-cont h3 a {
    color: var(--base-clr);
}
 .best-work-cont {
  max-width: 583px;
  color: #666666;
 }

 .best-work-cont p {
  font-size: 18px;
  margin-bottom: 0px;
 }

 .best-work-cont h3:after {
  content: "";
  background-color: var(--theme-clr);
  width: 38px;
  height: 38px;
  display: inline-block;
  border-radius: 50px;
  position: absolute;
  background-image: url('../images/arrow-white.svg');
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(130deg);
  right: 0px;
 }

 /***Best Work section end***/

 /***Our Forte section Start***/


 .our-forte-scn {
  background-color: var(--bg-sec-clr);
  color: var(--white-clr);
 }

 .our-forte-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: auto;
  text-align: center;
 }

 .our-forte-inner .sub-title {
  font-size: 16px;
  width: 100%;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 10px;
  opacity: 0.7;
 }

 .our-forte-inner h2 {
  color: var(--white-clr);
  font-size: 40px;
  font-family: 'satoshibold';
  margin-bottom: 16px;
 }

 .our-forte-inner p {
  opacity: 0.7;
 }

 .our-forte-list {
  display: flex;
  flex-flow: row wrap;
  width: calc(100% + 20px);
  margin-left: -10px;
  justify-content: center;
  text-align: center;
  padding-top: 30px;
  max-width: 785px;
  margin: auto;
 }

 .our-forte-item {
  width: calc(33.33% - 20px);
  margin: 0px 10px;
 }

 .our-forte-count-no {
  font-size: 48px;
  font-family: 'satoshibold';
  line-height: 1.2;
 }

 .our-forte-item-inner span {
  font-size: 18px;
  font-family: 'satoshiregular';
 }

 .our-forte-btn {
  padding-top: 40px;
  display: flex;
 }

 .our-forte-btn .cmn-bdr-btn {
  font-size: 16px;
  font-family: 'satoshibold';
  color: var(--white-clr);
  min-width: 173px;
  min-height: 48px;
  align-items: center;
  padding: 12px 50px;
  margin: auto;
  border: 1px var(--white-clr) solid;
  border-radius: 24px;
  display: flex;
  flex-flow: row wrap;
  align-content: center;
 }

 .our-forte-btn .cmn-bdr-btn:after {
  content: normal;
 }

 /***Our Forte section end***/

 /***Innovate section Start***/
 .innovate-scn {
  padding-top: 80px;
 }

 .innovate-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
 }

 .innovate-bg-img img {
  width: 100%;
  background-size: cover;
  border-radius: 32px;
  margin: auto;
  padding: 0px 44px;
  overflow: hidden;
 }

 .innovate-scn p {
  max-width: 800px;
  margin: auto;
  text-align: center;
  font-size: 22px;
  color: var(--black-clr);
  padding-top: 40px;
 }

 .innovate-btn-group {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding-top: 30px;
  gap: 16px;
 }

 .innovate-btn-group .cmn-bdr-btn {
  border-color: var(--bg-clr);
  color: var(--bg-clr);
 }

 .innovate-btn-group .cmn-bdr-btn:hover {
  background-color: var(--bg-clr);
  color: var(--white-clr);
 }

 .innovate-btn-group .black-bg {
  background-color: var(--bg-clr);
  color: var(--white-clr);
 }

 .innovate-btn-group .black-bg:hover {
  border: 1px var(--bg-clr) solid;
  color: var(--bg-clr);
  background-color: var(--white-clr);
 }

 .innovate-bg-img {
  padding-top: 30px;
  position: relative;
 }

 .innovate-info h2 {
  font-family: 'satoshiregular';
  font-size: 62px;
  color: var(--black-clr);
  margin-bottom: 30px;
 }

 .innovate-bg-img:before {
  width: 1120px;
  height: 32px;
  display: inline-block;
  content: "";
  margin: auto;
  display: flex;
  padding-bottom: 40px;
  border-top: 4px var(--bg-clr) solid;
 }

 .innovate-bg-img:after {
  content: "";
  background-image: url(../images/black-star.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  margin: auto;
  right: -80px;
  left: 0;
  background-color: var(--white-clr);
  width: 70px;
  height: 65px;
  background-position: center;
 }

 .inspire-title h2 {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 80px;
 }

 .inspire-title h2:before {
  background-image: url('../images/star-icon2.png');
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  display: inline-block;
  content: '';
 }

 .inspire-title h2:after {
  background-image: url('../images/star-icon2.png');
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  display: inline-block;
  content: '';
 }

 /***Innovate section end***/

 /***Consultation Form section Start***/
 .banner-right .contactus-form {
  margin-top: 0;
  margin-bottom: -180px;
 }

 .contact-form form {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding-top: 10px;
 }

 .contact-form .form-title {
  font-size: 24px;
  font-family: "Inter", sans-serif;
  color: #667085;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 5px;
  display: inline-block;
 }

 .contact-title {
  font-size: 14px;
  font-family: 'satoshimedium';
  color: #344054;
  margin-bottom: 5px;
  display: inline-block;
 }

 .contact-title span {
  color: red;
 }

 .input-group {
  width: 100%;
  position: relative;
 }

 .form-check a {
  color: var(--theme-clr);
 }

 .form-check a:hover {
  color: var(--theme-sec-clr);
 }

 .input-g-half {
  width: calc(50% - 10px);
 }

 .contact-form .input-field {
  font-size: 16px;
  height: 48px;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 20px;
  border: 1px #D0D5DD solid;
  font-family: "satoshiregular", sans-serif;
  color: var(--base-clr);
  border-radius: 8px;
 }

 .contact-form .input-field {
  position: relative;
 }

 .contact-form textarea.input-field {
  min-height: 140px;
  padding-left: 24px;
 }

 .contact-form .send-btn {
  color: var(--white-clr);
  border-radius: inherit;
  padding: 15px 12px;
  min-width: 140px;
  text-transform: uppercase;
 }

 .contact-form .send-btn:hover {
  background-color: var(--theme-sec-clr);
  color: var(--white-clr);
 }

 .consultation-form {
  background-color: #FAFAFA;
 }

 .consultation-form-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 100%;
  align-items: self-start;
 }

 .consultation-form-left {
  width: 50%;
 }

 .consultation-form-left p {
  font-size: 20px;
  color: #444444;
  font-family: 'satoshiregular';
 }

 .consultation-form-right {
  width: 50%;
  padding-left: 75px;
 }

 .consultation-form-img {
  overflow: hidden;
  border-radius: 32px;
 }

 .consultation-form-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all;
 }

 .consultation-form-img:hover img {
  transform: scale(1.1);
 }

 .contact-form p {
  margin: 0px;
 }

 .contact-form .form-check input[type="checkbox"] {
  padding: 0px;
 }

 .form-check .input-field {
  padding: 0px;
  border: none;
 }

 .form-check .input-field>span {
  margin: 0px;
 }

 .form-check  a {
  font-size: 16px;
  margin-left: 3px;
 }

 body .contact-form input[type="submit"].cmn-btn {
  transition: 0.5s all;
  cursor: pointer;
  background: var(--theme-clr);
  border-radius: 100px;
  color: var(--white-clr);
  padding: 10px 28px 10px 28px !important;
  display: inline-block;
  border: none;
  font-size: calc(var(--base-size));
  vertical-align: middle;
  font-family: var(--fontB-fm);
  text-align: center;
  letter-spacing: 0.5px;
  border-radius: 40px;
  margin-top: 17px;
  text-transform: none;
  letter-spacing: 0.5px;
 }

 .wpcf7-not-valid-tip {
  font-size: 14px;
  margin-top: -10px;
 }

 .wpcf7 form .wpcf7-response-output {
  color: red;
  border-color: red !important;
  line-height: normal;
  padding: 12px;
 }

 .form-check {
  width: 100%;
  margin-bottom: 8px;
  display: inline-block;
 }

 .form-check .wpcf7-not-valid-tip {
  position: absolute;
  margin-top: -5px;
 }

 .wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450 !important;
  color: #46b450 !important;
 }

 /***Consultation Form section end***/
 .testimonials-scn .test-item {
  padding: 0px 12px;
  transition: 0.5s all;
 }

 .testimonials-slider .splide__arrow {
  background-color: var(--theme-clr);
 }
 .testimonials-slider .splide__arrow.splide__arrow--prev {
    left: 42px;
}
.testimonials-slider .splide__arrow.splide__arrow--next {
    right: 42px;
}

 .testimonials-slider .splide__pagination {
  bottom: -30px;
 }

 .testimonials-scn {
  background-color: var(--bg-clr);
  color: var(--white-clr);
  border-bottom: var(--theme-clr) 8px solid;
 }

 .testimonials-scn .test-item.is-next,
 .testimonials-scn .test-item.is-prev {
  opacity: 0.3;
  transition: 0.5s all;
 }

 .testimonials-top {
  max-width: 630px;
  margin: auto;
  color: #AAAAAA;
  margin-bottom: 60px;
 }

 .testimonials-top h2 {
  color: var(--white-clr);
  margin-bottom: 20px;
 }

 .customer-detail {
  display: flex;
  flex-flow: row wrap;
  position: relative;
  width: 100%;
  align-items: center;
 }

 .customer-detail:after {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  width: 40px;
  height: 38px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/quoteup.svg);
 }

 .customer-detail .customer-img {
  overflow: hidden;
  border-radius: 100%;
  width: 65px;
  height: 65px;
  margin-right: 15px;
 }

 .customer-dtl {
  width: calc(100% - 100px);
 }

 .customer-dtl .c-name {
  font-family: var(--fontM-fm);
  display: block;
  font-size: 22px;
 }

 .c-designation {
  color: #DDDDDD;
  font-size: 18px;
 }

 .test-item-inner {
  border-radius: 32px;
  padding: 24px 40px;
  background-color: #2A2A2A;
 }

 .test-item-inner .test-item-desc {
  margin-top: 35px;
  font-style: italic;
  font-size: 20px;
  line-height: 1.7;
  min-height: 150px;
 }

 .s-c-support-inner {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  justify-content: space-between;
 }

 .s-c-support-inner .s-c-support-left {
  width: 40%;
 }

 .s-c-support-inner .s-c-support-right {
  width: 58%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin-top: 90px;
 }

 .sc-support-group {
  overflow: hidden;
  border-radius: 32px;
  max-width: 420px;
  width: 100%;
 }

 .sc-support-group img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 }

 .see-meet-cont {
  max-width: 240px;
  width: 100%;
  gap: 20px;
  display: flex;
  flex-flow: row wrap;
 }

 .see-meet-cont .see-meet-item {
  background-color: #2B2B2B;
  border-radius: 25px;
  min-height: 157px;
  color: #fff;
  padding: 24px;
  display: flex;
  flex-flow: row wrap;
  align-content: space-between;
 }

 .see-meet-link {
  padding-right: 68px;
  font-size: 22px;
  line-height: 1.1;
  color: #fff;
  position: relative;
  font-weight: 700;
 }

 .see-meet-link:after {
  content: '';
  width: 64px;
  height: 64px;
  background-color: #333333;
  display: flex;
  border-radius: 100%;
  color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 0px;
  top: 0px;
  background-image: url(../images/arr-angle-white.svg);
  transition: 0.5s all;
 }

 .see-meet-cont .see-meet-item:nth-child(2) {
  background-color: var(--theme-clr);
 }

 .see-meet-cont .see-meet-item:nth-child(2) .see-meet-link:after {
  background-color: var(--white-clr);
  background-image: url(../images/arr-angle-grey.svg);
 }

 .see-meet-cont .see-meet-item:hover .see-meet-link:after {
  right: 8px;
 }

 .s-c-support-inner .s-c-support-left h2 {
  margin-bottom: 10px;
 }

 .s-c-support-inner .s-c-support-left p {
  color: #444444;
  font-size: 19px;
 }

 .s-c-support-list {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  gap: 10px;
  counter-reset: num;
 }

 .s-c-support-list .scs-item {
  width: 100%;
  background-color: var(--white-clr);
  border-radius: 60px;
  min-height: 60px;
  border: #DDDDDD 1px solid;
  display: flex;
  padding: 5px 50px 5px 20px;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-family: var(--fontM-fm);
  transition: 0.5s all;
  position: relative;
 }

 .s-c-support-list .scs-item:before {
  content: '';
  counter-increment: num;
  content: "0"counter(num);
  margin-right: 8px;
 }

 .s-c-support-list .scs-item:after {
  content: '';
  position: absolute;
  right: 20px;
  width: 30px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/arrow-left.svg);
  transform: rotate(180deg);
 }

 .s-c-support-list .scs-item:hover:after,
 .s-c-support-list .scs-item.active:after {
  background-image: url(../images/arrow-white.svg);
 }

 .s-c-support-list .scs-item:hover,
 .s-c-support-list .scs-item.active {
  background-color: #101010;
  color: #fff;
 }

 .sc-support-img {
  display: none;
 }

 .sc-support-img.current-show {
  display: block;
 }

 .technologies-scn {
  background-color: #fff8fa;
 }

 .tech-data-item {
  display: none;
 }

 .tech-data-item.current-show {
  display: block;
 }

 .tech-tabs {
  display: flex;
  flex-flow: row;
  justify-content: center;
  padding-top: 20px;
  border-bottom: #ccc 1px solid;
 }

 .tech-tabs .tech-tab-item {
  margin: 0px 15px;
  cursor: pointer;
  font-size: 18px;
  font-family: var(--fontB-fm);
  color: #252b33;
  padding: 10px 0px;
  transition: 0.5s all;
  border-bottom: transparent 1px solid;
  position: relative;
  bottom: -1px;
 }

 .tech-tabs .tech-tab-item:hover,
 .tech-tabs .tech-tab-item.active {
  color: var(--theme-clr);
  border-color: var(--theme-clr);
 }

 .tech-list-main {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 20px 0px;
  gap: 10px;
 }

 .tech-list-main .tech-s-item {
  width: calc(16.66% - 10px);
 }

 .tech-list-main .tech-s-item .icon-block {
  width: 100%;
  height: 130px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.5s all;
  gap: 15px;
  align-content: center;
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
 }

 .tech-list-main .tech-s-item .icon-block .icon-box {
  transition: 0.5s all;
 }

 .tech-list-main .tech-s-item:hover .icon-block .icon-box {
  transform: scale(1.1);
 }

 .tech-list-main .tech-s-item h3 {
  font-size: 16px;
  display: block;
  width: 100%;
  margin: 0px;
 }

 .tech-list-main .tech-s-item .icon-block:hover {
  background-color: #f1f1f1;
 }

 /**Inner Banner Section**/
 .inner-bnr {
  background-image: url(../images/inner-bnr-bg.jpg);
  color: var(--white-clr);
  padding: 30px 0px;
  min-height: 230px;
  display: flex;
 }

 .inner-bnr + .global-locations-scn {
  padding-top: 185px;
 }

 .inner-bnr h1 {
  color: var(--white-clr);
  margin-bottom: 0px;
 }

 .inner-bnr-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  min-height: 500px;
 }

 .inner-bnr-inner .banner-right {
  width: 44%;
 }

 .inner-bnr-inner .bnr-left {
  width: 54%;
 }

 .certification-badges {
  padding-top: 30px;
 }

 .inner-bnr-inner p {
  font-size: 22px;
 }

 /*Image and Content section*/
 .right-side-img .image-cont-inner {
  flex-direction: row-reverse;
 }

 .image-cont-inner {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  justify-content: space-between;
  align-items: center;
 }

 .image-cont-inner .image-cont-left {
  width: 45%;
  overflow: hidden;
  border-radius: 10px;
  border: var(--bg-sec-clr) 1px solid;
  height: 550px;
 }

 .image-cont-inner .image-cont-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all;
 }

 .image-cont-inner .image-cont-left:hover img {
  transform: scale(1.1);
 }

 .image-cont-inner .image-cont-right {
  width: 52%;
 }

 .image-cont-inner h2 {
  font-size: 35px;
  color: var(--black-clr);
 }

 .image-cont-inner ul,
 .image-cont-inner ol {
  padding-top: 10px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-bottom: 0px;
 }

 .image-cont-inner ul,
 .image-cont-inner ul li {
  list-style: disc;
 }

 .image-cont-inner ol,
 .image-cont-inner ol li {
  list-style: decimal;
 }

 .image-cont-inner ul li,
 .image-cont-inner ol li {
  padding: 7px 0;
  line-height: 1.4;
 }

 .image-cont-inner ul li strong,
 .image-cont-inner ol li strong,
 .image-cont-inner ul li b,
 .image-cont-inner ol li b {
  color: var(--theme-clr)
 }

 .image-cont-inner .cmn-btn {
  margin-top: 10px;
 }

 .services-list-scn {
  background: #1a1a1a;
  color: #fff;
 }

 .section-top .services-label {
  color: #e8b34b;
  font-size: 18px;
 }

 .section-top h2 {
  font-size: 40px;
  font-weight: 600;
  margin-top: 10px;
  color: var(--white-clr);
 }

 .services-grid {
  margin-top: 50px;
  display: flex;
  flex-flow: row wrap;
  gap: 25px;
  justify-content: center;
 }

 .service-box {
  width: calc(33.33% - 17px);
  background: var(--white-clr);
  color: #333;
  border-radius: 6px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
 }

 .service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
 }

 .service-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #222222;
 }

 .service-box p {
  font-size: 16px;
  margin-bottom: 0px;
  color: var(--base-clr);
 }

 /****/
 .why-choose-us-scn {
  background: #232c55;
  color: var(--theme-clr);
 }

 .why-choose-us-scn h2 {
  color: var(--white-clr);
 }

 .wcu-cards {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
 }
 .tools-scn .tools-subtitle {
    font-size: 20px;
}
 .wcu-card {
background: #e8eef8;
    color: #1b2138;
    padding: 30px 20px;
    border-radius: 6px;
    width: calc(33.33% - 20px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    min-height: 210px;
    transition: 0.5s all;
 }
 .wcu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}
 /* Card Staggered Position */
 .wcu-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--bg-sec-clr)
 }

 .wcu-card p {
  line-height: 1.7;
  margin: 0px;
 }

 .industries-list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
 }

 .industries-list .industries-cardbox {
  width: calc(20% - 17px);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0588235294);
  background: #fff;
  display: flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 10px;
  transition: 0.5s all;
 }

 .industries-list a.industries-cardbox:hover {
  background: #d0d4ee;
  box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.1411764706);
 }

 .industries-list .industries-cardbox .indust-icon {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 100%;
 }

 .industries-list .industries-cardbox .indust-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 }

 .industries-list .industries-cardbox .indust-text {
  width: calc(100% - 64px);
  padding-left: 12px;
  font-size: 18px;
  font-family: var(--fontM-fm);
  color: var(--theme-clr);
  line-height: normal;
  word-break: break-word;
 }

 /**FAQ**/
 .faq-accordion {
  width: 100%;
  max-width: 900px;
  margin: 30px auto 0px auto;
 }

 .faq-accordion-item {
  background: #EEF5FF;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--bg-sec-clr);
 }

 .faq-accordion-header {
  width: 100%;
  background: #EEF5FF;
  border: none;
  text-align: left;
  padding: 18px 30px;
  font-size: 20px;
  font-family: var(--fontB-fm);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
 }

 .faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
 }

 .faq-icon:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 2px;
  background-color: var(--bg-sec-clr);
  margin: auto;
  transition: 0.5s all;
 }

 .faq-icon:after {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  width: 2px;
  height: 100%;
  background-color: var(--bg-sec-clr);
  margin: auto;
  transition: 0.5s all;
 }

 .active .faq-icon:after {
  opacity: 0;
 }

 .faq-accordion-body {
  padding: 0 30px 0 30px;
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
  color: #333333;
  transition: max-height 0.3s ease;
 }

 .faq-accordion-item.active .faq-accordion-header {
  padding-bottom: 10px;
 }

 .faq-accordion-item.active .faq-accordion-body {
  padding-top: 10px;
  padding-bottom: 20px;
  max-height: 500px;
 }

 .faq-accordion-item.active .icon {
  transform: rotate(45deg);
 }

 /**Our Story Section Start**/
 .meet-founders-scn {
  background-image: url('../images/banner-bg-fullshape.png');
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white-clr);
  width: 100%;
  min-height: 650px;
 }

 .bg-stars {
  position: relative;
 }

 .bg-stars:before {
  content: '';
  position: absolute;
  right: 50px;
  top: 40px;
  background-repeat: no-repeat;
  background-image: url(../images/bg-star.png);
  width: 44px;
  height: 44px;
 }

 .bg-stars:after {
  content: '';
  position: absolute;
  left: 50px;
  bottom: 40px;
  background-repeat: no-repeat;
  background-image: url(../images/bg-star.png);
  width: 44px;
  height: 44px;
 }

 .our-story-inner {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
 }

 .our-story-inner .our-story-left {
  position: relative;
  width: 47%;
 }

 .our-story-img {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  border: var(--bg-sec-clr) 1px solid;
  height: 468px;
 }

 .our-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all;
 }

 .our-story-img:hover img {
  transform: scale(1.1);
 }

 .our-story-inner .our-story-right {
  width: 49%;
 }

 .clutch-img {
  margin-bottom: 10px;
  display: inline-block;
  margin-top: 5px;
 }

 .clutch-box {
  position: absolute;
  background-color: var(--white-clr);
  padding: 15px;
  border-radius: 8px;
  max-width: 280px;
  left: -50px;
  border: var(--base-clr) 1px solid;
  top: 30px;
  font-size: 16px;
  box-shadow: #c7c7c7 0 0 7px;
  z-index: 9;
 }

 .clutch-box .clutch-txt {
  padding-top: 12px;
  display: inline-block;
  line-height: 1.3;
 }

 .our-story-inner h2 {
  font-size: 35px;
  color: var(--black-clr);
 }

 .founder-textsay-group {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
 }

 .founder-textsay-group .meet-founders-part {
  width: 57%;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
 }

 .founder-textsay-group .m-founders-say {
  font-size: 28px;
  width: 39%;
  font-style: italic;
  line-height: 1.5;
 }

 .meet-founders-part {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
 }

 .m-founders-info {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 100%;
 }

 .m-founders-info .founders-card {
  width: 48%;
  background-color: var(--bg-sec-clr);
  overflow: hidden;
  border-radius: 10px;
 }

 .m-founders-info .founders-card .f-card-img {
  width: 100%;
  overflow: hidden;
 }

 .m-founders-info .founders-card .f-card-img img {
  width: 100%;
  transition: 0.5s all;
 }

 .m-founders-info .founders-card:hover .f-card-img img {
  transform: scale(1.1);
 }

 .f-card-cont {
  width: calc(100% - 90px);
 }

 .f-card-cont .f-name {
  font-size: 22px;
  font-family: var(--fontM-fm);
  display: block;
  line-height: normal;
  margin-bottom: 5px;
 }

 .f-card-cont-social {
  width: 100%;
  border: #e0e1eb 1px solid;
  padding: 15px 18px;
  border-radius: 0px 0px 10px 10px;
 }

 .f-card-cont-social {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
 }

 .f-social {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 8px;
 }

 .f-social a {
  width: 38px;
  height: 38px;
  border-radius: 100%;
  background-color: var(--theme-sec-clr);
  background-repeat: no-repeat;
  background-position: center center;
 }

 .f-social a.f-email {
  background-image: url(../images/email-icon.svg);
 }

 .f-social a.f-linkedin {
  background-image: url(../images/linkedin-icon.svg);
 }

 .f-social a:hover {
  background-color: var(--theme-clr);
 }

 .marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
 }

 .marquee:hover .marquee-track {
  animation-play-state: paused;
 }

 .marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
 }

 .column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 10px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
 }

 .column img {
  width: 220px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s ease;
 }

 .column img:hover {
  transform: scale(1.05);
 }

 .tall img {
  height: 330px;
 }

 .short img {
  height: 160px;
 }

 @keyframes scroll {
  from {
   transform: translateX(0);
  }

  to {
   transform: translateX(-50%);
  }

 }



 @media(max-width:767px) {
  .marquee-track {
   display: flex;
   animation: scroll 40s linear infinite;
  }

 }

 .what-do-scn {
  background-color: var(--bg-sec-clr);
  color: var(--white-clr);
 }

 .what-do-scn h2 {
  color: var(--white-clr);
 }

 .what-do-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
 }

 .what-do-list .what-do-card {
  background-color: rgba(177, 135, 49, 0.8);
  padding: 15px;
  border-radius: 10px 30px 0px 30px;
  transition: 0.5s all;
  position: relative;
 }
.what-do-list .what-do-card:hover {
    margin-top: -5px;
    padding-bottom: 20px;
}
 .what-do-list .what-do-card h4 {
  color: var(--white-clr);
  font-size: 22px;
  margin-bottom: 8px;
 }

/* .what-do-list .what-do-card:nth-child(2) {
margin-top: 30px;
 }

 .what-do-list .what-do-card:nth-child(3) {
  margin-top: 60px;
 }

 .what-do-list .what-do-card:nth-child(4) {
  margin-top: 90px;
 }*/

 .tools-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
 }

 .tool-box {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  text-align: center;
 }

 .tool-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
 }

 .tool-logo {
  height: 50px;
  overflow: hidden;
  display: inline-flex;
  max-width: 64px;
  flex-flow: row wrap;
  justify-content: center;
 }

 .tool-logo img {
  width: 100%;
  max-height: 100%;
 }

 .tool-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #222;
 }

 .tool-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
 }

 /*Contact Us Page Start*/
 .contactus-form {
  background-color: var(--white-clr);
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: #8f8f8f 0 0 20px;
  margin-bottom: -100px;
  margin-top: 40px;
 }

 .contactus-form .form-title {
  font-size: 28px;
  color: #27305D;
  font-family: var(--fontB-fm);
 }

 .contactus-form .form-desc {
  font-size: 18px;
  color: var(--base-clr);
  padding-bottom: 10px;
  display: inline-block;
 }

 .contactus-form .contact-title {
  font-family: var(--fontM-fm);
  letter-spacing: 0px;
  font-size: 15px;
 }

 .contactus-form .form-check label {
  color: var(--base-clr);
 }

 .global-locations-scn {
  background-color: #EEF5FF;
 }

 .global-locations-scn p {
  margin-bottom: 50px;
  font-size: 22px;
 }

 .global-locations-scn  .top-narrow {
  max-width: 490px;
 }

 .locations-list {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
 }

 .locations-list .loc-card {
  width: calc(33.33% - 14px);
  background-color: var(--white-clr);
  overflow: hidden;
  border-radius: 15px;
 }

 .locations-list .loc-card img {
  width: 100%;
  object-fit: cover;
 }

 .locations-list .loc-card .card-content {
  padding: 20px 25px;
 }

 .locations-list .loc-card .card-content h3 {
  font-size: 20px;
  font-family: var(--fontB-fm);
  color: var(--theme-clr);
  margin-bottom: 10px;
 }

 .locations-list .loc-card .card-content a {
  color: #303030;
  font-size: 16px;
  margin-top: 10px;
  display: inline-block;
  font-family: var(--fontM-fm);
  position: relative;
  padding-left: 32px;
 }

 .loc-add {
  position: relative;
  padding-left: 32px;
 }

 .locations-list .loc-card .card-content a:before,
 .loc-add:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 2px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center center;
 }

 .locations-list .loc-card .card-content .loc-phone a:before {
  background-image: url(../images/loc-phone-alt.svg);
 }

 .locations-list .loc-card .card-content .loc-email a:before {
  background-image: url(../images/loc-email-icon.svg);
 }

 .loc-add:before {
  background-image: url(../images/loc-location-icon.svg);
 }

 .locations-list .loc-card .card-content a:hover {
  color: var(--theme-clr);
 }

 .locations-list .loc-card .card-content .loc-add {
  font-size: 16px;
  margin-top: 10px;
 }

 /*Contact Us Page End*/
 .case-study-list {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  gap: 30px;
  justify-content: space-between;
 }

 .case-study-list .case-study-card {
  overflow: hidden;
  width: 100%;
 }

.case-study-list .case-study-card .cs-img-cont-group {
  position: relative;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.casestudy-top {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    align-items: center;
    margin-bottom: 30px;
}

.casestudy-top .casestudy-logo {
    width: 200px;
    padding: 5px;
}

.casestudy-top .casestudy-top-cont {
    width: calc(100% - 210px);
}

.casestudy-top .casestudy-top-cont p {
    margin: 0px;
}

 .case-study-list .case-study-card .cs-card-img {
  width: 100%;
  overflow: hidden;
  border-bottom: #BFBFBF 1px solid;
 }

 .case-study-list .case-study-card .cs-card-img img {
  width: 100%;
  height: 100%;
  transition: 0.5s all;
 }

 .case-study-list .case-study-card .cs-card-img:hover img {
  transform: scale(1.1);
 }

 .case-study-list .case-study-card .cs-card-cont {
  padding: 30px 32px 10px 32px;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-width: 600px;
  color: #fff;
 }
.casestudy-listing-counts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
    width: 90%;
}

.casestudy-listing-counts .cs-lc-item .cs-lc-title {
    font-size: 30px;
    font-family: var(--fontB-fm);
    display: block;
    text-align: center;
}

.casestudy-listing-counts .cs-lc-item .cs-lc-desc {
    font-size: 16px;
    line-height: 1.3;
    display: inline-block;
    width: 100%;
}

.cs-lc-item {
    text-align: center;
}
 .case-study-list .case-study-card .cs-card-cont h4 {
  font-size: 28px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
 }

 .case-study-list .case-study-card .cs-card-cont h4 a {
  color: #fff;
 }

 .case-study-list .case-study-card .cs-card-cont .cmn-btn {
  margin-bottom: 10px;
  padding: 9px 22px 9px 22px;
  font-size: 14px;
 }

 .case-study-list .case-study-card:first-child {
  width: 100%;
  margin: 0px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-bottom: 30px;
 }



 .hp-steps {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 95px;
 }

 .hp-step {
  width: 19%;
  background: #fff;
  padding: 0px 12px 20px 12px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: #E3E3E3 1px solid;
  text-align: center;
 }

 .hp-step:hover {
  transform: translateY(-5px);
 }

 .icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -40px;
 }

 .icon-circle img {
  width: 40px;
 }

 /* Colored icon circles */
 .icon-blue {
  background: #e5f1ff;
 }

 .icon-yellow {
  background: #fff6d4;
 }

 .icon-purple {
  background: #f0eaff;
 }

 .icon-green {
  background: #e3ffe9;
 }

 .icon-pink {
  background: #ffe5ea;
 }

 .hp-step h3 {
  font-size: 18px;
  color: #2a3360;
  font-weight: 600;
  margin-bottom: 10px;
 }

 .hp-step p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0px;
 }

 .cta-scn {
  background-color: #27305D;
  padding: 40px 0;
 }

 .cta-scn .cta-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
 }

 .cta-scn .cta-inner h3 {
  color: var(--white-clr);
  font-size: 30px;
  margin-bottom: 10px;
 }

 .cta-scn .cta-inner p {
  color: var(--white-clr);
  font-size: 20px;
  margin-bottom: 0;
 }

 .cta-scn .cta-inner .cta-left {
  width: calc(100% - 300px);
 }

 .cta-right a {
  border-radius: 0px;
  background-color: #F2A405;
  border-radius: 44px;
 }

 .worklife-grid {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
 }

 .worklife-grid .card {
  width: calc(33.33% - 14px);
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  background-color: whitesmoke;
  padding: 20px;
  border-radius: 10px;
  transition: 300ms all ease;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  min-height: 200px;
  align-content: center;
 }

 .worklife-grid .card p {
  margin: 0px;
 }

 .worklife-grid .card h3 {
  font-size: 22px;
  width: 100%;
  margin-bottom: 10px;
  font-family: var(--fontB-fm);
 }

 .worklife-grid .card.darkmode {
  background-color: var(--bg-sec-clr);
 }

 .worklife-grid .card.darkmode h3 {
  color: #fff;
 }

 .worklife-grid .card.darkmode p {
  color: #fff;
 }

 .over-badge-list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-around;
  max-width: 80%;
  margin: 60px auto  0 auto;
 }

 .over-badge-list .c-badge-item {
  width: 33.33%;
  text-align: center;
  margin: auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
 }

 .case-study-list-scn {
  background-color: #f9f9f9;
 }

 .jobfilter-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
 }

 .jobfilter-list .job-filters {
  width: 28%;
 }

 .jobfilter-list .job-list {
  width: 70%;
  overflow: auto;
  max-height: 600px;
  padding-left: 10px;
  padding-right: 10px;
 }

 .jobfilter-list .job-list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
  border-radius: 10px;
 }

 .jobfilter-list .job-list::-webkit-scrollbar {
  width: 8px;
  background-color: #F5F5F5;
  border-radius: 10px;
 }

 .jobfilter-list .job-list::-webkit-scrollbar-thumb {
  background-color: #27305d;
  border-radius: 10px;
 }

 .job-filters {
  width: 260px;
  border-right: 1px solid #ddd;
 }

 .filter-item {
  padding: 14px 18px;
  background: #f2f2f2;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 16px;
  font-family: var(--fontB-fm);
  border-left: 4px solid transparent;
 }

 .filter-item:last-child {
  margin-bottom: 0px;
 }

 .filter-item.active {
  background: #7b2c2a;
  color: #fff;
  border-left: 4px solid #fcd462;
 }

 .job-card {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: #ccc 0px 0px 10px;
 }

 .job-title {
  font-size: 20px;
  font-family: var(--fontB-fm);
  margin-bottom: 12px;
  color: #27305D;
  padding-right: 60px;
  display: inline-block;
  width: 100%;
 }

 .job-tags {
  margin-bottom: 15px;
 }

 .job-tags span {
  display: inline-block;
  background: #fff;
  padding: 9px 18px 7px 18px;
  border-radius: 20px;
  font-size: 13px;
  margin-right: 5px;
  border: #ccc 1px solid;
  line-height: normal;
 }

 .job-card p {
  margin-bottom: 5px;
 }

 .jp-arrow {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 22px;
  border: 1px solid #c8a253;
  border-radius: 50%;
  cursor: pointer;
  width: 44px;
  height: 44px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/arrow-up-outline.svg);
 }

 .jp-arrow:hover {
  opacity: 0.8;
 }

 .career-dtl-bnr {
  text-align: center;
  min-height: 210px;
  display: flex;
  flex-flow: row wrap;
  background-color: #222;
 }

 .career-dtl-bnr h2 {
  color: #fff;
  margin-bottom: 0px;
 }

 .career-group {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
 }

 .career-group .career-d-left {
  width: 62%;
 }

 .career-group .career-d-right {
  width: 35%;
 }

 .career-group .career-d-left .post-tags {
  display: none;
 }

 .career-group .career-d-left .post-navigation {
  display: none;
 }

 .career-d-right.contact-form {
  padding: 25px 20px 25px 20px;
  border-radius: 12px;
  box-shadow: #ccc 0px 0px 10px;
 }

 .career-d-right.contact-form h3 {
  font-size: 22px;
  margin-bottom: 10px;
 }

 .career-d-right.contact-form .widget {
  margin-top: 10px;
 }

 .career-d-right.contact-form input[type="file"] {
  font-size: 15px;
 }

 .single-case-study .bnr-cont-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
 }

 .single-case-study .bnr-cont-part {
  width: calc(100% - 200px);
 }

 .single-case-study .bnr-cont-group p:empty {
  display: none;
 }

 .single-case-study .bnr-cont-group p {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 0;
 }

 .bnr-logo {
  max-width: 180px;
      background-color: var(--white-clr);
    padding: 4px;
 }

 .case-keylist,
 .services-offered-part ul {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  margin-bottom: 50px;
 }

 .case-keylist .keyitem,
 .services-offered-part ul li {
  background-color: #e5e7eb;
  font-size: 16px;
  padding: 10px 16px;
  line-height: normal;
  font-family: var(--fontM-fm);
 }


 .po-part,
 .psc-part {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 50px;
  font-size: 20px;
 }

 .po-part .po-cont,
 .psc-part .psc-cont {
  width: 63%;
 }
 .psc-cont ul {
    padding-left: 22px;
    margin-bottom: 20px;
}
.psc-cont ul, .psc-cont li {
    list-style: disc;
    font-size:18px
}

.cs-overview-inner {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.cs-overview-inner .cs-overview-cont {
    width: 55%;
    font-size: 22px;
}

.cs-overview-inner .cs-overview-img {
    width: 40%;
}

.cs-overview-inner .cs-overview-img img {
    width: 100%;
    height: auto;
}

.cs-overview-inner .cs-overview-cont p {
    line-height: 1.5;
}

.case-study-detail section.challenges-scn {
    background-color: #FFFBF2;
}

.challenges-inner {display: flex;flex-flow: row wrap;width: 100%;justify-content: space-between;align-items: center;}

.challenges-cont {
    width: 55%;
}

.challenges-img {
    width: 40%;
    border-radius: 10px;
    overflow: hidden;
    border: #8b8b8b 2px solid;
}

.challenges-list .c-item {
    border-radius: 60px;
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    min-height: 60px;
    color: #fff;
    font-size: 18px;
    width: 100%;
    padding-left: 40px;
    line-height: 1;
    position: relative;
}

.challenges-list {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    gap: 18px;
}


.challenges-list .c-item:before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 100%;
    margin-right: 0;
    position: absolute;
    top: 24px;
    left: 22px;
}

.challenges-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cs-overview-inner .cs-overview-img img {
    border-radius: 10px;
    border: #c3c3c3 2px solid;
    box-shadow: #9b8e8e 2px 0px 14px;
}

.our-solution-img img {
    border-radius: 10px;
    border: #c3c3c3 2px solid;
}


.our-solution-scn {
    background-color: #F9F3F6;
}

.our-solution-inner {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.our-solution-img {
    width: 40%;
}

.our-solution-cont {
    width: 55%;
    font-size: 20px;
}


 .po-quesiton,
 .psc-quesiton {
  width: 35%;
  background-color: #ececec;
  font-size: 22px;
  padding: 30px;
  font-style: italic;
  display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
        border-radius: 8px;
    font-weight: 700;
    letter-spacing: 1px;
 }
 .po-quesiton{
    background-color: var(--theme-sec-clr);
    color: #fff;
 }
 .po-part ul,
 .result-scn ul,
 .po-part ul li,
 .result-scn ul li {
  list-style: disc;
  font-size: 16px;
 }

 .po-part ul,
 .result-scn ul {
  padding-left: 20px;
 }

 .po-part ul li,
 .result-scn ul li {
  padding: 6px 0px;
  line-height: 1.3;
  list-style: none;
  position: relative;
  font-size:18px;
 }
 .result-scn ul li:before {
    content: '';
    position: absolute;
    left: -16px;
    top: 13px;
    width: 6px;
    height: 6px;
    background-color: var(--theme-clr);
    border-radius: 100%;
}

 .pas-list {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  gap: 20px;
  justify-content: center;
  margin-bottom: 0;
 }

 .pas-list .pas-item {
  width: calc(33.33% - 14px);
  border: #ccc 1px solid;
  padding: 20px;
 }

 .pas-list .pas-item h4 {
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: normal;
 }

 .psc-part {
  margin-bottom: 0px;
 }

 .services-offered-part {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  justify-content: space-between;
 }

 .services-offered-part .so-left,
 .services-offered-part .so-right {
  width: 48%;
 }

 .pas-img {
  margin-top: 50px;
 }

 .services-offered-part ul {
  margin-bottom: 0;
 }

 .ourbrands-icon {
  display: flex;
  flex-flow: row wrap;
  background-color: #f7f7f7;
  justify-content: center;
  align-items: center;
  min-height: 150px;
  text-align: center;
  margin: 10px 10px;
  border-radius: 5px;
  box-shadow: #ccc 0px 0px 8px;
  border: #fff 1px solid;
  padding: 10px;
 }
 
 
 .result-inner {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.result-inner .result-cont {
    width: 60%;
}

.result-inner .result-cont h2 + p {
    font-family: var(--fontB-fm);
    letter-spacing: normal;
}

.result-inner .result-cont ul {
    margin-bottom: 20px;
}

.result-img {
    width: 40%;
    overflow: hidden;
    border-radius: 20px;
}

.result-img img {
    width: 100%;
}
 

 /**Product Detail Start**/
 .pd-dtl-bnr {
  display: flex;
  background-size: cover;
  flex-flow: row wrap;
  align-items: center;
 }

 .pd-dtl-bnr .pd-dtl-img {
  width: 40%;
  margin-left: auto;
 }

 .pd-dtl-cont-inner {
  padding: 15px;
  padding-left: calc((100vw - 1230px) /2);
 }

 .pd-dtl-bnr .pd-dtl-img img {
  margin-left: auto;
 }

 .pd-dtl-bnr .pd-dtl-cont {
  width: 50%;
  color: #fff;
  font-size: 20px;
 }

 .pd-dtl-bnr .pd-dtl-cont h1 {
  color: #fff;
 }



 .pd-dtl-list-scn .top-narrow {
  margin: auto;
  max-width: 550px;
  font-size: 18px;
 }

 .pd-dtl-list {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  padding-top: 30px;
 }

 .pd-dtl-list .pd-item {
  width: calc(33.33% - 14px);
  background-color: rgba(39, 48, 93, 0.10);
  text-align: center;
  padding: 15px;
  min-height: 170px;
  display: flex;
  flex-flow: row wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
 }
 
 .pd-item-image {
    width: 100%;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 4px;
}

.pd-item-image img {
    width: 100%;
}

.item-desc {
    margin-top: 10px;
    margin-bottom: 10px;
}

.item-desc p {
    margin: 0px;
}

 .pd-dtl-list .pd-item .pd-item-icon {
  width: 44px;
  height: 44px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 2px;
 }

 .pd-dtl-list .pd-item .pd-item-icon img {
  width: 100%;
  height: auto;
 }

 .pd-dtl-list .pd-item-title {
  font-size: 22px;
  font-family: var(--fontM-fm);
 }

 .pd-dtl-info-scn {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  background-color: #EAE4E1;
 }

 .pd-dtl-info-scn .pd-dtl-cont {
  width: 50%;
 }

 .pd-dtl-info-scn .pd-dtl-cont .pd-dtl-cont-inner {
  padding: 15px 15px 15px calc((100vw - 1230px) /2);
 }

 .pd-dtl-info-scn .pdt-dtl-img {
  width: 40%;
  margin-left: auto;
 }

 .pd-dtl-info-scn .pdt-dtl-img img {
  margin-left: auto;
 }

 .pdt-info-imgs-list .pdt-info-item {
  border-radius: 10px;
  overflow: hidden;
  width: calc(50% - 15px);
 }

 .pdt-info-imgs-list {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
  width: 100%;
 }

 .pdt-info-imgs-list .pdt-info-item img {
  width: 100%;
 }

 /**Product Detail End**/

 /**Startup Start**/
 .startup-hero {
  padding: 60px 0;
  background-color: #EFF6FF;
 }

 .startup-hero-inner {
  width: 100%;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
 }

 .hero-left {
  flex: 1;
 }

 .h-badge {
  display: flex;
  flex-flow: row wrap;
 }

 .hero-left .badge {
  background: rgba(139, 58, 58, 0.3);
  padding: 2px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
  border: rgba(139, 58, 58, 0.5) 1px solid;
  line-height: normal;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 5px;
 }

 .startup-hero h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
 }

 .startup-hero p {
  font-size: 18px;
  color: #232323;
  margin-bottom: 25px;
 }

 .features {
  list-style: none;
  margin-bottom: 30px;
 }

 .features li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: #232323;
  display: inline-block;
  width: 100%;
 }

 .features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  background-image: url(../images/bnr-list-icon.svg);
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
 }

 .hero-buttons {
  display: flex;
  gap: 15px;
 }

 .hero-right {
  flex: 1;
  margin-top: 50px;
 }

 .hero-right img {
  width: 100%;
  border-radius: 16px;
 }

 .stats {
  display: flex;
  gap: 15px;
  margin-top: 20px;
 }

 .stat-box {
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  box-shadow: #dfe4eb 3px 3px 5px;
 }

 .stat-box .stat-icon {
  width: 48px;
  display: flex;
  margin-bottom: 10px;
 }

 .stat-box p {
  margin-bottom: 0px;
  font-size: 14px;
 }

 .stat-box h3 {
  font-size: 26px;
  margin-bottom: 6px;
 }

 .s-why-choose-scn {
  padding: 60px 0;
  border-top: 1px solid #E5E7EB;
 }

 .s-why-choose-list {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  width: 100%;
 }

 .feature-box {
  padding: 10px;
  width: calc(25% - 15px);
  text-align: center;
 }

 .feature-box .icon {
  font-size: 28px;
  color: #b34a4a;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
 }

 .feature-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #101828;
  font-family: var(--fontM-fm);
 }

 .feature-box p {
  font-size: 14px;
  color: #232323;
  margin-bottom: 0px;
 }

 .built-for-founders-scn {
     background-color: #ecf3fc;
 }

 .built-for-founders-scn .section-header {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
 }

 .built-for-founders-scn.section-header h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
 }

 .built-for-founders-scn .section-header p {
  font-size: 18px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
 }

 .built-for-founders-scn .section-header .highlight {
  font-weight: 500;
  color: #1e293b;
 }

 .built-for-founders-scn .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
 }

 .built-for-founders-scn .card {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 20px;
  transition: all 0.35s;
 }

 .built-for-founders-scn .card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
 }

 .built-for-founders-scn .icon {
  width: 64px;
  height: 64px;
  background: #f1f5f9;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  overflow: hidden;
 }

 .built-for-founders-scn .card h3 {
  font-size: 18px;
  font-family: var(--fontM-fm);
  margin-bottom: 10px;
 }

 .built-for-founders-scn .card p {
  font-size: 15px;
  color: #232323;
  line-height: 1.5;
 }

 .startup-services-scn {
  padding: 90px 0;
  background: linear-gradient(135deg, #7c2d2d, #1e293b);
  color: var(--white-clr);
 }

 .startup-services-scn .section-header {
  text-align: center;
  margin-bottom: 60px;
 }

 .startup-services-scn .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
 }

 .startup-services-scn .section-header h2 {
  font-size: 42px;
  margin-bottom: 12px;
  color: var(--white-clr);
 }

 .startup-services-scn .section-header p {
  font-size: 18px;
  color: var(--white-clr);
 }

 .startup-services-scn .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
 }

 .startup-services-scn .service-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 30px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
 }

 .startup-services-scn .service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
 }

 .startup-services-scn .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
 }

 .startup-services-scn .service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--white-clr);
 }

 .startup-services-scn .service-card .ss-icon {
  max-width: 64px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
 }

 .startup-services-scn .service-card p {
  font-size: 15px;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 15px;
 }

 .startup-services-scn .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
 }

 .startup-services-scn .tags span {
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
 }

 .startup-services-scn .link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
 }

 .startup-services-scn .cta {
  margin-top: 80px;
  padding: 50px;
  text-align: center;
  border-radius: 22px;
  background: linear-gradient(135deg, #1e293b, #7c2d2d);
 }

 .startup-services-scn .cta h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
 }

 .startup-services-scn .cta p {
  color: #e5e7eb;
  margin-bottom: 25px;
 }

 .startup-services-scn .cta-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
 }

 .ss-item-tagline {
  margin-bottom: 10px;
  display: inline-block;
  font-size: 14px;
 }

 .startup-process-scn {
  padding-left: 100px;
  padding-right: 100px;
 }

 .startup-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
 }

 /* top horizontal line */
 .startup-steps .steps::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #b45309, #6366f1);
  z-index: 0;
 }

 .startup-steps .step {
  text-align: center;
  position: relative;
  z-index: 1;
 }

 .startup-steps .step-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border: 3px solid var(--theme-sec-clr);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: relative;
  margin-bottom: 50px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
 }

 .startup-steps .step-icon span {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--theme-sec-clr);
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fontB-fm);
 }

 .startup-steps:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--theme-clr);
  top: 90px;
  left: 0px;
 }

 .startup-steps .card {
  background: #fff;
  border-radius: 14px;
  padding: 35px 15px 15px 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  min-height: 270px;
 }

 .startup-steps .card h5 {
  font-size: 18px;
  margin-bottom: 12px;
  font-family: var(--fontM-fm);
 }

 .startup-steps .card p {
  font-size: 16px;
  color: #232323;
  line-height: 1.6;
  margin-bottom: 20px;
 }

 .startup-steps .card .duration::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #e5e7eb;
  margin-bottom: 20px;
 }

 .startup-steps .duration {
  font-size: 18px;
  color: var(--theme-sec-clr);
 }

 .process-list-scn {
     background-color: #ecf3fc;
    margin-bottom: 50px;
 }

 .process-list-scn .process-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.10);
  border: #E5E7EB 1px solid;
 }

 .process-list-scn .step-number {
  min-width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #b45309, #7c2d12);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
 }

 .process-list-scn .content h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #0f172a;
  font-family: var(--fontM-fm);
 }

 .process-list-scn .content p {
  font-size: 18px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 15px;
 }

 .process-list-scn .content h4 {
  font-size: 14px;
  color: #0f172a;
  margin-bottom: 10px;
  font-family: var(--fontM-fm);
 }

 .process-list-scn .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
 }

 .process-list-scn .tags span {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 6px;
 }

 .process-list-scn .tags span::before {
  content: "✓";
  color: #b45309;
  font-weight: bold;
 }


 .cta-container {
  max-width: 1200px;
  margin: auto;
  background-color: var(--bg-sec-clr);
  border-radius: 20px;
  padding: 70px 30px;
  text-align: center;
 }

 .startup-cta-scn .cta-container h2 {
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
 }

 .startup-cta-scn .cta-container p {
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.6;
  color: #dbe1ff;
  font-size: 20px;
 }

 .startup-cta-scn .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: var(--bg-sec-clr);
  padding: 12px 30px;
  border-radius: 42px;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-family: var(--fontB-fm);
 }

 .startup-cta-scn .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
 }

 .startup-cta-scn .arrow {
  font-size: 18px;
 }

 .wc-stats-scn {
  padding: 80px 20px;
 }

 .wc-stats-scn .top-narrow p {
  font-size: 18px;
  margin-bottom: 50px;
 }

 .wc-stats-wrapper {
  margin: auto;
  background: #F9FAFB;
  border-radius: 15px;
  padding: 50px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  border: #E5E7EB 1px solid;
  max-width: 1670px;
  margin-top: 80px;
 }

 .wc-stat-item h3 {
  font-size: 40px;
  font-family: var(--fontB-fm);
  color: #0f172a;
  margin-bottom: 10px;
 }

 .wc-stat-item p {
  font-size: 18px;
  color: #475569;
  margin-bottom: 0px;
 }

 .wc-stat-item .stat-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  background: #2c355e;
  color: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
 }

 .wc-icon {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 8px;
  overflow: hidden;
  margin: 0px auto 10px auto;
 }

 .wc-features-section {
  padding: 0 15px;
  display: flex;
  flex-flow: row wrap;
  margin: auto;
  max-width: 1700px;
  width: 100%;
 }

 .features-grid {
  max-width: 68%;
  margin-left: auto;
  margin-right: 0px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
 }

 .feature-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  position: relative;
  border: #E5E7EB 1px solid;
  display: flex;
  flex-flow: row wrap;
 }

 .feature-card h3 {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 0;
  width: calc(100% - 70px);
  padding-left: 20px;
  padding-top: 20px;
 }

 .feature-card p {
  font-size: 15px;
  color: #232323;
  margin-bottom: 16px;
  line-height: 1.3;
 }

 .feature-card ul {
  list-style: none;
 }

 .feature-card ul li {
  font-size: 14px;
  color: #232323;
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
 }

 .feature-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  background-image: url(../images/cycle-check-icon.svg);
  background-size: 100% 100%;
 }

 .icon {
  width: 44px;
  height: 44px;
  background: #e5e7eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
  color: #1e293b;
 }

 .wc-growth-card {
  width: 30%;
  padding: 36px;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #8b3a3a 0%, #4b355f 45%, #2b3565 100%);
  display: flex;
  flex-flow: row wrap;
  align-content: normal;
 }

 .wc-growth-card h2 {
  color: #fff;
 }

 .feature-icon {
  overflow: hidden;
  border-radius: 8px;
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
 }

 .wc-growth-card .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  text-align: center;
  overflow: hidden;
 }

 .wc-growth-card .growth-card h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 14px;
 }

 .wc-growth-card .growth-card p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
 }

 .wc-growth-card .divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 36px 0;
 }

 .ygp-b-part {
  width: 100%;
  display: flex;
  align-items: flex-end;
 }

 .wc-growth-card .stats {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  align-content: flex-end;
  justify-content: space-between;
  gap: 4%;
  border-top: #a1a1a1 1px solid;
 }

 .wc-growth-card .stat {
  width: 48%;
  margin-top: 20px;
 }

 .wc-growth-card .stat h3 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 5px;
  font-family: var(--fontM-fm);
 }

 .wc-growth-card .stat span {
  font-size: 14px;
  opacity: 0.85;
 }

 .ready-cta-section {
  text-align: center;
  background: linear-gradient(135deg, #8b3a3a 0%, #4b355f 45%, #2b3565 100%);
 }

 .ready-cta-content {
  max-width: 900px;
  margin: 0 auto;
 }


.ready-cta-buttons .cmn-bdr-btn {
    color: #fff;
    border-color: #fff;
}

 .ready-cta-content h2 {
  font-size: 36px;
  font-weight: 600;
color: #fff;
  margin-bottom: 14px;
 }

 .ready-cta-content p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 36px;
 }

 .ready-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
 }

 /*Startup Start*/
 .bss-list {
  display: flex;
  gap: 30px;
  flex-flow: row wrap;
  margin-top: 50px;
 }

 .bss-list .bss-item {
  box-shadow: #ccc 0 0 10px;
  border-radius: 10px;
  width: calc(50% - 15px);
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
 }

 .bss-list .bss-item .bss-img {
  width: 100px;
  height: auto;
 }

 .building-smart-solutions-scn .top-narrow p {
  font-size: 20px;
 }

 .bss-list .bss-item h4 {
  font-size: 22px;
  margin-bottom: 10px;
 }

 .bss-list .bss-item p {
  margin-bottom: 0;
 }

 .bss-btn {
  margin-top: 40px;
 }


.startup-growth-pricing .sgpp-top {
    text-align: center;
}

.startup-growth-table-top {
    display: flex;
    flex-flow: row wrap;
    background-color: #27305D;
    color: #fff;
    font-size: 20px;
    padding: 10px 10px;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.startup-growth-table-top .sgp-item-top {
    width: 14%;
    font-family: var(--fontB-fm);
    text-align: center;
}

.startup-growth-table-top .sgp-item-top:nth-child(1) {
    width: 27%;
}
.startup-growth-table-top .sgp-item-top:nth-child(2) {
    width: 45%;
}

.sgp-item {
    border-left: #ccc 1px solid;
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    border-bottom: #ccc 1px solid;
    border-right: #ccc 1px solid;
    line-height: 1.2;
    
}
.sgp-item:last-child {border-radius: 0px 0 10px 10px;overflow: hidden;}
.sgp-item .sgp-item-sub {
    padding: 6px 15px;
    width: 14%;
    text-align: center;
    min-height: 50px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.sgp-item .sgp-item-sub:nth-child(1) {
    width: 27%;
    text-align: left;
    justify-content: flex-start;
    background-color: #ededed;
    letter-spacing: normal;
    font-family: var(--fontB-fm);
}
.sgp-item .sgp-item-sub:nth-child(2) {
    width: 45%;
    justify-content: flex-start;
}


.sgp-item .sgp-item-sub:nth-child(3) {
    border-left: #ccc 1px solid;
    border-right: #ccc 1px solid;
    font-family: var(--fontB-fm);
}

.startup-growth-pricing .sgpp-top h2 {
    margin-bottom: 10px;
}

.startup-growth-pricing .sgpp-top .subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #747474;
}


.popup-content {
    background-color: #ffff;
}

#brochurePopup .popup-content:before {
 content: normal;
}


.popup-content .close-popup {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 26px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

div#brochurePopup .popup-content {
    position: relative;
}

.popup-content form p {
    padding: 0px;
    margin: 0px;
}

.popup-content form label {
    margin: 0px;
    font-size: 15px;
    color: #000;
    font-family: var(--fontM-fm);
    margin-bottom: 3px;
    margin-top: 18px;
}

.popup-content form p br {
    display: none;
}

.popup-content form input {
    padding: 3px 15px;
    border-radius: 4px;
}

.popup-content form input[type="submit"] {
    padding: 10px 18px;
    margin-top: 20px;
    background-color: var(--theme-sec-clr);
    transition: 0.5s all;
    font-size: 16px;
}

.popup-content form input[type="submit"]:hover {
    text-decoration: none;
    background-color: var(--theme-clr);
}

div#brochurePopup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: 0.5s all;
}
div#brochurePopup .wpcf7-not-valid-tip {
    font-size: 14px;
    margin-top: 6px;
}
.dmca-download {
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
    font-size: 14px;
    align-items: center;
    margin-bottom: 17px;
}

.dmca-download a {
    color: #000;
}

.dmca-download a:hover {
  text-decoration: underline;
}
.dmca-download a:first-child {
    border: var(--theme-clr) 1px solid;
    padding: 3px 4px;
}
.dmca-download a.download-btn {
    color: var(--white-clr);
    background-color: var(--theme-clr);
    padding: 9px 13px;
    line-height: normal;
}
 /*Startup End*/
.s_b_tagline-main,
.startup-bottom-tagline-main {
	display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.services_b_tagline {
 display: flex;
 flex-flow: row wrap;
 justify-content: center;
 margin-top: 50px;
 color: var(--theme-sec-clr);
 border-radius: 6px;
 font-size: 18px;
 font-family: var(--fontM-fm);
 letter-spacing: 0.5px;
 line-height: normal;
 text-align: center;
}

.startup-bottom-tagline {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin-top: 50px;
    color: var(--theme-sec-clr);
    font-size: 18px;
    font-family: var(--fontM-fm);
    letter-spacing: 0.5px;
    line-height: normal;
    text-align: center;
}



.casestudy-tabs {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin-bottom: 50px;
    gap: 15px;
    border-bottom: #e1e1e1 1px solid;
    padding-bottom: 25px;
}


.casestudy-tabs .casestudy-tab-item {
    border: var(--theme-sec-clr) 1px solid;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    color: var(--theme-sec-clr);
    font-family: var(--fontM-fm);
    transition: 0.5s all;
    font-size: 18px;
    line-height: normal;
}

.casestudy-tabs .casestudy-tab-item:hover {
    background-color: var(--theme-sec-clr);
    color: var(--white-clr);
}

 @media (max-width:1400px) {
  .best-work-list .splide__arrow--prev {
   left: 50px;
  }

  .best-work-list .splide__arrow--next {
   right: 50px;
  }

  .startup-process-scn {
   padding-left: 50px;
   padding-right: 50px;
  }

  .startup-steps .card {
   padding: 20px 10px 15px 10px;
   min-height: 250px;
  }

  .startup-steps .card p {
   font-size: 15px;
   line-height: 1.5;
   margin-bottom: 10px;
  }

  .startup-steps .card .duration::before {
   margin-bottom: 5px;
  }

  .startup-steps .duration {
   font-size: 16px;
  }

  .startup-steps {
   gap: 15px;
  }

  .process-list-scn {
   padding: 20px 0;
  }

  .startup-process-top {
   padding-bottom: 30px;
  }

 }

 @media (max-width:1200px) {
  h1,
  .h1 {
   margin-bottom: 15px;
  }

  h2,
  .h2 {
   margin-bottom: 15px;
  }

  h3,
  .h3 {
   margin-bottom: 12px;
  }

  h4,
  .h4 {
   margin-bottom: 8px;
  }

  h5,
  .h5 {
   margin-bottom: 8px;
  }

  nav.menu {
   display: none;
    position: absolute;
    top: 100%;
    left: 0px;
    background-color: #fff;
    max-height: calc(100vh - 60px);
    overflow: auto;
  }


  .menu-open nav.menu {
    display: block;
   
}

.menu ul li {
    width: 100%;
    margin: 0px;
    padding: 0px 0;
    border-bottom: #ccc 1px solid;
}

.menu ul li a {
    padding: 10px 15px;
    display: inline-block;
    width: calc(100% - 40px);
}
.menu ul li.menu-item-has-children>a:after {
    position: absolute;
    right: 15px;
    top: 16px;
    width: 8px;
    height: 8px;
}

.menu ul li ul {
    position: static;
    width: 100%;
    display: block;
    margin: 0px;
    box-shadow: none;
    
}
.menu ul li ul li:last-child {
  border-bottom: none;
}
.menu ul li ul li.menu-item-has-children>a:after {
  content: normal;
}
.menu ul li ul li a {font-family: var(--fontM-fm);}
.menu ul li ul li ul li {padding-left: 8px;}
  .mobile-toggle {
   display: flex;
    width: 25px;
    height: 18px;
    margin-left: 10px;
    flex-flow: row wrap;
    align-content: space-between;
  }
.menu ul li ul li ul li a{
  font-family: var(--fontR-fm);
}
  .mobile-toggle i {
   width: 100%;
   height: 2px;
   background-color: #000;
   display: inline-block;
  }

  section {
   padding: 40px 0;
  }

  .banner-scn {
   min-height: 100%;
  }

  .banner-inner h2 {
   font-size: 60px;
  }

  .banner-inner {
   font-size: 20px;
   max-width: 90%;
  }

  .banner-item {
   width: calc(25% - 6px);
   margin: 0px 3px 0px 3px;
  }

  .innovate-bg-img:before {
   width: 95%;
  }

  .innovate-info h2 {
   font-size: 40px;
   margin-bottom: 15px;
  }

  .ourbrands-icon {
   min-height: 100px;
  }

  .ourbrands-icon img {
   max-width: 120px;
  }

  .best-work-right .cmn-bdr-btn {
   min-width: 160px;
   min-height: 50px;
  }

  .bss-list {
   gap: 15px;
   margin-top: 40px;
  }

  .bss-list .bss-item {
   width: calc(50% - 8px);
   padding: 15px;
   gap: 8px;
  }

  .best-work-list {
   margin-left: -10px;
   width: calc(100% + 20px);
   padding-top: 20px;
  }

  .best-work-item {
   padding: 0px 10px;
  }

  .best-work-cont h3 {
   font-size: 24px;
   padding-right: 25px;
  }

  .best-work-cont h3:after {
   width: 28px;
   height: 28px;
   background-size: 74%;
  }

  .best-work-cate {
   gap: 5px;
   padding: 10px 0px;
  }

  .best-work-cate span {
   font-size: 14px;
   border-radius: 6px;
   min-height: 30px;
   margin: 4px 0px;
  }

  .our-forte-count-no {
   font-size: 35px;
  }

  .s-c-support-inner .s-c-support-left p {
   font-size: 17px;
  }

  .s-c-support-list .scs-item {
   min-height: 47px;
  }

  .sc-support-group {
   max-width: 66%;
  }

  .see-meet-cont {
   max-width: 32%;
   gap: 10px;
  }

  .see-meet-cont .see-meet-item {
   border-radius: 15px;
   padding: 15px;
   min-height: 170px;
  }

  .see-meet-cont .see-meet-item .ever-wonder-txt {
   line-height: 1.3;
  }

  .see-meet-link {
   font-size: 18px;
   padding-right: 50px;
  }

  .see-meet-link:after {
   width: 45px;
   height: 45px;
  }

  .journey-img {
   border-radius: 20px;
  }

  .our-journey-right {
   padding-left: 30px;
  }

  .solutions-inner h2 {
   font-size: 44px;
  }

  .solutions-item-inner {
   padding: 15px;
   border-radius: 15px;
  }

  .solutions-img {
   border-radius: 15px;
  }

  .bss-list .bss-item h4 {
   font-size: 20px;
  }

  .consultation-form-right {
   padding-left: 40px;
  }

  .solutions-item-inner {
   padding: 15px;
   border-radius: 15px;
  }

  .solutions-img {
   border-radius: 15px;
  }

  .ftr-top-inner .ftr-item:nth-child(2) {
   padding-left: 25px;
  }

  .ftr-contactinfo {
   padding: 30px 0px;
  }

  .ftr-top-inner {
   padding-top: 45px;
  }

  .startup-hero h1 {
   font-size: 36px;
  }

  .stat-box {
   padding: 10px;
  }

  .stat-box h3 {
   font-size: 20px;
  }

  .stat-box .stat-icon {
   width: 39px;
  }

  .hero-right img {
   border-radius: 8px;
  }

  .startup-hero {
   padding: 40px 0;
  }

  .process-list-scn .content p {
   font-size: 16px;
  }

  .wc-growth-card {
   padding: 20px;
  }

  .wc-growth-card h2 {
   font-size: 30px;
  }

  .wc-growth-card .stat h3 {
   font-size: 26px;
  }

  .feature-icon {
   width: 50px;
   height: 50px;
   margin-bottom: 15px;
  }

  .startup-cta-scn .cta-container p {
   font-size: 18px;
  }

  .feature-card h3 {
   font-size: 18px;
   padding-top: 15px;
   padding-left: 10px;
   width: calc(100% - 50px);
  }

  .startup-services-scn {
   padding: 50px 0;
  }

  .startup-services-scn .section-header h2 {
   font-size: 36px;
  }

  .startup-services-scn .service-grid {
   gap: 15px;
  }

  .startup-steps .card {
   min-height: 310px;
  }

  .startup-process-scn {
   padding-left: 30px;
   padding-right: 30px;
  }

  .inner-bnr-inner {
   min-height: 360px;
  }

  .inner-bnr-inner p {
   font-size: 20px;
   margin-bottom: 0;
  }

  .latest-title {
   font-size: 18px;
  }

  .cmn-btn {
   font-size: 14px;
   padding: 8px 20px;
  }

  .filter-item {
   padding: 10px 14px;
   font-size: 15px;
  }

  .hp-step {
   padding: 0px 10px 12px 10px;
  }

  .hp-step h3 {
   margin-bottom: 5px;
  }

  .icon-circle {
   width: 60px;
   height: 60px;
  }

  .jobfilter-list .job-list {
   width: 71%;
  }

  .job-card {
   margin-bottom: 12px;
   padding: 18px;
  }

  .worklife-grid .card {
   padding: 15px;
   min-height: 160px;
  }

  .worklife-grid .card h3 {
   font-size: 20px;
  }

  .over-badge-list .c-badge-item img {
   max-width: 120px;
  }

  .over-badge-list {
   max-width: 590px;
  }

  .image-cont-inner h2 {
   font-size: 28px;
  }

  .cta-scn .cta-inner h3 {
   font-size: 26px;
  }

  .cta-scn .cta-inner p {
   font-size: 18px;
  }

  .image-cont-inner .cmn-btn {
   margin-top: 0px;
  }

  p {
   margin-bottom: 18px;
  }

  .image-cont-inner .image-cont-left {
   height: 450px;
  }
  .casestudy-menu {
    padding-left: 15px;
    padding-right: 15px;
  }

.banner-right .contactus-form {
    padding: 20px 15px;
}

.contactus-form .form-desc {
    font-size: 16px;
    padding-bottom: 0px;
}

.contactus-form .contact-title {
    font-size: 14px;
}

.contact-form .input-field {
    font-size: 14px;
    padding: 8px 10px;
    height: 40px;
    margin-bottom: 5px;
}
.contact-form .form-check .input-field {
padding:0px 0px;
}
.contact-form textarea.input-field {
    min-height: 100px;
    padding-left: 10px;
}
body .contact-form input[type="submit"].cmn-btn {
      margin-top: 5px;
}
.locations-list .loc-card .card-content {
    padding: 15px 15px;
}

.locations-list .loc-card .card-content a {
    font-size: 14px;
}

.locations-list .loc-card .card-content .loc-add {
    font-size: 14px;
}

.locations-list .loc-card .card-content h3 {
    font-size: 16px;
}
.global-locations-scn p {
    margin-bottom: 30px;
    font-size: 18px;
}
.pd-dtl-info-scn .pd-dtl-cont,
.pd-dtl-bnr .pd-dtl-cont {
    padding-left: 15px;
}
.case-study-list .case-study-card .cs-card-cont {
      max-width: 55%;
      padding: 20px 20px 10px 20px;
}
.case-study-list .case-study-card .cs-card-cont h4 {
  font-size: 24px;
}
.casestudy-listing-counts {
    gap: 6px;
    margin-top: 10px;
}
.cs-overview-inner .cs-overview-cont {
    width: 57%;
    font-size: 20px;
}
.challenges-list .c-item {
    font-size:16px;
}
.our-solution-cont {
    width: 57%;
    font-size: 18px;
}
.challenges-list .c-item {
        min-height: 50px;
}
.challenges-list .c-item:before {
        top: 20px;
}

 }

 @media (max-width:992px) {
  .solutions-inner h2 {
   font-size: 36px;
  }

  .our-forte-inner h2 {
   font-size: 34px;
  }

  .our-forte-item-inner span {
   font-size: 16px;
  }

  .innovate-info h2 {
   font-size: 30px;
  }

  .innovate-scn p {
   font-size: 18px;
   max-width: 600px;
  }

  .tech-tabs .tech-tab-item {
   font-size: 15px;
   padding-bottom: 5px;
   margin: 0px 10px 6px 10px;
  }

  .tech-list-main .tech-s-item h3 {
   font-size: 14px;
  }

  .building-smart-solutions-scn .top-narrow p {
   font-size: 18px;
  }

  .testimonials-top {
   margin-bottom: 30px;
  }

  .h-tagline {
   font-size: 16px;
  }

  .contactinfo .fc-info-item {
   padding: 15px;
   font-size: 15px;
  }

  .contactinfo .fc-info-item {
   width: 50% !important;
   min-height: 70px;
  }

  .ftr-b-left {
   font-size: 14px;
  }

  .ftr-top-inner .ftr-item {
   width: 50% !important;
   margin-bottom: 30px;
  }

  .ftr-top-inner {
   padding-bottom: 0px;
  }

  .ftr-b-inner {
   text-align: center;
  }

  .inner-bnr h1 {
   margin-bottom: 10px;
  }

  .inner-bnr-inner p {
   font-size: 18px;
  }

  .inner-bnr-inner p:empty {
   display: none;
  }

  .certification-badges {
   padding-top: 10px;
  }

  .inner-bnr-inner {
   min-height: 400px;
  }

  .inner-bnr-inner p:empty {
   display: none;
  }

  .services-grid {
   margin-top: 20px;
   gap: 15px;
  }

  .service-box {
   padding: 15px;
  }

  .service-box h3 {
   margin-bottom: 10px;
   font-size: 20px;
  }

  .service-box p {
   font-size: 14px;
  }

  .industries-list .industries-cardbox {
   width: calc(33.33% - 7px);
  }

  .industries-list .industries-cardbox .indust-text {
   font-size: 15px;
   width: calc(100% - 46px);
  }

  .industries-list .industries-cardbox .indust-icon {
   width: 40px;
   height: 40px;
  }

  .industries-list {
   gap: 10px;
  }

  .wcu-cards {
   margin-top: 35px;
   gap: 15px;
  }

  .wcu-card {
   padding: 20px 15px;
  }

  .wcu-card h3 {
   margin-bottom: 8px;
  }

  .wcu-card p {
   line-height: 1.4;
  }

  .section-top h2 {
   font-size: 32px;
  }

  .startup-steps {
   grid-template-columns: repeat(3, 1fr);
  }

  .startup-steps .step-icon {
   width: 50px;
   height: 50px;
   margin-bottom: 20px;
   margin-top: 30px;
  }

  .startup-steps .step-icon img {
   width: 65%;
  }

  .ss-icon {
   display: flex;
   flex-flow: row wrap;
   justify-content: center;
  }

  .startup-steps .step-icon span {
   font-size: 10px;
   width: 20px;
   height: 20px;
   top: 0px;
  }

  .startup-steps:after {
   content: normal;
  }

  .startup-steps .card {
   min-height: 260px;
  }

  .startup-process-top {
   padding-bottom: 0;
  }

  .startup-services-scn .service-grid {
   grid-template-columns: repeat(2, 1fr);
  }

  .startup-services-scn .service-card {
   padding: 20px;
   border-radius: 10px;
  }

  .built-for-founders-scn .card {
   padding: 12px;
   border-radius: 10px;
  }

  .built-for-founders-scn .icon {
   width: 50px;
   height: 50px;
   border-radius: 10px;
  }

  .built-for-founders-scn .card p {
   font-size: 14px;
   line-height: 1.4;
   margin-bottom: 10px;
  }

  .wc-growth-card h2 {
   font-size: 25px;
  }

  .wc-growth-card {
   padding: 15px;
  }

  .wc-stats-scn {
   padding: 40px 0;
  }

  .feature-card {
   padding: 12px;
  }

  .ready-cta-content h2 {
   font-size: 30px;
  }

  .ready-cta-content p {
   margin-bottom: 20px;
  }

  .hero-left {
   flex: 1.5;
  }

  .startup-hero-inner {
   gap: 15px;
  }

  .s-why-choose-scn {
   padding: 40px 0 10px 0;
  }

  .built-for-founders-scn .section-header p {
   font-size: 17px;
  }

  .blog-item {
   width: calc(50% - 16px);
  }

  .inner-bnr-inner {
   min-height: 300px;
  }

  .hp-steps {
   gap: 6px;
   margin-top: 60px;
  }

  .hp-step h3 {
   font-size: 16px;
  }

  .hp-step p {
   line-height: 1.2;
  }

  .image-cont-inner {
   align-items: flex-start;
  }

  .image-cont-inner .image-cont-left {
   height: 380px;
  }

  .image-cont-inner h2 {
   font-size: 24px;
  }
  .post-content h2 {
    font-size: 26px;
    margin-bottom: 8px;
}

.post-content h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.post-content h4 {
    font-size: 20px;
    margin-bottom: 4px;
}

.post-content h5 {
    font-size: 17px;
}
.post-content h6 {
    font-size: 15px;
}

.casestudy-menu-list .casestudy-m-item {
    width: calc(16.44% - 10px);
    display: flex;
    gap: 15px;
    flex-flow: row wrap;
    justify-content: center;
}

.what-do-list .what-do-card:nth-child(3){
    margin-top: 0px;
}
.what-do-list .what-do-card:nth-child(4) {
    margin-top: 30px;
}
.pd-dtl-bnr .pd-dtl-cont,
.pd-dtl-info-scn .pd-dtl-cont {
      width: 58%;
}
.pd-dtl-list .pd-item {
  padding: 8px;
}
.casestudy-listing-counts {
  display: none;
}
.banner-item {
    width: calc(50% - 6px);
    margin: 0px 3px 30px 3px;

    }
 }

 @media (max-width:767px) {
  .hdr-logo {
   max-width: 160px;
  }

  .fixed .hdr-logo img {
   max-width: 150px;
  }

  .hdr-btn a.cmn-btn {
   font-size: 12px;
   padding: 6px 14px;
  }

  body {
   padding-top: 60px;
  }

  h2,
  .h2 {
   margin-bottom: 10px;
  }

  h3,
  .h3 {
   margin-bottom: 8px;
  }

  h4,
  .h4 {
   margin-bottom: 6px;
  }

  h5,
  .h5 {
   margin-bottom: 5px;
  }

  h6,
  .h6 {
   margin-bottom: 8px;
  }

  p {
   margin-bottom: 15px;
  }
 section {
  padding: 30px 0;
 }
  .header-scn {
   min-height: 60px;
  }

  .fixed .header-scn {
   min-height: 60px;
  }

  .banner-inner h2 {
   font-size: 38px;
  }

  .banner-inner {
   max-width: 100%;
   font-size: 18px;
  }

  .banner-item-img {
   border-width: 2px;
   border-radius: 6px;
  }

  .our-journey-scn {
   padding-top: 35px;
  }

  .our-journey-left {
   width: 100%;
  }

  .our-journey-right {
   padding-left: 0px;
   width: 100%;
   margin-top: 30px;
  }

  .s-c-support-inner .s-c-support-left {
   width: 100%;
  }

  .s-c-support-list .scs-item {
   font-size: 14px;
  }

  .s-c-support-inner .s-c-support-right {
   width: 100%;
   margin-top: 40px;
  }

  .sc-support-group {
   max-width: 100%;
  }

  .see-meet-cont {
   max-width: 100%;
   margin-top: 16px;
  }

  .see-meet-cont .see-meet-item {
   max-width: 48%;
  }

  .see-meet-link:after {
   width: 38px;
   height: 38px;
   background-size: 48%;
  }

  .tech-tabs {
   flex-flow: row wrap;
   padding-top: 10px;
  }

  .bss-list .bss-item {
   width: 100%;
   padding: 12px;
   border-radius: 10px;
  }

  .bss-list .bss-item h4 {
   font-size: 18px;
  }

  .test-item-inner {
   border-radius: 15px;
   padding: 20px;
  }

  .test-item-inner .test-item-desc {
   font-size: 16px;
   line-height: 1.4;
   margin-top: 20px;
  }

  .consultation-form-left {
   width: 100%;
  }

  .consultation-form-right {
   padding-left: 0px;
   width: 100%;
   margin-top: 30px;
  }

  .best-work-cont h3 {
   font-size: 20px;
  }

  .best-work-img img {
   border-radius: 15px;
  }

  .best-work-item {
   padding: 0px;
  }

  .contactinfo .fc-info-item {
   width: 100% !important;
   min-height: inherit;
  }

  .ftr-top-inner .ftr-item {
   width: 100% !important;
   padding: 0px;
  }

  .innovate-info h2 {
   font-size: 24px;
  }

  .innovate-bg-img {
   padding-top: 15px;
  }

  .innovate-bg-img:after {
    width: 40px;
    height: 32px;
    background-size: 80% 80%;
    right: -30px;
  }

  .customer-dtl .c-name {
   font-size: 18px;
  }

  .c-designation {
   font-size: 15px;
  }

  .best-work-left {
   width: 100%;
   margin-bottom: 10px;
  }

  .tech-list-main .tech-s-item {
   width: calc(33.33% - 10px);
  }

  .solutions-list:before,
  .solutions-list:after {
   width: 20px;
   height: 20px;
   background-size: 100%;
  }

  .solutions-item-inner h4 {
   font-size: 18px;
   padding-top: 10px;
  }

  .solutions-item-inner p {
   font-size: 16px;
  }

  .solutions-inner h2 {
   font-size: 32px;
  }

  .our-forte-inner h2 {
   font-size: 30px;
  }

  .building-smart-solutions-scn .top-narrow p {
   font-size: 16px;
  }

  .best-work-list .splide__arrow--prev {
   left: 20px;
  }

  .best-work-list .splide__arrow--next {
   right: 20px;
  }

  .splide__arrow {
   width: 35px;
   height: 35px;
  }

  .splide__arrow svg {
   width: 50%;
  }

  .contact-info-btn {
    font-size: 10px;
    height: 136px;
    letter-spacing: normal;
  }

  .tech-tabs .tech-tab-item {
   font-size: 15px;
   margin: 5px 8px;
   line-height: normal;

  }

  .ftr-top-inner .ftr-title {
   font-size: 20px;
   margin-bottom: 10px;
  }

  .ftr-menu li {
   margin: 6px 0;
   font-size: 15px;
  }

  .best-work-right .cmn-bdr-btn {
   min-width: 130px;
   min-height: 40px;
  }

  .inner-bnr-inner .bnr-left {
   width: 100%;
  }

  .inner-bnr h1 {
   font-size: 32px;
  }

  .inner-bnr-inner .banner-right {
   width: 100%;
   margin-top: 25px;
  }

  .image-cont-inner .image-cont-left {
   width: 100%;
   height: 230px;
  }

  .image-cont-inner .image-cont-right {
   width: 100%;
   margin-top: 30px;
  }

  .image-cont-inner h2 {
   font-size: 28px;
  }

  .section-top h2 {
   font-size: 30px;
  }

  .service-box {
   width: 100%;
  }

  .industries-list .industries-cardbox {
   width: calc(50% - 7px);
   padding: 8px 5px;
  }

  .industries-list .industries-cardbox .indust-text {
   padding-left: 6px;
  }

  .wcu-cards {
   flex-flow: row wrap;
   margin-top: 0px;
  }

  .wcu-card {
   width: 100%;
   margin-top: 0px !important;
  }

  .wcu-card h3 {
   font-size: 20px;
  }

  .faq-accordion-header {
   font-size: 15px;
   padding: 10px 15px;
  }

  .faq-accordion-item.active .faq-accordion-body {
   padding: 5px 15px 0px 15px;
  }

  .s-why-choose-scn {
   padding: 40px 0 10px 0;
  }

  .startup-hero-inner {
   flex-flow: column;
  }

  .hero-buttons a {
   font-size: 14px;
   padding-left: 15px;
   padding-right: 15px;
  }

  .hero-left .badge {
   font-size: 12px;
   padding: 8px 10px;
   min-height: 34px;
  }

  .startup-hero h1 {
   font-size: 30px;
  }

  .startup-hero p {
   font-size: 16px;
  }

  .features li {
   font-size: 14px;
   padding-left: 25px;
  }

  .features li::before {
   top: -1px;
  }

  .features {
   margin-bottom: 15px;
  }

  .hero-buttons {
   gap: 10px;
  }

  .stats {
   gap: 8px;
  }

  .startup-hero p {
   font-size: 14px;
  }

  .feature-box {
   width: calc(50% - 15px);
   padding: 10px 4px;
  }

  .s-why-choose-list {
   gap: 10px;
  }

  .built-for-founders-scn .cards {
   grid-template-columns: repeat(2, 1fr);
   gap: 10px;
  }

  .built-for-founders-scn .icon {
   margin-bottom: 14px;
  }

  .startup-services-scn .section-header h2 {
   font-size: 25px;
  }

  .startup-services-scn .section-header p {
   font-size: 16px;
  }

  .startup-services-scn .section-header {
   margin-bottom: 25px;
  }

  .startup-services-scn .service-grid {
   grid-template-columns: repeat(1, 1fr);
  }

  .startup-steps {
   grid-template-columns: repeat(1, 1fr);
  }

  .startup-steps .card {
   min-height: inherit;
  }

  .process-list-scn .process-item {
   padding: 15px;
   gap: 12px;
  }

  .process-list-scn .step-number {
   min-width: 42px;
   height: 42px;
   font-size: 15px;
   border-radius: 8px;
  }

  .process-list-scn .content p {
   font-size: 15px;
   line-height: 1.4;
  }

  .process-list-scn .tags span {
   padding: 2px 10px;
  }

  .cta-container {
   padding: 40px 20px;
  }

  .startup-cta-scn .cta-container h2 {
   font-size: 26px;
  }

  .startup-cta-scn .cta-container p {
   line-height: 1.4;
   font-size: 16px;
   margin-bottom: 20px;
  }

  .wc-stats-scn .top-narrow p {
   font-size: 16px;
   margin-bottom: 20px;
  }

  .wc-growth-card {
   width: 100%;
  }

  .features-grid {
   max-width: 100%;
   gap: 10px;
   margin-top: 20px;
   grid-template-columns: repeat(1, 1fr);
  }

  .ready-cta-content h2 {
   font-size: 27px;
  }

  .cmn-btn,
  .cmn-bdr-btn {
   font-size: 12px;
   padding-left: 15px;
   padding-right: 15px;
   padding-top: 7px;
   padding-bottom: 7px;
  }

  .startup-steps .step-icon {
   margin-bottom: 10px;
   margin-top: 15px;
  }

  .startup-steps .duration {
   font-size: 14px;
  }

  .startup-services-scn .link {
   font-size: 14px;
  }

  .built-for-founders-scn .section-header {
   margin-bottom: 30px;
  }

  .hero-right {
   margin-top: 20px;
  }

  .startup-cta-scn .cta-button {
   font-size: 15px;
   padding: 8px 18px;
  }

  .process-list-scn .content h3 {
   font-size: 18px;
  }

  .blog-item {
   width: calc(100% - 16px);
  }

  .blog-cont {
   padding-top: 10px;
  }

  .hp-step {
   width: 49%;
   margin-bottom: 52px;
  }

  .hp-steps {
   justify-content: center;
  }

  .jobfilter-list .job-filters {
   width: 100%;
   margin-bottom: 30px;
  }

  .jobfilter-list .job-list {
   width: 100%;
  }

  .job-tags span {
   font-size: 12px;
   margin-bottom: 5px;
   padding: 6px 10px;
  }

  .job-card p {
   font-size: 14px;
  }

  .job-title {
   font-size: 18px;
   line-height: 1.3;
  }

  .jp-arrow {
   top: 10px;
   width: 30px;
   height: 30px;
   right: 12px;
   background-size: 38%;
  }

  .worklife-grid .card {
   width: 100%;
   min-height: inherit;
  }

  .over-badge-list .c-badge-item img {
   max-width: 100px;
  }

  .over-20-years-scn {
   padding-top: 0;
  }

  .hiring-process {
   padding-bottom: 0;
  }

  .thought-leadership-list-main .blog-item:first-child .blog-img {
   width: 100%;
   border-radius: 10px 10px 0 0;
  }

  .thought-leadership-list-main .blog-item:first-child .blog-cont {
   width: 100%;
   padding: 20px;
  }

  .image-cont-inner h2 {
   font-size: 22px;
  }

  .image-cont-inner ul,
  .image-cont-inner ol {
   padding-top: 0;
   padding-bottom: 8px;
   padding-left: 18px;
   margin-bottom: 0px;
  }
  .h-tagline {
        font-size: 14px;
    }
    .wcu-card {
     min-height: inherit;
    }
    .input-g-half {
    width: calc(50% - 5px);
}
.contact-form .input-field {
    font-size: 14px;
    height: 44px;
    margin-bottom: 8px;
    padding: 10px 10px;
 }
.form-check label {
    font-size: 14px;
}
.contact-form textarea.input-field {
    min-height: 120px;
    padding-left: 10px;
}
.tech-icon {
    font-size: 30px;
 
}
.tech-icon.icon-ic-meta-llama {
    font-size: 22px;
}
    .tech-list-main .tech-s-item h3 {
        font-size: 13px;
    }
.tech-list-main .tech-s-item .icon-block {
 height: 100px;
}
.testimonials-slider .splide__arrow.splide__arrow--next {
 right: 0.5em;
}
.testimonials-slider .splide__arrow.splide__arrow--prev {
 left: 0.5em;
}
.faq-accordion {
    margin: 20px auto 0px auto;
}
.faq-accordion-item.active .faq-accordion-body {
 font-size: 14px;
}
.blog-detail .blog-d-group .blog-d-left {
    width:100%;
}

.blog-detail .blog-d-group .blog-d-right {
    width: 100%;
}


  .post-content h2 {
    font-size: 22px;
    
}

.post-content h3 {
    font-size: 18px;
    
}

.post-content h4 {
    font-size: 16px;
    
}

.post-content h5 {
    font-size: 15px;
}
.post-content h6 {
    font-size: 14px;
}
.casestudy-menu-list .casestudy-m-item {
    width: 100%;
 
}
.casestudy-menu-inner h2 {
    font-size: 20px;
    padding-right: 40px;
}
.casestudy-menu-close {
    font-size: 22px;
    width: 24px;
    height: 24px;
}
.casestudy-menu {
    overflow: auto;
    max-height: calc(100vh - 90px);
}

.our-story-inner .our-story-left {
    width: 100%;
}

.our-story-inner .our-story-right {
    width: 100%;
    margin-top: 20px;
}

.clutch-box {
    left: 10px;
    padding: 10px;
    max-width: 210px;
}

.clutch-img {
    max-width: 60px;
    margin-top: 0px;
    margin-bottom: 5px;
}

.clutch-box .clutch-txt {
    padding-top: 8px;
    font-size: 14px;
}

.our-story-inner h2 {
    font-size: 26px;
}

.founder-textsay-group .meet-founders-part {
    width: 100%;
}

.founder-textsay-group .m-founders-say {
    width: 100%;
    margin-top: 20px;
    font-size: 20px;
    line-height: 1;
    display: inline-block;
}

.f-card-cont-social {
    padding: 10px;
}

.f-card-cont {
    width: 100%;
}

.f-card-cont .f-name {
    font-size: 18px;
    margin-bottom: 2px;
}

.f-designation {
    font-size: 12px;
}

.f-social {
    margin-top: 8px;
}

.f-social a {
    width: 30px;
    height: 30px;
}
.our-forte-list {
  width: 100%;
}
.our-forte-item {
    width: calc(33.33% - 10px);
    margin: 0px 5px;
}
.our-forte-count-no {
        font-size: 25px;
    }
        .our-forte-item-inner span {
        font-size: 13px;
    }
    .what-do-list .what-do-card {
    margin-top: 0px !important;
}
.cta-scn .cta-inner .cta-left {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}
.cta-scn .cta-inner h3 {
        font-size: 22px;
    }
.cta-scn .cta-inner p {
        font-size: 15px;
    }
.cta-right {
    width: 100%;
    text-align: center;
}
.locations-list .loc-card {
    width: 100%;
    border-radius: 10px;
}
.global-locations-scn p {
    margin-bottom: 30px;
    font-size: 16px;
}
.contactus-form .form-title {
  font-size: 22px;
}
.career-dtl-bnr {
  min-height: 120px;
}
.post-content {
    margin-top: 0;
}
.career-group .career-d-left {
    width: 100%;
}
.career-group .career-d-right {
    width: 100%;
    margin-top: 10px;
}
.career-d-right.contact-form input[type="file"] {
    font-size: 12px;
}
.contact-info .contact-info-links {
    width: 36px;
    height: 36px;
    padding: 10px;
}
.contact-info .contact-info-links:nth-child(2).show {
    transform: translate(-70px, -100px);
}
.contact-info .contact-info-links:nth-child(4).show {
    transform: translate(-40px, 20px);
}

.contact-info .contact-info-links:nth-child(3).show {
    transform: translate(-70px, -40px);
}

.contact-info .contact-info-links.show {
    transform: translate(-50px, -160px);
}
.solutions-list .splide__arrow--prev,
.solutions-list .splide__arrow--next {
      top: -10px;
}
.innovate-bg-img:before {
  border-width: 2px;
}
.innovate-bg-img img {
    border-radius: 10px;
    margin: auto;
    padding: 0px 15px;
 
}
.consultation-form-left p {
  font-size: 16px;
}
.pd-dtl-bnr .pd-dtl-cont,
.pd-dtl-info-scn .pd-dtl-cont {
  width: 100%;
  padding: 0px 15px;
}
.pd-dtl-bnr .pd-dtl-img,
.pd-dtl-list .pd-item,
.pd-dtl-info-scn .pdt-dtl-img
 {
  width: 100%;
}

.casestudy-top .casestudy-top-cont {
    width: 100%;
}
.case-study-list .case-study-card .cs-card-cont {
    padding: 20px 20px 10px 20px;
    position: static;
    max-width: 100%;
    background-color: #000;
}
.casestudy-listing-counts {
  width: 100%;
}
.case-study-list .case-study-card .cs-card-cont h4 {
  font-size: 20px;
}
.casestudy-listing-counts .cs-lc-item .cs-lc-title {
  font-size: 22px;
}
.casestudy-listing-counts .cs-lc-item .cs-lc-desc {
  font-size: 12px;
}
.banner-item-inner {
    margin-top: -14px;
}
.contactinfo {
    border-radius: 10px;
    padding: 12px 0;
}
.faq-icon {
    width: 13px;
    height: 12px;
   
}
    .ftr-top-inner {
        padding-top: 25px;
    }
    .pd-dtl-bnr .pd-dtl-cont {
        font-size: 18px;
    }
    .pd-dtl-list .pd-item-title {
        font-size: 20px;
    }
        .ftr-top-inner .ftr-item:nth-child(2) {
        padding-left: 0;
    }
    .tool-logo {
        height: auto;
    }
    .testimonials-scn {
        padding-bottom: 50px;
    }
    .menu ul li ul li:hover a {
        color: #000;
    }
.banner-item {
    width: calc(90% - 6px);
    margin: 0px auto 30px auto;

    }
    .banner-item:nth-child(2) {
    top: 0;
}
.banner-item-img,
.banner-item .banner-item-cont{
 transform: none !important;
}
.menu ul li ul li:hover a {
    color: #000 !important;
}
    .menu ul li ul li ul li {
        padding-left: 4px;
    }
    .menu ul li ul li a {
        font-size:14px;
    }
    .menu ul li a {
      padding-left:10px;
    }
   .menu-open .contact-info-btn {
        z-index: 1;
    }
    .services_b_tagline,
    .startup-bottom-tagline {
    margin-top: 30px;
    padding: 10px 30px;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
			}
			.our-journey-right p {
    font-size: 16px;
    line-height: 1.3;
}

 .testimonials-slider .splide__arrow.splide__arrow--prev {
    left: 15px;
}
.testimonials-slider .splide__arrow.splide__arrow--next {
    right: 15px;
}
.psc-cont ul, .psc-cont li {
    font-size:15px
}

.result-inner .result-cont {
    width: 100%;
}


.result-img {
    width: 100%;
    border-radius: 10px;
}

.single-case-study .bnr-cont-part {
    width: 100%;
}
.bnr-logo {
    max-width: 140px;
    padding: 4px;
    margin-top: 10px;
}
.cs-overview-inner .cs-overview-cont {
    width: 100%;
    font-size: 18px;
}
.cs-overview-inner .cs-overview-img {
    width: 100%;
    margin-top: 23px;
}
.challenges-img {
    width: 100%;
    margin-top: 20px;
}

.challenges-cont {
    width: 100%;
}
.our-solution-cont {
    width: 100%;
}
.our-solution-img {
    width: 100%;
    margin-top: 25px;
    order: 2;
}
.challenges-list {
    gap: 10px;
}
.po-part ul li, .result-scn ul li {
    font-size: 16px;
}
 }
