@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bonheur+Royale&display=swap");
:root {
  --base-font: "Plus Jakarta Sans", sans-serif;
  --dark-black: #121212;
  --light-black: #576076;
  --title-color: #0a0a0a;
  --bg-gray: #005576;
  --primary-color: rgba(0, 164, 227, 1);
  --transition: all 300ms linear;
}

body {
  margin: 0;
  padding: 0;
  line-height: 26px;
  font-size: 16px;
  font-family: var(--base-font);
  font-weight: 400;
  color: var(--light-black);
  letter-spacing: 0.2px;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0;
  color: var(--dark-black);
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: unset;
  outline: none;
}
a:hover {
  color: unset;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
button {
  cursor: pointer;
  outline: 0;
  border: none;
  background-color: transparent;
}
input,
textarea,
select {
  outline: 0;
  border: none;
  resize: none;
}

.common-btn {
  line-height: 58px;
  height: 58px;
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
  display: inline-flex;
  align-items: center;
  padding: 0 30px;
  border-radius: 28px;
  color: #fff;
  font-weight: 700;
  transition: 0.3s ease all;
  white-space: nowrap;
  font-size: 16px;
}

.white-btn {
  background-color: transparent;
  color: var(--primary-color);
}

.common-btn.white-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.common-btn:hover,
.common-btn:focus {
  background: #0578a4 !important;
  color: #fff;
  border-color: #0578a4 !important;
}

.ptb-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}
.ptb-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pt-90 {
  padding-top: 90px;
}

.flex-beetwen {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header {
  position: absolute !important;
}

.home header.header-fixed {
  margin-top: 0;
}

header {
  padding: 22px 0;
  position: absolute !important;
  top: 0;
  width: 100%;
  z-index: 1020;
  margin-top: 0px;
}

.home .header-fixed {
  position: fixed !important;
}

.header-fixed {
  position: fixed !important;
  top: 0px;
  left: 0px;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  z-index: 999;
  margin-top: 0;
}

.header-fixed .header-top {
  border: 0;
  box-shadow: none;
}

/* Header Navigation */

.nav-inner-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}

.nav-inner-menu.black-overlay::after {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  content: "";
  height: 100%;
}
.header-navigation .nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
}
.header-navigation .nav-overlay.active {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 767px) {
  .header-navigation .site-branding {
    max-width: 150px;
  }
}
.header-navigation .main-menu ul > li {
  display: inline-block;
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .header-navigation .main-menu ul > li {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.header-navigation .main-menu ul > li.has-children > a:after {
  content: "Ã¯â€žâ€¡";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  display: inline-block;
  font-size: 14px;
  margin-left: 5px;
  margin-top: 2px;
  float: right;
}
@media (max-width: 1199px) {
  .header-navigation .main-menu ul > li.has-children > a:after {
    display: none;
  }
}
.header-navigation
  .main-menu
  ul
  > li.has-children
  .sub-menu
  li.has-children:hover
  > a:after {
  color: var(--red);
}
.header-navigation
  .main-menu
  ul
  > li.has-children
  .sub-menu
  li.has-children
  > a:after {
  margin-left: 0px;
  margin-right: 5px;
  color: var(--thm-black);
}
.header-navigation .main-menu ul > li > a {
  position: relative;
  display: block;
  font-size: 16px;
  color: var(--dark-black);
  font-weight: 800;
  padding: 10px 0;
  font-weight: 600;
  line-height: 1;
}

.header-navigation .main-menu ul > li {
  margin-left: 20px;
  margin-right: 20px;
}

.header-navigation .main-menu ul > li .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  min-width: 240px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 99;
  padding: 15px 0;
  height: auto;
  text-align: left;
  border-radius: 5px;
  -webkit-box-shadow: 0 30px 70px 0 rgba(137, 139, 142, 0.15);
  box-shadow: 0 30px 70px 0 rgba(137, 139, 142, 0.15);
}
.header-navigation .main-menu ul > li .sub-menu li {
  display: block;
  margin: 0;
}
.header-navigation .main-menu ul > li .sub-menu li:last-child > a {
  border-bottom: none;
}
.header-navigation .main-menu ul > li .sub-menu li a {
  display: block;
  padding: 0 20px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0;
  line-height: 2.7;
  margin: 0;
  font-size: 16px;
  color: var(--thm-black);
  text-transform: none;
}
.header-navigation .main-menu ul > li .sub-menu li a:before {
  display: none;
}
.header-navigation .main-menu ul > li .sub-menu li a:hover {
  color: var(--red);
}
.header-navigation .main-menu ul > li .sub-menu li .sub-menu {
  left: 100%;
  top: 50%;
}
.header-navigation .main-menu ul > li .sub-menu li:hover .sub-menu {
  top: 0%;
}
.header-navigation .main-menu ul > li .sub-menu li:hover > a {
  color: rgba(0, 164, 227, 1);
}

.header-navigation .main-menu ul > li:hover > a:before {
  width: 100%;
}
.header-navigation .main-menu ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.header-navigation .main-menu ul > li .dd-trigger {
  display: none;
}
@media (max-width: 767px) {
  .header-navigation .nav-right-item .menu-button {
    display: none;
  }
}
.header-navigation.breakpoint-on {
  z-index: 999;
}
.header-navigation.breakpoint-on .sidebar-logo {
  display: block;
}
.header-navigation.breakpoint-on .nav-menu {
  text-align: left;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: -300px;
  z-index: 9999;
  width: 300px;
  height: 100%;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  padding: 0;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: block;
  overflow-x: hidden;
  overflow-y: scroll;
  padding-top: 70px;
}

.nav-right-item {
  display: flex;
  align-items: center;
}
.nav-right-item .header-btn:last-child {
  margin-left: 15px;
}
.we-hired-link .common-btn {
  background-color: #ffb71d;
  color: #121212;
  border-color: #ffb71d;
}
.we-hired-link .common-btn:hover,
.we-hired-link .common-btn:focus {
  background-color: transparent;
  color: #121212;
  background-color: #dc9f1c !important;
  border-color: #dc9f1c !important;
}
.header-navigation.breakpoint-on .nav-menu.menu-on {
  right: 0;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li {
  display: block;
  margin: 0;
  border-bottom: 1px solid #ececec;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li:last-child {
  border-bottom: 0;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li.active .sub-menu {
  border-top: 1px solid #ececec;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li a {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #17171d;
  padding: 13px 20px;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  visibility: visible;
  opacity: 1;
  display: none;
  -webkit-transition: none;
  transition: none;
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li .sub-menu li a {
  color: #17171d;
  padding: 0px 20px 0 40px;
  line-height: 45px !important;
}
.header-navigation.breakpoint-on
  .nav-menu
  .main-menu
  ul
  li
  .sub-menu
  li
  a:hover {
  border-color: rgba(255, 255, 255, 0.5);
}
.header-navigation.breakpoint-on .nav-menu .main-menu ul li .dd-trigger {
  display: block;
  position: absolute;
  right: 0;
  height: 42px;
  width: 45px;
  top: 0;
  border-left: 0;
  z-index: 2;
  background: transparent;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
  color: #17171d;
  font-size: 20px;
}
.header-navigation.breakpoint-on .nav-menu .main-menu.menu-on {
  left: 0;
}
.header-navigation.breakpoint-on .navbar-toggler,
.header-navigation.breakpoint-on .navbar-close {
  display: block;
}
.header-navigation .navbar-toggler {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: none;
  margin-left: 30px;
}
.header-navigation .navbar-toggler span {
  position: relative;
  background-color: #17171d;
  border-radius: 3px;
  display: block;
  height: 3px;
  margin-top: 5px;
  padding: 0;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  width: 30px;
  cursor: pointer;
  display: block;
}
.header-navigation .navbar-toggler.active span:nth-of-type(1) {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
  top: 8px;
}
.header-navigation .navbar-toggler.active span:nth-of-type(2) {
  opacity: 0;
}
.header-navigation .navbar-toggler.active span:nth-of-type(3) {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
  top: -8px;
}
.header-navigation .navbar-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 12;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  display: none;
  cursor: pointer;
  background: var(--red);
}
.header-navigation .navbar-close i {
  color: #fff;
  font-size: 20px;
}

.logo img,
.logo {
  width: 153px;
  flex-shrink: 0;
  display: flex;
}

.header-menu ul {
  display: flex;
}

.header-menu ul li {
  margin: 0 20px;
}

.header-menu ul li a {
  font-weight: 600;
  color: var(--dark-black);
}

.header-top {
  border: 1px solid rgba(0, 157, 217, 0.15);
  border-radius: 45px;
  position: relative;
  padding: 15px 30px;
  box-shadow: -1px 3px 6px rgb(0 0 0 / 4%);
  margin-top: 35px;
  background: rgba(255, 255, 255, 0.5);
}
.single.single-post .header-top {
  margin-top: 25px;
}
/* .header-top::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background:rgba(255, 255, 255, 0.50);
} */

.header-fixed .header-top {
  margin-top: 0;
}

.home_slider {
  height: 100vh;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}

.home_slider .slider_item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.home_slider .slick-dots {
  max-width: 1550px;
  text-align: left;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  position: relative;
  top: -92px;
  max-width: max-content;
}
.home_slider .slick-dots li {
  margin: 0 10px;
  display: flex;
}

.home_slider .slick-dots li.slick-active button {
  height: 40px;
  width: 40px;
  text-indent: 0;
  opacity: 1;
  color: #005576;
  border: 1px solid #00a4e3;
  font-size: 18px;
  background: transparent;
  font-weight: 600;
}

.home_slider .slick-dots li button {
  text-indent: -99999px;
  height: 10px;
  width: 10px;
  background: #00a4e3;
  border-radius: 50%;
  opacity: 0.3;
}

.banner-inner {
  max-width: 980px;
  position: relative;
  z-index: 1;
}

.main-title {
  font-size: 46px;
  line-height: 58px;
  color: var(--dark-black);
  font-weight: 500;
  margin-bottom: 30px;
}
.inner-banner .banner-left .main-title {
  font-weight: 600;
}

.home_slider .banner-inner.new-banner-inner {
  max-width: 800px;
  margin: 0 auto;
  position: inherit;
}
.a-first-thumb {
  margin-top: 50px;
}
.title-w-thumb {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 100px;
  padding-right: 410px;
  padding-bottom: 50px;
}
.title-w-thumb img {
  width: 100%;
  max-width: 500px;
  height: auto;
  position: absolute;
  top: -30px;
  right: 0;
}
.title-w-thumb div {
  padding-top: 20px;
  display: flex;
  white-space: nowrap;
}
.home_slider .banner-inner.new-banner-inner p {
  margin-bottom: 40px;
  max-width: 650px;
}
.schedule-meeting-text {
  font-size: 28px;
  color: #005576;
  font-weight: 500;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}

.schedule-meeting-text span {
  position: relative;
  display: inline-flex;
  margin: 0 10px;
  padding: 0px 15px; /* Adjust as needed */
  border-radius: 999px; /* Fully rounded */
  background: white;
  color: #005576;
  font-size: 26px;
  font-weight: 700;
  z-index: 1;
  border: none;
  overflow: hidden;
  min-height: 52px;
  line-height: 52px;
  align-items: center;
}

.schedule-meeting-text span:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* Border thickness */
  border-radius: 999px;
  background: linear-gradient(90deg, #1eb6e9, #ffb800, #7ccf4c, #1eb6e9);
  background-size: 300% 300%;
  z-index: -1;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.banner-inner .main-title {
  font-size: 60px;
  line-height: 85px;
  font-weight: 500;
}

.banner-inner .main-title span {
  font-weight: 700;
}

.banner-inner .para {
  margin: 0px 0 60px;
  max-width: 80%;
}

.banner-inner .para p {
  font-size: 18px;
  line-height: 30px;
}
.home_slider .slider_item:nth-child(2) .banner-inner {
  margin-left: auto;
  max-width: 730px;
}
.home_slider .slider_item:nth-child(2) .overlay_bg {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    #fff 47.17%,
    #fff 100%
  );
}

.overlay_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 47.17%,
    rgba(255, 255, 255, 0) 100%
  );
}

.hm-about .hm-about-thumb {
  position: relative;
  z-index: 1;
}
.hm-about .hm-about-thumb .left-corner {
  position: absolute;
  left: -60px;
  top: -60px;
  z-index: -1;
  display: none;
}

.hm-about .hm-about-thumb .right-b-pattern {
  position: absolute;
  right: -60px;
  bottom: -60px;
  z-index: -1;
  display: none;
}
.hm-about .hm-about-thumb > img {
  border-radius: 20px;
}

.hm-about .hm-about-content {
  padding-left: 50px;
}
.main-title span {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  z-index: 0;
  background-image: linear-gradient(
    179deg,
    #ffb71d 0%,
    #ffb71d 62%,
    transparent 54%,
    transparent 100%
  );
  background-size: 100% 18%;
  background-repeat: repeat-x;
  background-position: left 0% bottom -7%;
  font-weight: 700;
}
.main-title span:after {
  display: none !important;
  content: "";
  position: absolute;
  right: 0;
  background: url(../images/banner-title-bg.png);
  width: 362px;
  height: 25px;
  background-repeat: no-repeat;
  background-position: right;
  bottom: -12px;
  background-size: 80%;
  z-index: -1;
}

.hm-about .hm-about-content .common-btn {
  margin-top: 40px;
}

.hm-why-choose-us ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
}

.hm-why-choose-us ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  background: url(../images/arrow-right.png);
  width: 15px;
  height: 16px;
  background-size: 15px 16px;
}

.hm-why-choose-us .common-btn {
  margin-top: 40px;
}

.hm-why-choose-us .hm-about-content {
  max-width: 90%;
}

.hm-why-choose-us .hm-about-thumb {
  position: relative;
}

.hm-why-choose-us .left-corner {
  position: absolute;
  right: -60px;
  top: -60px;
  z-index: -1;
  display: none;
}

.hm-why-choose-us .right-b-pattern {
  position: absolute;
  left: -60px;
  bottom: -60px;
  z-index: -1;
  display: none;
}

.hm-highimp-services {
  position: relative;
  background: #f6f6f7;
  z-index: 1;
}

.hm-highimp-services::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: url(../images/bg-services.webp);
  background-repeat: repeat;
  height: 100%;
  background-size: cover;
  z-index: -1;
}

.hm-highimp-services .main-title span:after {
  background-size: 62%;
}

.hm-highimp-services .common-btn {
  margin-top: 25px;
}

.hm-highimp-services .service-box a {
  display: block;
  z-index: 1;
}

.hm-highimp-services .service-box {
  border-radius: 20px;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  justify-content: center;
  transition:
    background 0.5s,
    box-shadow 0.5s;
  overflow: hidden;
  perspective: 1000px;
}

.hm-highimp-services .service-box .flipper {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px;
  min-height: 350px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.hm-highimp-services .service-box:hover .flipper {
  transform: rotateY(180deg);
}
.hm-highimp-services .service-box .front {
  background-color: #fff;
}
.hm-highimp-services .service-box .front,
.hm-highimp-services .service-box .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hm-highimp-services .service-box .layer {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #005576 0%, #009fdc 100%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.hm-highimp-services .service-box p {
  opacity: 0;
  max-height: 0;
  color: #fff;
  pointer-events: none;
}

.hm-highimp-services .service-box:hover p {
  opacity: 1;
  max-height: max-content;
  color: #fff;
  pointer-events: auto;
}

.hm-highimp-services .service-box svg {
  min-width: 70px;
  height: auto;
  flex: 0 0 70px;
}

.hm-highimp-services .service-box:hover svg path {
  stroke: #fff;
  fill: #fff;
}

.hm-highimp-services .first-content-box,
.hm-highimp-services .service-box {
  margin-bottom: 30px;
}

.hm-highimp-services .service-box .icon-thumb {
  background: linear-gradient(
    180deg,
    rgba(0, 164, 227, 0) 0%,
    rgba(0, 164, 227, 0.15) 100%
  );
  border: 1px solid rgba(0, 164, 227, 0.15);
  height: 90px;
  width: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.hm-highimp-services .service-box .icon-thumb img {
  width: 60px;
  height: 60px;
}

.hm-highimp-services .service-box h3 {
  font-size: 24px;
  color: var(--dark-black);
  line-height: 38px;
  margin: 20px auto 15px;
}

.hm-highimp-services .service-box:hover h3 {
  color: #fff;
}

.hm-highimp-services .service-box .front {
  z-index: 2;
  /* front side styles */
}

.hm-highimp-services .service-box .back {
  transform: rotateY(180deg);
  z-index: 1;
  /* back side styles */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #005576 0%, #009fdc 100%);
  color: #fff;
  padding: 30px;
  border-radius: 20px;
}

.hm-highimp-services .service-box p {
  margin-bottom: 0;
}

.title-wrapper {
  margin-bottom: 10px;
}

.title-wrapper p {
  margin: 0 auto;
  max-width: 85%;
}

.accordian-row {
  position: relative;
}

.hm-da-solutions .accordion {
  padding-left: 40px;
}

.hm-da-solutions .accordion-button {
  padding: 12px 20px;
}

.hm-da-solutions .accordion-body p {
  margin-bottom: 3px;
}

.hm-da-solutions .title-wrapper {
  margin: 0 auto 50px;
}

.hm-da-solutions .title-wrapper p {
  max-width: 810px;
}

.hm-da-solutions .accordion-button::after {
  background-image: url(../images/next-arrow.png);
  height: 36px;
  width: 36px;
  background-size: 36px;
  background-position: center;
}

.hm-da-solutions .accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
}

.hm-da-solutions .accordion-button.collapsed[aria-expanded="true"],
.contact-faq .accordion-button.collapsed[aria-expanded="true"],
.current-openings-tabs .accordion-button.collapsed[aria-expanded="true"] {
  background: #e6eef2;
}
.hm-da-solutions button[aria-expanded="true"],
.contact-faq button[aria-expanded="true"],
.current-openings-tabs button[aria-expanded="true"] {
  background: transparent;
  border: 1px solid #e6eef2 !important;
  border-bottom: 0 !important;
  border-radius: 15px 15px 0 0;
}

.contact-faq .accordion-collapse {
  padding-top: 0;
  border-radius: 0 0 15px 15px !important;
}

.contact-faq .accordion-body {
  padding-bottom: 12px;
  padding-top: 5px;
}

.hm-solve-problems .title-wrapper p {
  max-width: 680px;
}

.hm-da-solutions .accordion-collapse {
  padding-top: 0;
  position: inherit;
  margin-top: -12px;
  border-radius: 0 0 15px 15px !important;
}
.hm-da-solutions .accordion-body .da-solutions-thumb {
  z-index: 1;
}
.da-solutions-thumb {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 630px;
}

.hm-da-solutions .accordion-body {
  padding-top: 5px;
}

.hm-da-solutions .accordion-body .common-btn {
  margin-top: 20px;
}

.accordion-button:focus {
  border-color: #e6eef2;
}

.accordion-button {
  border: 0;
  background: #e6eef2;
  border-radius: 15px !important;
  padding: 20px;
  color: var(--dark-black);
  font-size: 20px;
  line-height: 44px;
  font-weight: 700;
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #e6eef2;
}
.accordion-item {
  margin-bottom: 15px;
  border: 0;
}

.accordion-collapse {
  border: 1px solid #e6eef2;
  border-top: 0;
  position: relative;
  top: -15px;
  padding-top: 15px;
  border-radius: 0 0 15px 15px;
}

.accordion-button:not(.collapsed) {
  border: 0 !important;
  background: #e6eef2;
  color: var(--dark-black);
}

.hm-solve-problems {
  background: linear-gradient(
    180deg,
    rgba(0, 157, 217, 0) 0%,
    rgba(0, 157, 217, 0.1) 100%
  );
  position: relative;
  z-index: 1;
}

.hm-solve-problems::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 425px;
  height: 433px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  background: url(../images/left-pattent-grey.png);
  z-index: -1;
  opacity: 0.5;
}

.hm-solve-problems::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1699px;
  height: 1039px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  background: url(../images/right-patten-gray.png);
  z-index: -1;
  opacity: 0.5;
}

.hm-solve-problems .nav-link {
  border: 0;
  background: #e6eef2;
  width: 25%;
  border-radius: 10px;
  color: #005576;
  font-weight: 700;
}

.hm-solve-problems .nav-link.active {
  background: #005576;
  color: #fff;
}

.hm-solve-problems .nav-tabs {
  gap: 15px;
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}

.hm-solve-problems .thumb-left img {
  width: 100%;
  border-radius: 20px;
  max-width: 600px;
}

.hm-solve-problems .thumb-left {
  position: relative;
}

.hm-solve-problems .thumb-left:before {
  content: "";
  position: absolute;
  width: 292px;
  right: 0;
  height: 101%;
  transform: rotate(180deg);
  background: linear-gradient(
    89deg,
    #fff 0.62%,
    rgba(255, 255, 255, 0.6) 52.04%,
    rgba(255, 255, 255, 0) 99.34%
  );
  top: 0;
}

.hm-solve-problems .tab-content {
  border: 0 !important;
  border-radius: 25px;
  background: #fff !important;
  box-shadow: 0px 10px 40px 0px rgba(18, 18, 18, 0.05);
  padding: 30px !important;
  margin-top: 15px;
}
.hm-solve-problems .tab-right-content {
  padding-left: 30px;
  max-width: 100%;
}
.hm-solve-problems .tab-right-content h3 {
  font-size: 35px;
  margin-bottom: 30px;
  color: var(--dark-black);
}

.hm-solve-problems .tab-right-content ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
}

.hm-solve-problems .tab-right-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  background: url(../images/arrow-right.png);
  width: 15px;
  height: 16px;
  background-size: 15px 16px;
}

.hm-solve-problems .tab-right-content .common-btn {
  margin-top: 30px;
  display: none;
}

.hm-talk-expert {
  min-height: max-content;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  background: url(../images/cta-bg.webp);
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 100% !important;
  padding: 75px 0;
}

#bg-canvas {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 500px;
  z-index: 0;
  background: radial-gradient(ellipse at 40% 30%, #fff6e9 60%, #f6faff 100%);
}

/* .hm-talk-expert::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/cta-top-pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  width: 241px;
  height: 183px;

}

.hm-talk-expert::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/cta-bottom-patter.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  width: 166px;
  height: 129px;

} */

.hm-talk-expert h4 {
  color: var(--dark-black);
  font-size: 42px;
  line-height: 60px;
  font-weight: 800;
}

.hm-talk-expert .talk-expert-inner {
  max-width: 1000px;
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
}

.hm-talk-expert .talk-expert-inner span {
  display: block;
}

.hm-talk-expert .talk-expert-inner .common-btn {
  margin-top: 60px;
}

.hm-custom-solutions .main-title span:after {
  background-size: 60%;
}

.hm-custom-solutions .title-wrapper p {
  max-width: 1070px;
}

.hm-custom-solutions .number-box {
  display: flex;
}

.hm-custom-solutions .number-box:not(:last-child) {
  margin-bottom: 40px;
}

.hm-custom-solutions .number-box:not(:last-child) .number::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 170px;
  border: 2px dashed #00a4e3;
  opacity: 0.5;
}

.hm-custom-solutions .number-box .number {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 80px;
  background: #005576;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  position: relative;
}

.hm-custom-solutions .custom-solutions-points {
  margin-left: 30px;
  background: #e6eef2;
  border-radius: 15px;
  padding: 25px 35px;
  width: 100%;
}

.hm-custom-solutions .custom-solutions-points p {
  margin-bottom: 5px;
}

.hm-custom-solutions .custom-solutions-points h3 {
  color: var(--dark-black);
  font-size: 24px;
  line-height: 38px;
  margin-bottom: 10px;
}

.hm-custom-solutions .custom-right-content {
  padding-left: 80px;
}

.hm-custom-solutions .custom-right-content .custom-thumb {
  margin-bottom: 30px;
}

.hm-custom-solutions .custom-right-content h3 {
  color: var(--dark-black);
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 15px;
}

.hm-custom-solutions .custom-right-content p {
  margin: 0;
}

.hm-custom-solutions .custom-right-content .common-btn {
  margin-top: 25px;
}

.client-slider {
  overflow: hidden;
}

.slick-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.slick-dots li {
  margin: 0 4px;
}

.slick-dots li button {
  height: 8px;
  width: 8px;
  background-color: #b3e4f7;
  border-radius: 8px;
  text-indent: -9999px;
}

.slick-dots li.slick-active button {
  width: 45px;
  background: var(--primary-color);
}
.hm-clients .main-title {
  font-weight: 400;
  color: #fff;
}
.hm-clients .main-title span {
  font-weight: 700;
}
.hm-clients .main-title span:after {
  background-size: 100%;
}

.hm-clients .title-wrapper p {
  max-width: 600px;
  color: #fff;
  margin-bottom: 30px;
}

.hm-case-study .main-title {
  font-size: 42px;
  line-height: 54px;
  margin-bottom: 0;
}

.hm-case-study {
  background: #f6f6f7;
  position: relative;
  z-index: 0;
}

.hm-case-study:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1920px;
  height: 138px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  background: url(../images/top-pattent.png);
  z-index: -1;
}

.hm-case-study:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1920px;
  height: 178px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  background: url(../images/bottom-pattent.png);
  z-index: -1;
  display: none;
}

.case_slider {
  margin-top: 60px;
  padding: 0;
}

.case_slider .slider_item p:empty {
  display: none;
}

.case_slider .slider_item h3,
.case_slider .slider_item h4 {
  margin: 10px 0 10px;
  font-size: 24px;
  line-height: 36px;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}

.case_slider .slider_item p {
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  margin-bottom: 0;
}

.footer-contact.rating ul {
  border-radius: 10px;
  background-color: #fff;
  display: inline-flex;
  max-width: fit-content;
}
.footer-contact.rating ul li:not(:last-child) {
  border-right: 1px solid #cfecf8;
}
.footer-contact.rating ul li a {
  padding: 10px;
  display: inline-flex;
}

.footer-contact.rating ul li img {
  width: auto;
}

.case_slider .slider_item .thumb img {
  border-radius: 0;
}
.hm-fav-tools {
  position: relative;
}

.hm-fav-tools .thumb {
  max-width: 90%;
  margin: 0 auto;
}

.hm-fav-tools .main-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
}

.hm-fav-tools .thumb img {
  width: 100%;
}

.hm-articles {
  background: linear-gradient(
    180deg,
    rgba(0, 157, 217, 0) 0%,
    rgba(0, 157, 217, 0.1) 100%
  );
  position: relative;
  overflow: hidden;
}

.hm-articles::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 425px;
  height: 433px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  background: url(../images/left-pattent.png);
  z-index: -1;
}
.hm-articles::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1699px;
  height: 1039px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  background: url(../images/right-pattent.png);
  z-index: -1;
}

.hm-articles .main-title span:after {
  background-size: 100%;
}

.hm-articles .title-wrapper p {
  max-width: 1160px;
}

.articles-box .thumb {
  border-radius: 15px;
}
.articles-box .thumb img {
  width: 100%;
}
.articles-box ul {
  display: flex;
  margin: 40px 0 25px;
}

.articles-box.post-desc-box ul {
  justify-content: flex-start;
}

.articles-box ul li {
  display: inline-flex;
  align-items: flex-start;
}

.articles-box ul li .blog-update-info {
  padding-left: 15px;
}

.articles-box ul li .blog-update-info p {
  margin-bottom: 0;
}

.articles-box ul li:not(:last-child) {
  margin-right: 45px;
}

.articles-box ul li h5,
.articles-box ul li h4 {
  font-size: 14px;
  font-weight: 500;
  color: #3a4750;
  margin-bottom: 3px;
}

.social-media-box ul {
  margin: 0;
}

.articles-box ul li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  background-color: #f0f1f3;
  border-radius: 50%;
}

.cs-header-top .articles-box ul li {
  align-items: center;
}

.cs-header-top .articles-box ul li .icon {
  width: 34px;
  height: 34px;
}

.cs-header-top .articles-box ul {
  margin: 35px 0 0;
  justify-content: flex-end;
}

.cs-header-top .articles-box ul li h5,
.cs-header-top .articles-box ul li h4 {
  font-size: 16px;
}

.articles-box ul li .blog-update-info {
  line-height: 20px;
  white-space: nowrap;
}

.articles-box ul li span {
  font-size: 12px;
}

.articles-box h4,
.articles-box h3 {
  font-size: 24px;
  line-height: 34px;
}

.articles-box .articles-content-box ul {
  margin: 30px 0 0;
}

.hm-articles .common-btn {
  margin-top: 70px;
}

.hm-cta-section {
  background: transparent;
  position: relative;
}

.inquiry-form.hm-contact-form {
  background: #fff;
}

.inquiry-form.hm-contact-form:before,
.inquiry-form.hm-contact-form::after {
  display: none;
}

.hm-cta-section .hm-cta-section-inner {
  position: relative;
  padding: 34px 15px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  border-radius: 30px;
}

.hm-cta-section h3 {
  color: #fff;
  font-size: 40px;
  line-height: 55px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.hm-cta-section .newsletter {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  max-width: 700px;
  justify-content: center;
  margin: 0 auto;
}

.hm-cta-section .cta-inner {
  margin: 0 auto;
  max-width: 800px;
}

.hm-cta-section .newsletter .tnp-field.tnp-field-email {
  display: flex;
  flex: 1;
}

.hm-cta-section .newsletter input {
  background: #fff;
  height: 70px;
  border-radius: 40px;
  width: 100%;
  position: relative;
  padding: 0 30px;
}

.hm-cta-section .newsletter button,
.hm-cta-section .newsletter .tnp-field input[type="submit"] {
  position: absolute;
  right: 15px;
  padding: 0px 30px;
  background: #009fdc;
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  right: 10px;
  font-weight: 600;
  width: auto;
  top: 50%;
  transform: translateY(-50%);
  height: 47px;
  transition: 0.5s ease-in-out all;
}

.hm-cta-section .newsletter .tnp-field input[type="submit"]:hover,
.hm-cta-section .newsletter .tnp-field input[type="submit"]:focus {
  background: #0578a4 !important;
  border-color: #0578a4 !important;
}

footer {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #bfecff;
  background: linear-gradient(
    0deg,
    rgba(191, 236, 255, 1) 0%,
    rgba(191, 236, 255, 0.6) 50%,
    rgba(191, 236, 255, 0) 100%
  );
}

.social-media-main {
  display: flex;
  align-items: center;
}

.social-media-main span {
  color: #121212;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  margin-right: 15px;
}

.social-media-main .social-media {
  display: flex;
  align-items: center;
}

.social-media-main .social-media li {
  display: inline-flex;
  margin-left: 10px;
}

/* footer::before {
  content: "";
  position: absolute;
  left: 0;
  background: url(../images/footer-left-pattern.png);
  top: 0;
  width: 538px;
  height: 411px;
  background-position: top left;
  background-size: cover;
  opacity: 0.1;
}

footer::after {
  content: "";
  position: absolute;
  right: 0;
  background: url(../images/footer-right-pattern.png);
  bottom: 0;
  width: 538px;
  height: 411px;
  background-position: bottom right;
  background-size: cover;
  opacity: 0.1;
} */

.footer-top {
  position: relative;
  z-index: 1;
}

.footer-left-main.first {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.footer-top .para {
  margin: 22px 25px 40px 0;
}
.footer-top .para p {
  color: #ccdde4;
}

.footer-top .social-media {
  display: flex;
  align-items: center;
}

.footer-top .social-media li {
  display: inline-block;
  margin: 0 15px 0 0;
}
.footer-top .social-media li a {
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  border-radius: 35px;
  border: 1px solid #fff;
  justify-content: center;
  transition: 0.3s ease-in-out all;
}

.footer-top .social-media li a:hover,
.footer-top .social-media li a:focus {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.footer-top .footer-title {
  color: #005576;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 30px;
}

.footer-top .footer-item ul li a {
  color: #005576;
}

.footer-top .footer-item ul li {
  display: block;
  margin: 0 0 15px 0;
}

.footer-contact .get-in-touch ul li {
  position: relative;
  margin-bottom: 20px;
  display: flex;
}

.footer-contact .get-in-touch ul li .icon {
  margin-right: 5px;
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  flex: 0 0 27px;
  position: relative;
  top: 3px;
}

.footer-title.v-hidden {
  visibility: hidden;
}

.footer-contact .get-in-touch ul li a {
  color: #005576;
}

footer ul li a:hover {
  color: rgba(0, 164, 227, 1) !important;
}

.contact-us-footer .footer-title {
  margin-bottom: 30px;
}

.contact-us-footer ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-us-footer ul li.numbres {
  align-items: flex-start;
}

.contact-us-footer ul li.numbres .icon {
  position: relative;
  top: 6px;
}

.contact-us-footer ul li a {
  color: #005576;
}

.contact-us-footer ul li.numbres a {
  display: inline-block;
  margin-right: 15px;
  position: relative;
}

.contact-us-footer ul li.numbres a:after {
  position: absolute;
  right: -9px;
  height: 100%;
  width: 5px;
  background: transparent;
  content: ", ";
}

.contact-us-footer ul li.numbres a:last-child:after {
  display: none;
}

.contact-us-footer ul li .icon {
  margin-right: 10px;
  width: 18px;
  display: block;
  display: flex;
  flex-shrink: 0;
}

.contact-us-footer ul li .icon.email-icon {
  position: relative;
  top: 2px;
}

.footer-bottom {
  padding: 12px 0;
  background-color: #fff;
  border-top: 0;
}

.copyright {
  color: #121212;
  text-align: center;
}

/*** contact us page ***/

.inner-banner {
  width: calc(100% - 40px);
  margin: 20px;
  min-height: 550px;
  display: flex;
  padding-top: 125px;
  align-items: center;
  position: relative;
  background: #eef8fc !important;
  background-repeat: no-repeat;
  background-position: right !important;
  background-size: cover !important;
  border-radius: 20px;
}

.inner-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/innaer-banner-parttern.webp);
  background-repeat: no-repeat !important;
  width: 100%;
  height: 100%;
  margin-top: 0 !important;
  z-index: 1;
  background-size: cover !important;
  background-position: center center !important;
}

.inner-banner::after {
  content: "";
  position: absolute;
  left: -20px;
  display: block !important;
  top: -20px;
  height: calc(100% + 40px);
  width: calc(100% + 40px);
  background: #051746 !important;
  z-index: -1;
}
.inner-banner.blog-banner::after {
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 65.62%,
    rgba(255, 255, 255, 0) 100%
  );
}

.inner-banner .banner-left {
  position: relative;
  z-index: 10;
}
.contact-middle-right ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.3s all ease-in-out;
  padding: 2px 0;
}

.contact-middle-right ul li a:hover,
.contact-middle-right ul li a:hover span {
  color: #ffb71d;
}

.contact-middle-right ul li .icon {
  width: 52px;
  height: 52px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 80px;
  flex-shrink: 0;
  margin: 0 auto 15px;
}

.contact-middle-right ul li {
  padding-top: 30px;
  border-bottom: 0;
  display: block;
}
.contact-middle-right ul li:last-child {
  border-bottom: 0;
}

.contact-middle-right ul li.contact-numbers {
  min-height: 190px;
}

.contact-middle-right ul li span {
  margin-left: 0px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.contact-middle-section .contact-detail-box.left {
  padding-right: 17%;
}

.contact-middle-section .contact-detail-box.right {
  padding-left: 17%;
}

.contact-middle-section .contact-detail-box {
  position: relative;
  margin-top: 50px;
  padding-bottom: 140px;
}
.contact-middle-section .contact-detail-box .contact-thumb {
  padding: 15px;
  border: 2px solid #ffe2a5;
  border-radius: 15px;
}
.contact-middle-section .contact-detail-box .contact-thumb img {
  border-radius: 15px;
}

.contact-us-section {
  background: #f6f6f7;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-us-section.ptb-90,
.case-studies-wrapper .cs-header {
  padding-top: 125px;
}

.contact-us-section::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 425px;
  height: 100%;
  background-size: 100% !important;
  background-repeat: no-repeat !important;
  background-position: top;
  background: url(../images/contact-left-pattent.png);
  z-index: -1;
  opacity: 1;
}

.contact-us-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1699px;
  height: 1039px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  background: url(../images/right-patten-gray.png);
  z-index: -1;
  opacity: 0.5;
}
.contact-middle-section .contact-detail-box .contact-middle-right h4 {
  text-align: center;
  color: #fff;
  font-size: 32px;
  line-height: 42px;
}

.contact-middle-section .contact-detail-box .contact-middle-right-main {
  position: absolute;
  border-radius: 25px;
  padding: 20px;
  bottom: -36px;
}

.contact-middle-section .contact-detail-box .contact-middle-right-main::before {
  content: "";
  height: 55%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
}

.contact-middle-section .contact-detail-box.left .contact-middle-right-main {
  right: -15px;
}
.contact-middle-section .contact-detail-box.right .contact-middle-right-main {
  left: -15px;
}

.contact-middle-section .contact-detail-box .contact-middle-right {
  padding: 35px;
  background-color: var(--bg-gray);
  border-radius: 25px;
  position: relative;
}

.contact-middle-section .contact-detail-box .contact-middle-right::after {
  width: 152px;
  height: 151px;
  position: absolute;
  content: "";
  background: url(../images/contact-box-pattern.svg);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.6;
  bottom: -40px;
  z-index: -1;
  background-position: bottom;
}

.contact-middle-section .contact-detail-box.left .contact-middle-right::after {
  left: -85px;
}

.contact-middle-section .contact-detail-box.right .contact-middle-right::after {
  right: -85px;
}

.contact-us-section .contact-form {
  border-radius: 25px;
  background: #fff;
  box-shadow: 0px 10px 40px 0px rgba(18, 18, 18, 0.05);
  padding: 50px;
  position: relative;
  z-index: 2;
}

.contact-us-section .contact-form h2 {
  margin-bottom: 20px;
}

.contact-form .form-control,
.contact-form .wpcf7-form-control {
  height: 50px;
  border-radius: 50px;
  padding: 0 15px;
  color: var(--light-black);
  border: 1px solid #ced4da;
  width: 100%;
  box-shadow: none !important;
}

.contact-form .form-control[type="file"] {
  position: relative;
  z-index: 1;
}

.contact-form .wpcf7-form-control.g-recaptcha {
  border: 0;
  transform: scale(0.5);
  min-width: 220px;
  height: 40px;
  position: relative;
}
.contact-form .wpcf7-form-control.g-recaptcha > div {
  transform: scale(0.7);
  max-width: 40px;
  max-height: 41px;
  position: absolute;
  top: -27px;
  left: 0;
}
.contact-form .recaptcha .wpcf7-form-control {
  border: 0;
}

.contact-form select {
  height: 50px;
  border-radius: 50px;
  padding: 0 15px;
  color: #777;
  border: 1px solid #ced4da;
  width: 100%;
  margin-top: 0 !important;
}

.contact-form label {
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-form select option {
  color: #000;
}

.contact-form select {
  margin-top: 10px;
}

.contact-form .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  margin-top: 0px;
}

.contact-form br {
  display: none;
}

.contact-form textarea.form-control,
.contact-form textarea.wpcf7-form-control {
  height: 160px;
  border-radius: 15px;
  padding: 15px 15px;
}

.contact-form .common-btn,
.contact-form .submit-btn .wpcf7-form-control {
  margin-top: 10px !important;
  width: auto !important;
  line-height: 52px !important;
  height: 52px !important;
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 30px !important;
  border-radius: 28px !important;
  color: #fff !important;
  font-weight: 700 !important;
  transition: 0.3s ease all !important;
  white-space: nowrap;
  font-size: 16px !important;
}

.contact-us-right {
  border-radius: 25px;
  background: #005576;
  box-shadow: 0px 10px 40px 0px rgba(18, 18, 18, 0.05);
  padding: 50px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
}
.contact-us-right.solutionform-bg {
  background: url(../images/solution-form-bg.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.contact-us-right.solutionform-bg::after {
  display: none;
}

.contact-us-section.solution-contact-section {
  background: linear-gradient(
    180deg,
    rgba(0, 157, 217, 0) 0%,
    rgba(0, 157, 217, 0.1) 100%
  );
}

.contact-us-right::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -80px;
  width: 100%;
  height: 880px;
  background: url(../images/connected-pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.3;
}

.contact-us-right .social-media {
  margin-top: 25px;
}

.contact-us-right .main-title {
  font-size: 36px;
  line-height: 46px;
  color: #fff;
}

.contact-us-right p {
  color: #fff;
  opacity: 0.8;
}

.contact-us-right ul {
  display: flex;
}

.contact-us-right ul li {
  display: inline-block;
  margin-right: 20px;
}

.contact-us-right ul li a {
  background-color: #fff;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-us-right ul li a img {
  width: 22px;
  height: 22px;
}

.contact-us-right ul li:last-child {
  margin-right: 0;
}

.contact-faq .accordion-button:not(.collapsed)::after {
  transform: none;
  content: "-";
  background: none;
  font-size: 30px;
  top: 14px;
  position: absolute;
  right: 14px;
  font-weight: 500;
  color: #005576;
}
.contact-faq .accordion-button::after {
  transform: none;
  content: "+";
  background: none;
  font-size: 30px;
  top: 16px;
  position: absolute;
  right: 14px;
  font-weight: 500;
  color: #005576;
}

.contact-global {
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 47.17%,
    rgba(255, 255, 255, 0) 100%
  );
}

.contact-global .title-wrapper,
.contact-faq .title-wrapper p {
  text-align: center;
}

.contact-global {
  background: linear-gradient(
    180deg,
    rgba(0, 157, 217, 0) 0%,
    rgba(0, 157, 217, 0.1) 100%
  );
  position: relative;
  overflow: hidden;
}
.contact-global iframe {
  width: 100%;
  margin-top: 20px;
  border-radius: 15px;
  max-height: 240px;
}

.contact-global h3 {
  padding: 15px 0 20px;
}

.contact-global-inner {
  border-radius: 15px;
  padding: 30px;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0px 40px 80px 0px rgba(0, 164, 227, 0.2);
}

.contact-global-inner a {
  height: 70px;
  display: block;
}

.contact-global .title-wrapper p {
  max-width: 900px;
}

.contact-global::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 425px;
  height: 433px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  background: url(../images/left-pattent.png);
  z-index: -1;
}
.contact-global::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1699px;
  height: 1039px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  background: url(../images/right-pattent.png);
  z-index: -1;
}

.who-weare-right {
  margin-bottom: 80px;
}

.who-we-are-section {
  position: relative;
}

.who-weare-thumb {
  position: absolute;
  left: 0;
  top: 0;
}

.about-middle-right {
  padding-top: 80px;
}

/*** career page ***/

.best-work-sec .title-wrapper {
  text-align: left;
}
.best-work-sec .title-wrapper p {
  max-width: 1200px;
}
.best-work-sec .title-wrapper p:empty {
  display: none;
}
.best-work-sec .title-wrapper p:not(:last-child) {
  margin-bottom: 15px;
}

.inquiry-form .apply-job-btns {
  justify-content: center;
  display: flex;
  gap: 20px;
}
.inquiry-form .apply-job-btns {
  position: relative;
  min-width: max-content;
  margin: 0 auto;
  display: table !important;
  padding-top: 60px;
}

.inquiry-form .apply-job-btns::before {
  content: "";
  position: absolute;
  left: -121px;
  background: url(../images/c-apply-job-arrrow.png);
  width: 143px;
  height: 142px;
  background-size: 143px 142px;
  background-repeat: no-repeat;
  bottom: -6px;
}

.inquiry-form .apply-job-btns::after {
  content: "";
  position: absolute;
  right: -121px;
  transform: rotateY(180deg);
  background: url(../images/c-apply-job-arrrow.png);
  width: 143px;
  height: 142px;
  background-size: 143px 142px;
  background-repeat: no-repeat;
  bottom: -6px;
}
.inquiry-form .apply-job-btns .common-btn {
  margin: 0 15px;
}
.inquiry-form .apply-job-btns .common-btn.border {
  background: transparent;
  border: 1px solid #00a4e3 !important;
  color: #005576;
}

.inquiry-form .apply-job-btns .common-btn.border:hover {
  background: #00a4e3;
  color: #fff;
}

.best-work-sec .btn-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.best-work-sec .common-btn {
  margin-top: 40px;
}

.best-work-sec .common-btn.number-btn {
  background-color: #005576;
  padding: 0 10px;
  border: 1px solid transparent !important;
}

.best-work-sec .common-btn.number-btn svg {
  margin-right: 5px;
  width: 34px;
  height: 34px;
}
.best-work-sec .common-btn.number-btn:hover {
  color: #fff;
}

.best-work-thumb {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.best-work-thumb img {
  width: 100%;
}

.career-benifits::after,
.about-sets-us::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1400px;
  background-position: center;
  background-size: contain;
  background: url(../images/best-work-bg.png);
  z-index: -1;
  opacity: 0.03;
  background-repeat: no-repeat;
  background-size: 100%;
}
.career-benifits,
.about-sets-us {
  background: #f6f6f7;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.career-benifits .title-wrapper p {
  max-width: 1100px;
}

.benefits-box {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 10px 40px 0px rgba(18, 18, 18, 0.03);
  display: flex;
  align-items: flex-start;
  min-height: 200px;
  padding: 40px;
  margin-bottom: 20px;
}
.benefits-box .benifits-content p:empty {
  display: none;
}

.benefits-box .benifits-content h4 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 34px;
}

.benefits-box .benifits-content p {
  margin: 0;
}

.benefits-box .benefits-thumb {
  background: linear-gradient(
    180deg,
    rgba(0, 164, 227, 0) 0%,
    rgba(0, 164, 227, 0.15) 100%
  );
  height: 120px;
  width: 120px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 164, 227, 0.15);
  margin-right: 30px;
}

.benefits-box .benefits-thumb img {
  width: 100%;
  max-width: 70px;
}

.designation-details h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}

.designation-items ul {
  display: flex;
  align-items: center;
}

.designation-items ul li {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.designation-items ul li .post-details {
  margin-top: -2px;
}
.designation-details {
  width: 100%;
}
.designation-items ul li .icon-thumb {
  height: 50px;
  width: 50px;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  margin-right: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.designation-items ul li span {
  color: #576076;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  display: block;
  margin-bottom: 8px;
}

.designation-items ul li h4 {
  color: var(--dark-black);
  font-size: 16px;
  margin: 0;
}

.designation-items {
  display: flex;
  justify-content: space-between;
}

.current-openings-tabs .accordion-button {
  padding: 30px;
  border: 1px solid #e6eef2 !important;
  border-bottom: 0 !important;
}

.current-openings-tabs .accordion-button::after {
  display: none;
}

.current-openings-tabs .accordion-body {
  margin: 0px 30px 30px;
  border-top: 1px solid #e6eef2;
  padding: 0;
}

.current-openings-tabs .accordion-collapse {
  top: 0px;
  border-radius: 0 0 15px 15px !important;
}

.current-openings-tabs .job-desc h4 {
  margin-bottom: 20px;
  margin-top: 20px;
}

.current-openings-tabs .job-desc p,
.current-openings-tabs .job-desc li {
  color: var(--dark-black);
}

.current-openings-tabs .job-desc li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.current-openings-tabs .job-desc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 19px;
  height: 20px;
  background: url(../images/arrow-right.png);
  background-size: 19px 20px;
  background-repeat: no-repeat;
}

.current-openings-tabs button {
  background: #e6eef2;
}

.current-openings-tabs .accordion-body .common-btn {
  margin-top: 40px;
}
.current-openings-tabs .accordion-item {
  border-radius: 25px;
  background: var(--White, #fff);
  box-shadow: 0px 10px 40px 0px rgba(18, 18, 18, 0.05);
  margin-bottom: 0;
}

.current-openings-tabs .accordion-item:not(:last-child) {
  margin-bottom: 30px;
}

.current-openings-tabs .accordion-item:last-child {
  display: none;
}

.inquiry-form .title-wrapper p {
  max-width: 600px;
}
.inquiry-form .contact-form {
  border-radius: 25px;
  background: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 164, 227, 0.1);
  padding: 40px;
}

.hr-inquiry-right {
  position: relative;
  margin-left: 80px;
  margin-bottom: 80px;
}

.hr-inquiry-right .hr-inquiry-info {
  position: absolute;
  left: -31px;
  bottom: -95px;
  background: var(--bg-gray);
  border-radius: 25px;
  padding: 35px;
}

.hr-inquiry-info h3 {
  color: #fff;
  text-align: center;
  margin-bottom: 29px;
  font-size: 34px;
}

.hr-inquiry-info ul li:last-child {
  display: block;
  margin-top: 25px;
}

.hr-inquiry-info ul .icon {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px auto;
}

.hr-inquiry-info ul li {
  text-align: center;
}

.hr-inquiry-info ul li a {
  color: #fff;
  font-weight: 700;
}

.contact-thumb-right {
  height: 100%;
  position: relative;
}

.contact-thumb-right img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.inquiry-form {
  background: linear-gradient(
    180deg,
    rgba(0, 157, 217, 0) 0%,
    rgba(0, 157, 217, 0.1) 100%
  );
  position: relative;
  overflow: hidden;
}

.hr-inquiry-info::after {
  content: "";
  position: absolute;
  right: -119px;
  width: 206px;
  height: 206px;
  background: url(../images/inquiry-pattern.png);
  background-size: 80%;
  bottom: -102px;
  background-repeat: no-repeat;
  z-index: -1;
}

.inquiry-form::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 425px;
  height: 433px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  background: url(../images/left-pattent.png);
  z-index: -1;
}
.inquiry-form::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1699px;
  height: 1039px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  background: url(../images/right-pattent.png);
  z-index: -1;
}

.inquiry-form .main-title span:after {
  background-size: 100%;
}

.browse-file {
  position: relative;
  border: 1px solid #ced4da;
  border-radius: 50px;
  margin-bottom: 8px;
  height: 50px;
  margin-bottom: 30px;
}

.browse-file::after {
  content: "Choose File";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
  background: var(--bg-gray);
  border-radius: 30px;
  text-align: center;
  color: #fff;
  font-size: 13px;
  padding: 5px 15px;
  z-index: 0;
}
.file-upload-info {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  align-items: center;
  display: flex;
  padding-left: 15px;
  font-size: 14px;
}

.file-upload-info p {
  margin: 0;
}

.browse-file input {
  opacity: 0;
}

.about-experience-sec .title-wrapper {
  text-align: center;
}

.about-experience-sec .items {
  text-align: center;
  padding: 30px 30px 0;
}

.about-experience-sec .items .thumb {
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: 2px solid #00a4e3;
  align-items: center;
  box-shadow: 0px 6px 40px rgba(0, 164, 227, 0.15);
}

.about-experience-sec .items .thumb img {
  height: 60px;
  width: 60px;
}

.about-experience-sec .items h4 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 36px;
}

.about-sets-us .items {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 10px 40px 0px rgba(18, 18, 18, 0.03);
  padding: 30px 30px 70px 30px;
  position: relative;
  min-height: 270px;
  margin-bottom: 30px;
}

.about-sets-us .items h4 {
  font-size: 26px;
  line-height: 38px;
  margin-bottom: 15px;
}

.about-sets-us .items .number {
  color: #fff;
  font-size: 110px;
  -webkit-text-stroke-color: #b2e4f7;
  stroke: #b2e4f7;
  text-shadow:
    -2px 0 2px #b2e4f7,
    0 2px 2px #b2e4f7,
    2px 0 2px #b2e4f7,
    0 -2px 2px #b2e4f7;
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.about-sets-us .items .number img {
  width: auto;
  height: auto;
}

.about-ai-roi {
  position: relative;
}

.about-ai-roi .items {
  background: linear-gradient(
    1deg,
    rgba(0, 157, 217, 0) -1.9%,
    rgba(0, 157, 217, 0.1) 99.28%
  );
  border: 2px solid rgba(0, 164, 227, 0.15);
  padding: 20px 30px 30px;
  border-radius: 15px;
  position: relative;
  margin-top: 100px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-ai-roi .item-thumb-box {
  position: absolute;
  right: -3px;
  top: -98px;
  background: #fff;
}
.about-ai-roi .item-thumb-box::after {
}
.about-ai-roi .main-title {
  margin-top: -5px;
  line-height: 66px;
  position: relative;
}

.about-ai-roi .col-lg-6:last-child .main-title {
  text-align: right;
}

.about-ai-roi .item-thumb-box .inner-box {
  width: 204px;
  height: 204px;
}
.about-ai-roi .item-thumb-box .inner-box img {
  width: 100%;
  height: auto;
}

.about-ai-roi .col-lg-6:last-child .item-thumb-box {
  left: -3px;
  right: auto;
}

.about-ai-roi .col-lg-6:last-child .item-thumb-box .inner-box {
  border-radius: 20px;
}

.about-ai-roi .items ul {
  margin-top: 30px;
}

.about-ai-roi .items ul li {
  position: relative;
  padding-left: 45px;
}

.about-ai-roi .items ul li:not(:last-child) {
  margin-bottom: 30px;
}

.about-ai-roi .items ul li::before {
  position: absolute;
  left: 0;
  top: 9px;
  background: url(../images/dark-bg-arrow.png);
  width: 22px;
  height: 24px;
  content: "";
  background-size: 78%;
  background-repeat: no-repeat;
  background-position: center;
}

.about-ai-roi .items ul li h5 {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 10px;
}

.about-ai-roi .col-lg-6:last-child .items ul li::before {
  top: 2px;
}

.about-ai-roi .col-lg-6:last-child .items ul li p {
  color: var(--light-black);
}
.about-business {
  background: #e6eef2;
}
.about-business .title-wrapper {
  position: relative;
}
.about-business .title-wrapper .common-btn {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: -100px;
  z-index: 1;
}

.about-business .title-wrapper .common-btn p {
  margin: 0;
  max-width: 100%;
}

.about-business .about-business-thumb {
  position: relative;
  margin-top: -50px;
  margin-bottom: -50px;
}

.about-team-section .team-group-bg {
  margin-bottom: 30px;
}

.about-team-section .team-group-bg img {
  border-radius: 30px;
}

.about-team-slider .thumb {
  padding: 0 15px;
}
.about-team-slider .thumb img {
  border-radius: 15px;
}

.about-team-slider .slider_item {
  text-align: center;
}

.about-team-slider .slider_item h4 {
  margin: 20px 0 5px;
  font-size: 22px;
}

.case_slider .slick-slide {
  margin: 0 15px;
}

.case_slider .slick-slide > a {
  display: grid;
  align-items: center;
  gap: 20px;
  height: 100%;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 25px;
  border: 1px solid #e6eef2;
  overflow: hidden;
  background-color: #fff;
}

.case_slider .slick-slide > a .thumb {
  flex: 0 0 50%;
  position: relative;
  height: 100%;
  display: flex;
}

.case_slider .slick-slide > a .case_slider_content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 20px 20px 20px 0;
}

.case_slider .slick-slide > a .thumb img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
}

.about-team-slider .slick-list:before {
  opacity: 0.8;
  background: linear-gradient(91deg, #fff 0.82%, rgba(255, 255, 255, 0) 98.84%);
  width: 20%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  z-index: 1;
}

.about-team-slider .slick-list:after {
  opacity: 0.8;
  background: linear-gradient(91deg, #fff 0.82%, rgba(255, 255, 255, 0) 98.84%);
  width: 20%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  z-index: 1;
  transform: rotate(180deg);
}

.about-business {
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.about-business::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 425px;
  height: 950px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  background: url(../images/about-left-pattent.png);
  z-index: -1;
  opacity: 0.6;
}
.about-business::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1699px;
  height: 950px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  background: url(../images/about-right-pattent.png);
  z-index: -1;
  opacity: 0.4;
}

.footer-contact {
  margin-top: 20px;
}

.footer-contact .footer-title {
  margin-bottom: 15px;
}

.header-navigation ul.mega-menu > li > a:before {
  content: "";
  width: 0 !important;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  margin: 0 !important;
  display: block !important;
  height: auto !important;
  line-height: normal !important;
}
.header-navigation ul.mega-menu > li > a:hover:before {
  content: "";
  height: 5px !important;
  width: 100% !important;
  display: inline-block !important;
  position: absolute !important;
  left: 0 !important;
  right: auto !important;
  margin: 0 auto !important;
  top: 60% !important;
  background: #ffd100 !important;
  z-index: -1;
}
.our-program-section {
  background: #f6f6f7;
}

.data-driven-thumb {
  padding-right: 20px;
}

.data-icon-list {
  display: flex;
  margin-top: 30px;
}

.data-icon-list .icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  border-radius: 20px;
  border: 1px solid rgba(0, 164, 227, 0.15);
  background: linear-gradient(
    180deg,
    rgba(0, 164, 227, 0) 0%,
    rgba(0, 164, 227, 0.15) 100%
  );
  height: 100px;
  width: 100px;
  margin-right: 30px;
  align-items: center;
  justify-content: center;
}

.data-icon-list h5,
.data-icon-list h4 {
  margin-bottom: 15px;
}

.data-icon-list p {
  font-size: 15px;
}

.our-prog-right-content .data-icon-list .icon {
  width: 125px;
  height: 125px;
}
.our-prog-right-content .data-icon-list {
  margin-bottom: 15px;
}

.our-program-tab nav .nav {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 25px;
  padding: 35px 0;
}

.our-program-tab .nav-tabs .nav-link {
  border: 0;
  text-align: left;
  color: #121212;
  font-weight: 400;
  padding: 0 35px;
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 32px;
}

.our-program-tab .nav-tabs .nav-link:last-child {
  margin-bottom: 0;
}

.our-program-tab .nav-tabs .nav-link.active {
  font-weight: 800;
  position: relative;
}

.our-program-tab .nav-tabs .nav-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 6px;
  background: var(--primary-color);
}

.our-prog-right-content {
  border-radius: 25px;
  background: #fff;
  box-shadow: 0px 10px 40px 0px rgba(18, 18, 18, 0.05);
  padding: 40px;
  border: 0;
}

.our-prog-right-content .data-icon-list {
  margin-top: 0;
}
.our-prog-box {
  display: flex;
}
.our-prog-box .icon {
  width: 35px;
  height: auto;
  display: flex;
  flex-shrink: 0;
  position: relative;
  top: 3px;
}

.our-prog-box .icon img {
  width: 19px;
  height: 20px;
}

.our-prog-box h5 {
  margin-bottom: 15px;
}

.our-prog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.our-prog-list .our-prog-box {
  margin: 0px 0;
}

.our-prog-list .our-prog-box:last-child {
  margin-bottom: 0;
}

.build-culture-section ul {
  margin: 15px 0 0;
  padding: 0;
}

.build-culture-section ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  color: var(--dark-black);
}

.build-culture-section ul li::before {
  position: absolute;
  left: 0;
  top: 6px;
  background: url(../images/arrow-right.png);
  width: 14px;
  height: 15px;
  content: "";
  background-size: 14px 15px;
  background-repeat: no-repeat;
  background-position: center;
}

.marketing-analytics {
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-position: right center !important;
}

.marketing-analytics-inner {
  position: relative;
  min-height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  background-position: right !important;
}

.marketing-analytics-inner::before {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    90deg,
    #005576 0%,
    #005576 50.61%,
    rgba(0, 85, 118, 0.75) 60.76%,
    rgba(3, 86, 119, 0) 100%
  );
}

.marketing-analytics::before {
  position: absolute;
  left: 0;
  top: 0px;
  background: url(../images/mrk-analytics-pattern-left.png);
  width: 216px;
  height: 214px;
  content: "";
  background-size: 216px 214px;
  background-repeat: no-repeat;
  background-position: top left;
  z-index: 1;
}

.marketing-analytics::after {
  position: absolute;
  left: 30%;
  bottom: 0px;
  background: url(../images/mrk-analytics-pattern-center.png);
  width: 341px;
  height: 134px;
  content: "";
  background-size: 341px 134px;
  background-repeat: no-repeat;
  background-position: top left;
}

.marketing-analytics .growth {
  display: flex;
  align-items: center;
}

.hm-talk-expert .growth {
  display: flex;
  align-items: center;
  justify-content: center;
}

.marketing-analytics .growth h3 {
  color: #fff;
  font-size: 120px;
  margin-right: 15px;
}

.hm-talk-expert .growth h3 {
  font-size: 120px;
  margin-right: 15px;
}

.marketing-analytics h4 {
  color: #fff;
  margin-bottom: 45px;
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
}

.tradintional-modern .firt-row .box {
  border-radius: 15px;
  background: #bfecff;
  min-height: 75px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.tradintional-modern .firt-row {
  margin-top: 40px;
}
.tradintional-modern .firt-row .box h3 {
  font-size: 24px;
}

.tradintional-modern .common-row .box {
  min-height: 100px;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: #e5eef1;
  margin: 10px 0;
  padding: 20px;
  text-align: left;
}
.tradintional-modern .common-row .box span {
  color: var(--dark-black);
  font-size: 18px;
}

.tradintional-modern .common-row .col-lg-4:first-child .box {
  align-items: flex-start;
  border-radius: 20px;
  border: 1.5px solid rgba(0, 164, 227, 0.15);
  background: linear-gradient(
    90deg,
    rgba(191, 236, 255, 0) 0.71%,
    rgba(191, 236, 255, 0.5) 100%
  );
  display: flex;
  justify-content: flex-start;
  padding: 0 0 0 20px;
  align-items: center;
}

.tradintional-modern .common-row .col-lg-4:first-child .box .icon-title {
  display: flex;
  align-items: center;
}

.tradintional-modern .common-row .box .icon {
  margin-right: 20px;
}

.product-analytics-section {
  position: relative;
}
.product-analytics-section .title-wrapper {
  z-index: 1;
  position: relative;
}

.product-analytics-section .pro-thumb-right {
  position: absolute;
  right: 0;
  top: -50px;
  max-width: 620px;
}

.product-analytics-section .title-wrapper p {
  margin-left: auto;
  max-width: 100%;
}

.product-analytics-items .item {
  margin-top: 50px;
  position: relative;
}

.product-analytics-items .item h5 {
  margin: 25px 0 15px;
}

.marketing-analytics h3 {
  font-size: 40px;
  line-height: 58px;
  color: #fff;
  margin-bottom: 50px;
  max-width: 80%;
}

.deperatment-head {
  background: #f6f6f7;
  overflow: hidden;
}

.prioritizing-data-tabs nav .nav {
  display: flex;
  justify-content: space-between;
}
.prioritizing-data-tabs nav {
  margin: 40px 0;
}
.prioritizing-data-tabs nav .nav-link {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #dee6eb;
  color: var(--bg-gray);
  font-size: 20px;
  font-weight: 700;
  padding: 0 40px;
  margin: 0 10px;
}

.prioritizing-data-tabs nav .nav-link.active {
  background: var(--bg-gray);
  color: #fff;
}

.prioritizing-data-tabs .tab-right-content .common-btn {
  margin-top: 30px;
}

.prioritizing-data-tabs .tab-right-content .questions {
  color: var(--bg-gray);
  font-size: 22px;
  font-weight: 600;
  margin: 15px 0;
  line-height: 36px;
}

.deperatment-colmns {
  position: relative;
  max-width: 85%;
  margin: 0 auto;
  z-index: 1;
}

.deperatment-colmns::after {
  content: "";
  position: absolute;
  background: url(../images/dept-bg.png);
  width: 1456px;
  height: 805px;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
  z-index: 0;
}

.deperatment-colmns .item {
  border-radius: 25px;
  background: #fff;
  box-shadow: 0px 20px 40px 0px rgba(0, 157, 217, 0.1);
  padding: 35px;
  position: relative;
  z-index: 1;
}

.deperatment-colmns .item h3 {
  font-size: 24px;
  line-height: 34px;
  position: relative;
  margin-bottom: 35px;
}

.deperatment-colmns .item h3::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100px;
  background: var(--primary-color);
  bottom: -20px;
  left: 0;
}
.deperatment-colmns .item p {
  max-width: 70%;
}

.deperatment-colmns .item {
  margin: 15px 0;
  overflow: hidden;
  position: relative;
}

.deperatment-colmns .item img {
  position: absolute;
  right: -10px;
  bottom: -10px;
}

.first-analytics-inner {
  border-radius: 30px;
  background: linear-gradient(
    1deg,
    rgba(191, 236, 255, 0) 0.48%,
    rgba(191, 236, 255, 0.5) 99.55%
  );
  padding: 45px 45px 0;
}
.first-analytics-content ul {
  margin-top: 10px;
}
.first-analytics-content ul li {
  list-style: disc;
  list-style-position: inside;
}
.first-analytics-inner .title-content {
  display: flex;
  align-items: flex-start;
  column-gap: 20px;
}

.first-analytics-inner .title-content h2.main-title {
  min-width: 500px;
}

.first-analytics-inner .thumb {
  margin: 20px auto 20px;
  display: flex;
  justify-content: center;
}

.first-analytics-inner .text-center {
  font-size: 16px;
  color: var(--dark-black);
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 70%;
  margin: 0 auto;
}

.help-to-grow-items .box-content {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 10px;
}

.customer-analytics {
  background: #f6f6f7;
  position: relative;
  z-index: 1;
}

.customer-analytics::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/best-work-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.04;
}

.help-to-grow-items .box-content .thumb {
  border: 2px solid var(--primary-color);
  height: 120px;
  width: 120px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 6px 40px rgba(0, 164, 227, 0.15);
}

.help-to-grow-items .box-content p {
  margin: 0 auto;
  max-width: 80%;
}

.help-to-grow-items .box-content h5 {
  margin: 20px 0;
}

.customer-analytics .accordion-button {
  background: #fff;
  padding: 15px 15px 15px 50px;
  border-radius: 15px !important;
  position: relative;
}

.customer-analytics .accordion-item {
  background: transparent;
}

.customer-analytics .accordion-button:not(.collapsed) {
  border: 1px solid #e6eef2 !important;
  border-bottom: 0 !important;
}

.customer-analytics .accordion-item .accordion-body {
  border-radius: 0 0 20px 20px;
  background: #fff;
  padding-left: 40px;
  padding-top: 0;
  position: relative;
  top: 4px;
}

.customer-analytics.our-services-sec .accordion-item .accordion-body {
  top: 0;
  z-index: 10;
}
.customer-analytics.our-services-sec .accordion-item .accordion-collapse {
  margin-bottom: -24px;
}

.customer-analytics .title-wrapper p {
  max-width: 100%;
}

.customer-analytics .accordion-item .accordion-collapse {
  top: -24px;
}

.customer-analytics .accordion-item .accordion-button::before {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--primary-color);
}

.customer-analytics .accordion-item:first-child .accordion-button::before {
  content: "1.";
}
.customer-analytics .accordion-item:nth-child(2) .accordion-button::before {
  content: "2.";
}
.customer-analytics .accordion-item:nth-child(3) .accordion-button::before {
  content: "3.";
}
.customer-analytics .accordion-item:nth-child(4) .accordion-button::before {
  content: "4.";
}
.customer-analytics .accordion-item:nth-child(5) .accordion-button::before {
  content: "5.";
}
.customer-analytics .accordion-item:nth-child(6) .accordion-button::before {
  content: "6.";
}

.customer-ana-bg h3 {
  max-width: 60%;
  font-weight: 700;
}

.company-benifit-list ul li {
  position: relative;
  padding-left: 30px;
  margin: 7px 0;
}

.company-benifit-list ul li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 6px;
  width: 14px;
  height: 15px;
  background: url(../images/arrow-right.png);
  background-size: 14px 15px;
}

.analytics-answers .faqs-content .accordion .accordion-button {
  background: #fff;
  border: 0;
  border-bottom: 1px solid #c5c8cf;
  border-radius: 0 !important;
  padding-bottom: 10px;
  padding-top: 10px;
  padding-left: 0;
}
.data-driven-section .expra-para ul {
  margin: 0;
  padding: 0;
}

.data-driven-section .expra-para ul li {
  display: flex;
  padding: 15px 0;
}

.data-driven-section .expra-para ul li:not(:last-child) {
  border-bottom: 1px solid #e6eef2;
}

.data-driven-section .expra-para ul li .percentage {
  flex-shrink: 0;
  display: flex;
  color: var(--primary-color);
  font-size: 34px;
  line-height: 44px;
  font-weight: 800;
  margin-right: 20px;
}

.data-driven-section .expra-para ul li span {
  color: var(--dark-black);
  font-weight: 600;
  font-size: 17px;
  display: flex;
  align-self: center;
}

.page-id-1634 .analytics-answers {
  margin-bottom: 90px;
}

.analytics-answers .faqs-content .accordion .accordion-collapse {
  border: 0;
  position: inherit;
}

.analytics-answers .faqs-content .accordion .accordion-body {
  padding-top: 0;
  padding-left: 0;
}

.analytics-answers .accordian-row {
  position: inherit;
}

.analytics-answers-thumb {
  position: absolute;
  right: 0;
  top: 0;
}

.supply-chain-middle .content-box {
  background: linear-gradient(
    1deg,
    rgba(191, 236, 255, 0) 0.48%,
    rgba(191, 236, 255, 0.5) 99.55%
  );
  padding: 30px;
  border-radius: 40px;
}

.supply-chain-middle .content-box .thumb {
  margin-top: 40px;
}

.supply-chain-middle .content-box .thumb img {
  border-radius: 15px;
}

.get-benefits {
  background: #f6f6f7;
}

.get-benefits .content-box {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 10px 40px 0px rgba(18, 18, 18, 0.03);
  padding: 30px;
  margin: 10px 0;
}

.get-benefits .inner-box {
  border-radius: 15px;
  background: #e6eef2;
  padding: 15px;
}

.get-benefits h4 {
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 42px;
}

.get-benefits .inner-box h5 {
  color: var(--bg-gray);
  font-size: 24px;
  margin-bottom: 15px;
}

.power-ai-section .prioritizing-data-tabs nav .nav-link {
  display: flex;
  flex: 1;
}

.conversation-banner {
  background: linear-gradient(
    180deg,
    rgba(0, 157, 217, 0) 0%,
    rgba(0, 157, 217, 0.15) 100%
  );
  width: 100%;
  height: 100vh;
  padding-top: 125px;
  overflow: hidden;
  position: relative;
}

.conversation-banner::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/right-pattent.png);
  width: 1699px;
  height: 1039px;
  background-size: cover;
}

.conversation-banner-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.conversation-banner-inner .title-wrapper {
  margin-bottom: 0;
}

.conversation-banner-inner .common-btn {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.conversation-banner-inner .common-btn::before {
  content: "";
  position: absolute;
  left: -200px;
  background: url(../images/button-point-arrow.png);
  width: 156px;
  height: 112px;
}

.conversation-banner-inner .common-btn::after {
  content: "";
  position: absolute;
  right: -200px;
  background: url(../images/button-point-arrow-right.png);
  width: 156px;
  height: 112px;
}

.power-ai-section .tab-right-content ul {
  max-width: 80%;
}

.power-ai-section .tab-right-content h2 {
  margin-bottom: 35px;
}

.power-ai-section .tab-right-content ul li {
  padding-left: 35px;
  position: relative;
}

.power-ai-section .tab-right-content ul li:not(:last-child) {
  margin-bottom: 20px;
}

.power-ai-section .tab-right-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 23px;
  height: 23px;
  background: url(../images/arrow-check.png);
}

.customer-observation {
  max-width: 1270px;
  margin: 0 auto;
  width: 100%;
  padding: 40px;
  background: var(--bg-gray);
  border-radius: 40px;
  color: #fff;
  position: relative;
  top: 120px;
  z-index: 1;
}

.customer-observation h3 {
  color: #fff;
  margin-bottom: 50px;
}

.customer-observation .item h4 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #fff;
}

.customer-observation .item {
  padding: 0 20px;
  min-height: 150px;
}

.customer-observation .col-lg-3 {
  position: relative;
}

.customer-observation .item .item-inner {
  display: flex;
  margin-bottom: 15px;
}
.customer-observation .item .item-inner span {
  font-size: 18px;
  padding-left: 15px;
  text-align: left;
}

.customer-observation .col-lg-3:not(:last-child) .item {
  border-right: 1px solid #166280;
}
.customer-observation .item {
  padding-bottom: 30px;
}

.customer-observation .col-lg-3:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 44px;
  height: 45px;
  background: url(../images/co-line-pattern.png);
}

.customer-observation .col-lg-3:last-child::before {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 4px;
  width: 44px;
  height: 45px;
  background: url(../images/co-line-pattern.png);
}

.customer-observation .col-lg-3:first-child::after {
  content: "";
  position: absolute;
  right: 90px;
  bottom: -30px;
  width: 61px;
  height: 55px;
  background: url(../images/co-pattern.png);
}

.customer-observation .col-lg-3:last-child::after {
  content: "";
  position: absolute;
  right: 10px;
  top: -30px;
  width: 61px;
  height: 55px;
  background: url(../images/co-pattern.png);
}

.transform-communucation {
  background: #f6f6f7;
  position: relative;
  overflow: hidden;
}

.transform-communucation::after {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 44px;
  height: 45px;
  background: url(../images/best-work-bg.png);
  width: 1920px;
  height: 1400px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
  opacity: 0.03;
}

.transform-communucation .thumb {
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
}

.transform-communucation.Ai-best-friend .thumb {
  max-width: 480px;
}

.transform-communucation h3 {
  font-size: 40px;
  line-height: 55px;
  margin-bottom: 40px;
}

.transform-communucation-inner {
  padding-top: 100px;
  position: relative;
  z-index: 1;
}

.great-business-section .row {
  padding-top: 10px;
  padding-bottom: 10px;
}

.great-business-section .para {
  padding: 40px 0;
}

.great-business-section h3 {
  font-size: 40px;
  line-height: 55px;
}
.revolution-business-inner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 700px;
  background-repeat: no-repeat;
  background-position: center;
  background: url(../images/revolution-business-bg.png);
  z-index: -1;
}
.revolution-business-inner {
  max-width: 1290px;
  background: var(--bg-gray);
  border-radius: 50px;
  padding: 50px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.revolution-business-inner .thumb {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.revolution-business-inner h2 {
  margin: 30px auto 50px;
  font-size: 40px;
  color: #fff;
  line-height: 58px;
}

.your-industry-section .our-prog-right-content {
  box-shadow: none;
}
.your-industry-section .our-program-tab .nav-tabs .nav-link {
  border-radius: 20px;
  border: 2px solid #dedede;
  padding: 30px;
  background: #fff;
}
.your-industry-section .our-program-tab .nav-tabs .nav-link.active {
  background: #f2fafd;
  border: 2px solid #00a4e3;
}

.your-industry-section .our-program-tab .nav-tabs .nav-link.active::before {
  display: none;
}

.your-industry-section .our-program-tab .nav-tabs p {
  margin: 0;
  font-weight: 500;
}

.your-industry-section .our-program-tab .nav-tabs h5 {
  font-size: 30px;
  margin-bottom: 15px;
}

.your-industry-section .our-program-tab .nav-tabs .nav-link {
  margin-bottom: 30px;
}

.inner-services-section {
  background: #f6f6f7;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.inner-services-section:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1920px;
  height: 138px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  background: url(../images/top-pattent.png);
  z-index: -1;
}

.inner-services-section:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1920px;
  height: 178px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  background: url(../images/bottom-pattent.png);
  z-index: -1;
}

.inner-services-section .service-inner-box {
  border-radius: 25px;
  background: #fff;
  box-shadow: 0px 10px 40px 0px rgba(18, 18, 18, 0.05);
  max-width: 450px;
  padding: 30px;
  margin-top: 40px;
  position: relative;
}
.inner-services-section .service-inner-box::after {
  position: absolute;
  left: 0;
  content: "";
  height: 70px;
  width: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
}
.inner-services-section .service-inner-box h5 {
  margin-bottom: 10px;
}
.inner-services-section .service-inner-box p {
  margin-bottom: 0;
}

.inner-services-section .first-row.common-row {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.inner-services-section .third-row {
  justify-content: center;
  display: flex;
}

.inner-services-section .sec-row {
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
}
.inner-services-section .inner-services-inner {
  position: relative;
}
.inner-services-section .inner-services-inner::after {
  left: 50%;
  top: -110px;
  transform: translateX(-50%);
  content: "";
  position: absolute;
  background: url(../images/services-middle-thumb.png);
  background-position: center;
  width: 790px;
  height: 790px;
  background-repeat: no-repeat;
  background-size: 70%;
  z-index: -1;
}
.customer-exp-section .items {
  display: flex;
  border-radius: 25px;
  border: 2px solid #bfe6f5;
  background: #fff;
  padding: 30px;
  margin: 15px 0;
}

.customer-exp-section .items .icon-thumb {
  border-radius: 15px;
  border: 1px solid rgba(0, 164, 227, 0.15);
  background: linear-gradient(
    180deg,
    rgba(0, 164, 227, 0) 0%,
    rgba(0, 164, 227, 0.15) 100%
  );
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.customer-exp-section .items .icon-thumb img {
  width: 85px;
  height: 85px;
}
.customer-exp-section .item-content {
  padding-left: 30px;
}

.customer-exp-section .item-content h5 {
  margin-bottom: 10px;
}

.default-temp-wrapper {
  padding: 10px 0 40px;
}

.default-temp-wrapper .entry-title {
  margin-bottom: 20px;
}

.default-temp-wrapper h2 {
  margin-bottom: 10px;
}

.rapid-dev-section .items {
  margin: 40px auto 0;
  text-align: center;
  max-width: 95%;
}

.rapid-dev-section {
  position: relative;
  /* background: linear-gradient(180deg, rgba(0, 157, 217, 0.00) 0%, rgba(0, 157, 217, 0.08) 100%); */
  background: #fff;
}

.rapid-dev-section .numver-box {
  height: 100px;
  width: 100px;
  background: var(--primary-color);
  border-radius: 50%;
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 35px;
}

.rapid-dev-section h5 {
  margin-bottom: 10px;
}

.rapid-dev-section .col-lg-3 {
  position: relative;
}

.rapid-dev-section .col-lg-3:first-child::after,
.rapid-dev-section .col-lg-3:nth-child(3):after {
  background: url(../images/dev-step-left-arrow.png);
  width: 177px;
  height: 176px;
  background-repeat: no-repeat;
  background-size: 80%;
  position: absolute;
  right: -30%;
  content: "";
  top: 0;
}

.rapid-dev-section .col-lg-3:nth-child(2)::after {
  background: url(../images/dev-step-right-arrow.png);
  width: 177px;
  height: 176px;
  background-repeat: no-repeat;
  background-size: 80%;
  position: absolute;
  right: -30%;
  content: "";
  bottom: 60px;
}

.top-bar {
  background: #005576;
  padding: 12px 0;
  position: relative;
  overflow: hidden;
  z-index: 999;
  display: none;
}

.top-bar:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/top-bar-pattern.png);
  background-repeat: no-repeat;
  width: 350px;
  height: 50px;
  background-size: 350px;
  height: 50px;
  z-index: -1;
}

.top-bar::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/top-bar-pattern.png);
  background-repeat: no-repeat;
  width: 350px;
  height: 50px;
  background-size: 350px;
  height: 50px;
  z-index: -1;
  transform: rotate(-180deg);
}

.top-bar .top-bar-inner {
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-bar .top-bar-inner .new-label {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--dark-black);
  background: #ffb71d;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.5px;
  border-radius: 20px;
  display: inline-flex;
  padding: 4px 10px;
}
.top-bar .top-bar-inner span {
  font-size: 16px;
  color: #fff;
  padding: 0 15px;
  font-weight: 600;
}

.top-bar .top-bar-inner a {
  text-decoration: underline;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  display: inline-flex;
}
.service-inner-banner {
  background: #f6f6f7;
  padding: 125px 0 30px;
}

.service-inner-banner .common-btn {
  margin-top: 30px;
}
.service-inner-banner .banner-thumb {
  margin-left: auto;
  text-align: right;
  display: flex;
  /* max-width: 547px; */
}

.service-inner-banner .banner-thumb img {
  margin-left: auto;
}

.common-service-inner-section .para {
  padding: 20px 0 10px;
}

.common-service-inner-section ul {
  margin: 0;
  padding: 0;
}

.common-service-inner-section ul li {
  padding-left: 35px;
  position: relative;
}

.common-service-inner-section ul li:not(:last-child) {
  margin-bottom: 10px;
}

.common-service-inner-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 25px;
  background: url(../images/arrow-check.png);
  width: 20px;
  height: 20px;
  background-size: 20px;
  background-repeat: no-repeat;
}

.common-service-inner-section .great-bus-thumb {
  padding-right: 50px;
}

.common-service-inner-section .row > .col-lg-6 > .service-inner-content {
  max-width: 88%;
}

.common-service-inner-section .second .great-bus-thumb {
  padding-right: 0;
}

.Ai-best-friend .transform-communucation-inner {
  padding-top: 0;
}

.talk-to-expert {
  background: var(--bg-gray);
  position: relative;
  z-index: 1;
  padding: 70px 0;
}

.talk-to-expert .thumb {
  max-width: 650px;
  margin: 0 auto;
}

.talk-to-expert::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 700px;
  background-repeat: no-repeat;
  background-position: center;
  background: url(../images/revolution-business-bg.png);
  z-index: -1;
}

.talk-to-expert .common-btn {
  border-radius: 40px;
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.15);
}

.talk-to-expert-inner h3 {
  color: #fff;
  font-size: 40px;
  line-height: 55px;
  max-width: 80%;
  margin-bottom: 60px;
}

.nlp-last-section .items .thumb {
  height: 180px;
  width: 180px;
  border-radius: 50%;
  border: 8px solid #fff;
  box-shadow: 0px 12px 40px rgba(0, 157, 217, 0.25);
}

.nlp-last-section .items .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.nlp-last-section .items h5 {
  margin: 20px 0;
  font-size: 22px;
  line-height: 35px;
}

.nlp-last-section .col-lg-4:nth-child(2) {
  margin-top: 220px;
}

.nlp-last-section .col-lg-4:last-child {
  margin-top: 440px;
}

.use-analytics .items {
  text-align: center;
}

.use-analytics .items h5 {
  margin: 30px auto 15px;
  font-size: 26px;
  font-weight: 800;
}

.use-analytics .items p {
  margin: 0 auto;
  max-width: 80%;
}

.hm-da-solutions.sales-conv-ai .da-solutions-thumb {
  right: auto;
  left: 0;
}

.hm-da-solutions.sales-conv-ai .accordion-collapse {
  border: 0;
}

.hm-da-solutions.sales-conv-ai button[aria-expanded="true"] {
  border: 0 !important;
  background: transparent !important;
}

.hm-da-solutions.sales-conv-ai .accordion-button {
  border: 0;
  background: transparent;
}

.hm-da-solutions.sales-conv-ai .accordion-button {
  font-size: 30px;
  font-weight: 800;
  line-height: 42px;
}

.hm-da-solutions.sales-conv-ai .accordion-button::after {
  background-position: top !important;
  position: absolute;
  right: 0;
  top: 16px;
  background: #f2fafd url(../images/next-arrow.png);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-position: center !important;
  background-size: 25px;
}

.hm-da-solutions.sales-conv-ai .accordion-button span {
  display: block;
  padding-right: 50px;
}
.hm-da-solutions.sales-conv-ai .da-solutions-thumb {
  max-width: 500px;
}

.hm-da-solutions.sales-conv-ai .accordion-body .point-list {
  padding: 20px 0;
}

.hm-da-solutions.sales-conv-ai .accordion-body ul li {
  position: relative;
  padding-left: 35px;
}

.hm-da-solutions.sales-conv-ai .accordion-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 23px;
  height: 23px;
  background: url(../images/arrow-check.png);
}

.hm-da-solutions.sales-conv-ai .accordion-body ul li:not(:last-child) {
  margin-bottom: 15px;
}

.hm-da-solutions.sales-conv-ai .accordion-body {
  border-bottom: 2px solid #ebeded;
}

.transform-communucation h3 span {
  color: var(--primary-color);
  color: white;
  letter-spacing: 0.5px;
  text-shadow:
    2px 0 0 var(--primary-color),
    -2px 0 0 var(--primary-color),
    0 2px 0 var(--primary-color),
    0 -2px 0 var(--primary-color),
    1px 1px 0 var(--primary-color),
    -1px -1px 0 var(--primary-color),
    1px -1px 0 var(--primary-color),
    -1px 1px 0 var(--primary-color),
    1px 1px 1px var(--primary-color);
}

.sales-tranform-com .transform-communucation-inner {
  padding-top: 0;
}

.sales-features .step-box {
  height: 300px;
  width: 300px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.sales-features .steps-row {
  position: relative;
}

.sales-features .steps-row:last-child .step-box {
  position: relative;
}

.sales-features .steps-row:last-child .step-box::after {
  content: "";
  position: absolute;
  top: -65px;
  background: url(../images/dev-pattern.png);
  background-repeat: no-repeat;
  background-size: 80%;
  width: 115px;
  height: 115px;
  left: -59px;
  transform: rotate(258deg);
}

.sales-features .steps-row:nth-child(1)::after {
  content: "";
  position: absolute;
  bottom: -130px;
  background: url(../images/dev-step-left-arrow.png);
  background-repeat: no-repeat;
  background-size: 80%;
  width: 177px;
  height: 176px;
  left: 40%;
  transform: rotate(17deg);
}

.sales-features .steps-row:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: -56px;
  background: url(../images/dev-step-right-arrow.png);
  background-repeat: no-repeat;
  background-size: 80%;
  width: 177px;
  height: 176px;
  left: 40%;
  transform: rotate(152deg);
}

.sales-features .step-box span {
  font-size: 35px;
  line-height: 46px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sales-features .step-box h5 {
  color: #fff;
  font-size: 90px;
  line-height: 120px;
}

.sales-features .step-content h4 {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 20px;
}

.revolution-business-inner h2 span {
  color: var(--bg-gray);
  text-shadow:
    2px 0 0 #fff,
    -2px 0 0 #fff,
    0 2px 0 #fff,
    0 -2px 0 #fff,
    1px 1px 0 #fff,
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 5px #fff;
}

.integrating-channel {
  background: linear-gradient(
    180deg,
    rgba(0, 151, 255, 0) 0%,
    rgba(0, 151, 255, 0.13) 100%
  );
  padding-bottom: 50px;
}

.integrating-channel .tab-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -40px;
  z-index: 0;
  position: relative;
}
.integrating-channel nav {
  text-align: center;
  position: relative;
  z-index: 1;
}
.integrating-channel .nav-tabs {
  display: inline-flex;
  justify-content: center;
  border-radius: 60px;
  background: #fff;
  box-shadow: 0px 0px 60px 5px rgba(0, 151, 255, 0.1);
  padding: 0 50px;
}

.integrating-channel .nav-tabs .nav-link {
  border-radius: 60px;
  border: 0;
  color: var(--dark-black);
  font-size: 18px;
  margin-bottom: 0;
  padding: 20px 30px;
}

.integrating-channel .nav-tabs .nav-link.active {
  font-weight: 700;
  position: relative;
}

.integrating-channel .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: var(--primary-color);
}

.integrating-channel .thumb-center {
  max-width: 500px;
}

.prioritizing-data.buyer-journey .tab-right-content h2 {
  margin-bottom: 20px;
}

.marketing-tranform-com .transform-communucation-inner {
  margin-bottom: 180px;
}

.website-visitors {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  margin-top: -180px;
  margin-bottom: 180px;
  position: relative;
}

.website-visitors-inner {
  width: 100%;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 10px 80px 5px rgba(0, 157, 217, 0.1);
  padding: 60px 15px 20px;
}

.website-visitors-inner .items {
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  height: 100%;
}

.website-visitors-inner .items .thumb {
  margin: 0 auto -30px;
  display: flex;
  justify-content: center;
}

.website-visitors-inner .items h5 {
  margin-bottom: 15px;
}
.customer-satisfaction .col-lg-6 {
  margin-top: 30px;
}
.customer-satisfaction .items {
  border-radius: 25px;
  border: 2px solid #bfe6f5;
  background: #fff;
  padding: 30px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.customer-satisfaction .items .thumb {
  border-radius: 15px;
  border: 1px solid rgba(0, 164, 227, 0.15);
  background: linear-gradient(
    180deg,
    rgba(0, 164, 227, 0) 0%,
    rgba(0, 164, 227, 0.15) 100%
  );
  display: inline-flex;
  width: 110px;
  height: 110px;
  align-items: center;
  justify-content: center;
}

.customer-satisfaction .items .thumb img {
  max-width: 80px;
  height: auto;
}

.customer-satisfaction .items h4 {
  margin: 20px 0 20px;
  font-size: 30px;
  line-height: 40px;
}

.chatbot-section.use-analytics .items h5 {
  font-size: 30px;
  line-height: 42px;
}

.marketing-perform-tab {
  position: relative;
  padding: 80px 0;
  margin-top: 50px;
}

.marketing-platform {
  background: linear-gradient(
    180deg,
    rgba(0, 151, 255, 0) 0%,
    rgba(0, 151, 255, 0.13) 100%
  );
}

.marketing-perform-tab .nav-tabs .nav-link {
  border: 0;
  background: transparent;
  margin: 5px 0;
}
.marketing-perform-tab .nav-tabs .nav-link .inner-content-box {
  padding: 30px;
  border-radius: 25px;
  border: 2px solid transparent;
  background: #fff;
  box-shadow: 0px 0px 60px 5px rgba(0, 151, 255, 0.1);
  text-align: left;
  margin-bottom: 20px;
  color: var(--light-black) !important;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.marketing-perform-tab .nav-tabs .nav-link.active .inner-content-box {
  border: 2px solid var(--primary-color);
}

.marketing-perform-tab .nav-tabs .nav-link h5 {
  margin: 15px 0;
}

.marketing-perform-tab .nav-tabs .nav-link p {
  margin-bottom: 0;
}

.marketing-perform-tab .tab-content {
}
.marketing-perform-tab .tab-content .thumb-left {
  display: flex;
  align-items: center;
  justify-content: center;
}
.marketing-perform-tab .tab-content .thumb-left .small-thumb {
  position: absolute;
  left: -50px;
  top: -50px;
}

.hm-da-solutions.sales-conv-ai .accordion {
  min-height: 380px;
}

.sales-features .steps-row:nth-child(even) {
  flex-direction: row-reverse;
}

.integrating-channel .services-tab {
  margin-top: 40px;
}

.middle-two-col {
  background: linear-gradient(
    180deg,
    rgba(0, 157, 217, 0) 0%,
    rgba(0, 157, 217, 0.08) 100%
  );
}
.middle-two-col .col-lg-6 {
  margin: 10px 0;
}
.middle-two-col .items {
  border-radius: 25px;
  border: 2px solid #bfe6f5;
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.middle-two-col .items .thumb {
  border-radius: 15px;
  border: 1px solid rgba(0, 164, 227, 0.15);
  background: linear-gradient(
    180deg,
    rgba(0, 164, 227, 0) 0%,
    rgba(0, 164, 227, 0.15) 100%
  );
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.middle-two-col .items .thumb img {
  width: 75px;
  height: auto;
}

.middle-two-col .items h4 {
  font-size: 26px;
  margin: 20px 0 15px;
}

.middle-two-col .items p {
  margin: 0;
}

.language-section .items {
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
}

.language-section .items .icon-thumb {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  max-width: 120px;
}

.language-section .items h4 {
  font-size: 26px;
  margin: 20px 0 15px;
}

.case-studies-list .right-content h4 {
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 46px;
}
.case-studies-list .right-content {
  padding-left: 30px;
}
.case-studies-list .right-content .para {
  margin-bottom: 40px;
}

.case-studies-list .custom-container {
  padding: 0 30px;
}

.case-studies-list .custom-container:not(:last-child) {
  margin-bottom: 40px;
}
.case-studies-list .custom-container .row {
  border-radius: 30px;
  border: 2px solid #e6eef2;
  padding: 30px 20px;
}
.case-studies-list .custom-container .thumb {
  position: relative;
}

.case-studies-list .custom-container .thumb::after {
  content: "";
  right: -2px;
  top: 0;
  position: absolute;
  height: 100%;
  width: 200px;
  background: linear-gradient(
    89deg,
    #fff 0.76%,
    rgba(255, 255, 255, 0.5) 36.24%,
    rgba(255, 255, 255, 0) 85.91%
  );
  transform: rotate(180deg);
}
.case-studies-list .custom-container .thumb img {
  border-radius: 25px 0px 0px 25px;
}

.page-template-customer-first-strategy .general-content-area ul {
  margin: 10px 0 15px;
}
.page-template-customer-first-strategy .general-content-area ul li {
  position: relative;
  padding: 5px 0 5px 35px;
  color: var(--dark-black);
}

.page-template-customer-first-strategy .general-content-area ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  background: url(../images/arrow-right.png);
  width: 15px;
  height: 16px;
  background-size: 15px 16px;
}

.case-studies-breadcums {
  background: #f6f6f7;
  position: relative;
  padding: 40px 0;
  z-index: 1;
  margin-top: 145px;
}
.case-studies-breadcums::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: #f6f6f7;
  height: 200px;
  z-index: -1;
}

.case-studies-breadcums ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.case-studies-breadcums ul li {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  color: #576076;
}

.cs-header {
  position: relative;
  z-index: 1;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 5px 60px 5px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin: 0 auto;
}
.cs-header-top h1 {
  font-size: 36px;
  line-height: 48px;
  text-align: center;
  max-width: 85%;
  margin: 0 auto 30px;
}

.cs-header-top .thumb img {
  border-radius: 15px;
  border: 1px solid #e6eef2;
}

.cs-header-bottom {
  padding: 0 30px;
}

.cs-header-bottom ul {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.cs-header-bottom ul li {
  display: flex;
  align-items: flex-start;
}

.list-content span {
  color: var(--dark-black);
  font-weight: 500;
}

.cs-header-bottom ul li .icon {
  display: flex;
  flex-shrink: 0;
  width: 52px;
  border-radius: 50%;
  height: 52px;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 164, 227, 0.1);
  margin-right: 10px;
}

.case-studies-breadcums ul li a {
  color: var(--dark-black);
}

.case-studies-wrapper .container {
  margin: 0 auto;
  padding: 0 100px;
}

.page-template-case-studies-details .hm-case-study {
  background-color: #f6f6f7 !important;
}
.page-template-case-studies-details .pb-90 p:empty {
  display: none;
}

.case-studies-wrapper .cs-header {
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  border-radius: 0;
  background: url(../images/case-study-bg-top.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  box-shadow: none;
  padding-bottom: 0;
}

.inquiry-form.case-study-inq-form {
  background: #fff;
}
.page-template-case-studies-details
  .contact-us-section.solution-contact-section {
  background: #fff;
}

.inquiry-form.case-study-inq-form:before,
.inquiry-form.case-study-inq-form:after {
  display: none;
}

.page-template-case-studies-details
  .contact-us-section.solution-contact-section:before,
.page-template-case-studies-details
  .contact-us-section.solution-contact-section:after {
  display: none;
}

.single.single-post .hm-articles {
  background: #fff;
}
.single.single-post .hm-articles:before,
.single.single-post .hm-articles:after {
  display: none;
}

.inquiry-form.case-study-inq-form .contact-form {
  box-shadow: none;
  background: #e2edf2;
}

.contact-us-section.solution-contact-section .contact-form {
  box-shadow: none;
  background: #e2edf2;
}

.hm-case-study.common-pattern-bg {
  background: #f6f6f7 !important;
}

.inquiry-form.case-study-inq-form .contact-form .form-control,
.inquiry-form.case-study-inq-form .contact-form .wpcf7-form-control {
  border: 0;
}

.contact-us-section.solution-contact-section .contact-form .form-control,
.contact-us-section.solution-contact-section .contact-form .wpcf7-form-control {
  border: 0;
}

.case-studies-wrapper .cs-header .cs-header-top .thumb img {
  width: 100%;
  border-radius: 15px 15px 0 0;
  border-bottom: 0;
}

.case-studies-wrapper .cs-header .cs-header-top h1 {
  margin-bottom: 40px;
}

.cs-top-content-area .content-box:not(:last-child) {
  margin-bottom: 40px;
}

.cs-top-content-area .content-box h3,
.case-studies-wrapper h3 {
  font-size: 36px;
  line-height: 46px;
  margin-bottom: 25px;
}

.cs-top-content-area .content-box li,
.common-point-list ul li {
  position: relative;
  padding-left: 30px;
  margin: 10px 0;
}

.cs-top-content-area .content-box li::before,
.common-point-list ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  background: url(../images/arrow-right.png);
  width: 15px;
  height: 16px;
  background-size: 15px 16px;
}

.cs-data-three-col h3 {
  margin-bottom: 30px;
}

.cs-data-three-col .data-box {
  border-radius: 25px;
  border: 2px solid rgba(0, 164, 227, 0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cs-data-three-col .data-box h4 {
  background: linear-gradient(
    180deg,
    rgba(0, 164, 227, 0) 0%,
    rgba(0, 164, 227, 0.15) 100%
  );
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  font-size: 22px;
}

.cs-data-three-col .data-box ul {
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  list-style: disc;
  list-style-position: inside;
  background: #fff;
  border-radius: 0 0 25px 25px;
}

.cs-data-three-col .data-box ul li {
  color: var(--dark-black);
  line-height: 32px;
  font-weight: 500;
}

.technology-list {
  background: #fff;
}

.technology-list .items {
  margin: 0px 0;
  border-radius: 0px;
  border-bottom: 1px solid #c5c8cf;
  border-right: 1px solid #c5c8cf;
  background: #fff;
  padding: 15px;
  text-align: center;
  position: relative;
}

.technology-list.services-tech-lists .items {
  border-radius: 0px;
  text-align: center;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: transparent;
  border: 0;
  padding: 0;
}

.technology-list .col-6 {
  padding: 0;
}

.technology-list .items .thumb {
  margin: 30px auto;
  max-width: 200px;
  width: 100%;
}
.technology-list-disc {
  box-shadow: 0px 10px 40px 0px rgba(18, 18, 18, 0.05);
  background-color: #fff;
  border-radius: 25px;
}
.technology-list-disc ul li {
  display: grid;
  grid-template-columns: 2fr 3fr;
  margin-top: 0px;
  padding: 20px;
}

.technology-list-disc ul li:not(:last-child) {
  border-bottom: 1px solid #c5c8cf;
}

.technology-list.services-tech-lists .items .thumb {
  margin: 8px;
  background: #fff;
  padding: 10px;
  border-radius: 15px;
  border: 1px solid #e6eef2;
  width: auto;
}

.technology-list .tech-boxes {
  border-left: 1px solid #c5c8cf;
  border-top: 1px solid #c5c8cf;
}

.technology-list .title-wrapper p {
  max-width: 100%;
}

.prioritizing-data.tranform-data-services .tab-right-content p:empty {
  display: none;
}

.prioritizing-data.tranform-data-services .tab-right-content h2 {
  margin-bottom: 15px;
}

.tranform-bus {
  position: relative;
  z-index: 1;
}

.tranform-bus::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: url(../images/service-bg.png);
  background-repeat: repeat;
  height: 100%;
  background-size: contain;
  z-index: -1;
}

.technology-list .items .tech-name {
  text-align: center;
  background-color: var(--bg-gray);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 50px;
  border-radius: 35px;
  font-size: 16px;
  color: #fff;
  position: absolute;
  left: 50%;
  width: 80%;
  bottom: -20px;
  transform: translateX(-50%);
  font-size: 16px;
  line-height: 24px;
}

.data-sourses .inner-title {
  font-size: 30px;
  line-height: 42px;
  color: var(--bg-gray);
  margin: 30px 0 10px;
}

.data-sourses .content-box {
  border-radius: 20px;
  border: 2px solid rgba(0, 164, 227, 0.15);
  background: #f2fafd;
  padding: 25px 25px 5px;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.data-sourses .content-box h5 {
  margin-bottom: 15px;
}
.data-sourses .content-box p {
  margin: 0;
}

.ultimate-outcome h4.inner-title {
  color: var(--bg-gray);
  margin-bottom: 15px;
}

.ultimate-outcome .twp-col .items {
  border-radius: 25px;
  padding: 30px 50px 5px;
  background: #f2fafd;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ultimate-outcome .twp-col .items .inner-title {
  text-align: center;
}

.ultimate-challange-section {
  background: #f6f6f7;
}

.ultimate-challange-section .inner-title {
  font-size: 22px;
  color: var(--bg-gray);
  margin-bottom: 20px;
  margin-top: 10px;
}

.ultimate-challange-section .middle-thumb {
  border-radius: 25px;
  border: 3px solid #e6eef2;
  background: #fff;
  padding: 15px;
  margin-top: 50px;
}

.ultimate-challange-section .curn-analytics {
  margin-top: 50px;
}

.ultimate-challange-section .right-thumb {
  border-radius: 25px;
  border: 2px solid #e6eef2;
  padding: 5px 30px;
  background: #fff;
}

.roi-section .middle-thumb {
  margin: 40px auto;
  max-width: 100%;
  border-radius: 20px;
  background: #fff;
  padding: 25px 10px;
  border: 1px solid #eaeaea;
}

.common-bg-thumb {
  background-color: #f6f6f7;
  padding: 40px;
  border-radius: 20px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.common-bg-thumb.w-bg-thumb {
  background-color: transparent;
  padding: 0;
}

.common-bg-thumb img {
  width: 100%;
  height: auto;
}
.page-template-case-studies-details.page-id-1798 .cs-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: url(../images/agri-bg-top-curve.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}

.grid-common-list .list-box {
  border-radius: 20px;
  border: 1px solid #ceeef9;
  background: #f2fafd;
  padding: 25px;
  margin: 15px 0;
}
.grid-common-list .list-box p {
  margin: 0;
  color: var(--dark-black);
  font-weight: 500;
}
.ultimate-outcome .twp-col .items ul {
  list-style: disc;
  margin-top: 0px;
}
.ultimate-outcome .twp-col .items ul li {
  padding-left: 0;
  list-style-position: outside;
  color: var(--bg-gray);
  font-weight: 500;
}

.ultimate-outcome .twp-col .items ul li::before {
  display: none;
}

.cs-data-three-col {
  background: #f6f6f7;
}

.lists-w-numbers > ul {
  list-style: none;
  counter-reset: item;
}
.lists-w-numbers > ul > li {
  counter-increment: item;
  padding-left: 55px;
  font-size: 18px;
  color: var(--dark-black);
  position: relative;
  display: flex;
  align-self: center;
}

.lists-w-numbers ul li:not(:last-child) {
  margin-bottom: 30px;
}
.lists-w-numbers > ul > li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 10px;
  content: counter(item);
  background: var(--primary-color);
  border-radius: 100%;
  color: white;
  width: 42px;
  height: 42px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solutions-section {
  background: #f6f6f7;
}
.solutions-section .lists-w-numbers ul {
  margin-top: 40px;
}
.solutions-section .lists-w-numbers ul li {
  flex-direction: column;
  padding-left: 85px;
}

.solutions-section .lists-w-numbers ul li h5 {
  margin-bottom: 10px;
}
.solutions-section .para {
  margin-bottom: 30px;
}

.solutions-section .lists-w-numbers ul li p {
  font-size: 16px;
  color: var(--light-black);
}

.solutions-section .lists-w-numbers ul li::before {
  width: 55px;
  height: 55px;
  background: var(--bg-gray);
  font-size: 32px;
  font-weight: 800;
  top: 0;
  transform: translateY(0);
}

.solutions-section .inner-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--bg-gray);
}
.solutions-section ul {
  margin: 10px 0 20px;
}
.solutions-section .half-list-row ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
}

.solutions-section .common-white-box ul li {
  padding: 15px 15px 15px 40px;
  background: #fff;
  font-size: 16px;
  line-height: 28px;
  border-radius: 15px;
  border: 1px solid #e6eef2;
  color: var(--dark-black);
  font-weight: 500;
}
.solutions-section .common-white-b.ox {
  margin-bottom: 20px;
}

.solutions-section .half-list-row.common-white-box ul li:not(:last-child) {
  margin-bottom: 10px;
}

.solutions-section .common-white-box ul li:not(:last-child) {
  margin-bottom: 10px;
}

.solutions-section .common-white-box ul li:before {
  transform: translateY(-50%);
  top: 50%;
  left: 15px;
}

.solutions-section .key-steps ul li:not(:last-child) {
  margin-bottom: 15px;
}

.our-approach-section .common-btn {
  margin-top: 40px;
}
.lists-w-numbers .list-content {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e6eef2;
  padding: 20px;
}

.lists-w-numbers .list-content p {
  margin-bottom: 0;
}

.our-approach-section ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 15px;
}

.numbers-cols .items {
  margin: 10px 0;
}

.numbers-cols .items .number {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}
.numbers-cols-inner {
  display: flex;
  gap: 20px;
}

.numbers-cols .items.numbers-cols-inner .number {
  flex-shrink: 0;
}
.numbers-cols-inner-content p:empty {
  display: none;
  margin-bottom: 0;
}
.numbers-cols .items h5 {
  font-size: 22px;
  margin-bottom: 10px;
}

.rep-capabilties-box ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
.rep-capabilties-box ul li {
  position: relative;
  counter-increment: list-counter;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 15px;
  padding: 0px 0 15px 20px;
  border-bottom: 1px solid #c5c8cf;
}

.rep-capabilties-box ul li p {
  margin-bottom: 0;
}

.rep-capabilties-box ul li:before {
  content: counter(list-counter) ". ";
  position: absolute;
  left: 0;
  top: 0;
  color: #005576;
  font-weight: 700;
}

.rep-capabilties-box ul li:before,
.rep-capabilties-box ul li .title {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  color: #005576;
}

.solutions-section .two-stages .stage-header {
  border-radius: 25px 25px 0px 0px;
  border: 2px solid rgba(0, 164, 227, 0.15);
  background: linear-gradient(
    180deg,
    rgba(0, 164, 227, 0) 0%,
    rgba(0, 164, 227, 0.15) 100%
  );
  display: flex;
  align-items: center;
  min-height: 80px;
  padding: 20px;
  justify-content: space-between;
}

.solutions-section .two-stages .stage-header h6 {
  font-size: 22px;
}

.solutions-section .two-stages .stage-number {
  color: var(--bg-gray);
}

.solutions-section .two-stages .stages-content {
  background: #fff;
  border-radius: 0px 0px 25px 25px;
  border: 2px solid #e6eef2;
  background: #fff;
  padding: 20px;
  border-top: 0;
}

.solutions-section .two-stages .stages-content p:last-child {
  margin: 0;
}
.solutions-section .two-stages .stages-content p {
  color: var(--dark-black);
}

.helpful-sectioon .left-thumb {
  position: relative;
  margin-right: 30px;
}

.helpful-sectioon .left-thumb::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -2px;
  height: 102%;
  width: 30%;
  transform: rotate(180deg);
  background: linear-gradient(
    89deg,
    #fff 0.76%,
    rgba(255, 255, 255, 0.5) 36.24%,
    rgba(255, 255, 255, 0) 85.91%
  );
}

.hm-solve-problems {
  overflow: hidden;
}

.blog-main {
  overflow: hidden;
}

.blog-main .articles-box {
  margin: 40px 0px;
}

.blog-main .articles-box h3 {
  font-size: 26px;
  margin-top: 15px;
  font-weight: 700;
}

.blog-content-middle h2 {
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
}

.blog-content-middle h3 {
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 45px;
}

.blog-content-middle h4 {
  font-size: 28px;
  line-height: 38px;
}

.blog-content-middle .content-box {
  margin-bottom: 60px;
}

.blog-content-middle .content-box h4 {
  margin-bottom: 10px;
}

.blog-content-middle .content-box.summury-box {
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid #00a4e3;
  border-radius: 20px;
}

.social-media-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.articles-box .social-media-box ul li:not(:last-child) {
  margin-right: 10px;
}

.blog-content-middle .summary-content-box p {
  margin-bottom: 30px;
}

.blog-content-middle .summery-quote {
  border-radius: 10px;
  background: #e8f9ff;
  padding: 20px 25px;
  margin-bottom: 20px;
  color: var(--dark-black);
  font-style: italic;
  font-size: 16px;
  line-height: 27px;
  font-weight: 600;
  margin: 0 0 20px;
}

.blog-content-middle .summery-quote a {
  color: var(--primary-color);
  text-decoration: underline;
}

.blog-content-middle .content-box.summury-box p {
  margin-bottom: 0;
  color: #576076;
  font-style: italic;
  font-weight: 500;
}
.blog-content-middle .content-box.summury-box h3 {
  color: var(--bg-gray);
  font-style: italic;
  margin-bottom: 15px;
}

.blog-content-middle .content-box .middle-thumb {
  text-align: center;
  display: flex;
  justify-content: center;
  max-width: 1080px;
  border-radius: 20px;
  background: #f6f6f7;
  margin-bottom: 30px;
  padding: 40px;
}

.blog-content-middle .content-box .middle-thumb img {
  max-width: 340px;
  width: 100%;
}
.blog-content-middle .content-box .middle-thumb.cta-thumb img {
  width: 100%;
  max-width: 100%;
}

.blog-content-middle .content-box .middle-thumb.cta-thumb {
  padding: 0;
  margin-top: 20px;
  background: transparent;
  max-width: 100%;
}

.blog-content-middle .content-box .middle-thumb.cta-thumb .hm-talk-expert h4 {
  font-size: 32px;
  line-height: 42px;
}

.blog-content-middle .content-box .middle-thumb.cta-thumb p:empty {
  display: none;
}

.blog-content-middle
  .content-box
  .middle-thumb.cta-thumb
  .hm-talk-expert
  p:empty {
  display: none;
}

.blog-content-middle .content-box .middle-thumb.cta-thumb .hm-talk-expert p {
  margin: 0;
}

.blog-content-middle
  .content-box
  .middle-thumb.cta-thumb
  .hm-talk-expert
  .talk-expert-inner
  .common-btn {
  margin-top: 30px;
}
.blog-content-middle .content-box .middle-thumb.cta-thumb .hm-talk-expert {
  border-radius: 20px;
  min-height: max-content;
  position: relative;
  overflow: hidden;
  padding: 60px 30px;
  background-size: cover !important;
}

.blog-content-middle
  .content-box
  .middle-thumb.cta-thumb
  .hm-talk-expert:before,
.blog-content-middle
  .content-box
  .middle-thumb.cta-thumb
  .hm-talk-expert:after {
  background-size: 50% !important;
}

.blog-content-middle
  .content-box
  .middle-thumb.cta-thumb
  .hm-talk-expert:after {
  background-position: left bottom;
}

.blog-content-middle .content-box .middle-thumb br {
  display: none;
}

.blog-content-middle .content-box h5 {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 15px;
  color: var(--dark-black);
}
.blog-details-cta .marketing-analytics-inner {
  background-position: right !important;
}

.blog-content-middle .content-box.lists-w-numbers li {
  flex-direction: column;
}

.blog-content-middle .lists-w-numbers > ul > li:before {
  top: -4px;
  transform: translateY(0);
  font-weight: 700;
}

.blog-content-middle .content-box.lists-w-numbers > li:not(:last-child) {
  margin-bottom: 15px;
}
.blog-content-middle .lists-w-numbers li > ul {
  list-style-type: disc;
  list-style-position: inside;
}
.blog-content-middle .lists-w-numbers li > ul > li:not(:last-child) {
  margin-bottom: 3px;
}

.blog-content-middle .content-box.lists-w-numbers li p {
  color: var(--light-black);
  font-size: 16px;
  line-height: 26px;
}

.blog-details .articles-box ul {
  justify-content: center;
}

.blog-content-middle .content-box.quote-box {
  border-radius: 10px;
  background: #e8f9ff;
  padding: 20px 25px;
  position: relative;
  display: flex;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.blog-content-middle .comment-section {
  padding: 25px;
  border-radius: 20px;
  background: #e8f9ff;
}

.blog-content-middle .comment-section .comment-profile {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
.blog-content-middle .comment-section .comment-profile .thumb {
  background-color: #fff;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  align-items: center;
  display: flex;
  justify-content: center;
  border: 1px solid var(--primary-color);
}

.blog-content-middle .comment-section p {
  text-align: justify;
}

.blog-content-middle .comment-section .comment-profile h5 {
  font-size: 24px;
  margin-bottom: 5px;
}

.blog-content-middle .middle-thumb.cta-bg {
  margin-bottom: 50px;
}

.blog-content-middle .content-box.quote-box p {
  color: var(--dark-black);
  font-style: italic;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin: 0;
}

.blog-content-middle .content-box.quote-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-color);
  border-radius: 200px 0px 0px 200px;
}

.blog-content-middle .content-box .trasparent-bg {
  background: transparent;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0 0;
}

.blog-content-middle .content-box .inner-blue-title {
  color: var(--bg-gray);
  font-size: 24px;
  font-weight: 800;
  margin: 30px 0 30px;
  line-height: 32px;
}

.blog-content-middle .content-box.quote-box.inner-quote-box {
  margin-top: 30px;
  max-width: 100%;
}

.blog-content-middle .content-box.quote-box.inner-quote-box p {
  color: var(--dark-black);
}

.blog-content-middle .content-box.data-lists .lists-w-numbers > ul {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

.blog-content-middle .content-box.data-lists .lists-w-numbers > ul > li {
  flex-direction: column;
  border: 1px solid #b5e3f3;
  border-radius: 15px;
  padding: 10px 10px 10px 90px;
  margin: 0px 0 30px;
}

.blog-content-middle
  .content-box.data-lists
  .lists-w-numbers
  > ul
  > li::before {
  border: 1px solid #b5e3f3;
  background-image: linear-gradient(
    to bottom,
    #fdfeff,
    #f6fbff,
    #edf8fe,
    #e4f5fd,
    #dbf2fb
  );
  color: #005576;
  font-weight: 800;
  font-size: 26px;
  width: 60px;
  height: 60px;
  top: 12px;
  transform: none;
  left: 10px;
}

.blog-content-middle .content-box.data-lists .lists-w-numbers ul li h5 {
  margin-bottom: 5px;
  font-size: 20px;
}
.blog-content-middle .content-box.data-lists .lists-w-numbers ul li p {
  font-size: 14px;
  line-height: 24px;
  color: var(--light-black);
  margin: 0;
}

.single-post .post-thumbnail,
.single-post .entry-header {
  display: none;
}

.hm-articles .articles-box .thumb {
  width: 100%;
  height: auto;
  position: relative;
}

.articles-box .articles-content-box {
  border-radius: 0 0 15px 15px;
  border: 1px solid #e6eef2;
  background-color: #fff;
  padding: 15px;
}
.articles-box .articles-content-box h4,
.articles-box .articles-content-box h3 {
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}
.articles-box .articles-content-box .short-content,
.case-study-wrapper .case-study-content-box .short-content {
  margin-top: 15px;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}

.hm-articles .articles-box .thumb img {
  width: 100%;
  height: auto;
  border-radius: 20px 20px 0 0;
  border: 1px solid #e6eef2;
}
.thank-you {
  max-width: 950px;
  margin: 0 auto 50px;
}
.thank-you .thumb {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.error-404.thank-you .thumb {
  max-width: 1000px;
  margin: 30px auto 50px;
}

.thank-you .para {
  text-align: center;
}
.error-404.thank-you .para {
  margin-bottom: 50px;
}

.thank-you .para h1 {
  font-size: 52px;
  line-height: 62px;
  margin-bottom: 30px;
}

.thank-you .contact-details {
  max-width: max-content;
  text-align: left;
  margin: 0 auto 20px;
  display: flex;
  gap: 50px;
}

.thank-you ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  margin: 10px;
}

.thank-you ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}
.thank-you ul li .icon.bg {
  background-color: var(--primary-color);
}
.thank-you ul li .icon {
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.thank-you ul li a {
  color: var(--dark-black);
  font-size: 24px;
  font-weight: 600;
}
.thank-you ul li a:hover,
.thank-you ul li a:focus {
  color: var(--primary-color);
}

.thank-you .btn-wrapper {
  text-align: center;
}

.thank-you .btn-wrapper .common-btn {
  background-color: #fff;
  color: var(--primary-color);
}

.thank-you .btn-wrapper .common-btn:hover,
.thank-you .btn-wrapper .common-btn:focus {
  background-color: var(--primary-color);
  color: #fff;
}

.data-stretegy-three-col .items {
  margin: 10px 0;
  border-radius: 25px;
  background: linear-gradient(
    1deg,
    rgba(191, 236, 255, 0) 0.48%,
    rgba(191, 236, 255, 0.5) 99.55%
  );
  padding: 30px;
  text-align: center;
}

.data-stretegy-three-col .items h3 {
  font-size: 40px;
  line-height: 52px;
  color: var(--bg-gray);
  margin-bottom: 15px;
  position: relative;
}

.data-stretegy-three-col .items h3 span {
  font-size: 14px;
  display: block;
  position: absolute;
  top: -36px;
  text-align: center;
  width: 100%;
}

.data-strategy-workshop .product-analytics-items .item {
  margin-top: 30px;
}

.data-strategy-workshop .item .icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.data-strategy-workshop .item .icon img {
  width: 50px;
  height: auto;
}

.data-stretegy-two-col {
  background: #f6f6f7;
}

.data-stretegy-two-col .items {
  border-radius: 25px;
  background: #fff;
  padding: 30px;
  position: relative;
  margin: 10px 0;
  position: relative;
  overflow: hidden;
}

.data-stretegy-two-col .items p {
  margin: 0;
}
.data-stretegy-two-col .items .number {
  color: white;
  position: absolute;
  right: -10px;
  bottom: -30px;
  font-size: 180px;
  line-height: 200px;
  letter-spacing: 0.5px;
  opacity: 0.3;
  text-shadow:
    2px 0 0 var(--primary-color),
    -2px 0 0 var(--primary-color),
    0 2px 0 var(--primary-color),
    0 -2px 0 var(--primary-color),
    1px 1px 0 var(--primary-color),
    -1px -1px 0 var(--primary-color),
    1px -1px 0 var(--primary-color),
    -1px 1px 0 var(--primary-color),
    1px 1px 1px var(--primary-color);
}
.explosure-section .lists-w-numbers {
  padding-right: 20px;
}
.explosure-section .lists-w-numbers ul li {
  padding-left: 80px;
  margin-bottom: 20px;
  position: relative;
}

.explosure-section .lists-w-numbers ul li::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 0%;
  width: 2px;
  height: 115px;
  border: 2px dashed #00a4e3;
  opacity: 0.5;
  margin-top: 73px;
  z-index: -1;
}

.explosure-section .lists-w-numbers ul li:last-child:after {
  display: none;
}

.explosure-section .lists-w-numbers ul li:last-child::after {
  display: none;
}

.explosure-section .lists-w-numbers ul li::before {
  background: var(--bg-gray);
  width: 60px;
  height: 60px;
  font-size: 22px;
  font-weight: 800;
}

.explosure-section .lists-w-numbers ul li p {
  margin: 0;
  background: #e6eff2;
  border-radius: 15px;
  font-size: 18px;
  padding: 25px;
  font-weight: 500;
}

.explosure-section .explosure-right {
  padding-left: 20px;
}

.explosure-section .explosure-right h3 {
  margin: 20px 0px 15px;
}

.explosure-section .explosure-right .common-btn {
  margin-top: 15px;
}

.data-eng-proess,
.common-pattern-bg {
  background: #f6f6f7;
  z-index: 0;
  position: relative;
}

.common-pattern-bg::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1920px;
  height: 138px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  background: url(../images/top-pattent.png);
  z-index: -1;
}

.common-pattern-bg::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1920px;
  height: 178px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  background: url(../images/bottom-pattent.png);
  z-index: -1;
}

.data-eng-proess .col-sm-6:nth-child(even) .box-wrapper {
  flex-direction: column-reverse;
  display: flex;
}
.data-eng-proess .box-wrapper .counter-wrapper {
  display: flex;
  min-height: 88px;
}
.data-eng-proess .col-sm-6:nth-child(odd) .box-wrapper .counter-wrapper {
  display: flex;
  align-items: flex-end;
}
.data-eng-proess .box-wrapper .counter {
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  background-color: #005576;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin: 5px auto;
}

.data-eng-proess .box-wrapper .para {
  text-align: center;
}

.data-eng-proess .box {
  border-radius: 250px;
  background: #fff;
  height: 250px;
  width: 250px;
  display: flex;
  margin: 15px auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0px 10px 40px 0px rgba(18, 18, 18, 0.05);
}
.data-eng-proess .box .thumb {
  margin-top: -15px;
  max-width: 100px;
}

.data-eng-proess .box h5 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
  min-height: 55px;
  margin-bottom: 0;
}

.data-eng-two-col .items h5 {
  margin-bottom: 10px;
}

.data-eng-two-col .items.common-point-list ul li:last-child {
  margin-bottom: 0;
}

.usp-section .title-wrapper {
  position: absolute;
}
.usp-section .items ul li {
  border-radius: 20px;
  border: 1px solid rgba(0, 164, 227, 0.15);
  background: linear-gradient(
    180deg,
    rgba(0, 164, 227, 0) 0%,
    rgba(0, 164, 227, 0.15) 100%
  );
  max-width: 50%;
  padding: 30px 30px 30px 80px;
  font-size: 24px;
  line-height: 36px;
  color: var(--dark-black);
  margin-left: auto;
}

.usp-section .items ul li:nth-child(2) {
  right: 10%;
}
.usp-section .items ul li:nth-child(3) {
  right: 25%;
}

.usp-section .items ul li:last-child {
  margin-left: 0;
}

.usp-section .items ul li:not(:last-child) {
  margin-bottom: 20px;
}

.usp-section .items.common-point-list ul li::before {
  top: 50%;
  transform: translate(-50%);
  width: 20px;
  height: 20px;
  left: 40px;
  background-size: 20px;
  background-repeat: no-repeat;
  margin-top: -10px;
}

.our-services-sec .thumb {
  border: 2px solid var(--primary-color);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 6px 40px rgba(0, 164, 227, 0.15);
}

.our-services-sec .thumb img {
  width: 60px;
  height: auto;
}

.our-services-sec h3 {
  margin: 25px 0 20px;
}

.customer-analytics.our-services-sec {
  background: #fff;
  background-image: none;
}

.customer-analytics.our-services-sec::after {
  display: none;
}

.customer-analytics.our-services-sec .row:not(:last-child) {
  margin-bottom: 90px;
}

.bi-roadmap .left-thumb {
  margin-bottom: 30px;
}

.tranform-data-services .prioritizing-data-tabs nav .nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 15px;
}

.tranform-data-services .prioritizing-data-tabs .para {
  margin-top: 20px;
}

.tranform-data-services .prioritizing-data-tabs .thumb-left {
  position: relative;
}

.tranform-data-services .prioritizing-data-tabs .thumb-left::before {
  background: linear-gradient(
    89deg,
    #fff 0.62%,
    rgba(255, 255, 255, 0.6) 72.04%,
    rgba(255, 255, 255, 0) 99.34%
  );
  content: "";
  width: 35%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
}

.tranform-data-services .prioritizing-data-tabs .thumb-left img {
  border-radius: 15px;
}

.tranform-bus .deperatment-colmns {
  max-width: 100%;
}

.tranform-bus .deperatment-colmns::after {
  display: none;
}

.tranform-bus .deperatment-colmns .item {
  box-shadow: 0px 10px 40px 0px rgba(18, 18, 18, 0.05);
}

.data-stretegy-two-col.data-eng-two-col .items {
  padding-right: 30px;
}

.sitemap-main {
  padding: 40px 0;
}

.sitemap-main h4 {
  margin-bottom: 20px;
}

.sitemap-main ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.sitemap-main ul li {
  position: relative;
  padding-left: 15px;
  margin: 5px 0;
}
.sitemap-main ul li a {
  display: inline-block;
  position: relative;
  transition: 0.25s ease-in all;
  font-size: 18px;
}

.sitemap-main ul li a:hover {
  color: var(--bg-gray);
  transition: 0.25s ease-in all;
}

.sitemap-main ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.25s ease-out;
}
.sitemap-main ul li a:hover::after {
  width: 100%;
}

.sitemap-main ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: var(--primary-color);
}
.sitemap-main .row {
  padding-top: 40px;
}
.sitemap-main .row:not(:last-child) {
  padding-bottom: 35px;
  border-bottom: 1px solid #e8e9ec;
}

.sitemap-main .row h4 {
  position: relative;
}

.sitemap-main .row h4:before {
  position: absolute;
  left: -27px;
  top: -38px;
  font-size: 44px;
  font-weight: bold;
  color: var(--bg-gray);
  opacity: 0.1;
}
.sitemap-main .row:first-child h4:before {
  content: "01";
}
.sitemap-main .row:nth-child(2) h4:before {
  content: "02";
}
.sitemap-main .row:nth-child(3) h4:before {
  content: "03";
}
.sitemap-main .row:nth-child(4) h4:before {
  content: "04";
}

.blog-content-middle .lists-w-numbers li > ul > li {
  font-size: 14px;
  color: var(--light-black);
}

.vision-int-thumb {
  position: relative;
  max-width: 566px;
  width: 100%;
}

.vision-int-thumb .corner-icon {
  position: absolute;
  right: -50px;
  bottom: -50px;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 164, 227, 0.2);
}

.vision-int-thumb .corner-icon.left {
  left: -50px;
  bottom: -50px;
  right: auto;
}

.vision-int-thumb .corner-icon-inner {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-int-thumb > img {
  border-radius: 30px;
}
.vision-int-container .row:nth-child(even) .vision-int-thumb {
  margin-left: auto;
}

.vision-int-container .number {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}
.vision-int-container .row:nth-child(even) .vision-int-right .number {
  margin-left: auto;
}

.vision-int-right {
  max-width: 620px;
  width: 100%;
}

.vision-int-right h3 {
  font-size: 28px;
  line-height: 36px;
  margin: 8px 0 8px;
}
.vision-int-container .row:nth-child(even) {
  flex-direction: row-reverse;
}
.vision-int-container .row:nth-child(odd) .vision-int-right {
  text-align: left;
  max-width: 566px;
  margin-left: auto;
}

.vision-int-container .row {
  position: relative;
}

.vision-int-container .circle-center {
  position: absolute;
  top: 36%;
  right: 50%;
  height: 15px;
  width: 15px;
  min-width: 15px;
  min-height: 15px;
}

.vision-int-container .row:nth-child(even) .circle-center {
  top: 36%;
}
.title-wrapper-two {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.title-wrapper-two p {
  font-size: 30px;
  line-height: 42px;
  letter-spacing: 0.2px;
  color: var(--dark-black);
}
.title-wrapper-two h2 span {
  display: block;
  color: var(--primary-color);
  font-family: "Bonheur Royale", cursive;
  font-weight: 500;
  font-style: normal;
  font-size: 120px;
  line-height: 40px;
}

.title-wrapper-two h2 {
  color: var(--dark-black);
  font-size: 100px;
  line-height: 150px;
}
.animation {
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  border-radius: 50px;
  position: absolute;
  left: 5px;
  top: -13px;
  z-index: -1;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  animation: arcontactus-pulse2 3s infinite;
  z-index: 0;
}

.vision-int-container .circle-center:after {
  position: absolute;
  display: block;
  content: "";
  height: 15px;
  width: 15px;
  min-height: 15px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border-radius: 50%;
  right: -7.5px;
  z-index: 1;
}

.vision-int-container .row:nth-child(even) .vision-int-right {
  text-align: right;
  max-width: 566px;
}

.vision-int-container .row .col-md-6 {
  position: relative;
}

.vision-int-container .row > .col-md-6:nth-child(even)::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 0;
  height: 100%;
  width: 10px;
  background-repeat: repeat-y;
  background: url(../images/doted-line.png);
  background-position: top center;
}

.vision-int-container .row > .col-md-6:nth-child(odd)::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 0;
  height: 100%;
  width: 10px;
  background-repeat: repeat-y;
  background: url(../images/doted-line.png);
  background-position: top center;
}

.vision-int-container .row:first-child > .col-md-6:nth-child(odd)::after {
  height: 60%;
  top: auto;
  bottom: 0;
}

.vision-int-container .row:last-child > .col-md-6::after {
  height: 35%;
  top: 0;
  bottom: 0;
}

.vision-int-container .row:nth-child(odd) > .col-md-6:nth-child(even)::after {
  display: none;
}

.vision-int-container .row:nth-child(even) > .col-md-6:nth-child(even)::after {
  display: none;
}

.vision-int-container .row:nth-child(even) > .col-md-6:nth-child(odd)::after {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  height: 100%;
  width: 10px;
  background-repeat: repeat-y;
  background: url(../images/doted-line.png);
  background-position: top center;
}

.vision-int-bg {
  width: 100%;
  min-height: max-content;
  padding-bottom: 230px;
  background-size: cover;
  background-position: center top !important;
  position: relative;
}

.vision-int-bg::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0;
  height: 230px;
  width: 100%;
  background: url(../images/wav-pattent.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.visionsop-benifits .title-wrapper {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.visionsop-benifits .benefits-box .benefits-thumb {
  background: #fff;
  border: 1px solid var(--primary-color);
}

.industries-slider .slider_item {
  padding: 0 15px;
}

.industries-slider .slider_item .common-bg {
  padding: 30px;
  border-radius: 20px;
}

.industries-slider .slider_item .apparel-bg {
  background: #d6cdea;
}

.industries-slider .slider_item .automobile-bg {
  background: #f9ebdf;
}
.industries-slider .slider_item .banks-bg {
  background: #eff9da;
}
.industries-slider .slider_item .grocery-bg {
  background: #cbe4f9;
}
.industries-slider .slider_item .restaurant-bg {
  background: #cdf5f6;
}

.industries-slider .slider_item .hotel-resort-bg {
  background: #f5d4e4;
}
.industries-slider .slider_item .automotive-bg {
  background: #f9ebdf;
}
.industries-slider .slider_item .pharmaceutical-bg {
  background: #f3dffa;
}

.industries-slider .slider_item .energy-bg {
  background: #f3dffa;
}

.industries-slider .slider_item h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.industries-slider .slider_item .slide-content {
  text-align: center;
  display: block;
}

.industries-slider .slider_item .thumb {
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
}

.industries-slider .slider_item .slide-content p {
  color: #576076;
  font-size: 18px;
  line-height: 26px;
  min-height: 100px;
}

.industries-slider.location-option .slider_item .slide-content p {
  min-height: 150px;
}

.industries-slider .slider_item .thumb img {
  border-radius: 10px;
  transition: transform 0.6s ease-in-out;
  transform: scale(1);
}
.hm-why-choose-us .hm-about-content p:empty {
  display: none;
}

.hm-why-choose-us .hm-about-content ul li b {
  font-weight: 600;
  color: #080d0c;
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
}

.industries-slider .slider_item:hover .thumb img {
  transform: scale(1.1);
}

.industries-lists .title-wrapper p {
  text-align: center;
  max-width: 100%;
}

.industries-lists .title-wrapper {
  max-width: 580px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.industries-slider {
  position: relative;
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.ind-top-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.slider-nav .nav-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  cursor: pointer;
}

.slider-nav .nav-icon:hover {
  background-color: var(--primary-color);
}

.slider-nav .next.nav-icon svg {
  transform: rotate(180deg);
}

.slider-nav .nav-icon:hover svg path {
  fill: #fff;
}

.stories-inner {
  border-radius: 30px;
  border: 1px solid var(--primary-color);
  padding: 60px;
  position: relative;
}

.stories-inner .slider-nav {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 10;
}

.stories-slider .stories-thumb img {
  border-radius: 30px;
}

.stories-slider .stories-content {
  padding-left: 70px;
}

.stories-slider .stories-content .label {
  background: rgb(205, 237, 250);
  background: linear-gradient(
    90deg,
    rgba(205, 237, 250, 1) 0%,
    rgba(254, 255, 255, 1) 90%
  );
  height: 42px;
  padding: 0 30px;
  border-radius: 30px;
  color: #005576;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  text-align: center;
}

.stories-slider .stories-content h3 {
  font-size: 26px;
  margin: 15px 0 20px;
  line-height: 38px;
}

.stories-slider .stories-content .common-btn {
  margin-top: 40px;
}

.relevant-solutions .thumb-items {
  height: 100%;
  position: relative;
  width: 100%;
  border-radius: 17px;
  overflow: hidden;
  transition: 0.3s ease-in all;
  display: block;
}

.relevant-solutions .thumb-items::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 0px;
  transition: 0.3s ease-in all;
}

.relevant-solutions .thumb-items:hover h3 {
  color: #fff;
}

.relevant-solutions .thumb-items:hover .thumb-item-content .icon {
  background-color: var(--primary-color);
}

.relevant-solutions .thumb-items:hover .thumb-item-content .icon svg path {
  fill: #fff;
}

.relevant-solutions .thumb-item-content .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: transparent;
}

.relevant-solutions .thumb-item-content .icon svg {
  width: 24px;
  height: auto;
}

.relevant-solutions .thumb-items.vision-sop-bg::after {
  background-color: #f9dae1;
}

.relevant-solutions .thumb-items.warehouse-bg::after {
  background-color: #cdf5f6;
}

.relevant-solutions .thumb-items.explore-int-bg::after {
  background-color: #d6cdea;
}

.relevant-solutions .thumb-items.int-solution-bg::before {
  content: "";
  background: url(../images/blue-cicrle.png);
  width: 155px;
  height: 138px;
  background-size: 70%;
  background-position: top right;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background-repeat: no-repeat;
  transition: 0.6s ease-in-out all;
}

.relevant-solutions .thumb-items.int-solution-bg::after {
  content: "";
  background: url(../images/blue-sqaure.png);
  width: 172px;
  height: 114px;
  background-size: 80%;
  background-position: bottom left;
  position: absolute;
  bottom: 0 !important;
  left: 0;
  top: auto;
  background-repeat: no-repeat;
  background-color: transparent !important;
  z-index: 1;
  transition: 0.6s ease-in-out all;
}

.relevant-solutions .thumb-items.location-bg::after {
  background-color: #f9ebdf;
}

.relevant-solutions .thumb-items.football-analysis-bg::after {
  background-color: #eff9da;
}

.relevant-solutions .thumb-items:hover::after {
  background-color: rgba(0, 85, 118, 0.6);
}

.relevant-solutions .thumb-items img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.relevant-solutions .col-md-7 .col-12:first-child {
  margin-bottom: 30px;
}

.relevant-solutions .col-md-7 .thumb-items {
  min-height: 265px;
  max-height: 265px;
}

.relevant-solutions .thumb-item-content {
  display: flex;
  padding: 30px;
  position: absolute;
  height: 100%;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  top: 0;
  left: 0;
}

.relevant-solutions .thumb-item-content h3 {
  font-size: 42px;
  line-height: 54px;
}

.relevant-solutions .int-solution-bg .thumb-item-content h3 {
  color: #fff;
  width: 100%;
  text-align: center;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.relevant-solutions .int-solution-bg .thumb-item-content .icon {
  display: none;
}

.relevant-solutions .right-full .thumb-item-content {
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.relevant-solutions .right-full .thumb-item-content .icon {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.relevant-solutions .thumb-items img {
  transition: transform 0.6s ease-in-out;
  transform: scale(1);
}

.relevant-solutions .thumb-items:hover img {
  transform: scale(1.1);
}

.relevant-solutions .rel-sol-secrow {
  margin-top: 30px;
}

.chat-box-inner {
  margin: auto;
  text-align: center;
}
.chat-box-animation {
  background-color: var(--primary-color);
  width: 100px;
  height: 100px;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  border-radius: 50px;
  position: absolute;
  left: -15px;
  top: -15px;
  z-index: -1;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  animation: arcontactus-pulse 2s infinite;
}
.chat-box-animation:nth-of-type(2n) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@keyframes arcontactus-pulse {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes arcontactus-pulse2 {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }
}

@-webkit-keyframes arcontactus-pulse {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@-webkit-keyframes arcontactus-pulse2 {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.4;
  }
}

@media screen and (min-width: 1580px) {
  .container {
    max-width: 1530px;
    width: 100%;
  }

  .supply-chain-middle {
    margin-top: 80px;
  }
}

@media screen and (max-width: 1580px) {
  .ptb-120 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .pb-120 {
    padding-bottom: 90px;
  }
  .pt-120 {
    padding-top: 90px;
  }
  .ptb-90 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pb-90 {
    padding-bottom: 70px;
  }
  .pt-90 {
    padding-top: 70px;
  }
  .banner-inner .main-title {
    font-size: 45px;
    line-height: 58px;
    margin-bottom: 15px;
  }

  .title-w-thumb img {
    max-width: 350px;
    top: -20px;
  }
  .title-w-thumb {
    padding-right: 280px;
    padding-bottom: 20px;
  }
  .a-first-thumb {
    margin-top: 40px;
  }
  .a-first-thumb img {
    max-width: 180px;
    height: auto;
  }

  .banner-inner {
    max-width: 860px;
  }
  .header-top {
    padding: 8px 20px;
  }
  .case-studies-breadcums {
    margin-top: 120px;
  }
  .conversation-banner,
  .contact-us-section.ptb-90 {
    padding-top: 90px;
  }
  .cs-top-content-area .content-box h3,
  .case-studies-wrapper h3 {
    font-size: 32px;
    line-height: 40px;
  }
  .case-studies-wrapper .cs-header {
    padding-top: 90px;
  }
  .schedule-meeting-text span {
    padding: 0px 10px;
    min-height: 42px;
    line-height: 42px;
  }
  .inner-banner {
    padding-top: 90px;
    min-height: 400px;
  }
  .service-inner-banner {
    padding: 90px 0 30px;
  }
  .home_slider .banner-inner.new-banner-inner p,
  .schedule-meeting-text {
    margin-bottom: 35px;
  }
  .schedule-meeting-text,
  .schedule-meeting-text span {
    font-size: 20px;
  }
  .about-ai-roi .col-lg-6:last-child .item-thumb-box {
    left: -2.7px;
  }

  .banner-inner .para {
    margin: 0 0 30px;
  }

  .hm-highimp-services .service-box .icon-thumb {
    height: 100px;
    width: 100px;
  }
  .hm-highimp-services .service-box .icon-thumb img {
    width: 60px;
    height: auto;
  }
  .hm-highimp-services .service-box,
  .hm-highimp-services .service-box .flipper {
    min-height: 310px;
  }

  .hm-highimp-services .service-box .flipper {
    padding: 30px;
  }

  .hm-why-choose-us .hm-about-content ul li b {
    font-size: 18px;
    margin-bottom: 7px;
  }

  .your-industry-section .our-program-tab .nav-tabs h5 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .your-industry-section .our-program-tab .nav-tabs p {
    font-size: 15px;
    line-height: 24px;
  }

  .about-ai-roi .main-title {
    font-size: 34px;
    line-height: 52px;
  }

  .hr-inquiry-info h3 {
    font-size: 30px;
  }
  .inner-banner::before {
    background-size: 70%;
  }

  .da-solutions-thumb {
    max-width: 620px;
  }
  .footer-top .footer-item ul li a,
  .contact-us-footer ul li a,
  .footer-contact .get-in-touch ul li a,
  .footer-top .para p {
    font-size: 14px;
    line-height: 24px;
  }
  .banner-inner .para p {
    font-size: 16px;
  }
  .contact-middle-right ul li a .icon {
    width: 72px;
    height: 72px;
  }
  .about-ai-roi .item-thumb-box {
    top: -81px;
  }
  .about-ai-roi .item-thumb-box .inner-box {
    height: 170px;
    width: 170px;
  }

  .contact-us-section.solution-contact-section .contact-form {
    padding: 25px;
  }
  .contact-us-section.solution-contact-section
    .contact-form
    textarea.form-control,
  .contact-us-section.solution-contact-section
    .contact-form
    textarea.wpcf7-form-control {
    height: 80px;
  }
  .contact-us-section.solution-contact-section .contact-form label {
    margin-bottom: 5px;
  }

  .current-openings-tabs .job-desc li::before {
    background-size: 14px 15px;
  }

  .hr-inquiry-right .hr-inquiry-info {
    left: -63px;
    bottom: -123px;
  }

  .hm-cta-section .newsletter input {
    height: 50px;
    border-radius: 40px;
  }
  .hm-cta-section .newsletter button,
  .hm-cta-section .newsletter .tnp-field input[type="submit"] {
    height: 36px;
  }
  .hm-cta-section .newsletter button {
    padding: 9px 30px;
    font-size: 16px;
  }

  .analytics-answers-thumb img {
    width: 100%;
    max-width: 850px;
  }

  .supply-chain-middle .content-box .main-title {
    font-size: 32px;
    line-height: 46px;
  }

  .get-benefits h4 {
    font-size: 26px;
    line-height: 38px;
  }

  .data-icon-list .icon {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }

  .our-prog-right-content .data-icon-list .icon {
    width: 110px;
    height: 110px;
  }

  .our-prog-right-content .data-icon-list .icon img {
    width: 80px;
    height: 80px;
  }

  .data-icon-list .icon img {
    width: 45px;
    height: 45px;
  }
  .data-icon-list h5,
  .data-icon-list h4 {
    margin-bottom: 10px;
  }
  .marketing-analytics .growth h3,
  .hm-talk-expert .growth h3 {
    font-size: 90px;
    margin-bottom: 0;
  }

  .marketing-analytics .growth .icon img,
  .hm-talk-expert .growth .icon img {
    max-width: 110px;
  }
  .marketing-analytics .growth,
  .hm-talk-expert .growth {
    margin-bottom: 15px;
  }

  .marketing-analytics h4 {
    font-size: 36px;
    line-height: 48px;
  }

  .prioritizing-data-tabs nav .nav-link {
    padding: 0 32px;
  }

  .transform-communucation h3,
  .revolution-business-inner h2 {
    font-size: 36px;
    line-height: 48px;
  }
  .revolution-business-inner .thumb {
    max-width: 200px;
  }

  .conversation-banner-inner .conv-thumb {
    max-width: 790px;
  }

  .prioritizing-data-tabs nav .nav-link {
    font-size: 18px;
    display: flex;
    flex: 1;
  }

  .your-industry-section .our-program-tab .nav-tabs .nav-link {
    padding: 20px;
    margin-bottom: 15px;
  }

  .transform-communucation.Ai-best-friend .thumb {
    max-width: 350px;
  }

  .talk-to-expert.services-talk-to-expert .thumb {
    max-width: 540px;
  }

  .nlp-last-section .items .thumb {
    width: 140px;
    height: 140px;
  }

  .hm-solve-problems .nav-link {
    padding: 10px 5px;
    font-size: 15px;
  }

  .home_slider .slider_item:nth-child(2) .banner-inner {
    max-width: 600px;
  }

  .sales-features .step-box {
    width: 220px;
    height: 220px;
  }

  .marketing-analytics h3 {
    font-size: 36px;
    line-height: 48px;
  }

  .sales-features .step-content h4 {
    font-size: 36px;
    line-height: 42px;
  }
  .main-title {
    font-size: 42px;
    line-height: 54px;
  }

  .sales-features .step-box h5 {
    font-size: 75px;
    line-height: 90px;
  }
  .sales-features .step-box span {
    font-size: 30px;
    line-height: 42px;
  }

  .integrating-channel .thumb-center {
    max-width: 400px;
  }

  .hm-da-solutions.sales-conv-ai .accordion-button {
    font-size: 28px;
    line-height: 40px;
  }

  .sales-features .steps-row:nth-child(2)::after {
    left: 35%;
  }

  .website-visitors-inner .items .thumb {
    max-width: 180px;
  }
  .website-visitors-inner .items h5 {
    margin-top: 15px;
  }
  .customer-satisfaction .items .thumb {
    width: 90px;
    height: 90px;
  }
  .customer-satisfaction .items .thumb img {
    max-width: 65px;
  }
  .customer-satisfaction .items h4 {
    font-size: 28px;
    line-height: 40px;
  }
  .marketing-perform-tab {
    padding: 40px 0;
  }

  .solutions-section .two-stages .stage-header h6 {
    font-size: 18px;
  }

  .middle-two-col .items h4,
  .language-section .items h4 {
    font-size: 24px;
  }

  .marketing-perform-tab .nav-tabs .nav-link.col-lg-6 {
    padding: 10px;
  }
  .case-studies-list .right-content h4 {
    font-size: 32px;
    line-height: 42px;
  }
  .technology-list .items .tech-name {
    white-space: nowrap;
    width: 90%;
    font-size: 15px;
  }

  .cs-header-top h1 {
    font-size: 32px;
    line-height: 45px;
    text-align: center;
    max-width: 95%;
    margin: 0 auto 20px;
  }
  .use-analytics .items h5 {
    font-size: 22px;
  }

  .rapid-dev-section .col-lg-3:nth-child(2)::after {
    right: -37%;
    background-size: 67%;
    bottom: 89px;
  }
  .rapid-dev-section .col-lg-3:first-child::after,
  .rapid-dev-section .col-lg-3:nth-child(3):after {
    background-size: 67%;
    right: -41%;
  }

  .usp-section .items ul li {
    font-size: 22px;
    line-height: 34px;
    padding: 25px 25px 25px 60px;
  }

  .footer-top.ptb-120 {
    padding-bottom: 40px;
  }

  .inner-banner.blog-banner::after {
    background: linear-gradient(
      90deg,
      #fff 0%,
      #fff 51.62%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .title-wrapper-two h2 {
    font-size: 70px;
    line-height: 120px;
  }
  .title-wrapper-two h2 span {
    font-size: 80px;
    line-height: 16px;
  }

  .title-wrapper-two p {
    font-size: 18px;
    line-height: 30px;
  }

  .vision-int-bg {
    padding-bottom: 150px !important;
  }
  .vision-int-bg::after {
    height: 190px;
  }

  .vision-int-thumb,
  .vision-int-container .row:nth-child(even) .vision-int-right {
    padding-right: 80px;
  }

  .vision-int-container .row:nth-child(odd) .vision-int-right,
  .vision-int-container .row:nth-child(even) .vision-int-thumb {
    padding-left: 80px;
  }

  .vision-int-container .number {
    height: 45px;
    width: 45px;
    font-size: 22px;
  }

  .vision-int-right h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .industries-slider .slider_item {
    padding: 0 10px;
  }

  .industries-slider .slider_item .common-bg {
    padding: 15px;
  }

  .industries-slider .slider_item h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .industries-slider .slider_item .slide-content p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 5px;
  }

  .slider-nav .nav-icon {
    width: 35px;
    height: 35px;
  }

  .stories-slider .stories-content h3 {
    font-size: 22px;
    margin: 10px 0 10px;
    line-height: 34px;
  }
  .stories-slider .stories-content .common-btn {
    margin-top: 20px;
  }
  .stories-slider .stories-content {
    padding-left: 30px;
  }

  .relevant-solutions .col-md-7 .thumb-items {
    min-height: 110px;
    max-height: 110px;
    height: 110px !important;
  }

  .relevant-solutions .right-full .thumb-items {
    max-height: 240px;
    height: 240px;
  }

  .relevant-solutions .right-full {
    height: 240px;
  }

  .relevant-solutions .thumb-item-content h3 {
    font-size: 24px;
    line-height: 36px;
  }

  .relevant-solutions .thumb-item-content .icon svg {
    width: 15px;
  }

  .relevant-solutions .thumb-item-content .icon {
    width: 35px;
    height: 35px;
  }

  .relevant-solutions .thumb-item-content {
    padding: 20px;
  }

  .stories-inner {
    padding: 30px;
  }

  .vision-int-thumb .corner-icon {
    position: absolute;
    right: 40px;
    bottom: -29px;
    height: 120px;
    width: 120px;
  }

  .vision-int-thumb .corner-icon.left {
    left: 40px;
    bottom: -29px;
    right: auto;
  }

  .vision-int-thumb .corner-icon-inner {
    height: 80px;
    width: 80px;
  }

  .vision-int-thumb .corner-icon-inner img {
    max-width: 50px;
    height: auto;
  }

  .relevant-solutions .col-md-7 .col-12:first-child {
    margin-bottom: 20px;
  }

  .relevant-solutions .rel-sol-secrow {
    margin-top: 20px;
  }

  .animation {
    left: 4px;
  }
  .vision-int-container .circle-center {
    top: 35%;
  }

  .vision-int-container .row:nth-child(even) .circle-center {
    top: 31%;
  }

  .vision-int-container .row:first-child > .col-md-6:nth-child(odd)::after,
  .vision-int-container .row:nth-child(even) > .col-md-6:nth-child(odd)::after {
    background-size: 60%;
  }

  .vision-int-container .row:last-child > .col-md-6::after,
  .vision-int-container .row > .col-md-6:nth-child(odd)::after {
    background-size: 60%;
  }

  .contact-middle-right ul li.contact-numbers {
    min-height: 180px;
  }

  .data-stretegy-three-col .items h3 {
    font-size: 32px;
    line-height: 45px;
    margin-bottom: 5px;
  }

  .data-stretegy-three-col .items {
    padding: 15px;
  }

  .data-eng-proess .box {
    height: 220px;
    width: 220px;
  }
  .data-eng-proess .box .thumb {
    max-width: 80px;
  }
  .data-eng-proess .box h5 {
    font-size: 18px;
  }
  .data-eng-proess .box-wrapper .counter-wrapper {
    min-height: 105px;
  }

  .data-eng-proess .box-wrapper .counter {
    height: 45px;
    width: 45px;
  }
}

@media screen and (max-width: 1440px) {
  body {
    font-size: 14px;
    line-height: 22px;
  }
  .ptb-120 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pb-120 {
    padding-bottom: 100px;
  }
  .pt-120 {
    padding-top: 100px;
  }
  .banner-inner .main-title {
    font-size: 42px;
    line-height: 55px;
    margin-bottom: 15px;
  }
  .banner-inner .para {
    margin-bottom: 30px;
  }
  .common-btn {
    height: 42px;
    line-height: 42px;
    font-size: 14px;
  }
  .home_slider .slick-dots {
    max-width: max-content;
    top: -92px;
  }

  .header-navigation .main-menu ul > li > a {
    font-size: 15px;
  }

  .banner-inner .para p {
    font-size: 16px;
    line-height: 28px;
  }

  header {
    padding: 8px 0;
  }

  .main-title {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 20px;
  }

  .sales-features .step-content h4 {
    font-size: 34px;
    line-height: 42px;
  }

  .hm-about,
  .hm-why-choose-us {
    overflow: hidden;
  }

  .hm-why-choose-us {
    padding-top: 60px;
  }

  .home .hm-why-choose-us {
    padding-top: 0;
  }

  .banner-inner .main-title span:after {
    background-size: 68%;
  }
  .main-title span:after {
    background-size: 65%;
  }
  .hm-highimp-services .main-title span:after {
    background-size: 53%;
  }
  .case_slider .slick-slide {
    margin: 0 15px;
  }
  .hm-cta-section h3,
  .hm-case-study .main-title {
    font-size: 32px;
    line-height: 42px;
  }

  .hm-custom-solutions .custom-right-content {
    padding-left: 40px;
  }

  .hm-custom-solutions .custom-solutions-points {
    padding: 20px 25px;
  }
  .hm-custom-solutions .number-box .number {
    width: 65px;
    height: 65px;
  }

  .hm-about .hm-about-thumb .left-corner {
    width: 100px;
    height: 100px;
    left: -45px;
    top: -45px;
    display: none;
  }
  .hm-about .hm-about-thumb .right-b-pattern {
    width: 140px;
  }

  .hm-why-choose-us .left-corner {
    right: -50px;
    top: -50px;
    width: 100px;
    display: none;
  }
  .hm-why-choose-us .right-b-pattern {
    width: 140px;
  }

  .hm-da-solutions .accordion-button::after {
    width: 28px;
    height: 28px;
  }

  .hm-highimp-services .service-box .icon-thumb {
    height: 75px;
    width: 75px;
  }
  .hm-highimp-services .first-content-box,
  .hm-highimp-services .service-box {
    margin-bottom: 15px;
  }
  .hm-highimp-services .service-box .icon-thumb img {
    width: 40px;
    height: auto;
  }
  .hm-highimp-services .common-btn {
    margin-top: 10px;
  }
  .hm-highimp-services .service-box .flipper {
    padding: 20px;
  }
  .hm-highimp-services .service-box h3 {
    margin: 10px auto 10px;
    font-size: 20px;
    line-height: 30px;
  }
  .hm-highimp-services .service-box {
    min-height: 305px;
  }
  .hm-da-solutions .accordion-button {
    padding: 15px;
  }
  .hm-da-solutions .accordion-button {
    font-size: 18px;
  }
  .hm-solve-problems .tab-right-content h3 {
    font-size: 26px;
    line-height: 36px;
  }

  .hm-talk-expert h4 {
    font-size: 36px;
    line-height: 50px;
  }
  .hm-custom-solutions .custom-right-content h3 {
    font-size: 28px;
    line-height: 40px;
  }
  .case_slider .slider_item h3,
  .case_slider .slider_item h4 {
    font-size: 22px;
    line-height: 34px;
  }

  .inner-banner::before {
    background-size: 70%;
  }

  .contact-middle-right ul li .icon {
    width: 45px;
    height: 45px;
  }

  .contact-middle-right ul li .icon svg {
    width: 24px;
    height: auto;
  }

  .contact-middle-right ul li {
    padding-top: 20px;
  }
  .contact-middle-section .contact-detail-box .contact-middle-right-main {
    padding: 15px;
  }
  .contact-middle-section .contact-detail-box .contact-middle-right::after {
    background-size: 75%;
  }

  .da-solutions-thumb {
    max-width: 550px;
  }

  .about-sets-us .items h4 {
    font-size: 23px;
  }
  .about-sets-us .items {
    padding: 20px 20px 70px 20px;
  }

  .about-experience-sec .items .thumb img {
    height: 50px;
    width: 50px;
  }
  .about-experience-sec .items .thumb {
    width: 80px;
    height: 80px;
  }
  .about-experience-sec .items h4 {
    font-size: 24px;
  }
  .about-ai-roi .main-title {
    font-size: 32px;
    line-height: 48px;
  }
  .about-sets-us .items .number {
    font-size: 90px;
  }
  .about-ai-roi .item-thumb-box .inner-box {
    width: 150px;
    height: 150px;
  }
  .about-ai-roi .item-thumb-box {
    top: -72px;
  }

  .accordion-button {
    padding: 15px;
    font-size: 18px;
    line-height: 30px;
  }

  .contact-us-footer ul li.numbres {
    position: relative;
    padding-left: 25px;
  }
  .contact-us-footer ul li.numbres .icon {
    position: absolute;
    left: 0;
    top: 5px;
  }
  .contact-us-footer ul li.numbres {
    align-items: flex-start;
    flex-direction: column;
  }

  .hr-inquiry-right .hr-inquiry-info {
    left: -51px;
  }

  .get-benefits h4 {
    font-size: 24px;
    line-height: 36px;
  }

  .get-benefits .inner-box h5 {
    font-size: 20px;
  }

  .first-analytics-inner .title-content h2.main-title {
    min-width: max-content;
    margin-right: 15px;
  }

  .help-to-grow-items .box-content .thumb {
    height: 100px;
    width: 100px;
  }

  .help-to-grow-items .box-content .thumb img {
    width: 60px;
  }
  .help-to-grow-items .box-content h5 {
    margin: 15px 0;
  }

  .tradintional-modern .firt-row {
    margin-top: 30px;
  }

  .tradintional-modern .common-row .box span {
    font-size: 16px;
  }
  .tradintional-modern .common-row .box {
    min-height: 85px;
  }
  .tradintional-modern .common-row .box .icon img {
    max-width: 52px;
  }

  .marketing-analytics .growth h3,
  .hm-talk-expert .growth h3 {
    font-size: 80px;
  }
  .marketing-analytics .growth .icon img,
  .hm-talk-expert .growth .icon img {
    max-width: 90px;
  }

  .our-prog-right-content .data-icon-list .icon {
    width: 90px;
    height: 90px;
  }
  .our-prog-right-content .data-icon-list .icon img {
    height: 75px;
    width: 75px;
  }
  .marketing-analytics h4 {
    font-size: 32px;
    line-height: 44px;
  }

  .prioritizing-data-tabs nav .nav-link {
    padding: 0 15px;
    margin: 0 5px;
  }

  .conversation-banner-inner .conv-thumb {
    max-width: 640px;
  }

  .transform-communucation h3,
  .revolution-business-inner h2 {
    font-size: 32px;
    line-height: 46px;
  }

  .our-program-tab nav .nav {
    padding: 20px 0;
  }
  .our-program-tab .nav-tabs .nav-link {
    padding: 0 20px;
    font-size: 18px;
    line-height: 28px;
  }

  .great-business-section h3 {
    font-size: 32px;
    line-height: 44px;
  }

  .hm-da-solutions.sales-conv-ai .accordion-button {
    font-size: 26px;
    line-height: 38px;
  }

  .case-studies-breadcums {
    padding: 20px 0;
  }
}

@media screen and (max-width: 1399px) {
  .analytics-answers-thumb img {
    max-width: 700px;
  }

  .page-id-1634 .analytics-answers {
    margin-bottom: 00px;
  }
}

@media screen and (max-width: 1366px) {
  .industries-slider .slider_item h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 1280px) {
  .ptb-120 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .pb-120 {
    padding-bottom: 90px;
  }
  .pt-120 {
    padding-top: 90px;
  }
  .ptb-90 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pb-90 {
    padding-bottom: 70px;
  }
  .pt-90 {
    padding-top: 70px;
  }
  .banner-inner .main-title {
    font-size: 45px;
    line-height: 60px;
    margin-bottom: 15px;
  }
  .main-title {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 15px;
  }
  .sales-features .step-content h4 {
    font-size: 30px;
    line-height: 42px;
  }
  .about-ai-roi .main-title {
    font-size: 30px;
    line-height: 44px;
  }
  .supply-chain-middle .content-box .main-title {
    font-size: 28px;
    line-height: 42px;
  }
  .marketing-analytics h3 {
    font-size: 35px;
    line-height: 50px;
  }
  .your-industry-section .our-program-tab .nav-tabs h5 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .customer-observation {
    width: 94%;
  }

  .talk-to-expert-inner h3 {
    font-size: 34px;
    line-height: 46px;
  }

  .case-studies-list .right-content h4 {
    font-size: 28px;
    line-height: 38px;
  }
  .case-studies-list .right-content .para {
    margin-bottom: 30px;
  }
  .cs-header {
    max-width: 92%;
    margin: 0 4%;
    padding: 30px;
  }

  .data-eng-proess .box {
    width: 200px;
    height: 200px;
  }
  .data-eng-proess .box .thumb img {
    width: 90px;
    height: auto;
  }
  .data-eng-proess .box h5 {
    font-size: 18px;
    line-height: 28px;
  }
}

@media screen and (max-width: 1199px) {
  .analytics-answers-thumb img {
    max-width: 600px;
  }
  .product-analytics-section .pro-thumb-right {
    opacity: 0.5;
  }
  .data-eng-proess .box-wrapper .counter-wrapper {
    min-height: 124px;
  }
}

@media screen and (max-width: 991px) {
  .data-eng-proess .box-wrapper .counter-wrapper {
    min-height: 80px;
  }

  .case-studies-wrapper .container {
    padding: 0 15px;
  }
}

@media screen and (max-width: 767px) {
  .data-eng-proess .box-wrapper .counter-wrapper {
    min-height: 100px;
  }
  .technology-list-disc ul li {
    grid-template-columns: 1fr;
  }

  .technology-list-disc ul li h6 {
    margin-bottom: 10px;
  }
  .technology-list.services-tech-lists .items {
    gap: 10px;
    margin-bottom: 20px;
  }
  .technology-list.services-tech-lists .items .thumb {
    margin: 0;
  }
}
@media screen and (max-width: 574px) {
  .data-eng-proess .box-wrapper .counter-wrapper {
    min-height: auto;
  }

  .data-eng-proess .col-sm-6:nth-child(even) .box-wrapper {
    flex-direction: column;
  }
}

@media screen and (min-width: 1441px) {
  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-megamenu
    > ul.mega-sub-menu {
    margin-top: 27px !important;
  }
  .menu-common-columns .mega-sub-menu li.mega-menu-item > a::after {
    width: 60px !important;
    height: 60px !important;
  }
}
@media screen and (min-width: 1230px) {
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
    padding: 0 25px !important;
  }
}

@media screen and (min-width: 320px) {
  header {
    position: relative;
  }
  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-megamenu
    > ul.mega-sub-menu {
    position: fixed;
  }
  #mega-menu-wrap-primary {
    background: transparent !important;
  }
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
    padding: 0 14px !important;
  }
  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-item.mega-toggle-on
    > a.mega-menu-link {
    background: transparent !important;
    color: var(--dark-black) !important;
  }
  .header-navigation .main-menu ul > li > a {
    color: var(--dark-black) !important;
    text-transform: capitalize !important;
  }
  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-item
    > a.mega-menu-link {
    background: transparent !important;
    font-weight: 600 !important;
    padding: 0 !important;
    font-size: 14px !important;
  }

  .about-first-col .mega-sub-menu li.mega-menu-item:last-child {
    display: none !important;
  }

  #mega-menu-wrap-primary #mega-menu-primary p {
    line-height: 26px !important;
    font-size: 16px !important;
    font-family: var(--base-font) !important;
    font-weight: 400 !important;
    color: var(--light-black) !important;
  }

  .header-top {
    position: inherit;
  }

  #mega-menu-wrap-primary #mega-menu-primary,
  #mega-menu-wrap-primary {
    position: inherit !important;
  }

  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-megamenu
    > ul.mega-sub-menu {
    margin-top: 20px !important;
  }

  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-megamenu
    > ul.mega-sub-menu {
    background: #fff !important;
    box-shadow: none;
    padding: 30px 0 !important;
    border-top: 0 !important;
    margin-top: 0 !important;
  }
  #mega-menu-wrap-primary
    #mega-menu-primary
    li.mega-menu-megamenu
    > ul.mega-sub-menu
    > li.mega-menu-row {
    float: none !important;
    max-width: 1590px;
    padding: 0 0px;
    margin: 0 auto;
  }

  .mega-block-title {
    font-size: 34px !important;
    margin-bottom: 15px !important;
    text-transform: capitalize !important;
    color: var(--dark-black) !important;
  }

  .menu-common-columns .mega-sub-menu li.mega-menu-item {
    margin-bottom: 3px !important;
    padding: 0 !important;
    border-radius: 10px !important;
    width: auto !important;
    float: none !important;
    display: flex !important;
  }

  .menu-common-columns .mega-sub-menu li.mega-menu-item > a {
    position: relative !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center;
    padding: 5px 15px 5px 55px !important;
  }

  .menu-common-columns .mega-sub-menu li.mega-menu-item:hover > a {
    background: rgba(0, 164, 227, 0.08) !important;
    border-radius: 10px !important;
  }

  .menu-common-columns .mega-sub-menu li.mega-menu-item > a::before {
    content: "";
    width: 45px !important;
    height: 45px !important;
    position: absolute !important;
    left: 0px !important;
    top: 50% !important;
    border-radius: 10px !important;
    border: 1px solid #ccdde3 !important;
    background: #fff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    display: flex !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 50px !important;
    transform: translateY(-50%);
    z-index: 1 !important;
  }

  .menu-common-columns .mega-sub-menu li.mega-menu-item > a::after {
    content: "";
    width: 45px !important;
    height: 45px !important;
    position: absolute !important;
    left: 0px !important;
    top: 50% !important;
    border-radius: 10px !important;
    border: 1px solid #ccdde3 !important;
    background: #fff !important;
    display: flex !important;
    transform: translateY(-50%);
    z-index: -1 !important;
  }

  .menu-common-columns.service-second-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background: url(../images/data-steg.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.service-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background: url(../images/data-analytics.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.service-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(3)
    > a:before {
    background: url(../images/cloud-network.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.service-third-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background: url(../images/data-eng.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.service-third-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background: url(../images/ai.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.capabilities-second-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background: url(../images/m-marketing-analytics-icon.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.capabilities-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background: url(../images/m-pga.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.capabilities-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(3)
    > a:before {
    background: url(../images/m-oscs.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.capabilities-third-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background: url(../images/m-eyfs.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.capabilities-third-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background: url(../images/m-cfs.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.indus-second-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background: url(../images/m-re.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.indus-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background: url(../images/m-lsp.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }
  .menu-common-columns.indus-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(3)
    > a:before {
    background: url(../images/m-me.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.indus-third-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background: url(../images/m-hc.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.indus-third-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background: url(../images/m-tech.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.indus-four-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background: url(../images/m-real-e.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.indus-four-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background: url(../images/m-insu.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.about-second-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background: url(../images/m-aboutus.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.about-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background: url(../images/m-life.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.about-third-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background: url(../images/careers.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.about-four-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background: url(../images/m-blog.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.solution-second-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background: url(../images/vision-sop-icon.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.solution-third-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background: url(../images/football-analytics-icon.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.solution-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background: url(../images/m-warehouse-i.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.solution-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(3)
    > a:before {
    background: url(../images/field-sales-menu-icon.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.solution-third-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background: url(../images/spotlight-menu-i.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  .menu-common-columns.ind-second-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background: url(../images/credit-u-overviw-i.png), #fff !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 30px !important;
  }

  #mega-menu-wrap-primary
    #mega-menu-primary
    li.mega-menu-item.decision-area-multisub-menu {
    flex-direction: column !important;
  }
  #mega-menu-wrap-primary
    #mega-menu-primary
    li.mega-menu-item.decision-area-multisub-menu
    ul.mega-sub-menu {
    padding-left: 50px !important;
    position: relative !important;
    right: 0px !important;
    padding: 0px !important;
    margin-top: 0 !important;
  }
}

@media screen and (min-width: 992px) {
  .general-content-area {
    padding-left: 50px;
  }

  #mega-menu-wrap-primary
    #mega-menu-primary
    li.mega-menu-item-has-children
    > a.mega-menu-link
    > span.mega-indicator {
    display: none !important;
  }

  .menu-common-columns {
    padding-left: 40px !important;
  }

  #mega-menu-wrap-primary
    #mega-menu-primary
    li.mega-menu-megamenu
    > ul.mega-sub-menu
    > li.mega-menu-row {
    float: none !important;
    max-width: 1590px;
    padding: 0 30px;
    margin: 0 auto;
  }

  .menu-common-columns .mega-sub-menu li.mega-menu-item > a::before {
    content: "";
    width: 40px !important;
    height: 40px !important;
    left: 10px !important;
  }

  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-megamenu
    > ul.mega-sub-menu {
    background: #fff !important;
    box-shadow: 0 3px 8px -2px rgba(0, 157, 217, 0.1);
    padding: 30px 0 !important;
    border-top: 0 !important;
    margin-top: 0 !important;
    top: 100% !important;
  }

  .menu-common-columns .mega-sub-menu li.mega-menu-item {
    margin-bottom: 10px !important;
  }

  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-megamenu
    > ul.mega-sub-menu {
    background: #fff !important;
    box-shadow: 0 -3px 8px -2px rgba(0, 157, 217, 0.1);
    padding: 30px 0 !important;
    border-top: 1px solid #e8e9ec !important;
  }

  .menu-common-columns .mega-sub-menu li.mega-menu-item > a {
    position: relative !important;
    min-height: 60px !important;
    display: flex !important;
    align-items: center;
    padding: 10px 20px 10px 58px !important;
    font-size: 13px !important;
  }

  #mega-menu-wrap-primary
    #mega-menu-primary
    li.mega-menu-megamenu
    > ul.mega-sub-menu
    > li.mega-menu-row
    > ul.mega-sub-menu
    > li.service-third-col
    > ul.mega-sub-menu
    > li.mega-menu-item:first-child {
    min-width: 400px !important;
  }

  #mega-menu-wrap-primary
    #mega-menu-primary
    li.mega-menu-megamenu
    > ul.mega-sub-menu
    > li.mega-menu-row
    > ul.mega-sub-menu
    > li.service-third-col
    > ul.mega-sub-menu
    > li.mega-menu-item:first-child
    .mega-indicator {
    display: block !important;
    position: absolute;
    height: 10px;
    width: 10px;
    right: 4px;
  }
  #mega-menu-wrap-primary
    #mega-menu-primary
    li.mega-menu-megamenu
    > ul.mega-sub-menu
    > li.mega-menu-row
    > ul.mega-sub-menu
    > li.service-third-col
    > ul.mega-sub-menu
    > li.mega-menu-item:first-child
    .mega-indicator::after {
    content: "";
    position: absolute;
    right: 1px;
    top: 50%;
    background: url(https://teaminnovatics.com/wp-content/uploads/2024/04/right-a.webp);
    width: 8px;
    height: 14px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: -7px;
    background-size: 6px 11px;
  }

  .menu-common-columns
    .mega-sub-menu
    li.mega-menu-item
    > a.mega-menu-link
    ~ .mega-sub-menu {
    display: none !important;
    z-index: 10000 !important;
  }
  .menu-common-columns .mega-sub-menu li.mega-menu-item {
    position: relative !important;
  }
  .menu-common-columns
    .mega-sub-menu
    li.mega-menu-item:hover
    > a.mega-menu-link
    ~ .mega-sub-menu {
    display: inline-block !important;
    position: absolute !important;
    right: -15px !important;
    top: 0px !important;
    border: 1px solid #f7f7f7;
    padding: 10px !important;
    border-radius: 15px !important;
    border: 1.2px solid #ccdde3 !important;
    background-color: #fff !important;
  }

  .menu-common-columns.ind-second-col
    .mega-sub-menu
    li.mega-menu-item:hover
    > a.mega-menu-link
    ~ .mega-sub-menu {
    display: inline-block !important;
    position: absolute !important;
    right: -48px !important;
    top: 0px !important;
    border: 1px solid #f7f7f7;
    padding: 10px !important;
    border-radius: 15px !important;
    border: 1.2px solid #ccdde3 !important;
    background-color: #fff !important;
  }

  #mega-menu-wrap-primary
    #mega-menu-primary
    li.mega-menu-megamenu
    > ul.mega-sub-menu
    > li.mega-menu-row
    > ul.mega-sub-menu
    > li.service-third-col {
    position: relative !important;
    left: -80px !important;
  }
  .menu-common-columns
    .mega-sub-menu
    li.mega-menu-item
    > a.mega-menu-link
    ~ .mega-sub-menu
    > li:first-child::after {
    content: "" !important;
    position: absolute !important;
    right: -15px;
    top: 0px;
    border-top: 15px solid transparent;
    border-right: none;
    /* border-left: 15px solid #ebf8fd; */
    border-bottom: 15px solid transparent;
    border-left: 15px solid red !important;
    z-index: 10;
    width: 50px;
    height: 50px;
    background-color: red;
  }

  .menu-common-columns
    .mega-sub-menu
    li.mega-menu-item
    > a.mega-menu-link
    ~ .mega-sub-menu
    > li {
    margin-bottom: 0 !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    padding: 0px 0px !important;
    z-index: 1000;
    position: relative !important;
  }

  .menu-common-columns
    .mega-sub-menu
    li.mega-menu-item
    > a.mega-menu-link:hover
    ~ .mega-sub-menu
    ~ .dd-trigger {
    display: block !important;
    background-color: #fff !important;
    height: 16px;
    width: 16px;
    transform: rotate(45deg);
    right: 5px;
    position: absolute;
    top: 12px;
  }

  .menu-common-columns
    .mega-sub-menu
    li.mega-menu-item.decision-area-multisub-menu
    > a.mega-menu-link:hover
    ~ .mega-sub-menu
    ~ .dd-trigger {
    display: none !important;
  }

  .menu-common-columns
    .mega-sub-menu
    li.mega-menu-item
    > a.mega-menu-link
    ~ .mega-sub-menu
    > li
    > a:before,
  .menu-common-columns
    .mega-sub-menu
    li.mega-menu-item
    > a.mega-menu-link
    ~ .mega-sub-menu
    > li
    > a:after {
    display: none !important;
  }

  .menu-common-columns
    .mega-sub-menu
    li.mega-menu-item
    > a.mega-menu-link
    ~ .mega-sub-menu
    li.mega-menu-item
    a.mega-menu-link {
    min-height: auto !important;
    padding: 5px !important;
    font-size: 13px !important;
    background-color: #fff !important;
    font-weight: 700 !important;
  }

  .menu-common-columns
    .mega-sub-menu
    li.mega-menu-item
    > a.mega-menu-link
    ~ .mega-sub-menu
    li.mega-menu-item
    a.mega-menu-link:hover {
    color: var(--primary-color) !important;
    background-color: #ebf8fd !important;
  }

  .menu-common-columns .mega-sub-menu li.mega-menu-item > a::after {
    content: "";
    width: 40px !important;
    height: 40px !important;
    position: absolute !important;
    left: 10px !important;
    top: 50% !important;
    border-radius: 10px !important;
    border: 1px solid #ccdde3 !important;
    background: #fff !important;
    display: flex !important;
    transform: translateY(-50%);
    z-index: -1 !important;
  }

  .menu-common-columns.service-second-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.service-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.service-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(3)
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.service-third-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.service-third-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.capabilities-second-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.capabilities-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.capabilities-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(3)
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.capabilities-third-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.capabilities-third-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.indus-second-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.indus-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 24px !important;
  }
  .menu-common-columns.indus-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(3)
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.indus-third-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.indus-third-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.indus-four-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.indus-four-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.about-second-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.about-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.about-third-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.about-four-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.solution-second-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.solution-third-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.solution-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.solution-third-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 24px !important;
  }

  .menu-common-columns.solution-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(3)
    > a:before {
    background-size: 24px !important;
  }
  #mega-menu-wrap-primary
    #mega-menu-primary
    li.mega-menu-item.decision-area-multisub-menu:hover
    ul.mega-sub-menu {
    padding-left: 50px !important;
    position: absolute !important;
    right: -200px !important;
    padding: 10px !important;
  }
}

@media screen and (min-width: 1441px) {
  #mega-menu-wrap-primary
    #mega-menu-primary
    li.mega-menu-item.decision-area-multisub-menu:hover
    ul.mega-sub-menu {
    padding-left: 50px !important;
    position: absolute !important;
    right: -240px !important;
    padding: 10px !important;
  }

  .menu-common-columns .mega-sub-menu li.mega-menu-item > a::after,
  .menu-common-columns .mega-sub-menu li.mega-menu-item > a::before {
    width: 62px !important;
    height: 62px !important;
    left: 14px;
  }

  #mega-menu-wrap-primary
    #mega-menu-primary
    li.mega-menu-megamenu
    > ul.mega-sub-menu
    > li.mega-menu-row
    > ul.mega-sub-menu
    > li.service-third-col {
    position: relative !important;
    left: -45px !important;
  }

  .menu-common-columns .mega-sub-menu li.mega-menu-item > a {
    min-height: 90px !important;
    padding: 15px 22px 15px 84px !important;
    font-size: 16px !important;
  }
  #mega-menu-wrap-primary
    #mega-menu-primary
    li.mega-menu-megamenu
    > ul.mega-sub-menu
    > li.mega-menu-row
    > ul.mega-sub-menu
    > li.service-third-col
    > ul.mega-sub-menu
    > li.mega-menu-item:first-child
    .mega-indicator {
    right: 3px;
  }
  #mega-menu-wrap-primary
    #mega-menu-primary
    li.mega-menu-megamenu
    > ul.mega-sub-menu
    > li.mega-menu-row
    > ul.mega-sub-menu
    > li.service-third-col
    > ul.mega-sub-menu
    > li.mega-menu-item:first-child
    .mega-indicator::after {
    margin-top: -8px;
    background-size: 8px 14px;
  }

  .menu-common-columns
    .mega-sub-menu
    li.mega-menu-item
    > a.mega-menu-link
    ~ .mega-sub-menu
    li.mega-menu-item
    a.mega-menu-link {
    font-size: 15px !important;
  }

  .menu-common-columns.service-second-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.service-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.service-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(3)
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.service-third-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.service-third-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.capabilities-second-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.capabilities-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.capabilities-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(3)
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.capabilities-third-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.capabilities-third-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.indus-second-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.indus-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 45px !important;
  }
  .menu-common-columns.indus-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(3)
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.indus-third-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.indus-third-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.indus-four-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.indus-four-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.about-second-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.about-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.about-third-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.about-four-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns
    .mega-sub-menu
    li.mega-menu-item:hover
    > a.mega-menu-link
    ~ .mega-sub-menu {
    right: -22px !important;
    top: 0 !important;
  }
  .menu-common-columns.ind-second-col
    .mega-sub-menu
    li.mega-menu-item:hover
    > a.mega-menu-link
    ~ .mega-sub-menu {
    right: 12px !important;
    top: 0 !important;
  }

  .menu-common-columns.solution-second-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.solution-third-col
    .mega-sub-menu
    li.mega-menu-item:first-child
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.solution-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.solution-third-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(2)
    > a:before {
    background-size: 45px !important;
  }

  .menu-common-columns.solution-second-col
    .mega-sub-menu
    li.mega-menu-item:nth-child(3)
    > a:before {
    background-size: 45px !important;
  }

  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-item.market
    > a.mega-menu-link::after {
    content: "";
    position: absolute;
    background: url(../images/trending-bg.png);
    background-size: 95px 27px;
    width: 95px !important;
    height: 27px !important;
    background-repeat: no-repeat;
    left: 43px;
    top: -19px;
    display: block !important;
  }
}

@media screen and (min-width: 992px) {
  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-item.market
    > a.mega-menu-link {
    position: relative;
  }
  #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.market {
    position: relative;
  }

  #mega-menu-wrap-primary
    #mega-menu-primary
    li.mega-menu-item.market
    > a.mega-menu-link:before {
    content: "";
    position: absolute !important;
    background: url(../images/trending-arrow.png) !important;
    background-size: 70% !important;
    width: 24px !important;
    height: 21px !important;
    background-repeat: no-repeat !important;
    right: -27px !important;
    bottom: 10px !important;
    display: block !important;
    top: auto !important;
    left: auto !important;
  }

  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-item.market
    > a.mega-menu-link::after {
    left: 46px;
    top: -9px;
    background-size: 70% !important;
    content: "";
    position: absolute;
    background: url(../images/trending-bg.png);
    display: block !important;
    width: 110px !important;
    height: 30px !important;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 991px) {
  #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary,
  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-item.mega-toggle-on
    > a.mega-menu-link {
    background: #fff !important;
  }
  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-item
    > a.mega-menu-link {
    color: var(--dark-black) !important;
    border-bottom: 1px solid #999 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    background: #fff !important;
  }
  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-item
    > a.mega-menu-link {
    border: 0 !important;
  }
  #mega-menu-wrap-primary h4.mega-block-title {
    display: none !important;
  }
  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-megamenu
    > ul.mega-sub-menu {
    padding: 0 !important;
  }
  #mega-menu-wrap-primary
    #mega-menu-primary
    li.mega-menu-megamenu
    > ul.mega-sub-menu
    > li.mega-menu-row
    .mega-menu-column
    > ul.mega-sub-menu
    > li.mega-menu-item {
    padding: 3px 0px !important;
    border-bottom: 1px solid transparent !important;
    flex-direction: column !important;
  }

  .menu-common-columns
    .mega-sub-menu
    li.mega-menu-item
    > a.mega-menu-link
    ~ .mega-sub-menu
    li.mega-menu-item
    a.mega-menu-link {
    min-height: auto !important;
    padding: 5px !important;
    font-size: 14px !important;
    background-color: transparent !important;
    font-weight: 700 !important;
  }

  .menu-common-columns
    .mega-sub-menu
    li.mega-menu-item
    > a.mega-menu-link
    ~ .mega-sub-menu
    li.mega-menu-item
    a.mega-menu-link::before,
  .menu-common-columns
    .mega-sub-menu
    li.mega-menu-item
    > a.mega-menu-link
    ~ .mega-sub-menu
    li.mega-menu-item
    a.mega-menu-link::after {
    display: none !important;
  }

  .menu-common-columns
    .mega-sub-menu
    li.mega-menu-item
    > a.mega-menu-link
    ~ .mega-sub-menu {
    padding-left: 20px !important;
    margin-left: 20px !important;
    background: #ebf8fd !important;
    padding: 10px !important;
    margin-top: 10px !important;
    border-radius: 10px !important;
  }

  #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link {
    font-size: 14px !important;
    text-transform: capitalize !important;
    font-weight: 500 !important;
  }
  .ptb-120 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pb-120 {
    padding-bottom: 70px;
  }
  .pt-120 {
    padding-top: 70px;
  }
  .ptb-90 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pb-90 {
    padding-bottom: 50px;
  }
  .pt-90 {
    padding-top: 50px;
  }
  .common-btn {
    height: 42px;
    line-height: 40px;
    font-size: 14px;
  }
  .main-title {
    font-size: 30px;
    line-height: 42px;
  }
  .sales-features .step-content h4 {
    font-size: 28px;
    line-height: 38px;
    margin-top: 20px;
  }
  .home_slider,
  .home_slider .slider_item {
    height: 530px;
  }
  .home_slider .slider_item {
    padding-top: 55px;
  }
  .header-top {
    position: relative;
  }

  .nav-inner-menu {
    position: relative;
  }

  .hm-why-choose-us {
    padding-top: 0;
  }

  .header-navigation .navbar-toggler {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 15px;
  }

  .banner-inner .main-title {
    font-size: 38px;
    line-height: 50px;
  }
  .banner-inner .main-title span:after {
    background-size: 52%;
  }
  .main-title span:after {
    background-size: 52%;
  }
  .hm-about .hm-about-content,
  .hm-why-choose-us .hm-about-content {
    padding-left: 0;
    margin-bottom: 50px;
  }

  .hm-about .hm-about-content .common-btn,
  .hm-why-choose-us .common-btn {
    margin-top: 20px;
  }
  .hm-highimp-services .service-box {
    min-height: 0;
  }
  .title-wrapper {
    margin-bottom: 30px;
  }
  .hm-da-solutions .accordion {
    padding-left: 0;
    padding-top: 30px;
  }
  .hm-solve-problems .tab-right-content {
    padding-left: 0;
    padding-bottom: 30px;
  }

  .hm-solve-problems .tab-right-content h3 {
    margin-bottom: 10px;
  }
  .hm-solve-problems .tab-right-content ul li {
    margin-bottom: 7px;
  }

  .hm-custom-solutions .custom-right-content {
    padding-left: 0;
    padding-top: 30px;
  }
  .hm-custom-solutions .custom-right-content h3 {
    font-size: 30px;
    line-height: 45px;
  }
  .hm-solve-problems .nav-link {
    font-size: 13px;
    line-height: 20px;
  }
  .footer-top .social-media {
    margin-bottom: 30px;
  }
  .footer-contact {
    margin-top: 20px;
    display: flex;
    column-gap: 20px;
  }
  .footer-contact.rating {
    margin-bottom: 20px;
  }
  .footer-left-main .footer-logo {
    margin: bottom 10px;
  }
  .footer-logos-rating {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer-contact.rating {
    flex-direction: column;
  }
  .hm-cta-section h3,
  .hm-case-study .main-title {
    font-size: 32px;
    line-height: 44px;
  }
  .hm-cta-section h3 {
    text-align: center;
    margin-bottom: 15px;
  }
  .hm-cta-section .newsletter {
    padding-left: 0;
  }

  .articles-box {
    max-width: 500px;
    margin: 20px auto 0;
  }
  .hm-articles .common-btn {
    margin-top: 40px;
  }

  .nav-right-item {
    margin-left: 0;
    display: flex;
  }
  .hm-solve-problems .tab-right-content h3 {
    font-size: 24px;
    line-height: 34px;
  }
  .hm-talk-expert h4 {
    font-size: 26px;
    line-height: 38px;
  }
  .hm-highimp-services .main-title span:after {
    background-size: 42%;
  }
  .hm-custom-solutions .custom-solutions-points h3 {
    font-size: 22px;
    line-height: 38px;
  }

  .hm-solve-problems .main-title span:after {
    background-size: 75%;
  }
  .hm-custom-solutions .main-title span:after {
    background-size: 42%;
  }
  .hm-articles .main-title span:after {
    background-size: 75%;
  }
  .hm-case-study .main-title span:after {
    background-size: 68%;
  }

  .hm-clients .main-title span:after {
    background-size: 79%;
    background-position: center !important;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .da-solutions-thumb {
    position: relative;
  }

  .data-stretegy-three-col .items h3 span {
    font-size: 12px;
    line-height: 19px;
    top: -13px;
  }

  .transform-communucation.Ai-best-friend .thumb {
    max-width: 280px;
  }

  .service-inner-banner .banner-thumb img {
    margin: 15px auto 0;
  }

  .hm-custom-solutions .number-box .number {
    width: 35px;
    height: 35px;
    font-size: 19px;
  }

  .hm-custom-solutions .number-box:not(:last-child) .number::after {
    border: 1px dashed #00a4e3;
    width: 1px;
  }

  .hm-custom-solutions .custom-solutions-points {
    padding: 15px;
  }
  .hm-custom-solutions .custom-solutions-points h3 {
    font-size: 18px;
    line-height: 28px;
  }
  .hm-custom-solutions .number-box:not(:last-child) {
    margin-bottom: 20px;
  }

  .about-ai-roi .col-lg-6:last-child .main-title {
    text-align: right;
  }

  .about-ai-roi .items ul li h5 {
    font-size: 22px;
    line-height: 32px;
  }
  .about-ai-roi .items ul li {
    padding-left: 35px;
  }
  .about-ai-roi .items ul li::before {
    top: 6px;
  }

  .contact-middle-right {
    padding-left: 0;
    padding-top: 40px;
  }
  .contact-us-section .contact-form {
    padding: 30px;
  }

  .contact-us-right .main-title,
  .contact-us-section .contact-form h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .contact-us-right {
    margin-top: 40px;
    padding: 30px;
    height: auto;
  }
  .contact-us-right .social-media {
    margin-top: 15px;
  }
  .contact-us-right ul li a {
    height: 35px;
    width: 35px;
  }
  .contact-us-right ul li a img {
    height: 18px;
    width: 18px;
  }
  .contact-us-right ul li {
    margin-right: 10px;
  }
  .contact-global-inner {
    padding: 20px;
    margin-top: 15px;
  }
  .contact-global-inner a {
    height: auto;
  }
  .contact-global h3 {
    font-size: 22px;
    padding: 10px 0 10px;
  }

  .contact-form .form-control,
  .contact-form .wpcf7-form-control,
  .contact-form select {
    height: 36px;
    font-size: 14px;
  }

  .contact-middle-right ul li {
    padding-top: 15px;
  }

  .contact-middle-right ul li .icon {
    height: 45px;
    width: 45px;
  }

  .contact-middle-right ul li .icon img {
    width: 22px;
    height: auto;
  }

  .inner-banner {
    min-height: 350px;
  }

  .designation-items {
    flex-direction: column;
  }

  .designation-items .common-btn {
    max-width: max-content;
    margin-top: 20px;
  }

  .analytics-answers-thumb {
    position: relative;
  }

  .marketing-analytics {
    min-height: 500px;
  }

  .other-stockholder .content-box .col-lg-6:last-child .inner-box {
    margin-top: 15px;
  }
  .get-benefits .content-box {
    padding: 20px;
  }
  .get-benefits h4 {
    font-size: 22px;
  }
  .get-benefits .inner-box h5 {
    font-size: 18px;
  }

  .marketing-analytics h3 {
    font-size: 32px;
    line-height: 44px;
  }

  .first-analytics-inner .title-content {
    flex-direction: column;
  }
  .first-analytics-inner .title-content h2.main-title br {
    display: none;
  }

  .our-program-tab nav .nav {
    margin-bottom: 20px;
    padding: 0;
  }
  .first-analytics-inner {
    padding: 30px;
  }

  .tradintional-modern .firt-row .box h3 {
    font-size: 20px;
  }

  .marketing-analytics .growth h3,
  .hm-talk-expert .growth h3 {
    font-size: 60px;
  }
  .marketing-analytics .growth .icon img,
  .hm-talk-expert .growth .icon img {
    max-width: 60px;
  }
  .marketing-analytics h4 {
    font-size: 28px;
    line-height: 40px;
  }

  .prioritizing-data-tabs nav .nav-link {
    font-size: 16px;
  }
  .rapid-dev-section .col-lg-3:nth-child(2)::after {
    display: none;
  }

  .inner-services-section .common-row {
    gap: 20px;
  }

  .your-industry-section .our-program-tab .nav-tabs h5 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .customer-exp-section .items .icon-thumb {
    width: 90px;
    height: 90px;
  }

  .customer-exp-section .items .icon-thumb img {
    width: 70px;
    height: auto;
  }

  .rapid-dev-section .numver-box {
    height: 80px;
    width: 80px;
  }

  .transform-communucation h3,
  .revolution-business-inner h2 {
    font-size: 28px;
    line-height: 40px;
  }

  .revolution-business-inner .thumb {
    max-width: 150px;
  }

  .customer-exp-section .item-content {
    padding-left: 15px;
  }
  .power-ai-section .tab-right-content h2 {
    margin-bottom: 25px;
  }

  .prioritizing-data-tabs .thumb-left {
    margin-top: 20px;
  }
  .power-ai-section .tab-right-content ul {
    max-width: 100%;
  }

  .customer-observation .col-lg-3:last-child::after {
    top: auto;
    bottom: 0;
  }

  .customer-observation .col-lg-3:not(:last-child) .item {
    border: 0;
  }
  .great-bus-thumb {
    padding: 30px 0;
  }
  .deperatment-colmns .item img {
    max-width: 80px;
  }
  .top-bar .top-bar-inner .new-label {
    font-size: 10px;
  }
  .top-bar .top-bar-inner span {
    font-size: 12px;
    line-height: 16px;
  }
  .top-bar .top-bar-inner a {
    display: inline-flex;
    white-space: nowrap;
    font-size: 12px;
  }
  .top-bar {
    padding: 5px 0;
  }

  .home_slider .slider_item:nth-child(2) .overlay_bg {
    background: linear-gradient(
      90deg,
      #fff 0%,
      #fff 47.17%,
      rgba(255, 255, 255, 0) 100%
    ) !important;
  }

  .home_slider .slider_item:nth-child(2) {
    background-position: left !important;
  }

  .header-navigation .navbar-close {
    background: url(../images/close-icon.png);
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    background-size: 16px;
    right: 15px;
    top: 15px;
    opacity: 0.7;
    background-position: center;
  }

  #mega-menu-wrap-primary #mega-menu-primary p {
    display: none;
  }

  .top-bar:before,
  .top-bar:after {
    display: none;
  }

  .great-business-section h3 {
    font-size: 26px;
    line-height: 38px;
  }

  .service-inner-banner .banner-thumb {
    margin: 15px auto 0;
  }

  .nlp-last-section .col-lg-4:nth-child(2) {
    margin-top: 20px;
  }
  .nlp-last-section .col-lg-4:last-child {
    margin-top: 20px;
  }

  .common-service-inner-section .great-bus-thumb {
    padding-right: 0;
    max-width: 450px;
    margin: 0 auto;
  }
  .talk-to-expert .thumb {
    max-width: 450px;
    margin: 0 auto;
  }
  .talk-to-expert-inner h3 {
    font-size: 30px;
    line-height: 42px;
    text-align: center;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .talk-to-expert .common-btn {
    margin: 0 auto;
  }
  .talk-to-expert-inner {
    text-align: center;
  }
  .transform-communucation .thumb {
    max-width: 350px;
    margin-top: 30px;
  }

  .nlp-last-section .items {
    text-align: center;
  }
  .nlp-last-section .items .thumb {
    margin: 0 auto;
  }
  .nlp-last-section .items .thumb {
    width: 140px;
    height: 140px;
  }
  .service-inner-banner .common-btn {
    margin-top: 10px;
  }

  .hm-da-solutions.sales-conv-ai .accordion-button {
    font-size: 24px;
    line-height: 36px;
  }
  .hm-da-solutions.sales-conv-ai .accordion-button {
    margin-bottom: 0;
  }
  .sales-features .steps-row:nth-child(2)::after,
  .sales-features .steps-row:nth-child(1)::after {
    display: none;
  }
  .integrating-channel .nav-tabs .nav-link {
    padding: 15px 20px;
  }
  .website-visitors {
    margin-bottom: 90px;
  }
  .prioritizing-data-tabs nav {
    margin: 30px 0;
  }

  .marketing-perform-tab {
    padding: 30px 0 0;
    margin-top: 0;
  }
  .marketing-perform-tab .nav-tabs {
    margin-top: 20px;
  }
  .customer-satisfaction .items h4 {
    font-size: 24px;
    line-height: 36px;
  }

  .marketing-perform-tab .nav-tabs .nav-link .inner-content-box {
    padding: 15px;
  }
  .marketing-perform-tab .nav-tabs .nav-link .inner-content-box .thumb {
    max-width: 40px;
  }
  .marketing-perform-tab .nav-tabs .nav-link h5 {
    margin: 15px 0 5px;
    font-size: 18px;
  }
  .transform-communucation .thumb {
    max-width: 180px;
  }

  .middle-two-col .items {
    padding: 30px;
  }
  .middle-two-col .items .thumb {
    width: 85px;
    height: 85px;
  }
  .middle-two-col .items .thumb img {
    width: 60px;
  }

  .middle-two-col .items h4,
  .language-section .items h4 {
    font-size: 22px;
  }

  .data-driven-section .expra-para ul li .percentage {
    font-size: 28px;
  }
  .data-driven-section .expra-para ul li span {
    font-size: 15px;
  }

  .case-studies-list .right-content h4 {
    font-size: 26px;
    line-height: 36px;
  }
  .case-studies-list .right-content .para {
    margin-bottom: 25px;
  }
  .case-studies-list .right-content {
    padding-left: 0;
    padding-top: 30px;
  }
  .case-studies-list .custom-container .row {
    padding: 15px 5px;
  }
  .cs-header-bottom ul {
    display: grid;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
  .cs-header-bottom ul li {
    margin-top: 10px;
  }
  .cs-header-bottom {
    padding: 0;
  }
  .cs-top-content-area .content-box:not(:last-child) {
    margin-bottom: 20px;
  }
  .cs-top-content-area .content-box h3,
  .case-studies-wrapper h3 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 10px;
  }
  .cs-header-top h1 {
    font-size: 28px;
    line-height: 40px;
  }
  .cs-data-three-col .data-box h4 {
    font-size: 20px;
    min-height: 65px;
  }

  .cs-header {
    padding: 20px;
  }
  .data-gatherd-row .col-12:not(:last-child) {
    margin-bottom: 15px;
  }
  .data-sourses .inner-title {
    margin: 10px 0 15px;
    font-size: 24px;
    line-height: 34px;
  }
  .data-sourses .content-box {
    margin-top: 10px;
  }
  .grid-common-list .list-box .cs-data-three-col .data-box ul {
    padding: 15px;
  }
  .ultimate-outcome .twp-col .items {
    padding: 20px 15px 5px 40px;
  }
  .lists-w-numbers {
    margin-top: 30px;
  }
  .lists-w-numbers ul li {
    font-size: 16px;
  }
  .lists-w-numbers ul li:before {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .data-stretegy-three-col .items {
    padding: 20px;
  }
  .data-stretegy-three-col .items h3 {
    font-size: 32px;
    line-height: 42px;
  }

  .our-services-sec h3 {
    margin: 20px 0 10px;
  }

  .our-services-sec .thumb {
    width: 85px;
    height: 85px;
    margin: 0 auto;
  }

  .our-services-sec .thumb img {
    width: 50px;
  }

  .our-services-sec .our-services-left {
    text-align: center;
  }

  .data-stretegy-two-col .items {
    padding: 30px 80px 30px 30px;
  }

  .tranform-data-services .prioritizing-data-tabs nav .nav {
    column-gap: 5px;
  }

  .product-analytics-section .pro-thumb-right {
    position: relative;
    right: 0;
    top: 0;
    max-width: 100%;
  }

  .technology-list .items .tech-name {
    white-space: pre-wrap;
    font-size: 13px;
    line-height: 16px;
    padding: 0 10px;
  }

  .sitemap-main ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .sitemap-main ul li a {
    font-size: 16px;
  }

  .title-wrapper-two h2 {
    font-size: 50px;
    line-height: 80px;
  }

  .title-wrapper-two h2 span {
    font-size: 60px;
    line-height: 0;
  }
  .title-wrapper-two p {
    font-size: 16px;
    line-height: 28px;
  }

  .vision-int-bg {
    min-height: 480px;
  }
  .stories-thumb {
    margin-top: 40px;
  }

  .stories-inner .slider-nav {
    right: 15px;
    top: 15px;
  }

  .stories-inner .slider-nav {
    gap: 10px;
  }

  .stories-slider .stories-content {
    padding-left: 0;
    padding-top: 20px;
  }

  .relevant-solutions .thumb-item-content h3 {
    font-size: 22px;
    line-height: 34px;
  }

  .vision-int-container .row:nth-child(odd) .vision-int-right,
  .vision-int-container .row:nth-child(even) .vision-int-thumb {
    padding-left: 35px;
    padding-right: 0;
  }

  .vision-int-thumb,
  .vision-int-container .row:nth-child(even) .vision-int-right {
    padding-right: 35px;
  }

  .vision-int-container .number {
    height: 40px;
    width: 40px;
    font-size: 24px;
  }

  .vision-int-right h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .vision-int-thumb .corner-icon {
    height: 90px;
    width: 90px;
    right: 15px;
  }

  .vision-int-thumb .corner-icon.left {
    left: 12px;
  }

  .vision-int-thumb .corner-icon-inner {
    height: 65px;
    width: 65px;
  }
}

@media screen and (max-width: 767px) {
  .ptb-120 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pb-120 {
    padding-bottom: 50px;
  }
  .pt-120 {
    padding-top: 50px;
  }
  .ptb-90 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pb-90 {
    padding-bottom: 50px;
  }
  .pt-90 {
    padding-top: 50px;
  }

  body {
    font-size: 15px;
  }
  .banner-inner .para p {
    font-size: 14px;
    line-height: 24px;
  }
  .banner-inner .para {
    margin-bottom: 20px;
  }
  .banner-inner .main-title span:after {
    background-size: 48%;
  }
  .banner-inner .main-title {
    font-size: 34px;
    line-height: 48px;
  }
  .banner-inner .main-title br {
    display: none;
  }
  .main-title {
    font-size: 28px;
    line-height: 40px;
  }
  .we-hired-link .common-btn {
    display: none;
  }
  .sales-features .step-content h4 {
    font-size: 26px;
    line-height: 36px;
    margin-top: 20px;
  }
  .hm-highimp-services .main-title span:after {
    background-size: 38%;
  }
  .hm-da-solutions .main-title span:after {
    background-size: 42%;
  }
  .hm-solve-problems .main-title span:after {
    background-size: 68%;
  }
  .hm-about .main-title span:after {
    background-size: 46%;
  }
  .hm-custom-solutions .main-title span:after {
    background-size: 36%;
  }
  .hm-articles .main-title span:after {
    background-size: 67%;
  }
  .hm-solve-problems .nav-link {
    width: 48%;
  }
  .hm-solve-problems .nav-tabs {
    flex-wrap: wrap;
  }
  .hm-cta-section .newsletter button {
    font-size: 16px;
  }
  .hm-cta-section h3,
  .hm-case-study .main-title {
    font-size: 28px;
    line-height: 40px;
  }
  .case-stydy-sec {
    flex-direction: column;
  }
  .nav-inner-menu {
    position: absolute;
    right: 120px;
  }

  .case-stydy-sec .common-btn {
    margin-top: 15px;
  }
  .hm-case-study .main-title span:after {
    background-size: 59%;
  }
  .footer-contact {
    flex-direction: column;
  }

  .hm-solve-problems .tab-right-content h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .inner-banner {
    min-height: 300px;
  }

  .customer-ana-bg h3 {
    max-width: 100%;
  }

  .get-benefits h4 {
    font-size: 20px;
  }
  .get-benefits .inner-box h5 {
    font-size: 16px;
  }

  .marketing-analytics h3 {
    font-size: 30px;
    line-height: 40px;
  }

  .marketing-analytics {
    min-height: 350px;
  }

  .first-analytics-inner .title-content h2.main-title br {
    display: block;
  }

  .marketing-analytics .growth h3,
  .hm-talk-expert .growth h3 {
    font-size: 50px;
  }
  .marketing-analytics .growth .icon img,
  .hm-talk-expert .growth .icon img {
    max-width: 50px;
  }
  .marketing-analytics h4 {
    font-size: 24px;
    line-height: 36px;
  }

  .transform-communucation h3,
  .revolution-business-inner h2 {
    font-size: 26px;
    line-height: 38px;
  }

  .rapid-dev-section .col-lg-3:first-child::after,
  .rapid-dev-section .col-lg-3:nth-child(3):after {
    display: none;
  }

  .great-business-section .para {
    padding: 20px 0;
  }

  .great-business-section h3 {
    font-size: 32px;
  }
  .revolution-business-inner {
    padding: 30px;
  }

  .transform-communucation .thumb {
    max-width: 280px;
  }

  .prioritizing-data-tabs nav .nav {
    flex-direction: column;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
  }
  .prioritizing-data-tabs nav .nav-link {
    min-height: 58px;
  }

  .prioritizing-data-tabs .tab-right-content .questions {
    font-size: 18px;
    line-height: 28px;
  }

  .prioritizing-data-tabs nav {
    margin: 0px 0 20px;
  }

  .buyer-journey .prioritizing-data-tabs nav {
    margin: 20px 0px 30px;
  }

  .power-ai-section .prioritizing-data-tabs nav .nav-link {
    margin: 5px 0;
  }
  .customer-observation {
    top: 60px;
  }
  .great-business-section h3 {
    font-size: 24px;
    line-height: 36px;
  }

  .hm-da-solutions.sales-conv-ai .accordion-button {
    font-size: 22px;
    line-height: 32px;
  }

  .transform-communucation .thumb {
    max-width: 250px;
  }

  .sales-features .step-box {
    width: 180px;
    height: 180px;
  }
  .sales-features .step-box h5 {
    font-size: 60px;
  }
  .sales-features .step-box span {
    font-size: 24px;
  }
  .integrating-channel .nav-tabs {
    padding: 0 15px;
  }
  .integrating-channel .nav-tabs .nav-link {
    padding: 15px;
    font-size: 16px;
  }

  .customer-satisfaction .items h4 {
    font-size: 22px;
    line-height: 34px;
    margin: 15px 0 10px;
  }
  .customer-satisfaction .items {
    padding: 20px;
  }
  .website-visitors-inner {
    padding: 30px 15px 20px;
  }

  .middle-two-col .items h4,
  .language-section .items h4 {
    font-size: 20px;
  }

  .usp-section .items ul li {
    max-width: 100%;
  }

  .usp-section .title-wrapper {
    position: relative;
  }

  .usp-section .items ul li:not(:last-child) {
    right: auto;
  }

  .tranform-data-services .prioritizing-data-tabs nav .nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .usp-section .items ul li {
    padding: 20px 20px 20px 40px;
  }

  .usp-section .items.common-point-list ul li::before {
    left: 21px;
  }
  .usp-section .items ul li {
    font-size: 18px;
    line-height: 28px;
  }

  .deperatment-colmns .item {
    padding: 20px;
  }
  .deperatment-colmns .item h3 {
    font-size: 22px;
    line-height: 34px;
  }

  .home_slider .slick-dots {
    top: -38px;
  }

  .home_slider .slick-dots li.slick-active button {
    height: 30px;
    width: 30px;
    font-size: 15px;
  }
  .home_slider .slick-dots li button {
    height: 7px;
    width: 7px;
  }
  .designation-items ul {
    flex-wrap: wrap;
  }

  .designation-details h4 {
    margin-bottom: 15px;
  }
  .designation-items .common-btn {
    margin-top: 15px;
  }
  .designation-items ul li {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .designation-items ul li .icon-thumb {
    width: 40px;
    height: 40px;
  }
  .designation-items ul li .icon-thumb img {
    width: 22px;
    height: 22px;
  }

  .our-prog-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .our-prog-right-content {
    padding: 30px;
  }

  .our-program-tab .nav-tabs .nav-link br {
    display: none;
  }
  .our-program-tab .nav-tabs .nav-link:last-child {
    margin-bottom: 10px;
  }
  .our-program-tab .nav-tabs .nav-link {
    margin-top: 6px;
    margin-bottom: 10px;
  }
  .our-program-tab nav .nav {
    padding: 10px 0;
  }
  .sitemap-main .row h4:before {
    top: -38px;
    font-size: 36px;
    left: 0;
  }
  .vision-int-container .row > .col-md-6:nth-child(odd)::after,
  .vision-int-container .circle-center {
    display: none;
  }

  .vision-int-container .row:nth-child(odd) .vision-int-right,
  .vision-int-container .row:nth-child(even) .vision-int-thumb {
    padding-left: 0;
  }

  .vision-int-container .vision-int-right {
    margin-top: 15px;
  }
  .vision-int-thumb,
  .vision-int-container .row:nth-child(even) .vision-int-right {
    padding-right: 0;
  }

  .relevant-solutions .right-full .thumb-items {
    margin-top: 15px;
  }

  .relevant-solutions .right-full .thumb-items,
  .relevant-solutions .right-full {
    max-height: 165px;
    height: 165px;
  }

  .relevant-solutions .right-full.left-field-box {
    margin-bottom: 30px;
  }

  .relevant-solutions .col-md-7 .col-12:first-child {
    margin-bottom: 15px;
  }

  .vision-int-thumb,
  .vision-int-container .vision-int-right {
    max-width: 400px !important;
    margin-left: auto;
    margin-right: auto;
  }

  .relevant-solutions .row {
    height: auto !important;
  }
  .vision-int-thumb .corner-icon {
    right: 0;
  }
  .vision-int-thumb .corner-icon.left {
    left: 0;
  }
  .hm-highimp-services .service-box,
  .hm-highimp-services .service-box .flipper {
    min-height: 280px;
  }
}

@media screen and (max-width: 574px) {
  .ptb-120 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pb-120 {
    padding-bottom: 40px;
  }
  .pt-120 {
    padding-top: 40px;
  }
  .ptb-90 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pb-90 {
    padding-bottom: 40px;
  }
  .pt-90 {
    padding-top: 40px;
  }

  body {
    font-size: 14px;
  }

  .home_slider.new_home_slider .slider_item,
  .home .home_slider.new_home_slider {
    height: auto !important;
  }
  .title-w-thumb img {
    max-width: 180px;
    top: -7px;
  }
  .title-w-thumb div {
    padding-top: 10px;
  }
  .title-w-thumb {
    padding-right: 150px;
    padding-bottom: 0;
  }
  .home_slider .banner-inner.new-banner-inner p {
    margin-bottom: 15px;
  }
  .home .home_slider.new_home_slider .slick-list {
    margin: 10px;
  }
  .header-top {
    margin: 20px;
  }
  .a-first-thumb {
    margin-top: 20px;
  }
  .banner-inner.new-banner-inner .header-btns-group {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .home_slider,
  .home_slider .slider_item {
    height: auto;
  }
  .home_slider .banner-inner.new-banner-inner {
    justify-content: flex-start !important;
    height: auto !important;
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .banner-inner.new-banner-inner .main-title {
    margin: 0 0 15px;
  }

  .banner-inner .main-title,
  .main-title {
    font-size: 28px;
    line-height: 38px;
  }

  .hm-talk-expert h4 {
    font-size: 24px;
    line-height: 36px;
  }
  .hm-talk-expert .talk-expert-inner .common-btn {
    margin-top: 30px;
  }

  .hm-solve-problems .tab-right-content h3 {
    font-size: 18px;
    line-height: 26px;
  }

  .about-ai-roi .main-title {
    font-size: 22px;
    line-height: 32px;
  }
  .about-ai-roi .item-thumb-box .inner-box {
    width: 90px;
    height: 90px;
  }
  .about-ai-roi .col-lg-6:last-child .item-thumb-box {
    left: -4.7px;
  }
  .about-ai-roi .item-thumb-box {
    top: -45px;
  }
  .data-stretegy-two-col .items .number {
    right: 2px;
    font-size: 96px;
    line-height: 150px;
  }

  .about-ai-roi .items {
    padding: 20px;
  }

  .about-business .about-business-thumb {
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
  }

  .about-business .title-wrapper .common-btn {
    position: relative;
    top: 0;
    bottom: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    left: auto;
    text-align: center;
    margin: 0 auto;
    transform: none;
  }

  .about-sets-us .items h4 {
    font-size: 22px;
    line-height: 32px;
  }

  .header-navigation .navbar-toggler span {
    height: 2px;
    margin-top: 4px;
    width: 20px;
  }

  .about-team-slider .thumb {
    padding: 0 10px;
  }

  .our-prog-right-content .data-icon-list {
    flex-direction: column;
  }
  .our-prog-right-content .data-icon-list .icon {
    margin-bottom: 15px;
  }
  .logo img,
  .logo {
    width: 120px;
  }
  .header-top {
    padding: 8px 15px;
  }
  .data-icon-list .icon img {
    width: 30px;
    height: 30px;
  }
  .data-icon-list .icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }

  .contact-us-right .main-title,
  .contact-us-section .contact-form h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .accordion-button {
    padding: 15px;
    font-size: 16px;
    line-height: 28px;
  }

  .marketing-analytics h3 {
    font-size: 26px;
    line-height: 36px;
  }

  .great-business-section h3 {
    font-size: 26px;
  }

  .footer-contact .get-in-touch ul li a br {
    display: none;
  }

  .talk-to-expert .thumb {
    max-width: 300px;
  }

  .talk-to-expert-inner h3 {
    font-size: 26px;
  }

  .transform-communucation .thumb {
    max-width: 220px;
  }

  .hm-da-solutions.sales-conv-ai .accordion-button {
    font-size: 20px;
    line-height: 30px;
  }

  .cs-top-content-area .content-box h3,
  .case-studies-wrapper h3 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 10px;
  }

  .hm-fav-tools .main-title {
    font-size: 16px;
    line-height: 22px;
  }

  footer::before,
  footer::after {
    display: none;
  }

  .hr-inquiry-info h3 {
    font-size: 26px;
    line-height: 34px;
  }
  .hr-inquiry-right {
    margin-left: 0;
    margin-bottom: 40px;
    margin-top: 40px;
  }

  .hm-da-solutions .title-wrapper {
    margin-bottom: 0;
  }

  .hr-inquiry-right .hr-inquiry-info {
    margin-left: 0;
    margin-bottom: 40px;
    margin-top: 40px;
    position: relative;
    padding: 20px;
    left: 0;
    top: 0;
  }
  .cs-header-top h1 {
    font-size: 24px;
    line-height: 34px;
  }
  .blog-content-middle h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
  }
  .blog-content-middle h2 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 15px;
  }
  .blog-content-middle .content-box h5 {
    font-size: 20px;
    line-height: 30px;
  }
  .supply-chain-middle .content-box {
    border-radius: 20px;
  }

  .conversation-banner {
    height: auto;
  }
  .prioritizing-data-tabs nav .nav-link {
    font-size: 14px;
    line-height: 20px;
  }
  .ultimate-outcome .twp-col .items {
    margin: 10px 0 0;
    height: auto;
  }

  .solutions-section .two-stages .stage-header h6 {
    font-size: 16px;
  }
  .solutions-section .two-stages .stages-content {
    margin-bottom: 15px;
  }
  .chat-box-animation {
    width: 70px;
    height: 70px;
    left: -10px;
    top: -10px;
  }

  .nav-right-item .common-btn {
    height: 35px;
    line-height: 35px;
    font-size: 13px;
    padding: 0 10px;
  }

  .stories-inner {
    padding: 20px;
  }

  .title-wrapper-two h2 {
    font-size: 30px;
    line-height: 80px;
  }

  .title-wrapper-two h2 span {
    font-size: 40px;
    line-height: 0;
  }
  .title-wrapper-two p {
    font-size: 14px;
    line-height: 22px;
  }

  .vision-int-bg {
    min-height: 420px;
  }
  .stories-thumb {
    margin-top: 40px;
  }

  .stories-inner .slider-nav {
    right: 15px;
    top: 15px;
  }

  .stories-inner .slider-nav {
    gap: 10px;
  }

  .stories-slider .stories-content {
    padding-left: 0;
    padding-top: 20px;
  }

  .relevant-solutions .thumb-item-content h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .vision-int-container .number {
    height: 35px;
    width: 35px;
    font-size: 20px;
  }

  .vision-int-right h3 {
    font-size: 18px;
    line-height: 26px;
  }

  .vision-int-thumb .corner-icon {
    height: 70px;
    width: 70px;
    right: 15px;
  }

  .vision-int-thumb .corner-icon-inner {
    height: 50px;
    width: 50px;
  }

  .slider-nav .nav-icon {
    width: 30px;
    height: 30px;
  }

  .stories-slider .stories-content h3 {
    font-size: 20px;
    margin: 10px 0 10px;
    line-height: 30px;
  }

  .numbers-cols .items .number,
  .data-framework-lists li:before {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .numbers-cols .items h5 {
    font-size: 18px;
  }
}

@media screen and (max-width: 479px) {
  .banner-inner .main-title,
  .main-title,
  .hm-talk-expert h4 {
    font-size: 24px;
    line-height: 34px;
  }

  .extra-common-section .content-box h5 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .schedule-meeting-text {
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .schedule-meeting-text span {
    display: inline-flex;
    font-size: 16px;
    height: 30px;
    line-height: 30px;
  }

  .sales-features .step-content h4 {
    font-size: 22px;
    line-height: 32px;
    margin-top: 15px;
  }

  .about-sets-us .items h4,
  .about-ai-roi .items ul li h5 {
    font-size: 20px;
    line-height: 30px;
  }

  .contact-us-right .main-title,
  .contact-us-section .contact-form h2 {
    font-size: 22px;
    line-height: 32px;
  }

  .marketing-analytics h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .hm-da-solutions .accordion-body {
    padding: 10px 10px;
  }

  .marketing-analytics .growth h3,
  .hm-talk-expert .growth h3 {
    font-size: 40px;
  }
  .marketing-analytics .growth .icon img,
  .hm-talk-expert .growth .icon img {
    max-width: 50px;
  }
  .marketing-analytics h4 {
    font-size: 22px;
    line-height: 34px;
  }

  .great-business-section h3 {
    font-size: 24px;
  }

  .footer-logos-rating {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-top .footer-item ul li a,
  .contact-us-footer ul li a,
  .footer-contact .get-in-touch ul li a,
  .footer-top .para p {
    font-size: 13px;
  }

  .footer-top .footer-title {
    margin-bottom: 15px;
  }
  .footer-item {
    margin-bottom: 25px;
  }

  .hm-cta-section h3,
  .hm-case-study .main-title {
    font-size: 22px;
    line-height: 34px;
  }
  .hm-cta-section .newsletter input {
    height: 45px;
  }
  .hm-cta-section .newsletter button {
    font-size: 14px;
    padding: 5px 30px;
    right: 5px;
  }

  .hm-custom-solutions .number-box:not(:last-child) .number::after {
    height: 195px;
  }

  .hm-custom-solutions .custom-solutions-points {
    margin-left: 20px;
  }
  .footer-top .footer-item ul li {
    margin: 0 0 10px 0;
  }

  .great-business-section h3 {
    font-size: 22px;
    line-height: 32px;
  }

  .integrating-channel .nav-tabs {
    padding: 0 10px;
  }
  .integrating-channel .nav-tabs .nav-link {
    padding: 10px;
    font-size: 14px;
  }

  .sales-features .step-box {
    width: 140px;
    height: 140px;
  }
  .sales-features .step-box h5 {
    font-size: 50px;
    line-height: 50px;
  }
  .sales-features .step-box span {
    font-size: 22px;
  }
  .transform-communucation h3,
  .revolution-business-inner h2 {
    font-size: 22px;
    line-height: 34px;
  }
  .revolution-business-inner .thumb {
    max-width: 100px;
  }
  .transform-communucation .thumb {
    max-width: 140px;
  }

  .middle-two-col .items h4,
  .language-section .items h4 {
    font-size: 18px;
  }
  .cs-top-content-area .content-box h3,
  .case-studies-wrapper h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .data-sourses .inner-title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .hm-solve-problems .nav-link {
    width: 47%;
  }
  .hm-da-solutions .accordion-button {
    font-size: 15px;
  }
  .hm-da-solutions .accordion-button {
    padding: 10px;
  }
  .hm-custom-solutions .custom-right-content h3 {
    font-size: 22px;
    line-height: 32px;
  }
  .hm-highimp-services .service-box h3 {
    margin: 10px auto 5px;
    font-size: 22px;
  }
  .hm-highimp-services .service-box .icon-thumb {
    width: 70px;
    height: 70px;
  }
  .hm-highimp-services .service-box .icon-thumb img {
    width: 40px;
  }

  .supply-chain-middle .content-box {
    padding: 20px;
  }
  .prioritizing-data-tabs nav .nav-link {
    margin: 0;
  }
  .data-stretegy-three-col .items h3 {
    font-size: 26px;
    line-height: 34px;
  }

  .customer-analytics.our-services-sec .row:not(:last-child) {
    margin-bottom: 30px;
  }

  .benefits-box {
    flex-direction: column;
    padding: 20px;
  }
  .benifits-content {
    text-align: center;
  }
  .benifits-content h4 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 20px;
  }

  .current-openings-tabs .accordion-button {
    padding: 20px;
  }
  .current-openings-tabs .accordion-body {
    margin: 0px 20px 15px;
  }

  .benefits-box .benefits-thumb {
    margin-right: 0;
    height: 90px;
    width: 90px;
  }
  .benefits-box .benefits-thumb img {
    max-width: 50px;
  }
  .inquiry-form .contact-form {
    padding: 20px;
  }

  .benifits-content p:empty {
    display: none;
  }
  .cs-header-top h1 {
    font-size: 22px;
    line-height: 32px;
  }

  .blog-content-middle .content-box h5 {
    font-size: 18px;
    line-height: 24px;
  }
  .blog-content-middle h2 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .blog-content-middle h3 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
  }
  .cs-header {
    padding: 15px 10px 25px;
  }
  .blog-content-middle .content-box.quote-box p {
    font-size: 18px;
    line-height: 28px;
  }
  .blog-content-middle .content-box.quote-box {
    max-width: 95%;
  }
  .blog-content-middle .content-box {
    margin-bottom: 30px;
  }
  .marketing-analytics::before,
  .marketing-analytics::after {
    display: none;
  }
  .marketing-analytics,
  .marketing-analytics-inner {
    min-height: auto;
  }

  .inner-services-section .common-row {
    flex-direction: column;
  }
  .inner-services-section .common-row {
    gap: 0;
  }
  .inner-services-section .service-inner-box {
    margin-top: 20px;
  }

  .sitemap-main ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .sitemap-main ul li a {
    font-size: 14px;
  }
}

@media screen and (max-width: 420px) {
  .tranform-data-services .prioritizing-data-tabs nav .nav {
    grid-template-columns: repeat(1, 1fr);
  }

  .banner-inner .main-title,
  .main-title,
  .hm-talk-expert h4 {
    font-size: 22px;
    line-height: 32px;
  }
  .deperatment-colmns .item h3 {
    font-size: 20px;
    line-height: 30px;
  }
}

#table-of-contents {
  position: sticky;
  top: 110px;
}

#table-of-contents #toc-list li a.active {
  color: var(--primary-color);
  position: relative;
}

#table-of-contents #toc-list li a.active::before {
  content: "";
  left: -13.5px;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: var(--primary-color);
  position: absolute;
  z-index: 1;
}

ul#toc-list {
  padding-left: 15px;
  /* border-left: 2px solid #C5C8CF; */
  margin-top: 20px;
  max-height: 370px;
  overflow: auto;
}

ul#toc-list li:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1.5px;
  background: #c5c8cf;
  left: -13px;
  z-index: 0;
}

ul#toc-list li {
  padding: 5px 0;
  position: relative;
}

a.hover-text {
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s all ease-in-out;
}

.hover-text:hover {
  color: var(--dark-black);
}

ul#toc-list li a {
  padding: 10px 0;
}

ul#toc-list li a:hover {
  color: var(--primary-color);
}

ul#toc-list li a {
  color: var(--title-color);
  font-weight: 500;
}

.hired-developer {
  text-align: center;
  padding: 40px;
  background: url(https://teaminnovatics.com/wp-content/uploads/2024/04/hire-dev-bg.png);
  width: 100%;
  background-size: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  border-radius: 20px;
  margin-top: 30px;
}

.hired-developer h3 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

#website {
  display: none;
}

#er {
  color: #f21515;
  background-color: #fff0f0;
  font-weight: bold;
  border: 3px solid #f21515;
  border-radius: 5px;
  padding: 10px 10px;
  max-width: fit-content;
  margin: 15px auto;
}
#success {
  color: #23a238;
  background-color: azure;
  font-weight: bold;
  border: 3px solid #23a238;
  border-radius: 5px;
  padding: 10px 10px;
  max-width: fit-content;
  margin: 15px auto;
}

.blog-main .caf-post-layout1 .manage-layout1 {
  border: 0 !important;
  box-shadow: none !important;
}

.blog-main .caf-post-layout1 #manage-post-area {
  background: #fff !important;
  border: 1px solid #e6eef2;
  border-radius: 0px 0px 15px 15px !important;
  border-top: 0 !important;
  padding: 0 10px 20px;
}

.blog-main .caf-post-layout1 .caf-content-read-more {
  background: transparent !important;
}

.blog-main .data-target-div1 .caf-post-layout1 .caf-post-title {
  background-color: transparent !important;
  padding-top: 20px !important;
}

.blog-main .caf-post-layout1 .caf-featured-img-box {
  border-radius: 15px 15px 0 0 !important;
  position: relative;
  border: 1px solid #e6eef2;
  border-bottom: 0;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: top center !important;
}

.blog-main .data-target-div1 .caf-post-layout1 .caf-post-title h2 a {
  color: var(--title-color) !important;
  font-size: 24px !important;
  line-height: 34px !important;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}

.blog-main .caf-filter-layout1 a {
  border: 1px solid #c5c8cf !important;
  border-radius: 50px !important;
  padding: 10px 30px !important;
  background-color: #fff !important;
  color: var(--dark-black) !important;
  font-size: 16px !important;
}

.blog-main .caf-filter-layout1 a:hover,
.caf-filter-layout1 a.active,
.data-target-div1 #caf-filter-layout1 li a.active {
  background-color: #ebf8fd !important;
  border: 1px solid var(--primary-color) !important;
}

.data-target-div1 .caf-post-layout1 .caf-meta-content i {
  color: #576076 !important;
  background: #f0f1f3 !important;
  height: 30px;
  width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 5px;
}
.blog-main .data-target-div1 .caf-post-layout1 a.caf-read-more {
  border: 0 !important;
  background-color: transparent !important;
  color: var(--primary-color) !important;
}

.blog-main .data-target-div1 .caf-post-layout1 a.caf-read-more:hover,
.blog-main .data-target-div1 .caf-post-layout1 a.caf-read-more:focus {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.blog-main .status.active {
  display: none !important;
}

.blog-main .caf-post-layout1 a.caf-read-more {
  border-radius: 20px !important;
  padding: 8px 10px !important;
  line-height: 24px;
}

.blog-main .caf-post-layout1 .caf-meta-content {
  border-bottom: 0 !important;
}

.blog-main .caf-post-layout1 .caf-meta-content .comment {
  display: none !important;
}

.blog-main .caf-post-layout1 .caf-content-read-more {
  display: none;
  justify-content: flex-end;
}
.blog-main .data-target-div1 .caf-post-layout1 .caf-content {
  text-align: left !important;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  padding-bottom: 0;
}

.articles-box h1 {
  font-size: 40px;
  line-height: 50px;
}

.articles-box .short-content {
  margin-top: 20px;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}

.modal .contact-form {
  overflow: hidden;
  background-size: contain !important;
  background-position: left center !important;
  position: relative;
  height: 100%;
  border-radius: 20px;
  background-repeat: no-repeat !important;
}
.modal .modal-content {
  border-radius: 20px;
  background-color: transparent;
  border: 0;
}

.modal .contact-form::after {
  content: "";
}

.modal .contact-form form {
  background-color: #fff;
  position: relative;
  padding: 30px 0;
}
.modal .contact-form .contact-form-inner {
  background: #fff;
  width: 60%;
  margin-left: auto;
  padding: 30px;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal .contact-form .contact-form-inner:before {
  content: "";
  position: absolute;
  left: -38%;
  top: 0;
  width: 95%;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 60%,
    rgba(255, 255, 255, 0) 100%
  );
  height: 100%;
  transform: rotate(-180deg);
  z-index: -1;
}

.modal .contact-form .contact-form-inner ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

.footer-client-logos {
  margin-bottom: 15px;
  margin-top: 15px;
}

.footer-client-logos h4 {
  font-size: 18px;
  color: #005576;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-client-logos ul {
  display: flex;
  flex-wrap: wrap;
}
.footer-client-logos ul li {
  margin-bottom: 15px;
}
.footer-client-logos ul li:not(:last-child) {
  margin-right: 15px;
}
.footer-client-logos ul li a {
  pointer-events: none;
}

.footer-client-logos ul li img {
  max-width: max-content;
  width: auto;
}

.footer-client-logos .inner-logos {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  min-height: 70px;
}

.contact-us-section-main {
  position: relative;
  z-index: 1;
}

.contact-us-section-main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 425px;
  height: 433px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: left bottom !important;
  background: url(../images/left-pattent-grey.png);
  z-index: -1;
  opacity: 0.5;
  transform: rotate(-270deg);
}

ul#caf-layout-pagination.post-layout1 .page-numbers {
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

ul#caf-layout-pagination.post-layout1 li span.current {
  background-color: var(--primary-color) !important;
  color: #fff !important;
  border: 1px solid transparent !important;
}

ul#caf-layout-pagination.post-layout1 li a.page-numbers {
  background-color: transparent !important;
  border: 1px solid #c5c8cf !important;
}

ul#caf-layout-pagination.post-layout1 li {
  margin: 0 5px !important;
}

ul#caf-layout-pagination.post-layout1 li a.next {
  text-indent: -99999px !important;
  background: url(../images/blog-arrow.png);
  background-repeat: no-repeat;
  width: 8px;
  height: 12px;
  background-size: 8px 12px;
  background-position: center;
}

ul#caf-layout-pagination.post-layout1 li a.prev {
  text-indent: -99999px !important;
  background: url(../images/blog-arrow.png);
  background-repeat: no-repeat;
  width: 8px;
  height: 12px;
  background-size: 8px 12px;
  background-position: center;
  transform: rotate(-180deg);
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.testimonial-top ul {
  display: flex;
  gap: 5px;
  align-items: center;
}
.testimonial-content {
  font-size: 18px;
  line-height: 26px;
  padding-bottom: 50px;
  color: var(--dark-black);
}

.testimonial-last {
  padding-top: 30px;
  position: relative;
}

.testimonial-contentbox {
  position: relative;
  padding-left: 20px;
}

.testimonial-last::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  top: 0;
  left: 0;
  background: rgb(0, 164, 227);
  background: linear-gradient(
    90deg,
    rgba(0, 164, 227, 1) 0%,
    rgba(0, 164, 227, 0) 100%
  );
}
.testimonial-contentbox .testimonial-last {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.testimonial-contentbox .slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-contentbox .nav-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  cursor: pointer;
}

.testimonial-contentbox .nav-icon:hover {
  background-color: var(--primary-color);
}

.testimonial-contentbox .nav-icon:hover svg path {
  fill: #fff;
}

.testimonial-contentbox .next.nav-icon svg {
  transform: rotate(180deg);
}

.testimonial-titles h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.common-faq .accordion-button {
  background-color: #fff;
  border: 1px solid #e6eef2 !important;
}

.common-faq .accordion-button:not(.collapsed) {
  border: 1px solid #00a4e3 !important;
  border-bottom: 0 !important;
  border-radius: 15px 15px 0 0 !important;
}

.common-faq .accordion-button {
  /* border-radius: 15px 15px 0 0 !important; */
}

.common-faq .accordion-button::after {
  background-color: var(--primary-color);
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-image: none;
  content: "+";
  display: flex;
  justify-content: center;
  align-items: center;
  transform: none !important;
  font-size: 22px;
  font-weight: 400;
  padding-bottom: 4px;
}

.common-faq .accordion-button.collapsed::after {
  background-color: #e6f6fd;
  color: var(--dark-black);
}

.common-faq .accordion-collapse {
  border: 1px solid #00a4e3 !important;
  border-top: 0 !important;
  padding-top: 0;
}

.common-faq .accordion-collapse .accordion-body {
  padding-top: 10px;
}

.common-faq .accordion-collapse .accordion-body p {
  margin-bottom: 0;
}

.common-faq .accordion-button:not(.collapsed)::after {
  content: "-";
}

.common-faq .accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

.modal.ctamodal .modal-content {
  background-color: #fff;
  padding: 50px;
  justify-content: center;
}

.modal.ctamodal .title-wrapper {
  max-width: 690px;
  margin: 0 auto 25px;
}

.modal.ctamodal .title-wrapper h3 {
  margin-bottom: 15px;
}

.modal.ctamodal .popup-col {
  text-align: center;
}

.modal.ctamodal .popup-col .thumb {
  padding: 20px;
  border: 1px solid #d5f1fc;
  border-radius: 10px;
  max-width: 100%;
  margin: 0 auto 20px;
}

.modal.ctamodal .modal-dialog {
  width: 100%;
  margin: 0 auto;
}

.modal.ctamodal .popup-col .content {
  margin-bottom: 20px;
}

.modal.ctamodal .popup-col p {
  font-size: 14px;
  line-height: 22px;
}

.modal.ctamodal .back-button {
  position: absolute;
  left: 20px;
  top: 20px;
}

.schedule-call-container {
  border: 1px solid #d5f1fc;
  border-radius: 15px;
  height: 100%;
  overflow: auto;
}

.schedule-call-container .fcal_wrap .fcal_calendar_inner {
  width: 100% !important;
  flex-direction: row;
  white-space: nowrap;
}

.schedule-call-container .fcal_wrap .fcal_calendar_inner .fcal_side {
  white-space: normal;
}

.modal.schedule-call-modal .schedule-col {
  padding: 30px;
}

.schedule-content p {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-black);
}

.schedule-content p:last-child {
  margin: 0;
}

.schedule-middle-info ul li {
  display: flex;
}

.schedule-middle-info ul {
  margin: 15px 0;
}

.schedule-middle-info ul li {
  padding-left: 35px;
  position: relative;
  margin: 5px 0;
}

.schedule-col .logo {
  margin-bottom: 20px;
}

.schedule-middle-info h4 {
  font-size: 24px;
  line-height: 32px;
  margin-top: 10px;
}

.schedule-middle-info ul li span,
.schedule-middle-info > span {
  font-size: 18px;
  line-height: 26px;
  color: #576076;
  font-weight: 600;
}

.schedule-middle-info ul li img {
  position: absolute;
  left: 0;
  top: 0;
}
.modal.ctamodal .modal-dialog {
  max-width: 1250px;
  height: auto;
  height: auto;
  transform: translateY(-50%);
  top: 50%;
  max-height: calc(100vh - 80px);
}

.request-demo-container {
  margin: 0 auto;
  border: 1px solid #d5f1fc;
  border-radius: 15px;
  padding: 10px 30px;
  max-width: 620px;
}

.request-demo-container .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal.ctamodal .request-demo-container.contact-form {
  height: auto;
  margin-top: 5px;
  overflow: auto;
}

.modal.ctamodal .request-demo-container.contact-form form p {
  margin-bottom: 0;
}
.modal.nexml-header-form .request-demo-container.contact-form form p {
  display: flex;
  flex-direction: column;
  margin-bottom: 0 !important;
}

.modal.ctamodal .request-demo-container.contact-form form {
  padding: 15px 0;
}

.modal.ctamodal .request-demo-container.contact-form form label {
  font-size: 15px;
}

.schedule-call-container .col-md-6:first-child {
  border-right: 1px solid #d5f1fc;
}

.modal.ctamodal .request-demo-container.contact-form .select-box {
  height: 50px;
  border-radius: 50px;
  padding: 0 15px;
  color: var(--light-black);
  border: 1px solid #ced4da;
  width: 100%;
  box-shadow: none !important;
}

.modal.ctamodal .request-demo-container.contact-form .select-box select {
  padding: 0;
  border: 0;
  height: 48px;
  line-height: 48px;
  padding: 0;
}

@media screen and (min-width: 1541px) {
  .blog-main .caf-post-layout1 .caf-featured-img-box {
    background-size: 100% !important;
    height: 280px;
  }
}
@media screen and (max-width: 1540px) {
  .hm-talk-expert::before,
  .hm-talk-expert::after {
    background-size: 70% !important;
  }

  .hm-talk-expert::after {
    left: 0;
    bottom: 0;
    background-position: left bottom;
  }
  .blog-main .data-target-div1 .caf-post-layout1 .caf-post-title h2 a {
    font-size: 20px !important;
    line-height: 30px !important;
  }

  .blog-main .caf-filter-layout1 a {
    font-size: 14px !important;
  }
  .cs-top-content-area .content-box li::before,
  .common-point-list ul li:before {
    top: 7px;
  }
  .blog-content-middle h3 {
    font-size: 24px;
    line-height: 34px;
  }
  .blog-content-middle h4 {
    font-size: 20px;
    line-height: 30px;
  }
  .blog-content-middle h2 {
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
  }

  .blog-content-middle .content-box.data-lists .lists-w-numbers ul li h5 {
    font-size: 16px;
    line-height: 26px;
  }

  .blog-content-middle .lists-w-numbers ul li:not(:last-child) {
    margin-bottom: 15px;
  }

  .blog-content-middle .content-box .middle-thumb.cta-thumb .hm-talk-expert h4 {
    font-size: 26px;
    line-height: 36px;
  }
  .blog-content-middle .content-box {
    margin-bottom: 40px;
  }
  .blog-content-middle .content-box.lists-w-numbers > li:not(:last-child) {
    margin-bottom: 20px;
  }

  .hired-developer h3 {
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .hired-developer {
    padding: 20px 20px 25px;
  }

  ul#toc-list li a {
    padding: 5px 0;
  }

  #table-of-contents h2 {
    font-size: 24px;
    line-height: 34px;
  }

  ul#toc-list {
    max-height: 219px;
  }

  .thank-you .thumb {
    max-width: 140px;
  }
  .thank-you .para h1 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 10px;
  }

  .thank-you ul {
    margin: 0;
  }
  .thank-you ul li a {
    font-size: 16px;
  }
  .thank-you ul li .icon {
    height: 40px;
    width: 40px;
  }
  .thank-you ul li {
    margin: 5px 0;
  }

  .error-404.thank-you .thumb {
    max-width: 530px;
    margin: 30px auto 40px;
  }

  .error-404.thank-you .para {
    margin-bottom: 30px;
  }
  .blog-content-middle .comment-section .comment-profile .thumb {
    height: 45px;
    width: 45px;
  }

  .blog-content-middle .comment-section .comment-profile h5 {
    font-size: 20px;
  }
  .blog-content-middle .comment-section .comment-profile .thumb img {
    width: 18px;
  }

  .blog-content-middle .comment-section .comment-profile {
    margin-bottom: 10px;
  }

  .blog-content-middle
    .content-box.data-lists
    .lists-w-numbers
    > ul
    > li::before {
    font-size: 18px;
    width: 36px;
    height: 36px;
  }
  .blog-content-middle .content-box.data-lists .lists-w-numbers > ul > li {
    padding: 10px 10px 10px 55px;
  }

  .blog-content-middle .content-box h5 {
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 5px;
  }
  .blog-content-middle #content .content-box .section h3 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 5px;
  }
  .blog-content-middle .content-box.lists-w-numbers li p {
    font-size: 14px;
    line-height: 24px;
  }

  .blog-content-middle .content-box.data-lists .lists-w-numbers > ul > li {
    margin: 0px 0 15px;
  }

  .modal .contact-form .form-control,
  .modal .contact-form .wpcf7-form-control {
    height: 40px;
  }
  .modal .contact-form textarea.form-control,
  .modal .contact-form textarea.wpcf7-form-control {
    height: 70px;
  }

  .cs-header .articles-box h1 {
    font-size: 30px;
    line-height: 41px;
  }

  .articles-box ul li .icon {
    height: 40px;
    width: 40px;
  }
  .articles-box ul li .blog-update-info {
    padding-left: 8px;
  }

  .articles-box ul li:not(:last-child) {
    margin-right: 15px;
  }

  .articles-box h4,
  .articles-box h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .hm-articles .common-btn {
    margin-top: 40px;
  }

  .footer-client-logos .inner-logos {
    min-height: 0;
    flex-direction: row;
    gap: 20px;
  }

  .contact-us-right {
    padding: 20px;
  }
  .contact-us-right .main-title {
    font-size: 30px;
    line-height: 30px;
  }
  .contact-us-right ul li a {
    height: 40px;
    width: 40px;
  }

  .contact-middle-section .contact-detail-box .contact-middle-right h4 {
    font-size: 26px;
    line-height: 36px;
  }

  .contact-middle-right ul li span {
    font-size: 18px;
  }
  .contact-middle-section .contact-detail-box .contact-middle-right {
    padding: 20px;
  }

  .contact-form .form-control,
  .contact-form .wpcf7-form-control {
    height: 36px;
    font-size: 14px;
  }
  .contact-form .common-btn,
  .contact-form .submit-btn .wpcf7-form-control {
    line-height: 42px !important;
    height: 42px !important;
  }

  .contact-form p {
    margin-bottom: 10px;
  }
  .modal .contact-form p {
    margin: 0 0 10px 0px;
  }
  .contact-form .recaptcha {
    height: 50px;
  }
  .contact-form .wpcf7-form-control.g-recaptcha > div {
    top: -17px;
    left: -5px;
  }

  .benefits-box {
    padding: 20px;
    min-height: 100%;
    margin-bottom: 0;
  }
  .career-benifits .col-lg-6 {
    margin-bottom: 20px;
  }
  .benefits-box .benefits-thumb {
    height: 75px;
    width: 75px;
    margin-right: 15px;
  }
  .benefits-box .benefits-thumb img {
    max-width: 45px;
  }
  .benefits-box .benifits-content h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 5px;
  }
  .benefits-box .benifits-content p {
    margin-bottom: 0;
  }
  .best-work-thumb {
    max-width: 100%;
    margin: 0 auto;
  }
  .modal .contact-form form {
    padding: 15px 0;
  }

  .cs-header-top .articles-box ul {
    margin: 15px 0 0;
  }

  .testimonial-top ul li img {
    width: 20px;
    height: 20px;
  }

  .testimonial-top .quote img {
    max-width: 50px;
  }
  .testimonial-content {
    font-size: 16px;
    line-height: 26px;
    padding-bottom: 35px;
  }
  .testimonial-last {
    padding-top: 20px;
  }
  .testimonial-titles span {
    font-size: 13px;
  }

  .testimonial-contentbox .nav-icon {
    width: 32px;
    height: 32px;
  }
  .testimonial-contentbox .slider-nav {
    gap: 10px;
  }

  .testimonial-top {
    margin-bottom: 20px;
  }
  .testimonial-titles h3 {
    margin-bottom: 0;
  }

  .testimonial-contentbox .nav-icon svg {
    width: 18px;
    height: 18px;
  }

  .common-faq .accordion-button {
    padding: 10px;
  }

  .common-faq .accordion-collapse .accordion-body {
    padding: 10px 10px 15px;
  }

  .modal.ctamodal .title-wrapper h3 {
    margin-bottom: 5px;
  }

  .modal.ctamodal .modal-dialog {
    max-width: 1050px;
    max-height: calc(100vh - 50px);
  }
  .modal.ctamodal .modal-content {
    padding: 30px;
  }
  .modal.schedule-call-modal .schedule-col {
    padding: 20px;
  }
  .schedule-col .logo {
    margin-bottom: 10px;
  }
  .schedule-middle-info ul li span,
  .schedule-middle-info > span {
    font-size: 15px;
  }
  .schedule-middle-info h4 {
    font-size: 22px;
    margin-top: 0px;
  }
  .schedule-middle-info ul {
    margin: 10px 0;
  }
  .schedule-content p {
    font-size: 14px;
    line-height: 22px;
  }
  .schedule-middle-info ul li {
    margin: 3px 0;
  }

  .modal.ctamodal .title-wrapper {
    margin: 0 auto 15px;
  }

  .modal.ctamodal.schedule-call-modal .title-wrapper,
  .modal.ctamodal.schedule-demo .title-wrapper {
    margin: 0 auto 10px;
  }
  .modal.ctamodal.schedule-demo .title-wrapper {
    max-width: 635px;
  }

  .modal.ctamodal .request-demo-container.contact-form {
    overflow: auto;
    margin-top: 0;
  }

  .modal.ctamodal .popup-col .thumb {
    margin: 0 auto 10px;
  }

  .modal.ctamodal .popup-col .content {
    margin-bottom: 10px;
    min-height: 90px;
  }

  .common-faq .accordion-button::after {
    padding-bottom: 7px;
  }

  .modal.ctamodal .request-demo-container.contact-form .select-box {
    height: 40px;
  }

  .contact-faq .accordion-button::after,
  .contact-faq .accordion-button:not(.collapsed)::after {
    display: flex;
    align-items: center;
    height: 20px;
    width: 20px;
    line-height: 37px;
    position: relative;
    top: -2px;
    right: -10px;
    font-size: 22px;
  }

  .modal.ctamodal .popup-col .common-btn {
    height: 35px;
    line-height: 35px;
    font-size: 13px;
    padding: 0 20px;
  }
  .modal.ctamodal .title-wrapper .content {
    font-size: 14px;
    line-height: 22px;
  }

  .modal.ctamodal .request-demo-container.contact-form form label {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .modal.ctamodal .request-demo-container.contact-form .select-box select {
    height: 38px;
    line-height: 38px;
  }

  .browse-file {
    margin-bottom: 15px;
    height: 42px;
  }
  .browse-file::after {
    padding: 2px 10px;
    font-size: 12px;
    right: 5px;
  }
}

@media screen and (max-width: 991px) {
  #table-of-contents {
    margin-bottom: 30px;
  }

  .home .hm-articles .articles-box {
    display: block;
    margin: 10px auto 10px;
    display: block;
  }

  .modal.ctamodal .modal-dialog {
    height: auto;
    max-height: none;
    transform: none;
    top: 0;
    margin: 20px auto;
  }
  .footer-contact.m-mt-0 {
    margin-top: 0;
  }

  .footer-title.v-hidden {
    display: none;
  }

  .schedule-call-container .col-md-6:first-child {
    border-right: 0;
  }
  .modal.ctamodal .popup-col {
    margin-bottom: 15px;
  }
  .modal.ctamodal .popup-col .thumb {
    display: flex;
    justify-content: center;
  }

  .contact-middle-right ul li.contact-numbers {
    min-height: auto;
  }
  .contact-us-right.solutionform-bg {
    height: 500px;
  }
  .inquiry-form .apply-job-btns .common-btn {
    margin: 0 5px;
  }

  .contact-thumb-right {
    margin: 0 auto 20px;
    max-width: 490px;
  }

  .hm-solve-problems .tab-right-content {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .modal .contact-form .contact-form-inner {
    height: auto;
  }
  .modal .contact-form {
    background-repeat: no-repeat !important;
    height: auto;
  }
  .contact-middle-section .contact-detail-box .contact-middle-right h4 {
    font-size: 22px;
    line-height: 32px;
  }
  .contact-middle-right ul li.contact-numbers {
    min-height: auto;
  }
  .contact-middle-right ul li span {
    font-size: 16px;
  }
  .da-solutions-thumb,
  .hm-solve-problems .thumb-left {
    display: none;
  }
  .hm-solve-problems .tab-right-content {
    padding-bottom: 0;
  }
  .modal.ctamodal .popup-col .content {
    min-height: auto;
  }
}

@media screen and (max-width: 640px) {
  .thank-you ul {
    gap: 10px;
  }
  .inquiry-form .apply-job-btns::before,
  .inquiry-form .apply-job-btns::after {
    display: none;
  }
  .inquiry-form .apply-job-btns {
    display: flex !important;
    flex-wrap: wrap;
    padding-top: 0;
    gap: 10px;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
}

@media screen and (max-width: 479px) {
  .benefits-box .benefits-thumb {
    margin: 0 auto;
  }
  .current-openings-tabs .job-desc h4 {
    margin-bottom: 15px;
    margin-top: 10px;
  }

  .contact-middle-section .contact-detail-box .contact-middle-right h4 {
    font-size: 18px;
    line-height: 28px;
  }
  .contact-middle-right ul li.contact-numbers {
    min-height: auto;
  }
  .contact-middle-right ul li span {
    font-size: 14px;
  }
  .contact-us-section .contact-form {
    padding: 20px;
  }
  .contact-middle-section .contact-detail-box {
    overflow-x: hidden;
  }
  .nav-right-item .common-btn {
    font-size: 11px;
  }

  .nav-right-item {
    right: 47px;
    top: 9px;
  }
}

.modal.show,
.modal.show .modal-dialog {
  z-index: 9999 !important;
}

.modal-open {
  background: rgba(0, 0, 0, 0.3);
}
.modal-open .header-fixed {
  z-index: 0;
}

.modal .modal-dialog {
  max-width: 1300px;
  position: relative;
  display: flex;
  height: calc(100% - 3.5rem);
  width: 100%;
  border-radius: 40px;
  padding: 0 30px;
}

.modal .btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 2;
  background: none;
  opacity: 1;
  box-shadow: none;
  width: 42px;
  height: 42px;
}

.modal .btn-close svg path {
  color: var(--dark-black);
  width: 42px;
  height: 42px;
}

#progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
}

#progress-bar {
  width: 0;
  height: 100%;
  background: var(--primary-color);
}
div#myModal {
  background-color: rgba(0, 0, 0, 0.5);
}
.modal#myModal .modal-content {
  background-color: #fff;
  text-align: center;
  align-items: center;
  padding: 30px;
  min-height: 300px;
  overflow-y: auto;
  max-height: 300px;
  height: 100%;
  max-width: 600px;
}

.modal#myModal .modal-dialog {
  top: 50%;
  transform: translate(-50%, -50%) !important;
  left: 50%;
  height: auto;
  position: absolute;
  margin: 0;
  justify-content: center;
  display: flex;
}

.modal#myModal .modal-dialog .content {
  font-size: 16px;
  text-align: center;
  margin-top: 15px;
  display: block;
}
.modal#myModal .modal-dialog span {
  display: block;
  font-size: 11px;
  text-align: left;
}
.modal#myModal .modal-dialog input {
  width: 100% !important;
  padding: 5px 10px;
  background-color: #f7f7f7;
  border-radius: 5px;
}

.modal#myModal .modal-dialog input[type="submit"] {
  background-color: var(--primary-color);
  text-align: center;
  color: #fff;
  border-radius: 30px;
  font-size: 15px;
  padding: 5px 20px;
}

.modal.ctamodal .back-button svg {
  width: 35px;
  height: 35px;
}

.modal.ctamodal .back-button svg path {
  fill: var(--dark-black);
  width: 35px;
  height: 35px;
}

.modal#myModal .modal-dialog form {
  margin-top: 20px;
}

.modal#myModal .modal-dialog form p {
  margin-bottom: 0;
}

.category-tabs,
.case-study-category-tabs,
.common-category-tabs {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  white-space: nowrap;
}

.category-tabs .tab-link,
.case-study-category-tabs .case-study-tab-link,
.common-category-tabs .common-tab-link {
  background-color: #fff;
  color: var(--dark-black);
  border: none;
  border-radius: 50px;
  padding: 5px 30px;
  border: 1px solid #c5c8cf;
  cursor: pointer;
  transition: background-color 0.1s ease;
}

.category-tabs .tab-link.active,
.category-tabs .tab-link:hover,
.case-study-category-tabs .case-study-tab-link.active,
.case-study-category-tabs .case-study-tab-link:hover,
.common-category-tabs .common-tab-link:hover {
  background-color: #ebf8fd;
  border: 1px solid var(--primary-color);
}

.tab-content.blog-categoty-tab {
  display: flex;
  flex-direction: column;
}

.articles-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.articles-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
}

.articles-box.hidden {
  opacity: 0;
  visibility: hidden;
}

.blog-main .articles-wrapper .articles-box {
  border: 1px solid #e6eef2;
  border-radius: 15px;
  display: block;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  margin-top: 0px;
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
}

.blog-main .articles-wrapper .articles-box .thumb img {
  border-radius: 15px 15px 0 0;
}

.blog-main .articles-wrapper .articles-box .articles-content-box {
  border-radius: 0 0 15px 15px;
  border: 0;
}

.articles-wrapper article {
  background-color: #f9f9f9;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.articles-wrapper article h2 {
  font-size: 18px;
  margin: 0 0 10px;
}

.articles-wrapper article p {
  font-size: 14px;
  color: #555;
}

.articles-wrapper .articles-box .articles-content-box ul {
  flex-wrap: wrap;
}

.blog-categoty-tab .pagination,
.case-study-category-tab .case-study-pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.blog-categoty-tab .page-numbers,
.case-study-category-tab .page-numbers {
  margin: 0 5px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #c5c8cf;
  background-color: var(--primary-color);
  color: #fff;
}

.blog-categoty-tab .pagination-link a,
.case-study-category-tab .case-study-pagination-link a {
  display: block;
  text-decoration: none;
  transition: background-color 0.3s ease;
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  color: var(--dark-black);
  border: 1px solid #c5c8cf;
  font-weight: 600;
}

.blog-categoty-tab .pagination-link .next,
.case-study-category-tab .case-study-pagination-link .next {
  text-indent: -99999px !important;
  background: url(../images/blog-arrow.png);
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  background-size: 8px 12px;
  background-position: center;
}

.blog-categoty-tab .pagination-link .next:hover,
.blog-categoty-tab .pagination-link .prev:hover {
  background-color: transparent;
}
.case-study-category-tab .case-study-pagination-link .next:hover,
.case-study-category-tab .case-study-pagination-link .prev:hover {
  background-color: transparent;
}

.blog-categoty-tab .pagination-link .prev,
.case-study-category-tab .case-study-pagination-link .prev {
  text-indent: -99999px !important;
  background: url(../images/blog-arrow.png);
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  background-size: 8px 12px;
  background-position: center;
  transform: rotate(-180deg);
}

.blog-categoty-tab .pagination-link a:hover,
.case-study-category-tab .case-study-pagination-link a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.case-studies-list .case-study-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.case-studies-list .case-study-wrapper .case-study-box .thumb {
  flex: 0 0 50%;
  position: relative;
  height: 100%;
  display: flex;
}
.case-studies-list .case-study-wrapper .case-study-box .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.case-studies-list .case-study-wrapper .case-study-box {
  display: flex;
  gap: 20px;
  border-radius: 25px;
  border: 1px solid #e6eef2;
  overflow: hidden;
}

.case-studies-list .case-study-wrapper .case-study-content-box {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-study-content-box h4 {
  font-size: 22px;
  line-height: 29px;
}

.case-study-wrapper .case-study-content-box .short-content {
  margin-bottom: 15px;
}

.case-studies-list .case-study-wrapper .case-study-content-box .common-btn {
  color: var(--primary-color);
  background-color: transparent;
  padding: 5px 0;
  height: auto;
  line-height: normal;
  border: 0;
}

.case-studies-list
  .case-study-wrapper
  .case-study-content-box
  .common-btn:hover,
.case-studies-list
  .case-study-wrapper
  .case-study-content-box
  .common-btn:focus {
  background-color: transparent !important;
  color: #0578a4 !important;
}

.schedule-call-container .fcal_calendar_inner .fcal_side .fcal_slot_heading {
  display: none !important;
}

.schedule-call-container .fcal_calendar_inner .fcal_icon_item {
  display: flex;
  align-items: center;
}

.schedule-call-container
  .fcal_calendar_inner
  .fcal_icon_item.fcal_icon_item
  .fcal_duration_title {
  font-size: 20px !important;
  font-weight: 600;
}

.schedule-call-container
  .fcal_calendar_inner
  .fcal_icon_item.fcal_icon_item
  svg {
  height: 1.4rem !important;
  width: 1.4rem !important;
}

.case-study-middle .case-study-right {
  border-radius: 20px;
  background: url(../images/download-form-bg.png) repeat;
  background-repeat: repeat;
  height: auto;
  width: 100%;
  padding: 30px;
}

ul.case-study-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 80%;
}

.case-study-categoty {
  border-radius: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  border: 1px solid #c5c8cf;
  margin-bottom: 15px;
}
.articles-box.case-study-top-box .short-content {
  margin-top: 10px;
}

.case-study-middle .download-form h3 {
  font-size: 26px;
  line-height: 34px;
}
.case-study-middle .download-form {
  border-radius: 20px;
  background-color: #fff;
  padding: 30px;
}
.case-study-middle .download-form .form-control {
  border: 1px solid #c5c8cf;
  height: 40px;
  border-radius: 40px;
  margin: 10px 0;
  width: 100%;
  padding: 0 15px;
  box-shadow: none;
  font-size: 15px;
}

.case-study-middle .download-form .common-btn {
  margin-top: 10px;
  width: 100%;
}

.download-form p {
  margin: 0;
}

.case-study-middle .get-in-touch {
  margin-top: 40px;
}

.case-study-middle .get-in-touch h3 {
  font-size: 22px;
  line-height: 30px;
}

.case-study-middle .get-in-touch h3 span {
  font-weight: 400;
}

.case-study-middle .get-in-touch ul li a {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: #121212;
}

.case-study-middle .get-in-touch ul li {
  display: flex;
  align-self: center;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.case-study-middle .get-in-touch ul li .icon {
  display: flex;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #005576;
  align-items: center;
  justify-content: center;
}

.case_slider_content .case-study-categoty {
  max-width: max-content;
  margin-bottom: 0;
}

.case_slider_content .read-more {
  margin-top: 15px;
  color: #00a4e3;
  font-weight: 600;
  font-size: 16px;
}

.hm-case-study {
  background: #fff !important;
}

.hm-case-study:before {
  display: none;
}

.data-stretegy-three-col .data-int-roi .items h3 {
  color: #121212;
}

.data-stretegy-three-col .data-int-roi .col-12:first-child .items,
.data-int-roi.roi-grid-col .items:first-child {
  background: linear-gradient(
    1deg,
    rgba(169, 181, 250, 0) 0.48%,
    rgba(169, 181, 250, 0.5) 99.55%
  );
}
.data-stretegy-three-col .data-int-roi .col-12:nth-child(2) .items,
.data-int-roi.roi-grid-col .items:nth-child(2) {
  background: linear-gradient(
    1deg,
    rgb(139, 224, 164, 0) 0.48%,
    rgb(139, 224, 164, 0.5) 99.55%
  );
}

.data-stretegy-three-col .data-int-roi .col-12:nth-child(3) .items,
.data-int-roi.roi-grid-col .items:nth-child(3) {
  background: linear-gradient(
    1deg,
    rgb(246, 207, 113, 0) 0.48%,
    rgb(246, 207, 113, 0.5) 99.55%
  );
}

.data-stretegy-three-col .data-int-roi .col-12:nth-child(4) .items,
.data-int-roi.roi-grid-col .items:nth-child(4) {
  background: linear-gradient(
    1deg,
    rgb(254, 136, 177, 0) 0.48%,
    rgb(254, 136, 177, 0.5) 99.55%
  );
}

.data-stretegy-three-col .data-int-roi .col-12:nth-child(5) .items,
.data-int-roi.roi-grid-col .items:nth-child(5) {
  background: linear-gradient(
    1deg,
    rgba(112, 222, 245, 0) 0.48%,
    rgba(112, 222, 245, 0.5) 99.55%
  );
}

.data-int-eight-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #00a4e3;
}

.data-int-eight-cards .items {
  height: 250px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.data-int-eight-cards .items.item1 {
  background-color: #fff;
  color: #121212;
}
.data-int-eight-cards .items.item2 {
  background-color: #00aeef;
  color: #fff;
}
.data-int-eight-cards .items.item3 {
  background-color: #fff;
  color: #121212;
}
.data-int-eight-cards .items.item4 {
  background-color: #00aeef;
  color: #fff;
}
.data-int-eight-cards .items.item5 {
  background-color: #00aeef;
  color: #fff;
}
.data-int-eight-cards .items.item6 {
  background-color: #fff;
  color: #121212;
}
.data-int-eight-cards .items.item7 {
  background-color: #00aeef;
  color: #fff;
}
.data-int-eight-cards .items.item8 {
  background-color: #fff;
  color: #121212;
}

.data-int-eight-cards .items p {
  font-weight: 600;
  font-size: 22px;
  line-height: 34px;
  margin: 0;
}

.data-int-eight-cards p:empty {
  display: none;
}

.data-int-eight-cards .items span {
  width: 100%;
  display: block;
  text-align: right;
  font-size: 30px;
  font-weight: 600;
}

.data-framework-lists {
  margin: 0;
  padding: 0;
  list-style: none;
}

.data-framework-lists li {
  display: flex;
  width: 100%;
  position: relative;
  margin-bottom: 30px;
  padding-left: 70px;
  counter-increment: list-counter;
}

.data-framework-lists li:before {
  content: counter(list-counter) "";
  height: 50px;
  width: 50px;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: #00a4e3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.data-framework-lists li:not(:last-child):after {
  height: 100%;
  content: "";
  width: 2px;
  border: 1px dashed #00a4e3;
  position: absolute;
  left: 25px;
  margin-left: 1px;
  top: 100%;
  z-index: -1;
  margin-top: -7px;
}

.data-framework-lists li .data-framework-box {
  padding: 20px;
  border: 1px solid #99dbf4;
  border-radius: 20px;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
}

.data-framework-lists li .icon-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.data-framework-lists li h6 {
  font-size: 24px;
  line-height: 32px;
}

.cohort-datasourses-cols .items {
  text-align: center;
  background-color: #f2fafd;
  border: 1px solid #ceeef9;
  border-radius: 20px;
  display: flex;
  align-items: center;
  height: 100%;
  flex-direction: column;
  padding: 30px;
}

.cohort-datasourses-cols .items span {
  color: #000;
  display: block;
  font-weight: 700;
  font-size: 20px;
  margin-top: 15px;
}

.cohort-datasourses-cols .col-12 {
  margin-bottom: 20px;
}

.roi-grid-col {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.page-template-case-studies-details .ptb-90 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-template-case-studies-details .pb-90 {
  padding-bottom: 80px;
}

@media screen and (max-width: 1580px) {
  .modal .btn-close {
    width: 35px;
    height: 35px;
  }

  .modal .btn-close svg path {
    color: var(--dark-black);
    width: 35px;
    height: 35px;
  }

  .modal.ctamodal .back-button svg {
    width: 30px;
    height: 30px;
  }

  .modal.ctamodal .back-button svg path {
    color: var(--dark-black);
    width: 30px;
    height: 30px;
  }

  .case-studies-list .case-study-wrapper .case-study-content-box {
    padding: 15px 15px 15px 0;
  }
  .case-study-content-box h4 {
    font-size: 18px;
    line-height: 24px;
  }
  .nav-right-item .header-btn a.common-btn {
    padding: 0 15px;
    font-size: 14px;
  }

  .case-study-categoty {
    border-radius: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 13px;
  }

  .best-work-sec .common-btn.number-btn {
    padding: 0 8px;
  }
  .best-work-sec .common-btn.number-btn svg {
    width: 30px;
    height: 30px;
  }

  ul.case-study-lists {
    gap: 12px;
    margin-top: 20px;
  }

  .blog-content-middle.case-study-middle h3 {
    margin-bottom: 15px;
  }
  .case-study-middle .case-study-right h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .case-study-middle .get-in-touch ul li a {
    font-size: 16px;
  }

  .case-study-middle .get-in-touch ul li .icon {
    width: 35px;
    height: 35px;
  }

  .case-study-middle .get-in-touch ul li .icon svg {
    width: 22px;
    height: auto;
  }
  .case-study-middle .case-study-right {
    padding: 20px;
  }

  .case-study-middle .download-form {
    padding: 15px;
  }

  .case-study-middle .download-form .form-control,
  .case-study-middle .download-form .common-btn {
    height: 35px;
    line-height: 35px;
    font-size: 13px;
    margin: 7px 0;
  }
  .case-study-middle .get-in-touch {
    margin-top: 20px;
  }

  .data-framework-lists li h6 {
    font-size: 18px;
    line-height: 26px;
  }
  .data-framework-lists li .data-framework-box {
    min-height: 60px;
    padding: 10px;
    border-radius: 10px;
  }
  .data-framework-lists li {
    margin-bottom: 15px;
  }

  .data-framework-lists li .icon-list .icon {
    max-width: 80px;
  }

  .data-int-eight-cards .items p {
    font-size: 18px;
    line-height: 26px;
  }
  .data-int-eight-cards .items span {
    font-size: 24px;
  }
  .data-int-eight-cards .items {
    height: 180px;
  }

  .cohort-datasourses-cols .items span {
    font-size: 16px;
    margin-top: 10px;
  }

  .cohort-datasourses-cols .items .thumb-icon {
    max-width: 70px;
  }

  .cohort-datasourses-cols .items {
    padding: 20px;
  }

  .page-template-case-studies-details .ptb-90 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .page-template-case-studies-details .pb-90 {
    padding-bottom: 60px;
  }

  .rep-capabilties-box ul li:before,
  .rep-capabilties-box ul li .title {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 991px) {
  .articles-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-tabs {
    margin-bottom: 20px;
  }
  .schedule-call-container .fcal_wrap .fcal_calendar_inner {
    flex-direction: column;
  }

  .page-template-case-studies-details .ptb-90 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .roi-grid-col {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 10px;
  }
  .data-stretegy-three-col .items {
    margin: 0 5px;
  }

  .page-template-case-studies-details .pb-90 {
    padding-bottom: 50px;
  }

  .case-studies-list .case-study-wrapper .case-study-box {
    flex-direction: column;
    gap: 0;
  }
  .case-studies-list .case-study-wrapper .case-study-content-box {
    padding: 15px;
  }
  .social-media-main {
    margin-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  .data-int-eight-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .data-int-eight-cards .items.item3 {
    background-color: #00aeef;
  }
  .data-int-eight-cards .items.item4 {
    background-color: #fff;
  }
  .data-int-eight-cards .items.item5 {
    background-color: #fff;
  }
  .data-int-eight-cards .items.item6 {
    background-color: #00aeef;
  }
  .data-int-eight-cards .items p {
    font-size: 15px;
    line-height: 24px;
  }
  .data-int-eight-cards .items {
    padding: 15px;
  }
}

@media (max-width: 574px) {
  .category-tabs .tab-link,
  .case-study-category-tabs .case-study-tab-link {
    margin: 5px;
  }
  .cs-header .articles-box h1,
  #table-of-contents h2,
  .blog-content-middle h2 {
    font-size: 22px;
    line-height: 32px;
  }
  .blog-content-middle h2 {
    font-size: 20px;
    line-height: 30px;
  }
  .blog-content-middle h3,
  .blog-content-middle h4 {
    font-size: 18px;
    line-height: 28px;
  }
  .rep-capabilties-box ul li:before,
  .rep-capabilties-box ul li .title {
    font-size: 15px;
    line-height: 24px;
  }
  .case-study-middle .download-form .common-btn {
    margin: 7px auto;
    text-align: center;
  }
  .rep-capabilties-box ul li {
    grid-template-columns: repeat(1, 1fr);
  }
  .rep-capabilties-box ul li {
    gap: 0;
  }
  .rep-capabilties-box ul li p {
    margin-top: 5px;
  }
  .data-sourses .content-box {
    padding: 15px;
  }
  .data-sourses .content-box {
    height: auto;
  }
  .data-sourses .col-12.col-sm-6.mb-4 {
    margin-bottom: 10px !important;
  }
  .data-sourses .content-box {
    margin-top: 10px;
  }
  .data-sourses .content-box h5 {
    margin-bottom: 10px;
  }
  .data-sourses .content-box h5 {
    font-size: 17px;
  }
  .roi-grid-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .data-framework-lists li:before,
  .numbers-cols .items .number {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .data-framework-lists li {
    padding-left: 45px;
  }
  .data-framework-lists li:not(:last-child):after {
    top: 72%;
    left: 16px;
  }

  .page-template-case-studies-details .ptb-90 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .page-template-case-studies-details .pb-90 {
    padding-bottom: 30px;
  }
  .case-studies-list .case-study-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .category-tabs,
  .case-study-category-tabs {
    gap: 10px;
  }
  .case-studies-wrapper .cs-header .cs-header-top h1 {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .articles-wrapper {
    grid-template-columns: 1fr;
  }
  .case_slider .slick-slide > a .case_slider_content {
    padding: 0px 15px 15px;
  }
  .case_slider .slick-slide > a .thumb img {
    position: relative;
  }
  .case_slider .slick-slide > a {
    grid-template-columns: repeat(1, 1fr);
  }
}

.contact-us-footer ul li.numbres:not(:last-child) {
  margin-bottom: 8px;
}
.contact-us-footer ul li.numbres.last {
  margin-bottom: 15px;
}

.select-position .wpcf7-form-control-wrap {
  position: relative;
}
.select-position .wpcf7-form-control-wrap::after {
  position: absolute;
  right: 10px;
  content: "";
  transform: rotate(90deg) translateX(-50%);
  top: 50%;
  background-image: url(../images/next-arrow.png);
  height: 24px;
  width: 24px;
  background-size: 24px;
  background-position: center;
}

.download-form .wpcf7-form-control-wrap.recaptcha,
.download-form .wpcf7-form-control-wrap.recaptcha iframe {
  transform: scale(0.8);
  transform-origin: top left;
  margin: 0;
  padding: 0;
}

div#case-study-tab-content > p {
  text-align: center;
}

.download-form .wpcf7 form.sent .wpcf7-response-output {
  background: rgba(70, 180, 80, 0.7);
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
}

.download-form .wpcf7 form .wpcf7-response-output {
  background: rgba(220, 50, 50, 0.7);
  border: 0;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  line-height: 22px;
  padding: 10px;
  margin: 10px 0 0;
}

.download-form .wpcf7-spinner {
  display: none;
}

.cs-header.hire-talent-header {
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  border-radius: 0;
  background: url(../images/hire-talent-bg-top.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  box-shadow: none;
  padding-bottom: 0;
  position: relative;
}

.cs-header.hire-talent-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: url(../images/hire-talent-bg-overlay.png);
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.case-studies-wrapper .cs-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: url(../images/case-study-b-overlay.png);
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.hire-talent-header .col-3 {
  position: relative;
  text-align: center;
}

.hire-talent-header .col-3:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: 0;
  width: 2px;
  background: url(../images/hire-dev-line.png);
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.certified-dev-section .grid-five-col {
  gap: 15px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.cs-header.hire-talent-header .col-3 h3 {
  font-weight: 600;
  font-size: 22px;
}

.hire-talent-header .col-3 span {
  display: block;
  padding-bottom: 15px;
}

.certified-dev-section .items {
  margin: 10px 0;
  border-radius: 25px;
  background: linear-gradient(
    1deg,
    rgba(191, 236, 255, 0) 0.48%,
    rgba(191, 236, 255, 0.5) 99.55%
  );
  padding: 30px 15px;
  text-align: center;
}

.certified-dev-section .items .icon {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 40px rgba(0, 164, 227, 0.1);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.certified-dev-section .items h4 {
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  margin: 20px auto 0;
}

.hire-explore-sec {
  height: auto;
  border-radius: 20px;
  padding: 120px 70px;
  background-position: right center !important;
  background-size: cover !important;
  width: 100%;
}

.hire-explore-sec h4 {
  color: #fff;
  font-size: 46px;
  line-height: 54px;
  margin-bottom: 40px;
}

.hire-explore-sec .footer-client-logos {
  margin-bottom: 30px;
}

.hire-explore-sec .footer-client-logos .inner-logos {
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.stats-section .grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 20px;
  justify-items: center;
  align-items: center;
  width: 100%;
  padding: 20px;
}

.stats-section .grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 20px;
}
.stats-section .grid-item h2 {
  margin-bottom: 15px;
  font-size: 60px;
  line-height: 70px;
}
.stats-section .grid-item p {
  color: #121212;
  font-size: 26px;
  line-height: 34px;
}

.stats-section .person-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.stats-section .grid-item:nth-child(even) {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px;
  text-align: center;
}

.stats-section .grid-item:nth-child(2) {
  background-color: #8fefac;
}
.stats-section .grid-item:nth-child(4) {
  background-color: #73e3fb;
}
.stats-section .grid-item:nth-child(6) {
  background-color: #ffa680;
}

.stats-section .common-point-list ul li {
  color: #121212;
}

.choose-innovatics-sec {
  background-color: #f6f6f7;
}

.choose-innovatics-sec .items {
  border: 1px solid #121212;
  border-radius: 20px;
  position: relative;
  padding: 40px 10px;
  background-color: #fff;
  text-align: center;
  margin: 40px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.choose-innovatics-sec .items .thumb {
  position: relative;
  top: -90px;
  display: flex;
  justify-content: center;
  margin-bottom: -70px;
}

.choose-innovatics-sec .items h4 {
  font-size: 22px;
  line-height: 30px;
}

.stremline-process-sec .remote-de-box {
  border-radius: 30px;
  border: 1px solid #121212;
  overflow: hidden;
}

.stremline-process-sec .remote-de-box h4 {
  width: 100%;
  padding: 40px 15px;
  background-color: #f9a662;
  text-align: center;
  font-size: 40px;
  line-height: 50px;
}
.stremline-process-sec .remote-de-box .col-6 {
  background-color: #fff7f0;
  padding: 35px;
  text-align: center;
}
.stremline-process-sec .remote-de-box .col-6:first-child {
  border-right: 1px solid #121212;
  border-bottom: 1px solid #121212;
}
.stremline-process-sec .remote-de-box .col-6:nth-child(2) {
  border-bottom: 1px solid #121212;
}
.stremline-process-sec .remote-de-box .col-6:nth-child(3) {
  border-right: 1px solid #121212;
}

.stremline-process-sec .remote-de-box .icon {
  margin: 0 auto 15px;
  text-align: center;
  justify-content: center;
  display: flex;
}
.stremline-process-sec .remote-de-box h5 {
  font-size: 22px;
  margin-bottom: 5px;
}

.stremline-points ul {
  margin: 0 0 0 40px;
  padding: 0;
  list-style: none;
}

.stremline-points li {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  margin: 30px 0;
  padding-left: 155px;
  counter-increment: list-counter;
}

.stremline-points li b {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
  color: #121212;
}

.stremline-points li p {
  margin: 0;
}

.stremline-points li .content-box {
  border-radius: 25px;
  padding: 30px;
}

.stremline-points li:first-child .content-box {
  border: 1px solid #70def5;
  background-color: #f1fcfe;
}
.stremline-points li:nth-child(2) .content-box {
  border: 1px solid #8be0a4;
  background-color: #f4fcf6;
}
.stremline-points li:nth-child(3) .content-box {
  border: 1px solid #b497e7;
  background-color: #f8f5fd;
}
.stremline-points li:last-child .content-box {
  border: 1px solid #f6cf71;
  background-color: #fffbf1;
}

.stremline-points li:before {
  content: counter(list-counter) "";
  height: 90px;
  width: 90px;
  border: 1px solid #121212;
  font-size: 40px;
  color: #121212;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 90px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.stremline-points li:first-child::before {
  background-color: #70def5;
}
.stremline-points li:nth-child(2)::before {
  background-color: #8be0a4;
}
.stremline-points li:nth-child(3)::before {
  background-color: #b497e7;
}
.stremline-points li:last-child::before {
  background-color: #f6cf71;
}

.stremline-points li:not(:last-child):after {
  height: 46px;
  content: "";
  width: 2px;
  border: 1px solid #000000;
  position: absolute;
  left: 42px;
  margin-left: 1px;
  top: 100%;
  z-index: -1;
  margin-top: -7px;
}

.contact-us-right.hire-talent-bg {
  background: url(../images/hire-contact-us-thumb.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.cs-header.hire-talent-header .title-wrapper {
  position: relative;
  z-index: 1010;
}

.contact-us-section.solution-contact-section.hired-dev-contact-bg::before {
  display: none;
}

.contact-us-section.solution-contact-section.hired-dev-contact-bg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: url(../images/hire-contact-bg.png);
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.hired-dev-contact-bg .contact-us-right::after {
  display: none;
}
.cohort-datasourses-cols.sop-app-cols {
  border: 1px solid #ceeef9;
  padding: 20px;
  border-radius: 20px;
}
.cohort-datasourses-cols.sop-app-cols .items {
  border: 0;
  background-color: transparent;
}

.cohort-datasourses-cols.sop-app-cols .thumb-icon {
  border: 1px solid #00a4e3;
  height: 80px;
  width: 80px;
  max-width: 80px;
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sop-data-utilization-cols ul li {
  padding-left: 30px;
  position: relative;
}

.sop-data-utilization-cols ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  background: url(../images/arrow-right.png);
  background-repeat: no-repeat;
  width: 14px;
  height: 16px;
  background-size: 14px 16px;
}

.sop-data-utilization-cols .items {
  border: 1px solid #99dbf4;
  padding: 25px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sop-data-utilization-cols .items .item-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inquiry-form.case-study-inq-form .title-wrapper p {
  max-width: 900px;
}
.home .home_slider.new_home_slider {
  background-color: #051746;
  overflow: hidden;
  height: 100vh;
}
/* .home .wrapper {
  position: relative;
}
.home .wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: -150px;
  background: url(../images/hm-banner-bg-gradiemnt.webp);
  background-repeat: no-repeat;
  width: 100%;
  height: 800px;
  background-size: 70%;
} */
.home .home_slider.new_home_slider .slick-list {
  border-radius: 20px;
  margin: 20px;
  background-color: #eef8fc;
}
.home .overlay_bg {
  background: url(../images/hm-banner-pattern-bg.webp);
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.hm-clients {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.hm-clients::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    #051746 0%,
    #0a2a6a 22%,
    rgba(10, 42, 106, 0.85) 38%,
    rgba(10, 42, 106, 0.45) 55%,
    rgba(10, 42, 106, 0.15) 70%,
    #ffffff 100%
  );

  z-index: 1;
}

.hm-clients > * {
  position: relative;
  z-index: 2;
}

@media (max-width: 1580px) {
  .hire-explore-sec {
    padding: 60px 40px;
    background-position: top right !important;
  }

  .hire-explore-sec h4 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 30px;
  }
  .hire-explore-sec .footer-client-logos {
    margin-bottom: 20px;
  }

  .hire-explore-sec .footer-client-logos img {
    max-width: 400px;
  }

  .certified-dev-section .items .icon {
    width: 90px;
    height: 90px;
  }

  .certified-dev-section .items .icon img {
    max-width: 55px;
    height: auto;
  }
  .certified-dev-section .items h4 {
    font-size: 18px;
    line-height: 26px;
  }

  .stats-section .grid-item h2 {
    margin-bottom: 15px;
    font-size: 40px;
    line-height: 50px;
  }
  .stats-section .grid-item p {
    color: #121212;
    font-size: 18px;
    line-height: 26px;
  }

  .choose-innovatics-sec .items .thumb {
    top: -70px;
    margin-bottom: -50px;
  }

  .choose-innovatics-sec .items {
    min-height: 90px;
    margin: 25px 0;
  }

  .choose-innovatics-sec .items .thumb img {
    max-width: 60px;
    height: auto;
  }

  .choose-innovatics-sec .items h4 {
    font-size: 16px;
    line-height: 24px;
  }
  .stremline-process-sec .remote-de-box h4 {
    padding: 20px;
    font-size: 26px;
    line-height: 34px;
  }
  .stremline-process-sec .remote-de-box .col-6 {
    padding: 30px 15px;
  }
  .stremline-process-sec .remote-de-box h5 {
    font-size: 20px;
  }
  .stremline-process-sec .remote-de-box .icon {
    margin: 0 auto 10px;
  }
  .stremline-process-sec .remote-de-box .icon img {
    max-width: 50px;
    height: auto;
  }
  .stremline-points li .content-box {
    padding: 15px;
  }
  .stremline-points li b {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .stremline-points li p {
    font-size: 14px;
  }
  .stremline-points li {
    margin: 15px 0;
    padding-left: 80px;
  }
  .stremline-points ul {
    margin: 0 0 0 20px;
  }
  .stremline-points li:before {
    height: 50px;
    width: 50px;
    border-radius: 50px;
  }
  .stremline-points li:before {
    font-size: 26px;
  }
  .stremline-points li:not(:last-child):after {
    height: 29px;
    left: 24px;
  }

  .cohort-datasourses-cols.sop-app-cols .thumb-icon {
    border: 1px solid #00a4e3;
    height: 60px;
    width: 60px;
    max-width: 60px;
    border-radius: 60px;
  }

  .cohort-datasourses-cols.sop-app-cols .thumb-icon img {
    max-width: 30px;
  }
  .cohort-datasourses-cols.sop-app-cols {
    padding: 10px;
  }
}
@media (max-width: 991px) {
  .nav-menu nav.main-menu {
    display: none;
  }
  .nav-menu.menu-on nav.main-menu {
    display: block;
  }
  .sop-data-utilization-cols .items {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .stats-section .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
@media (max-width: 574px) {
  .home .home_slider.new_home_slider .slick-list {
    margin: 10px;
  }
}

@media (max-width: 480px) {
  .stats-section h2 {
    font-size: 1.5rem;
  }

  .stats-section p {
    font-size: 0.9rem;
  }
}

.loader,
#loader {
  border: 6px solid #f1f1f1;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.iera-chat-button::after,
.iera-chat-button::before {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  border-radius: 50px;
  position: absolute;
  left: -12px;
  top: -12px;
  z-index: -1;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  animation: arcontactus-pulse 2s infinite;
}
.iera-chat-button::after {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.iera-chat-box-inner {
  margin: auto;
  text-align: center;
}
.iera-chat-box-animation {
  background-color: #005576;
  width: 100px;
  height: 100px;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  border-radius: 50px;
  position: absolute;
  left: -15px;
  top: -15px;
  z-index: -1;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  animation: arcontactus-pulse 2s infinite;
}
.iera-chat-box-animation:nth-of-type(2n) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@keyframes arcontactus-pulse {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes arcontactus-pulse2 {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }
}

@-webkit-keyframes arcontactus-pulse {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@-webkit-keyframes arcontactus-pulse2 {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.4;
  }
}

@media screen and (max-width: 574px) {
  .iera-chat-box-animation {
    width: 80px;
    height: 80px;
  }
  #iera-chat-container {
    height: auto !important;
  }
}

@keyframes renzasnow {
  0% {
    background-position:
      0 0,
      0 0,
      0 0;
  }
  100% {
    background-position:
      500px 1000px,
      400px 400px,
      300px 300px;
  }
}

.chrismas--effect,
.chrismas--section-effect::before {
  background-image: url(../images/snow-one.png), url(../images/snow-two.png);
  animation: renzasnow 18s linear infinite;
}

.chrismas--effect {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0);
}
.chrismas--section-effect {
  position: relative;
}
.chrismas--section-effect::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0);
}

.top-bar.chrismas-bar {
  background: url(../images/chrismas-top-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 5px 0px;
}

.top-bar.chrismas-bar::before,
.top-bar.chrismas-bar::after {
  display: none;
}

.hm-about .hm-about-thumb {
  z-index: 0;
}

.home_slider .slider_item {
  background-size: contain !important;
}

#iera-chat-container .iera-chat-button img,
.iera-chat-button img {
  padding: 5px !important;
  border-radius: 50%;
}

.iera-chat-box-inner {
  background-color: #fff !important;
}

.banner-inner.new-banner-inner .common-btn {
  box-shadow: 0 0 33px -5px #00a6eb80;
}

.home_slider.new_home_slider .slider_item {
  justify-content: center;
  align-items: flex-start;
  background-size: cover !important;
  background-position: bottom center !important;
  background-repeat: no-repeat !important;
  height: calc(100vh - 40px) !important;
}

.banner-inner.new-banner-inner {
  max-width: 100%;
  text-align: center;
}

.new-banner-thumb {
  max-width: 76%;
  margin: 0 auto;
}

.banner-inner.new-banner-inner .main-title {
  margin: 10px 0 20px;
}

.new-banner-thumb {
  margin-top: 20px;
}

.hm-ind-leaders-inner {
  display: grid;
  grid-template-columns: 1fr;
}

.hm-ind-leaders-inner .grid-left {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.hm-ind-leaders-inner .grid-ind-thumbs {
  border-radius: 25px;
  background-color: #fff;
}

.hm-ind-leaders-inner .grid-ind-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
}

.hm-ind-leaders-inner .grid-ind-thumbs .items {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hm-ind-leaders-inner .grid-ind-thumbs .items {
  padding: 10px;
  box-shadow: 2px 5px 0px #009dd9;
  margin: 0 15px;
  border-radius: 40px;
  border-top: 1px solid rgba(0, 157, 217, 0.2);
  border-left: 1px solid rgba(0, 157, 217, 0.2);
  border-right: 1px solid rgba(0, 157, 217, 0.2);
}

.hm-ind-leaders .main-title {
  font-weight: 400;
}

.hm-ind-leaders .main-title span {
  font-weight: 700;
}

@media screen and (min-width: 575px) {
  .banner-inner.new-banner-inner .main-title {
    font-size: 26px;
    line-height: 38px;
  }
}

@media screen and (min-width: 992px) {
  .banner-inner.new-banner-inner .main-title {
    font-size: 32px;
    line-height: 45px;
  }
}

@media screen and (min-width: 1200px) {
  .banner-inner.new-banner-inner .main-title {
    font-size: 42px;
    line-height: 58px;
  }
}

@media screen and (min-width: 1581px) {
  .banner-inner.new-banner-inner .main-title {
    font-size: 60px;
    line-height: 80px;
  }
  .hm-ind-leaders .main-title {
    font-weight: 400;
    font-size: 38px;
  }
  .banner-inner.new-banner-inner .main-title {
    margin: 15px 0 30px;
  }
}

@media screen and (max-width: 1580px) {
  .new-banner-thumb {
    max-width: 60%;
  }
  .banner-inner.new-banner-inner .common-btn {
    height: 42px;
    line-height: 40px;
  }
  .top-bar {
    padding: 6px 0;
  }
  .top-bar .top-bar-inner span {
    font-size: 14px;
  }

  .top-bar .top-bar-inner .new-label {
    font-size: 13px;
    padding: 3px 10px;
  }

  .top-bar .top-bar-inner a {
    font-size: 14px;
  }

  .hm-ind-leaders-inner .grid-ind-thumbs .items img {
    max-width: 170px;
  }

  header .we-hired-thumb img {
    max-width: 80px;
  }

  header.sticy-header {
    min-height: 90px;
  }
  .home header {
    margin-top: 0px;
  }
  .home header.header-fixed {
    margin-top: 0px;
  }
  header {
    margin-top: 0px;
  }
}
@media screen and (max-width: 1199px) {
  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-item
    > a.mega-menu-link {
    font-size: 14px !important;
  }
  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-megamenu.mega-menu-item {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
  .hm-ind-leaders-inner .grid-ind-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
  .hm-ind-leaders-inner .grid-ind-thumbs .items {
    margin: 10px;
  }
}

@media screen and (max-width: 991px) {
  .we-hired-thumb {
    display: none;
  }

  header.sticy-header {
    min-height: auto;
  }

  .banner-inner.new-banner-inner .main-title {
    margin-top: 0;
  }

  .hm-ind-leaders-inner {
    grid-template-columns: 1fr;
  }
  /* .home_slider.new_home_slider .slider_item{
    height: auto !important;
  } */

  /* .home_slider.new_home_slider{
    height: auto !important;
  } */
  .new-banner-thumb {
    max-width: 100%;
  }
  .hm-ind-leaders .main-title br {
    display: none;
  }

  .hm-talk-expert {
    background-size: cover !important;
  }
}

@media screen and (min-width: 992px) {
  .nav-right-item {
    width: auto;
    position: relative;
    flex: 0 0 auto;
  }

  header .we-hired-thumb {
    position: absolute;
    right: 0px;
    top: -24px;
    z-index: 999;
  }

  @keyframes we-are-hiring {
    0% {
      transform: rotate(-20deg);
    }
    50% {
      transform: rotate(20deg);
    }
    100% {
      transform: rotate(-20deg);
    }
  }

  header .we-hired-thumb img {
    transform-origin: top;
    animation: we-are-hiring infinite linear 2s;
  }

  header.sticy-header {
    min-height: auto;
  }

  header.sticy-header {
    min-height: 90px;
    padding: 0;
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 574px) {
  .hm-ind-leaders-inner .grid-ind-thumbs .items img {
    max-width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .hm-ind-leaders-inner .grid-ind-thumbs .items img {
    max-width: 95px;
  }
  .hm-ind-leaders-inner .grid-ind-thumbs {
    grid-template-columns: repeat(1, 1fr);
  }
}

.page-id-3412 .data-sourses .col-sm-6:first-child {
  flex: 0 0 auto;
  width: 100%;
}

.main-menu .mega-Capabilities-dropdown a.mega-menu-link {
  cursor: pointer !important;
}

.main-menu .mega-Capabilities-dropdown > a.mega-menu-link {
  cursor: default !important;
}

.hm-fav-tools {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #fff;
}

.tools-container {
  position: relative;
  height: 600px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.tools-container .main-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.thumbs-list {
  position: relative;
  width: 100%;
  height: 100%;
}

.thumbs-list .logo {
  position: absolute;
  width: auto;
  height: auto;
  max-width: 180px;
  will-change: transform;
  z-index: 3;
  transition: all 0.3s ease;
}

.thumbs-list .logo:hover {
  transform: scale(1.15);
  filter: brightness(1.1);
}

.thumbs-list .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tools-container .circle-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  z-index: 0;
}

.tools-container .iera-chat-box-animation {
  background-color: transparent;
  width: 500px;
  height: 500px;
  animation-duration: 2s;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transform: scale(0);
  animation: arcontactus-pulse 4s infinite;
  border: 2px solid #0077ff;
}

.tools-container .iera-chat-box-animation:nth-of-type(2) {
  animation-delay: 1.5s;
}

.tools-container .iera-chat-box-animation:nth-of-type(3) {
  animation-delay: 2.5s;
}

@keyframes arcontactus-pulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes float-up {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes float-down {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}

@keyframes rotate-slow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes float-left {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-15px);
  }
}

@keyframes float-right {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(15px);
  }
}

@keyframes float-diagonal {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, -10px);
  }
}

@keyframes edu_bounce_loop {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Individual logo animations */

.thumbs-list .logo1 {
  top: 12%;
  right: 20%;
  animation: float-up 4s ease-in-out infinite;
}

.thumbs-list .logo2 {
  top: 30%;
  left: 10%;
  animation: float-diagonal 5s ease-in-out infinite;
}

.thumbs-list .logo3 {
  top: 45%;
  left: 16%;
  animation: float-left 4.5s ease-in-out infinite;
}

.thumbs-list .logo4 {
  bottom: 10%;
  right: 30%;
  animation: float-down 5.5s ease-in-out infinite;
}

.thumbs-list .logo5 {
  top: 62%;
  left: 25%;
  animation: pulse 4s ease-in-out infinite;
}

.thumbs-list .logo6 {
  top: 33%;
  right: 12%;
  animation: float-up 5s ease-in-out infinite;
}

.thumbs-list .logo7 {
  top: 80%;
  left: 12%;
  animation: float-right 4.5s ease-in-out infinite;
}

.thumbs-list .logo8 {
  top: 10%;
  left: 24%;
  animation: float-diagonal 5.5s ease-in-out infinite;
}

.thumbs-list .logo9 {
  top: 28%;
  left: 50%;
  animation: float-up 5s ease-in-out infinite;
}

.thumbs-list .logo10 {
  bottom: 34%;
  right: 24%;
  animation: pulse 4.5s ease-in-out infinite;
}
.hm-fav-tools .tools-container .main-title {
  margin-top: 0;
}

@media (min-width: 1441px) {
  .thumbs-list .logo {
    max-width: 220px;
  }
}
@media (min-width: 1581px) {
  header.sticy-header {
    min-height: 125px;
  }
}
@media (max-width: 1580px) {
  .category-tabs,
  .case-study-category-tabs,
  .common-category-tabs {
    gap: 10px;
  }
  .category-tabs .tab-link,
  .case-study-category-tabs .case-study-tab-link,
  .common-category-tabs .common-tab-link {
    padding: 5px 15px;
  }
}
@media (max-width: 1440px) {
  .thumbs-list .logo {
    max-width: 140px;
  }
}

@media (max-width: 1200px) {
  .tools-container {
    height: 500px;
  }

  .tools-container .thumbs-list .logo {
    max-width: 80px;
  }
  .nav-right-item .header-btn .common-btn {
    padding: 0px 10px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .tools-container {
    height: 400px;
  }

  .tools-container .main-title {
    font-size: 1.5rem;
  }
  .category-tabs,
  .case-study-category-tabs,
  .common-category-tabs {
    gap: 0;
  }
}

@media (max-width: 480px) {
  .tools-container {
    height: 300px;
  }

  .tools-container .main-title {
    font-size: 1.2rem;
  }

  .tools-container .thumbs-list .logo {
    max-width: 50px;
  }

  .tools-container .circle-animation,
  .tools-container .iera-chat-box-animation {
    width: 300px;
    height: 300px;
  }
}

.portfolio-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.portfolio-wrapper .portfolio-item {
  padding: 15px;
}

.explosure-section .lists-w-numbers h4 {
  margin-bottom: 15px;
}

.page-id-2243 .usp-section .items.common-point-list ul li::before {
  top: 46px;
}

#mega-menu-wrap-primary
  #mega-menu-primary
  li.mega-menu-item-has-children:hover
  a.mega-menu-link
  > span.mega-indicator::after {
  display: none !important;
}

@media (min-width: 1200px) {
  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-item.mega-toggle-on
    > a.mega-menu-link
    ~ .mega-sub-menu {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-megamenu
  > a.mega-menu-link
  ~ ul.mega-sub-menu {
  border: 0 !important;
}

#mega-menu-wrap-primary
  #mega-menu-primary
  > li.mega-menu-megamenu
  > a.mega-menu-link
  ~ ul.mega-sub-menu::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: -20px !important;
  width: 100% !important;
  height: 20px !important;
  background: #fff !important;
}

@media (min-width: 992px) {
  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-megamenu
    > a.mega-menu-link
    ~ ul.mega-sub-menu {
    left: 50% !important;
    transform: translateX(-50%) !important;
    max-width: 930px !important;
    transition: none !important;
    border-radius: 30px !important;
  }
}

@media (min-width: 1200px) {
  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-megamenu
    > a.mega-menu-link
    ~ ul.mega-sub-menu {
    left: 50% !important;
    transform: translateX(-50%) !important;
    max-width: 1110px !important;
    transition: none !important;
    border-radius: 30px !important;
  }
}

@media (min-width: 1580px) {
  #mega-menu-wrap-primary
    #mega-menu-primary
    > li.mega-menu-megamenu
    > a.mega-menu-link
    ~ ul.mega-sub-menu {
    left: 50% !important;
    transform: translateX(-50%) !important;
    max-width: 1500px !important;
    transition: none !important;
    border-radius: 45px !important;
    margin-top: 0px !important;
  }

  #mega-menu-wrap-primary
    #mega-menu-primary
    li.mega-menu-item-has-children:hover
    a.mega-menu-link
    > span.mega-indicator {
    margin-top: 14px !important;
  }
}

@media (max-width: 1580px) {
  .page-id-2243 .usp-section .items.common-point-list ul li::before {
    top: 40px;
  }
}

/**** nexml-landing-page-css ****/
.nexml-header {
  padding: 22px 0;
}
.nexml .main-title {
  color: #190248;
}

.nexml .main-title span {
  background: none;
  font-weight: 500;
}
.page-template-nextml-landing .main-title {
  color: #190248;
  font-weight: 700;
}

.page-template-nextml-landing .main-title span {
  background: none;
  font-weight: 500;
}

.nexml-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1010;
  height: 90px;
}
.nexml-header .l-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nexml-banner .thumb {
  margin: 0 auto;
  max-width: 1500px;
  position: relative;
  top: -70px;
}
.cs-header.nexml-banner {
  margin-top: 0px;
  padding-top: 120px;
  background-size: contain !important;
  position: relative;
  width: 100%;
}
.nexml-banner .thumb {
  position: relative;
  border-radius: 15px;
}
.nexml-banner .thumb::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: url(//teaminnovatics.com/wp-content/themes/innovatics/images/case-study-b-overlay.png);
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.common-btn.nxml-btn {
  border-radius: 10px;
  background-color: #754fc7;
  border: 0;
}

.common-btn.nxml-btn:hover,
.common-btn.nxml-btn:focus {
  background-color: rgb(25, 2, 72) !important;
}

.nexml-banner .common-btn.nxml-btn {
  margin-top: 30px;
}

.nexml-banner .title-wrapper p {
  max-width: 700px;
}
.landing-features {
  position: relative;
  z-index: 1020;
}
.l-features-list {
  background-color: #f2eefa;
  border: 1px solid #3a2762;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: max-content;
  margin: 0 auto 20px;
  border-radius: 35px;
  flex-wrap: wrap;
}

.l-features-list li {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  white-space: nowrap;
}

.l-features-list li span {
  display: inline-block;
  color: #190248;
  font-size: 16px;
  font-weight: 600;
  margin-left: 10px;
}

.l-features-list li img {
  max-width: 16px;
  height: auto;
}

.landing-features-slider img {
  display: block;
  margin: 0 auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out;
}

.landing-features-slider img:hover {
  filter: grayscale(0%);
}

.landing-about .thumb {
  max-width: 90%;
}
.problem-s-list li {
  padding-left: 25px;
  position: relative;
}
.i-outcomes-list {
  margin-bottom: 30px;
}
.i-outcomes-list li {
  padding-left: 30px;
  position: relative;
}
.i-outcomes-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: url("../images/i-check-arrow.svg") no-repeat;
  background-size: 20px;
}
.i-outcomes-content {
  padding-left: 30px;
}
.problem-s-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  background: url("../images/i-point-arrow.svg") no-repeat;
  background-size: 15px;
}
.problem-s-list li strong,
.i-outcomes-list li strong {
  color: #000;
  font-size: 18px;
  display: block;
  margin-bottom: 5px;
}
.problem-s-list li:not(:last-child),
.i-outcomes-list li:not(:last-child) {
  margin-bottom: 20px;
}

.problem-s-list li span {
  display: block;
}

.landing-outcomes-container {
  background: #f2effa;
  padding: 60px 40px;
  border-radius: 30px;
  background: linear-gradient(
    90deg,
    rgba(242, 239, 250, 1) 0%,
    rgba(239, 244, 252, 1) 100%
  );
}

.l-finance-section .items {
  padding: 20px;
  background-color: #fff;
  margin: 10px 0;
  border-radius: 20px;
  text-align: center;
}

.l-finance-section .items p {
  margin: 0;
}

.l-finance-section .items .number {
  width: 104px;
  height: 104px;
  background: url("../images/i-finance-circle.png") no-repeat;
  background-size: 104px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 600;
  color: #190248;
  margin: 0 auto 20px;
}

.l-finance-section .items h5 {
  color: #190248;
  margin-bottom: 8px;
}

.l-finance-section .items:hover {
  box-shadow: 0px 4px 8px #ccc;
}

.l-footer-top {
  background: #754fc7;
  background: linear-gradient(
    133deg,
    rgba(25, 2, 72, 1) 0%,
    rgba(117, 79, 199, 1) 100%
  );
  position: relative;
  z-index: 1020;
  border-radius: 40px;
  padding: 45px 45px 15px;
  top: -60px;
  max-width: 1200px;
  margin: 0 auto;
}

.l-footer-top .common-btn {
  position: relative;
  bottom: -40px;
}

.nexml-landing-footer {
  position: relative;
  background: #190248;
  color: #fff;
  text-align: center;
  padding: 80px 20px 0px;
  overflow: hidden;
}

/* Top curve */
.nexml-landing-footer::before {
  content: "";
  position: absolute;
  top: 0px; /* adjust curve depth */
  left: 0;
  width: 100%;
  height: 142px;
  background: url("../images/l-footer-curve.png") no-repeat;
  background-size: cover;
  background-position: top center;
}

.l-footer-logo {
  margin: 20px auto 50px;
}

.l-footer-logo .thumb {
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-footer-logo .thumb:before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(50% - 100px);
  height: 4px;
  background: url("../images/footer-logo-pattern.png") no-repeat;
  background-size: cover;
  background-position: top center;
  transform: rotate(180deg);
  top: 50%;
}

.l-footer-logo .thumb::after {
  content: "";
  position: absolute;
  right: 0;
  width: calc(50% - 100px);
  height: 4px;
  background: url("../images/footer-logo-pattern.png") no-repeat;
  background-size: cover;
  background-position: top center;
  top: 50%;
}

.l-footer-top p {
  color: #fff;
  font-weight: 100;
  font-size: 36px;
  line-height: 46px;
}

.l-footer-top p strong {
  font-weight: 700;
}

.common-btn.nxml-btn.white-btn {
  background-color: #fff;
  color: #754fc7;
  font-size: 30px;
  padding: 30px 50px;
}

.common-btn.nxml-btn.white-btn:hover,
.common-btn.nxml-btn.white-btn:focus {
  background-color: rgb(117, 79, 199) !important;
  color: #fff;
}
.common-btn.nxml-btn.white-btn:hover span,
.common-btn.nxml-btn.white-btn:focus span {
  background-color: rgb(117, 79, 199) !important;
  color: #fff;
}

.common-btn.nxml-btn.white-btn span {
  color: #190248;
  display: inline-block;
  padding: 0 5px;
}

.nexml-platform-sec .service-box .icon-thumb {
  background: linear-gradient(
    180deg,
    rgba(117, 79, 199, 0) 0%,
    rgba(117, 79, 199, 0.15) 100%
  );
  border-color: #e6dff5;
}

.hm-highimp-services.nexml-platform-sec .service-box .back {
  background: linear-gradient(180deg, #754fc7 0%, #392661 100%);
}

.hm-highimp-services.nexml-platform-sec::before {
  background: url("../images/platform-bg.png");
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-repeat: repeat;
  height: 100%;
  background-size: cover;
  z-index: 0;
}

.nexmllanding-cta-sec.hm-talk-expert {
  background: #754fc7;
  background: linear-gradient(
    180deg,
    rgba(25, 2, 72, 1) 0%,
    rgba(117, 79, 199, 1) 100%
  );
}

.nexmllanding-cta-sec.hm-talk-expert .talk-expert-inner h4 {
  color: #fff;
  font-weight: 100;
}

.nexmllanding-cta-sec.hm-talk-expert .talk-expert-inner h4 strong {
  font-weight: 700;
}

.Nexml-articles.hm-articles .articles-box {
  border-radius: 20px;
  padding: 20px;
  background: linear-gradient(
    0deg,
    rgba(117, 79, 199, 0) 0%,
    rgba(117, 79, 199, 0.15) 100%
  );
  display: flex;
  flex-direction: column;
}

.Nexml-articles.hm-articles .articles-box .articles-content-box {
  background-color: transparent;
  border: 0;
  padding: 15px 0;
}
.Nexml-articles.hm-articles .articles-box .thumb img {
  border: 1px solid #754fc7;
  border-radius: 20px;
}

.hm-articles.Nexml-articles {
  background: #fff;
}

.hm-articles.Nexml-articles::before,
.hm-articles.Nexml-articles::after {
  display: none;
}

.hm-articles.Nexml-articles .articles-box ul li .icon {
  background-color: #f2eefa !important;
}

.Nexml-articles.hm-articles .title-wrapper {
  max-width: 677px;
  margin: 0 auto 40px;
}

.nexml-resourse-sec .grid-col-2 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.nexml-resourse-sec .grid-col-2 .box {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(
    180deg,
    rgba(229, 220, 249, 0.5) 0%,
    rgba(229, 220, 249, 0.15) 100%
  );
}

.nexml-resourse-sec .grid-col-2:first-child {
  margin-bottom: 20px;
}

.nexml-resourse-sec .grid-col-2 .box h4 {
  color: #754fc7;
  margin-bottom: 10px;
}
.common-faq.nexml-faq .accordion-collapse {
  border: 1px solid #754fc7 !important;
  border-bottom: 0 !important;
}

.common-faq.nexml-faq .accordion-button {
  background-color: #fff;
  border: 1px solid #e6eef2;
}
.common-faq.nexml-faq .accordion-button:not(.collapsed) {
  border: 1px solid #754fc7 !important;
  border-bottom: 0 !important;
  border-radius: 15px 15px 0 0 !important;
}

.common-faq.nexml-faq .accordion-button::after {
  background-color: #754fc7;
}

.common-faq.nexml-faq .accordion-button.collapsed::after {
  background-color: #f2eefa;
  color: var(--dark-black);
}
.common-faq.nexml-faq .accordion-collapse {
  border: 1px solid #754fc7 !important;
  border-top: 0 !important;
  padding-top: 0;
}

.hm-solve-problems.nexml-solve-problems {
  background: linear-gradient(
    180deg,
    rgba(117, 79, 199, 0) 0%,
    rgba(117, 79, 199, 0.1) 100%
  );
}

.hm-solve-problems.nexml-solve-problems .common-btn.nxml-btn {
  margin-top: 20px;
  display: inline-flex;
}

.hm-solve-problems.nexml-solve-problems .nav-link.active {
  background-color: #754fc7;
  color: #fff;
}

.hm-solve-problems.nexml-solve-problems .nav-link {
  background-color: #fff;
  border: 1px solid #754fc7;
  color: #190248;
}

@media (max-width: 1580px) {
  .problem-s-list li strong,
  .problem-s-list li strong,
  .i-outcomes-list li strong {
    font-size: 16px;
  }

  .problem-s-list li:not(:last-child),
  .i-outcomes-list li:not(:last-child) {
    margin-bottom: 15px;
  }

  .l-finance-section .items .number {
    width: 70px;
    height: 70px;
    background-size: 70px;
    font-size: 35px;
  }
  .l-footer-top p {
    font-size: 28px;
    line-height: 38px;
  }

  .common-btn.nxml-btn.white-btn {
    background-color: #fff;
    color: #754fc7;
    font-size: 22px;
    padding: 25px 50px;
  }
  .l-footer-logo .thumb img {
    max-width: 110px;
  }

  .l-footer-logo .thumb:before {
    width: calc(50% - 80px);
  }

  .l-footer-logo .thumb::after {
    width: calc(50% - 80px);
  }
  .nexml-header .l-header-inner .logo img {
    max-width: 120px;
  }
}

@media (max-width: 991px) {
  .nexml-resourse-sec .items-thumb {
    margin-bottom: 30px;
  }
  .cs-header.nexml-banner {
    padding-top: 90px;
  }
}
@media (max-width: 767px) {
  .nexml-banner .thumb {
    top: 0;
  }

  .common-btn.nxml-btn.white-btn {
    padding: 10px 20px;
    font-size: 16px;
  }

  .l-footer-logo {
    margin: 30px auto 30px;
  }

  .nexml-landing-footer {
    padding: 30px 20px 0px;
  }

  .l-footer-top {
    top: 0;
  }
  .l-footer-top p {
    font-size: 20px;
    line-height: 30px;
  }
  .l-footer-top .common-btn {
    bottom: 0;
  }
  .l-footer-top {
    padding: 20px;
  }
  .landing-outcomes-container {
    padding: 20px;
  }

  .i-outcomes-content {
    padding: 20px 0 0;
  }

  .hm-talk-expert {
    padding: 30px 0;
  }
  .hm-talk-expert .talk-expert-inner .common-btn {
    margin-top: 30px;
  }

  .Nexml-articles.hm-articles .articles-box {
    padding: 15px;
  }
  .landing-about .thumb.last {
    margin-top: 30px;
    margin-bottom: 0;
  }
  .landing-about .thumb {
    margin-bottom: 30px;
  }
}

@media (max-width: 420px) {
  .nexml-resourse-sec .grid-col-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .l-features-list li {
    padding: 5px 10px;
  }
  .l-features-list {
    padding: 10px 0;
  }

  .l-footer-logo .thumb img {
    max-width: 90px;
  }
  .common-btn.nxml-btn.white-btn {
    padding: 10px 10px;
    font-size: 15px;
  }
  .l-footer-logo .thumb:before,
  .l-footer-logo .thumb::after {
    width: calc(50% - 60px);
  }
}

.hm-solve-problems.nexml-solve-problems .tab-right-content ul li {
  padding-left: 0;
}

.hm-solve-problems.nexml-solve-problems .tab-right-content ul li b,
.hm-solve-problems.nexml-solve-problems .tab-right-content ul li strong {
  display: block;
  color: #190248;
  margin-bottom: 5px;
  font-size: 18px;
}

.hm-solve-problems.nexml-solve-problems .tab-right-content ul li::before {
  display: none;
}

.page-template-nextml-landing .submit-btn .wpcf7-form-control {
  background-color: #754fc7 !important;
  border: 0;
}

.page-template-nextml-landing #downloadform .contact-form .form-control {
  margin: 10px 0;
}

.Nexml-articles.blog-categoty-tab .pagination-link .page-numbers {
  background: #fff;
}
.Nexml-articles.blog-categoty-tab .pagination-link .page-numbers.current {
  background-color: #754fc7;
  color: #fff;
}

@media (max-width: 575px) {
  .modal .contact-form .contact-form-inner {
    width: 100%;
  }
}

.page-template-nextml-landing #iera-chat-container {
  display: none;
}

.page-template-nextml-landing .fcal_author_avatar img,
.page-template-nextml-landing .fcal_author_name {
  display: none !important;
}
.page-template-nextml-landing .schedule-call-modal .back-button {
  display: none !important;
}
.page-template-nextml-landing .fcal_author_avatar {
  background: url("https://teaminnovatics.com/wp-content/uploads/2025/09/nexml-header-logo.png");
  position: relative;
  left: 0;
  top: 0;
  width: 124px;
  background-repeat: no-repeat;
  height: 28px;
  background-size: cover;
  margin-bottom: 30px !important;
}

.solution-contact-section.nexml-contact-form .contact-form label {
  color: #190248;
}

.nexml-contact-form .contact-us-right.hire-talent-bg {
  background: transparent !important;
  box-shadow: none !important;
}

.nexml-contact-form.contact-us-section.solution-contact-section {
  background: #fff !important;
}

.solution-contact-section.nexml-contact-form .contact-form {
  background-color: #fff !important;
}

.solution-contact-section.nexml-contact-form .contact-form .wpcf7-form-control {
  border: 1px solid #ced1df !important;
  border-radius: 12px !important;
}

.solution-contact-section.nexml-contact-form .contact-form .common-btn {
  background: #754fc7 !important;
}

.solution-contact-section.nexml-contact-form
  .contact-form
  textarea.wpcf7-form-control {
  border: 1px solid #ced1df !important;
}

.solution-contact-section.nexml-contact-form .title-wrapper {
  margin-bottom: 20px;
}

.page-template-nextml-landing
  .modal.ctamodal
  .request-demo-container.contact-form {
  max-width: 100%;
  border: 0;
}

.page-template-nextml-landing .schedule-demo .back-button {
  display: none !important;
}

.page-template-nextml-landing .request-demo-container .submit-btn {
  justify-content: flex-start;
}

.page-template-nexml-blog-one .fcal_author_avatar img,
.page-template-nexml-blog-one .fcal_author_name {
  display: none !important;
}

.page-template-nexml-blog-two .fcal_author_avatar img,
.page-template-nexml-blog-one .fcal_author_name {
  display: none !important;
}

.page-template-nexml-blog-three .fcal_author_avatar img,
.page-template-nexml-blog-one .fcal_author_name {
  display: none !important;
}
.page-template-nexml-blog-one .schedule-call-modal .back-button {
  display: none !important;
}
.page-template-nexml-blog-two .schedule-call-modal .back-button {
  display: none !important;
}
.page-template-nexml-blog-three .schedule-call-modal .back-button {
  display: none !important;
}

.page-template-nexml-blog-one .fcal_author_avatar,
.page-template-nexml-blog-two .fcal_author_avatar,
.page-template-nexml-blog-three .fcal_author_avatar {
  background: url(https://teaminnovatics.com/wp-content/uploads/2025/09/nexml-header-logo.png);
  position: relative;
  left: 0;
  top: 0;
  width: 124px;
  background-repeat: no-repeat;
  height: 28px;
  background-size: cover;
  margin-bottom: 30px !important;
}

.page-template-nexml-blog-one
  #exampleModal
  .contact-form
  .contact-form-inner
  ul {
  display: none !important;
}
.page-template-nexml-blog-two
  #exampleModal
  .contact-form
  .contact-form-inner
  ul {
  display: none !important;
}
.page-template-nexml-blog-three
  #exampleModal
  .contact-form
  .contact-form-inner
  ul {
  display: none !important;
}

.page-template-nexml-blog-one #iera-chat-container {
  display: none !important;
}
.page-template-nexml-blog-two #iera-chat-container {
  display: none !important;
}
.page-template-nexml-blog-three #iera-chat-container {
  display: none !important;
}

.page-template-nexml-blog-one .contact-form .submit-btn .wpcf7-form-control {
  background: #754fc7 !important;
  border: 0 !important;
  border-radius: 12px !important;
}
.page-template-nexml-blog-two .contact-form .submit-btn .wpcf7-form-control {
  background: #754fc7 !important;
  border: 0 !important;
}
.page-template-nexml-blog-three .contact-form .submit-btn .wpcf7-form-control {
  background: #754fc7 !important;
  border: 0 !important;
}

.page-template-nexml-blog-one .common-point-list ul li:before {
  background: url(../images/nexml-arrow-right.png);
}
.page-template-nexml-blog-two .common-point-list ul li:before {
  background: url(../images/nexml-arrow-right.png);
}
.page-template-nexml-blog-three .common-point-list ul li:before {
  background: url(../images/nexml-arrow-right.png);
}

.page-template-nexml-blog-one #table-of-contents .hired-developer {
  display: none !important;
}
.page-template-nexml-blog-two #table-of-contents .hired-developer {
  display: none !important;
}
.page-template-nexml-blog-three #table-of-contents .hired-developer {
  display: none !important;
}

.page-template-nexml-blog-one #table-of-contents #toc-list li a.active,
.page-template-nexml-blog-two #table-of-contents #toc-list li a.active,
.page-template-nexml-blog-three #table-of-contents #toc-list li a.active {
  color: #754fc7;
}

.page-template-nexml-blog-one #table-of-contents #toc-list li a.active::before {
  background-color: #754fc7;
}
.page-template-nexml-blog-two #table-of-contents #toc-list li a.active::before {
  background-color: #754fc7;
}
.page-template-nexml-blog-three
  #table-of-contents
  #toc-list
  li
  a.active::before {
  background-color: #754fc7;
}

.page-template-nexml-blog-one a.hover-text,
.page-template-nexml-blog-two a.hover-text,
.page-template-nexml-blog-three a.hover-text {
  color: #754fc7;
}

.page-template-nexml-blog-one ul#toc-list li a:hover,
.page-template-nexml-blog-two ul#toc-list li a:hover,
.page-template-nexml-blog-three ul#toc-list li a:hover {
  color: #754fc7;
}

.page-template-nextml-landing .main-title span {
  display: inline;
}
.nexml-hero-form {
  position: relative;
  z-index: 1;
}
.nexml-hero-form-inner {
  position: relative;
  z-index: 1;
  background: #f3effa;
  padding: 25px 30px;
  border-radius: 30px;
  border: 1px solid #754fc7;
  background: linear-gradient(
    180deg,
    rgba(243, 239, 250, 1) 0%,
    rgba(221, 239, 252, 0.5) 100%
  );
}

.nexml-hero-form .common-btn {
  margin: 0 auto;
  width: auto;
  padding: 0 30px;
  height: 58px;
  line-height: 58px;
}
.nexml-hero-form .submit-btn {
  margin-top: 20px;
}
.nexml-hero-form .submit-btn p {
  display: flex;
  flex-direction: column;
}

.nexml-hero-form .main-title {
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 10px;
}
.nexml-hero-form input {
  height: 50px;
}

.nexml-hero-form input,
.nexml-hero-form textarea {
  border: 1px solid #ced1df !important;
  border-radius: 12px;
  width: 100%;
  padding: 0 10px;
  margin: 10px 0;
}

.nexml-hero-form textarea {
  padding: 10px;
  height: 150px;
  margin-bottom: 0px;
}

.nexml-hero-form p {
  margin: 0;
}

.nexml-banner .title-wrapper p {
  margin: 0;
  max-width: 600px;
}

.nexml-hero-form form label {
  display: none !important;
}

/* Basic placeholder styling */
.nexml-hero-form input::placeholder,
.nexml-hero-form textarea::placeholder {
  color: rgb(25, 2, 72);
  opacity: 1; /* some browsers render placeholders with reduced opacity by default */
  transition: color 0.18s ease;
}

/* Legacy vendor support */
.nexml-hero-form input::-webkit-input-placeholder,
.nexml-hero-form textarea::-webkit-input-placeholder {
  color: rgb(25, 2, 72);
}
.nexml-hero-form input:-ms-input-placeholder,
.nexml-hero-form textarea:-ms-input-placeholder {
  color: rgb(25, 2, 72);
}
.nexml-hero-form input::-ms-input-placeholder,
.nexml-hero-form textarea::-ms-input-placeholder {
  color: rgb(25, 2, 72);
}
.page-template-nextml-landing .submit-btn .wpcf7-form-control:hover,
.page-template-nextml-landing .submit-btn .wpcf7-form-control:focus {
  background: rgb(25, 2, 72) !important;
  border-color: rgb(25, 2, 72) !important;
}

.nexml-header-right .call {
  margin-right: 30px;
  font-weight: 600;
  color: rgb(25, 2, 72);
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.nexml-header-right .call svg {
  margin-right: 3px;
  flex-shrink: 0;
}
.nexml-header-right .call:hover,
.nexml-header-right .call:focus {
  color: #754fc7;
}

.nexml-hero-form br {
  display: none !important;
}

.nexml-header-right {
  display: -webkit-box; /* Old Safari, iOS */
  display: -ms-flexbox; /* IE 10 */
  display: -webkit-flex; /* Safari 6.1+, old Chrome */
  display: flex; /* Modern browsers */
  -webkit-box-align: center; /* Old Safari, iOS */
  -ms-flex-align: center; /* IE 10 */
  -webkit-align-items: center; /* Safari 7+ */
  align-items: center; /* Modern browsers */
}

@media (max-width: 1580px) {
  .nexml-hero-form .main-title {
    font-size: 22px;
    line-height: 32px;
  }
  .nexml-header-right .call svg {
    width: 15px;
    height: auto;
    position: relative;
    top: 1px;
  }
  .nexml-hero-form-inner {
    padding: 15px 20px 20px;
  }

  .nexml-hero-form .common-btn {
    height: 45px;
    line-height: 45px;
  }
  .nexml-hero-form input {
    height: 40px;
  }

  .nexml-header-right {
    display: flex;
    align-items: center;
  }

  .nexml-hero-form textarea {
    height: 100px;
  }
  .nexml-hero-form input {
    margin: 7px 0;
  }
  .nexml-hero-form input,
  .nexml-hero-form textarea {
    border-radius: 10px;
  }

  .nexml-header-right .call {
    margin-right: 15px;
  }
}

@media (max-width: 991px) {
  .nexml-hero-form {
    margin-top: 30px;
  }
  @media (max-width: 479px) {
    .nexml-header .l-header-inner {
      flex-direction: column;
    }
    .cs-header.nexml-banner {
      padding-top: 120px;
    }
    .nexml-header-right {
      margin-top: 15px;
    }
  }
}

/* Hero Section */
.credit-u-hero-wrapper {
  margin-top: -126px;
  padding-top: 180px;
  padding-bottom: 60px;
  position: relative;
  background-position: center center !important;
  background-size: 100% !important;
  background-repeat: no-repeat !important;
  height: 100%;
  width: 100%;
  background: url(../images/cu-overview-bg.png);
}
.credit-u-hero-section {
  border-radius: 20px;
  padding: 60px;
  margin-top: 100px;
  position: relative;
  background-position: center center !important;
  background-size: 100% !important;
  background-repeat: no-repeat !important;
  z-index: 1;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.credit-u-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  z-index: 0;
  width: 80%;
  background:;
}
.credit-u-hero-section:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  z-index: 0;
  width: 80%;
  background: linear-gradient(
    to right,
    rgba(0, 85, 118, 1) 0%,
    rgba(0, 85, 118, 0.9) 30%,
    rgba(0, 85, 118, 0.7) 60%,
    rgba(0, 85, 118, 0) 100%
  );
}
.credit-u-hero-section .hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.credit-u-hero-section .hero-content .para {
  margin-bottom: 50px;
}

.credit-u-hero-section .hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
}

.credit-u-hero-section .hero-content p {
}

.credit-u-hero-section .hero-image {
  text-align: center;
}

.credit-u-hero-section .hero-image img {
  max-width: 100%;
  border-radius: 12px;
}

/* Smarter Decisions Section */
.credit-u-smarter-decisions {
  background: white;
  margin-top: 0px;
}

.credit-u-smarter-decisions .decisions-feature {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  place-items: flex-end;
}

.credit-u-smarter-decisions .decision-card {
  background: #e6eff2;
  position: relative;
  padding: 30px;
  display: flex;
  border-radius: 15px;
  text-align: left;
}
.credit-u-smarter-decisions .decision-card:first-child:before {
  display: none;
}
.credit-u-smarter-decisions .decision-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: -70px;
  background: url(../images/up-arrow-c.svg);
  width: 49px;
  height: 60px;
  background-size: 49px 60px;
}
.credit-u-smarter-decisions .decision-card:first-child {
  width: 70%;
}
.credit-u-smarter-decisions .decision-card:nth-child(2n) {
  width: 80%;
}
.credit-u-smarter-decisions .decision-card:nth-child(3n) {
  width: 90%;
}
.credit-u-smarter-decisions .decision-card:last-child {
  width: 100%;
}

.credit-u-smarter-decisions .decision-card h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
}

.credit-u-smarter-decisions .decision-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.credit-u-smarter-decisions .decisions-image {
  border-radius: 12px;
  min-height: 380px;
  color: rgba(0, 0, 0, 0.2);

  background-repeat: no-repeat;
  background-size: cover; /* 🔑 MOST IMPORTANT */
  background-position: center; /* 🔑 */

  border-radius: 12px;
  width: 100%;
  min-height: 530px; /* 🔑 REQUIRED */
}

/* What is Decision Intelligence */
.credit-u-what-section {
  background: #ecf4f8;
}

.credit-u-what-section .intelligence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 20px;
}
.what-sec-thumb {
  position: relative;
  min-height: 800px;
  width: 100%;
  border-radius: 40px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
}
.what-sec-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -25px;
  border-radius: 20px;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    to bottom,
    rgba(236, 244, 248, 1) 0%,
    rgba(236, 244, 248, 0.7) 50%,
    rgba(236, 244, 248, 0) 100%
  );
  transform: rotate(180deg);
  border-radius: 40px;
  opacity: 1;
}

.credit-u-what-section .common-btn {
  margin-top: 20px;
}

.credit-u-what-section .intel-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.credit-u-what-section .intel-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #00a4e3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.credit-u-what-section .title-wrapper p {
  text-align: left;
  width: 100%;
  max-width: 100%;
  margin-bottom: 35px;
}

.credit-u-what-section .intel-card h5 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 15px;
}

.credit-u-what-section .intel-card p {
  margin-bottom: 0;
}

.credit-u-what-section .learn-btn {
  background: var(--cyan);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
}

.credit-u-what-section .learn-btn:hover {
  background: #00a8c1;
}

/* NexML Built For Section */
.credit-u-nexml-section {
  background: white;
}

.credit-u-nexml-section .nexml-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.credit-u-nexml-section .nexml-grid .nexml-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}
.credit-u-nexml-section .nexml-grid .nexml-card:first-child {
  border: 1px solid #70def5;
  background: #f1fcfe;
}
.credit-u-nexml-section .nexml-grid .nexml-card:nth-child(2n) {
  border: 1px solid #8be0a4;
  background: #f4fcf6;
}
.credit-u-nexml-section .nexml-grid .nexml-card:nth-child(3n) {
  border: 1px solid #b497e7;
  background: #f8f5fd;
}
.credit-u-nexml-section .nexml-grid .nexml-card:last-child {
  border: 1px solid #f6cf71;
  background: #fffbf1;
}

.credit-u-nexml-section .nexml-grid .nexml-card h5 {
  margin: 20px 0;
}

.credit-u-nexml-section .nexml-grid .nexml-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.credit-u-nexml-grid .nexml-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.credit-u-nexml-grid .nexml-icon.blue {
  background: rgba(15, 90, 148, 0.2);
  color: var(--primary-blue);
}

.credit-u-nexml-grid .nexml-icon.cyan {
  background: rgba(0, 188, 212, 0.2);
  color: var(--cyan);
}

.credit-u-nexml-grid .nexml-icon.purple {
  background: rgba(156, 39, 176, 0.2);
  color: #9c27b0;
}

.credit-u-nexml-grid .nexml-icon.orange {
  background: rgba(255, 152, 0, 0.2);
  color: #ff9800;
}

.credit-u-nexml-grid .nexml-card h5 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark-text);
}

.credit-u-nexml-grid .nexml-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.credit-u-decision-areas-section .area-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border-top: 4px solid var(--primary-blue);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.credit-u-decision-areas-section .area-card h5 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark-text);
}

.credit-u-decision-areas-section .area-card p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.cu-section {
  background: linear-gradient(180deg, #00a3d9, #006f9e);
  border-radius: 24px;
}

.cu-section .highlight {
  position: relative;
}
.cu-section .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background: #ffc107;
  border-radius: 10px;
}

.cu-section .info-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(6px);
}
.cu-section .info-card h3 {
  color: #fff;
  font-size: 26px;
  color: #fff;
}

.cu-section .info-card .icon {
  font-size: 28px;
  margin-bottom: 12px;
  width: 80px;
  height: 80px;
  background: #fff;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cu-section .image-wrap img {
  border-radius: 20px;
}

.cu-section .main-title {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.cu-why-innovatics .feature-card {
  background: linear-gradient(180deg, #dff3ff, #c8ecff);
  border-radius: 24px;
  padding: 15px;
}

.cu-why-innovatics .feature-card p {
  color: #4f5d6a;
  font-size: 15px;
}

.cu-why-innovatics .feature-card h5 {
  margin: 20px 0 10px;
}

/* ================================
   ACCORDION WRAPPER
================================ */
.credit-u-decision-areas-section .loan-accordion {
  position: relative;
  padding-left: 40px;
}

.credit-u-decision-areas-section .loan-accordion .accordion-button .view-more {
  color: #16abe3;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
}

/* ================================
   TIMELINE
================================ */
.credit-u-decision-areas-section .timeline {
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #9adfff,
    #9adfff 6px,
    transparent 6px,
    transparent 14px
  );
}

.credit-u-decision-areas-section .timeline-item {
  position: relative;
  margin-bottom: 22px;
}

.credit-u-decision-areas-section .timeline-dot {
  position: absolute;
  left: -60px;
  top: 28px;
  width: 40px;
  height: 40px;
  background: #cedadd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.credit-u-decision-areas-section .timeline-item.active .timeline-dot {
  background: #16abe3;
}

/* ================================
   ACCORDION CARD
================================ */
.credit-u-decision-areas-section .loan-accordion .accordion-header {
  background: #eef8ff;
  border-radius: 20px;
}

.credit-u-decision-areas-section .loan-accordion .accordion-collapse {
  padding-top: 0 !important;
  top: 0 !important;
  border: 0 !important;
}

.credit-u-decision-areas-section
  .loan-accordion
  .timeline-item.active
  .accordion-header {
  border: 1px solid #00a4e3;
}

.credit-u-decision-areas-section .loan-accordion .accordion-button {
  background: #fff;
  border: 1px solid #c7d4d9;
  border-radius: 20px !important;
  box-shadow: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.credit-u-decision-areas-section
  .loan-accordion
  .accordion-button:not(.collapsed) {
  background: #f2fafd;
  border-color: #00a4e3;
}

.credit-u-decision-areas-section .loan-accordion p {
  color: #576076;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

.credit-u-decision-areas-section .loan-accordion .accordion-button::after {
  display: none;
}

/* ================================
   RIGHT IMAGE FIXED AREA
================================ */
.credit-u-decision-areas-section .right-image {
  position: sticky;
  top: 120px;
}

.credit-u-decision-areas-section .loan-img {
  display: none;
}

.credit-u-decision-areas-section .loan-img.active {
  display: block;
}

.cu-section .middle-thumb {
  position: relative;
}

.cu-section .middle-thumb .common-btn {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 30px;
}

.single-nexml_blog .post-thumbnail,
.single-nexml_blog .entry-header {
  display: none !important;
}

.single-nexml_blog .comment-section {
  display: none !important;
}

.blog-content-middle .common-faq br {
  display: none !important;
}

/* Responsive */
@media (max-width: 1580px) {
  .credit-u-hero-section {
    padding: 30px;
    min-height: 450px;
  }

  .credit-u-hero-section .hero-content .para {
    margin-bottom: 30px;
  }
  .credit-u-smarter-decisions .decision-card {
    padding: 15px;
  }
  .credit-u-smarter-decisions .decision-card h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
  }
  .credit-u-smarter-decisions .decisions-image {
    min-height: 360px;
  }
  .credit-u-what-section .intel-card {
    padding: 20px;
  }
  .credit-u-what-section .intel-icon {
    height: 55px;
    width: 55px;
    margin-bottom: 10px;
  }
  .credit-u-what-section .intel-card h5 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .what-sec-thumb {
    min-height: 650px;
  }
  .cu-section .info-card h3 {
    color: #fff;
    font-size: 22px;
    color: #fff;
  }
  .cu-section .info-card .icon img {
    width: 35px;
    height: auto;
  }
  .cu-section .info-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 20px;
  }
  .credit-u-smarter-decisions .decision-card:before {
    width: 26px;
    height: 40px;
    background-size: 26px 40px;
  }

  .credit-u-hero-wrapper {
    margin-top: -110px;
    padding-top: 130px;
    margin-bottom: -50px;
  }
  .credit-u-nexml-section .nexml-grid .nexml-card {
    padding: 15px;
  }
  .credit-u-nexml-section .nexml-grid .nexml-card .nexml-icon img {
    width: 55px;
    height: auto;
  }
  .credit-u-nexml-section .nexml-grid .nexml-card h5 {
    margin: 10px 0;
  }
}

@media (max-width: 1024px) {
  .credit-u-hero-section {
    background-size: cover !important;
  }
  .intelligence-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .credit-u-smarter-decisions .decisions-image {
    margin-top: 30px;
  }
  .cu-section .col-lg-4:last-child .info-card:last-child {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .credit-u-hero-section .hero-content h1 {
    font-size: 1.8rem;
  }

  .credit-u-hero-section .hero-content p {
    font-size: 1rem;
  }

  .credit-u-smarter-decisions .decisions-feature {
    grid-template-columns: 1fr;
  }

  .credit-u-nexml-section .nexml-grid {
    grid-template-columns: 1fr;
  }

  .credit-u-what-section .intelligence-grid {
    grid-template-columns: 1fr;
  }

  .credit-u-what-section .how-grid {
    grid-template-columns: 1fr;
  }

  .credit-u-decision-areas-section .areas-grid {
    grid-template-columns: 1fr;
  }
  .credit-u-decision-areas-section .timeline {
    left: 19px;
    top: 0;
    bottom: 0;
  }
  .credit-u-decision-areas-section .timeline-dot {
    position: absolute;
    left: -46px;
    top: 28px;
    width: 30px;
    height: 30px;
  }

  .cu-section .middle-thumb {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .feature-card-thumb {
    display: flex;
    justify-content: center;
  }
  .cu-section .info-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 574px) {
  .credit-u-hero-section {
    padding: 30px;
    min-height: 450px;
    margin: 55px 15px 0;
    width: calc(100% - 30px);
  }
  .credit-u-smarter-decisions .decisions-feature {
    gap: 15px;
  }
  .credit-u-smarter-decisions .decisions-image {
    margin-top: 20px;
  }
  .what-sec-thumb {
    min-height: 340px;
    margin-bottom: 40px;
  }
  .credit-u-decision-areas-section .loan-accordion .accordion-button h5 {
    font-size: 19px;
  }
}

.real-creact-u-sec .quote-box {
  padding: 30px;
  border-left: 3px solid #00a4e3;
  background: #e5f3f9;
}

.real-creact-u-sec .quote-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.real-creact-u-sec .quote-box p {
  margin: 0;
  color: #576076;
}

.no-block-ai-sec {
  background: #ecf4f8;
}
.no-block-ai-sec ul {
  position: relative;
  border-left: 2px dashed #16abe3;
  margin-left: 16px;
}
.no-block-ai-sec ul li {
  position: relative;
  padding: 20px 0 20px 28px;
  font-size: 16px;
  color: #005576;
  font-weight: 700;
}
.no-block-ai-sec .para p {
  margin-bottom: 35px;
}
.no-block-ai-sec ul li:first-child {
  padding-top: 0;
}

.no-block-ai-sec ul li:first-child::before {
  top: -10px;
}
.no-block-ai-sec ul li:last-child {
  padding-bottom: 0;
}

.no-block-ai-sec ul li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 10px;
  background: url(../images/check-box-ai.svg);
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  background-size: 40px 40px;
}
.credit-u-nexml-section.trans-bg .nexml-card {
  border: 1px solid #bfe6f5 !important;
  background: #fff !important;
  box-shadow: none !important;
}
.credit-u-nexml-section.trans-bg .nexml-card .nexml-icon {
  background: linear-gradient(
    to bottom,
    rgba(0, 164, 227, 0),
    rgba(0, 164, 227, 0.1)
  );
  border-radius: 15px;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 164, 227, 0.15);
}

.product-analytics-section.one-platform-section .pro-thumb-right {
  top: 90px;
}
.one-platform-section .pro-thumb-right::before {
  content: "";
  position: absolute;
  width: 50%;
  left: 0px;
  top: 0;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.7) 42%,
    rgba(255, 255, 255, 0) 100%
  );
}

.data-eng-proess.why-inn-cu {
  background: #fff !important;
}

.data-eng-proess.why-inn-cu .box-wrapper .para {
  font-size: 24px;
  font-weight: 700;
}
.hm-cta-section.tran-bg {
  background: transparent !important;
  margin: 0 auto;
}
.hm-cta-section.tran-bg .hm-cta-section-inner {
  background: linear-gradient(to top, #009fdc 0%, #005576 100%);
  max-width: 1270px;
  margin: 0 auto;
  border-radius: 30px;
}

.hm-cta-section.tran-bg p {
  color: #fff;
}

.hm-cta-section.tran-bg .common-btn.white {
  background: #fff;
  color: #096284;
}

.hm-cta-section.tran-bg .common-btn.white:hover,
.hm-cta-section.tran-bg .common-btn.white:focus {
  background: #fff !important;
}

.hm-cta-section.tran-bg .common-btn.trans {
  background: transparent;
  border: 1px solid #00a4e3;
  color: #fff;
}

.supply-chain-middle.nexml-grad-build-sec ul li {
  position: relative;
  padding: 12px 0 12px 30px;
  font-size: 18px;
  color: #005576;
}
.supply-chain-middle.nexml-grad-build-sec ul {
  margin-bottom: 15px;
}

.supply-chain-middle.nexml-grad-build-sec ul li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 16px;
  background: url(../images/check-build-point.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
}

.decision-area-sec .col-lg-4 {
  position: relative;
}
.decision-area-sec {
  overflow: hidden;
}
.decision-area-sec .col-lg-4:first-child::after {
  content: "";
  position: absolute;
  right: -46px;
  top: 50%;
  margin-top: -5px;
  transform: translateX(-50%);
  background: url(../images/chain-p-line.svg);
  background-repeat: no-repeat;
  width: 76px;
  height: 16px;
  background-size: 76px 16px;
}

.decision-area-sec .col-lg-4:nth-child(2)::after {
  content: "";
  position: absolute;
  right: -45px;
  top: 50%;
  margin-top: -5px;
  transform: translateX(-50%);
  background: url(../images/chain-p-line.svg);
  background-repeat: no-repeat;
  width: 76px;
  height: 16px;
  background-size: 76px 16px;
}

.decision-area-sec .items {
  border: 2px solid transparent;
  border-spacing: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 140px;
  padding: 15px;
  border: 1px solid #ecf4f8;
}

.decision-area-sec .col-lg-4:not(:last-child) .items {
  max-width: calc(100% - 60px);
}

.decision-area-sec .items .thumb {
  border: 1px solid #00a4e3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  width: 140px;
  min-width: 140px;
  background: #e5f3f9;
}

.decision-area-sec .items h3 {
  font-size: 26px;
}

.decision-area-bottom {
  border: 1px solid #bfe6f5;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.decision-area-bottom p {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
  color: #121212;
}

.humans-in-control-sec .items .thumb img {
  border-radius: 15px;
}
.humans-in-control-sec .items .thumb {
  padding-bottom: 15px;
}

.humans-in-control-sec .items p {
  font-size: 24px;
  font-weight: 600;
  color: #121212;
}
.governce-design-sec {
  background: transparent !important;
}
.governce-design-sec .data-driven-thumb img,
.inteliggence-nexml-sec .data-driven-thumb img {
  border-radius: 15px;
}

.inteliggence-nexml-sec {
  background: #ecf4f8;
}

.inteliggence-nexml-sec ul {
  position: relative;
  border-left: 2px dashed #16abe3;
  margin: 20px 0 20px 16px;
}
.inteliggence-nexml-sec ul li {
  position: relative;
  padding: 20px 0 20px 28px;
  font-size: 16px;
  color: #005576;
  font-weight: 700;
}

.inteliggence-nexml-sec ul li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 14px;
  background: #16abe3;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-size: 35px 35px;
}
.inteliggence-nexml-sec ul li:first-child {
  padding-top: 0;
}
.inteliggence-nexml-sec ul li:last-child {
  padding-bottom: 0;
}
.inteliggence-nexml-sec ul li:first-child::before {
  content: "1";
  top: -4px;
}
.inteliggence-nexml-sec ul li:nth-child(2)::before {
  content: "2";
}
.inteliggence-nexml-sec ul li:last-child::before {
  content: "3";
}

.governce-design-sec ul {
  border: 0;
  margin-left: 0;
  margin-bottom: 30px;
}

.governce-design-sec ul li {
  position: relative;
  padding: 20px 0 20px 37px;
}

.governce-design-sec.no-block-ai-sec ul li::before {
  left: 0;
}

.governce-design-sec ul li:not(:last-child):after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: url(../images/points-line-bg.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 3px;
  background-size: cover;
}

.design-to-work-section .items {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.design-to-work-section .items .thumb {
  height: 140px;
  width: 140px;
  min-width: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid red;
}
.design-to-work-section .items .thumb .thumb-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid #fff;
  padding: 5px;
  height: 130px;
  width: 130px;
  border-radius: 130px;
  min-width: 130px;
  box-sizing: border-box;
}
.design-to-work-section .items .thumb .thumb-inner img {
  width: 80px;
  height: auto;
}
.design-to-work-section .col-lg-3:first-child .items .thumb {
  border: 1px solid #70def5;
}
.design-to-work-section .col-lg-3:nth-child(2) .items .thumb {
  border: 1px solid #16a34a;
}
.design-to-work-section .col-lg-3:nth-child(3) .items .thumb {
  border: 1px solid #7341ca;
}
.design-to-work-section .col-lg-3:last-child .items .thumb {
  border: 1px solid #f4b92d;
}

.design-to-work-section .col-lg-3:first-child .items .thumb .thumb-inner {
  background: #f1fcfe;
}
.design-to-work-section .col-lg-3:nth-child(2) .items .thumb .thumb-inner {
  background: #f1fcfe;
}
.design-to-work-section .col-lg-3:nth-child(3) .items .thumb .thumb-inner {
  background: #f1fcfe;
}
.design-to-work-section .col-lg-3:last-child .items .thumb .thumb-inner {
  background: #f1fcfe;
}
.design-to-work-section .items h3 {
  font-size: 26px;
  margin: 15px 0 0;
}

.inteliggence-nexml-sec .inteli-para ul li:before {
  content: "" !important;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 8px;
  left: -30px;
}

.inteliggence-nexml-sec .inteli-para ul li {
  border: 1px solid #00a4e3;
  padding: 5px 8px;
  border-radius: 20px;
  background: #f2fafd;
  margin: 15px 0 15px 20px;
  max-width: max-content;
}
.inteliggence-nexml-sec .inteli-para ul li:first-child::before {
  top: 7px;
}

.decision-areas-topbar {
  border: 1px solid #00a4e3;
  border-radius: 20px;
  padding: 25px;
}

@media (max-width: 1580px) {
  .credit-u-nexml-section.trans-bg .nexml-card .nexml-icon {
    width: 80px;
    height: 80px;
  }
  .credit-u-nexml-section.trans-bg .nexml-grid .nexml-card {
    padding: 30px;
  }
  .credit-u-nexml-section.trans-bg .nexml-card p {
    margin: 0;
  }
  .product-analytics-section.one-platform-section .pro-thumb-right {
    max-width: 550px;
  }

  .hm-cta-section.tran-bg {
    max-width: 1150px;
  }
  .no-block-ai-sec ul li::before {
    height: 30px;
    width: 30px;
    background-size: 30px 30px;
    top: 17px;
    left: -17px;
  }
  .no-block-ai-sec ul li:first-child::before {
    top: -3px;
  }
  .supply-chain-middle.nexml-grad-build-sec ul li {
    font-size: 15px;
    padding: 7px 0px 7px 28px;
  }
  .supply-chain-middle.nexml-grad-build-sec ul li::before {
    top: 7px;
  }
  .decision-area-bottom p {
    font-size: 18px;
  }
  .decision-area-bottom {
    padding: 10px;
  }
  .humans-in-control-sec .items p {
    font-size: 20px;
  }
  .decision-area-sec .items .thumb {
    height: 110px;
    width: 110px;
    min-width: 110px;
  }
  .decision-area-sec .items .thumb img {
    width: 65px;
    height: auto;
  }
  .decision-area-sec .items h3 {
    font-size: 22px;
  }
  .design-to-work-section .items h3 {
    font-size: 22px;
    margin: 15px 0 0;
  }
  .design-to-work-section .items .thumb .thumb-inner img {
    width: 65px;
  }
  .decision-area-sec .col-lg-4:first-child::after,
  .decision-area-sec .col-lg-4:nth-child(2)::after {
    width: 70px;
    height: 16px;
    background-size: 57px 10px;
  }
}

@media (max-width: 767px) {
  .inner-banner.credit-pages-banner {
    min-height: max-content;
    padding-top: 74px;
    padding-bottom: 20px;
  }

  .real-creact-u-sec .main-title {
    text-align: center;
    margin-top: 15px;
  }
  .real-creact-u-sec .quote-box {
    padding: 10px;
  }
  .real-creact-u-sec .quote-box {
    margin-bottom: 20px;
  }
  .real-creact-u-sec .quote-box h3 {
    font-size: 18px;
  }
  .credit-u-nexml-section.trans-bg .nexml-grid .nexml-card {
    padding: 20px;
  }

  .no-block-ai-sec .data-driven-thumb {
    padding-right: 0;
    margin-top: 30px;
  }
  .no-block-ai-sec ul li {
    padding: 5px 0 5px 15px;
  }
  .no-block-ai-sec ul li::before {
    height: 20px;
    width: 20px;
    background-size: 20px 20px;
    top: 17px;
    left: -11px;
  }
  .no-block-ai-sec ul li::before {
    top: 8px;
  }
  .no-block-ai-sec ul li:first-child::before {
    top: 1px;
  }
  .no-block-ai-sec ul li {
    font-size: 14px;
  }

  .no-block-ai-sec .para p {
    margin-bottom: 15px;
  }
  .product-analytics-section.one-platform-section .pro-thumb-right {
    top: 0;
  }

  .decision-area-sec .col-lg-4:first-child::after,
  .decision-area-sec .col-lg-4:nth-child(2)::after {
    display: none;
  }
  .decision-area-sec .items {
    margin: 8px 0;
  }
  .decision-area-bottom {
    flex-direction: column;
  }
  .no-block-ai-sec.governce-design-sec ul li {
    padding: 5px 0 5px 27px;
  }

  .design-to-work-section .items h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .decision-area-sec .col-lg-4:not(:last-child) .items {
    max-width: calc(100% - 0);
  }
  .humans-in-control-sec .items p {
    font-size: 18px;
  }

  .lending-risk-decisions-sec .tab-right-content .common-btn {
    display: block;
  }
}

@media (max-width: 574px) {
  .decision-area-sec .items .thumb {
    height: 80px;
    width: 80px;
    min-width: 80px;
  }

  .decision-area-sec .items .thumb img {
    width: 50px;
    height: auto;
  }
  .decision-area-sec .items {
    padding: 8px;
  }
  .decision-area-sec .items h3 {
    font-size: 20px;
  }
  .decision-areas-topbar p {
    font-size: 16px;
  }
}

.cuso-led-delivery-sec .items {
  flex-direction: column;
  max-width: 100% !important;
  text-align: center;
  border: 0;
  align-items: center;
  display: flex;
}

.cuso-led-delivery-sec .items h3 {
  text-align: center;
  font-size: 24px;
  position: relative;
  top: -40px;
  margin-bottom: -40px;
}

.parner-friendly-sec .items .boxes {
  padding: 30px;
  border-radius: 25px;
  margin: 30px 0;
  font-size: 22px;
  line-height: 32px;
  color: #121212;
  font-weight: 600;
}

.parner-friendly-sec .items .boxes.first {
  border: 1px solid #8be0a4;
  background: #c5efd1;
}

.parner-friendly-sec .items .boxes.second {
  border: 1px solid #f6cf71;
  background: #fae7b8;
}

.parner-friendly-sec .items .boxes.third {
  border: 1px solid #ffa67f;
  background: #ffd2bf;
}

.parner-friendly-sec .items .boxes.fourth {
  border: 1px solid #b497e7;
  background: #d9cbf3;
}

.supported-shared-sec ul li::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-repeat: no-repeat;
  width: 72px;
  height: 50px;
  background-size: 75px 50px;
  background-repeat: no-repeat !important;
}
.supported-shared-sec ul {
  border: 0;
}
.supported-shared-sec ul li {
  padding-left: 85px;
}
.supported-shared-sec ul li:first-child:before {
  background: url(../images/i-shared-one.svg);
}
.supported-shared-sec ul li:nth-child(2):before {
  background: url(../images/i-shared-two.svg);
}
.supported-shared-sec ul li:nth-child(3):before {
  background: url(../images/i-shared-three.svg);
}
.supported-shared-sec ul li:last-child:before {
  background: url(../images/i-shared-four.svg);
}

.supported-shared-sec {
  background: #fff;
}

.supported-shared-sec .data-driven-thumb img {
  border-radius: 15px;
}
.decision-intlligence-sec {
  background: #ecf4f8;
}
.decision-intlligence-sec ul li {
  position: relative;
  border: 1px solid #16abe3;
  border-radius: 0 45px 45px 0;
  padding: 10px 10px 10px 30px;
  color: #000;
  font-size: 20px;
  line-height: 30px;
  min-height: 85px;
  display: flex;
  font-weight: 600;
  align-items: center;
  margin: 15px 0;
  counter-increment: step;
  position: relative;
}
.decision-intlligence-sec ul li .thumb {
  position: absolute;
  width: 65px;
  min-width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #16abe3;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.decision-intlligence-sec ul li::before {
  content: "";
  position: absolute;
  left: -26px;
  bottom: 42px;
  width: 55px;
  height: 47px;
  background-size: 55px 47px !important;
  background-repeat: no-repeat !important;
}
.decision-intlligence-sec ul {
  margin-left: 27px;
  margin-top: 40px;
}
.decision-intlligence-sec ul li:first-child::before {
  background: url(../images/number-four-r.svg);
}
.decision-intlligence-sec ul li:nth-child(2)::before {
  background: url(../images/number-three-r.svg);
}
.decision-intlligence-sec ul li:nth-child(3)::before {
  background: url(../images/number-two-r.svg);
}
.decision-intlligence-sec ul li:last-child::before {
  background: url(../images/number-one-r.svg);
}

.decision-intlligence-sec .data-driven-thumb img {
  border-radius: 15px;
}
.eng-modal-section .items {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.eng-modal-section .items h3 {
  font-size: 24px;
  line-height: 34px;
  margin: 20px 0 0;
  text-align: center;
}

.collaboration-sec ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.collaboration-sec ul li {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  border-radius: 45px;
  border: 1px solid #00a4e3;
  background: #f2fafd;
  gap: 15px;
}

.collaboration-sec ul li {
}

.collaboration-sec ul li h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  padding: 0 15px;
}

.collaboration-sec ul li .thumb {
  height: 90px;
  width: 90px;
  min-width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00a4e3;
}
.decision-areas-topbar {
  background: #f2fafd;
}
.decision-areas-topbar .left-para {
  width: 60%;
}

.decision-areas-topbar .right-para {
  width: 30%;
}
.decision-areas-topbar p {
  margin: 0;
  font-size: 22px;
  line-height: 32px;
}

.decision-areas-topbar .right-para p {
  color: #005576;
}

.hm-solve-problems.lending-risk-decisions-sec .tab-right-content .common-btn {
  display: inline-block;
}

.hm-solve-problems.lending-risk-decisions-sec .tab-right-content .title-label {
  background: #d9f1fa;
  color: #005576;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 15px;
  border-radius: 8px;
}

.hm-solve-problems.lending-risk-decisions-sec {
  background: #fff !important;
}
.hm-solve-problems.lending-risk-decisions-sec::before,
.hm-solve-problems.lending-risk-decisions-sec::after {
  display: none;
}

.decision-intlligence-sec.one-platform-section ul {
  counter-reset: step;
  margin-left: 0;
}
.decision-intlligence-sec.one-platform-section ul li {
  position: relative;
  padding-left: 90px;
  counter-increment: step; /* increment per li */
  border-radius: 70px;
}
.decision-intlligence-sec.one-platform-section ul li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0px;
  width: 70px;
  height: 70px;
  background: #00a4e3;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 70px;
}

.eng-modal-section.credt-union-last-sec .thumb {
  height: 90px;
  width: 90px;
  border-radius: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eng-modal-section.credt-union-last-sec .col-lg-4:first-child .thumb {
  background: #13b6d8;
}
.eng-modal-section.credt-union-last-sec .col-lg-4:nth-child(2) .thumb {
  background: #16a34a;
}

.eng-modal-section.credt-union-last-sec .col-lg-4:last-child .thumb {
  background: #7341ca;
}
.eng-modal-section.credt-union-last-sec .col-lg-4:first-child .items {
  background-color: #f1fcfe;
  border: 1px solid #70def5;
}
.eng-modal-section.credt-union-last-sec .col-lg-4:nth-child(2) .items {
  background-color: #f4fcf6;
  border: 1px solid #8be0a4;
}
.eng-modal-section.credt-union-last-sec .col-lg-4:last-child .items {
  background-color: #f8f5fd;
  border: 1px solid #b497e7;
}
.eng-modal-section.credt-union-last-sec .items {
  padding: 80px 20px 20px;
  border-radius: 25px;
  margin-top: 40px;
}

.eng-modal-section.credt-union-last-sec .items .thumb {
  position: relative;
  top: -120px;
  margin-bottom: -120px;
}
.eng-modal-section.credt-union-last-sec .items h3 {
  margin: 20px 0 0;
  font-size: 22px;
  color: #111827;
}

.auto-loan-wrapper .label-title {
  max-width: max-content;
  border-radius: 35px;
  border: 1px solid #009dd9;
  padding: 5px 10px;
  font-size: 14px;
  color: #005576;
  margin-bottom: 15px;
}

.auto-loan-wrapper .main-title {
  font-size: 32px;
  line-height: 42px;
}

.auto-loan-common-sec .point-box {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.auto-loan-common-sec .point-box li {
  position: relative;
  padding: 5px 10px 5px 35px;
  background: #e5f3f9;
  border-radius: 8px;
}

.auto-loan-common-sec .point-box li::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 22px;
  height: 22px;
  background: url(../images/check-true-p.svg);
  background-size: 22px 22px !important;
  background-repeat: no-repeat !important;
}

.auto-loan-common-sec .number-points ul {
  counter-reset: step;
  margin-left: 0;
}

.auto-loan-common-sec .number-points ul li {
  position: relative;
  padding-left: 50px;
  counter-increment: step;
  font-size: 18px;
  color: #121212;
  margin: 18px 0;
  font-weight: 600;
}

.auto-loan-common-sec .number-points ul li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -3px;
  width: 34px;
  height: 34px;
  background: #005576;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 34px;
}

.auto-loan-common-sec .quote-box {
  padding: 20px;
  border-left: 3px solid #00a4e3;
  background: #e5f3f9;
  margin: 25px 0 0;
}

.auto-loan-common-sec .quote-box p {
  font-size: 17px;
  color: #005576;
  margin: 0;
}

.decisions-involved-sec .label-title,
.trending-score-sec .label-title,
.output-decision-sec .label-title {
  margin: 0 auto 15px;
}

.decisions-involved-sec .decision-circle {
  min-width: 140px;
  height: 140px;
  width: 140px;
}

.decisions-involved-sec .decision-grid {
  position: relative;
}

.decisions-involved-sec .decision-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
  width: 200px;
  height: 200px;
  background: url(../images/auto-lending-pattern.png);
  background-size: 200px 200px !important;
  background-repeat: no-repeat !important;
  margin-top: -29px;
}

.decisions-involved-sec .decision-grid.last::before {
  display: none;
}

.decisions-involved-sec .content-box h4 {
  font-size: 24px;
  margin-bottom: 15px;
}

.trending-score-sec .items ul {
}

.trending-score-sec .items ul {
  counter-reset: step;
  margin-left: 0;
}

.trending-score-sec .items ul li {
  position: relative;
  padding: 30px 15px 30px 90px;
  counter-increment: step;
  font-size: 22px;
  color: #121212;
  margin: 18px 0;
  font-weight: 600;
  background: #e5f3f9;
  border-radius: 15px;
  min-height: 104px;
  display: flex;
  align-items: center;
}

.trending-score-sec .items.last ul {
  counter-reset: step 3;
}

.trending-score-sec .items ul li::before {
  content: counter(step);
  position: absolute;
  left: -12px;
  top: 50%;
  margin-top: -9px;
  transform: translateY(-50%);
  width: 90px;
  height: 66px;
  background: url(../images/numbers-pattern.svg);
  background-size: 90px 66px !important;
  background-repeat: no-repeat !important;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 14px;
}

.trending-score-sec .items .thumb {
  display: flex;
  align-items: center;
  justify-content: center;
}
.decision-intlligence-sec.one-platform-section.nexml-support-decision ul li {
  border: 0;
  padding: 0;
  min-height: none;
}

.decision-intlligence-sec.one-platform-section.nexml-support-decision ul li p {
  border: 1px solid #00a4e3;
  min-height: 80px;
  display: flex;
  font-size: 20px;
  line-height: 28px;
  align-items: center;
  border-radius: 80px;
  padding: 8px 25px;
  background-color: #f2fafd;
  margin: 0;
  width: 100%;
  margin-left: 100px;
}

.decision-intlligence-sec.one-platform-section.nexml-support-decision ul {
  margin-bottom: 30px;
}

.decision-intlligence-sec.one-platform-section.nexml-support-decision
  ul
  li::before {
  width: 80px;
  height: 80px;
  background: #005576;
}

.credit-u-nexml-section.output-decision-sec .nexml-card .nexml-icon {
  border-radius: 50%;
  min-width: 130px;
}
.credit-u-nexml-section.output-decision-sec .nexml-card {
  display: flex;
  align-items: center;
  gap: 20px;
}
.credit-u-nexml-section .nexml-grid .nexml-card h5 {
  font-size: 26px;
}
.eng-modal-section.credt-union-last-sec.team-exp-sec .items {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.eng-modal-section.credt-union-last-sec.team-exp-sec .items .thumb {
  position: relative;
  top: 0px;
  margin-bottom: 0px;
}

.eng-modal-section.credt-union-last-sec.team-exp-sec .items .content-box {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eng-modal-section.credt-union-last-sec.team-exp-sec .col-lg-6 .items {
  padding: 15px 15px 15px 50px;
  position: relative;
  margin: 50px 0 50px 80px;
}

.eng-modal-section.credt-union-last-sec.team-exp-sec
  .col-lg-6:first-child
  .items {
  border: 1px solid #70def5;
  border-radius: 30px;
  background: #f1fcfe;
}
.eng-modal-section.credt-union-last-sec.team-exp-sec
  .col-lg-6:nth-child(2)
  .items {
  border: 1px solid #8be0a4;
  border-radius: 30px;
  background: #f4fcf6;
}
.eng-modal-section.credt-union-last-sec.team-exp-sec
  .col-lg-6:nth-child(3)
  .items {
  border: 1px solid #b497e7;
  border-radius: 30px;
  background: #f8f5fd;
}
.eng-modal-section.credt-union-last-sec.team-exp-sec
  .col-lg-6:last-child
  .items {
  border: 1px solid #f6cf71;
  border-radius: 30px;
  background: #fffbf1;
}

.eng-modal-section.credt-union-last-sec.team-exp-sec .col-lg-6 .items .thumb {
  width: 130px;
  height: 150px;
  position: absolute;
  top: -70px;
  left: -64px;
}

.eng-modal-section.credt-union-last-sec.team-exp-sec .container {
  margin: 0 auto;
  padding: 0 90px;
}

@media (max-width: 1580px) {
  .supported-shared-sec ul li::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-repeat: no-repeat;
    width: 72px;
    height: 50px;
    background-size: 70% !important;
    background-repeat: no-repeat !important;
  }
  .supported-shared-sec ul li {
    padding-left: 60px;
  }

  .cuso-led-delivery-sec .items img {
    width: 200px;
    height: auto;
  }
  .cuso-led-delivery-sec .items h3 {
    padding: 15px 20px 0;
    font-size: 20px;
  }
  .parner-friendly-sec .items .boxes {
    margin: 35px 0;
    font-size: 18px;
    padding: 15px;
    line-height: 28px;
  }
  .decision-intlligence-sec ul li {
    min-height: 70px;
    font-size: 18px;
  }
  .decision-intlligence-sec ul li .thumb {
    width: 55px;
    min-width: 55px;
    height: 55px;
  }
  .eng-modal-section .thumb {
    width: 170px;
    height: auto;
  }
  .eng-modal-section .items h3 {
    font-size: 20px;
  }

  .collaboration-sec ul li {
    height: 70px;
  }
  .collaboration-sec ul li .thumb {
    height: 70px;
    width: 70px;
    min-width: 70px;
  }
  .collaboration-sec ul li {
    gap: 0;
  }
  .collaboration-sec ul li h3 {
    font-size: 18px;
  }

  .auto-loan-wrapper .main-title {
    font-size: 28px;
    line-height: 38px;
  }

  .trending-score-sec .items ul li {
    padding: 20px 15px 20px 70px;
    min-height: 90px;
    max-height: 90px;
    font-size: 18px;
  }
  .trending-score-sec .items ul li::before {
    background-size: 75px 51px !important;
    margin-top: -7px;
    width: 75px;
    height: 51px;
    font-size: 18px;
    padding-top: 11px;
  }

  .credit-u-nexml-section.output-decision-sec .nexml-card .nexml-icon {
    min-width: 80px;
  }

  .credit-u-nexml-section .nexml-grid .nexml-card .nexml-icon img {
    width: 45px;
    height: auto;
  }

  .credit-u-nexml-section .nexml-grid .nexml-card h5 {
    font-size: 22px;
  }

  .credit-u-nexml-section .nexml-grid {
    gap: 20px;
  }
  .credit-u-nexml-section.trans-bg .nexml-grid .nexml-card {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .eng-modal-section.credt-union-last-sec.team-exp-sec .col-lg-6 .items {
    padding: 15px;
    position: relative;
    margin: 10px 0 10px 0px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .eng-modal-section.credt-union-last-sec.team-exp-sec .col-lg-6 .items .thumb {
    width: 80px;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
    min-width: 80px;
  }
  .eng-modal-section.credt-union-last-sec.team-exp-sec .container {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .supported-shared-sec ul li {
    margin: 10px 0;
    padding: 11px 13px 11px 62px;
  }
  .eng-modal-section .items h3 {
    margin: 15px 0;
  }
  .collaboration-sec ul li {
    gap: 0;
    width: 100%;
    text-align: left;
    justify-content: flex-start;
  }
  .collaboration-sec ul {
    align-items: flex-start;
  }

  .decision-areas-topbar {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    flex-direction: column;
    padding: 15px;
  }
  .decision-areas-topbar p {
    font-size: 18px;
  }
  .decision-areas-topbar .left-para,
  .decision-areas-topbar .right-para {
    width: 100%;
  }
  .decision-areas-topbar .right-para {
    margin-top: 20px;
  }
  .decision-intlligence-sec.one-platform-section ul {
    margin-left: 0;
  }
  .decision-intlligence-sec.one-platform-section ul li::before {
    width: 55px;
    height: 55px;
    border-radius: 55px;
    font-size: 24px;
  }
  .decision-intlligence-sec.one-platform-section ul li {
    padding-left: 70px;
    font-size: 18px;
    border-radius: 55px;
    min-height: 55px;
  }

  .eng-modal-section.credt-union-last-sec .thumb {
    height: 70px;
    width: 70px;
    border-radius: 70px;
  }
  .eng-modal-section.credt-union-last-sec .items h3 {
    font-size: 18px;
    margin: 15px 0 0;
  }
  .eng-modal-section.credt-union-last-sec .items {
    padding: 70px 15px 15px;
    margin-top: 20px;
  }
  .eng-modal-section.credt-union-last-sec .items .thumb img {
    width: 40px;
    height: auto;
  }
  .eng-modal-section.credt-union-last-sec .items .thumb {
    top: -110px;
    margin-bottom: -110px;
  }
  .auto-loan-wrapper .main-title {
    font-size: 24px;
    line-height: 34px;
  }

  .eng-modal-section.credt-union-last-sec.team-exp-sec
    .col-lg-6
    .items
    .thumb
    img {
    width: 70px;
    height: auto;
  }

  .decisions-involved-sec .content-box h4 {
    text-align: center;
  }

  .decision-intlligence-sec.one-platform-section.nexml-support-decision ul li {
    min-height: max-content;
  }
  .decision-intlligence-sec.one-platform-section.nexml-support-decision
    ul
    li::before {
    width: 55px;
    height: 55px;
    top: 50%;
    transform: translateY(-50%);
  }
  .decision-intlligence-sec.one-platform-section.nexml-support-decision
    ul
    li
    p {
    margin-left: 65px;
  }
  .decisions-involved-sec .decision-grid::before {
    display: none;
  }
  .decisions-involved-sec .decision-circle {
    min-width: 90px;
    height: 90px;
    width: 90px;
  }
  .auto-loan-common-sec .quote-box {
    margin-bottom: 20px;
  }
  .auto-loan-common-sec .number-points ul li {
    font-size: 16px;
  }
  .decisions-involved-sec .content-box h4 {
    font-size: 20px;
  }

  .decision-intlligence-sec.one-platform-section.nexml-support-decision
    ul
    li
    p {
    font-size: 18px;
  }
  .credit-u-nexml-section .nexml-grid .nexml-card h5 {
    font-size: 18px;
  }
}

@media (max-width: 574px) {
  .eng-modal-section.credt-union-last-sec .items .thumb {
    top: 0;
    margin-bottom: 0;
  }
  .eng-modal-section.credt-union-last-sec .items {
    padding: 15px;
  }
  .decision-intlligence-sec.one-platform-section ul li {
    max-height: 55px;
    font-size: 16px;
    line-height: 24px;
  }

  .auto-loan-wrapper .main-title {
    font-size: 22px;
    line-height: 32px;
  }
  .inner-banner::before {
    background-position: right !important;
  }
}

.scroll-more-wrapper {
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.scroll-more-wrapper .scroll-text {
  position: relative;
  top: -4px;
}

.scroll-more-btn {
  color: #fff;
  border: none;
  padding: 12px 18px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  background: url(../images/scroll-down-shape.png);
  background-repeat: no-repeat;
  width: 580px;
  height: 67px;
  background-size: 70%;
  justify-content: center;
  background-position: center;
}
.scroll-icon img {
  height: 38px;
}
.scroll-icon {
  width: 24px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  top: 0px;
  transition: all 0.3s ease;
  animation: scrollBounce 2s infinite;
}
.banner-inner.new-banner-inner .header-btns-group {
  position: relative;
  z-index: 1;
  gap: 20px;
  display: flex;
}
.banner-inner.new-banner-inner .header-btns-group .common-btn,
.header-top .header-btn .common-btn {
  /* box-shadow:
    0 12px 24px rgba(0, 136, 232, 0.35),
    0 4px 8px rgba(0, 0, 0, 0.12) !important; */
  position: relative;
  border: 0;
  box-shadow:
    rgba(45, 35, 66, 0.3) 0 2px 4px,
    rgba(45, 35, 66, 0.2) 0 7px 13px -3px,
    #025170 0 -3px 0 inset;
}
.banner-inner.new-banner-inner .header-btns-group .common-btn.white-btn {
  color: #005576;
}
.banner-inner.new-banner-inner .header-btns-group .common-btn.white-btn:hover,
.banner-inner.new-banner-inner .header-btns-group .common-btn.white-btn:focus {
  color: #fff;
}
.header-top .header-btn.we-hired-link .common-btn {
  box-shadow:
    rgba(45, 35, 66, 0.3) 0 2px 4px,
    rgba(45, 35, 66, 0.2) 0 7px 13px -3px,
    #7b5607 0 -3px 0 inset;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@media (max-width: 1580px) {
  .scroll-more-wrapper .scroll-icon img {
    height: 30px;
  }
  .scroll-more-wrapper .scroll-icon img {
    position: relative;
    top: 4px;
  }
}
