/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Roboto:wght@400;500;700;900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;600;700;800;900&display=swap');


:root {
  --gray: #737680;
  --red: #dc2028;
  --darkRed: #a40c12;
  --black: #000000;
  --grey-light: rgba(42, 82, 195, 0.05) !important;
  --grey: rgb(247, 246, 246);
  --paragraph-font: 1.125rem;
  --paragraph-font-16: 16px;
  --paragraph-font-14: 14px;
  --paragraph-line-h: 1.5555555556em;
  --heading: 2.875rem;
  --heading-2: 2.2rem;
  --heading-line-h: 1.2;.
  --sub-heading: 1.25rem;
  --heading-semi: 1.625rem;
  --tag-line: 0.875rem;
  --hero-heading: 60px;
  --theme-grey: #58585a;
}

@font-face {
  font-family: sofiaPro;
  src: url(../fonts/sofiapro-light.otf) format("truetype");
  font-weight: normal;
}

/* .container {
  max-width: 1240px;
} */

button:focus,
input:focus {
  outline: none;
}

body {
  font-size: 16px;
  /* font-family: 'Roboto', sans-serif; */
  /* font-family: sofiaPro; */
  /* font-family: 'Merriweather', serif; */
  font-family: 'Nunito Sans', sans-serif;
  color: var(--black);
  transition: all 1s;
}

body.active {
  transform: translate(-70%, 0px);
  max-height: 100vh;
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  /* font-family: 'Roboto', sans-serif; */
  /* font-family: sofiaPro; */
  /* font-family: 'Merriweather', serif; */
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
}

p {
  font-size: var(--paragraph-font);
  /* font-family: 'Merriweather', serif; */
  font-family: 'Nunito Sans', sans-serif;
  letter-spacing: 0.2px;
}

@media (max-width:575px){
  p{
    font-size: 15px;
  }
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  font-family: 'Nunito Sans', sans-serif;
  letter-spacing: 0.2px;
}

.wrapper {
  position: relative;
}

.more {
  color: var(--red);
  border-bottom: solid 1px var(--red);
}

.more:hover {
  color: var(--red);
}

.more-with-arrow {
  color: var(--red);
  font-size: 16px;
  position: relative;
  padding-right: 30px;
  display: inline-block;
  font-weight: 600;
}

.more-with-arrow:hover {
  color: var(--red);
}

.more-with-arrow:before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/sprite.png) no-repeat -74px -4px;
  position: absolute;
  right: 0px;
  top: 4px;
  transition: all 0.2s linear;
}

.more-with-arrow:hover:before {
  right: 5px;
}

.h-100vh {
  height: 100vh;
}

.mh-100vh {
  min-height: 100vh;
}

/* .container {max-width:1590px; } */
.logo {
  width: 272px;
  max-width: 272px;
}

.headerFix .logo {
  width: 242px;
  max-width: 242px;
  padding: 5px 0px;
}

.headerFix .navigation>ul>li>a {
  padding: 15px 11px;
}

.logo a {
  display: block;
  max-width: 100%;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 999;
}

.fixedHeader .header .headerBg {
  background-color: transparent;
  position: fixed;
  top: 0;
  width: calc(100% - 100px);
  z-index: 9;
  padding: 15px 0px 0px;
}

.headerFix .headerBg {
  padding: 0 !important;
}

.fixedHeader .header .logo-fixed {
  display: none;
}

.fixedHeader .headerFix .logo {
  display: flex;
}

.fixedHeader .header.headerFix .logo-fixed {
  display: initial;
  width: 272px;
}

@media (max-width:480px){
  .fixedHeader .header.headerFix .logo-fixed {
    width: 202px;
  }
  .menu-side-stripe{
    padding: 15px 10px !important;
  }
}

.fixedHeader .header.headerFix .logo-first {
  display: none;
}

.fixedHeader .headerFix .headerBg {
  background-color: #fff;
}

.fixedHeader .headerBg .align-items-center {
  /* align-items: start !important; */
}


.middle {
  transition: all 1s;
  width: calc(100% - 100px);
}

.middle.active {
  margin-right: 200px;
}

.pos-relative {
  position: relative;
}

.hero-top {
  position: absolute;
  top: 30%;
  color: #fff;
  max-width: 800px;
  padding:0px 12px;
}

.hero-top .tag-line {
  padding-bottom: 15px;
  color: var(--red);
  font-weight: 600;
}

.hero-top .tag-line::before {
  top: 2px;
}

.hero-top .textA {
  font-size: 65px;
  line-height: 74px;
  margin-bottom: 20px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0px 0px 15px #0000004d;
}

.hero-top .textB {
  font-size: var(--sub-heading);
}

.hero-top .textC {
  margin-top: 40px;
}

#contactModal .top-close {
  text-align: right;
  font-size: 20px;
  font-weight: 800;
  position: absolute;
  right: 20px;
  top: 20px;
}

#contactModal .top-close span {
  cursor: pointer;
}

#contactModal .top-close span svg {
  width: 30px;
}

#contactModal .capcha{
  display: flex;
  align-items: center;
  column-gap: 30px;
  justify-content: center;
}

#contactModal .capcha input.totalVal{
  width: 60px;
  border-radius: 5px;
  padding: 5px 10px;
  text-align: center;
}

#contactModal .text-end{
  display: flex;
  justify-content: center;
  column-gap: 30px;
  align-items: center;
}

#contactModal .text-end .loading{
  display: none;
}

#contactModal .sucessMesg{
  display: none;
}

.form-contact {
  margin-top: 30px;
}

.form-contact  .contact-logo{
  margin-bottom: 25px;
  text-align: right;
}

.form-contact  .contact-logo img.company-logo{
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}

.form-contact .contactModalTitle {
  font-size: 1.825rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.form-contact .contactModalDescription {
  margin-bottom: 30px;
  font-size:16px;
}

.form-contact .col-md-6, .form-contact .col-md-12 {
  margin-bottom: 18px;
}

.form-contact label {
  font-weight: 600;
}

.form-contact label span {
  color: var(--red);
  vertical-align: middle;
}

.form-contact input {
  border-radius: 30px;
  background: var(--grey-light);
  border: none;
  height: 46px;
  padding: 5px 20px;
  transition: all 0.5s;
}

.form-contact input:hover,
.form-contact textarea:hover {
  background: rgba(42, 82, 195, 0.12) !important;
}

.form-contact input:focus,
.form-contact textarea:focus {
  box-shadow: none;
  background: rgba(42, 82, 195, 0.12) !important;
}

.form-contact textarea {
  border-radius: 30px;
  background: var(--grey-light);
  transition: all 0.5s;
  border: none;
  padding: 13px 20px;
}

.form-contact .border-btn {
  background-color: #fff;
}

.form-contact .border-btn:hover {
  background-color: var(--red);
  color: #fff;
}

.border-shadow-image {
  box-shadow: 0px 23px 21px 0px rgb(141 150 163 / 39%);
  border-radius: 30px;
}

.border-shadow-image-10 {
  box-shadow: 0px 23px 21px 0px rgb(141 150 163 / 39%);
  border-radius: 10px;
}

.right-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  min-width: 100px;
  width: 100px;
  z-index: 1030;
  height: 100vh;
}

.right-sidebar.first-level {
  width: 400px;
}

.right-sidebar.second-level {
  width: 100%;
}

.menu-side-stripe {
  width: 100px;
  height: 100%;
    min-height: 100vh;
  background-color: var(--red);
  padding: 30px 10px;
  position: fixed;
  right: 0;
  top: 0;
}

.menu-icon {
  color: #fff;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
}

.chat-icon {
  text-align: center;
  position: absolute;
  color: #fff;
  font-size: 13px;
  width: 100%;
  left: 0;
  bottom: 30px;
  cursor: pointer;
}

.chat-icon img {
  width: 30px;
  display: block;
  margin: 0px auto 4px;
}

.pointer {
  cursor: pointer;
}

.menu-side-stripe .menu-icon img {
  width: 40px;
  display: block;
  margin: auto;
}

.main-menu-bar {
  display: none;
}

.main-menu-bar ul {
  padding: 0;
  margin: 0;
}

.main-menu-bar ul li.first {
  list-style: none;
  margin-bottom: 35px;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.5s;
  position: relative;
  line-height: 35px;
}

.main-menu-bar ul li.first a {
  color: #000;
}

.main-menu-bar ul li.first:hover {
  color: var(--red);
  padding-left: 20px;
  border-left: 5px solid var(--red);
}

.main-menu-bar ul li.first:hover .sub-menu-wrapper-wide {
  color: #000;
}

.main-menu-bar ul li.first.active .sub-menu-wrapper-wide {
  display: block;
}

.main-menu-bar.active {
  display: initial;
  position: fixed;
  right: 100px;
  top: 0;
  width: 300px;
  background: #fff;
  height: 100%;
  padding: 100px 50px;
  box-shadow: 0 4px 30px -10px rgba(0, 0, 0, 0.25);
  transition: all 1s;
}

.main-menu-bar ul li.first .sub-menu-wrapper-wide {
  position: fixed;
  width: calc(100% - 400px);
  background: var(--grey);
  min-height: 100vh;
  height: 100%;
  overflow: auto;
  top: 0;
  left: 0;
  display: none;
  padding: 50px;
  line-height: initial;
}

.sub-menu-wrapper-wide .intro {
  max-width: 600px;
}

.sub-menu-wrapper-wide .intro h3 {
  font-size: 20px;
  font-weight: 600;
}

.sub-menu-wrapper-wide .intro p {
  font-size: var(--paragraph-font-16);
  color: #000;
}

.sub-menu-wrapper-wide .link-box {
  padding: 0px 40px 0px 0px;
}

.sub-menu-wrapper-wide .link-box h4 {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  padding-bottom: 15px;
  padding-top: 15px;
  border-bottom: 1px dotted #000;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}

.sub-menu-wrapper-wide .link-box:last-child h4 {
  border: none;
}

.sub-menu-wrapper-wide .link-box h4::before {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: solid 2px var(--red);
  border-left: solid 2px var(--red);
  transform: rotate(-135deg);
  position: absolute;
  left: -10px;
  top: 22px;
  transition: all 0.2s linear;
}

.sub-menu-wrapper-wide .link-box h4:hover:before {
  left: 0;
}

.sub-menu-wrapper-wide .link-box h4:hover {
  padding-left: 16px;
}

.sub-menu-wrapper-wide .link-box h4:hover a {
  color: var(--red);
}

.sub-menu-wrapper-wide .link-box ul {
  padding: 0;
}

.sub-menu-wrapper-wide .link-box ul li {
  list-style: none;
  color: var(--theme-grey);
  font-size: 14px;
  padding: 7px 0px;
  cursor: pointer;
  font-weight: 600;
  border-bottom: 1px dotted var(--theme-grey);
  margin: 0;
  /* line-height: 1.1; */
  transition: all 0.5s;
}

.sub-menu-wrapper-wide .link-box ul li:hover,
.sub-menu-wrapper-wide .link-box ul li:hover a {
  color: var(--red)
}

.sub-menu-wrapper-wide .link-box ul li:last-child {
  border: none;
  padding-bottom: 0;
}

.sub-menu-wrapper-wide .link-box ul li a {
  color: var(--theme-grey);
}

.mountain-1 {
  position: absolute;
  bottom: 0px;
  width: 800px;
  left: calc(50% - 400px);
  z-index: 99;
  height: 450px;
}

.cloudMove {
  animation: MoveLeftRight 70s linear infinite;
  position: absolute;
  left: 0;
  bottom: 270px;
  min-width: 600px;
  width: 600px;
}

.cloudMove1 {
  animation: MoveLeftRight1 20s linear infinite;
  position: absolute;
  right: 0px;
  bottom: 160px;
}

@keyframes MoveLeftRight {
  0% {
    left: 0%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 0%;
  }
}

@keyframes MoveLeftRight1 {
  0% {
    right: 250px;
  }

  50% {
    right: 0%;
  }

  100% {
    right: 250px;
  }
}

#nav-icon {
  width: 33px;
  height: 27px;
  position: relative;
  margin: 0px auto 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

/* Icon 4 */

#nav-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1px;
  left: 5px;
}

#nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 24px;
  left: 5px;
}

.functional-testing .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-functional-testing.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.integration-testing .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-integration-testing.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.performance-testing .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-performance-testing.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.regression-testing .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-regression-testing.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.release-testing .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-release-testing.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.contract-hire .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-contract-hire.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.contract-staffing .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-contract-staffing.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.ondemand .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-on-demand.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.business-intelligence .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-business-intelligence.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.modern-workplace .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-modern-workplace.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.data-ai .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-ai.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.sap-on-cloud .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-sap-on-cloud.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.enterprise-integration .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-enterprise-integration.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.aboutPage .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-about.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.tableau .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-tableau.webp');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.azure-analytics .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-azure-analytics.webp');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.power-platform .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-power-platform.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.cloud-works .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-cloud-works.webp');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.machine-learning .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-machine-learning.webp');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.sap-integration .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-integration.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.azure-integration .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-azure-integration.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.mulesoft .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-mulesoft.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.sap-analytics .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-sap-analytics.webp');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.legacy-app .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-legacy-app-modern.webp');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.dev-ops .homeBannerBg{
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-devops.webp');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.sap-landing .homeBannerBg {
  min-height: 100vh;
  background-image: linear-gradient(to right, #0000004f, transparent), url('../images/hero-sap.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.sap-s4hana .homeBannerBg {
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-s4hana.jpg');
  /* background-image: url('../images/hero-s4hana.jpg'); */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.sap-ecc .homeBannerBg {
  min-height: 100vh;
  background-color: transparent;
  background-image: url('../images/hero-ecc.jpg');
  background-size: cover;
  background-attachment: initial;
  background-position: center;
}

.rise-sap .homeBannerBg {
  min-height: 100vh;
  background-color: transparent;
  
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-rise.jpg');
  background-size: cover;
  background-attachment: initial;
  background-position: center;
}

.sap-btp .homeBannerBg {
  min-height: 820px;
  background-image: linear-gradient(to right, #0000004f, transparent), url('../images/hero-btp.jpg');
  background-size: cover;
  background-attachment: fixed;
}

.data-ai-landing .homeBannerBg {
  min-height: 100vh;
  background-color: transparent;
  
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-ai.jpg');
  background-size: cover;
  background-attachment: initial;
  background-position: center;
}

.integration-landing .homeBannerBg {
  min-height: 100vh;
  background-color: transparent;
  background-image: url('../images/hero-integration-landing.jpg');
  background-size: cover;
  background-attachment: initial;
  background-position: center;
}

.staffing-landing .homeBannerBg {
  min-height: 100vh;
  background-color: transparent;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-staffing.jpg');
  background-size: cover;
  background-attachment: initial;
  background-position: center;
}

.insightPage .homeBannerBg {
  min-height: 100vh;
  background-color: transparent;
  background-image: url('../images/hero-insights.jpg');
  background-size: cover;
  background-attachment: initial;
}

.industries-landing .homeBannerBg {
  min-height: 100vh;
  background-color: transparent;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-industries.jpg');
  background-size: cover;
  background-attachment: initial;
}
.enterprise-app .homeBannerBg {
  min-height: 100vh;
  background-color: transparent;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-enterprise.jpg');
  background-size: cover;
  background-attachment: initial;
  background-position: center;
}

.software-testing-landing .homeBannerBg {
  min-height: 100vh;
  background-color: transparent;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-testing.jpg');
  background-size: cover;
  background-attachment: initial;
  background-position: center;
}

.contactPage .homeBannerBg {
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-contact.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.integrationPage .homeBannerBg {
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-integration.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.sap-hcm .homeBannerBg {
  min-height: 100vh;
  background-image: linear-gradient(to right, #000000b3, transparent), url('../images/hero-hcm.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}



.innerPage .homeBannerText {
  margin-top: 100px;
}

.innerPage .homeBannerText .textB {
  font-size: 21px;
  font-weight: normal;
  color: #ffffff;
  padding: 0px 0px 30px 0px;
  max-width: 460px;
  line-height: 1.3;
}

.innerPage .homeBannerText .tag-line {
  color: #ffffff;
  margin: 0px 0px 15px 0px;
}

.innerPage .tag-line:before {
  top: 3px;
}

.pad-50 {
  padding: 50px 0px;
}

.pad-70 {
  padding: 70px 0px;
}

.pad-100 {
  padding: 100px 0px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-30 {
  padding-right: 30px;
}

.block-bold-heading {
  font-size: 45px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
}

.block-bold-heading-small {
  font-size: var(--heading);
  line-height: var(--heading-line-h);
  margin: 0px 0px 20px 0px;
}

.heading-2 {
  font-size: var(--heading-2);
  line-height: var(--heading-line-h);
  margin: 0px 0px 20px 0px;
}

.heading-2-bold {
  font-size: var(--heading-2);
  line-height: var(--heading-line-h);
  margin: 0px 0px 20px 0px;
  font-weight: 700;
}

.headingHighlight{
  color: var(--red);
  text-transform: uppercase;
  font-size: var(--paragraph-font-14);
  margin-bottom: 12px;
  line-height: 22px;
}

.block-bold-heading-light {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

.block-paragraph {
  font-size: var(--paragraph-font);
  line-height: 1.4;
  padding: 0px 0px 15px 0px;
}

.block-paragraph-medium {
  font-size: var(--sub-heading);
  line-height: 1.4;
  padding: 0px 0px 15px 0px;
}

.block-paragraph-small {
  font-size: 15px;
  line-height: 1.5;
  padding: 0px 0px 15px 0px;
  color: #000;
}

.heading-center-960 {
  max-width: 960px;
  margin: 0px auto 50px;
}

.heading-center-820 {
  max-width: 820px;
  margin: 0px auto 50px;
}

.bg-grey{
  background-color: var(--grey);
}

.bg-light-grey{
  background-color: var(--grey-light);
}

.highlight-color {
  color: var(--red);
}

.radius-10 {
  border-radius: 10px;
}


.headerBg {
  padding: 0px 0px;
  background-color: transparent;
  transition: 0.2s linear;
}

.header.headerFix{
  display: none;
}

.headerFix .headerBg {
  padding: 0px 0px;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  z-index: 12;
  background-color: #fff;
}

.redBtn {
  background: var(--red);
  color: #ffffff;
  padding: 12px 30px;
  text-align: center;
  border-radius: 6px;
  font-weight: 500;
  border: none;
  display: inline-block;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.redBtn:hover {
  background: var(--darkRed);
  color: #ffffff;
  text-decoration: none;
}

.redBtn .txt {
  display: inherit;
  transition: transform 0.2s linear;
}

.redBtn.rightArrow:after {
  content: "";
  width: 26px;
  height: 14px;
  background: url(../images/sprite.png) no-repeat -36px -24px;
  display: inline-block;
  vertical-align: -3px;
  margin-left: 5px;
  position: relative;
  left: 1px;
  transition: left 0.2s linear;
}

.gradient-btn {
  background-color: var(--red);
  background-image: linear-gradient(to right, var(--darkRed), #db333b, #ed6269);
  /* background: #ffffff; */
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  padding: 13px 24px;
  display: inline-block;
}

.border-btn {
  border: solid 2px var(--red);
  border-radius: 28px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 600;
  color: #252328;
  padding: 9px 30px;
  display: inline-block;
}

.border-btn:hover {
  background-color: var(--red);
  color: #ffffff;
}

.circle-list li {
  list-style: none;
  font-size: var(--paragraph-font-16);
  margin-bottom: 11px;
  font-weight: 600;
}

.circle-list li::before {
  content: '○';
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  color: var(--red);
  vertical-align: text-bottom;
}


@media (min-width: 1026px) {

  .overLay {
    display: none;
  }
}

/* .hasChild>a:after {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  vertical-align: 4px;
  margin-left: 7px;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  transform: rotate(45deg);
} */

/* .hasChild:hover>a:after {
  border-right-color: var(--red);
  border-bottom-color: var(--red);
} */

.overLay {
  transition: all 0.3s linear;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.72);
  z-index: 11;
  display: none;
}

@media (max-width: 1025px) {
  .headerBg {
    padding: 15px 0px;
  }

  .logo {
    max-width: 200px;
  }

  .mobileNavBtn {
    display: inline-block;
  }

  /* 
  .hasChild>a:after {
    border-color: #ffffff;
  } */
}

.homeHeading h2 {
  /* font-weight: normal; */
  font-size: var(--heading);
  line-height: var(--heading-line-h);
  margin: 0px 0px 20px 0px;
}

.homeHeading h2::after {
  content: '.';
  color: var(--red);
  font-size: 70px;
  line-height: 0;
}

.homeHeading h2.ques::after {
  display: none;
}

.homeHeading .desc {
  font-size: var(--paragraph-font);
  line-height: var(--paragraph-line-h);
  padding: 0px 0px 15px 0px;
  max-width: 660px;
  margin: 0px auto;
}

.footer-partners-logo{

}

.footer-contact-info {
  padding-bottom: 20PX;
}

.footer-contact-info a {
  color: #ffffff;
  font-size: 16px;
  position: relative;
  padding-left: 27px;
  margin-bottom: 15px;
  display: inline-block;
}

.footer-contact-info a:before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/sprite.png) no-repeat -43px -48px;
  position: absolute;
  left: 0px;
  top: 5px;
}

.footer-contact-info a.tel:before {
  background-position: -79px -47px;
}

.footer {
  background: #1b1a18;
  border-top: solid 14px var(--red);
  padding: 70px 0px 25px 0px;
  width: calc(100% - 100px);
}

.mobile-contact-icon{
  position: fixed;
  background: var(--red);
  bottom: 0;
  padding: 10px;
  border-radius: 5px;
  right: 20px;
  z-index: 99;
  bottom: 20px;
  cursor: pointer;
  display: none;
}



.mobile-contact-icon img{
  width:30px;
}

.footer hr {
  border-top-color: #818181;
  margin: 40px 0px;
}

.footerLogo {
  margin: 0px 0px 20px 0px;
}

.footerLogo img {
  width: 220px;
}

.footerLogo a {
  display: inline-block;
  max-width: 100%;
}

.footer h3 {
  color: #ffffff;
  font-size: 18px;
  margin: 0px 0px 25px 0px;
}

.footerLink {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.footerLink li {
  display: block;
  padding-bottom: 5px;
}

.footerLink li a {
  color: rgb(255 255 255 / 50%);
  font-size: 14px;
  position: relative;
  transition: all 0.2s linear;
  overflow: hidden;
  display: inline-block;
}

.footerLink li a:hover {
  color: var(--red);
  text-decoration: none;
  padding-left: 16px;
}

.footerLink li a:before {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: solid 2px var(--red);
  border-left: solid 2px var(--red);
  transform: rotate(-135deg);
  position: absolute;
  left: -10px;
  top: 6px;
  transition: all 0.2s linear;
}

.footerLink li a:hover:before {
  left: 0px;
}

.copyRight {
  color: rgb(255 255 255 / 31%);
  margin: 15px 0px;
  text-align: center;
}
.desclaimer {
    font-size: 10px;
    color: rgb(255 255 255 / 71%);
    text-align:center;
    margin-bottom:20px;
}
.privacy-policy {
    font-size: 10px;
    color: rgb(255 255 255 / 71%);
    text-align:center;
}

.foot-addres-block {
  padding: 20px 0px;
}

.foot-addres-block h4 {
  color: rgb(255 255 255 / 50%);
  font-size: 18px;
  margin: 0px 0px 18px 0px;
  padding-bottom: 13px;
  position: relative;
}

.foot-addres-block h4:before {
  content: "";
  width: 45px;
  height: 1px;
  background-color: var(--red);
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.foot-addres-block .add {
  color: rgb(255 255 255 / 100%);
  font-size: 16px;
  margin: 0px 0px 10px 0px;
  position: relative;
  padding-left: 30px;
}

.foot-addres-block .add:before {
  content: "";
  width: 18px;
  height: 20px;
  background: url(../images/sprite.png) no-repeat -111px -46px;
  position: absolute;
  left: 0px;
  top: 5px;
}

.animation {
  opacity: 0;
  transform: translate(0px, 20px);
  transition: all 0.5s linear;
}

.animation.ani {
  opacity: 1;
  transform: translate(0px, 0px);
}

.modal-dialog {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: auto;
}

@media (min-width: 1600px) {
  .headerBg {
    padding: 22px 16px;
  }
}

@media(max-width: 768px) {
  .hero-top .textA{
    line-height: 63px;
  }
  .hero-top{
    top:25%;
  }
  .main-menu-bar.active {
    width: 250px;
  }

  .main-menu-bar ul li.first .sub-menu-wrapper-wide {
    width: calc(100% - 350px);
  }

  .main-menu-bar ul li.first {
    margin-bottom: 25px;
    font-size: 26px;
  }

  .sub-menu-wrapper-wide .link-box h4 {
    font-size: 17px;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .sub-menu-wrapper-wide .link-box {
    padding: 0px 20px 0px 0px;
  }

  .menu-blocks{
    padding-left:0 !important;
  }

  .modal-dialog {
    min-height: calc(100vh - 20px);
  }
}

@media (max-width: 767px) {
  .mobile-contact-icon{
    display: initial;
  }
  .sub-menu-wrapper-wide .link-box h4::before{
    top:15px;
  }
  #nav-icon.white-ham span{
    background-color: #000;
  }
  .menu-side-stripe{
    background: transparent;
    z-index: 9;
    padding:20px 10px;
    width: 60px;
    height: 60px;
    min-height: 60px;
  }

  .menu-side-stripe .chat-icon{
    display: none;
  }
  .main-menu-bar.active {
    width: 100%;
    left: 0;
    overflow: auto;
    padding: 17px 15px;
  }
  .menu-icon.scrolled{
    color: transparent;
  }
  .menu-icon.scrolled #nav-icon span{
    background-color: #000;
  }
  #nav-icon.open span{
    background-color: #000;
  }
  .main-menu-bar ul li.first.active .sub-menu-wrapper-wide{
    width: 100%;
    position: relative;
    padding: 10px 12px;
    background-color: transparent;
    min-height: auto;
  }
  .main-menu-bar ul li.first.active .sub-menu-wrapper-wide .mt-5{
    margin-top: 0 !important;
  }
  .main-menu-bar ul li.first.active .sub-menu-wrapper-wide .menu-blocks{
    padding:0 !important;
  }
  .sub-menu-wrapper-wide .link-box:last-child h4{
    border-bottom: 1px dotted #000;
  }
  .sub-menu-wrapper-wide .intro{
    display: none;
  }
  .main-menu-bar ul li.first.active .sub-menu-wrapper-wide .row.flex-wrap.mt-5{
    margin-top:0 !important;
  }
  .main-menu-bar ul li.first:hover{
    border-left: 0;
  }
  .fixedHeader .headerFix .headerBg{
    width:100%;
  }
  .fixedHeader .header .headerBg{
    width:100%;
  }
  .container{
    width:100%;
    max-width: 100%;;
  }
  .footer{
    width:100%;
    margin-top: 60px;
  }
  .middle{
    width:100%;
  }
  .right-sidebar{
    height:60px;
  }
  body {
    font-size: 14px;
  }

  .headerBg .container {
    padding: 0px 10px;
  }

  .homeHeading h2 {
    font-size: 36px;
    margin: 0px 0px 15px 0px;
  }

  .homeHeading .desc {
    font-size: 16px;
    width: 100%;
    max-width: 100%;
  }

  .footer {
    padding: 40px 0px 0px 0px;
    border-top: solid 5px var(--red);
  }

  .footer h3 {
    margin: 0px 0px 25px 0px;
    font-size: 18px;
  }

  .footer .colA {
    padding-bottom: 40px;
  }

  .footerLink li {
    padding-bottom: 5px;
  }

  .footerLink li a {
    font-size: 14px;
  }

  .footerLink {
    padding-bottom: 5px;
  }

  .footBlock {
    display: none;
    position: relative;
    top: -15px;
    padding: 0px 0px 10px 0px;
  }

  .footBlockHead {
    position: relative;
  }

  .footBlockHead:after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    right: 5px;
    top: 0px;
    background: transparent url(../images/slider-arrow.png) no-repeat 3px 2px;
    transition: all 0.1s linear;
  }

  .openTab.footBlockHead:after {
    transform: rotate(90deg);
    top: -2px;
  }

  .footer hr {
    margin: 10px 0px 20px 0px;
  }

  .foot-addres-block {
    padding: 10px 0px 20px 0px;
  }

  .col-md-3:last-child .foot-addres-block {
    padding: 0px;
  }

  .foot-addres-block .add {
    font-size: 14px;
    margin: 0px 0px 10px 0px;
  }

  .copyRight {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 20px 0px;
  }
}

@media (max-width:575px) {
  :root{
    --heading-2: 1.7rem;
  }
  .hero-top{
    padding:10px;
  }
  .hero-top .textA {
    font-size: 45px;
    line-height: 50px;
  }
}