@font-face {
  font-family: Gilroy-Regular;
  src: url("../fonts/Gilroy-Regular.otf");
}
@font-face {
  font-family: Gilroy-Medium;
  src: url("../fonts/Gilroy-Medium.otf");
}
@font-face {
  font-family: Gilroy-Bold;
  src: url("../fonts/Gilroy-Bold.otf");
}
@font-face {
  font-family: Gilroy-Semibold;
  src: url("../fonts/Gilroy-Semibold.otf");
}
html,
body,
p,
span,
ul,
li {
  margin: 0;
  padding: 0;
}

body {
  font-family: Gilroy-Regular;
}
body p {
  margin: 0;
}
body ul {
  margin: 0 !important;
  padding: 0;
}
body ul li {
  list-style: none;
}
body a {
  display: block;
  width: fit-content;
}
body a:hover {
  text-decoration: none;
  color: inherit;
}

.accordions .accordion-button {
  font-family: Gilroy-Medium;
  font-size: 1.625rem;
  font-weight: normal;
  line-height: 110%;
  color: #000;
  padding: 2rem;
  background-color: transparent;
}
.accordions .accordion-item {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-left: none;
  border-right: none;
}
.accordions .accordion-button:not(.collapsed) {
  color: #000;
  background-color: transparent;
  box-shadow: unset;
}
.accordions .accordion-body {
  padding: 0 2rem 2rem 2rem;
  color: #545454;
  font-family: Gilroy-Regular;
  font-size: 1rem;
  font-style: normal;
  line-height: 150%;
}
.accordions .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url(../../assets/images/chevron-down.svg);
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
.accordions .accordion-button:not(.collapsed)::after {
  background-image: url(../../assets/images/chevron-down.svg);
  transform: rotate(-180deg);
}
.accordions .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: unset;
  border-top-right-radius: unset;
}
.accordions .accordion-button:focus {
  border-color: unset;
  box-shadow: none;
}

.primary-btn {
  border-radius: 0.5rem;
  background: #AF2127;
  color: #FFFFFF;
  font-family: "Gilroy-Semibold";
  font-size: 1rem;
  text-align: center;
  padding: 0.438rem 1rem !important;
  cursor: pointer !important;
  transition: border-radius 0.5s;
}
.primary-btn:hover {
  cursor: pointer;
  color: #FFF;
}

.secondary-btnSmRadius {
  border-radius: 0.375rem;
  border: 1px solid rgba(60, 60, 62, 0.35);
  color: #3C3C3E;
  font-size: 0.875rem;
  font-weight: 400;
  text-align: center;
  padding: 0.213rem 0.738rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  gap: 0.2rem;
  letter-spacing: 1.5px;
}
.secondary-btnSmRadius:hover {
  border: 1px solid #000;
}
.secondary-btnSmRadius:hover img {
  transform: translate(5px, 0px);
}
.secondary-btnSmRadius img {
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.secondary-btn {
  border-radius: 1.875rem;
  border: 1px solid rgba(60, 60, 62, 0.35);
  color: #3C3C3E;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  gap: 0.5rem;
}
.secondary-btn:hover {
  border: 1px solid #000;
}
.secondary-btn:hover img {
  transform: translate(5px, 0px);
}
.secondary-btn img {
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.secondary-btn-white {
  border-radius: 1.875rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFF;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 0.5rem;
}
.secondary-btn-white:hover {
  color: #FFF;
  border: 1px solid #FFF;
}
.secondary-btn-white:hover img {
  transform: translate(5px, 0px);
}
.secondary-btn-white img {
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.letsDiscuss-btn {
  font-family: Gilroy-Semibold;
  font-size: 1rem;
  line-height: 100%;
  color: #FFF;
  background-color: #AF2127;
  padding: 1rem 1.2rem;
  cursor: pointer;
  letter-spacing: 0.7px;
  text-wrap: nowrap;
}
.letsDiscuss-btn img {
  background-color: #FFF;
  padding: 0.375rem;
  border-radius: 50%;
  margin-left: 0.5rem;
  width: 30px;
  height: 30px;
  transition: transform 0.5s;
}

.bordered-btn {
  border-radius: 0.5rem;
  border: 0.75pt solid rgba(0, 0, 0, 0.1); /* 0.75pt solid border with 10% opacity black */
  padding: 0.5rem 1rem;
  color: #3C3C3E;
  font-family: Gilroy-Regular;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  cursor: pointer;
  display: inline-block;
}

.u-button {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.u-button:hover .u-button-arrow::before {
  opacity: 1;
  transform: translateX(0);
}
.u-button:hover .u-button-arrow::after {
  opacity: 0;
  transform: translateX(100%);
}
.u-button:hover .u-button-arrow-black::before {
  opacity: 1;
  transform: translateX(0);
}
.u-button:hover .u-button-arrow-black::after {
  opacity: 0;
  transform: translateX(100%);
}
.u-button:hover .u-button-arrow-blackLeft::before {
  opacity: 1;
  transform: translateX(0);
}
.u-button:hover .u-button-arrow-blackLeft::after {
  opacity: 0;
  transform: translateX(-100%);
}
.u-button:hover .u-button-arrow-darkgrey::before {
  opacity: 1;
  transform: translateX(0);
}
.u-button:hover .u-button-arrow-darkgrey::after {
  opacity: 0;
  transform: translateX(100%);
}
.u-button:hover .u-button-arrow-white::before {
  opacity: 1;
  transform: translateX(0);
}
.u-button:hover .u-button-arrow-white::after {
  opacity: 0;
  transform: translateX(100%);
}

.u-button-arrow {
  width: 28px;
  height: 28px;
  position: relative;
  overflow: hidden;
  border: none !important;
}

.u-button-arrow::before {
  opacity: 0;
  transform: translateX(-100%);
}

.u-button-arrow::before {
  content: "";
  background-image: url("../images/arrow-right-white2.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  filter: var(--arrow-filter);
  transition: opacity 1.3s, transform 0.7s;
}
.u-button-arrow::after {
  content: "";
  background-image: url("../images/arrow-right-white2.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  filter: var(--arrow-filter);
  transition: opacity 1.3s, transform 0.7s;
}

.u-button-arrow-black {
  width: 28px;
  height: 28px;
  position: relative;
  overflow: hidden;
  border: none !important;
}
.u-button-arrow-black::before {
  content: "";
  background-image: url("../images/arrow-right-black.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0;
  transform: translateX(-100%);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  filter: var(--arrow-filter);
  transition: opacity 1.3s, transform 0.7s;
}
.u-button-arrow-black::after {
  content: "";
  background-image: url("../images/arrow-right-black.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  filter: var(--arrow-filter);
  transition: opacity 1.3s, transform 0.7s;
}

.u-button-arrow-blackLeft {
  width: 28px;
  height: 28px;
  position: relative;
  overflow: hidden;
  border: none !important;
}
.u-button-arrow-blackLeft::before {
  content: "";
  background-image: url("../images/LeftRedArrow.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0;
  transform: translateX(100%);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  filter: var(--arrow-filter);
  transition: opacity 1.3s, transform 0.7s;
}
.u-button-arrow-blackLeft::after {
  content: "";
  background-image: url("../images/LeftBlackarrow.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  filter: var(--arrow-filter);
  transition: opacity 1.3s, transform 0.7s;
}

.u-button-arrow-blackLeft:hover::before {
  background-image: url("../images/LeftRedArrow.svg"); /* Change to red arrow */
}

.textRedHover:hover {
  color: #AF2127;
}
.textRedHover:hover svg, .textRedHover:hover p {
  color: #AF2127 !important;
}

.u-button-arrow-darkgrey {
  width: 28px;
  height: 28px;
  position: relative;
  overflow: hidden;
  border: none !important;
}
.u-button-arrow-darkgrey::before {
  content: "";
  background-image: url("../images/darkgreyarrow.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0;
  transform: translateX(-100%);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  filter: var(--arrow-filter);
  transition: opacity 1.3s, transform 0.7s;
}
.u-button-arrow-darkgrey::after {
  content: "";
  background-image: url("../images/darkgreyarrow.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  filter: var(--arrow-filter);
  transition: opacity 1.3s, transform 0.7s;
}

.u-button-arrow-white {
  width: 28px;
  height: 28px;
  position: relative;
  overflow: hidden;
  border: none !important;
}
.u-button-arrow-white::before {
  content: "";
  background-image: url("../images/white-arrow-right.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0;
  transform: translateX(-100%);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  filter: var(--arrow-filter);
  transition: opacity 1.3s, transform 0.7s;
}
.u-button-arrow-white::after {
  content: "";
  background-image: url("../images/white-arrow-right.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  filter: var(--arrow-filter);
  transition: opacity 1.3s, transform 0.7s;
}

.link-btn {
  color: #000;
  font-family: "Gilroy-Medium";
  cursor: pointer;
}

.secondary-btnRadius {
  border-radius: 0.375rem;
  border: 1px solid rgba(60, 60, 62, 0.35);
  color: #3C3C3E;
  font-size: 0.875rem;
  font-weight: 400;
  text-align: center;
  padding: 0.313rem 0.938rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  gap: 0.5rem;
  letter-spacing: 1.5px;
}
.secondary-btnRadius:hover {
  border: 1px solid #000;
}
.secondary-btnRadius:hover img {
  transform: translate(5px, 0px);
}
.secondary-btnRadius img {
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.secondary-btnRadius-white {
  border-radius: 0.375rem;
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
  text-align: center;
  padding: 0.313rem 0.938rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  gap: 0.5rem;
  letter-spacing: 1.5px;
}
.secondary-btnRadius-white:hover {
  border: 1px solid #fff;
  color: #fff;
}
.secondary-btnRadius-white:hover img {
  transform: translate(5px, 0px);
}
.secondary-btnRadius-white img {
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.link-btn-light {
  font-family: "Gilroy-Regular";
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-size: 0.875rem;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1.5px;
}
.link-btn-light:hover {
  color: #fff;
}

.secondary-btnRadiusIcon {
  border-radius: 0.375rem;
  border: 1px solid rgba(60, 60, 62, 0.35);
  color: #3C3C3E;
  font-size: 0.875rem;
  font-weight: 400;
  text-align: center;
  padding: 0.313rem 0.938rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  gap: 0.5rem;
  letter-spacing: 1.5px;
}
.secondary-btnRadiusIcon:hover {
  border: 1px solid #AF2127;
}
.secondary-btnRadiusIcon:hover svg, .secondary-btnRadiusIcon:hover p {
  color: #AF2127 !important;
}
.secondary-btnRadiusIcon:hover svg path {
  stroke: #AF2127 !important;
}

.secondary-btn-red {
  border-radius: 0.375rem;
  border: 1px solid rgb(234, 234, 234);
  color: #AF2127 !important;
  font-size: 1rem !important;
  font-weight: 600;
  text-align: center;
  padding: 0.625rem;
  cursor: pointer;
  gap: 0.2rem;
  letter-spacing: 1.5px;
}
.secondary-btn-red:hover {
  cursor: pointer;
  color: #AF2127;
}

.colGapTop {
  margin-top: 10rem !important;
}

.colGap {
  margin-bottom: 10rem !important;
}

.colGapSM {
  margin-bottom: 4rem !important;
}

.colGapMd {
  margin-bottom: 8rem;
}

.colGapLG {
  margin-bottom: 20rem !important;
}

.colGapRight {
  margin-right: 10rem;
}

.wrapper {
  max-width: 1366px;
  margin: 0 auto;
}

.wrapper2 {
  max-width: 1366px;
  margin-right: auto;
  margin-left: 0;
}

.taglist li:first-child img {
  display: none;
}
.taglist li img {
  width: 6px;
  height: 6px;
}
.taglist li.tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-color: unset;
  color: #fff;
  opacity: 1;
}

.tag {
  font-family: "Gilroy-Regular";
  font-size: 1.125rem;
  line-height: 110%;
  background: #000000;
  color: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  opacity: 0.6;
  letter-spacing: 0.15em;
}

.tag-white {
  font-family: Gilroy-Medium;
  font-size: 0.75rem;
  line-height: 100%;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.rightArrow {
  transform: rotate(45deg);
}

.hamburger {
  display: none;
}

.regularFont {
  font-family: Gilroy-Regular;
  font-weight: 400;
}

.divider {
  background: url(../../assets/images/seperatorlg.svg) no-repeat right;
  width: 3px;
}

.aboutSummary .divider {
  background: url(../../assets/images/seperatorlg.svg) no-repeat right;
  width: 3px;
  height: 50px;
}

.overflow-h {
  overflow: hidden;
}

.headerBlock {
  text-align: center;
}

.headerBlock2 {
  text-align: center;
}

.subTextBlock {
  text-align: center;
  width: 65%;
}

.dFlexGap {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: center;
  text-align: center;
}
.dFlexGap .blocklogo {
  width: 50%;
}

.NU-viewall-link {
  display: flex;
  height: 100%;
}

.imgWH-60 {
  width: 64px;
  height: 64px;
}

.imgWH-80 {
  width: 80px;
  height: 80px;
}

.dInlineFlex {
  display: inline-flex;
}

.imgWidth {
  width: 100%;
  height: 100%;
}

.TitleWhite {
  font-family: "Gilroy-Medium";
  font-size: 1.25rem;
  line-height: 120%;
  color: #FFF;
}

.TitlesmBlack {
  font-family: "Gilroy-Regular";
  font-size: 1.25rem;
  line-height: 130%;
  color: #3C3C3E;
}

.CssubText {
  font-family: "Gilroy-Regular";
  font-size: 1.25rem;
  line-height: 28px;
  color: #49515B;
}

.TitleBoldBlack {
  font-family: "Gilroy-Semibold";
  font-size: 1.25rem;
  line-height: 130%;
  color: #3C3C3E;
}

.TitlesmGreyText {
  font-family: "Gilroy-Regular";
  font-size: 1rem;
  line-height: 110%;
  color: #7B7B7B;
  letter-spacing: 1px;
}

.TitleWhiteSm {
  font-family: "Gilroy-bold";
  font-size: 0.75rem;
  line-height: 100%;
  color: #FFF;
  letter-spacing: 0.2rem;
}

.TitleLightWhiteSm {
  font-family: "Gilroy-bold";
  font-size: 0.75rem;
  line-height: 100%;
  color: rgb(255, 255, 255);
  opacity: 0.5;
  letter-spacing: 0.2rem;
}

.w-20 {
  width: 20%;
}

.w-30 {
  width: 30%;
}

.w-33 {
  width: 33%;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-100 {
  width: 100%;
}

.cursorPointer {
  cursor: pointer !important;
}

.paddingTop-8 {
  padding-top: 8rem;
}

.GreyBlock {
  background: rgba(0, 0, 0, 0.02);
  padding: 2rem;
}

.IconHeightWidth {
  height: 60px;
  width: 60px;
}

.textBlack {
  color: #000000 !important;
}

.Icon-40 {
  height: 40px;
  width: 40px;
}

.resultPara {
  font-family: "Gilroy-Regular";
  font-size: 1.125rem;
  line-height: 23.4px;
  color: #49515B;
}

.sect-getintouch {
  color: #000000;
}
.sect-getintouch .modal-dialog {
  max-width: 1400px;
}
.sect-getintouch .modal-dialog .modal-content {
  padding: 2rem;
  border-radius: 1rem;
  margin: 1.5rem;
}
.sect-getintouch h3 {
  font-size: 5rem;
  font-family: "Gilroy-SemiBold";
  line-height: 100%;
  color: #000000;
  margin-bottom: 1.5rem;
}
.sect-getintouch p {
  font-size: 1.25rem;
  line-height: 130%;
  color: #3C3C3E;
}
.sect-getintouch .getintouch-contact {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding-bottom: 5rem;
}
.sect-getintouch .getintouch-contact p {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-family: "Gilroy-Medium";
}
.sect-getintouch .getintouch-contact a {
  color: #3C3C3E;
  white-space: nowrap;
}
.sect-getintouch .getintouch-flex {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.sect-getintouch input {
  font-size: 0.875rem;
  color: #000000;
  border-bottom: solid #DBDBDB;
  border-width: 0 0 1px 0;
  width: 100%;
  padding: 10px 0;
}
.sect-getintouch input::placeholder {
  color: #DBDBDB;
  opacity: 1;
}
.sect-getintouch input::-ms-input-placeholder {
  color: #DBDBDB;
}
.sect-getintouch input.primary-btn {
  color: #ffffff !important;
}
.sect-getintouch input:focus {
  border-bottom: 1px solid #AF2127;
  outline: none;
}
.sect-getintouch h6 {
  font-size: 0.875rem;
  font-family: "Gilroy-SemiBold";
  line-height: 100%;
  margin-bottom: 0;
}
.sect-getintouch .services-checkb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.sect-getintouch .form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  width: 32%;
  padding-left: 0;
}
.sect-getintouch .form-check .wpcf7-list-item {
  margin: 0;
}
.sect-getintouch .form-check .wpcf7-list-item-label {
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  color: #000000;
  line-height: 110%;
}
.sect-getintouch .form-check input {
  width: 15px;
  height: 15px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  margin-top: 0;
  background-color: rgba(123, 123, 123, 0.1);
}
.sect-getintouch .form-check .form-check-input:checked {
  background-color: #AF2127;
  border-color: #AF2127;
}
.sect-getintouch .form-check .form-check-input:focus {
  border-color: unset;
  outline: 0;
  box-shadow: unset;
}
.sect-getintouch .form-check label {
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sect-getintouch .form-check input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  background-color: rgba(123, 123, 123, 0.1);
  margin: 0;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border-radius: 50%;
  border-bottom: none;
  display: grid;
  place-content: center;
  position: relative;
}
.sect-getintouch .form-check input[type=checkbox]::after {
  content: "";
  width: 0.65em;
  height: 0.65em;
  clip-path: polygon(10% 48%, 0 65%, 50% 100%, 100% 25%, 88% 12%, 45% 75%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #ffffff;
  background-color: CanvasText;
  position: absolute;
  position: absolute;
  top: 22%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.sect-getintouch .form-check input[type=checkbox]:checked::after {
  transform: scale(1);
}
.sect-getintouch .form-check input[type=checkbox]:checked::before {
  content: "";
  background-color: #AF2127;
  width: 1.15em;
  height: 1.15em;
  border-radius: 50%;
}
.sect-getintouch .getintouch-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.sect-getintouch .getintouch-close:hover {
  cursor: pointer;
  filter: opacity(0.5);
}
.sect-getintouch .getintouch-left-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.sect-getpdf {
  color: #000000;
}
.sect-getpdf .modal-dialog {
  max-width: 850px;
}
.sect-getpdf .modal-dialog .modal-content {
  padding: 5rem;
  border-radius: 1rem;
  margin: 1.5rem;
}
.sect-getpdf h3 {
  font-size: 3.75rem;
  font-family: "Gilroy-SemiBold";
  line-height: 100%;
  color: #000000;
}
.sect-getpdf p {
  font-size: 1.25rem;
  line-height: 130%;
  color: #3C3C3E;
}
.sect-getpdf .getintouch-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sect-getpdf .getintouch-contact p {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-family: "Gilroy-Medium";
}
.sect-getpdf .getintouch-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sect-getpdf input {
  font-size: 0.875rem;
  color: #000000;
  border-bottom: solid #DBDBDB;
  border-width: 0 0 1px 0;
  width: 100%;
  padding: 10px 8px;
  border-radius: unset;
}
.sect-getpdf input::placeholder {
  color: #DBDBDB;
  opacity: 1;
}
.sect-getpdf input::-ms-input-placeholder {
  color: #DBDBDB;
}
.sect-getpdf input.primary-btn {
  color: #ffffff !important;
}
.sect-getpdf input:focus {
  border-bottom: 1px solid #AF2127;
  outline: none;
}
.sect-getpdf h6 {
  font-size: 0.875rem;
  font-family: "Gilroy-SemiBold";
  line-height: 100%;
}
.sect-getpdf .services-checkb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.sect-getpdf .form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 32%;
  padding-left: 0;
}
.sect-getpdf .form-check .wpcf7-list-item {
  margin: 0;
}
.sect-getpdf .form-check .wpcf7-list-item-label {
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  color: #000000;
}
.sect-getpdf .form-check input {
  width: 15px;
  height: 15px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  margin-top: 0;
  background-color: rgba(123, 123, 123, 0.1);
}
.sect-getpdf .form-check .form-check-input:checked {
  background-color: #AF2127;
  border-color: #AF2127;
}
.sect-getpdf .form-check .form-check-input:focus {
  border-color: unset;
  outline: 0;
  box-shadow: unset;
}
.sect-getpdf .form-check label {
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sect-getpdf .form-check input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  background-color: rgba(123, 123, 123, 0.1);
  margin: 0;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border-radius: 50%;
  border-bottom: none;
  display: grid;
  place-content: center;
  position: relative;
}
.sect-getpdf .form-check input[type=checkbox]::after {
  content: "";
  width: 0.65em;
  height: 0.65em;
  clip-path: polygon(10% 48%, 0 65%, 50% 100%, 100% 25%, 88% 12%, 45% 75%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #ffffff;
  background-color: CanvasText;
  position: absolute;
  position: absolute;
  top: 22%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.sect-getpdf .form-check input[type=checkbox]:checked::after {
  transform: scale(1);
}
.sect-getpdf .form-check input[type=checkbox]:checked::before {
  content: "";
  background-color: #AF2127;
  width: 1.15em;
  height: 1.15em;
  border-radius: 50%;
}
.sect-getpdf .getintouch-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.sect-getpdf .getintouch-close:hover {
  cursor: pointer;
  filter: opacity(0.5);
}
.sect-getpdf .smalltext {
  font-size: 0.625rem;
  font-family: "Gilroy-Medium";
  line-height: 100%;
  color: #7B7B7B;
  margin-top: 0.8rem;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

video::-webkit-media-controls-start-playback-button {
  display: none;
}

.rm-error {
  color: #F44336;
}

.rm-green {
  color: #1C9E78;
}

.blockGrey {
  background: rgba(0, 0, 0, 0.03);
  padding: 1.875rem 2.5rem;
}

.maxWidth90 {
  max-width: 90% !important;
}

.insightDetails {
  display: flex;
  align-items: center;
  justify-content: center;
}
.insightDetails .authorImg {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.insightDetails .authorlinkedin {
  cursor: pointer;
}
.insightDetails .CssubText {
  font-size: 1rem;
}

.productPage .pageBanner {
  padding-top: 2rem;
}

.grecaptcha-badge {
  display: none;
}

.contact-form {
  padding: 1.5rem;
  background-color: #fff;
  box-shadow: 0px 0px 10px 7px rgba(0, 0, 0, 0.08);
  border-radius: 0.625rem;
  margin: 0 1.5rem;
}

.w-60 {
  width: 60%;
}

.benefitsSection img, .benefitsModule img {
  width: 100%;
  height: auto;
}

.d-flex {
  display: flex;
  gap: 1rem;
}

.d-flex-common {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.flex-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-flex-align-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.d-flex-center {
  display: flex;
  align-items: center;
}

.noGap {
  gap: 0 !important;
}

.gap {
  gap: 0.313rem;
}

.gapSm {
  gap: 0.625rem;
}

.gapLg {
  gap: 1.5rem;
}

.gap-9 {
  gap: 9rem;
}

.flex-right {
  display: flex;
  justify-content: flex-end;
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.flex-30 {
  flex: 0 0 30%;
}

.flex-37 {
  flex: 0 0 37%;
}

.flex-40 {
  flex: 0 0 40%;
}

.w-70 {
  width: 70%;
}

.positionRelative {
  position: relative;
}

.paddingL-0 {
  padding-left: 0 !important;
}

.ellipsisPara {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ellipsisPara2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bTop {
  border-top: 1px solid #DDD;
}

.bBottom {
  border-bottom: 1px solid #DDD;
}

.bBottomG {
  border-bottom: 2px solid;
  border-image-source: linear-gradient(90deg, #F0F0F0 50.5%, #FFFFFF 100%);
  border-image-slice: 1;
}

.bLeft {
  border-left: 1px solid #DDD;
}

.bRight {
  border-right: 1px solid #DDD;
}

.accordion {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.accordion .blocktitle {
  margin-bottom: 1rem;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-thumb {
  background: #AF2127;
}

.textRed {
  color: #AF2127 !important;
}

.whiteSpacePre {
  white-space: pre;
}

.MWidth {
  max-width: 1366px !important;
}

.TGrey {
  color: #7B7B7B;
}

.d-flex-service {
  display: flex !important;
  justify-content: center;
  gap: 1rem;
}

.pagenotfound {
  margin-top: 1rem;
  display: flex;
}
.pagenotfound .left404 {
  width: 45%;
  margin-top: 5rem;
}
.pagenotfound .left404 p {
  width: 80%;
  color: #3C3C3E;
  font-family: "Gilroy-Regular";
  font-weight: 500;
  line-height: 110%;
  letter-spacing: 0px;
  font-size: 32px;
}
.pagenotfound .right404 .headerNav {
  display: flex;
  max-height: max-content;
  width: 100%;
  flex-wrap: wrap;
}
.pagenotfound .right404 .headerNav .descMenu:first-child {
  border-right: 1px solid #EBEBEB;
}
.pagenotfound .right404 .headerNav .descMenu:nth-child(2) {
  padding-left: 1rem;
}
.pagenotfound .right404 .headerNav .descMenu ul {
  display: block;
}
.pagenotfound .right404 .headerNav .descMenu ul li a {
  font-family: "Gilroy-Medium";
  color: #3E3E3E;
  font-size: 1.125rem;
}

.presence {
  display: flex;
}
.presence .addressWrapper {
  width: 40%;
}
.presence .addressWrapper .address {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem 1.5rem 1.5rem 0;
}
.presence .addressWrapper .address img {
  margin-top: 0.375rem;
}
.presence .globe {
  width: 60%;
}

.leadershipList {
  width: 80%;
  margin: 0 auto;
}
.leadershipList ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  --bs-gutter-x: 15px;
  --bs-gutter-y: 0;
}
.leadershipList ul li {
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
  width: 33.33%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
.leadershipList ul li img {
  transition: transform 1s;
  filter: grayscale(100%);
}
.leadershipList ul li .leadershipListItem {
  background-color: #F5F5F5;
  overflow: hidden;
  width: 100%;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.leadershipList ul li .leadershipListItem .photo {
  flex-grow: 1;
  align-items: flex-end;
}
.leadershipList ul li:hover .leadershipListItem {
  background-image: url("../images/mesh.svg");
}
.leadershipList ul li:hover .photo img {
  transform: scale(1.2);
  filter: grayscale(0);
}
.leadershipList ul li:hover img {
  filter: grayscale(0);
}
.leadershipList ul li:hover .subtitle {
  color: #AF2127;
}
.leadershipList ul li:hover .greySubtext {
  color: #4E4E4E;
}

.corevalues {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.corevalues .corevaluesItem {
  text-align: center;
  margin-bottom: 5rem;
  padding: 0 3rem;
}
.corevalues .corevaluesItem .blocktitle {
  margin: 1rem 0rem;
}

.ringAnimation .p {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 10s linear infinite;
}
@keyframes rotateText {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.one {
  position: relative;
}
.one svg {
  width: 150px;
  height: 150px;
}

.two {
  position: absolute;
  top: 24px;
  left: 26px;
}
.two svg {
  width: 100px;
  height: 100px;
}

#circle.two svg {
  animation: anuja 20s infinite !important;
}

#container {
  position: relative;
}

#circle {
  width: 100%;
  padding-bottom: 0.625rem;
  overflow: hidden;
}

#circle text {
  font-family: "Helvetica Neue", Arial;
  font-size: 1.625rem;
  font-weight: bold;
}

#circle svg {
  left: 0;
  top: 0;
  -webkit-animation-name: rotate;
  -moz-animation-name: rotate;
  -ms-animation-name: rotate;
  -o-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 5s;
  -moz-animation-duration: 5s;
  -ms-animation-duration: 5s;
  -o-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0);
  }
}
@-webkit-keyframes anuja {
  from {
    -webkit-transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(360deg);
  }
  to {
    -moz-transform: rotate(0);
  }
}
@-ms-keyframes rotate {
  from {
    -ms-transform: rotate(360deg);
  }
  to {
    -ms-transform: rotate(0);
  }
}
@-o-keyframes rotate {
  from {
    -o-transform: rotate(360deg);
  }
  to {
    -o-transform: rotate(0);
  }
}
@keyframes rotate {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0);
  }
}
#overlay {
  width: 100%;
  height: 100vh;
  display: block;
  z-index: 10000;
  position: absolute;
  background: rgba(255, 255, 255, 0.77);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0.77) 0%, rgb(254, 203, 0) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 255, 255, 0.77)), color-stop(100%, rgb(254, 203, 0)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.77) 0%, rgb(254, 203, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0.77) 0%, rgb(254, 203, 0) 100%);
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0.77) 0%, rgb(254, 203, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.77) 0%, rgb(254, 203, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fecb00", endColorstr="#fecb00", GradientType=1);
}

#rotatingGlobe {
  width: 990px;
  height: 990px;
  margin: auto;
  cursor: move;
  border: 0px solid red;
  position: absolute;
  z-index: 1;
}

.sect-transOutcomes {
  position: relative;
  text-align: center;
  margin-bottom: 30rem;
}
.sect-transOutcomes::after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 50%;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0), rgb(255, 255, 255), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.sect-transOutcomes .ring-image {
  height: 500px;
  overflow: hidden;
}
.sect-transOutcomes .ring-image img {
  width: 100%;
}
.sect-transOutcomes .transOutcomes-content {
  position: absolute;
  top: 90%;
  z-index: 1;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 50%;
}
.sect-transOutcomes .transOutcomes-content .Mission-content {
  margin-top: 20rem;
}
.sect-transOutcomes .transOutcomes-content p {
  color: #000000;
  font-family: Gilroy-Regular;
  font-size: 1.875rem;
  font-style: normal;
  line-height: 39px;
}

.absolute {
  position: fixed;
  top: 0;
  inset: 0;
  left: 0;
  right: 0;
  justify-content: center;
  display: inline-flex;
  justify-content: center;
  flex-direction: row;
  height: 100%;
  z-index: -1;
}

.justify-center {
  justify-content: center;
}

.bg-shape1 {
  width: 300px;
  height: 300px;
  border-radius: 9999px;
  z-index: -1;
  position: relative;
  animation: one 30s linear infinite;
}

.bg-shape2 {
  width: 250px;
  height: 300px;
  border-radius: 9999px;
  z-index: -1;
  position: relative;
  animation: two 30s linear infinite;
}

.bg-shape3 {
  width: 200px;
  height: 300px;
  border-radius: 9999px;
  z-index: -1;
  position: relative;
  animation: two 30s linear infinite;
}

@keyframes one {
  0% {
    transform: rotate(0deg) translate(-100%) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(-100%) rotate(-360deg);
  }
}
@keyframes two {
  0% {
    transform: rotate(0deg) translate(-100%) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(-100%) rotate(-360deg);
  }
}
.opacity {
  opacity: 0.3;
}

.bg-blur {
  filter: blur(70px);
  opacity: 0.1;
}

.bg1 {
  background-color: #EB00FF;
}

.bg2 {
  background-color: #413EF3;
}

.bg3 {
  background-color: #FF3333;
}

.bg4 {
  background-color: #2A59FF;
}

.shape1 {
  display: flex;
  justify-content: end;
  height: 100%;
}
.shape1 .bg-shape1 {
  align-self: end;
}

.shape3 {
  display: flex;
  justify-content: end;
  height: 100%;
}
.shape3 .bg-shape3 {
  align-self: center;
}

.shake1, .shake2 {
  animation: none;
}

.shake2 {
  transform: translateX(0); /* Initial position */
  transition: transform 0.5s ease; /* Adjust duration and easing as needed */
}

.shake1 {
  transform: translateX(0); /* Initial position */
  transition: transform 0.5s ease; /* Adjust duration and easing as needed */
}

.TopBanerSection {
  margin-top: 5.25rem;
}

.rotating-border-btn {
  border-radius: 0.5rem;
  padding: 0.6rem 1.5rem;
  color: #4E4E4E;
  font-family: Gilroy-Medium;
  font-size: 1rem;
  line-height: 130%;
  cursor: pointer;
  display: inline-block;
  position: relative;
  border: solid 1px transparent;
  transition: color 0.5s ease, background 0.5s ease, opacity 0.5s ease;
  --border-angle: 0deg;
  --main-bg: conic-gradient(from var(--border-angle), #fff, #fff 5%, #fff 60%, #fff 95%);
  --gradient-border: conic-gradient(from var(--border-angle), transparent 0%, #707070, #707070 99%, transparent);
  background: var(--main-bg) padding-box, var(--gradient-border) border-box;
  background-position: center center;
  animation: bg-spin 3s linear infinite;
}
.rotating-border-btn:hover {
  --main-bg: conic-gradient(from var(--border-angle), #AF2127, #AF2127 5%, #AF2127 60%, #AF2127 95%);
  color: #fff;
  opacity: 1; /* Ensure the button is fully visible on hover */
}
.rotating-border-btn:hover svg, .rotating-border-btn:hover p {
  color: #FFFFFF !important;
}
.rotating-border-btn:hover svg path {
  stroke: #FFFFFF !important;
}

@keyframes bg-spin {
  100% {
    --border-angle: 360deg;
  }
}
@-webkit-keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}
@keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}
@property --border-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}
.ImgHover:hover img {
  transform: scale(1.4); /* Scales the image to 140% on hover */
}

.AbannerContentImg {
  width: 100%;
}
.AbannerContentImg img {
  position: relative;
  transition: transform 0.5s; /* Faster transition for the scale effect */
}

.AbannerContentImg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%; /* Adjust the height to control the size of the gradient */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)); /* Black to transparent gradient */
  pointer-events: none; /* Ensure the overlay does not interfere with interactions */
}

.BgImgWrapper {
  overflow: hidden;
}

.BgImg {
  transition: transform 1s;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: self-start;
  flex-direction: column;
  justify-content: end;
  padding-left: 1.5rem;
  padding-bottom: 1.5rem;
  position: relative;
}

.BgImgWrapper:hover .BgImg {
  transform: scale(1.4);
}

.corevaluesItem {
  opacity: 0; /* Start hidden */
  transform: translateY(50px); /* Start from below */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.coretitle {
  opacity: 0; /* Start hidden */
  transform: translateY(50px); /* Start from below */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.contentFlex {
  display: flex;
  justify-content: center;
  align-items: center; /* Aligns items vertically within the flex container */
  gap: 15px; /* Space between text and image */
}

.BgImg p {
  font-size: 0.75rem;
  color: #FFFFFF;
  letter-spacing: 0.18rem;
  line-height: 120%;
}

.BgImg img {
  max-width: 30px; /* Adjust image size */
  height: auto;
}

.banner {
  height: 80vh;
  display: flex;
  flex-direction: column;
}
.banner .bannerImg {
  display: flex;
  justify-content: flex-end;
  margin-right: 10rem;
  z-index: 1;
}
.banner .bannerImg #bannerimgOne {
  z-index: 1;
  display: block;
}
.banner .bannerImg #bannerimgOne img {
  display: block;
  z-index: 1;
}
.banner .bannerText {
  display: flex;
  width: 100%;
  justify-content: space-between;
  z-index: -1;
}
.banner .bannerText .title {
  text-align: left;
  width: 70%;
  padding-top: 3rem;
}

.pageBanner {
  padding: 5rem 0;
}
.pageBanner .bannertitle {
  font-family: Gilroy-Medium;
  font-size: 4.625rem;
  line-height: 110%;
  width: 100%;
  max-width: 75%;
  margin: 0 auto 4rem;
}
.pageBanner .subBanner {
  position: relative;
}
.pageBanner .subBanner .sText {
  width: 60%;
  max-width: 1200px;
  position: absolute;
  font-family: "Gilroy-Medium";
  z-index: 1;
  top: 5rem;
  color: #FFF;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.pageBanner .TitlePara {
  color: #3C3C3E;
  font-family: "Gilroy-Regular";
  font-size: 1.25rem;
  width: 100%;
  max-width: 70%;
  text-align: center;
  margin: 0 auto 4rem;
}

.pageServicesTitle {
  font-size: 3.375rem !important;
}

.linkBlock {
  background-color: #f4f4f4;
  border-radius: 0.5rem;
  padding: 0.313rem 0.625rem;
  font-size: 0.875rem;
}

.linkBlockarrow {
  display: flex;
  align-items: center;
}

.BannersmTextBlock {
  color: #8E0A10;
  font-family: "Gilroy-Medium";
  display: inline-block;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bannerSectionTop {
  padding-top: 5.25rem;
}
.bannerSectionTop .background-video {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(20px);
  opacity: 0.2;
}

.filter {
  display: flex;
  gap: 3rem;
  padding-bottom: 3rem;
  justify-content: center;
}
.filter .bordered-btn.selectedFilter {
  background-color: #AF2127 !important;
  color: #FFF !important;
}
.filter .bordered-btn:hover {
  border-color: rgba(0, 0, 0, 0.1);
  background-color: #f2f2f2;
  color: #3C3C3E;
}
.filter ul {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.blogs .article {
  margin-bottom: 3rem;
  padding: 0.1rem 1rem;
}
.blogs .article .taglist {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: absolute;
  bottom: 1rem;
  color: #fff;
  z-index: 1;
  left: 2rem;
  right: 2rem;
  align-items: center;
}
.blogs .article .taglist li {
  display: flex;
}
.blogs .article .articleImgWrapper {
  width: 100%;
  height: 380px;
}
.blogs .article .articleImgWrapper .BgImg::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.75) 100%);
}
.blogs .article .article-item {
  width: 100%;
}

.csb-content {
  display: flex;
  flex-direction: column;
}
.csb-content .csb-topcontent {
  flex: 1;
  min-height: 34px;
}

.csb-bottomcontent {
  display: flex;
  flex-direction: column;
  min-height: 150px;
}
.csb-bottomcontent .blocktitle2 {
  height: 58px;
}

.singlecasestudy .CsTitle a {
  display: inline-block;
  color: inherit;
  text-decoration: underline;
  font-size: inherit;
}
.singlecasestudy .ulist a,
.singlecasestudy .CssubText a,
.singlecasestudy .CssubText a {
  font-family: "Gilroy-Regular";
  font-size: 1.25rem;
  line-height: 28px;
  color: #49515B !important;
  text-decoration: underline !important;
  display: inline-block;
  cursor: pointer;
}

.singlecasestudy p {
  font-family: "Gilroy-Regular";
  font-size: 1.25rem;
  line-height: 28px;
  color: #49515B;
}
.singlecasestudy p.CustSpeaksName {
  color: #3C3C3E;
  font-size: 1.25rem;
  font-family: Gilroy-Regular;
  text-align: right;
}
.singlecasestudy p.CustSpeaksDesc {
  color: #000000;
  font-size: 1.25rem;
  font-family: Gilroy-Regular;
  font-weight: 500;
}

.d-flex-pdf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  margin-top: 2rem;
}

.CustSpeaksSection {
  position: relative;
}
.CustSpeaksSection .slick-dots li {
  width: 30px;
  height: 2px;
}
.CustSpeaksSection .slick-dots li button {
  width: 30px;
  height: 2px;
  background: #000000;
  opacity: 0.2;
  padding: 0;
}
.CustSpeaksSection .slick-dots .slick-active {
  background: #AF2127;
}
.CustSpeaksSection .blockGrey {
  background: none;
  background-image: linear-gradient(45deg, transparent, #F4F4F4);
  border: 1px solid #E1E1E1;
  margin: 0 5px;
  border-radius: 12px;
}

.CustSpeaks {
  width: 100%;
}

.sect-industry-features .pleft {
  padding-left: 6.5rem;
  height: 360px;
}
.sect-industry-features .pright {
  padding-right: 6.5rem;
}
.sect-industry-features .GreyBlock {
  height: 360px;
  flex: 0 calc(50% - 1rem);
}
.sect-industry-features .GreyBlock .greyXstext {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ifeatures-banner {
  position: relative;
  height: 360px;
}
.ifeatures-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  color: #FFFFFF !important;
}
.ifeatures-banner video {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.ifeatures-banner img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.ifeatures-banner .ifeaturesContent {
  position: absolute;
  top: 2.188rem;
  left: 0;
  right: 0;
  bottom: 2.188rem;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.ifeatures-sectleft {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5rem;
}
.ifeatures-sectleft .ifeatures-sectleft-desc {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 96px;
  color: #3C3C3E;
}

.ifeatures-sectright .d-flex {
  flex-wrap: wrap;
  justify-content: start;
}

.innfeatures-sectright .d-flex {
  justify-content: start !important;
}

.letsDiscuss {
  display: flex;
  align-items: end;
  gap: 1.5rem;
}
.letsDiscuss .title2 {
  width: 40%;
}
.letsDiscuss .text {
  width: 30%;
  margin-bottom: 6rem;
  line-height: 140%;
}

.footer {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
.footer .salesforce {
  width: 200px;
}
.footer ul li {
  margin-bottom: 1rem;
}
.footer ul li a {
  font-family: Gilroy-Medium;
  font-size: 1rem;
  line-height: 100%;
  color: #4A4A4A;
}
.footer ul li a:hover {
  color: #AF2127;
}

.copyright {
  width: 100%;
  text-align: right;
}
.copyright p {
  font-family: Gilroy-Regular;
  font-size: 1rem;
  font-weight: 400;
  line-height: 100%;
  color: #000;
}

.footerQuickLinks {
  position: fixed;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem !important;
  justify-content: center;
  padding: 0.5rem 2rem;
  border-radius: 3.125rem;
  background: #F6F6F6;
  backdrop-filter: blur(6px);
  width: fit-content;
  z-index: 2;
}
.footerQuickLinks li {
  list-style: disc;
  color: #ccc;
}
.footerQuickLinks li a {
  color: #3C3C3E !important;
  text-align: center;
  font-family: "Gilroy-Medium";
  font-size: 0.875rem;
  font-style: normal;
  cursor: pointer;
}
.footerQuickLinks li a:hover {
  color: #AF2127 !important;
}
.footerQuickLinks li:first-child {
  list-style: none;
}

.footerQuickLinks a.active {
  color: #AF2127 !important;
}

footer {
  background-color: #FFFFFF;
}
footer .wrapper {
  padding: 6rem 0;
}

.overlayVideo {
  filter: blur(20px);
}

.header {
  z-index: 9999;
}
.header .menu-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header .menu-list ul {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  align-items: normal;
  transition: all 0.5s ease;
}
.header .menu-list ul li a {
  cursor: pointer;
  font-family: "Gilroy-Medium";
  transition: all 0.5s ease;
  color: #3E3E3E;
  font-size: 1.125rem;
  padding: 0.45rem 1.8rem;
}
.header .menu-list ul li a.menu-link {
  padding: 1rem 0;
}
.header .menu-list ul .single-dropdown .dropdown-menu a:hover {
  color: #AF2127;
}
.header.sticky {
  background-color: #FFFFFF;
  border-bottom: 1px solid #eee;
}
.header .logo {
  cursor: pointer;
  width: 346px;
}
.header .dropdown-toggle {
  color: #212529;
  display: flex;
  justify-content: space-between;
}
.header .dropdown-toggle::after {
  display: none;
}
.header .dropdown.single-dropdown .dropdown-menu {
  padding: 1rem 0;
}
.header .dropdown.single-dropdown .dropdown-menu.dropdown-menu-end {
  right: 0;
  left: auto;
}
.header .dropdown.drp-share .dropdown-menu.dropdown-menu-end {
  right: 0;
  left: auto;
  margin-top: 0.125rem;
}
.header .dropdown-menu {
  top: 100% !important;
  border: none;
  border-radius: 0rem;
  box-shadow: none;
  padding: 0;
  transform: none !important;
  border: 1px solid #D7D7D7;
}
.header .dropdown-menu a:hover label {
  color: #AF2127;
}
.header .dropdown-down-arrow {
  display: none;
}

.header.d-flex {
  justify-content: space-between;
  padding: 0.8rem 3rem;
  align-items: center;
}

.header-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
}

.headerNavWrapper {
  position: fixed !important;
  inset: unset !important;
  width: 100%;
  margin: -0.8rem auto 0rem auto !important;
  transform: none !important;
  left: 0 !important;
  right: 0 !important;
  border-bottom: 1px solid rgba(16, 16, 16, 0.05) !important;
  box-shadow: none;
}

.hamburger img {
  width: 30px;
}
.hamburger .menu-close {
  display: none;
}

.headerNav {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(45px);
  display: flex;
  flex-wrap: wrap;
  border-radius: 0rem;
}
.headerNav .flex-75 {
  flex: 0 75%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-right: 2px solid #EBEBEB;
  padding-right: 2rem;
}
.headerNav .flex-50 {
  flex: 0 50%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem 1.5rem;
  border-right: 1px solid #EFEFEF;
}
.headerNav .flex-25 {
  flex: 0 25%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem 1.5rem;
}
.headerNav .flex-25:first-child {
  background-color: #FAFAFA;
  padding-left: 3rem;
}
.headerNav .flex-25:last-child {
  padding-right: 3rem;
}
.headerNav .descMenu .subtitle {
  padding-bottom: 1.5rem;
  font-family: "Gilroy-Medium";
  color: #000000;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
}
.headerNav .descMenu ul {
  display: flex;
  justify-content: start;
  flex-flow: row wrap;
  gap: 0;
}
.headerNav .descMenu ul li {
  flex: 0 50%;
}
.headerNav .descMenu ul li a {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  line-height: 100%;
  padding: 0.7rem;
  width: 100%;
}
.headerNav .descMenu ul li a:hover {
  background: rgba(0, 0, 0, 0.02);
}
.headerNav .descMenu ul li a:hover label {
  color: #AF2127;
  cursor: pointer;
}
.headerNav .descMenu ul li a img {
  width: 24px;
  height: 24px;
}
.headerNav .descMenu ul li a label {
  font-size: 1rem;
  font-family: "Gilroy-Medium";
  margin-bottom: 0.5rem;
  line-height: 100%;
}
.headerNav .descMenu ul li a p {
  font-size: 0.75rem;
  font-family: "Gilroy-Regular";
  color: #7B7B7B;
}
.headerNav .descMenu.ServicesMenu ul li {
  flex: 0 100%;
}
.headerNav .descMenu.ServicesMenu ul li a {
  align-items: center;
}
.headerNav .descMenu.ServicesMenu ul li a label {
  margin-bottom: 0;
}
.headerNav .menuList .subtitle {
  padding-bottom: 1.5rem;
  font-family: "Gilroy-Medium";
  color: #000000;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
}
.headerNav .menuList .menuSubList {
  padding: 0.625rem;
  padding: 0;
  display: block;
}
.headerNav .menuList .menuSubList li {
  margin-bottom: 0.75rem;
}
.headerNav .menuList .menuSubList li a {
  font-family: Gilroy-Medium;
  font-size: 1rem;
  font-weight: 500;
  line-height: 110%;
  color: #212529;
  padding: 0.5rem 0.625rem;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
}
.headerNav .menuList .menuSubList li a:hover {
  color: #AF2127;
}

.menu-toggler {
  cursor: pointer;
}

.hServices .title {
  width: 70%;
}
.hServices .sList {
  display: flex;
  gap: 2rem;
}
.hServices .sList li a {
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}
.hServices .sList li:last-child a {
  margin-bottom: 0;
}
.hServices .link {
  padding-left: 1rem;
}

.hServicesList .title {
  width: 70%;
}
.hServicesList ul {
  display: flex;
}
.hServicesList ul .muted-text {
  margin-bottom: 0.5rem;
}
.hServicesList ul li {
  width: 16.66%;
  background: url("../../assets/images/seperator.svg") no-repeat right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0.938rem;
  cursor: pointer;
}
.hServicesList ul li .name {
  font-family: Gilroy-Regular;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 130%;
  color: #3C3C3E;
  display: flex;
  align-items: end;
}
.hServicesList ul li .name:hover {
  color: #AF2127;
}
.hServicesList ul li .name:hover svg {
  transform: translate(5px, -5px);
}
.hServicesList ul li .name:hover svg path {
  fill: #AF2127;
}
.hServicesList ul li svg {
  margin-left: 1rem;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hServicesList ul li:last-child {
  background: none;
}

.hClients .hClientsStoryList {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-height: 1600px;
}
.hClients .hClientsStoryList .left,
.hClients .hClientsStoryList .right {
  width: 42%;
}
.hClients .hClientsStoryList .right {
  margin-top: 18rem;
}
.hClients .hClientsStoryList .desc {
  font-size: 1.75rem;
}

.hArticles {
  overflow: hidden !important;
}
.hArticles .title2 {
  width: 70%;
  text-align: center;
  margin: 0 auto 4rem;
}

.hservice-banner {
  position: relative;
}

.bannerContent {
  display: flex;
  justify-content: end;
}
.bannerContent .bannerContentImg img {
  position: relative;
}
.bannerContent .bannerContentText {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.875rem;
  width: 95%;
  margin: 0 auto;
}

.hservice-banner .hserviceContentImg img {
  position: relative;
  object-fit: cover;
  height: 100%;
}
.hservice-banner .hserviceContentText {
  position: absolute;
  top: 2.188rem;
  left: 0;
  right: 0;
  bottom: 2.188rem;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.overflow-h {
  overflow: hidden;
}

.sect-services-banner {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 2.5rem;
}
.sect-services-banner .hservice-banner {
  width: 100%;
}

.AbannerContent {
  position: relative;
  display: flex;
  justify-content: end;
  overflow: hidden;
  margin: 0 1.563rem 0 0;
}
.AbannerContent .AbannerContentText {
  position: absolute;
  height: 100%;
  width: 100%;
}
.AbannerContent .AbannerContentText .articlesFlex {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
}
.AbannerContent .AbannerContentText .articlesFlex .tag-white2 {
  font-family: Gilroy-Semibold;
  font-size: 0.75rem;
  line-height: 100%;
  letter-spacing: 0.2em;
  color: #FFF;
  text-transform: uppercase;
}
.AbannerContent .AbannerContentText .articlesFlex .tag-white2 {
  flex-grow: 1;
}
.AbannerContent .AbannerContentText .whiteTitle {
  text-align: left;
}
.AbannerContent .AbannerContentText .flex-link {
  justify-content: start;
}

.letsDiscussWrapper {
  position: relative;
}
.letsDiscussWrapper .letsDiscuss {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 1366px;
  width: 100%;
}
.letsDiscussWrapper video {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 70vh;
  object-fit: cover;
}
.letsDiscussWrapper.onboarding-letsDiscuss video {
  width: 60%;
  transform: rotate(-180deg);
  display: flex;
  justify-content: end;
  margin-right: 0;
  margin-left: auto;
}

.letsDiscussServiceWrapper {
  position: relative;
}
.letsDiscussServiceWrapper .letsDiscuss {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 1366px;
  width: 100%;
  align-items: center;
}
.letsDiscussServiceWrapper video {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 90vh;
  object-fit: cover;
  transform: translateX(25%); /* Shift video slightly to the right */
  mix-blend-mode: multiply; /* Blend the video with the background */
  filter: brightness(1.1) contrast(1.2) blur(1px);
  mask-image: radial-gradient(circle, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: radial-gradient(circle, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
}
.letsDiscussServiceWrapper.onboarding-letsDiscuss video {
  width: 60%;
  transform: rotate(-180deg);
  display: flex;
  justify-content: end;
  margin-right: 0;
  margin-left: auto;
}
.letsDiscussServiceWrapper .letsDiscussTitle {
  width: 60%;
}
.letsDiscussServiceWrapper .letsDiscussDesc {
  width: 40%;
}
.letsDiscussServiceWrapper .letsDiscussDesc .text {
  margin-bottom: 0 !important;
}

.MLetsdisscuss .d-flex {
  gap: 4rem;
}

.rotate {
  background: url("../../assets/images/background.svg") no-repeat center center;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  position: absolute;
  animation: spin 150s infinite;
  z-index: 999;
  opacity: 0.5;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hservice1 {
  margin-bottom: 50rem;
}

.hservice2 {
  margin-bottom: 45rem;
}

.btn-red {
  display: block;
  background: linear-gradient(to right, transparent 50%, transparent 50%);
  background-position: right bottom;
  background-size: 202% 102%;
  transition: all 0.5s linear;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  cursor: pointer;
  /*
      &::before {
          background: url("../../assets/images/arrowRed.svg") no-repeat center center;
          background-size: cover;
          content: "";
          width: 15px;
          height: 15px;
      }

      &:hover {
          background-position: left bottom;

          span {
              color: #fff;
          }

          &::before {
              background: url("../../assets/images/arrowWhite.svg") no-repeat center center;
              background-size: cover;
              content: "";
              width: 15px;
              height: 15px;
          }
      }
  */
}
.btn-red .arrow {
  background: url("../../assets/images/arrowRed.svg") no-repeat center center;
  background-size: cover;
  content: "";
  width: 15px;
  height: 15px;
}
.btn-red .arrowHover {
  display: none;
  background: url("../../assets/images/arrowWhite.svg") no-repeat center center;
  background-size: cover;
  content: "";
  width: 15px;
  height: 15px;
}
.btn-red span {
  text-align: center;
  font-size: 1rem;
  line-height: 120%;
  color: black;
  transition: all 0.6s ease-out;
  display: block;
  cursor: default;
}
.btn-red span :hover {
  color: white;
}

.btn-red:hover {
  background: linear-gradient(to right, #AF2127 50%, transparent 50%);
  background-size: 202% 102%;
  background-position: left bottom;
  transition: all 0.5s linear;
  cursor: pointer;
}
.btn-red:hover span {
  color: #fff;
}
.btn-red:hover .arrowHover {
  display: block;
}
.btn-red:hover .arrow {
  display: none;
}

.btn-woborder {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.btn-woborder .arrow {
  background: url("../../assets/images/arrowGray.svg") no-repeat center center;
  content: "";
  width: 15px;
  height: 15px;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-woborder span {
  text-align: left;
  font-size: 1.125rem;
  line-height: 120%;
  color: #3C3C3E;
  transition: all 0.6s ease-out;
  display: block;
  cursor: default;
  font-family: Gilroy-Medium;
}
.btn-woborder:hover .arrow {
  background: url("../../assets/images/arrowRed3.svg") no-repeat center center;
  transform: translate(5px, -5px);
}
.btn-woborder:hover span {
  color: #AF2127;
}

.service-links {
  width: 60%;
  margin: 0 auto 4rem;
}
.service-links ul {
  display: flex;
  gap: 1.563rem;
  flex-flow: wrap;
}
.service-links ul li {
  width: 28%;
}

.ellipses4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bannerImg img {
  animation: zoom-in 3s ease;
  transition: all 0.4s ease;
}

@keyframes zoom-in {
  0% {
    transform: scale(9, 9);
  }
  100% {
    transform: scale(1, 1);
  }
}
.HomeBanner {
  text-align: center;
}
.HomeBanner h1 {
  font-size: 5.75rem;
  line-height: 110%;
  padding: 0.625rem 0;
  color: #000000;
  font-family: Gilroy-Semibold;
  font-style: normal;
}
.HomeBanner p {
  font-size: 3.375rem;
  font-family: Gilroy-Regular;
  line-height: 110%;
}

.sect-video {
  position: relative;
}
.sect-video .custom-video-container {
  position: relative;
}
.sect-video .custom-video-container:hover .vid-buttons {
  display: flex;
}
.sect-video .custom-video {
  border-radius: 0.2em;
  border: 1.5px solid #ddd;
}
.sect-video .custom-video-control .vid-buttons {
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
  display: flex;
  gap: 1rem;
  z-index: 1;
  display: none;
}
.sect-video .custom-video-control #playPauseButton {
  padding: 0;
  cursor: pointer;
  background-color: unset;
  border: none;
}
.sect-video .custom-video-control #muteUnmuteButton {
  padding: 0;
  cursor: pointer;
  background-color: unset;
  border: none;
}
.sect-video .custom-video-control img {
  width: 48px;
  height: 48px;
}
.sect-video .custom-video-control .vid-watermark {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
.sect-video .custom-video-control .vid-watermark img {
  width: 200px;
  height: 50px;
  filter: opacity(0.2);
}
.sect-video video {
  object-fit: cover;
  -webkit-object-fit: cover;
}
.sect-video video::-webkit-media-controls {
  position: relative;
  z-index: 1;
}

.sect-videoCareer {
  position: relative;
}
.sect-videoCareer .custom-video-container {
  position: relative;
}
.sect-videoCareer .custom-video {
  cursor: pointer;
  border-radius: 0.2em;
}
.sect-videoCareer .custom-video-control button {
  position: absolute;
  top: 45%;
  left: 46%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 48px;
  height: 48px;
  white-space: nowrap;
  line-height: 0;
  border: none;
}
.sect-videoCareer .custom-video-control button::before {
  content: "";
  background: url(../../assets/images/coreflex-gray-logo.svg) no-repeat right;
  background-size: 100%;
  width: 300px;
  height: 100px;
  position: absolute;
  filter: opacity(0.2);
}
.sect-videoCareer .custom-video-control img {
  width: 48px;
  height: 48px;
}
.sect-videoCareer video {
  object-fit: cover;
}
.sect-videoCareer video::-webkit-media-controls {
  position: relative;
  z-index: 1;
}

.serviceList {
  width: 60%;
  margin: 0 auto 3rem;
}
.serviceList ul {
  display: flex;
  gap: 2.563rem;
  justify-content: center;
  flex-wrap: wrap;
}
.serviceList ul li {
  list-style: none;
}

.serviceList-inline {
  width: 80%;
  margin: 0 auto 3rem;
}
.serviceList-inline ul {
  display: flex;
  gap: 1.563rem;
  justify-content: center;
  flex-wrap: wrap;
}
.serviceList-inline ul li {
  list-style: none;
  flex: 1 1 20%;
}

.Sect_ServiceJourney ul {
  display: flex;
  gap: 1rem;
}
.Sect_ServiceJourney ul li {
  padding: 1.25rem;
  cursor: default;
  background: linear-gradient(180deg, #F5F5F5 0%, #fff 55%);
  width: 20%;
  gap: 2rem;
}
.Sect_ServiceJourney ul li .serBlock {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
  cursor: pointer;
}
.Sect_ServiceJourney ul li .serBlock:hover .name p {
  font-size: 1.1rem;
  font-family: Gilroy-Semibold;
}
.Sect_ServiceJourney ul li .name {
  font-family: Gilroy-Medium;
  line-height: 130%;
  color: #3C3C3E;
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
}
.Sect_ServiceJourney ul .muted-text {
  margin-bottom: 0.5rem;
}

.sect-experties.three-expertises .eBlock:first-child {
  border-right: 1px solid #DDD;
  border-bottom: none;
}
.sect-experties.three-expertises .eBlock:nth-child(2) {
  border-right: 1px solid #DDD;
  border-bottom: none;
}
.sect-experties.three-expertises .eBlock:nth-child(3) {
  border-bottom: none;
}
.sect-experties .eBlock {
  padding: 2.5rem;
  cursor: pointer;
  position: relative;
  padding-bottom: 3rem;
}
.sect-experties .eBlock .flex-right {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: 25px;
  right: 25px;
}
.sect-experties .eBlock img {
  width: 50px;
  height: 50px;
}
.sect-experties .eBlock .rightArrow {
  transition: transform 0.3s ease;
  /* Smooth transition for the transform */
  margin-top: 1rem;
  transform: unset;
  width: auto;
  height: auto;
}
.sect-experties .eBlock:hover {
  background: rgba(233, 233, 233, 0.3);
}
.sect-experties .eBlock:hover .subtitle {
  color: #AF2127;
}
.sect-experties .eBlock:hover .rightArrow {
  transform: translateX(10px);
  /* Move the image 20px to the right when hovering over eBlock */
}
.sect-experties .eBlock .subtitle {
  margin-bottom: 1rem;
}
.sect-experties .eBlock:first-child {
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
}
.sect-experties .eBlock:nth-child(2) {
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
}
.sect-experties .eBlock:nth-child(3) {
  border-bottom: 1px solid #DDD;
}
.sect-experties .eBlock:nth-child(4) {
  border-right: 1px solid #DDD;
}
.sect-experties .eBlock:nth-child(5) {
  border-right: 1px solid #DDD;
}
.sect-experties .salesforce-expertise .eBlock:nth-child(4) {
  border-bottom: 1px solid #DDD;
}
.sect-experties .salesforce-expertise .eBlock:nth-child(6) {
  border-bottom: 1px solid #DDD;
}
.sect-experties .salesforce-expertise .eBlock:nth-child(7) {
  border-top: 1px solid #DDD;
  border-left: 1px solid #DDD;
  border-right: 1px solid #DDD;
}
.sect-experties .eBlock1 {
  padding: 1.5rem;
  cursor: pointer;
}
.sect-experties .eBlock1 .rightArrow {
  transition: transform 0.3s ease;
  /* Smooth transition for the transform */
  margin-top: 1rem;
  transform: unset;
}
.sect-experties .eBlock1:hover {
  background: rgba(233, 233, 233, 0.3);
}
.sect-experties .eBlock1:hover .subtitle {
  color: #AF2127;
}
.sect-experties .eBlock1:hover .rightArrow {
  transform: translateX(10px);
  /* Move the image 20px to the right when hovering over eBlock */
}
.sect-experties .eBlock1 .subtitle {
  margin-bottom: 1rem;
}
.sect-experties .eBlock1:first-child {
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
}
.sect-experties .eBlock1:nth-child(2) {
  border-bottom: 1px solid #DDD;
}
.sect-experties .eBlock1:nth-child(3) {
  border-right: 1px solid #DDD;
}

.sect-result .flexWrapStructure {
  gap: 2rem;
}
.sect-result .flexWrapStructure .divider {
  background: url(../../assets/images/seperatorlg.svg) no-repeat right;
  width: 3px;
  margin: 30px 0;
}
.sect-result .flexWrapStructure .eBlock {
  width: calc(49% - 2rem);
}

.servicesblock {
  display: flex;
  gap: 2rem;
}
.servicesblock .w-40 {
  width: 40%;
}
.servicesblock .w-60 {
  width: 60%;
  padding-right: 3rem;
}
.servicesblock .desc {
  margin-bottom: 2rem;
}
.servicesblock .servicesDesc {
  padding: 1.5rem;
  border-bottom: 1px solid #D5D5D5;
}
.servicesblock .servicesDesc img {
  align-self: flex-end;
}
.servicesblock .servicesDesc .subtitle {
  margin-bottom: 0.5rem;
}
.servicesblock .servicesDesc:hover {
  background: rgba(233, 233, 233, 0.3);
}
.servicesblock .servicesDesc:hover img {
  transform: translate(0px, -20px);
}
.servicesblock .servicesDesc img {
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  transform: translate(-20px, 0px);
}
.servicesblock .servicesDesc .blocktitle {
  margin-bottom: 0.8rem;
}

.workspacebanner {
  position: relative;
  /* Set this to your desired height */
  overflow: hidden;
  background: #000;
}
.workspacebanner .Sblock {
  position: absolute;
  z-index: 1;
  top: 60%;
  left: 100px;
  transform: translate(50px, -50px);
}
.workspacebanner .Sblock p {
  font-family: "Gilroy-Medium";
  font-size: 3rem;
  line-height: 120%;
  color: #FFFFFF;
  max-width: 600px;
}
.workspacebanner .workspacevideo {
  position: relative;
  height: 750px;
}
.workspacebanner .workspacevideo .videoGradient {
  width: 100%;
  height: 100%;
  display: flex;
}
.workspacebanner .workspacevideo .videoGradient::after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  pointer-events: none;
}
.workspacebanner .workspacevideo video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  filter: brightness(0.6);
  object-fit: cover;
}

.salesforcebanner {
  position: relative;
  height: 540px;
  /* Set this to your desired height */
  overflow: hidden;
}
.salesforcebanner .positionRelative {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.salesforcebanner .positionRelative video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  filter: brightness(0.5);
  object-fit: cover;
}
.salesforcebanner .Sblock {
  position: relative;
  z-index: 1;
  /* Ensures content appears above the video */
  top: 0;
  height: 100%;
  left: 0;
  right: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
.salesforcebanner .Sblock .positionBanner {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  gap: 2rem;
}
.salesforcebanner .bannerWhiteTxt {
  font-family: "Gilroy-Medium";
  font-size: 3.75rem;
  line-height: 120%;
  color: #FFFFFF;
}
.salesforcebanner .whiteXsText {
  font-family: "Gilroy-Medium";
  font-size: 1rem;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.salesforcebanner .whiteMdText {
  font-family: "Gilroy-Medium";
  font-size: 2rem;
  line-height: 120%;
  color: #FFFFFF;
}
.salesforcebanner .whitesmText {
  font-family: "Gilroy-Regular";
  font-size: 1.25rem;
  line-height: 120%;
  color: #FFFFFF;
}
.salesforcebanner .whiteXxsText {
  font-family: "Gilroy-Regular";
  font-size: 1rem;
  line-height: 120%;
  color: #FFFFFF;
}
.salesforcebanner .d-flex-banner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.sect-tracetraxbanner {
  position: relative;
  height: 540px;
  overflow: hidden;
}
.sect-tracetraxbanner .ttbanner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.sect-tracetraxbanner .ttbanner-video video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}
.sect-tracetraxbanner .ttbanner-video::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(to top, #ffffff 40%, rgba(0, 0, 0, 0));
  pointer-events: none;
}
.sect-tracetraxbanner .Sblock {
  position: relative;
  z-index: 1;
  top: 0;
  height: 100%;
  left: 0;
  right: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
.sect-tracetraxbanner .Sblock .positionBanner {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  gap: 2rem;
}
.sect-tracetraxbanner .bannerWhiteTxt {
  font-family: "Gilroy-Medium";
  font-size: 3.75rem;
  line-height: 120%;
  color: #FFFFFF;
}
.sect-tracetraxbanner .whiteXsText {
  font-family: "Gilroy-Medium";
  font-size: 1rem;
  line-height: 120%;
  color: #FFFFFF;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.sect-tracetraxbanner .whiteMdText {
  font-family: "Gilroy-Medium";
  font-size: 2rem;
  line-height: 120%;
  color: #FFFFFF;
}
.sect-tracetraxbanner .whitesmText {
  font-family: "Gilroy-Regular";
  font-size: 1.25rem;
  line-height: 120%;
  color: #FFFFFF;
}
.sect-tracetraxbanner .whiteXxsText {
  font-family: "Gilroy-Regular";
  font-size: 1rem;
  line-height: 120%;
  color: #FFFFFF;
}
.sect-tracetraxbanner .d-flex-banner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* Keyframes for continuous parallax scrolling effect */
@keyframes parallax-scroll {
  0% {
    transform: translateY(-10%);
  }
  50% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-10%);
  }
}
.salesforcebanner2 .whiteMdTitle {
  font-family: "Gilroy-Medium";
  font-size: 5rem;
  line-height: 100%;
  color: #FFFFFF;
}
.salesforcebanner2 .whiteMdTextbanner {
  font-family: "Gilroy-Regular";
  font-size: 1.5rem;
  line-height: 130%;
  color: #FFFFFF;
}
.salesforcebanner2 .d-flex-banner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.salesforcebanner2 .Sblock2 {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  right: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.salesforcebanner2 .Sblock2 .positionBanner2 {
  flex-direction: row;
  align-items: end;
  height: 100%;
  gap: 10rem;
  padding-bottom: 4rem;
}
.salesforcebanner2 .Sblock2 .w-40 {
  width: 40%;
}
.salesforcebanner2 .Sblock2 .w-60 {
  width: 60%;
}
.salesforcebanner2 video {
  height: 540px;
  object-fit: cover;
  filter: brightness(0.5);
}

.whyChooseUs {
  display: flex;
  flex-wrap: wrap;
}
.whyChooseUs .wcBlockWrapper {
  width: 33%;
  padding: 1rem;
}
.whyChooseUs .wcBlockWrapper .wcBlock {
  border: 1px solid rgba(160, 166, 172, 0.2);
  height: 100%;
}
.whyChooseUs .wcBlockWrapper .wcBlock img {
  width: 100%;
}
.whyChooseUs .d-flex {
  gap: 3rem;
}

.salesforceBadges img {
  margin-bottom: 1.8rem;
}

.salesforceSummary {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.salesforceSummary .bRight {
  padding-right: 1.2rem;
}

.aboutSummary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.aboutSummary .bRight {
  padding-right: 1rem;
}
.salesforce-expertise {
  justify-content: center;
}

.flexWrapStructure {
  display: flex;
  flex-wrap: wrap;
}
.flexWrapStructure .subBlock {
  width: 33%;
}
.flexWrapStructure .eBlock {
  width: 33%;
}
.flexWrapStructure .eBlock1 {
  width: 50%;
}

.flexWidthblock {
  display: flex;
  gap: 2rem;
}

.redXl-text {
  font-family: "Gilroy-Medium";
  font-size: 7.4rem;
  line-height: 100%;
  color: #AF2127;
  width: 518px;
  overflow: hidden;
  display: inline-flex;
}
.redXl-text span {
  text-wrap: nowrap;
}

.weDecideSectionTitle {
  display: flex;
  align-items: end;
  line-height: 135%;
  gap: 0.5rem;
}

.blockSeperator {
  background: url(../../assets/images/seperatorlg.svg) no-repeat right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 4rem;
  cursor: pointer;
}

.flexContainer {
  justify-content: space-between;
  width: 120rem;
  padding-right: 7.5rem;
  display: flex;
}

/* cards horizontal scroll */
.horizontalmoving-scoll {
  padding: 0.5rem 0;
}

.weDecideSection-scroll-wrapper {
  overflow: hidden;
  height: 100%;
}

.weDecideSection {
  display: flex;
  height: 100%;
}
.weDecideSection .flex-40:last-child .blockSeperator {
  background: none;
}

/*End cards horizontal scroll */
/*infinite scroll horizontal scroll */
.marquee {
  height: 200px;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

.marquee--inner {
  display: block;
  position: absolute;
  animation: marquee 20s linear infinite;
}

.marquee:hover .marquee--inner {
  animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  -webkit-animation-play-state: paused;
}

@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
/*end infinite scroll horizontal scroll */
.parallax-banner1 {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../../assets/images/salesforce2.svg);
  height: 400px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

.parallax-banner2 {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../../assets/images/teatechiebanner.svg);
  height: 600px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

.parallax-banner3 {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../../assets/images/parallaxbanner3.svg);
  height: 600px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

.p-wrap {
  position: relative;
  overflow: hidden;
  width: 450px;
  height: 80vh;
}

.mySlides {
  transition: 1s;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}
.mySlides img {
  width: 100%;
}

.sect-imgslides {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 502px;
}

#SpecializationsImg1 {
  transform: translateY(0%);
}

#SpecializationsImg2 {
  transform: translateY(100%);
}

#SpecializationsImg3 {
  transform: translateY(200%);
}

#SpecializationsImg4 {
  transform: translateY(300%);
}

.textSlider .text-red {
  font-family: "Gilroy-Medium";
  font-size: 7.4rem;
  line-height: 100%;
  color: #AF2127;
}

.textSlider {
  width: 500px;
  overflow: hidden;
}
.textSlider .one,
.textSlider .two {
  animation: floatText 1s ease-in-out;
}

@-webkit-keyframes floatText {
  0% {
    transform: translateX(200px);
  }
  100% {
    transform: translateX(0);
  }
}
.chooseBlock {
  padding: 1.5rem !important;
}

.GalleryBlock {
  display: flex !important;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto 4rem auto;
  text-align: left;
  align-items: end;
}
.GalleryBlock .title {
  font-family: "Gilroy-Medium";
  font-size: 4.375rem;
  font-weight: normal;
  line-height: 110%;
  color: #000;
  text-align: left;
}
.GalleryBlock .w-40 {
  width: 40%;
}
.GalleryBlock .w-60 {
  width: 60%;
}
.GalleryBlock .titlePara {
  color: #3C3C3E;
  font-size: 1.25rem;
  font-family: "Gilroy-Regular";
  font-weight: normal;
  line-height: 120%;
  text-align: left;
}

.italic {
  font-style: italic;
}

.Section-Insights {
  display: flex;
}

.backgroundImage {
  position: relative;
  width: 100%;
  height: 800px;
  /* Set the desired height */
  /* Replace with your image path */
  background-image: url("../images/line.gif");
  background-size: 100%;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #3C3C3E;
  background-repeat: no-repeat;
}

.centered-text {
  font-family: "Gilroy-Regular";
  font-size: 1.5rem;
  line-height: 130%;
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

.borderBottom-0 {
  border-bottom: 0 !important;
}

#Globe {
  width: 100%;
  height: 400px;
  /* Adjust the height as needed */
}

.hservice-banner:hover .hserviceContentImg::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.75) 100%);
}

.hserviceContentImg {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 400px;
}
.hserviceContentImg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  /* Ensures the video is behind the overlay */
}

.hserviceContentImg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
  /* Ensures it sits above the video */
}

#chartdiv {
  width: 100%;
  height: 800px;
  align-self: end;
}

.am5-layer-30 {
  display: none;
}

.videoRow {
  width: 100%;
  height: auto;
  display: block;
}
.videoRow .col-md-4 {
  padding-left: 0;
  padding-right: 0;
}
.videoRow .col-md-4 video {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
}

.IndustryInfoBlock {
  display: flex !important;
  gap: 4rem;
}

.paddingInfo {
  padding-top: 1.5rem;
  padding-bottom: 7rem;
}

.VideoOpacity::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  /* Gradient with opacity */
  z-index: 1;
  /* Ensure the gradient is above the video */
  color: #FFFFFF !important;
}

.VideoOpacity video {
  width: 100%;
  object-fit: cover;
  z-index: 0;
  /* Ensure the video sits below the gradient */
}

.h-300 {
  height: 300px !important;
}

.visibilityHidden {
  visibility: hidden;
}

.greyBackBG {
  background: rgb(249, 249, 249);
  height: 100%;
}
.greyBackBG .d-flex-columnServices {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 4rem;
  padding: 2.5rem;
}
.greyBackBG .d-flex-columnServices .BoxHeading {
  color: #000000;
  font-size: 2rem;
  font-family: Gilroy-Semibold;
  line-height: 120%;
}
.greyBackBG .d-flex-columnServices .BoxDesc {
  color: #7B7B7B;
  font-family: Gilroy-Regular;
  font-size: 0.875rem;
}
.greyBackBG .d-flex-columnServices .BoxDesc ul {
  padding-left: 1.5rem;
}
.greyBackBG .d-flex-columnServices .BoxDesc ul li {
  list-style: disc;
  font-size: 1rem;
  line-height: 140%;
}

.leonardoBg {
  background-image: url(../images/cloudImg.svg);
  background-repeat: no-repeat;
  padding: 1.5rem;
  height: 350px;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.leonardoBg P {
  font-size: 1.25rem;
  line-height: 120%;
  color: #FFFFFF;
}

.greyleonardoBlockBg {
  background: rgb(249, 249, 249);
  padding: 1.5rem;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.greyleonardoBlockBg .quickTitle {
  font-size: 3.75rem;
  line-height: 110%;
  color: #AF2127;
  font-family: Gilroy-Semibold;
}
.greyleonardoBlockBg .salesTitle {
  font-size: 2rem;
  line-height: 120%;
  color: #AF2127;
  font-family: Gilroy-Regular;
}

.greylightBlockBg {
  background: rgb(249, 249, 249);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.greylightBlockBg .d-flex-columnServices .BoxTitle {
  color: #000000;
}
.greylightBlockBg .d-flex-columnServices .BoxHeading {
  color: #000000;
}
.greylightBlockBg .d-flex-columnServices .BoxDesc {
  color: #000000;
}

.greylightBlockBg2 {
  background: rgb(249, 249, 249);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.greylightBlockBg2 .d-flex-columnServices {
  padding: 2.5rem;
}
.greylightBlockBg2 .d-flex-columnServices .BoxTitle {
  color: #000000;
}
.greylightBlockBg2 .d-flex-columnServices .BoxHeading {
  color: #000000;
  font-size: 2.33rem;
}
.greylightBlockBg2 .d-flex-columnServices .BoxDesc {
  color: #000000;
}
.greylightBlockBg2 .d-flex-columnServices .BoxDesc ul {
  padding-left: 1.5rem;
}
.greylightBlockBg2 .d-flex-columnServices .BoxDesc ul li {
  list-style: disc;
  font-size: 1rem;
  line-height: 140%;
}

.redBlockBg {
  background: linear-gradient(108.81deg, #8E0A10 16.03%, #AF2127 98.01%);
}
.redBlockBg .d-flex-columnServices {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem;
}
.redBlockBg .d-flex-columnServices .BoxHeading {
  color: #ffffff;
  font-size: 2rem;
  font-family: Gilroy-Semibold;
  line-height: 120%;
}
.redBlockBg .d-flex-columnServices .BoxDesc {
  color: #ffffff;
  font-family: Gilroy-Regular;
  font-size: 1rem;
}
.redBlockBg .d-flex-columnServices .BoxDesc ul {
  padding-left: 1.5rem;
}
.redBlockBg .d-flex-columnServices .BoxDesc ul li {
  list-style: disc;
  font-size: 1rem;
  line-height: 140%;
}

.redBlockBg2 {
  background: linear-gradient(108.81deg, #8E0A10 16.03%, #AF2127 98.01%);
}
.redBlockBg2 .d-flex-columnServices {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10rem;
  padding: 2.5rem;
}
.redBlockBg2 .d-flex-columnServices .BoxHeading {
  color: #ffffff;
  font-size: 2rem;
  font-family: Gilroy-Semibold;
  line-height: 120%;
}
.redBlockBg2 .d-flex-columnServices .BoxDesc {
  color: #ffffff;
  font-family: Gilroy-Regular;
  font-size: 1rem;
}
.redBlockBg2 .d-flex-columnServices .BoxDesc ul {
  padding-left: 1.5rem;
}
.redBlockBg2 .d-flex-columnServices .BoxDesc ul li {
  list-style: disc;
  font-size: 1rem;
  line-height: 140%;
}
.redBlockBg2 .d-flex-columnServices .BoxDesc2 {
  color: #ffffff;
  font-family: Gilroy-Regular;
  font-size: 1.125rem;
}
.redBlockBg2 .d-flex-columnServices .BoxDesc2 ul {
  padding-left: 1.5rem;
}
.redBlockBg2 .d-flex-columnServices .BoxDesc2 ul li {
  list-style: disc;
  font-size: 1rem;
  line-height: 140%;
}

.darkBlackBG-FH {
  height: 100%;
}

.darkBlackBG {
  background: #3C3C3E;
}
.darkBlackBG .d-flex-columnServices {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6rem;
  padding: 3.5rem;
}
.darkBlackBG .d-flex-columnServices .BoxHeading {
  color: #ffffff;
  font-size: 1.5rem;
  font-family: Gilroy-Semibold;
  line-height: 120%;
}
.darkBlackBG .d-flex-columnServices .BoxDesc {
  color: #ffffff;
  font-family: Gilroy-Regular;
  font-size: 0.875rem;
}
.darkBlackBG .d-flex-columnServices .BoxDesc ul {
  padding-left: 1.5rem;
}
.darkBlackBG .d-flex-columnServices .BoxDesc ul li {
  list-style: disc;
  font-size: 1rem;
  line-height: 140%;
}

.d-flex-supporting {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.supportingtext {
  font-size: 2rem;
  line-height: 120%;
  color: #3C3C3E;
  font-family: Gilroy-Semibold;
}

.leonardoBg2 {
  background-image: url(../images/ensuresImg.svg);
  background-repeat: no-repeat;
  padding: 1.5rem;
  height: 350px;
  background-size: cover;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.leonardoBg2 P {
  font-size: 1.875rem;
  line-height: 120%;
  color: #FFFFFF;
  font-family: Gilroy-Semibold;
}

.d-flex-row {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 2rem;
}

.usabilityTitle {
  font-size: 2.33rem;
  line-height: 120%;
  color: #3C3C3E;
  font-family: Gilroy-Semibold;
}

.usabilityPara {
  font-size: 1.125rem;
  line-height: 120%;
  color: #7B7B7B;
  font-family: Gilroy-Medium;
}

.redLeonardoBg {
  display: flex;
  padding: 1.5rem;
  justify-content: space-between;
  flex-direction: column;
  height: 350px;
}
.redLeonardoBg .ClassicTitle {
  font-size: 3.018rem;
  color: #FFFFFF;
  line-height: 110%;
  font-family: Gilroy-Semibold;
}
.redLeonardoBg .ClassicTitle span {
  font-size: 1.207rem;
  font-family: Gilroy-Medium;
  text-transform: uppercase;
}
.redLeonardoBg .ClassicPara {
  font-size: 1.125rem;
  line-height: 110%;
  color: #FFFFFF;
  font-family: Gilroy-Medium;
}

.emailTitle {
  font-size: 2rem;
  color: #FFFFFF;
  line-height: 110%;
  font-family: Gilroy-Semibold;
}

.emailPara {
  font-size: 1rem;
  color: #FFFFFF;
  line-height: 110%;
  font-family: Gilroy-Medium;
}

.learnMorePara {
  font-size: 1rem;
  line-height: 120%;
  color: #FFFFFF;
  font-family: Gilroy-Regular;
}

.workflow-service {
  position: relative;
}
.workflow-service .workflowContentImg img {
  width: 100%;
}
.workflow-service .workflowContentText {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.188rem;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: end;
  z-index: 1;
  color: #fff;
}
.workflow-service .workflowContentText h5 {
  font-size: 1.875rem;
  font-family: "Gilroy-Semibold";
}

.Bgcasestudyimg {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  position: relative;
  display: block;
  margin-top: clamp(10px, 2vw, 60px);
  height: auto;
}

.singlecasestudy {
  max-width: 740px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.CsTitle {
  font-size: 1.625rem;
  font-family: "Gilroy-Semibold";
  line-height: 31.2px;
}

.CsredTitle {
  font-size: 1.625rem;
  font-family: "Gilroy-Semibold";
  line-height: 110%;
  color: #AF2127;
}

.ulist {
  margin: 0.5rem 2rem !important;
  font-family: "Gilroy-Regular";
  font-size: 1.25rem;
  line-height: 28px;
  color: #49515B;
}
.ulist li {
  list-style: disc !important;
  margin-bottom: 1rem;
}

.backLink {
  display: flex;
  gap: 12px;
  color: #FFFFFF;
  text-decoration: none;
  align-items: center;
  position: relative;
}

.BlogsmblueTitle {
  font-size: 1.2rem;
  font-family: "Gilroy-Semibold";
  line-height: 110%;
  color: #0969CE;
}

.IdblockSubimg {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.benefitsSection {
  flex-wrap: wrap;
}
.benefitsSection .w-33 {
  width: calc(33.33% - 1rem);
}
.benefitsSection .w-50 {
  width: calc(50% - 1rem) !important;
}

.greyBlockHeight {
  height: 300px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;
}
.greyBlockHeight .Ftitle {
  color: #3C3C3E;
  font-family: Gilroy-Semibold;
  font-size: 1.5rem;
  line-height: 130%;
}

.imgWH-15 {
  width: 15px;
  height: 15px;
}

/*=================image fix at box==================*/
.square-box {
  position: relative;
  overflow: hidden;
}
.square-box:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.square-box .square-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
}
.square-box .square-content .dblock-img {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
  text-align: center;
  vertical-align: middle;
}
.square-box .square-content img {
  margin: 0 auto;
  text-align: center;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.errorloggerHeight {
  max-height: 1200px;
}

.cautomateHeight {
  max-height: 900px;
}

/*=================image fix at box==================*/
.CSBlock {
  max-width: 1366px;
  margin: 0 auto;
  transform: unset !important;
}

.drp-share .dropdown-toggle::after {
  display: none;
}
.drp-share .dropdown-toggle:hover {
  outline: none;
}
.drp-share .dropdown-menu {
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 0 8px #eee;
  border: none;
}
.drp-share .dropdown-menu a {
  cursor: pointer;
  font-family: "Gilroy-Medium";
  transition: all 0.5s ease;
  color: #3E3E3E;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
}
.drp-share .dropdown-menu a:first-child {
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.6rem;
  margin-bottom: 0.6rem;
}
.drp-share .dropdown-menu a img {
  width: 15px;
  height: 15px;
}
.drp-share .dropdown-menu a:hover svg,
.drp-share .dropdown-menu a:hover p {
  color: #AF2127 !important;
}
.drp-share .dropdown-menu a:hover svg path {
  fill: #AF2127;
}
.drp-share .dropdown-menu.show {
  left: unset !important;
}
.drp-share:hover .dropdown-menu {
  right: 0;
}

.Insights-Gallery {
  margin-left: 10rem;
}

.hClientsStoryList .tag {
  position: absolute;
  bottom: 1rem;
  color: #fff;
  z-index: 2;
  left: 2rem;
  right: 2rem;
  text-align: left;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-color: unset;
  opacity: 1;
  font-size: 0.75rem;
  font-family: Gilroy-Semibold;
}

.servicePageBanner .pageServicesTitle {
  max-width: 65% !important;
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 0.75rem;
  font-weight: normal;
  display: block;
}

.fontSizeC {
  font-size: 0.938rem !important;
}

.drp-share a p {
  font-size: 1rem !important;
}

.scheduleMeetingBtn .wpcf7-spinner {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: 0 auto;
  width: 40px;
  height: 40px;
}
.scheduleMeetingBtn .wpcf7-spinner::before {
  top: 12px;
  left: 12px;
}

.support .pageBanner .bannertitle {
  max-width: 95%;
}
.support .pageBanner .TitlePara {
  max-width: 53%;
}
.support .supportDetails {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.support .supportDetails .supportDetailsBlock {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.support .supportDetails .supportDetailsBlock img {
  width: 18px;
  height: 18px;
}
.support .supportDetails .supportDetailsBlock .subtitle span {
  color: #000000;
  font-family: Gilroy-Regular;
  font-size: 0.875rem;
  line-height: 120%;
  padding-left: 0.3rem;
}
.support .supportDetails .divider {
  height: 30px;
}

.casestudies .pageBanner .bannertitle {
  max-width: 80% !important;
}

.olist-sletter {
  padding-left: 2rem;
}
.olist-sletter li {
  list-style: lower-alpha;
  font-family: "Gilroy-Semibold";
  font-size: 1.375rem;
}

.olist {
  padding-left: 2rem;
}
.olist li {
  list-style: circle;
}

.olist-decimal {
  padding-left: 2rem;
}
.olist-decimal li {
  list-style: decimal;
  color: #49515B;
  font-family: Gilroy-Regular;
  font-size: 1rem;
  line-height: 140%;
}

.privacypolicy .ppsubText a {
  display: inline-block;
}

.d-flex-columnServices {
  padding: 3.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.d-flex-columnServices .BoxTitle {
  color: #FFFFFF;
  font-family: Gilroy-Regular;
  font-size: 2.5rem;
  line-height: 120%;
}
.d-flex-columnServices .BoxHeading {
  color: #FFFFFF;
  font-family: Gilroy-Semibold;
  font-size: 1.5rem;
  line-height: 120%;
}
.d-flex-columnServices .BoxDesc {
  color: #FFFFFF;
  font-family: Gilroy-Medium;
  font-size: 0.875rem;
  line-height: 130%;
}

.d-flex-redBgflex {
  padding: 3.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.d-flex-redBgflex .workflowTitle {
  color: #FFFFFF;
  font-family: Gilroy-Regular;
  font-size: 2.5rem;
  line-height: 120%;
}
.d-flex-redBgflex .workflowHeading {
  color: #FFFFFF;
  font-family: Gilroy-Semibold;
  font-size: 1.5rem;
  line-height: 120%;
}
.d-flex-redBgflex .workflowPara {
  color: #FFFFFF;
  font-family: Gilroy-Medium;
  font-size: 0.875rem;
  line-height: 130%;
}

.d-flex-implementation {
  padding: 3.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.d-flex-implementation .implementationTitle {
  color: #000000;
  font-family: Gilroy-Regular;
  font-size: 2.5rem;
  line-height: 120%;
}
.d-flex-implementation .implementationHeading {
  color: #000000;
  font-family: Gilroy-Semibold;
  font-size: 1.5rem;
  line-height: 120%;
}
.d-flex-implementation .implementationPara {
  color: #000000;
  font-family: Gilroy-Medium;
  font-size: 0.875rem;
  line-height: 130%;
}

.darkBlackBG {
  background: #3C3C3E;
}

.lightGreyBG {
  background: #F0F0F0;
}
.lightGreyBG .d-flex-column .BoxTitle {
  color: #000000;
}
.lightGreyBG .d-flex-column .BoxHeading {
  color: #000000;
}
.lightGreyBG .d-flex-column .BoxDesc {
  color: #000000;
}

.d-flex-user {
  padding: 3.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.d-flex-user .userTitle {
  color: #FFFFFF;
  font-family: Gilroy-Regular;
  font-size: 2.5rem;
  line-height: 120%;
}
.d-flex-user .userHeading {
  color: #FFFFFF;
  font-family: Gilroy-Semibold;
  font-size: 1.5rem;
  line-height: 120%;
}
.d-flex-user .userPara {
  color: #FFFFFF;
  font-family: Gilroy-Medium;
  font-size: 0.875rem;
  line-height: 130%;
}

.d-flex-customer {
  padding: 3.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.d-flex-customer .customerTitle {
  color: #000000;
  font-family: Gilroy-Regular;
  font-size: 2.5rem;
  line-height: 120%;
}
.d-flex-customer .customerHeading {
  color: #000000;
  font-family: Gilroy-Semibold;
  font-size: 1.5rem;
  line-height: 120%;
}
.d-flex-customer .customerPara {
  color: #000000;
  font-family: Gilroy-Medium;
  font-size: 0.875rem;
  line-height: 130%;
}

.servicespoints ul {
  padding-left: 1rem;
}
.servicespoints ul li {
  list-style: disc;
  color: rgb(160, 166, 172);
  margin-bottom: 0.5rem;
}

.d-flex-Col {
  display: flex;
  flex-direction: column;
}

.SA-SubTitleRed {
  color: #AF2127;
  font-family: Gilroy-Semibold;
  font-size: 2rem;
  line-height: 100%;
}

.SA-HeadingRed {
  color: #AF2127;
  font-family: Gilroy-Semibold;
  font-size: 9.438rem;
  line-height: 100%;
}
.SA-HeadingRed span {
  color: #AF2127;
  font-family: Gilroy-Semibold;
  font-size: 2rem;
  line-height: 100%;
}

.coreforceBg {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) -20%, rgba(0, 0, 0, 0.8) 70%), url(../images/cloudandmobileaccess.jpeg);
  background-repeat: no-repeat;
  padding: 1.5rem;
  height: 100%;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  /* Align content to the right */
}
.coreforceBg .coreforceHeading {
  color: #F6F6F6;
  font-family: Gilroy-Semibold;
  font-size: 2rem;
  line-height: 130%;
  margin-bottom: 0.7rem;
}
.coreforceBg .coreforcePara {
  color: #F6F6F6;
  font-family: Gilroy-Regular;
  font-size: 1.125rem;
  line-height: 130%;
}

.GainInsightsBg {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) -20%, rgba(0, 0, 0, 0.8) 70%), url(../images/gaininsights.jpeg);
  background-repeat: no-repeat;
  padding: 1.5rem;
  height: 350px;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  /* Align content to the right */
}
.GainInsightsBg .GainInsightsBgHeading {
  color: #F6F6F6;
  font-family: Gilroy-Semibold;
  font-size: 2rem;
  line-height: 120%;
}
.GainInsightsBg .GainInsightsBgPara {
  color: #F6F6F6;
  font-family: Gilroy-Medium;
  font-size: 1.625rem;
  line-height: 120%;
}

.venderTitle {
  color: #3C3C3E;
  font-family: Gilroy-Semibold;
  font-size: 1.625rem;
  line-height: 120%;
}

.venderTitle2 {
  color: #3C3C3E;
  font-family: Gilroy-Semibold;
  font-size: 2rem;
  line-height: 120%;
}

.venderPara {
  color: #3C3C3E;
  font-family: Gilroy-Regular;
  font-size: 1.625rem;
  line-height: 120%;
}

.venderPara2 {
  color: #7B7B7B;
  font-family: Gilroy-Regular;
  font-size: 1.125rem;
  line-height: 120%;
}

.gainInsightsTitle {
  color: F6F6F6;
  font-family: Gilroy-Medium;
  font-size: 1.625rem;
  line-height: 120%;
}

.TitleXL {
  font-size: 2.5rem !important;
  font-family: Gilroy-Semibold !important;
  line-height: 120%;
  color: #3C3C3E !important;
}

.titleParagraph {
  font-size: 0.875rem !important;
  font-family: Gilroy-Medium !important;
  line-height: 125% !important;
  color: #3C3C3E;
}

.whychooseSection .chooseBlock .dFlexTitle .titleSM {
  margin-bottom: 0;
}
.whychooseSection .chooseBlock .dFlexTitle .title-Md {
  margin-bottom: 0;
}

.sectAccuracy {
  display: flex;
  flex-direction: column;
  align-self: flex-end;
}

.sectionCoreforce .redLeonardoBg {
  padding: 2rem;
}

@media screen and (min-width: 2200px) {
  body .Insights-Gallery {
    margin-left: 30rem !important;
  }
}
@media screen and (min-width: 1920px) {
  body {
    overflow-x: hidden;
  }
  body .Insights-Gallery {
    margin-left: 20rem;
  }
}
@media screen and (min-width: 1700px) {
  body .MWidth {
    max-width: 1600px !important;
  }
}
@media screen and (max-width: 1600px) {
  body .headerNav {
    max-height: calc(100vh - 130px);
    overflow-y: auto;
  }
}
@media screen and (max-width: 1460px) {
  body {
    overflow-x: hidden;
  }
  body .banner {
    height: 100vh;
  }
  body .wrapper {
    margin: 0 3rem;
  }
  body .GalleryBlock {
    margin: 0 3rem 4rem 3rem !important;
  }
  body .salesforcebanner2 .Sblock2 {
    margin: 0 3rem;
  }
}
@media screen and (max-width: 1280px) {
  body .wrapper {
    max-width: 100%;
    margin: 0 3rem;
  }
  body .wrapper.letsDiscussServiceWrapper {
    margin: 0;
  }
  body .pagenotfound .left404 {
    width: 70%;
  }
  body .pagenotfound .left404 img {
    width: auto;
    display: flex;
    justify-content: center;
  }
  body .pagenotfound .left404 p {
    width: 100%;
    font-size: 26px;
    text-align: center;
  }
  body .pagenotfound .right404 {
    width: 60%;
  }
  body .support .supportDetails {
    display: block;
  }
  body .support .supportDetails .supportDetailsBlock {
    justify-content: center;
    margin-bottom: 1rem;
  }
  body .support .supportDetails .divider {
    display: none;
  }
  body .headerNav .descMenu ul li {
    flex: 0 50%;
  }
  body .pageBanner .bannertitle {
    width: 100%;
  }
  body .servicePageBanner .pageServicesTitle {
    max-width: 100% !important;
  }
  body .salesforceSummary {
    row-gap: 3rem;
  }
  body .title-Md {
    font-size: 2.75rem;
  }
  body .GalleryBlock {
    margin: 0 1rem 4rem 1rem;
  }
  body .aboutSummary {
    align-items: flex-start;
  }
  body .aboutSummary .titleMD {
    font-size: 2.5rem;
  }
  body .salesforcebanner2 .Sblock2 {
    margin: 0 3rem !important;
  }
  body .MLetsdisscuss .d-flex {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  body .sect-industry-features .pleft {
    padding-left: 2.7rem;
  }
  body .sect-industry-features .pright {
    padding-right: 2.7rem;
  }
  body .sect-industry-features .GreyBlock {
    padding: 1.5rem;
  }
  body .IndustryInfoBlock {
    gap: 2rem;
  }
  body .videoRow .col-md-4 video {
    height: 280px;
  }
  body .sect-getintouch h3 {
    font-size: 4rem;
  }
  body .sect-getintouch .form-check {
    width: 48%;
  }
  body .sect-getpdf h3 {
    font-size: 4rem;
  }
  body .sect-getpdf .form-check {
    width: 48%;
  }
  body .sect-transOutcomes .transOutcomes-content {
    width: 70%;
  }
  body .leadershipList {
    width: 90%;
  }
  body .leadershipList ul li {
    width: 33.33%;
  }
  body .greyBlockBg2 img {
    width: 70px;
  }
  body .accordions .accordion-button {
    padding: 1rem;
  }
  body .letsDiscuss .title-lg {
    font-size: 4rem;
  }
  body .singlecasestudy .CssubText a {
    font-size: 1rem;
  }
  body .singlecasestudy p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  body .colGap {
    margin-bottom: 5rem !important;
  }
  body .pagenotfound {
    justify-content: center;
  }
  body .pagenotfound .left404 {
    width: 50%;
  }
  body .pagenotfound .right404 {
    display: none !important;
  }
  body .title {
    font-size: 2.813rem;
  }
  body .pageBanner {
    padding: 4rem 0;
  }
  body .flexWidthblock {
    display: flex;
  }
  body .flexWidthblock .w-50,
body .flexWidthblock .w-75,
body .flexWidthblock .w-60 {
    width: 50% !important;
    margin-top: 5rem;
  }
  body .whyChooseUs .wcBlock {
    width: 50%;
  }
  body .flexWrapStructure .subBlock,
body .flexWrapStructure .eBlock {
    width: 50%;
  }
  body .servicesblock {
    display: block;
  }
  body .servicesblock .w-60,
body .servicesblock .w-40 {
    width: 100% !important;
  }
  body .servicesblock .w-60 {
    margin-bottom: 1.5rem;
  }
  body .servicesblock .servicesDesc {
    padding: 1.5rem 0;
  }
  body .servicesblock .servicesDesc .subText {
    padding-right: 0.6rem;
  }
  body .hamburger {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  body .header-wrapper .header .menu-list {
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    flex-direction: column;
    top: 100%;
    left: 0;
  }
  body .header-wrapper .header .menu-list ul {
    padding: 1rem;
  }
  body .header-wrapper .header .menu-list ul li ul {
    padding: 0;
  }
  body .header-wrapper .header .menu-list.menu-list-flex {
    display: flex;
    height: 100vh;
  }
  body .header-wrapper .header ul,
body .header-wrapper .header .menu-list {
    align-items: self-start;
    flex-direction: column;
    gap: 0;
  }
  body .header-wrapper .header ul li.active,
body .header-wrapper .header .menu-list li.active {
    position: fixed;
    top: 100%;
    background: #fff;
    width: 100%;
    right: 0;
    left: 0;
    display: block !important;
    padding: 1rem;
  }
  body .serviceList {
    width: 100%;
  }
  body .serviceList-inline {
    width: 100%;
  }
  body .whiteTitle {
    font-size: 1.5rem;
  }
  body .muted-title {
    font-size: 4.5rem;
  }
  body .pageBanner .TitlePara {
    max-width: 75%;
  }
  body .pageBanner .bannertitle {
    max-width: 75%;
  }
  body .salesforcebanner .Sblock .positionBanner {
    padding: 2rem;
  }
  body .salesforcebanner .bannerWhiteTxt {
    font-size: 3rem;
  }
  body .salesforcebanner .bannerWhiteTxt .sect-video,
body .salesforcebanner .bannerWhiteTxt .sect-services,
body .salesforcebanner .bannerWhiteTxt .Sect_ServiceJourney,
body .salesforcebanner .bannerWhiteTxt .hArticles,
body .salesforcebanner .bannerWhiteTxt .letsDiscussWrapper {
    overflow: hidden;
  }
  body .salesforcebanner .bannerWhiteTxt .Sect_ServiceJourney ul {
    flex-flow: wrap;
  }
  body .salesforcebanner .bannerWhiteTxt .Sect_ServiceJourney ul li {
    flex: 1 1 48%;
  }
  body .shake1,
body .shake2 {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  body .headerNav {
    max-height: unset;
    overflow-y: unset;
    padding: unset;
    background: unset;
    padding: 0.25rem 0;
    backdrop-filter: unset;
  }
  body .headerNav .menuList {
    gap: 0.5rem;
  }
  body .headerNav .menuList .menuSubList {
    display: none;
  }
  body .headerNav .menuList .menuSubList li {
    margin-bottom: 0rem;
    padding-bottom: 0;
  }
  body .headerNav .menuList .menuSubList li a {
    font-family: Gilroy-SemiBold;
    padding: 0.625rem 0rem;
    border: none;
    border-radius: unset;
  }
  body .headerNav .menuList .subtitle {
    padding: 0.625rem 0;
    font-family: "Gilroy-SemiBold";
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    color: #3C3C3E;
    align-items: center;
    cursor: pointer;
    opacity: 1;
    text-transform: capitalize;
    letter-spacing: unset;
  }
  body .headerNav .menuList.active {
    display: block !important;
  }
  body .headerNav .menuList.active .subtitle {
    font-size: 0.75rem;
    color: #7B7B7B;
    justify-content: flex-end;
    flex-direction: row-reverse;
    gap: 0.625rem;
    cursor: pointer;
  }
  body .headerNav .menuList.active .subtitle .dropdown-down-arrow {
    transform: rotate(180deg);
  }
  body .headerNav .descMenu .menuSubList {
    display: none;
  }
  body .headerNav .descMenu .menuSubList li {
    margin-bottom: 0rem;
  }
  body .headerNav .descMenu .menuSubList li a {
    font-family: Gilroy-SemiBold;
  }
  body .headerNav .descMenu .subtitle {
    padding: 0.625rem 0;
    font-family: "Gilroy-SemiBold";
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    color: #3C3C3E;
    align-items: center;
    cursor: pointer;
    opacity: 1;
    text-transform: capitalize;
    letter-spacing: unset;
    line-height: 130%;
  }
  body .headerNav .descMenu.active {
    display: block !important;
  }
  body .headerNav .descMenu.active .subtitle {
    font-size: 0.75rem;
    color: #7B7B7B;
    justify-content: flex-end;
    flex-direction: row-reverse;
    gap: 0.625rem;
    cursor: pointer;
  }
  body .headerNav .descMenu.active .subtitle .dropdown-down-arrow {
    transform: rotate(180deg);
  }
  body .headerNav .flex-25 {
    flex: 0 100%;
    padding-left: 0;
    gap: 0;
    padding: 0;
  }
  body .headerNav .flex-25:first-child {
    background-color: unset;
    padding-left: 0;
  }
  body .headerNav .flex-25:last-child {
    padding-right: 0;
  }
  body .headerNav .flex-50 {
    flex: 0 100%;
    padding-left: 0;
    padding: 0;
    border-right: none;
  }
  body .headerNavWrapper {
    box-shadow: unset;
  }
  body .header .desk_getintouch {
    display: none;
  }
  body .header .mob_getintouch {
    display: block;
  }
  body .header .mob_getintouch .primary-btn {
    border-radius: 50%;
    padding: 0.188rem 0.188rem !important;
    background-image: linear-gradient(to right, #8E0A10, #AF2127);
  }
  body .header .dropdown-down-arrow {
    display: block;
  }
  body .header .dropdown-menu {
    position: relative !important;
    top: 0 !important;
    width: 100%;
    transform: unset !important;
    padding: 0;
    display: block;
    border-bottom: none !important;
    box-shadow: none;
    border: none;
  }
  body .header .dropdown-menu .show {
    background: #efefef;
  }
  body .header .dropdown-toggle {
    color: #7B7B7B !important;
    font-size: 0.85rem;
    font-family: "Gilroy-Regular" !important;
  }
  body .header .dropdown-toggle .dropdown-down-arrow {
    display: block;
  }
  body .header .dropdown-toggle.show .dropdown-down-arrow {
    transform: rotate(180deg);
  }
  body .header .dropdown.single-dropdown .dropdown-menu {
    padding: 0;
  }
  body .header .menu-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.5s ease;
    width: 100%;
    flex: 1;
  }
  body .header .menu-list ul {
    width: 100%;
  }
  body .header .menu-list ul li {
    width: 100%;
    border-bottom: 1px solid rgba(16, 16, 16, 0.05);
  }
  body .header .menu-list ul li a {
    width: 100%;
    padding: 0.625rem 0rem;
    font-family: "Gilroy-SemiBold";
    font-size: 1rem;
    line-height: 130%;
  }
  body .header .menu-list ul li:first-child {
    padding-bottom: 1rem;
  }
  body .header .menu-list ul li:last-child {
    border-bottom: none;
  }
  body .header .menu-list ul.menuSubList li {
    border-bottom: none;
  }
  body .header .menu-list ul.menuSubList li:first-child {
    padding-bottom: 0;
  }
  body .header.d-flex {
    padding: 1rem;
    align-items: center;
  }
  body .sect-experties.three-expertises .eBlock:first-child {
    border-right: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
  }
  body .sect-experties.three-expertises .eBlock:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid #DDD;
  }
  body .sect-experties.three-expertises .eBlock:nth-child(3) {
    border-bottom: none;
  }
  body .sect-experties .eBlock:first-child {
    border-right: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
  }
  body .sect-experties .eBlock:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid #DDD;
  }
  body .sect-experties .eBlock:nth-child(3) {
    border-right: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
  }
  body .sect-experties .eBlock:nth-child(4) {
    border-right: none;
    border-bottom: 1px solid #DDD;
  }
  body .sect-experties .eBlock:nth-child(5) {
    border-right: 1px solid #DDD;
  }
  body .sect-experties .salesforce-expertise .eBlock:nth-child(5) {
    border-right: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
  }
  body .sect-experties .salesforce-expertise .eBlock:nth-child(7) {
    border-top: none;
  }
  body .sect-experties .w-75 {
    width: 100% !important;
  }
  body .sect-experties .w-33 {
    width: 100% !important;
  }
  body .sect-experties .w-25 {
    width: 100% !important;
  }
  body .sect-experties .w-50 {
    width: 100% !important;
  }
  body .sf-services .servicesblock:last-child {
    margin-bottom: 5rem;
  }
  body .mobility-services .servicesblock:last-child {
    margin-bottom: 5rem;
  }
  body .de-services .servicesblock:last-child {
    margin-bottom: 5rem;
  }
  body .footerQuickLinks {
    display: none;
  }
  body .salesforceBadges {
    justify-content: space-between;
  }
  body .colGapLG {
    margin-bottom: 10rem !important;
  }
  body .Section-Insights {
    overflow-x: auto;
  }
  body .Section-Insights .flex-37 {
    flex: 0 0 45%;
  }
  body .Section-Insights .flex-30 {
    flex: 0 0 45%;
  }
  body .Section-Insights::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
  body .salesforce-details .title-Md {
    word-break: break-word;
  }
  body .headerNavWrapper {
    margin: unset !important;
  }
  body .noRightBorder .bRight {
    border-right: none !important;
  }
  body .aboutSummary {
    justify-content: flex-start;
    align-items: start;
    justify-content: center;
    gap: 2rem;
  }
  body .aboutSummary .w-20 {
    width: 44%;
  }
  body .aboutSummary .divider {
    display: none;
  }
  body .letsDiscuss {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  body .letsDiscuss .title-lg {
    font-size: 4rem;
  }
  body .sect-transOutcomes {
    margin-bottom: 40rem;
  }
  body .lightGreyBg img {
    height: 160px;
  }
  body .lightGreyBg img.imgauto {
    height: 160px;
  }
  body .sect-Onboarding .animateModule1,
body .sect-Onboarding .animateModule2 {
    flex-wrap: wrap;
  }
  body .sect-Onboarding .w-25 {
    width: calc(50% - 0.75rem) !important;
  }
  body .sect-Onboarding .w-30 {
    width: calc(50% - 0.75rem) !important;
  }
  body .sect-Onboarding .w-45 {
    width: 100%;
  }
  body .sect-Onboarding .w-50 {
    width: 100% !important;
  }
  body .sect-Onboarding .w-33 {
    width: 100% !important;
  }
  body .sect-Onboarding .w-75 {
    width: 100% !important;
  }
  body .section-Assignme .w-25 {
    width: 100% !important;
  }
  body .section-Assignme .w-75 {
    width: 100% !important;
  }
  body .sectionCoreforce .w-30 {
    width: 100% !important;
  }
  body .sectionCoreforce .w-40 {
    width: 100% !important;
  }
  body .pageBanner .bannertitle {
    font-size: 3rem;
    max-width: 100%;
  }
  body .pageBanner .TitlePara {
    max-width: 100%;
  }
  body .errorloggerHeight {
    max-height: unset !important;
  }
  body .cautomateHeight {
    max-height: unset !important;
  }
  body .title2 {
    font-size: 2rem !important;
  }
  body .GalleryBlock .title {
    font-size: 2.375rem;
  }
  body .salesforcebanner2 .whiteMdTitle {
    font-size: 3rem;
  }
  body .DgBlock .w-70 {
    width: 100%;
  }
  body .centered-text {
    width: 100%;
  }
  body .sect-getintouch .modal-dialog .modal-content {
    margin: 1.5rem;
  }
  body .sect-getpdf .modal-dialog .modal-content {
    margin: 1.5rem;
  }
  body .fontM {
    font-size: 1.2rem !important;
  }
  body .headerNav .descMenu ul li a label {
    font-size: 1.2rem;
  }
  body .HomeBanner h1 {
    font-size: 2.5rem;
  }
  body .HomeBanner p {
    font-size: 1rem;
  }
  body .hserviceContentImg {
    height: 375px;
  }
  body .hserviceContentImg video {
    height: 375px;
    object-fit: cover;
  }
  body .hserviceContentImg::before {
    height: 375px;
  }
  body .whiteLink {
    font-size: 0.75rem;
  }
  body .link-btn-light {
    font-size: 0.75rem;
  }
  body .pageBanner .TitlePara {
    font-size: 1rem;
    margin: 0;
  }
  body .subtitle {
    font-size: 1.5rem;
  }
  body .salesforcebanner .whiteXsText {
    font-size: 0.75rem;
  }
  body .salesforcebanner .whiteMdText {
    font-size: 1.5rem;
  }
  body .salesforcebanner .whitesmText {
    font-size: 1rem;
  }
  body .salesforcebanner .whiteXxsText {
    font-size: 0.75rem;
  }
  body .secondary-btnRadius-white {
    font-size: 0.75rem;
  }
  body .secondary-btnRadius {
    font-size: 0.75rem;
  }
  body .workflow-service .workflowContentText h5 {
    font-size: 1.5rem;
  }
  body .sect-transOutcomes .transOutcomes-content .Mission-content {
    margin-top: 5rem;
  }
  body .leadershipList {
    width: 100%;
  }
  body .section-Service .d-flex {
    flex-direction: row !important;
  }
  body .redBlockBg2 .d-flex-columnServices {
    gap: 2rem;
  }
  body .GainInsightsBg {
    height: 100%;
  }
}
@media screen and (max-width: 991.5px) {
  body .letsDiscussWrapper .letsDiscuss {
    align-items: flex-start;
    flex-direction: column;
    padding: 0 3rem;
  }
  body .letsDiscussWrapper .letsDiscuss .title2 {
    width: 100%;
    margin-bottom: 1rem;
  }
  body .letsDiscussWrapper .letsDiscuss .text {
    width: 100%;
    margin-bottom: 2rem;
    font-size: 1rem;
  }
  body .letsDiscussWrapper .letsDiscuss .letsDiscuss-btn {
    margin-bottom: 4rem;
    margin-left: 0;
  }
  body .letsDiscussWrapper .letsDiscuss .title-lg {
    font-size: 2.5rem;
    width: 100%;
  }
  body .letsDiscussWrapper .letsDiscuss .letsDiscussDesc {
    width: 100%;
  }
  body .letsDiscussWrapper .letsDiscuss.MLetsdisscuss .w-50 {
    width: 100% !important;
  }
  body .letsDiscussWrapper video {
    transform: none;
    height: 60vh;
  }
  body .flexWidthblock {
    flex-direction: column;
  }
  body .flexWidthblock .w-50,
body .flexWidthblock .w-75,
body .flexWidthblock .w-60 {
    width: 100% !important;
  }
  body .workspacebanner .workspacevideo {
    height: 500px;
  }
  body .workspacebanner .workspacevideo .videoGradient {
    width: 100%;
  }
  body .workspacebanner .workspacevideo .videoGradient::after {
    width: 100%;
    background: linear-gradient(to top, rgb(0, 0, 0) 34%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  }
  body .workspacebanner .Sblock {
    align-items: flex-start;
    flex-direction: column;
    top: auto;
    transform: translate(0px, -50px) !important;
    bottom: 0;
  }
  body .HomeBanner p {
    font-size: 1.8rem;
  }
  body .MLetsdisscuss .d-flex {
    display: flex;
    flex-direction: column;
  }
  body .sect-transOutcomes .transOutcomes-content {
    width: 80%;
  }
  body .sect-transOutcomes .ring-image {
    height: 440px;
  }
  body .sect-industry-features {
    margin: 0 1rem 5rem 1rem;
  }
  body .sect-industry-features .IndustryInfoBlock {
    flex-direction: column;
  }
  body .sect-industry-features .IndustryInfoBlock .w-50 {
    width: 100% !important;
  }
  body .sect-industry-features .pleft {
    padding-left: unset;
    height: auto;
  }
  body .sect-industry-features .pright {
    padding-right: unset;
  }
  body .sect-workflow .d-flex {
    flex-wrap: wrap;
  }
  body .sect-workflow .d-flex .w-33 {
    width: 48%;
  }
  body .sect-getintouch h3 {
    font-size: 3rem;
  }
  body .sect-getpdf h3 {
    font-size: 3rem;
  }
  body .salesforcebanner.SservicesBlock .positionBanner .w-50 {
    width: 100% !important;
  }
  body .leadershipList ul li {
    width: 50%;
  }
  body .section-Service .d-flex {
    flex-direction: column !important;
  }
}
@media screen and (max-width: 768px) {
  body .pagenotfound .left404 img {
    width: 100%;
  }
  body .imgWH-60 {
    height: 50px;
    width: 50px;
  }
  body .colGap {
    margin-bottom: 3rem !important;
  }
  body .insightDetails {
    display: block;
    text-align: center;
  }
  body .insightDetails .d-flex {
    justify-content: center;
    margin-bottom: 1rem;
  }
  body .flexWidthblock {
    display: block;
  }
  body .flexWidthblock .w-50,
body .flexWidthblock .w-75,
body .flexWidthblock .w-60 {
    width: 100% !important;
    margin-top: 5rem;
  }
  body .flexWidthblock.colGapSM {
    margin-bottom: 0 !important;
  }
  body .wrapper {
    max-width: 100%;
    margin: 0 1rem;
  }
  body .whyChooseUs .wcBlockWrapper {
    width: 50%;
  }
  body .whyChooseUs .wcBlockWrapper .wcBlock {
    width: 100%;
  }
  body .footer {
    display: block;
  }
  body .footer ul {
    padding-bottom: 1rem !important;
    border-bottom: 1px solid #eee;
    margin-bottom: 1.5rem !important;
  }
  body .footer ul.foot-socialmedia-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem !important;
    border-bottom: 0;
    padding-bottom: 0rem !important;
  }
  body .footer.colGapSM {
    margin-bottom: 1rem;
  }
  body .Sect_ServiceJourney ul {
    flex-flow: wrap;
  }
  body .Sect_ServiceJourney ul li {
    width: 48%;
  }
  body .sect-services-banner {
    flex-direction: column;
  }
  body .title {
    font-size: 2rem;
  }
  body .HomeBanner h1 {
    font-size: 2.5rem;
  }
  body .HomeBanner p {
    font-size: 1rem;
    line-height: 140%;
  }
  body .hArticles .title2 {
    width: 100%;
  }
  body .title2 {
    font-size: 2rem;
  }
  body .dFlexTitle {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  body .titleMD {
    font-size: 2rem;
  }
  body .salesforceSummary .bRight {
    border-right: 0;
  }
  body .title-lg {
    font-family: Gilroy-Medium;
    font-size: 2rem;
    font-weight: normal;
    line-height: 110%;
    color: #000;
  }
  body .colGap {
    margin-bottom: 5rem;
  }
  body .colGapLG {
    margin-bottom: 5rem !important;
  }
  body .hClients {
    margin-bottom: 5rem;
  }
  body .hClients .hClientsStoryList {
    flex-direction: column;
    max-height: unset;
  }
  body .hClients .hClientsStoryList .left,
body .hClients .hClientsStoryList .right {
    width: 100%;
  }
  body .hClients .hClientsStoryList .right {
    margin-top: 0;
  }
  body .colGap {
    margin-bottom: 5rem !important;
  }
  body .salesforcebanner .Sblock .positionBanner {
    flex-direction: column;
    justify-content: space-around;
  }
  body .copyright {
    text-align: center;
  }
  body .sect-video .custom-video {
    height: 320px;
    background: #000;
  }
  body .sect-video .custom-video-control img {
    width: 35px;
    height: 35px;
  }
  body .sect-video .custom-video-control .vid-buttons {
    gap: 0.5rem;
    display: flex;
    bottom: 1rem;
  }
  body .sect-video .custom-video-control .vid-watermark img {
    width: 150px;
    height: 35px;
  }
  body .sect-video video {
    object-fit: contain;
    -webkit-object-fit: contain;
  }
  body .serviceList ul li {
    flex: 0 0 100%;
  }
  body .serviceList-inline ul li {
    flex: 0 0 100%;
  }
  body .btn-woborder {
    margin: 0 auto;
    flex-direction: row-reverse;
  }
  body .dFlexGap {
    flex-direction: column;
  }
  body .accordions .accordion-button {
    padding: 1rem 0;
  }
  body .accordions .accordion-body {
    padding: 0 0 1rem 0;
  }
  body .dblockBanner {
    flex-direction: column !important;
    justify-content: center;
    gap: 0 !important;
    padding: 1rem;
  }
  body .dblockBanner .w-40 {
    width: 100% !important;
  }
  body .dblockBanner .w-60 {
    width: 100% !important;
    padding-top: 1.5rem;
  }
  body .dblockBanner .whiteMdTextbanner {
    font-size: 1rem;
  }
  body .GalleryBlock {
    display: block !important;
  }
  body .GalleryBlock .w-40 {
    width: 100% !important;
  }
  body .GalleryBlock .w-60 {
    width: 100% !important;
    padding-top: 1.5rem;
  }
  body .salesforcebanner2 .Sblock2 .positionBanner2 {
    padding-bottom: 0 !important;
  }
  body .testingvideoBlock .w-50 {
    width: 100% !important;
  }
  body .Section-Insights {
    overflow-x: auto;
  }
  body .Section-Insights .flex-37 {
    flex: 0 0 80%;
  }
  body .Section-Insights .flex-30 {
    flex: 0 0 80%;
  }
  body footer .wrapper {
    padding: 1.5rem 0;
  }
  body .designingSection .colGapSM {
    margin-bottom: 0 !important;
  }
  body .title-Md {
    font-size: 1.75rem;
  }
  body .presence {
    flex-direction: column;
    /* Stack elements vertically */
    align-items: center;
    /* Center elements */
    text-align: left;
    /* Center text for better readability */
  }
  body .presence .addressWrapper {
    width: 100%;
    margin-bottom: 20px;
  }
  body .presence #rotatingGlobe {
    width: 450px;
    height: 450px;
  }
  body .letsDiscuss .w-50 {
    width: 100% !important;
  }
  body .letsDiscuss .title-lg {
    font-size: 3rem;
  }
  body .sect-transOutcomes {
    margin-bottom: 10rem;
  }
  body .sect-transOutcomes .transOutcomes-content {
    position: relative;
  }
  body .sect-transOutcomes .transOutcomes-content .Mission-content {
    margin-top: 5rem;
  }
  body .sect-transOutcomes .ring-image {
    height: 350px;
  }
  body .sect-transOutcomes::after {
    top: -5%;
  }
  body .IndustryInfoBlock {
    flex-direction: column;
  }
  body .IndustryInfoBlock .w-50 {
    width: 100% !important;
  }
  body .IndustryInfoBlock .w-50 .titleXl {
    font-size: 2rem;
  }
  body .IndustryInfoBlock .d-flex-column .d-flex {
    flex-direction: row;
  }
  body .sect-industry-features {
    margin: 0 1rem 5rem 1rem;
  }
  body .sect-industry-features .pleft {
    padding-left: unset;
    height: auto;
  }
  body .sect-industry-features .pright {
    padding-right: unset;
  }
  body .sect-industry-features .ifeatures-sectleft .ifeatures-sectleft-desc {
    min-height: auto;
  }
  body .sect-Onboarding .animateModule1,
body .sect-Onboarding .animateModule2 {
    flex-direction: column;
  }
  body .sect-Onboarding .w-25 {
    width: 100% !important;
  }
  body .sect-Onboarding .w-30 {
    width: 100% !important;
  }
  body .sect-Onboarding .w-33 {
    width: 100% !important;
  }
  body .sect-Onboarding .w-40 {
    width: 100% !important;
  }
  body .sect-Onboarding .w-45 {
    width: 100% !important;
  }
  body .sect-Onboarding .w-50 {
    width: 100% !important;
  }
  body .sect-Onboarding .w-75 {
    width: 100% !important;
  }
  body .functionBlock {
    display: flex;
    flex-direction: column;
  }
  body .functionBlock .w-50 {
    width: 100% !important;
  }
  body .benefitsModule {
    display: flex;
    flex-direction: column;
  }
  body .benefitsModule img.imgauto {
    width: 100%;
  }
  body .benefitsModule .w-30 {
    width: 100% !important;
  }
  body .benefitsModule .w-50 {
    width: 100% !important;
  }
  body .benefitsModule .w-40 {
    width: 100% !important;
  }
  body .benefitsModule .w-70 {
    width: 100% !important;
  }
  body .letsDiscussWrapper .letsDiscuss {
    flex-direction: column;
    align-items: flex-start !important;
    padding: 1rem !important;
  }
  body .letsDiscussWrapper .marginleft2 {
    margin-left: 2.2rem;
  }
  body .letsDiscussWrapper .w-70 {
    width: 100%;
  }
  body .careerVideobanner .workspacevideo {
    height: 600px;
  }
  body .careerVideobanner .Sblock {
    left: 1rem;
    right: 1rem;
  }
  body .videoRow .col-md-4 {
    margin-bottom: 1.5rem;
  }
  body .videoRow .col-md-4:last-child {
    margin-bottom: 0;
  }
  body .lightGreyBg img {
    height: 300px;
  }
  body .lightGreyBg img.imgauto {
    height: 300px;
  }
  body .TitlesmBlack {
    font-size: 1rem;
  }
  body .MflexColumn {
    flex-direction: column;
  }
  body .benefitsSection, body .benefitsModule {
    flex-wrap: wrap;
  }
  body .benefitsSection .w-33, body .benefitsModule .w-33 {
    width: calc(50% - 0.8rem);
  }
  body .benefitsSection .w-50, body .benefitsModule .w-50 {
    width: calc(50% - 0.8rem) !important;
  }
  body .sect-result .flexWrapStructure {
    gap: 1rem;
  }
  body .sect-result .flexWrapStructure .eBlock {
    width: 46%;
  }
  body .sect-result .flexWrapStructure .divider {
    display: none !important;
  }
  body .pageBanner .MflexColumn {
    flex-direction: row;
    flex-wrap: wrap;
  }
  body .sect-getintouch h3 {
    font-size: 2rem;
  }
  body .sect-getintouch .getintouch-flex {
    flex-direction: column;
  }
  body .sect-getintouch .getintouch-flex .w-40 {
    width: 100%;
    margin-bottom: 4rem;
  }
  body .sect-getintouch .getintouch-flex .w-50 {
    width: 100% !important;
  }
  body .sect-getintouch .getintouch-left-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 2rem;
  }
  body .sect-getintouch .form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 48%;
  }
  body .sect-getpdf h3 {
    font-size: 2rem;
  }
  body .sect-getpdf .getintouch-flex {
    flex-direction: column;
  }
  body .sect-getpdf .getintouch-flex .w-40 {
    width: 100%;
    margin-bottom: 4rem;
  }
  body .sect-getpdf .getintouch-flex .w-50 {
    width: 100% !important;
  }
  body .sect-getpdf .getintouch-left-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 2rem;
  }
  body .sect-getpdf .form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 48%;
  }
  body .subText {
    font-size: 1rem;
    line-height: 140%;
  }
  body .csb-bottomcontent {
    min-height: auto;
  }
  body .pageBanner .bannertitle {
    font-size: 2rem;
    max-width: 100%;
  }
  body .pageBanner .TitlePara {
    max-width: 100%;
  }
  body .support .pageBanner .TitlePara {
    max-width: 100%;
  }
  body .muted-title {
    font-size: 3rem;
  }
  body .salesforceSummary {
    justify-content: center;
    row-gap: 2rem;
  }
  body .salesforceSummary .blocktitle2,
body .salesforceSummary img.w-100 {
    margin-bottom: 1.5rem;
  }
  body .dFlexGap .blocklogo {
    width: 100% !important;
  }
  body .salesforcebanner .Sblock .positionBanner {
    padding: 1rem;
  }
  body .salesforcebanner2 .Sblock2 {
    margin: 0 1rem !important;
  }
  body .salesforcebanner2 .whiteMdTitle {
    font-size: 3rem;
  }
  body .workspacebanner .Sblock {
    transform: translate(0px, -50px) !important;
    left: 5%;
    right: 5%;
  }
  body .workspacebanner .Sblock p {
    font-size: 1.5rem;
  }
  body .desc {
    font-size: 1rem;
  }
  body .GalleryBlock .title {
    font-size: 2rem;
  }
  body .workflow-service .workflowContentImg img {
    max-height: 350px;
    object-fit: cover;
  }
  body .greyleonardoBlockBg .quickTitle {
    font-size: 1.5rem;
  }
  body .greyleonardoBlockBg .salesTitle {
    font-size: 1.2rem;
  }
  body .usabilityTitle {
    font-size: 1.5rem;
  }
  body .redLeonardoBg .ClassicTitle {
    font-size: 1.5rem;
  }
  body .redLeonardoBg .ClassicPara {
    font-size: 1.2rem;
  }
  body .redGradientText {
    font-size: 1.5rem !important;
  }
  body .onboardingBg .onboardingHeading {
    font-size: 3.125rem;
  }
  body .scoreBlockBg .scoreTitle {
    font-size: 3.25rem;
  }
  body .sect-tracetraxbanner .bannerWhiteTxt {
    font-size: 3rem;
  }
  body .logoBlock .w-75 {
    width: 100% !important;
  }
  body .accerateBlockBg .accerateTitle {
    font-size: 1.5rem;
  }
  body .accerateBlockBg .acceratePara {
    font-size: 1.2rem;
  }
  body .blockimg .enableTitle {
    font-size: 1.5rem;
  }
  body .chooseBlock {
    padding: 1.5rem 0.5rem !important;
  }
  body .SservicesBlock .p-4 {
    padding: 0.5rem !important;
  }
  body .sect-industry-features .GreyBlock {
    height: 280px;
  }
  body .errorloggerHeight {
    max-height: unset !important;
  }
  body .cautomateHeight {
    max-height: unset !important;
  }
  body .workflowBlock .w-75 {
    width: 100% !important;
  }
  body .centered-text {
    font-size: 1rem;
    width: 100%;
  }
  body .DgBlock .w-70 {
    width: 100%;
  }
  body .backgroundImage {
    height: 250px;
    background-size: cover;
  }
  body .functionalModuleblock .Title {
    font-size: 1.5rem;
  }
  body .functionalModuleblock .para {
    font-size: 1rem;
  }
  body .lightGreyBg .Benefits-Title {
    font-size: 1.5rem;
  }
  body .salesforcebanner .bannerWhiteTxt {
    font-size: 3rem;
  }
  body .sect-transOutcomes .transOutcomes-content p {
    font-size: 1.5rem;
  }
  body .title-Md {
    font-size: 2rem;
  }
  body .blocktitle2 {
    font-size: 1.2rem;
  }
  body .taglist li.tag {
    font-size: 0.8rem;
  }
  body .hClients .hClientsStoryList .desc {
    font-size: 1.5rem;
  }
  body .supportingtext {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  body .leonardoBg P {
    font-size: 1.5rem;
  }
  body .leonardoBg2 P {
    font-size: 1.5rem;
  }
  body .onboardingBg .onboardingPara {
    font-size: 1.5rem;
  }
  body .scoreBlockBg .scoreSmTitle {
    font-size: 1.5rem;
  }
  body .blueGradientBg .buitTitle {
    font-size: 1.5rem;
  }
  body .careerVideobanner .Sblock .securityXsTitle {
    font-size: 0.75rem;
  }
  body .careerVideobanner .Sblock p {
    font-size: 1.5rem;
  }
  body .careerVideobanner .Sblock .securityXsPara {
    font-size: 1rem;
  }
  body .blueGradientBg .builtPara {
    font-size: 1.2rem;
  }
  body .muted-text {
    font-size: 1.5rem;
  }
  body .greyXstext {
    font-size: 1rem;
  }
  body .blocktitle {
    font-size: 1.5rem;
  }
  body .whiteTitleSM {
    font-size: 0.875rem;
  }
  body .titleSM {
    line-height: 100%;
  }
  body .whiteSpacePre {
    white-space: unset;
  }
  body .Insights-Gallery {
    margin-left: 0;
  }
  body .pageServicesTitle {
    font-size: 2rem !important;
  }
  body .square-box .square-content .dblock-img {
    height: 350px;
  }
  body .square-box .square-content img {
    height: 350px;
    object-fit: cover;
  }
  body .square-box:before {
    padding-top: 350px;
  }
  body .leonardoBg2 {
    align-items: flex-end;
    justify-content: flex-end;
  }
  body .blackBtext {
    font-size: 0.85rem;
  }
  body .colGapMd {
    margin-bottom: 3rem;
  }
  body .filter ul {
    gap: 0.5rem;
  }
  body .filter ul .bordered-btn {
    padding: 0.5rem;
  }
  body .blogs .article {
    margin-bottom: 5rem;
  }
  body .blogs .article .articleImgWrapper {
    height: 350px;
  }
  body .blogs .article .csb-bottomcontent .blocktitle2 {
    height: 39px;
  }
  body .BgImg {
    max-height: 350px;
    object-fit: cover;
  }
  body .videoRow {
    width: auto;
  }
  body .careerBanner .pageBanner {
    padding-bottom: 0 !important;
  }
  body .imgWidth {
    max-height: 350px;
    object-fit: cover;
  }
  body .BannersmTextBlock {
    font-size: 0.75rem;
  }
  body .BannersmTextBlock p {
    font-size: 0.75rem;
  }
  body .CssubText {
    font-size: 1rem;
  }
  body .singlecasestudy {
    width: 100%;
    padding: 3rem 1.5rem;
  }
  body .ulist {
    font-size: 1rem;
  }
  body .resultPara {
    font-size: 1rem;
  }
  body .CsTitle {
    font-size: 1.5rem;
  }
  body .CsredTitle {
    font-size: 1.5rem;
  }
  body .d-flex-supporting {
    gap: 1rem;
  }
  body .presence .addressWrapper .address .blackBtext {
    font-size: 1rem;
  }
  body .presence .addressWrapper .address .greyXstext {
    font-size: 0.875rem;
  }
  body .greyBlockBg2 {
    height: auto;
    flex-wrap: wrap;
  }
  body .greyBlockBg2 img {
    width: 80px;
  }
  body .greyBlockBg2 .d-flex-column-between {
    gap: 2rem;
  }
  body .support .supportDetails {
    display: block;
  }
  body .support .supportDetails .subtitle {
    font-size: 1rem;
  }
  body .support .supportDetails .supportDetailsBlock {
    justify-content: center;
    margin-bottom: 1rem;
  }
  body .support .supportDetails .supportDetailsBlock img {
    width: 15px;
    height: 15px;
  }
  body .support .divider {
    display: none;
  }
  body .support .pageBanner .TitlePara,
body .support .pageBanner .bannertitle {
    max-width: 100%;
  }
  body .parallax-banner1 {
    background-attachment: scroll;
  }
  body .parallax-banner2 {
    background-attachment: scroll;
  }
  body .parallax-banner3 {
    background-attachment: scroll;
  }
  body .section-Service .d-flex {
    flex-direction: column !important;
  }
  body .textC {
    max-width: 100% !important;
  }
  body .greyBackBG .d-flex-columnServices {
    gap: 2rem;
  }
  body .greyBackBG .d-flex-columnServices .SA-SubTitleRed {
    font-size: 1.5rem;
  }
  body .greyBackBG .d-flex-columnServices .SA-HeadingRed {
    font-size: 6.438rem;
  }
  body .section-Assignme .greyBackBG.d-flex {
    flex-direction: column;
  }
  body .section-Assignme .greyBackBG .w-75 .gap-9 {
    gap: 2rem;
  }
  body .section-Assignme .redLeonardoBg {
    height: auto;
    gap: 4rem;
  }
  body .d-flex-pdf {
    align-items: flex-start;
    flex-direction: column;
  }
  body .sect-getpdf .comp-detail-sect .w-50 {
    width: 100% !important;
  }
  .sect-getintouch .getintouch-flex.w-60 {
    width: 100%;
  }
  .getintouch-flex .contact-form {
    margin: 0;
  }
}
@media screen and (max-width: 560px) {
  body .whyChooseUs .wcBlock {
    width: 100%;
  }
  body .whyChooseUs .wcBlockWrapper {
    width: 100%;
  }
  body .whyChooseUs .wcBlockWrapper .wcBlock {
    width: 100%;
  }
  body .flexWrapStructure .subBlock,
body .flexWrapStructure .eBlock {
    width: 100%;
  }
  body .flexWrapStructure .eBlock1 {
    width: 100%;
  }
  body .tag {
    font-size: 0.75rem;
  }
  body .header .logo {
    width: 200px;
  }
  body .header.d-flex {
    padding: 1rem;
    align-items: center;
  }
  body .dFlexGap {
    flex-direction: column;
  }
  body .hClients .hClientsStoryList {
    flex-direction: column;
  }
  body .hClients .hClientsStoryList .left,
body .hClients .hClientsStoryList .right {
    width: 100%;
  }
  body .servicesDesc .d-flex {
    gap: 1.5rem;
  }
  body .salesforceBadges .shake1 img,
body .salesforceBadges .shake2 img {
    width: 100%;
  }
  body .muted-title {
    font-size: 3rem;
  }
  body .salesforcebanner .Sblock .positionBanner {
    padding: 0;
    justify-content: center;
  }
  body .salesforcebanner .bannerWhiteTxt {
    font-size: 1.8rem;
  }
  body .salesforcebanner .whiteMdText {
    font-size: 1.563rem;
  }
  body .salesforcebanner .whiteMdText {
    width: 90%;
  }
  body .letsDiscussWrapper .letsDiscuss {
    flex-direction: column;
    align-items: flex-start !important;
  }
  body .letsDiscussWrapper .letsDiscuss .marginleft2 {
    margin-left: 2.2rem;
  }
  body .letsDiscuss .title2 {
    width: 100%;
  }
  body .letsDiscuss .text {
    width: 100%;
  }
  body .letsDiscuss .letsDiscuss-btn {
    margin-left: 0;
  }
  body .title {
    font-size: 2rem !important;
  }
  body .title-Md {
    font-size: 2rem;
  }
  body .flexWidthblock .w-50,
body .flexWidthblock .w-75,
body .flexWidthblock .w-60 {
    margin-top: 4rem;
  }
  body .subTextBlock {
    width: 100%;
  }
  body .sect-experties.three-expertises .eBlock:first-child {
    border-right: none;
  }
  body .sect-experties .eBlock:first-child {
    border-right: none;
    border-bottom: 1px solid #DDD !important;
  }
  body .sect-experties .eBlock:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid #DDD !important;
  }
  body .sect-experties .eBlock:nth-child(3) {
    border-right: none;
    border-bottom: 1px solid #DDD !important;
  }
  body .sect-experties .eBlock:nth-child(4) {
    border-right: none;
    border-bottom: 1px solid #DDD;
  }
  body .sect-experties .eBlock:nth-child(5) {
    border-right: none;
    border-bottom: 1px solid #DDD;
  }
  body .sect-experties .salesforce-expertise .eBlock:nth-child(5) {
    border-right: none;
    border-bottom: 1px solid #DDD;
  }
  body .sect-experties .salesforce-expertise .eBlock:nth-child(7) {
    border-left: none;
    border-right: none;
  }
  body .sect-experties .eBlock1:first-child {
    border-right: none;
    border-bottom: 1px solid #DDD;
  }
  body .sect-experties .eBlock1:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid #DDD;
  }
  body .sect-experties .eBlock1:nth-child(3) {
    border-right: none;
    border-bottom: 1px solid #DDD;
  }
  body .sect-experties .eBlock1:nth-child(4) {
    border-right: none;
    border-bottom: 1px solid #DDD;
  }
  body .sect-imgslides {
    height: 400px;
  }
  body .textvideoBlock .desc {
    font-size: 1rem !important;
  }
  body .aboutSummary {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  body .aboutRating {
    flex-direction: column;
  }
  body .blocktitle2 {
    font-size: 1rem !important;
  }
  body .backgroundImage {
    height: 300px;
  }
  body .Sect_ServiceJourney ul li {
    width: 100%;
  }
  body .sect-transOutcomes .ring-image {
    height: 210px;
  }
  body .sect-transOutcomes .ring-image img {
    transform: scale(1.1);
  }
  body .sect-transOutcomes::after {
    top: -20%;
  }
  body .IndustryInfoBlock {
    gap: 2rem;
  }
  body .IndustryInfoBlock .d-flex-column .d-flex {
    flex-direction: column;
  }
  body .IndustryInfoBlock .GreyBlock {
    padding: 1rem;
  }
  body .IndustryInfoBlock .w-50 .titleXl {
    font-size: 2.625rem;
  }
  body .videoRow .col-md-4 video {
    height: auto;
  }
  body .sect-workflow .d-flex .w-33 {
    width: 100%;
  }
  body .benefitsSection .lightGreyBg img {
    height: 200px;
  }
  body .SservicesBlock .p-4 {
    padding: 1rem !important;
  }
  body .blogs .article {
    margin-bottom: 3rem;
    padding: 0;
  }
  body .blogs .article .articleImgWrapper {
    height: 250px;
  }
  body .BgImg {
    height: 250px;
    object-fit: cover;
  }
  body .square-box .square-content .dblock-img {
    height: 250px;
  }
  body .square-box .square-content img {
    height: 250px;
    object-fit: cover;
  }
  body .square-box:before {
    padding-top: 250px;
  }
  body .leadershipList ul li {
    width: 100%;
  }
  body .greyBlockBg2 img {
    width: 60px;
  }
  body .sect-experties .eBlock {
    padding: 1.5rem 0;
    cursor: pointer;
  }
  .sect-getintouch .getintouch-contact {
    flex-direction: column;
    gap: 1rem;
  }
  .sect-getintouch .getintouch-contact .vline {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  body .benefitsSection .w-33, body .benefitsModule .w-33 {
    width: 100%;
  }
  body .benefitsSection .w-50, body .benefitsModule .w-50 {
    width: 100% !important;
  }
  body .sect-getintouch .modal-dialog {
    padding: 0;
  }
  body .sect-getintouch .modal-dialog .modal-content {
    padding: 1rem;
    margin: 0.5rem;
  }
  body .sect-getintouch .getintouch-flex .d-flex {
    flex-wrap: wrap;
  }
  body .sect-getintouch .getintouch-flex .contact-form {
    margin: 0;
  }
  body .sect-getpdf .modal-dialog {
    padding: 0;
  }
  body .sect-getpdf .modal-dialog .modal-content {
    padding: 1rem;
    margin: 0.5rem;
  }
  body .sect-getpdf .getintouch-flex .d-flex {
    flex-wrap: wrap;
  }
  body .sect-imgslides {
    height: 280px;
  }
  body .sect-specialization .flexWidthblock .w-50 {
    margin-top: 2rem;
  }
  body .support .supportDetails .supportDetailsBlock {
    justify-content: left;
  }
  body .greyBackBG .d-flex-columnServices {
    flex-direction: column;
  }
}
@media screen and (max-width: 420px) {
  body .secondary-btnRadius-white {
    padding: 0.313rem 0.5rem;
  }
  body .dFlexGap .blocklogo {
    width: 80%;
  }
  body .muted-title {
    font-size: 2.5rem;
  }
  body .AbannerContent .AbannerContentText .articlesFlex {
    padding: 0.8rem;
  }
  body .whiteTitleSM {
    font-size: 1rem;
  }
  body .pageBanner .bannertitle {
    font-size: 2rem;
  }
  body .sect-transOutcomes {
    margin-bottom: 10rem;
  }
  body .sect-transOutcomes .ring-image {
    height: 170px;
  }
  body .sect-transOutcomes .ring-image img {
    width: 100%;
  }
  body .sect-transOutcomes .transOutcomes-content {
    position: relative;
    width: 100%;
  }
  body .sect-transOutcomes .transOutcomes-content p {
    font-size: 1.2rem;
  }
  body .sect-transOutcomes .transOutcomes-content .Mission-content {
    margin-top: 5rem;
  }
  body .sect-transOutcomes::after {
    top: -5%;
  }
  body .sect-getintouch .form-check {
    width: 100%;
  }
  body .sect-getpdf .form-check {
    width: 100%;
  }
}
@media screen and (max-width: 380px) {
  body .ReviewSection .d-flex {
    flex-direction: column;
    margin-bottom: 1.5rem;
  }
  body .ReviewSection .salesforceSummary .blocktitle2, body .ReviewSection .salesforceSummary img.w-100 {
    margin-bottom: 0;
  }
}
.title {
  font-family: "Gilroy-Medium";
  font-size: 5.625rem;
  font-weight: normal;
  line-height: 110%;
  color: #3C3C3E;
}

.title-Md {
  font-family: "Gilroy-Medium";
  font-size: 3.75rem;
  font-weight: normal;
  line-height: 110%;
  color: #000000;
}

.title-lg {
  font-family: Gilroy-Medium;
  font-size: 5.625rem;
  font-weight: normal;
  line-height: 110%;
  color: #3C3C3E;
}

.text-red {
  color: #AF2127 !important;
}

.text-black {
  color: #000 !important;
}

.text-white {
  color: #FFFFFF !important;
}

.text-bold {
  font-family: Gilroy-Semibold !important;
}

.title2 {
  font-family: Gilroy-Medium;
  font-size: 4.375rem;
  font-weight: normal;
  line-height: 110%;
  color: #000;
}

.titleXl {
  font-family: Gilroy-Semibold;
  font-size: 4.625rem;
  font-weight: normal;
  line-height: 110%;
  color: #000;
}

.titleMD {
  font-family: Gilroy-Semibold;
  font-size: 3rem;
  font-style: normal;
  line-height: 120%;
}

.titleMed {
  font-family: Gilroy-Medium !important;
  font-size: 2rem !important;
  font-style: normal;
  font-weight: 600;
  line-height: 120% !important;
}

.blocktitle {
  font-family: Gilroy-Medium;
  font-size: 1.625rem;
  font-weight: normal;
  line-height: 110%;
  color: #000;
}

.blocktitle2 {
  font-family: Gilroy-Regular;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 120%;
  color: #000;
}

.muted-title {
  font-family: Gilroy-Medium;
  font-size: 6.25rem;
  font-weight: normal;
  line-height: 110%;
  text-align: left;
  color: #A0A6AC;
}

.muted-text {
  font-family: Gilroy-Medium;
  font-size: 1.25rem;
  font-weight: normal;
  line-height: 110%;
  text-align: left;
  color: #7B7B7B;
}

.muted-subtitle {
  color: #7B7B7B;
  font-size: 1.5rem;
  font-style: normal;
  font-family: Gilroy-Regular;
  font-weight: 400;
  line-height: 130%;
}

.muted-subtext {
  color: #7B7B7B;
  font-family: Gilroy-Regular;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.muted-Bsubtext {
  color: #7B7B7B;
  font-family: Gilroy-Bold;
  font-size: 1rem;
  line-height: 130%;
}

.subtitle {
  font-family: Gilroy-Medium;
  font-size: 1.25rem;
  font-weight: normal;
  line-height: 115%;
  color: #000;
}

.subtitlebold {
  font-family: Gilroy-Bold;
  font-size: 1.25rem;
  font-weight: normal;
  line-height: 140%;
  color: #000;
}

.pptitle {
  font-size: 1.625rem;
  font-family: "Gilroy-Semibold";
  line-height: 31.2px;
  line-height: 140%;
  color: #000;
}

.ppsubtitle {
  font-size: 1.375rem;
  font-family: "Gilroy-Semibold";
  line-height: 31.2px;
  line-height: 140%;
  color: #000;
}

.ppsubText {
  color: #49515B;
  font-family: Gilroy-Regular;
  font-size: 1rem;
  line-height: 140%;
}

.subText {
  color: #7B7B7B;
  font-family: Gilroy-Regular;
  font-size: 1rem;
  font-style: normal;
  line-height: 24px;
}

.link {
  font-family: Gilroy-Regular;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 100%;
  color: #3C3C3E;
  text-decoration: underline;
  cursor: pointer;
}

.whiteLink {
  font-family: Gilroy-Regular;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 100%;
  color: #FFF;
  text-decoration: underline;
  cursor: pointer;
}
.whiteLink:hover {
  color: #FFF;
  text-decoration: underline;
}

.desc {
  font-family: Gilroy-Regular;
  font-size: 1.5rem;
  line-height: 130%;
}

.whiteTitle {
  font-family: Gilroy-Medium;
  font-size: 1.5rem;
  line-height: 31.2px;
  color: #FFF;
}

.whiteTitleSM {
  font-family: Gilroy-Regular;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 140%;
  color: #FFF;
}

.whiteTitleLG {
  font-family: Gilroy-Regular;
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 110%;
  color: #FFF;
}

.text {
  font-family: Gilroy-Regular;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 110%;
  color: #3C3C3E;
}

.textC {
  width: 100%;
  max-width: 70%;
  text-align: center;
  margin: 0 auto 4rem;
  line-height: 26px !important;
}

.titleSM {
  color: #3C3C3E;
  font-family: Gilroy-Medium;
  font-size: 1.5rem;
  font-style: normal;
  line-height: 130%;
}

.textSM {
  color: #7B7B7B;
  font-family: Gilroy-Regular;
  font-size: 1rem;
  font-style: normal;
  line-height: 130%;
}

.greySubtext {
  color: #9E9F9E;
  font-family: Gilroy-Regular;
  font-size: 1rem;
  font-style: normal;
  line-height: 130%;
  opacity: 0.6;
}

.greyXstext {
  font-family: Gilroy-Regular;
  font-size: 0.875rem;
  font-style: normal;
  line-height: 130%;
  color: #7b7b7b;
}

.blackBtext {
  font-family: Gilroy-Semibold;
  font-size: 1.25rem;
  font-style: normal;
  line-height: 130%;
  color: #000000;
}

.TitleMdbold {
  font-family: Gilroy-Semibold;
  font-size: 2.625rem;
  font-style: normal;
  line-height: 32px;
  color: #AF2127;
}

.functionalModuleblock {
  padding: 1.5rem !important;
  text-align: left;
}
.functionalModuleblock .Title {
  color: #000000;
  font-family: Gilroy-Semibold;
  font-size: 1.25rem;
  line-height: 120%;
}
.functionalModuleblock .para {
  color: #7b7b7b;
  font-family: Gilroy-Regular;
  font-size: 0.875rem;
  line-height: 130%;
}
.functionalModuleblock:hover, .functionalModuleblock:active {
  background: rgba(0, 0, 0, 0.03);
  cursor: pointer;
}
.functionalModuleblock:hover .Title, .functionalModuleblock:active .Title {
  color: #AF2127;
}
.functionalModuleblock:hover .para, .functionalModuleblock:active .para {
  color: #000000;
}
.functionalModuleblock .nav-item {
  padding: 1.5rem !important;
}
.functionalModuleblock .nav-pills .nav-link.active {
  background: rgba(0, 0, 0, 0.03) !important;
}

.functionalModuleblock:hover,
.functionalModuleblock.active {
  background: rgba(0, 0, 0, 0.03) !important;
  cursor: pointer;
}

.functionalModuleblock:hover .Title,
.functionalModuleblock.active .Title {
  color: #AF2127;
}

.functionalModuleblock:hover .para,
.functionalModuleblock.active .para {
  color: #3C3C3E;
}

.redBackBg {
  background: linear-gradient(108.81deg, #8E0A10 16.03%, #AF2127 98.01%);
}

.greyBackBg {
  background: rgb(249, 249, 249);
}

.redGradientBg {
  background: url(../images/onboarding-9-img.svg);
  /* Test with just the image */
  background-repeat: no-repeat;
  background-size: auto;
  /* Keep original size */
  background-position: left top;
  /* Position it at top left */
  padding: 1.5rem;
  height: 350px;
  /* Ensure sufficient height */
  display: flex;
  align-items: flex-end;
  /* Align content at the bottom */
  justify-content: flex-end;
  /* Align content to the right */
}

.scoreBlockBg {
  background: url(../images/scoreimg.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right top;
  padding: 1.5rem;
  height: 350px;
  display: flex;
  align-items: flex-end;
  /* Align content at the bottom */
}
.scoreBlockBg .scoreTitle {
  color: #AF2127;
  font-family: Gilroy-Semibold;
  font-size: 6.25rem;
  line-height: 120%;
}
.scoreBlockBg .scoreSmTitle {
  color: #000000;
  font-family: Gilroy-Bold;
  font-size: 1.875rem;
  line-height: 120%;
}
.scoreBlockBg .scorePara {
  color: #000000;
  font-family: Gilroy-Regular;
  font-size: 1rem;
  line-height: 120%;
}

.accerateBlockBg {
  background: url(../images/accelarate.svg);
  background-repeat: no-repeat;
  background-size: 25%;
  background-position: right top;
  /* Align to the top-right corner */
  padding: 1.5rem;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Align content at the bottom */
}
.accerateBlockBg .accerateTitle {
  color: #3C3C3E;
  font-family: Gilroy-Semibold;
  font-size: 2.5rem;
  line-height: 120%;
}
.accerateBlockBg .acceratePara {
  color: #7B7B7B;
  font-family: Gilroy-Medium;
  font-size: 1.125rem;
  line-height: 130%;
}

.blackBg {
  background: linear-gradient(78.15deg, rgba(0, 0, 0, 0.8) 3.16%, rgba(0, 0, 0, 0.1) 97.11%);
  padding: 1.5rem;
  height: 350px;
}
.blackBg .enableTitle {
  color: #FFFFFF;
  font-family: Gilroy-Semibold;
  font-size: 2.5rem;
  line-height: 130%;
}

.greyBlockBg {
  background: rgb(249, 249, 249);
  padding: 1.5rem;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.greyBlockBg .d-flex-column-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.greyBlockBg .clientTitle {
  font-family: Gilroy-Regular;
  font-size: 1.125rem;
  line-height: 120%;
  color: #000000;
}
.greyBlockBg .clientFooterTitle {
  font-family: Gilroy-Regular;
  font-size: 0.875rem;
  line-height: 120%;
  color: #000000;
}

.greyBlockBg2 {
  background: rgb(249, 249, 249);
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
}
.greyBlockBg2 .d-flex-column-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.greyBlockBg2 .clientTitle {
  font-family: Gilroy-Regular;
  font-size: 0.938rem;
  line-height: 130%;
  color: #000000;
}
.greyBlockBg2 .clientTitle b {
  font-family: Gilroy-Semibold;
}
.greyBlockBg2 .clientFooterTitle {
  font-family: Gilroy-Regular;
  font-size: 0.813rem;
  line-height: 120%;
  color: #000000;
}
.greyBlockBg2 img {
  width: 50px;
}

.onboardingBg {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) -20%, rgba(0, 0, 0, 0.8) 70%), url(../images/onboarding-people-img.png);
  background-repeat: no-repeat;
  padding: 1.5rem;
  height: 350px;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  /* Align content at the bottom */
  justify-content: flex-end;
  /* Align content to the right */
}
.onboardingBg .onboardingHeading {
  color: #F6F6F6;
  font-family: Gilroy-Semibold;
  font-size: 5.125rem;
  line-height: 120%;
}
.onboardingBg .onboardingPara {
  color: #F6F6F6;
  font-family: Gilroy-Regular;
  font-size: 1.625rem;
  line-height: 120%;
}
.onboardingBg .onboardingPara b {
  font-family: Gilroy-Semibold;
}

.blueGradientBg {
  background: rgb(3, 46, 97);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.blueGradientBg .buitTitle {
  color: #F6F6F6;
  font-family: Gilroy-Semibold;
  font-size: 2rem;
  line-height: 120%;
}
.blueGradientBg .builtPara {
  color: #F6F6F6;
  font-family: Gilroy-Regular;
  font-size: 1.125rem;
  line-height: 120%;
}

.onboardingwhitetext {
  font-family: Gilroy-Medium;
  font-size: 1.125rem;
  line-height: 110%;
  color: #FFFFFF;
}

.onboardingwhiteBtext {
  font-family: Gilroy-Bold;
  font-size: 1.125rem;
  line-height: 100%;
  color: #FFFFFF;
}

.redGradientText {
  color: #AF2127;
  font-family: Gilroy-Semibold;
  font-size: 2rem;
  line-height: 100%;
}

.redUnderlineText {
  color: #AF2127;
  font-family: Gilroy-Medium;
  font-size: 0.875rem;
  line-height: 100%;
  text-transform: uppercase;
  text-decoration: underline;
}
.redUnderlineText a {
  color: #AF2127;
}

.lightGreyBg {
  background: linear-gradient(180deg, #fbfbfb, #ffffff);
}
.lightGreyBg img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}
.lightGreyBg img.imgauto {
  width: 80%;
  height: 300px;
  object-fit: unset;
}
.lightGreyBg .Benefits-Title {
  font-family: Gilroy-Bold;
  font-size: 1.25rem;
  line-height: 130%;
  color: #000000;
}
.lightGreyBg p {
  color: #7b7b7b;
}

.careerVideobanner {
  position: relative;
  /* Set this to your desired height */
  overflow: hidden;
  background: #000;
}

.careerVideobanner .Sblock {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
}

.careerVideobanner .Sblock p {
  font-family: "Gilroy-Medium";
  font-size: 3rem;
  line-height: 120%;
  color: #FFFFFF;
  max-width: 650px;
}
.careerVideobanner .Sblock .securityXsTitle {
  font-family: "Gilroy-Medium";
  font-size: 1rem;
  line-height: 120%;
  color: #FFFFFF;
  letter-spacing: 5px;
  text-transform: uppercase;
}
.careerVideobanner .Sblock .securityXsPara {
  font-family: "Gilroy-Regular";
  font-size: 1.125rem;
  line-height: 120%;
  color: #FFFFFF;
}

.careerVideobanner .workspacevideo {
  position: relative;
  display: flex;
  justify-content: end;
  height: 400px;
}

.careerVideobanner .workspacevideo .videoGradient {
  width: 55%;
  height: 100%;
  display: flex;
}

.careerVideobanner .workspacevideo .videoGradient::after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, rgb(0, 0, 0) 5%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.careerVideobanner .workspacevideo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opacityVideo {
  opacity: 0.3;
  /* Adjust the value to make it slightly less opaque */
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the video covers its container */
}

.benefits-content {
  padding: 0 2rem 2rem 2rem;
}

.blockimg {
  background: linear-gradient(78.15deg, rgba(0, 0, 0, 0.8) 3.16%, rgba(0, 0, 0, 0.1) 97.11%), url("../images/accessnow-sec-3.jpg");
  background-size: cover;
  background-position: center;
  padding: 1.5rem;
  height: 350px;
}
.blockimg .enableTitle {
  color: #FFFFFF;
  font-family: Gilroy-Semibold;
  font-size: 2.5rem;
  line-height: 130%;
}

/*# sourceMappingURL=style.css.map */
