/* Reset default styles */
:root {
  --primaryblue: #001156;
  --secondaryblue: #3995f8;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basic typography */
body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1b1b1b;
  letter-spacing: 0.5px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Container */

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", sans-serif;
  margin: 0;
}

a {
  text-decoration: none;
  color: #0a044b;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.site-header {
  position: relative;
  z-index: 9999;
}
.navbar-brand {
  max-width: 160px;
}
.main-nav {
  position: relative;
  z-index: 999;
}
.main-nav > ul{
  display: flex;
}
.main-nav li{
  position: relative;
}
.main-nav li a{
  color: #17173c;
  font-family: "DM Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 10px 15px;
  outline: none;
  display: block;
}
.main-nav li a:hover{
  color: #3995f8;
}
.main-nav li ul{
  position: absolute;
  top: 120%;
  left: 0;
  width: 250px;
  background-color: #fff;
  margin: 0;
  border-radius: 0 0 5px 5px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .25s ease-in-out;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.main-nav li:hover ul{
  top: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.main-nav li ul a{
  border-bottom: rgba(0, 0, 0, 0.05) solid 1px;
}
.search-form form {
  display: flex;
  align-items: center;
}

.search-toggle {
  font-size: 1.2rem;
  padding: 0;
  background-color: transparent;
  border: none;
}

/* Search form overlay */
.search-form {
  position: absolute;
  top: 100%;
  right: 0;
  width: 250px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
}

.search-form input {
  border: none;
  outline: none;
  width: 85%;
}

@media screen and (max-width: 1024px){
  .main-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    overflow: auto;
    background-color: #fff;
    opacity: 0;
    transform: translateX(-150%);
    transition: all .35s ease-in-out;
  }
  .main-nav.show-menu{
    opacity: 1;
    transform: translateX(0);
  }
  .main-nav > ul {  
    flex-wrap: wrap;
  }
  .main-nav > ul > li{
    border-bottom: rgba(0, 0, 0, 0.05) solid 1px;
  }
  .main-nav li{
    width: 100%;
  }
  .main-nav li ul {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    display: none;
  }
  .main-nav li.selected > ul{
    display: block;
  }
  .main-nav li ul li{
    padding-left: 15px;
  }
  .menu-button {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background-color:  rgba(0,0,0,.02);
    border-left: rgba(0,0,0,.1) solid 1px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .menu-button::before{
    content: "";
    width: 11px;
    height: 11px;
    border: #17173c solid 1px;
    display: block;
    transform: rotate(45deg);
    border-top: none;
    border-left: none;
    margin-bottom: 9px;
  }
  
}

.search-form button {
  border: none;
  background: none;
}

.slide_inr {
  min-height: 650px;
  background: rgba(0, 0, 73, 1);
}

.slide-caption {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 35px 0;
  /* background: rgba(0, 0, 73, 1); */
  align-items: center;
  display: flex;
}

.banner_image {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 999;
  width: 696px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.banner_image_round {
  border-radius: 50% 0 0 50%;
  overflow: hidden;
  -webkit-border-radius: 50% 0 0 50%;
  -moz-border-radius: 50% 0 0 50%;
  -ms-border-radius: 50% 0 0 50%;
  -o-border-radius: 50% 0 0 50%;
}

.bnr_icon_a {
  position: absolute;
  z-index: 9;
  top: 23px;
  left: 103px;
  animation-name: floatUpDown;
  animation-duration: 6s;
}

.bnr_icon_b {
  position: absolute;
  bottom: 161px;
  animation-name: floatLeftRight;
  animation-duration: 7s;
}

.bnr_icon_a,
.bnr_icon_b {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.bnr_icon_b {
  position: absolute;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes floatLeftRight {
  0% {
    transform: translateX(0) rotate(0deg);
  }

  50% {
    transform: translateX(10px) rotate(-2deg);
  }

  100% {
    transform: translateX(0) rotate(0deg);
  }
}

.slide-caption h2 {
  color: #fff;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
}

.slide-caption p {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 18px 0;
}

.slide-caption a {
  display: inline-flex;
  height: 50px;
  padding: 17px 21px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #3995f8;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 25px 0 0 0;
}

.slide-caption a img {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.slide-caption a:hover img {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.home-pagi {
  position: absolute !important;
  left: 50% !important;
  bottom: 51px !important;
  display: flex;
  align-items: center;
  width: 84% !important;
  transform: translateX(-50%) !important;
}

.home-pagi .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 10px !important;
  position: relative;
  background: #fff !important;
  opacity: 0.24;
}

.home-pagi .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.home-pagi .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  content: "";
  width: 21px !important;
  height: 21px !important;
  display: block;
  position: absolute;
  border: 1px solid #e4dada;
  border-radius: 50%;
  left: -5px;
  top: -5px;
}
.slider-border{
  width: 100%;
  height: 5px;  
  background: linear-gradient(to right,  rgba(80,138,255,1) 0%,rgba(229,58,185,1) 39%,rgba(255,109,43,1) 64%,rgba(255,173,62,1) 100%); 
}

.title_h2 {
  color: #17173c;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px;
}

.home_sec_one_content_box p {
  color: #17173c;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.home_sec_one_content_box ul li {
  color: #17173c;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  margin: 10px 0;
  position: relative;
  padding-left: 30px;
}

.home_sec_one_content_box ul li::before {
  content: "";
  background: url(../images/list_icon.svg) 0 0 no-repeat;
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  background-size: cover;
  left: 0;
  top: 4px;
}

.home_sec_one_image_box {
  width: 80%;
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.home_sec_one::after {
  content: "";
  background: rgba(219, 234, 254, 1);
  position: absolute;
  width: 46%;
  height: 60%;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.home_sec_two {
  background-position: center center !important;
  background-size: cover !important;
  background: url(../images/number_bg.png) 0 0 no-repeat;
}

.home_sec_two h2 {
  color: #fff;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}

.home_sec_two_number_box {
  text-align: center;
  position: relative;
}

.home_sec_two_number_box h3 {
  color: #fff;
  font-size: 66px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.home_sec_two_number_box p {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin: 30px 0 0 0;
}

.home_sec_two_number_box::before {
  content: "";
  background: rgba(228, 228, 228, 0.29);
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.home_sec_two_number_box::after {
  content: "";
  background: url(../images/number_grad.svg) 0 0 no-repeat;
  width: 3px;
  height: 30px;
  display: block;
  position: absolute;
  left: -1px;
  top: 0;
  background-size: cover;
  animation: moveUpDown 3s linear infinite alternate;
  -webkit-animation: moveUpDown 3s linear infinite alternate;
}

.home_sec_two_number_last::after {
  content: "";
  background: rgba(228, 228, 228, 0.29);
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.home_sec_two_number_last::before {
  content: "";
  background: url(../images/number_grad.svg) 0 0 no-repeat;
  width: 3px;
  height: 30px;
  display: block;
  position: absolute;
  right: -1px;
  top: 0;
  background-size: cover;
  animation: moveUpDown 3s linear infinite alternate;
  -webkit-animation: moveUpDown 3s linear infinite alternate;
}

/* Animation Keyframes */
@keyframes moveUpDown {
  0% {
    top: 0;
  }

  100% {
    top: calc(100% - 30px);
    /* moves to bottom */
  }
}

.home_sec_three_tab_menu .nav.nav-tabs {
  max-width: 950px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 20px;
  border: none;
}

.home_sec_three_tab_menu .nav.nav-tabs li {
  flex: 1;
  text-align: center;
}

.home_sec_three_tab_menu .nav.nav-tabs li button {
  width: 100%;
  border-radius: 15px; 
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  background: #F4F4F4;
  padding: 2px;
  overflow: hidden;
}
.home_sec_three_tab_menu .nav.nav-tabs li button.nav-link span{
  display: flex;
  align-items: center;
  justify-content: center;  
  width: 100%;
  padding: 13px;
  height: 80px;
  background-color: #F4F4F4;
  border-radius: 15px;
}
.home_sec_three_tab_menu .nav.nav-tabs li button.nav-link.active {
  background: linear-gradient( to right, rgba(80, 138, 255, 1) 0%, rgba(229, 58, 185, 1) 40%, rgba(255, 109, 43, 1) 70%, rgba(255, 173, 62, 1) 100% );
}
.home_sec_three_tab_menu .nav.nav-tabs li button.nav-link.active span{
  background: #fff;
}
.tabs_inner figure {
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.tabs_inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.tabs_inner_fig {
  position: absolute;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  top: 0;
  padding: 50px;
}

.tabs_inner_fig figcaption {
  width: 440px;
  height: 190px;
  background: url(../images/fig_bg.png) 0 0 no-repeat;
  /*padding: 50px 20px 70px 20px;*/
  padding: 20px 50px 20px 20px;
  display: flex;
  align-items: center;
  position: relative;
  /*background-size: cover;*/
  background-size: 100% 100%;
  background-position: center center;
}


.tabs_inner_fig figcaption a {
  background: rgba(57, 149, 248, 1);
  width: 50px;
  height: 50px;
  border-radius: 11.11px;
  -webkit-border-radius: 11.11px;
  -moz-border-radius: 11.11px;
  -ms-border-radius: 11.11px;
  -o-border-radius: 11.11px;
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs_inner_fig figcaption p {
  color: #17173c;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}
.home_sec_three {
  background-image: url(../images/product_service_bg.jpg), url(../images/erp_bg.svg);
  background-repeat: no-repeat, no-repeat;
  background-size: cover;
  background-position: center center;
}

.home_sec_four_content h6 {
  color: #3b8de2;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.home_sec_four_content {
  max-width: 525px;
  width: 100%;
}
.home_sec_four_content figure {
  margin: 25px 0 0 0;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
}
.vertical-swiper-box h4 {
  color: #17173c;
  font-family: "DM Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.vertical-swiper-box p {
  color: #404040;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin: 12px 0 0 0;
  line-height: 24px;
}

.vertical-swiper {
  width: 100%;
  height: 530px;
  position: relative;
}
.vertical-swiper-box {
  max-width: 504px;
  width: 100%;
  margin: 0 0 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  padding: 0 0 20px 0;
}
.vertical-swiper-box figure {
  width: 74px;
  height: 74px;
}
.vertical-swiper-box figure img {
  width: 100%;
}
.vertical-slider-btn {
  position: absolute;
  bottom: 41px;
  right: 0;
  margin: 0;
  z-index: 9;
}
.vertical-slider-btn .vertical-btn {
  position: unset;
  margin: 8px 0 0 0;
  width: 34px;
  height: 34px;
  background-size: cover !important;
  background-position: center center !important;
}
.vertical-slider-btn .vertical-btn::after {
  display: none;
}
.vertical-slider-btn .vertical-prev {
  background: url(../images/verticle_up.svg) 0 0 no-repeat;
}
.vertical-slider-btn .vertical-next {
  background: url(../images/verticle_down.svg) 0 0 no-repeat;
}

/* media */
/* media */
/* media */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    border-top: 1px solid #eee;
    margin-top: 0.5rem;
  }
}

.awards {
  background-color: #dbeafe;  
  overflow: hidden;
}
.awards-swiper-wrap {
  width: 100%;
  margin-left: 4vw;
}
.swiper.awards-swiper {
  width: 100%;
  height: 100%;
}
.award-item {
  background-color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 20px;
}
.award-item-img {
  width: 100%;
  height: 135px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.award-item-img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.award-item p {
  font-size: 14px;
  line-height: 21px;
  margin: 0;
}
.award-prev,
.award-next,
.discover-benifits-next,
.discover-benifits-prev,
.indutry-solution-prev,
.indutry-solution-next,
.product-innovation-prev,
.product-innovation-next,
.custom-nav {
  width: 50px;
  height: 50px;
  border: #000 solid 1px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px 22px;
}
.award-prev,
.custom-nav-pre,
.discover-benifits-prev,
.indutry-solution-prev,
.product-innovation-prev {
  background-image: url(../images/pre-arrow.png);
}
.award-next,
.custom-nav-next,
.discover-benifits-next,
.indutry-solution-next,
.product-innovation-next {
  background-image: url(../images/next-arrow.png);
}
.swiper-nav {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.swiper-nav::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.swiper-nav::after {
  content: "";
  display: block;
  width: 280px;
  height: 1px;
  background-color: #3995f8;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.swiper-nav-inner {
  display: flex;
  background-color: #fff;
  position: relative;
  padding-left: 25px;
  z-index: 3;
}
.awards .swiper-nav-inner {
  background-color: #dbeafe;
}
.swiper-nav .swiper-button-next,
.swiper-nav .swiper-button-prev {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  margin: 0;
}
.swiper-nav .swiper-button-next {
  margin-left: 10px;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.stronger-business {
  background: linear-gradient(
    to bottom,
    rgba(219, 234, 254, 1) 40%,
    rgba(255, 255, 255, 1) 40%
  );
}
.stronger-business-block {
  background: linear-gradient(
    to right,
    rgba(80, 138, 255, 1) 0%,
    rgba(229, 58, 185, 1) 40%,
    rgba(255, 109, 43, 1) 70%,
    rgba(255, 173, 62, 1) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  padding: 2px;
  border-radius: 20px;
  overflow: hidden;
}
.stronger-business-block-inner {
  padding: 30px 40px;
  text-align: center;
  background-color: #fff;
  background-image: url(../images/ai-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 19px;
}
.title_h3 {
  color: #17173c;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
}
.stronger-business-block-inner p {
  font-size: 14px;
}
.ali-logo-item {
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px 15px;
  width: 178px;
  height: 75px;
}
.ali-logo-item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.erp-solutions {
  background-color: #000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.erp-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}
.erp-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution-overlay {
 /* background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.93) 0%,
    rgba(0, 0, 0, 0) 100%
  );*/
background: linear-gradient(to right,  rgba(0,0,0,0.95) 0%,rgba(0,0,0,0.7) 50%,rgba(0,0,0,0.69) 51%,rgba(0,0,0,0) 100%); 
  position: relative;
  z-index: 2;
}
.erp-solutions,
.erp-solutions .title_h2 {
  color: #fff;
}
.sol-item-left {
  margin-top: 8em;
}
.sol-info-item {
  width: 440px;
  height: 200px;
  background-image: url(../images/sol-item-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  padding: 0;
  backdrop-filter: blur(10px);
  position: relative;
  border-radius: 20px;
}
.sol-left-item {
  height: 200px;
  padding: 30px 71px 30px 30px;
}
.sol-info-item h6 {
  font-size: 18px;
  margin-bottom: 15px;
}
.sol-info-item p {
  font-size: 14px;
  line-height: 22px;
  color: #fff;
}
.sol-link {
  display: block;
  width: 50px;
  height: 50px;
  background-color: var(--secondaryblue);
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  border: var(--secondaryblue) solid 1px;
  border-radius: 10px;
  position: absolute;
  bottom: 0px;
  right: 7px;
  transition:all 0.2s ease-in-out;
}
.sol-link:hover{
  background-position: 22px 7px;
}
.sol-left-slider .swiper-slide {
  opacity: 0 !important;
  transition: all 0.2s;
}
.sol-left-slider .swiper-slide.swiper-slide-visible {
  opacity: 1 !important;
}
.erp-solutions .swiper-nav::before {
  background-color: rgba(255, 255, 255, 0.2);
  width: calc(100% - 150px);
}
.erp-solutions .swiper-nav::after {
  width: 180px;
}
.erp-solutions .swiper-nav-inner {
  background-color: transparent;
}
.erp-solutions .swiper-nav-inner .custom-nav {
  filter: invert(1);
}
.swiper-slide-thumb-active .sol-info-item-img {
  background: radial-gradient(
        circle at 100% 100%,
        #2b1d55 0,
        #2b1d55 4px,
        transparent 4px
      )
      0% 0%/5px 5px no-repeat,
    radial-gradient(circle at 0 100%, #2b1d55 0, #2b1d55 4px, transparent 4px)
      100% 0%/5px 5px no-repeat,
    radial-gradient(circle at 100% 0, #2b1d55 0, #2b1d55 4px, transparent 4px)
      0% 100%/5px 5px no-repeat,
    radial-gradient(circle at 0 0, #2b1d55 0, #2b1d55 4px, transparent 4px) 100%
      100%/5px 5px no-repeat,
    linear-gradient(#2b1d55, #2b1d55) 50% 50% / calc(100% - 2px)
      calc(100% - 10px) no-repeat,
    linear-gradient(#2b1d55, #2b1d55) 50% 50% / calc(100% - 10px)
      calc(100% - 2px) no-repeat,
    linear-gradient(90deg, #508aff 0%, #e53ab9 40%, #ff6d2b 60%, #ffad3e 100%);
  padding: 1px;
  border-radius: 6px;
}
.sol-info-item-img img {
  border-radius: 10px;
}
.sol-item-right {
  width: 50vw;
  position: absolute;
  bottom: 70px;
  right: 0;
  z-index: 2;
  padding: 0;
  margin-right: -140px;
}
.theme_btn {
  display: inline-block;
  min-width: 160px;
  height: 50px;
  padding: 17px 21px;
  border-radius: 10px;
  background: #3995f8;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
.theme_btn.dark_btn{
  background-color: var(--primaryblue);
}
.theme_btn::after {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  background-image: url(../images/arrow-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  margin-left: 10px;
  transition: all 0.2s ease-in-out;
}
.theme_btn:hover,
.theme_btn:focus,
.theme_btn:visited {
  color: #fff;
}
.theme_btn:hover{
  background-color: var(--primaryblue);
}
.theme_btn:hover::after {
  transform: rotate(43deg);
}
.latest-post .featured-image {
  margin-bottom: 1.2em;
}
.latest-post .featured-image img {
  width: 100%;
  border-radius: 20px;
}
.post-cat {
  margin-bottom: 0.5em;
}
.post-cat span {
  background-color: #f4f4f4;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 14px;
  color: #000;
  display: inline-block;
}
h4.post-title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 0.4em;
}
h4.post-title a {
  color: #0d0d0d;
}
.post-excerpt,
.post-date,
.read-time {
  font-size: 14px;
  line-height: 20px;
  color: #404040;
}
.post-date span {
  color: #3995f8;
  display: inline-block;
  margin-left: 5px;
}
.read-time {
  background-image: url(../images/icon_clock.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 18px 18px;
  padding-left: 22px;
}
.latest-post-right {
  border-bottom: rgba(50, 50, 50, 0.1) solid 1px;
  padding: 0 0 25px 15px;
  margin: 0 0 25px;
}
.latest-post-right:last-child {
  margin: 0;
}

.title_h4 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
}
.get-in-touch {
  position: relative;
  background-color: #f9f9f9;
  background-image: url(../images/get-in-touch-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.get-in-touch .container {
  position: relative;
  z-index: 1;
}
.get-in-touch-img {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50vw;
  height: 100%;
}
.get-in-touch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 85%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
}
.left-touch h2.title_h2 {
  color: #fff;
  line-height: 45px;
  width: calc(100% - 170px);
  margin: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  width: 100%;
  height: 45px;
  background-color: transparent;
  border: none;
  border-bottom: rgba(0, 0, 0, 0.15) solid 1px;
  border-radius: 0;

  font-size: 14px;
  color: #000;
  padding: 5px 0;
}
.wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 15px;
}
.wpcf7-list-item {
  margin: 0;
}
.wpcf7-list-item-label {
  font-size: 14px;
  color: #000;
}
input[type="submit"].wpcf7-submit {
  background-color: #001156;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 17px 20px;
  border-radius: 10px;
  border: none;
  margin-top: 15px;
}
input[type="submit"].wpcf7-submit:hover {
  background-color: #3995f8;
}
.post,
.page {
  margin: 0;
}
.site-footer {
  background-color: #001156;
  padding: 4em 0 2.5em;
  font-size: 14px;
}
.site-footer,
.site-footer a {
  color: #fff;
  transition: all 0.2s;
}
.site-footer a:hover {
  color: #3995f8;
}
.site-info-txt p {
  font-size: 16px;
}
.footer-widget {
  height: 100%;
  border-left: rgba(255, 255, 255, 0.1) solid 1px;
  padding-left: 10px;
}
.site-footer .widget-title {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.site-footer .widget-title::before {
  content: "";
  width: 160px;
  height: 1px;
  background-color: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.site-footer .widget_nav_menu li {
  margin-bottom: 5px;
}

.contact-tab {
  background-color: #2b1d55;
  background-image: url(../images/footer-tab-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
  padding: 40px 30px;
  margin: 3em 0 2em;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 8px 0px;
}
.contact-tab-nav ul {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
.contact-tab-nav li {
  background: radial-gradient(
        circle at 100% 100%,
        #2b1d55 0,
        #2b1d55 4px,
        transparent 4px
      )
      0% 0%/5px 5px no-repeat,
    radial-gradient(circle at 0 100%, #2b1d55 0, #2b1d55 4px, transparent 4px)
      100% 0%/5px 5px no-repeat,
    radial-gradient(circle at 100% 0, #2b1d55 0, #2b1d55 4px, transparent 4px)
      0% 100%/5px 5px no-repeat,
    radial-gradient(circle at 0 0, #2b1d55 0, #2b1d55 4px, transparent 4px) 100%
      100%/5px 5px no-repeat,
    linear-gradient(#2b1d55, #2b1d55) 50% 50% / calc(100% - 2px)
      calc(100% - 10px) no-repeat,
    linear-gradient(#2b1d55, #2b1d55) 50% 50% / calc(100% - 10px)
      calc(100% - 2px) no-repeat,
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.2) 40%,
      rgba(255, 255, 255, 0.2) 60%,
      rgba(255, 255, 255, 0.4) 100%
    );
  border-radius: 5px;
  padding: 4px 10px;
  box-sizing: border-box;
  margin: 0 5px;
  cursor: pointer;
}
.contact-tab-nav li.active {
  background: radial-gradient(
        circle at 100% 100%,
        #2b1d55 0,
        #2b1d55 4px,
        transparent 4px
      )
      0% 0%/5px 5px no-repeat,
    radial-gradient(circle at 0 100%, #2b1d55 0, #2b1d55 4px, transparent 4px)
      100% 0%/5px 5px no-repeat,
    radial-gradient(circle at 100% 0, #2b1d55 0, #2b1d55 4px, transparent 4px)
      0% 100%/5px 5px no-repeat,
    radial-gradient(circle at 0 0, #2b1d55 0, #2b1d55 4px, transparent 4px) 100%
      100%/5px 5px no-repeat,
    linear-gradient(#2b1d55, #2b1d55) 50% 50% / calc(100% - 2px)
      calc(100% - 10px) no-repeat,
    linear-gradient(#2b1d55, #2b1d55) 50% 50% / calc(100% - 10px)
      calc(100% - 2px) no-repeat,
    linear-gradient(90deg, #508aff 0%, #e53ab9 40%, #ff6d2b 60%, #ffad3e 100%);
}
.contact-info {
  display: none;
}
.contact-info:first-child {
  display: block;
}
.footer-address,
.footer-email,
.footer-call {
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  padding: 0 0 0 30px;
}
.footer-address {
  background-image: url(../images/icon_location.svg);
}
.footer-email {
  background-image: url(../images/icon_mail.svg);
}
.footer-call {
  background-image: url(../images/icon_phone.svg);
}
.footer-call-num {
  margin-bottom: 10px;
}
.footer-call-num:last-child {
  margin-bottom: 0;
}
.footer-bottom .container {
  padding-top: 1em;
  border-top: rgba(255, 255, 255, 0.1) solid 1px;
}
.social-links a {
  display: inline-block;
  margin-left: 10px;
}
.social-links a img {
  width: auto;
  height: 15px;
}

a.bnr_btn {
  display: inline-flex;
  height: 50px;
  padding: 17px 21px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #3995f8;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 25px 0 0 0;
}
a.bnr_btn img {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

a.bnr_btn:hover img {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

/*products*/

.products-banner .banner-content {
  position: absolute;
  display: flex;
  justify-content: center;
  margin-top: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
}
.products-banner .banner-content .container {
  position: unset;
  transform: translateY(0%);
  padding-top: 0;
}
.product_sec_menu {
  background-color: #fff;
  border: 1px solid #e6e6e6;
}
.product_sec_menu.fix-nav{  
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.in-page-nav {
  overflow: auto;
}
.product_sec_menu ul {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}
.product_sec_menu ul li a {
  display: flex;
  padding: 14px 31px;
  color: #17173c;
  outline: none !important;
  box-shadow: none !important;
  white-space: nowrap;
}
.product_sec_menu ul li:first-child a {
  border-left: 1px solid #e6e6e6;
}

.product_sec_menu ul li:last-child a {
  border-right: 1px solid #e6e6e6;
}
.product_meet_evolving_box {
  gap: 80px;
}
.product_sec_menu ul li a.active {
  border-top: 2px solid #508aff;
}
.product_meet_evolving_box_left,
.product_meet_evolving_box_right {
  flex: 1;
  width: 50%;
}
.product_meet_evolving_box_left p {
  color: #17173c;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}
.product_meet_evolving_box_left h3,
.product_meet_evolving_box_left h4,
.product_meet_evolving_box_left h5,
.product_meet_evolving_box_left h6{
  margin-bottom: 15px;
}
.product_meet_evolving_box_right h4 {
  color: #17173c;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 35px 0;
}
.product_meet_evolving_box_right ul li {
  color: #17173c;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  margin: 10px 0;
  position: relative;
  padding-left: 30px;
}
.product_meet_evolving_box_right ul li::before {
  content: "";
  background: url(../images/list_icon.svg) 0 0 no-repeat;
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  background-size: cover;
  left: 0;
  top: 4px;
}
#sapTabContent {
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 6px 52.6px 0 rgba(0, 0, 0, 0.05);
  margin: 35px 0;
}
.saptab_inner {
  display: flex;
  align-items: center;
  gap: 115px;
  padding: 40px;
}
.saptab_inner figure {
  margin: 0;
  width: 35%;
  min-width: 35%;
  max-width: 35%;
}
.saptab_inner figcaption {
  width: 55%;
  min-width: 55%;
  max-width: 55%;
  position: relative;
}

.saptab_inner figcaption::after {
  content: "";
  background: #000;
  opacity: 0.21;
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  left: -42px;
  top: 50%;
  transform: translateY(-50%);
}
.product_what_we_offer::after {
  content: "";
  background: rgba(219, 234, 254, 1);
  z-index: -1;
  width: 100%;
  height: 60%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

/*time*/
.timeline_wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* RIGHT CONTENT AREA */
.year_content {
  flex: 1;
}

/* CONTENT FADE ANIMATION */
.content_item {
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.content_item.active {
  display: block;
  opacity: 1;
  position: relative;
}

.content_item.active::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: rgba(255, 255, 255, 1);
  top: 50%;
  left: 0;
  opacity: 0.14;
}
/* LEFT YEAR SLIDER BOX */
.year_slider_box {
  width: 150px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.year_slider_box::after {
  content: "";
  background: rgba(255, 255, 255, 1);
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  right: 22px;
  opacity: 0.14;
}
.timeline_section{
  background: url('../images/product_rec_bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.timeline_section::after {
  content: "";
  background: url(../images/product_rec_award_image.png) 0 0 no-repeat;
  position: absolute;
  width: 650px;
  height: 435px;
  display: block;
  bottom: 15px;
  background-size: 100%;
}

/* YEAR LIST */
.year_list {
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.35s ease;
  text-align: center;
  height: 565px;
  overflow: scroll;
  scrollbar-width: none;
  width: 100%;
}
.year_list::-webkit-scrollbar {
  display: none; /* Chrome, Edge, Safari */
}
/* YEAR ITEMS */
.year_list li {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff80; /* light transparent white */
  font-weight: 500;
  font-size: 16px;
}
.year_list li span {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: url(../images/timeline-btn.svg) 0 0 no-repeat;
  width: 96px;
  height: 38px;
  background-size: cover !important;
  background-position: center center !important;
}

/* ACTIVE YEAR STYLE */

/* SMOOTH SLIDE */
.year_list.animate {
  transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.year_list li.active span {
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  opacity: 1;
  background: url(../images/time-line-active.svg) 0 0 no-repeat;
  width: 96px;
  height: 38px;
  background-size: cover !important;
  background-position: center center !important;
}

/* OPTIONAL FOR DARK BACKGROUND */
.timeline_section {
  color: #fff;
}

.myVerticalSwiper {
  width: 100%;
  height: 400px;
}

.myVerticalSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.myVerticalSwiper_item p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin: 25px 0 0 0;
}
.discover-swiper-wrap {
  width: 100%;
  /*margin-left: 8vw;*/
  padding-left: 8vw;
}
.discover_befits_item {
  background-size: cover !important;
  background-position: center center !important;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  height: 100%;
}
.discover_befits_item h6 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
}
.discover_befits_item p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  padding: 0;
}
.discover_befits_item figure {
  width: 200px;
  height: 200px;
  margin: 25px auto;
  border-radius: 50%;
  overflow: hidden;
}
.discover_befits_item {
  padding: 40px 20px;
}
.product_services_offer{
  background-image: url(../images/product_service_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.servicesTab_inner {
  display: flex;
  justify-content: space-between;
  gap: 35px;
}
.servicesTab_inner_left,
.servicesTab_inner_right {
  flex: 1;
  width: 50%;
  position: relative;
}
.servicesTab_inner_right figure {
  width: 70%;
  margin-left: auto;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 0;
}
.servicesTab_inner_right figcaption h4 {
  color: #17173c;
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
}
.servicesTab_inner_right figcaption p {
  color: #404040;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.servicesTab_inner_right figcaption {
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 30.7px 0 rgba(0, 0, 0, 0.04);
  width: 442px;
  min-height: 224px;
  flex-shrink: 0;
  padding: 31px;
  position: absolute;
  bottom: 0;
  left: 0;
}
#servicesTab {
  border: none;
  margin: 65px 0 0 0;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.product_services_offer #servicesTab{
  gap: 32px;
}
#servicesTab li {
  flex: 1;
}
#servicesTab li button {
  width: 100%;
  text-align: left;
  padding: 15px 0;
  border: none;
  border-radius: 0;
  background: transparent;
  outline: none;
  box-shadow: none;
  border-bottom: 1px solid #17173c;
  opacity: 0.34;
  color: #17173c;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
#servicesTab li button.nav-link.active {
  color: rgba(23, 23, 60, 1);
  border-color: #3995f8;
  opacity: 1;
}
.industry_solution_box_one {
  padding: 15px;
  border-left: 1px solid #e3e3e3;
}
.indutry-solution-swiper {
  border: 1px solid #e3e3e3;
  border-left: 0;
  border-radius: 15px;
}
.industry_solution_box_one figure {
  border-radius: 15px;
  overflow: hidden;
}
.industry_solution_box {
  position: relative;
  overflow: hidden;
}
.industry_solution_box_two {
  position: absolute;
  bottom: 0;
  background: #ddeefb;
  width: 100%;
  height: 100%;
  padding: 30px;
  transform: translateY(100%);
  transition: all 0.6s ease;
}
.industry_solution_box:hover .industry_solution_box_two {
  transform: translateY(0%);
}
.industry_solution_box_one h6 {
  color: #17173c;
  font-size: 20px;
  font-weight: 500;
  padding: 0 0 5px 0;
}
.industry_solution_box_two h6 {
  color: #17173c;
  font-size: 18px;
  font-weight: 500;
  padding: 0 0 5px 0;
}
.industry_solution_box_two p,
.industry_solution_box_two li {
  color: #404040;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}
.industry_solution_box_two ul{
  padding-left: 10px;
}
.industry_solution_box_two ul li{
  margin-bottom: 6px;
  list-style: disc;
}
.industry_solution_box_two a {
  position: absolute;
  bottom: 35px;
  left: 25px;
  color: #3995f8;
  font-size: 15px;
}
.industry_solution_single_box {
  background: url(../images/industry_single_bg.svg) 0 0 no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  padding: 50px 30px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  position: relative;
}
.industry_solution_single_box p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px; /* 150% */
}

.industry_solution_single_box a {
  width: 50px;
  height: 50px;
  background: #001156;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_ai_driven_innovation::after {
  content: "";
  background: url(../images/product-inno-vector.svg) 0 0 no-repeat;
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 500px;
  z-index: 0;
  background-size: cover;
}
.product_ai_driven_innovation .container {
position: relative;
z-index: 1;
}
.product_ai_driven_innovation {
  background: #000049;
  overflow: hidden;
  position: relative;
}
.product_innova_box {
  display: flex;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6.75px);
  padding: 25px;
  gap: 40px;
}
.product_innova_box figure {
  margin: 0;
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
}
.product_innova_box figcaption {
  flex: 1;
  display: flex;
  align-items: center;
}
.product_innova_box figcaption h6 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 27px; /* 135% */
}
.product_ai_driven_innovation p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.product_ai_driven_innovation .swiper-nav::before {
  background-color: rgba(255, 255, 255, 0.22);
}
.product_ai_driven_innovation .swiper-nav-inner {
  background: transparent;
}
.product_ai_driven_innovation .swiper-nav::before {
  width: 91%;
}

.product_ai_driven_innovation .swiper-nav-inner .custom-nav {
  filter: invert(1);
}
.product_certified_tab {
  border-radius: 20px;
  border: 1px solid #e3e3e3;
  background: #fff;
  box-shadow: 0 4px 32.4px 0 rgba(0, 0, 0, 0.08);
  padding: 35px;
}
.product_certified_tab_menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.product_certified_tab_menu ul {
  margin: 0;
  border: none;
}
#softwareTab li button {
  color: #17173c;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
  border-radius: 16px;
  background: #f4f4f4;
  overflow: hidden;
  outline: none;
  box-shadow: none;
  width: 185px;
  height: 50px;
}
.software_tab_inner {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
.software_tab_inner figure {
  width: 30%;
  min-width: 30%;
  max-width: 30%;
  margin: 0;
}
.software_tab_inner figcaption {
  width: 60%;
  min-width: 60%;
  max-width: 60%;
}
.software_tab_inner figcaption p {
  color: #17173c;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px; /* 156.25% */
}
#softwareTab {
  gap: 10px;
}

#softwareTab li button.nav-link.active {
  border-radius: 16px;
  box-shadow: 0 9px 12.9px -3px rgba(23, 23, 60, 0.07);
  background: url(../images/sofware-tab-active.svg) 0 0 no-repeat;
  background-size: cover;
  background-position: top center;
}

.data_ana_problem_wesolve_overlay {
  background: linear-gradient(
    262deg,
    rgba(13, 13, 13, 0) -1.71%,
    rgba(0, 0, 0, 0.84) 109.33%
  );
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.data_ana_problem_wesolve .section-title {
  position: absolute;
  top: 70px;
}
.data_ana_problem_we_box {
  display: flex;
  align-items: flex-end;
}
.data_ana_problem_we_box_item {
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(4.949999809265137px);
  padding: 25px;
  overflow: hidden;
  height: 120px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.data_ana_problem_wesolve_overlay::after {
  content: "";
  background: rgba(255, 255, 255, 0.13);
  height: 1px;
  position: absolute;
  width: 100%;
  bottom: 120px;
}
.data_ana_problem_we_box_item h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.data_ana_problem_we_box_item p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin-top: 10px;
  display: none;
}
@media screen and (min-width: 1201px) {  

.data_ana_problem_we_box_item:hover {
  height: 320px;
  z-index: 3;
  /*border-right: 1px solid rgba(255, 255, 255, 0.10);
    border-left: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(4.949999809265137px);
    border-top: 4px solid #2E2AAD;*/
  position: relative;
}

.data_ana_problem_we_box_item:hover::after {
  content: "";
  background: url(../images/product_business_benifits_line.jpg) 0 0 no-repeat;
  width: 100%;
  position: absolute;
  top: 0;
  height: 2px;
  background-size: cover;
  left: 0;
}
.data_ana_problem_we_box_item:hover p {
  display: block;
}
}
.product_discover_befits {
  background: #3995f8 url(../images/product_discover_befits_bg.png) 0 0
    no-repeat;
  background-position: 100% 100%;
}
.product_discover_befits_inner p {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 30px;
}
.product_discover_befits_inner a.bnr_btn {
  margin: 0;
  background: #001156;
}
.product_discover_befits_inner {
  gap: 150px;
}
.product_why_choose{
  background-image: url(../images/product_service_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.product_why_choose h6 {
  color: #17173c;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}
#whyChooseAccordion {
  max-width: 935px;
  margin: 40px auto 0;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eaeaea;
}
#whyChooseAccordion button {
  color: #17173c;
  font-size: 17px;
  font-weight: 600;
  line-height: normal;
  outline: none;
  box-shadow: none;
  border-radius: 0;
}
#whyChooseAccordion .accordion-item {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #eaeaea;
}
#whyChooseAccordion .accordion-item:last-child {
  border: none;
}
#whyChooseAccordion .accordion-button::after {
  background: url(../images/product_c_acr_1.svg) 0 0 no-repeat;
  background-size: 100%;
}
#whyChooseAccordion .accordion-button:not(.collapsed)::after {
  background: url(../images/product_c_acr_2.svg) 0 0 no-repeat;
  transform: unset;
  background-size: 100%;
}
#whyChooseAccordion .accordion-button:not(.collapsed) {
  background: transparent;
}
.case_studies_box {
  display: flex;
  align-items: center;
  gap: 50px;
}
.case_studies_box figure {
  margin: 0;
  width: 40%;
  min-width: 40%;
  max-width: 40%;
  border-radius: 15px;
  overflow: hidden;
}
.case_studies_box figcaption {
  min-width: 55%;
  width: 55%;
  max-width: 55%;
}
.case_studies_box figcaption span.case-tag {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  display: inline-flex;
  padding: 6px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: #F4F4F4;
  opacity: 0.5;
}

.case_studies_box figcaption h3 {
  color: #0D0D0D;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  margin: 25px 0 12px 0;
}
.case_studies_box figcaption h3 a{ 
  color: #0D0D0D;
}
.case_studies_box figcaption p{
color: #404040;
font-size: 14px;
font-weight: 400;
line-height: 21px;
}
.case_studies_box figcaption a.bnr_btn {
  color: #3995F8;
  background: transparent;
  margin: 0;
  padding: 0;
}
.discover_browchure_inner {
  display: flex;
  align-items: center;
  padding: 50px;
  border-radius: 15px;
  overflow: hidden;
  background-image: url(../images/dowload-b-bg.png);
  background-size: cover;
  background-position: center center;
  justify-content: space-between;
}

.discover_browchure_inner h3 {
  color: #FFF;
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
  width: 45%;
}
.discover_browchure_inner p{
  color: #FFF;
}
.we_have_expertise_box{
  background: url(../images/we_have_expertise_box_bg.svg) 0 0 no-repeat;
  background-size: 100% ;
  background-position: center center;
  height: 215px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.we_have_expertise_box a {
  position: absolute;
  width: 45px;
  height: 45px;
  display: flex;
  background: #3995F8;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  right: 0;
  bottom: 0;
}
/*products*/

/*media-start*/
/*media-start*/
/*media-start*/
@media screen and (max-width: 1366px) {
  .banner_image {
    max-width: 46vw;
  }
  .slide-caption h2 {
    font-size: 46px;
    line-height: 52px;
  }
}

@media screen and (max-width: 1200px) {
  .title_h2,
  .left-touch h2.title_h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .title_h3 {
    font-size: 28px;
    line-height: 34px;
  }
  h4.post-title {
    font-size: 18px;
    line-height: 24px;
  }
  .slide_inr {
    min-height: 500px;
    display: flex;
  }
  .home_sec_two_number_box h3 {
    font-size: 46px;
  }
  .home_sec_two_number_box p {
    font-size: 14px;
  }
  .left-touch h2.title_h2 {
    width: 100%;
  }
  .navbar-expand-lg .navbar-toggler {display: block;}
  .main-nav li:hover ul {top: 0;}
}

@media screen and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    z-index: 99;
    left: 0;
    width: 100%;
    margin: 0;
  }
  #navbarNav ul li a {
    padding: 10px;
    margin: 0;
    display: block;
    border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
  }
  .slide_inr {
    min-height: 450px;
  }
  .slide-caption h2 {
    font-size: 36px;
    line-height: 42px;
  }
  .home_sec_one_image_box {
    width: 100%;
  }
  .home-pagi {   
    bottom: 15px !important; 
    width: 100% !important;
  }
  .home_sec_three_tab_menu .nav.nav-tabs {
    gap: 5px;
  }
  .tabs_inner figure {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .tabs_inner figure img {
    height: 100%;
    object-fit: cover;
  }
  .tabs_inner_fig {
    position: relative;
    padding: 30px;
  }
  .tabs_inner_fig figcaption {
    background-position: right center;
    height: auto;
    border-radius: 20px;
  }
  .awards-swiper-wrap {
    width: 100%;
    margin-left: 0;
    padding: 0 15px;
  }
  .sol-item-left {
    margin-top: 4em;
  }
  .sol-item-right {
    width: 100%;
    position: relative;
    bottom: auto;
    right: auto;
    z-index: 2;
    padding: 0 15px;
    margin-right: auto;
  }
  .tabs_inner_fig figcaption{
    background-size: 100% 100%;
  }
  
}

@media screen and (max-width: 767px) {
  .navbar-brand {
    max-width: 150px;
  }
  .title_h2,
  .left-touch h2.title_h2 {
    font-size: 26px;
    line-height: 34px;
  }
  .title_h3 {
    font-size: 24px;
    line-height: 30px;
  }
  .theme_btn {
    min-width: inherit;
    height: 42px;
    padding: 12px 21px;
  }
  .slide_inr {
    flex-wrap: wrap;
    justify-content: end;
  }
  .slide-caption {
    position: relative;
    order: 2;
    z-index: 1;
  }
  .banner_image {
    width: 100%;
    max-width: 100vw;
    z-index: 1;
    position: relative;
    top: auto;
    right: 0;
    transform: none;
    order: 1;
    margin-top:0;
  }
  .banner_image_round{
    border-radius: 0;
  }
  .slide-caption{
    padding-bottom: 50px;
  }
  .home-pagi{
    justify-content: center;
  }
  .home_sec_two_number_last::before,
  .home_sec_two_number_last::after {
    display: none;
  }
  .home_sec_two_number_box h3 {
    font-size: 30px;
  }
  .home_sec_three_tab_menu .nav.nav-tabs li button{
    background: #E3E3E3;
  }
  .vertical-swiper {
    height: 525px;
  }
  .vertical-slider-btn {
    position: absolute;
    bottom: 0;
    display: flex;
  }
  .stronger-business-block-inner {
    padding: 20px 20px;
  }
  .latest-post-right {
    border-bottom: rgba(50, 50, 50, 0.1) solid 1px;
    padding: 0 0 25px 0;
    margin: 0 0 25px;
  }
  .latest-post-right:first-child {
    border-top: rgba(50, 50, 50, 0.1) solid 1px;
    padding-top: 20px;
    margin-top: 25px;
  }
  .post-date {
    width: 100%;
  }
  .get-in-touch-img {
    position: relative;
    top: auto;
    bottom: auto;
    width: 100vw;
    height: auto;
  }
  .get-in-touch .container {
    margin-top: -12em;
  }
  .footer-bottom {
    text-align: center;
  }
  
}
@media screen and (max-width: 480px) {
  .slide-caption h2 {
    font-size: 30px;
    line-height: 36px;
  }
  .slide-caption p {
    font-size: 16px;
  }
  .sol-info-item {
    width: 320px;
    height: 200px;
    margin-bottom: 20px;
  }
  .sol-left-item {
    padding: 5px 50px 5px 10px;
  }
  .sol-link {
    width: 40px;
  }
  .get-in-touch .container {
    margin-top: -9em;
  }
  .tabs_inner_fig figcaption{
    padding: 20px 30px 50px 20px;
    background-color: #fff;
  }
  .tabs_inner_fig figcaption a{
    width: 40px;
    height: 40px;
    right: 5px;
    bottom: 5px;
  }
}

/*-- contact page --*/
.inner-page-banner {
  background-color: var(--primaryblue);
  overflow: hidden;
}
.bradcrumb-area {
  background-color: rgba(0, 0, 0, 0.1);
  border-bottom: rgba(255, 255, 255, 0.1) solid 1px;
  padding: 12px 0;
  color: var(--secondaryblue);
  font-size: 13px;
}
.bradcrumb-area a {
  color: #fff;
  opacity: 0.7;
}
.banner-content {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: -45px;
}
.banner-content .container {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: auto;
  padding-top: 40px;
}
.inner-page-banner h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  margin: 0 0 15px;
}
.inner-page-banner p {
  color: #fff;
  font-size: 14px;
  margin: 0;
}
@media screen and (min-width:768px) {

.shape01 .inner-banner-img {
  width: 45vw;
  height: 100%;
  background-size: 120% auto;
  background-position:left center;

  /* SVG mask */
  mask-image: url("../images/banner-clip-mask.svg");
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  mask-position: center;

  /* Safari and old WebKit fallback */
  -webkit-mask-image: url("../images/banner-clip-mask.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-position: center;

  position: relative;
  z-index: 2;
}
.inner-banner-img img {
  opacity: 0;
}
.shape01 .banner-shape {
  background-image: url("../images/banner-clip-mask.svg");
  background-repeat: no-repeat;
  background-position: left center;
  position: absolute;
  top: 0;
  right: 9px;
  width: 45vw;
  height: 102%;
  background-size: 100% 100%;
  z-index: 1;
  transform: rotate(5deg);
}
.shape02 .inner-banner-img{
  border-radius: 50% 0 0 50%;
  overflow: hidden;
  max-width: 45vw;
  background-size: 120% auto; 
  transition: background-position 0.05s ease;
}
.shape02 .banner-shape{
  display: none;
}
}
@media screen and (max-width: 1200px) {
  .inner-page-banner h1 {
    font-size: 40px;
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 991px) {
  .inner-page-banner h1 {
    font-size: 30px;
  }
  .shape02 .banner-content .container .col-md-6{   
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .banner-content {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0;
  }
  
  .banner-content .container {
    position: relative;
    top: auto;
    left: 0;
    right: 0;
    transform: none;
    margin: 0;
    order: 2;
    padding-top: 20px;
    padding-bottom: 2em;
    z-index: 3;
  }
  .inner-banner-img {
    width: 100%;
    order: 1;
    z-index: 2;
  }
  .banner-shape {
    top: 0px;
    right: 26px;
    width: 62vw;
    height: 70%;
    z-index: 1;
  }
  .inner-banner-img img {
    width: 100%;
  }
  .banner-content .bnr_icon_b{
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .banner-shape {
    top: 0px;
    right: 19px;
    width: 62vw;
    height: 60%;
    z-index: 1;
  }
}

.contact-tab-nav button {
  background-color: #f4f4f4;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #17173c;
  padding: 1px;
  margin-left: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 7px;
}
.contact-tab-nav button span {
  display: block;
  border-radius: 10px;
  padding: 6px 35px;
}
.contact-tab-nav button.active {
  background: linear-gradient(
    to right,
    rgba(80, 138, 255, 1) 0%,
    rgba(229, 58, 185, 1) 40%,
    rgba(255, 109, 43, 1) 70%,
    rgba(255, 173, 62, 1) 100%
  );
}
.contact-tab-nav button.active span {
  background-color: #fff;
}
.location-area {
  position: relative;
}
.location-info {
  max-width: 550px;
  font-size: 14px;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: none;
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.location-info.active {
  display: block;
}
.loc-map {
  border-radius: 20px;
  overflow: hidden;
}
.company-name,
.company-address,
.phone-group {
  background-repeat: no-repeat;
  background-position: left 7px;
  padding: 5px 0 5px 30px;
}
.company-name {
  background-image: url(../images/icon-building.svg);
}
.company-address {
  background-image: url(../images/icons_location.svg);
}
.phone-group {
  background-image: url(../images/icon-phone.svg);
  display: flex;
  flex-wrap: wrap;
}
.company-phone::after {
  content: "/";
  margin: 0 5px;
}
.company-phone:last-child::after {
  display: none;
}
.country-flag {
  width: 32px;
  height: 32px;
  border: 50%;
  overflow: hidden;
  margin-right: 20px;
}
.get-in-touch.inner-page-quick-contact .container {
  margin-top: 0;
}
@media screen and (max-width: 1200px) {
  .location-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .loc-map {
    order: 2;
    max-width: 48%;
  }
  .location-info {
    order: 1;
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 48%;
  }
}
@media screen and (max-width: 991px) {
  .contact-tab-nav button {
    margin-left: 5px;
    box-shadow: none;
  }
  .contact-tab-nav button span {
    padding: 6px 12px;
  }
  .loc-map,
  .location-info {
    width: 100%;
    max-width: 100%;
  }
  .location-info {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1399px) {
  .we_have_expertise_box a{
    bottom: 16px;
  }
}

@media screen and (max-width: 1200px) {
  .saptab_inner{
    gap: 0;
  }
  .saptab_inner figure{
    padding-right: 40px;
  }
  .saptab_inner figcaption{
    width: 60%;
    min-width: 60%;
    max-width: 60%;
    padding-left: 30px;
  }
  .saptab_inner figcaption::after{
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .we_have_expertise_box a{
    width: 40px;
    height: 40px;
    bottom: 30px;
  }
}

@media screen and (max-width: 991px) {
  .home_sec_three_tab_menu .nav.nav-tabs li{
    flex: auto;
    text-align: center;
    width: 40%;
  }
  .saptab_inner{
    flex-wrap: wrap;
    padding: 20px;
  }
  .saptab_inner figure,
  .saptab_inner figcaption{
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .saptab_inner figcaption{
    padding-top: 20px;
    margin-top: 20px;
  }
  .saptab_inner figcaption::after {
    left: 0;
    top: 0;
    bottom: auto;
    margin: auto;
    right: 0;
    width: 100%;
    height: 1px;
  }
  .product_meet_evolving_box {
    gap: 20px;
    flex-wrap: wrap;
  }
  .product_meet_evolving_box_left, 
  .product_meet_evolving_box_right {
    flex: auto;
    width: 100%;
  }
  .product_discover_befits_inner {
    gap: 10px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
  .discover_browchure_inner{
    flex-wrap: wrap;
    justify-content: center;
  }
  .discover_browchure_inner h3{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .discover_browchure_inner p{
    text-align: center;
  }
  .we_have_expertise_box a{
    width: 30px;
    height: 30px;
    bottom: 49px;
  }
}


@media screen and (max-width: 776px) {
  .case_studies_box{
    flex-wrap: wrap;
    gap: 0;
  }
  .case_studies_box figure{
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    margin-bottom: 20px;
  }
  .case_studies_box figcaption {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .we_have_expertise_box{
    background-size: 100% 100%;
  }
  .we_have_expertise_box a{
    width: 46px;
    height: 46px;
    right: 50px;
    bottom: 0px;
  }

}
@media screen and (max-width: 480px) {
  .we_have_expertise_box{
    max-width: 300px;
    margin: 0 auto;
    padding: 20px 40px 20px 20px;
  }
  .we_have_expertise_box a{
    width: 40px;
    height: 40px;
    right: 0;
    bottom: 6px;
  }
  .we_have_expertise_box { height: 165px;}
}

/*-- industry --*/
.industry-hero-section{
  background-color: var(--primaryblue);
  display: flex;
  justify-content: end;
}
.hero-img{
  position: relative;
  width: 46vw;
  border-radius: 50% 0 0 50%;
  overflow: hidden;  
}
.hero-img img{
  width: 100%;
}
.industry-hero-section .hero-content{
  width: 100%;
  position: absolute;
  top: 50%; 
  left: 0;
  transform: translateY(-50%); 
  z-index: 2;
}
.industry-hero-section h1{
  font-size: 50px;
  font-weight: 600;
  color: #fff;
}
.overview-txt{
  position: relative;
  padding-left: 40px;
}
.overview-txt::before{
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.site-main ul,
.saptab_inner ul{
  list-style: none;
  padding: 0;
  margin-left: 0;
}
.site-main ul li,
.saptab_inner ul li{
  position: relative;
  padding: 0 0 0 30px;
  margin-bottom: 10px;
  background-image: url(../images/bullet-icon.svg);
  background-repeat: no-repeat;
  background-position: left 4px;
  background-size: 18px 18px;
}
.key-challenges-img img{
  border-radius: 15px;
}
.info-txt-ke{
  background-color: #DBEAFE;
  padding: 3em 0;
  margin-top: -3.5em;
}

.why-erp-txt{
  text-align: center;
}
.sub-title-txt{
  font-size: 14px;
}
.sub-txt{
  color:#3B8DE2;
}
.why-small-info{
  width: 447px;
  height: 234px;
  background-image: url(../images/why-erp-info-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #fff;
  padding: 40px 50px 40px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.why-small-info a.more-info {
  width: 50px;
  height: 50px;
  background-color: var(--primaryblue);
  display: block;
  padding: 0;
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 12px;
}
.why-points{
  width: calc(100% - 500px);
}
.erp-modules{
  background-color: var(--primaryblue);  
  overflow: hidden;
}
.erp-modules,
.erp-modules h2,
.erp-modules p{
  color: #fff;
}
.erp-modules .swiper-nav-inner{
  background-color: var(--primaryblue);
}
.erp-modules .swiper-nav .swiper-button-next, 
.erp-modules .swiper-nav .swiper-button-prev{
  filter: invert(1);
}
.partnering-with{
  background-color: #DBEAFE;
}

.supply-chain-heading{
  text-align: center;
}


.call-to-action{
  background-color: var(--secondaryblue);
  background-image: url(../images/call-to-action.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
.call-to-action p:last-child{
  margin-bottom: 0;
}
.key-benefits{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  background-attachment: fixed;
  color: #fff;
}
.key-benefits,
.key-benefits h2,
.key-benefits h3,
.key-benefits h4,
.key-benefits h5,
.key-benefits p{
  color: #fff;
}
.key-benefits-content{
  background-color: rgba(0, 0, 0, 0.61);
  border: rgba(255, 255, 255, 0.2) solid 1px;
  border-radius: 20px;
  padding: 30px;
}
.integration-img img{
  border-radius: 15px;
}

.erp-supports{ 
  text-align: center; 
  background: linear-gradient(to bottom,  rgba(219,234,254,1) 0%,rgba(255,255,255,1) 100%);
}
.supports-item {
  height: 100%;
  border: rgba(0,0,0,.1) solid 1px;
  border-radius: 15px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 2px 7px;
}
.supports-item h6{
  font-size: 18px;
  color: var(--secondaryblue);
  margin-bottom: 10px;
}

/*-- Knowledge Hub --*/
.post-listing-wrapper .post-thumbnail {
  margin: 0 0 15px;
}
.post-listing-wrapper .post-thumbnail img{
  border-radius: 15px;
}
.post-listing-wrapper .post-meta {
  margin-bottom: 10px;
}
.post-listing-wrapper h4.post-title{
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 10px;
}
.post-listing-wrapper h4.post-title a{
  color: #0D0D0D;
}
.post-listing-wrapper .post-categories{
  color: #000;
  font-size: 14px;
  font-weight: 400;  
  padding: 5px 10px;    
  border-radius: 6px;
  background: #F4F4F4;
  opacity: 0.5;
}
.pagination {
  display: flex;
  justify-content: center;
  width: 100%;  
}
ul.page-numbers {
  display: flex;
  align-items: center;
}
ul.page-numbers li{
  margin: 0 5px;
}
ul.page-numbers li .page-numbers{
  display: block;
  padding: 5px;
}
ul.page-numbers li .prev.page-numbers,
ul.page-numbers li .next.page-numbers{
  width: 44px;
  height: 44px;
  border: rgba(0, 0, 0, 0.3) solid 1px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
}
ul.page-numbers li .page-numbers.current{
  color: var(--primaryblue);
}
.post-listing-wrapper article:hover h4.post-title a{
  color: var(--secondaryblue);
}

/*-- Knowledge Hub --*/
.dropdown-toggle,
.dropdown-toggle:hover{
  border: rgba(0,0,0,.2) solid 1px;
  min-width: 160px;
}

h1.entry-title{
  font-size: 30px;
  font-weight: 600;
}
.site-main .h1, 
.site-main .h2, 
.site-main .h3, 
.site-main .h4, 
.site-main .h5, 
.site-main .h6, 
.site-main h1, 
.site-main h2, 
.site-main h3, 
.site-main h4, 
.site-main h5, 
.site-main h6 {
  margin-top: 0;
  margin-bottom: .6rem;
}
#secondary .widget{
  border: rgba(0,0,0,.15) solid 1px;
  border-radius: 15px;
  padding: 20px;
}
.widget h2{
  font-size: 22px;
  margin-bottom: 30px;
}
h4.wp-block-heading {
  margin-bottom: 30px;
}
.wp-block-list{
  margin-left: 0;
}
.wp-block-list li{
  margin-bottom: 10px;
}
.single-post .site-header{
  border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
}
.site-main .widget ul li{
  background-image: url(../images/read-more.svg);
  background-position: right center;
  background-size: 30px 30px;
  padding: 0 60px 0 0;
  margin-bottom: 15px;
}

.share-top{
  display: flex;
  justify-content: flex-end;  
}
.share-post{
  position: relative;
}
.share-post button{
  background-color: transparent;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  border: none;
}
.sfsi_shortcode_container {
  float: left;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 10px 10px 4px;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .2s;
}
.sfsi_shortcode_container.show-share{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.entry-content{
  margin-top:0;
}
.integration .vertical-swiper{
  height: 400px;
}
.site-main .supply-tab-menu li{
  background-image: url(../images/right_arrow-black.svg);
  background-position: right center;
  background-repeat: no-repeat;
  border-top: rgba(0,0,0,.1) solid 1px;
  margin: 0;
  padding: 20px 30px 20px 0;
  cursor: pointer;
}
.site-main .supply-tab-menu li:last-child{
  border-bottom: rgba(0,0,0,.1) solid 1px;
}
.site-main .supply-tab-menu li.active{
  color: var(--secondaryblue);
}
.supply-tab-content {
  display: none;
  justify-content: flex-end;
  position: relative;
}
.supply-tab-content.accordian-block{
  border: none;
}
.supply-tab-content .accordian-answer {
  padding:0;
  display: block;
  width: 100%;
}
.supply-tab-image {
  width: 65%;
  float: right;
  display: flex;
  flex-wrap: wrap;
}
.supply-tab-text {
  /*box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;*/
  position: absolute;
  bottom: 10px;
  left: 0;
  background-color: #fff;
  max-width: 370px;
  padding: 30px;
  border: rgba(0, 0, 0, 0.1) solid 1px;
  border-radius: 15px;
}
.supply-tab-content{
  display: none;
}
.supply-tab-content.active{
  display: flex;
  flex-wrap: wrap;
}
.event-slide {
  position: relative;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.module-item{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.module-item img{
  width: 100%;
  height: auto;
  display: block;
}
.module-item-name{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%; 
  min-height: 40%; 
  color: #fff;
  padding: 15px; 
  background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
  display: flex;
  align-items: flex-end; 
}
.module-item-name span{
  display: block;
  position: relative;
  width: 100%;
  padding-left: 20px;
}
.module-item-name span::after{
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--secondaryblue);
  border-radius: 6px;
  display: block;
}
.wp-num {
  font-size: 30px;
  color: #ccc;
  margin-bottom: 2em;
}
/*-- upgrade page --*/
.shape02 .banner-content{
  margin-top: 0;
}
.banner-content .bnr_icon_a{
  left: auto;
  right: 30%;
}
.banner-content .bnr_icon_b{
  right: 42%;
  z-index: 2;
}
.upgrade-drivers-section ul{
  columns: 2 20px;
}
.upgrade-services-list{
  background-image: url('../images/upgrade-bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.upgrade-services-list::after{
  content: "";
  width: 100%;
  height: 30px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
.service-image-wrap {
  width: 480px;
  position: relative;
  z-index: 2;
}
.service-content-right{
  width: calc(100% - 500px);
  padding-left: 3em;
  position: relative;
  padding-bottom: 60px;
  z-index: 2;
}
.service-image,
.service-content{
  display: none;
}
.service-image.active,
.service-content.active{
  display: block;
}
.service-title{
  font-weight: 600;
}
.service-tabs{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}
ul.service-tabs li{
  background: none;
  padding: 0 0 5px;
  opacity: 0.5;
  margin: 0 20px 15px 0;
  position: relative;
  cursor: pointer;
}
ul.service-tabs li::after{
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  left: 0; 
  transition: all .3s;   
}
ul.service-tabs li.active{
  opacity: 1;
}
ul.service-tabs li.active::after{
  background: radial-gradient(
        circle at 100% 100%,
        #2b1d55 0,
        #2b1d55 4px,
        transparent 4px
      )
      0% 0%/5px 5px no-repeat,
    radial-gradient(circle at 0 100%, #2b1d55 0, #2b1d55 4px, transparent 4px)
      100% 0%/5px 5px no-repeat,
    radial-gradient(circle at 100% 0, #2b1d55 0, #2b1d55 4px, transparent 4px)
      0% 100%/5px 5px no-repeat,
    radial-gradient(circle at 0 0, #2b1d55 0, #2b1d55 4px, transparent 4px) 100%
      100%/5px 5px no-repeat,
    linear-gradient(#2b1d55, #2b1d55) 50% 50% / calc(100% - 2px)
      calc(100% - 10px) no-repeat,
    linear-gradient(#2b1d55, #2b1d55) 50% 50% / calc(100% - 10px)
      calc(100% - 2px) no-repeat,
    linear-gradient(90deg, #508aff 0%, #e53ab9 40%, #ff6d2b 60%, #ffad3e 100%);
    opacity: 1;
}

.service-content-right{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.service-image img{
  border-radius: 20px;
}

.approach-swiper-wrapper{
  padding-left: 4vw;
}
.approach-swiper{
  padding-bottom: 40px;
}
.approach-swiper .swiper-pagination{
  bottom: 0;
}
.step-count {
  font-size: 30px;
  font-weight: 300;
  position: relative;
}
.step-count span{
  display: inline-block;
  padding: 0 20px 0 0;
  position: relative;
  min-width: 60px;
  background-color: #fff;
  z-index: 3;
}
.step-count::before{
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(0,0,0,.7);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.step-count::after{
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--secondaryblue);
  border: #fff solid 6px;
  position: absolute;
  top: 50%;
  left: 56px;
  transform: translateY(-50%);
  z-index: 2;
}

.ind-exp .why-small-info{
  background-image: url(../images/exp-info-bg.svg);
  height: 184px;
  margin-bottom: 30px;
}
.why-points .row{
  height: 100%;
}
.why-item-wrap {
  width: 33.33%;
  border: rgba(0,0,0,.1) solid 1px;
  padding: 30px;
  height: 100%;
}
.why-wrap-bottom .why-item-wrap{
  width: 20%;
}
.why-wrap-bottom {
  display: flex;
  flex-wrap: wrap;
}
.indus-single .why-wrap-bottom{
  padding: 0 12px;
}
.expertise-icon{
  height: 77px;
  margin-bottom: 2.5em;
}
.expertise-icon img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.erp-form-section {
  background-color: #DBEAFE;
}
.upgrade-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
}
.faq-section{
  background-color: #f9f9f9;
  background-image: url(../images/faq-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.accordian-wrapper{
  width: 100%;
  max-width: 940px;
}
.accordian-block {
  background-color: #fff;
  border: rgba(0,0,0,.1) solid 1px;
}
.accordian-block:first-child{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.accordian-block:last-child{
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.accordian-title {
  padding: 20px 30px 20px 15px;
  position: relative;
  cursor: pointer;
}
.accordian-title::before{
  content: "+";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: #000;
  transition: all .2s;
}
.active .accordian-title::before{
  transform: rotate(45deg);
}
.accordian-title h6 {
  margin: 0;
}
.accordian-answer {
  padding: 10px 15px;
  display: none;
}
.accordian-block:first-child .accordian-answer {
  display: block;
}

/*-- company profile --*/
.round-img img{
  border-radius: 15px;
}
.statistics-item {
  font-size: 18px;
  font-weight: 300;
  border-top: rgba(0,0,0,.2) solid 1px;
  border-radius: 14px;
  padding: 30px 0 20px;
}
.statistics-num {
  font-size: 60px;
  font-weight: 200;
  line-height: 62px;
  margin-bottom: 20px;
}
.statistics-info{
  background-color: var(--secondaryblue);
  padding: 30px;
  border-radius: 14px;
  color:#fff;
}
.statistics-info-icon{
  width: 50px;
  height: 60px;
  margin-bottom: 10px;
}
.statistics-info-icon img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.quote-text{
  background-image: url(../images/quote-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 50px 0;
  overflow: hidden;
}
.quote-box {  
  font-size: 20px;  
  background-image: url(../images/quote-icon-top.svg), url(../images/quote-icon-bottom.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left 15px, right 95%;
  position: relative;
}
.quote-box-inner{
  position: relative;
  padding: 3em;
  width: 425px;
}
.quote-box::before{
  content: "";
  width: 25%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: calc( 100% - 1px);
  display: block;
  border:#fff solid 2px;
  border-top: none;
  border-right: none;
  border-radius: 0 0 0 20px;
  opacity: .3;
}
.quote-box::after{
  content: "";
  width: 25%;
  height: 100%;
  position: absolute;
  right: 0;
  top: calc( 100% + 1px);
  display: block;
  border:#fff solid 2px;
  border-bottom: none;
  border-left: none;
  border-radius: 0 20px 0 0;
  opacity: .3;
}
.quote-box-inner::before{
  content: "";
  width: 75%;
  height: 75%;
  border: #fff solid 2px;
  border-bottom: none;
  border-left: none;
  border-radius: 0 20px 0 0;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  opacity: .3;
}
.quote-box-inner::after{
  content: "";
  width: 75%;
  height: 75%;
  border: #fff solid 2px;
  border-top: none;
  border-right: none;
  border-radius: 0 0 0 20px;
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  opacity: .3;
}
.quote-author {
  font-size: 14px;
}
.quote-info{
  max-width: 700px;
  background-image: url(../images/quote-txt-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 3em 5em 3em 3em;
  position: relative;
}
.quote-info a.more-info {
  position: absolute;
  width: 45px;
  height: 45px;
  display: flex;
  background-color:var(--secondaryblue);
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center; 
  border-radius: 10px;
  right: 0;
  bottom: 0;
}
.vision-img,
.vision-txt,
.mission-img,
.mission-txt{
  height: 100%;
}
.vision-img {
  border-radius: 20px 0 0 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vision-txt{
  padding: 3em 4em;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-radius: 0 20px 0 0;
}
.mission-img{
  border-radius: 0 0 20px 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mission-txt{
  color:#fff;
  background-color: var(--secondaryblue);
  padding: 3em 4em;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-radius: 0 0 0 20px;
}
.vision-img img,
.mission-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our-values{  
  background: #DBEAFE; 
  position: relative;  
}
.our-values::before,
.our-values::after{
  content: "";
  width: 100%;
  height: 40px;
  display: block;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.our-values::before{
  top: 0;
}
.our-values::after{
  bottom: 0;
}
.value-tab{
  padding-top: 70px;
  padding-bottom: 60px;
  height: 100%;
}
.value-tab-icon{
  width: 80px;
  margin-right: 25px;
}
.our-values .round-img{
  position: relative;
  z-index: 2;
}
.recognised-section{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  padding-top: 20vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.recognised-section .title_h2{
  color: #fff;
}
.recognised-section li{
  background-image: url(../images/bullet-icon.svg);
  background-repeat: no-repeat;
  background-position: left 8px;
  background-size: 12px 12px;
  margin-bottom: 10px;
  padding: 0 0 0 30px;
}

.leadership-team{
  background: linear-gradient(to bottom,  rgba(8,104,245,0.26) 0%,rgba(255,255,255,0.66) 54%,rgba(255,255,255,1) 100%);
}
.leadership-team-box{
  border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
}
.leadership-team-icon {
  width: 250px;
}
.leadership-team-txt{
  width: calc(100% - 250px);
  padding-left: 2em;
  border-left: rgba(0, 0, 0, 0.15) solid 1px;
  height: 100%;
}

.authorised_partner-item{
  background-image: url(../images/subtract.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 2em 4em 2em 2em;
  position: relative;
  height: 100%;
}
.authorised_partner-logo{
  height: 61px;
  margin-bottom: 20px;
}
.authorised_partner-logo img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.authorised_partner-item a.more-info {
  position: absolute;
  width: 45px;
  height: 45px;
  display: flex;
  background-color:var(--secondaryblue);
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center; 
  border-radius: 10px;
  right: 0;
  bottom: 0;
}
.info-text-ap{
  border: var(--secondaryblue) solid 1px;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  font-size: 14px;
  padding: 20px 10px;
  text-align: center;
}
.info-text-ap p:last-child{
  margin: 0;
}

/*-- career page --*/
.growth-learning-points{
  background-image: url('../images/upgrade-bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; 
  position: relative; 
}
.growth-learning-points::after,
.growth-learning-points::before{
  content: "";
  width: 100%;
  height: 30px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 1;
}
.growth-learning-points::after{
  top: 0;
}
.growth-learning-points::before{
  bottom: 0;
}
.growth-txt{
  padding-top: 50px;
  padding-bottom: 50px;
}
.growth-learning-points .round-img{
  position: relative;
  z-index: 2;
}
.opening-item h5{
  font-weight: 600;
}
.opening-swiper .swiper-slide,
.discover-benifits-swiper .swiper-slide,
.customers-swiper .swiper-slide{
  height: auto;
}
.opening-item{
  background-image: url(../images/subtract.svg);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 20px 65px 20px 20px;
  position: relative;
  height: 100%;
}
.opening-item a.more-info {
  position: absolute;
  width: 45px;
  height: 45px;
  display: flex;
  background-color:var(--secondaryblue);
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center; 
  border-radius: 10px;
  right: 0;
  bottom: 0;
}
.exp-for{
  color: #666;
}
#careerModal{
  z-index: 9999;
}
#careerModal .modal-dialog{
  max-width: 800px;
}
.opening-content{
  text-align: justify;
}
.opening-form {
  position: relative;
  padding: 0 0 0 30px;
}
.opening-form::before{
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 10px;
}
#joinModal .opening-form{
  padding: 0;
}
#joinModal .opening-form::before{
  display: none;
}
.opening-form textarea.form-control{
  padding: 10px 0;
  border-radius: 0;
  border: none;
  border-bottom: rgba(0, 0, 0, 0.15) solid 1px;
}
/*-- life at cs --*/
.blue-bg{
  background-color: #dbeafe;
}
.your-growth-box{
  border-top: rgba(0, 0, 0, 0.1) solid 1px;
  border-radius: 20px;
  padding: 20px;
  height: 100%;
}
.your-growth-box p:last-child{
  margin-bottom: 0;
}
.growth-wrap .col-12:last-child .your-growth-box{
  background-color: var(--secondaryblue);
  color: #fff;
}
@media screen and (max-width:1200px) {
  .service-image-wrap {
    width: 380px;
  }
  .service-content-right {
    width: calc(100% - 381px);
    padding: 30px 0 30px 30px;
  }
  ul.service-tabs li{
    font-size: 14px;
    margin: 0 10px 0 0;
  }

  .info-txt-ke{
    margin-top: 10px;
  }
  .data_ana_problem_we_box{
    flex-wrap: wrap;
  }
  .data_ana_problem_we_box_item{
    flex: auto;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    height: auto;
    background-color: rgba(255,255,255,.2);
    cursor: pointer;
  }
  .data_ana_problem_wesolve_overlay{
    position: relative;
    padding: 40px 0;
  }
  .data-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .data_ana_problem_wesolve .section-title {
    position: relative;
    top: auto;
    margin: 0 0 30px;
  }
  .data_ana_problem_wesolve_overlay::after{
    display: none;
  }
  .discover_browchure_inner h3{
    font-size: 28px;
    line-height: 34px;
  }
  .quote-box-inner{
    width: 100%;
  }
  /* .your-growth.pt-5, .supply-chain.py-5 { padding-top: 0 !important;} */
	.saptab_inner figcaption::after { top: 0; transform: none;}
  
}
@media screen and (max-width:991px) {
  .service-image-wrap {
    width: 100%;
  }
  .service-content-right {
    width: 100%;
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
  }
  .service-image-wrap,
  .service-content-wrap{
    order: 2;
  }
  .service-content-right,
  .service-tabs{
    order: 1;    
  }
  .service-tabs{
    margin: 0 0 25px;
  }
  ul.service-tabs li {
    font-size: 14px;
    border: rgba(0,0,0,.4) solid 1px;
    padding: 10px;
    margin: 0 10px 10px 0;
  }
  .why-points {
    width: 100%;
    padding: 0 12px;
  }
  .why-wrap-bottom .why-item-wrap {
    width: 33.33%;
    height: auto;
  }

  .overview-txt{
    padding: 0;
  }
  .overview-txt::before{
    display: none;
  }
  .supply-tab-content{
    flex-wrap: wrap;
  }
  .supply-tab-image {
    width: 100%;
    float: none;
  }
  .supply-tab-text{
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: -20px;
  }



   #servicesTab,
  #servicesTabContent {
    display: none !important;
  }
  .servicesTab_inner_left, .servicesTab_inner_right {
  flex: unset;
  width: 100%;
}
.servicesTab_inner_right figcaption {
  width: 100%;
  height: auto;
  padding: 20px;
  position: unset;
  margin: 15px 0 0 0;
}
.servicesTab_inner_right figure {
  width: 100%;
}
#servicesAccordion .accordion-item {
  background: transparent;
  border: none;
  border-radius: 0px;
  margin: 8px 0;
}
#servicesAccordion .accordion-item button{
  background: #3995f8;
  border-radius: 0;
  color: #fff;
  font-size: 16px;
  outline: none;
  box-shadow: none;
}
#servicesAccordion .accordion-item button::after {
  filter: brightness(0) invert(1);
}
.discover_browchure_inner h3{
  font-size: 20px;
  line-height: 26px;
}
.growth-learning-points::before{
  display: none;
}
.leadership-team-icon {
    width: 150px;
    padding-right: 30px;
  }
.leadership-team-txt {
  width: calc(100% - 150px);
}
.home_sec_one::after { display: none;}
.vertical-swiper {height: 450px;}
.authorised-partner .row:first-child .col-12.col-md-6 { width: 100%;}
.recognised-section {padding-top: 15vh;}
.service-tabs {margin: 0;}
.year_content.ms-4.flex-grow-1 {margin-left: 0 !important;}
.discover-swiper-wrap {padding-left: 32px;}
.industry_solution_single_box {padding: 38px 12px;}
.product_innova_box {padding: 20px;gap: 15px;}
.product_innova_box figcaption h6 {font-size: 14px;line-height: 22px;}
}
@media screen and (max-width:767px) {
  .myVerticalSwiper_item {
  width: 100%;
}
.event-tab .supply-tab-menu {
  display: flex;
  flex-wrap: wrap;
}
.site-main .event-tab .supply-tab-menu li{
  background-image: none;
  padding: 10px;
  border: rgba(0,0,0,.1) solid 1px;
  margin: 0 5px 10px;
  width: 100%;
  text-align: center;
  position: relative;
}
.event-tab .supply-tab-menu li::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .3s;
}
.event-tab .supply-tab-menu li.active::after{
  opacity: 1;
  background: radial-gradient( circle at 100% 100%, #2b1d55 0, #2b1d55 4px, transparent 4px ) 0% 0%/5px 5px no-repeat, radial-gradient(circle at 0 100%, #2b1d55 0, #2b1d55 4px, transparent 4px) 100% 0%/5px 5px no-repeat, radial-gradient(circle at 100% 0, #2b1d55 0, #2b1d55 4px, transparent 4px) 0% 100%/5px 5px no-repeat, radial-gradient(circle at 0 0, #2b1d55 0, #2b1d55 4px, transparent 4px) 100% 100%/5px 5px no-repeat, linear-gradient(#2b1d55, #2b1d55) 50% 50% / calc(100% - 2px) calc(100% - 10px) no-repeat, linear-gradient(#2b1d55, #2b1d55) 50% 50% / calc(100% - 10px) calc(100% - 2px) no-repeat, linear-gradient(90deg, #508aff 0%, #e53ab9 40%, #ff6d2b 60%, #ffad3e 100%);
}
.event-tab .supply-tab-content{
  display: none;
}
 .event-tab .supply-tab-image {
    width: 100%;
  }

  .supply-tab-content,
  .event-tab .supply-tab-content.active {
    display: block;
  }
  .supply-tab-content.accordian-block{
    border: rgba(0,0,0,.1) solid 1px;
  }
  .accordian-title{
    width: 100%;
  }
  .supply-tab-content .accordian-answer{
    padding: 10px 15px;
    display: none;
  }  
  .product_certified_tab{
    padding: 15px;
  }
  #softwareTab li button{
    width: 135px;
    height: 40px;
  }
  .products-banner .banner-content {
  position: unset;
  padding: 30px 0;
}
.products-banner .banner-content .container {
  padding: 0 15px;
}
#sapTabContent {
  margin: 30px 0 0 0;
}
.timeline_accordion {
  display: block !important;
}
#desktop_timeline {
  display: none !important;
}
.timeline_section::after {
  display: none;
}
#timelineAccordion {
  margin-bottom: 3rem !important;
  margin-top: 2rem !important;
}
#timelineAccordion .accordion-item h2 button {
  background: #ffffff1c;
  color: #fff;
  border-radius: 0;
  outline: none;
  box-shadow: none;
}
#timelineAccordion .accordion-item h2 button::after {
 filter: brightness(0) invert(1);
}
#timelineAccordion .accordion-item {
  background: transparent;
  border-radius: 0;
  border: none;
  margin: 8px 0;
}
.discover-swiper-wrap {
  padding: 0 15px;
  margin: 0;
}
.industry_solution_single_box {
  margin: 25px 0 0 0;
}
.industry_solution_box_two {
  padding: 20px;
}
.industry_solution_single_box {
  padding: 30px 30px;
}
.industry_solution_single_box p {
  font-size: 15px;
  line-height: 21px;
  margin: 0;
}
#AI .title_h2 {
  margin: 0 0 15px 0;
}

p{
  font-size: 15px;
}
.product_innova_box {
  display: block;
  padding: 15px;
}
.product_innova_box figcaption h6 {
  font-size: 16px;
  line-height: 1.5;
  margin: 15px 0 0 0;
}
.swiper-nav::after {
  width: 218px;
}
.product_ai_driven_innovation .swiper-nav::before {
  width: 59%;
}
.customers-swiper img {
  display: block;
  margin: 0 auto;
}
.mission-img{
  border-radius: 0;
}
.our-values::after{
  display: none;
}
.quote-box::before{
  bottom: calc( 100% - 3px);
}
.quote-box::after{
  height: 24px;
  top: 100%;  
bottom: calc( 100% - 3px);  
}
.quote-info{
  background-image: none;
  background-color: rgba(255, 255, 255, 0.2);
  border: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
}
.vision-txt,
.mission-txt{
  padding: 20px;
}
.statistics-section{
  overflow: hidden;
}
.opening-form {  
  padding: 20px;
  border: rgba(0, 0, 0, 0.1) solid 1px;
  border-radius: 15px;
  margin-top: 15px;
}
.opening-form::before{
  display: none;
}

.recognised-section {padding-top: 15vh;}
  .quote-info {padding: 2em 2em 2em 2em;}
  .discover_browchure_inner {padding: 30px 20px;}
  .our-values::before, .our-values::after {display: none;}
  .value-tab {padding-top: 30px;padding-bottom: 35px;}
  .wp-num {margin-bottom: 0em;}
}
@media screen and (max-width:500px) {
  .upgrade-drivers-section ul {
    columns: 1;
  }
  .why-item-wrap,
  .why-wrap-bottom .why-item-wrap{
    width: 100%;
    height: auto;
  }
  .why-item {
    text-align: center;
  }
  .software_tab_inner{
    flex-wrap: wrap;
  }
  
  .software_tab_inner figure,
  .software_tab_inner figcaption {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .leadership-team-txt {
    width: 100%;
    border-left: none;
    border-bottom: rgba(0, 0, 0, 0.15) solid 1px;
    padding: 20px 0 0;
  }
  .leadership-team-txt{
    border: none;
  }
}

.product_why_choose + .discover_browchure_sec{
  margin-top: 3em;
}
.our-customers.blue-bg,
.our-customers.blue-bg .swiper-nav-inner{
  background-color: #dbeafe;
}
.our-customers .swiper-slide{
  padding: 5px;
}
.customers-logo-wrap{
  background-color: #fff;
  padding:10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  height: 100%;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
}

@media screen and (min-width: 1200px){
.lifeatcop .service-content-wrap,
.lifeatcop .growth-txt{
  height: 100%;
}
.lifeatcop .growth-txt{
  display: flex;
  flex-wrap: wrap;
  padding-top: 7em;
}
}

.offering-txt ul{
  list-style: disc;
  padding-left: 14px;
}
.offering-txt li{
  margin: 5px 0;
}

.gray-bg{
  background-color: #f6f6f6;
}